diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1810e0ba373..497cb2baede 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -8,6 +8,9 @@ Changelog Important API changes: ~~~~~~~~~~~~~~~~~~~~~~~~ +- Main package API function `get_package_infos` is now deprecated, and is replaced by + `get_package_manifests`. + - The data structure of the JSON output has changed for copyrights, authors and holders: we now use proper name for attributes and not a generic "value". @@ -54,7 +57,14 @@ Package detection: - OpenWRT packages. - Yocto/BitBake .bb recipes. -- We now support track the files of Package types. +- Major changes in packages detection and reporting, codebase-level attribute `packages` + with one or more package_manifests and files for the packages will be reported. + The specific changes made are: + + - The resource level attribute `packages` has been renamed to `package_manifests`, + as these are really package manifests that are being detected. + - A new codebase level attribute `packages` has been added which contains package + instances created from package_manifests detected in the codebase. Outputs: @@ -63,6 +73,16 @@ Outputs: - There is a new CycloneDX 1.2 output as XML and JSON. +Output version +-------------- + +Scancode Data Output Version is now 2.0.0. + +Changes: + +- rename resource level attribute `packages` to `package_manifests`. +- add codebase level attribute `packages`. + 30.1.0 - 2021-09-25 -------------------- diff --git a/src/formattedcode/output_csv.py b/src/formattedcode/output_csv.py index d5473f1cbb4..25af186762d 100644 --- a/src/formattedcode/output_csv.py +++ b/src/formattedcode/output_csv.py @@ -194,7 +194,7 @@ def collect_keys(mapping, key_group): collect_keys(url_info, 'url') yield url_info - for package in scanned_file.get('packages', []): + for package in scanned_file.get('package_manifests', []): flat = flatten_package(package, path) collect_keys(flat, 'package') yield flat diff --git a/src/formattedcode/output_html.py b/src/formattedcode/output_html.py index d3187092c6e..46a2a20f6a4 100644 --- a/src/formattedcode/output_html.py +++ b/src/formattedcode/output_html.py @@ -154,7 +154,7 @@ def generate_output(results, version, template): LICENSES = 'licenses' COPYRIGHTS = 'copyrights' - PACKAGES = 'packages' + PACKAGES = 'package_manifests' # Create a flattened data dict keyed by path for scanned_file in results: @@ -207,7 +207,7 @@ def generate_output(results, version, template): files = { 'license_copyright': converted, 'infos': converted_infos, - 'packages': converted_packages + 'package_manifests': converted_packages } return template.generate(files=files, licenses=licenses, version=version) diff --git a/src/formattedcode/templates/html/template.html b/src/formattedcode/templates/html/template.html index 6f97e1dc726..043d1f2d8c2 100644 --- a/src/formattedcode/templates/html/template.html +++ b/src/formattedcode/templates/html/template.html @@ -233,7 +233,7 @@ {% endif %} - {% if files.packages %} + {% if files.package_manifests %} @@ -245,7 +245,7 @@ - {% for path, data in files.packages.items() %} + {% for path, data in files.package_manifests.items() %} {% for row in data %} diff --git a/src/packagedcode/maven.py b/src/packagedcode/maven.py index 3e1e00b6a16..f7cd17d3ab5 100644 --- a/src/packagedcode/maven.py +++ b/src/packagedcode/maven.py @@ -66,7 +66,7 @@ def get_package_root(cls, manifest_resource, codebase): if manifest_resource.name.endswith(('pom.xml', '.pom',)): # the root is either the parent or further up for poms stored under # a META-INF dir - package_data = manifest_resource.packages + package_data = manifest_resource.package_manifests if not package_data: return manifest_resource package_data = package_data[0] diff --git a/src/packagedcode/plugin_package.py b/src/packagedcode/plugin_package.py index 98492eabba0..07aea4d596f 100644 --- a/src/packagedcode/plugin_package.py +++ b/src/packagedcode/plugin_package.py @@ -50,7 +50,9 @@ class PackageScanner(ScanPlugin): """ resource_attributes = {} - resource_attributes['packages'] = attr.ib(default=attr.Factory(list), repr=False) + codebase_attributes = {} + resource_attributes['package_manifests'] = attr.ib(default=attr.Factory(list), repr=False) + codebase_attributes['packages'] = attr.ib(default=attr.Factory(list), repr=False) sort_order = 6 @@ -78,13 +80,15 @@ def get_scanner(self, **kwargs): """ Return a scanner callable to scan a Resource for packages. """ - from scancode.api import get_package_info - return get_package_info + from scancode.api import get_package_manifests + return get_package_manifests def process_codebase(self, codebase, **kwargs): """ Set the package root given a package "type". """ + create_packages_from_manifests(codebase, **kwargs) + if codebase.has_single_resource: # What if we scanned a single file and we do not have a root proper? return @@ -93,6 +97,19 @@ def process_codebase(self, codebase, **kwargs): set_packages_root(resource, codebase) +def create_packages_from_manifests(codebase, **kwargs): + """ + Create package instances from package manifests present in the codebase. + """ + package_manifests = [] + + for resource in codebase.walk(topdown=False): + if resource.package_manifests: + package_manifests.extend(resource.package_manifests) + + codebase.attributes.packages.extend(package_manifests) + + def set_packages_root(resource, codebase): """ Set the root_path attribute as the path to the root Resource for a given @@ -102,8 +119,8 @@ def set_packages_root(resource, codebase): if not resource.is_file: return - packages = resource.packages - if not packages: + package_manifests = resource.package_manifests + if not package_manifests: return # NOTE: we are dealing with a single file therefore there should be only be # a single package detected. But some package manifests can document more @@ -111,8 +128,8 @@ def set_packages_root(resource, codebase): # or multiple sub package (with "%package") in an RPM .spec file. modified = False - for package in packages: - package_instance = get_package_instance(package) + for package_manifest in package_manifests: + package_instance = get_package_instance(package_manifest) package_root = package_instance.get_package_root(resource, codebase) if not package_root: # this can happen if we scan a single resource that is a package package @@ -120,7 +137,7 @@ def set_packages_root(resource, codebase): # What if the target resource (e.g. a parent) is the root and we are in stripped root mode? if package_root.is_root and codebase.strip_root: continue - package['root_path'] = package_root.path + package_manifest['root_path'] = package_root.path modified = True if modified: diff --git a/src/packagedcode/recognize.py b/src/packagedcode/recognize.py index cd1a4416754..54df4cc79da 100644 --- a/src/packagedcode/recognize.py +++ b/src/packagedcode/recognize.py @@ -43,9 +43,9 @@ def logger_debug(*args): """ -def recognize_packages(location): +def recognize_package_manifests(location): """ - Return a list of Package object if any packages were recognized for this + Return a list of Package objects if any package_manifests were recognized for this `location`, or None if there were no Packages found. Raises Exceptions on errors. """ @@ -67,7 +67,7 @@ def recognize_packages(location): 'fname:', filename, 'ext:', extension, ) - recognized_packages = [] + recognized_package_manifests = [] for package_type in PACKAGE_TYPES: # Note: default to True if there is nothing to match against metafiles = package_type.metafiles @@ -86,8 +86,8 @@ def recognize_packages(location): 'recognize_packages: recognized.license_expression:', recognized.license_expression, ) - recognized_packages.append(recognized) - return recognized_packages + recognized_package_manifests.append(recognized) + return recognized_package_manifests type_matched = False if package_type.filetypes: @@ -124,7 +124,7 @@ def recognize_packages(location): if TRACE: logger_debug('recognize_packages: recognized', recognized) - recognized_packages.append(recognized) + recognized_package_manifests.append(recognized) except NotImplementedError: # build a plain package if recognize is not yet implemented @@ -132,11 +132,11 @@ def recognize_packages(location): if TRACE: logger_debug('recognize_packages: recognized', recognized) - recognized_packages.append(recognized) + recognized_package_manifests.append(recognized) if SCANCODE_DEBUG_PACKAGE_API: raise - return recognized_packages + return recognized_package_manifests if TRACE: logger_debug('recognize_packages: no match for type:', package_type) diff --git a/src/scancode/api.py b/src/scancode/api.py index 8b08988e974..bfa57e37a5e 100644 --- a/src/scancode/api.py +++ b/src/scancode/api.py @@ -287,22 +287,21 @@ def _licenses_data_from_match( SCANCODE_DEBUG_PACKAGE_API = os.environ.get('SCANCODE_DEBUG_PACKAGE_API', False) -def get_package_info(location, **kwargs): +def _get_package_manifests(location): """ - Return a mapping of package manifest information detected in the - file at `location`. + Return a mapping of package manifest information detected in the file at `location`. Note that all exceptions are caught if there are any errors while parsing a package manifest. """ - from packagedcode.recognize import recognize_packages + from packagedcode.recognize import recognize_package_manifests try: - recognized_packages = recognize_packages(location) - if recognized_packages: - return dict(packages=[package.to_dict() for package in recognized_packages]) + recognized_package_manifests = recognize_package_manifests(location) + if recognized_package_manifests: + return recognized_package_manifests except Exception as e: if TRACE: - logger.error('get_package_info: {}: Exception: {}'.format(location, e)) + logger.error('_get_package_manifests: {}: Exception: {}'.format(location, e)) if SCANCODE_DEBUG_PACKAGE_API: raise @@ -310,9 +309,46 @@ def get_package_info(location, **kwargs): # attention: we are swallowing ALL exceptions here! pass + +def get_package_info(location, **kwargs): + """ + Return a mapping of package information detected in the file at `location`. + + This API function is DEPRECATED, use `get_package_manifests` instead. + """ + import warnings + warnings.warn( + "`get_package_info` is deprecated. Use `get_package_manifests` instead.", + DeprecationWarning, + stacklevel=1 + ) + + recognized_packages = _get_package_manifests(location) + + if recognized_packages: + return dict(packages=[ + packages.to_dict() + for packages in recognized_packages + ]) + return dict(packages=[]) +def get_package_manifests(location, **kwargs): + """ + Return a mapping of package manifest information detected in the file at `location`. + """ + recognized_package_manifests = _get_package_manifests(location) + + if recognized_package_manifests: + return dict(package_manifests=[ + package_manifests.to_dict() + for package_manifests in recognized_package_manifests + ]) + + return dict(package_manifests=[]) + + def get_file_info(location, **kwargs): """ Return a mapping of file information collected for the file at `location`. diff --git a/src/scancode_config.py b/src/scancode_config.py index 570e1f98f8a..a889f399e19 100644 --- a/src/scancode_config.py +++ b/src/scancode_config.py @@ -84,7 +84,7 @@ def _create_dir(location): # See https://github.com/nexB/scancode-toolkit/issues/2653 for more information # on the data format version -__output_format_version__ = '1.0.0' +__output_format_version__ = '2.0.0' # spdx_license_list_version = '3.14' diff --git a/src/summarycode/classify.py b/src/summarycode/classify.py index 1ce8dd01319..b77da5b05d3 100644 --- a/src/summarycode/classify.py +++ b/src/summarycode/classify.py @@ -169,25 +169,25 @@ def process_codebase(self, codebase, classify, **kwargs): root_path = codebase.root.path - has_packages = hasattr(codebase.root, 'packages') - if not has_packages: + has_package_manifests = hasattr(codebase.root, 'package_manifests') + if not has_package_manifests: # FIXME: this is not correct... we may still have cases where this # is wrong: e.g. a META-INF directory and we may not have a package return for resource in codebase.walk(topdown=True): - packages_info = resource.packages or [] + package_manifests_info = resource.package_manifests or [] - if not packages_info: + if not package_manifests_info: continue if not resource.has_children(): continue descendants = None - for package_info in packages_info: - package_class = get_package_class(package_info) + for package_manifest_info in package_manifests_info: + package_class = get_package_class(package_manifest_info) extra_root_dirs = package_class.extra_root_dirs() extra_key_files = package_class.extra_key_files() if TRACE: diff --git a/src/summarycode/summarizer.py b/src/summarycode/summarizer.py index 300428a9aa2..5fe27c52f64 100644 --- a/src/summarycode/summarizer.py +++ b/src/summarycode/summarizer.py @@ -411,7 +411,7 @@ def summarize_codebase_by_facet(codebase, **kwargs): def add_files(packages, resource): """ Update in-place every package mapping in the `packages` list by updating or - creatig the the "files" attribute from the `resource`. Yield back the + creating the the "files" attribute from the `resource`. Yield back the packages. """ for package in packages: diff --git a/tests/formattedcode/data/csv/flatten_scan/full.json b/tests/formattedcode/data/csv/flatten_scan/full.json index 1aae3e06a89..86f46392ad1 100644 --- a/tests/formattedcode/data/csv/flatten_scan/full.json +++ b/tests/formattedcode/data/csv/flatten_scan/full.json @@ -26,7 +26,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 39, "dirs_count": 12, "size_count": 1189824, @@ -69,7 +69,7 @@ "end_line": 4 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -101,7 +101,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -133,7 +133,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 1, "dirs_count": 0, "size_count": 28103, @@ -165,7 +165,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [ + "package_manifests": [ { "type": "tarball", "namespace": null, @@ -227,7 +227,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 14, "dirs_count": 2, "size_count": 241228, @@ -324,7 +324,7 @@ "end_line": 94 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -405,7 +405,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -437,7 +437,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 5, "dirs_count": 0, "size_count": 54552, @@ -526,7 +526,7 @@ "end_line": 22 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -596,7 +596,7 @@ "end_line": 196 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -673,7 +673,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -732,7 +732,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -813,7 +813,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -845,7 +845,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 7, "dirs_count": 0, "size_count": 152090, @@ -934,7 +934,7 @@ "end_line": 20 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -1022,7 +1022,7 @@ "end_line": 12 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -1105,7 +1105,7 @@ "end_line": 20 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -1143,7 +1143,7 @@ ], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -1187,7 +1187,7 @@ "end_line": 232 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -1264,7 +1264,7 @@ "end_line": 20 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -1382,7 +1382,7 @@ "end_line": 1695 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -1414,7 +1414,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 6, "dirs_count": 1, "size_count": 28741, @@ -1446,7 +1446,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -1523,7 +1523,7 @@ "end_line": 7 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -1600,7 +1600,7 @@ "end_line": 7 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -1632,7 +1632,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [ + "package_manifests": [ { "type": "npm", "namespace": null, @@ -1778,7 +1778,7 @@ "end_line": 10 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -1837,7 +1837,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -1951,7 +1951,7 @@ "end_line": 27 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -1983,7 +1983,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 16, "dirs_count": 5, "size_count": 268762, @@ -2054,7 +2054,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -2147,7 +2147,7 @@ "end_line": 40 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -2244,7 +2244,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -2332,7 +2332,7 @@ "end_line": 27 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -2403,7 +2403,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -2474,7 +2474,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -2506,7 +2506,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 1, "dirs_count": 0, "size_count": 13594, @@ -2603,7 +2603,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -2635,7 +2635,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 4, "dirs_count": 0, "size_count": 14257, @@ -2679,7 +2679,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -2756,7 +2756,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -2815,7 +2815,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -2892,7 +2892,7 @@ "end_line": 58 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -2924,7 +2924,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 1, "dirs_count": 0, "size_count": 16413, @@ -3032,7 +3032,7 @@ "end_line": 180 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -3064,7 +3064,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 2, "dirs_count": 0, "size_count": 23223, @@ -3135,7 +3135,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -3206,7 +3206,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -3238,7 +3238,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 2, "dirs_count": 0, "size_count": 9994, @@ -3315,7 +3315,7 @@ "end_line": 7 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -3347,7 +3347,7 @@ "authors": [], "emails": [], "urls": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, diff --git a/tests/formattedcode/data/csv/flatten_scan/package_license_value_null.json b/tests/formattedcode/data/csv/flatten_scan/package_license_value_null.json index 364d3af4988..8988a63e69a 100644 --- a/tests/formattedcode/data/csv/flatten_scan/package_license_value_null.json +++ b/tests/formattedcode/data/csv/flatten_scan/package_license_value_null.json @@ -19,7 +19,7 @@ "is_media": false, "is_source": true, "is_script": false, - "packages": [ + "package_manifests": [ { "type": "npm", "namespace": null, diff --git a/tests/formattedcode/data/csv/non-standard/identified.json b/tests/formattedcode/data/csv/non-standard/identified.json index 993e3a64b00..f9b390e9fce 100644 --- a/tests/formattedcode/data/csv/non-standard/identified.json +++ b/tests/formattedcode/data/csv/non-standard/identified.json @@ -42,7 +42,7 @@ "dirs_count": 0, "size_count": 0, "scan_errors": [], - "packages": [ + "package_manifests": [ { "api_url": "/api/v2/packages/27a4509e-b755-4601-9998-a97782383eb0/", "absolute_url": "https://enterprise.dejacode.com/packages/nexB/27a4509e-b755-4601-9998-a97782383eb0/", diff --git a/tests/formattedcode/data/json/simple-expected.json b/tests/formattedcode/data/json/simple-expected.json index 59b0ac7e0c4..2e956a3416b 100644 --- a/tests/formattedcode/data/json/simple-expected.json +++ b/tests/formattedcode/data/json/simple-expected.json @@ -11,6 +11,7 @@ "--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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -19,6 +20,7 @@ } } ], + "packages": [], "files": [ { "path": "simple", @@ -45,7 +47,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 1, "dirs_count": 0, "size_count": 55, @@ -88,7 +90,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, diff --git a/tests/formattedcode/data/json/simple-expected.jsonpp b/tests/formattedcode/data/json/simple-expected.jsonpp index d486df60e37..bed971cc3e2 100644 --- a/tests/formattedcode/data/json/simple-expected.jsonpp +++ b/tests/formattedcode/data/json/simple-expected.jsonpp @@ -11,6 +11,7 @@ "--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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -19,6 +20,7 @@ } } ], + "packages": [], "files": [ { "path": "simple", @@ -45,7 +47,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 1, "dirs_count": 0, "size_count": 55, @@ -88,7 +90,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, diff --git a/tests/formattedcode/data/json/tree/expected.json b/tests/formattedcode/data/json/tree/expected.json index 582abc5607e..530ec76f9d8 100644 --- a/tests/formattedcode/data/json/tree/expected.json +++ b/tests/formattedcode/data/json/tree/expected.json @@ -12,6 +12,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -20,6 +21,7 @@ } } ], + "packages": [], "files": [ { "path": "copy1.c", @@ -58,7 +60,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -101,7 +103,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -144,7 +146,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -175,7 +177,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 4, "dirs_count": 0, "size_count": 361, @@ -218,7 +220,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -261,7 +263,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -304,7 +306,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -347,7 +349,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, diff --git a/tests/formattedcode/data/templated/sample-template.html b/tests/formattedcode/data/templated/sample-template.html index a0c2bc5d96e..0d25034444a 100644 --- a/tests/formattedcode/data/templated/sample-template.html +++ b/tests/formattedcode/data/templated/sample-template.html @@ -245,7 +245,7 @@
Package Information
{{ path }}
{% endif %} - {% if files.packages %} + {% if files.package_manifests %} @@ -257,7 +257,7 @@ - {% for path, data in files.packages.items() %} + {% for path, data in files.package_manifests.items() %} {% for row in data %} diff --git a/tests/formattedcode/data/yaml/simple-expected.yaml b/tests/formattedcode/data/yaml/simple-expected.yaml index 0eb1bd37cb2..f12068caf81 100644 --- a/tests/formattedcode/data/yaml/simple-expected.yaml +++ b/tests/formattedcode/data/yaml/simple-expected.yaml @@ -14,10 +14,13 @@ headers: for any legal advice. ScanCode is a free software code scanning tool from nexB Inc. and others. Visit https://github.com/nexB/scancode-toolkit/ for support and download. + output_format_version: 1.0.0 message: errors: [] extra_data: + spdx_license_list_version: '3.14' files_count: 1 +packages: [] files: - path: simple type: directory @@ -43,7 +46,7 @@ files: copyrights: [] holders: [] authors: [] - packages: [] + package_manifests: [] files_count: 1 dirs_count: '0' size_count: 55 @@ -78,7 +81,7 @@ files: start_line: 1 end_line: 1 authors: [] - packages: [] + package_manifests: [] files_count: '0' dirs_count: '0' size_count: '0' diff --git a/tests/formattedcode/data/yaml/tree/expected.yaml b/tests/formattedcode/data/yaml/tree/expected.yaml index 2109b3b61f9..b2e16a18b73 100644 --- a/tests/formattedcode/data/yaml/tree/expected.yaml +++ b/tests/formattedcode/data/yaml/tree/expected.yaml @@ -15,10 +15,13 @@ headers: for any legal advice. ScanCode is a free software code scanning tool from nexB Inc. and others. Visit https://github.com/nexB/scancode-toolkit/ for support and download. + output_format_version: 1.0.0 message: errors: [] extra_data: + spdx_license_list_version: '3.14' files_count: 7 +packages: [] files: - path: copy1.c type: file @@ -50,7 +53,7 @@ files: start_line: 1 end_line: 1 authors: [] - packages: [] + package_manifests: [] files_count: '0' dirs_count: '0' size_count: '0' @@ -85,7 +88,7 @@ files: start_line: 1 end_line: 1 authors: [] - packages: [] + package_manifests: [] files_count: '0' dirs_count: '0' size_count: '0' @@ -120,7 +123,7 @@ files: start_line: 1 end_line: 1 authors: [] - packages: [] + package_manifests: [] files_count: '0' dirs_count: '0' size_count: '0' @@ -149,7 +152,7 @@ files: copyrights: [] holders: [] authors: [] - packages: [] + package_manifests: [] files_count: 4 dirs_count: '0' size_count: 361 @@ -184,7 +187,7 @@ files: start_line: 1 end_line: 1 authors: [] - packages: [] + package_manifests: [] files_count: '0' dirs_count: '0' size_count: '0' @@ -219,7 +222,7 @@ files: start_line: 1 end_line: 1 authors: [] - packages: [] + package_manifests: [] files_count: '0' dirs_count: '0' size_count: '0' @@ -254,7 +257,7 @@ files: start_line: 1 end_line: 1 authors: [] - packages: [] + package_manifests: [] files_count: '0' dirs_count: '0' size_count: '0' @@ -289,7 +292,7 @@ files: start_line: 1 end_line: 1 authors: [] - packages: [] + package_manifests: [] files_count: '0' dirs_count: '0' size_count: '0' diff --git a/tests/formattedcode/test_output_csv.py b/tests/formattedcode/test_output_csv.py index de52c741f8c..cdc5b26ebb4 100644 --- a/tests/formattedcode/test_output_csv.py +++ b/tests/formattedcode/test_output_csv.py @@ -119,7 +119,7 @@ def test_can_process_live_scan_for_packages_with_root(): args = ['--package', test_dir, '--csv', result_file] run_scan_plain(args) expected_file = test_env.get_test_loc('csv/packages/expected.csv') - check_csvs(result_file, expected_file) + check_csvs(result_file, expected_file, regen=False) def test_output_can_handle_non_ascii_paths(): diff --git a/tests/licensedcode/data/plugin_license/package/package.expected.json b/tests/licensedcode/data/plugin_license/package/package.expected.json index 5b624f02fae..56a43f15764 100644 --- a/tests/licensedcode/data/plugin_license/package/package.expected.json +++ b/tests/licensedcode/data/plugin_license/package/package.expected.json @@ -9,6 +9,7 @@ "--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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -17,6 +18,79 @@ } } ], + "packages": [ + { + "type": "npm", + "namespace": null, + "name": "busboy", + "version": "0.2.14", + "qualifiers": {}, + "subpath": null, + "primary_language": "JavaScript", + "description": "A streaming parser for HTML form data for node.js", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "Brian White", + "email": "mscdex@mscdex.net", + "url": null + } + ], + "keywords": [ + "uploads", + "forms", + "multipart", + "form-data" + ], + "homepage_url": null, + "download_url": "https://registry.npmjs.org/busboy/-/busboy-0.2.14.tgz", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": "git+http://github.com/mscdex/busboy.git", + "copyright": null, + "license_expression": "mit", + "declared_license": [ + { + "type": "MIT", + "url": "http://github.com/mscdex/busboy/raw/master/LICENSE" + } + ], + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:npm/dicer", + "requirement": "0.2.5", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/readable-stream", + "requirement": "1.1.x", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + } + ], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:npm/busboy@0.2.14", + "repository_homepage_url": "https://www.npmjs.com/package/busboy", + "repository_download_url": "https://registry.npmjs.org/busboy/-/busboy-0.2.14.tgz", + "api_data_url": "https://registry.npmjs.org/busboy/0.2.14" + } + ], "files": [ { "path": "package.json", @@ -65,7 +139,7 @@ "mit" ], "percentage_of_license_text": 4.05, - "packages": [ + "package_manifests": [ { "type": "npm", "namespace": null, diff --git a/tests/packagedcode/data/about/apipkg.ABOUT b/tests/packagedcode/data/about/aboutfiles/apipkg.ABOUT similarity index 100% rename from tests/packagedcode/data/about/apipkg.ABOUT rename to tests/packagedcode/data/about/aboutfiles/apipkg.ABOUT diff --git a/tests/packagedcode/data/about/appdirs.ABOUT b/tests/packagedcode/data/about/aboutfiles/appdirs.ABOUT similarity index 100% rename from tests/packagedcode/data/about/appdirs.ABOUT rename to tests/packagedcode/data/about/aboutfiles/appdirs.ABOUT diff --git a/tests/packagedcode/data/build/bazel/end2end-expected.json b/tests/packagedcode/data/build/bazel/end2end-expected.json index 5607d5534a5..33c49b8155c 100644 --- a/tests/packagedcode/data/build/bazel/end2end-expected.json +++ b/tests/packagedcode/data/build/bazel/end2end-expected.json @@ -8,6 +8,7 @@ "--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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -16,17 +17,91 @@ } } ], + "packages": [ + { + "type": "bazel", + "namespace": null, + "name": "end2end", + "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": "end2end", + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:bazel/end2end", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "bazel", + "namespace": null, + "name": "subdir2", + "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": "end2end/subdir2", + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:bazel/subdir2", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } + ], "files": [ { "path": "end2end", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "end2end/BUILD", "type": "file", - "packages": [ + "package_manifests": [ { "type": "bazel", "namespace": null, @@ -69,37 +144,37 @@ { "path": "end2end/subdir", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "end2end/subdir/dir", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "end2end/subdir/dir/file1", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "end2end/subdir/file1", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "end2end/subdir2", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "end2end/subdir2/BUILD", "type": "file", - "packages": [ + "package_manifests": [ { "type": "bazel", "namespace": null, @@ -142,19 +217,19 @@ { "path": "end2end/subdir2/file2", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "end2end/subdir2/subdir3", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "end2end/subdir2/subdir3/file2", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] } ] diff --git a/tests/packagedcode/data/build/buck/end2end-expected.json b/tests/packagedcode/data/build/buck/end2end-expected.json index fcef7465afa..578cc844c73 100644 --- a/tests/packagedcode/data/build/buck/end2end-expected.json +++ b/tests/packagedcode/data/build/buck/end2end-expected.json @@ -8,6 +8,7 @@ "--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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -16,17 +17,93 @@ } } ], + "packages": [ + { + "type": "buck", + "namespace": null, + "name": "end2end", + "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": "end2end", + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:buck/end2end", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "buck", + "namespace": null, + "name": "bin", + "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": "apache-2.0", + "declared_license": [ + "LICENSE" + ], + "notice_text": null, + "root_path": "end2end/subdir2", + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:buck/bin", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } + ], "files": [ { "path": "end2end", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "end2end/BUCK", "type": "file", - "packages": [ + "package_manifests": [ { "type": "buck", "namespace": null, @@ -69,37 +146,37 @@ { "path": "end2end/subdir", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "end2end/subdir/dir", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "end2end/subdir/dir/file1", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "end2end/subdir/file1", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "end2end/subdir2", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "end2end/subdir2/BUCK", "type": "file", - "packages": [ + "package_manifests": [ { "type": "buck", "namespace": null, @@ -144,25 +221,25 @@ { "path": "end2end/subdir2/LICENSE", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "end2end/subdir2/file2", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "end2end/subdir2/subdir3", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "end2end/subdir2/subdir3/file2", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] } ] diff --git a/tests/packagedcode/data/plugin/about-package-expected.json b/tests/packagedcode/data/plugin/about-package-expected.json index 3504932b5dc..49e9e826ae4 100644 --- a/tests/packagedcode/data/plugin/about-package-expected.json +++ b/tests/packagedcode/data/plugin/about-package-expected.json @@ -10,19 +10,114 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { "spdx_license_list_version": "3.14", - "files_count": 4 + "files_count": 2 } } ], + "packages": [ + { + "type": "about", + "namespace": null, + "name": "apipkg", + "version": "1.4", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "release_date": null, + "parties": [ + { + "type": "person", + "role": "owner", + "name": "Holger Krekel", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": "https://bitbucket.org/hpk42/apipkg", + "download_url": "https://pypi.python.org/packages/94/72/fd4f2e46ce7b0d388191c819ef691c8195fab09602bbf1a2f92aa5351444/apipkg-1.4-py2.py3-none-any.whl#md5=5644eb6aff3f19e13430251a820e987f", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": "Copyright (c) 2009 holger krekel", + "license_expression": "mit", + "declared_license": "mit", + "notice_text": null, + "root_path": "apipkg.ABOUT", + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": { + "about_resource": "apipkg-1.4-py2.py3-none-any.whl" + }, + "purl": "pkg:about/apipkg@1.4", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "about", + "namespace": null, + "name": "appdirs", + "version": "1.4.3", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "release_date": null, + "parties": [ + { + "type": "person", + "role": "owner", + "name": "ActiveState", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": "https://pypi.python.org/pypi/appdirs", + "download_url": "https://pypi.python.org/packages/56/eb/810e700ed1349edde4cbdc1b2a21e28cdf115f9faf263f6bbf8447c1abf3/appdirs-1.4.3-py2.py3-none-any.whl#md5=9ed4b51c9611775c3078b3831072e153", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": "Copyright (c) 2010 ActiveState Software Inc.", + "license_expression": "mit", + "declared_license": "mit", + "notice_text": null, + "root_path": "appdirs.ABOUT", + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": { + "about_resource": "appdirs-1.4.3-py2.py3-none-any.whl" + }, + "purl": "pkg:about/appdirs@1.4.3", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } + ], "files": [ { "path": "apipkg.ABOUT", "type": "file", - "packages": [ + "package_manifests": [ { "type": "about", "namespace": null, @@ -72,16 +167,10 @@ ], "scan_errors": [] }, - { - "path": "apipkg.ABOUT-expected", - "type": "file", - "packages": [], - "scan_errors": [] - }, { "path": "appdirs.ABOUT", "type": "file", - "packages": [ + "package_manifests": [ { "type": "about", "namespace": null, @@ -130,12 +219,6 @@ } ], "scan_errors": [] - }, - { - "path": "appdirs.ABOUT-expected", - "type": "file", - "packages": [], - "scan_errors": [] } ] } \ No newline at end of file diff --git a/tests/packagedcode/data/plugin/bower-package-expected.json b/tests/packagedcode/data/plugin/bower-package-expected.json index 5ef719e5064..91deaa822b8 100644 --- a/tests/packagedcode/data/plugin/bower-package-expected.json +++ b/tests/packagedcode/data/plugin/bower-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,88 @@ } } ], + "packages": [ + { + "type": "bower", + "namespace": null, + "name": "blue-leaf", + "version": null, + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "Physics-like animations for pretty particles", + "release_date": null, + "parties": [ + { + "type": null, + "role": "author", + "name": "Betty Beta ", + "email": null, + "url": null + } + ], + "keywords": [ + "motion", + "physics", + "particles" + ], + "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": "mit", + "declared_license": [ + "MIT" + ], + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:bower/get-size", + "requirement": "~1.2.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:bower/eventEmitter", + "requirement": "~4.2.11", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:bower/qunit", + "requirement": "~1.16.0", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + } + ], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:bower/blue-leaf", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } + ], "files": [ { "path": "bower.json", "type": "file", - "packages": [ + "package_manifests": [ { "type": "bower", "namespace": null, diff --git a/tests/packagedcode/data/plugin/cargo-package-expected.json b/tests/packagedcode/data/plugin/cargo-package-expected.json index 7ebb4a31c6d..be04d7caa7f 100644 --- a/tests/packagedcode/data/plugin/cargo-package-expected.json +++ b/tests/packagedcode/data/plugin/cargo-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,57 @@ } } ], + "packages": [ + { + "type": "cargo", + "namespace": null, + "name": "clap", + "version": "2.32.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Rust", + "description": "A simple to use, efficient, and full featured Command Line Argument Parser", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "Kevin K.", + "email": "kbknapp@gmail.com", + "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": null, + "license_expression": "mit", + "declared_license": "MIT", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:cargo/clap@2.32.0", + "repository_homepage_url": "https://crates.io/crates/clap", + "repository_download_url": "https://crates.io/api/v1/crates/clap/2.32.0/download", + "api_data_url": "https://crates.io/api/v1/crates/clap" + } + ], "files": [ { "path": "Cargo.toml", "type": "file", - "packages": [ + "package_manifests": [ { "type": "cargo", "namespace": null, diff --git a/tests/packagedcode/data/plugin/chef-package-expected.json b/tests/packagedcode/data/plugin/chef-package-expected.json index ba3c62087aa..8829937f4e7 100644 --- a/tests/packagedcode/data/plugin/chef-package-expected.json +++ b/tests/packagedcode/data/plugin/chef-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,119 @@ } } ], + "packages": [ + { + "type": "chef", + "namespace": null, + "name": "301", + "version": "0.1.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Ruby", + "description": "Installs/Configures 301", + "release_date": null, + "parties": [ + { + "type": null, + "role": "maintainer", + "name": "Mark Wilkerson", + "email": "mark@segfawlt.net", + "url": null + } + ], + "keywords": [], + "homepage_url": null, + "download_url": "https://supermarket.chef.io/cookbooks/301/versions/0.1.0/download", + "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": "mit", + "declared_license": "MIT", + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:chef/nodejs", + "requirement": ">= 0.0.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + } + ], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:chef/301@0.1.0", + "repository_homepage_url": null, + "repository_download_url": "https://supermarket.chef.io/cookbooks/301/versions/0.1.0/download", + "api_data_url": "https://supermarket.chef.io/api/v1/cookbooks/301/versions/0.1.0" + }, + { + "type": "chef", + "namespace": null, + "name": "301", + "version": "0.1.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Ruby", + "description": "Installs/Configures 301", + "release_date": null, + "parties": [ + { + "type": null, + "role": "maintainer", + "name": "Mark Wilkerson", + "email": "mark@segfawlt.net", + "url": null + } + ], + "keywords": [], + "homepage_url": null, + "download_url": "https://supermarket.chef.io/cookbooks/301/versions/0.1.0/download", + "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": "mit", + "declared_license": "MIT", + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:chef/nodejs", + "requirement": null, + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + } + ], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:chef/301@0.1.0", + "repository_homepage_url": null, + "repository_download_url": "https://supermarket.chef.io/cookbooks/301/versions/0.1.0/download", + "api_data_url": "https://supermarket.chef.io/api/v1/cookbooks/301/versions/0.1.0" + } + ], "files": [ { "path": "metadata.json", "type": "file", - "packages": [ + "package_manifests": [ { "type": "chef", "namespace": null, @@ -82,7 +191,7 @@ { "path": "metadata.rb", "type": "file", - "packages": [ + "package_manifests": [ { "type": "chef", "namespace": null, diff --git a/tests/packagedcode/data/plugin/com-package-expected.json b/tests/packagedcode/data/plugin/com-package-expected.json index abcd4c23261..08cf38b9de6 100644 --- a/tests/packagedcode/data/plugin/com-package-expected.json +++ b/tests/packagedcode/data/plugin/com-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,61 @@ } } ], + "packages": [ + { + "type": "winexe", + "namespace": null, + "name": "Microsoft\u00ae Windows\u00ae Operating System", + "version": "10.0.17763.1", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "Change CodePage Utility", + "release_date": null, + "parties": [ + { + "type": "organization", + "role": "author", + "name": "Microsoft Corporation", + "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": "\u00a9 Microsoft Corporation. All rights reserved.", + "license_expression": "unknown", + "declared_license": { + "LegalCopyright": "\u00a9 Microsoft Corporation. All rights reserved.", + "LegalTrademarks": "", + "License": null + }, + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:winexe/Microsoft%C2%AE%20Windows%C2%AE%20Operating%20System@10.0.17763.1", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } + ], "files": [ { "path": "chcp.com", "type": "file", - "packages": [ + "package_manifests": [ { "type": "winexe", "namespace": null, diff --git a/tests/packagedcode/data/plugin/conda-package-expected.json b/tests/packagedcode/data/plugin/conda-package-expected.json index 9be4570b6f9..d7e53a52072 100644 --- a/tests/packagedcode/data/plugin/conda-package-expected.json +++ b/tests/packagedcode/data/plugin/conda-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,29 +19,92 @@ } } ], + "packages": [ + { + "type": "conda", + "namespace": null, + "name": "requests-kerberos", + "version": "0.8.0", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "Kerberos authentication handler for python-requests", + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": "https://github.com/requests/requests-kerberos", + "download_url": "https://pypi.python.org/packages/source/r/requests-kerberos/requests-kerberos-0.8.0.tar.gz", + "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": "unknown", + "declared_license": "Other", + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:conda/python", + "requirement": null, + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:conda/requests", + "requirement": ">=1.1.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:conda/pykerberos", + "requirement": ">=1.1.8,<2.0.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + } + ], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:conda/requests-kerberos@0.8.0", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } + ], "files": [ { "path": "info", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "info/recipe.tar-extract", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "info/recipe.tar-extract/recipe", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "info/recipe.tar-extract/recipe/meta.yaml", "type": "file", - "packages": [ + "package_manifests": [ { "type": "conda", "namespace": null, diff --git a/tests/packagedcode/data/plugin/cran-package-expected.json b/tests/packagedcode/data/plugin/cran-package-expected.json index 8ee3198e1fb..d14b4a471bc 100644 --- a/tests/packagedcode/data/plugin/cran-package-expected.json +++ b/tests/packagedcode/data/plugin/cran-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,12 @@ } } ], + "packages": [], "files": [ { "path": "DESCRIPTION", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] } ] diff --git a/tests/packagedcode/data/plugin/freebsd-package-expected.json b/tests/packagedcode/data/plugin/freebsd-package-expected.json index 16fcfe01328..def0941d1b9 100644 --- a/tests/packagedcode/data/plugin/freebsd-package-expected.json +++ b/tests/packagedcode/data/plugin/freebsd-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,67 @@ } } ], + "packages": [ + { + "type": "freebsd", + "namespace": null, + "name": "dmidecode", + "version": "2.12", + "qualifiers": { + "arch": "freebsd:10:x86:64", + "origin": "sysutils/dmidecode" + }, + "subpath": null, + "primary_language": null, + "description": "Dmidecode is a tool or dumping a computer's DMI (some say SMBIOS) table\ncontents in a human-readable format. The output contains a description of the\nsystem's hardware components, as well as other useful pieces of information\nsuch as serial numbers and BIOS revision.\n\nWWW: http://www.nongnu.org/dmidecode/", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "maintainer", + "name": null, + "email": "anders@FreeBSD.org", + "url": null + } + ], + "keywords": [ + "sysutils" + ], + "homepage_url": "http://www.nongnu.org/dmidecode/", + "download_url": "https://pkg.freebsd.org/freebsd:10:x86:64/latest/All/dmidecode-2.12.txz", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": "https://svnweb.freebsd.org/ports/head/sysutils/dmidecode", + "vcs_url": null, + "copyright": null, + "license_expression": "gpl-2.0", + "declared_license": { + "licenses": [ + "GPLv2" + ], + "licenselogic": "single" + }, + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:freebsd/dmidecode@2.12?arch=freebsd:10:x86:64&origin=sysutils/dmidecode", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } + ], "files": [ { "path": "+COMPACT_MANIFEST", "type": "file", - "packages": [ + "package_manifests": [ { "type": "freebsd", "namespace": null, diff --git a/tests/packagedcode/data/plugin/haxe-package-expected.json b/tests/packagedcode/data/plugin/haxe-package-expected.json index 14e9e5255c2..d6fc4e9a8aa 100644 --- a/tests/packagedcode/data/plugin/haxe-package-expected.json +++ b/tests/packagedcode/data/plugin/haxe-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,62 @@ } } ], + "packages": [ + { + "type": "haxe", + "namespace": null, + "name": "hxsocketio", + "version": "0.1.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Haxe", + "description": "Externs for socket.io", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "contributor", + "name": "gogoprog", + "email": null, + "url": "https://lib.haxe.org/u/gogoprog" + } + ], + "keywords": [ + "js", + "node", + "socketio", + "socket.io" + ], + "homepage_url": "https://github.com/gogoprog/hxsocketio/", + "download_url": "https://lib.haxe.org/p/hxsocketio/0.1.0/download/", + "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": "mit", + "declared_license": "MIT", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:haxe/hxsocketio@0.1.0", + "repository_homepage_url": "https://lib.haxe.org/p/hxsocketio", + "repository_download_url": "https://lib.haxe.org/p/hxsocketio/0.1.0/download/", + "api_data_url": null + } + ], "files": [ { "path": "haxelib.json", "type": "file", - "packages": [ + "package_manifests": [ { "type": "haxe", "namespace": null, diff --git a/tests/packagedcode/data/plugin/maven-package-expected.json b/tests/packagedcode/data/plugin/maven-package-expected.json index 915e71ac423..af7a2b19391 100644 --- a/tests/packagedcode/data/plugin/maven-package-expected.json +++ b/tests/packagedcode/data/plugin/maven-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,29 +19,2650 @@ } } ], + "packages": [ + { + "type": "maven", + "namespace": "adarwin", + "name": "adarwin", + "version": "1.0", + "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": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/adarwin/adarwin@1.0?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/adarwin/adarwin@1.0", + "repository_homepage_url": "https://repo1.maven.org/maven2/adarwin/adarwin/1.0/", + "repository_download_url": "https://repo1.maven.org/maven2/adarwin/adarwin/1.0/adarwin-1.0.jar", + "api_data_url": "https://repo1.maven.org/maven2/adarwin/adarwin/1.0/adarwin-1.0.pom" + }, + { + "type": "maven", + "namespace": "org.apache.ant", + "name": "ant-jai", + "version": "1.7.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "image task and corresponding types.\n jai (Java Advanced Imaging) is not available in public Maven repositories, therefore the dependencies are included with a scope provided\n the download URL is http://java.sun.com/products/java-media/jai/", + "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": null, + "dependencies": [ + { + "purl": "pkg:maven/org.apache.ant/ant@1.7.0", + "requirement": "1.7.0", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.media/jai-core@1.1.2_01", + "requirement": "1.1.2_01", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:maven/jai/jai-codec@1.1.2.1", + "requirement": "1.1.2.1", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + } + ], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/org.apache.ant/ant-jai@1.7.0?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/org.apache.ant/ant-jai@1.7.0", + "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jai/1.7.0/", + "repository_download_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jai/1.7.0/ant-jai-1.7.0.jar", + "api_data_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jai/1.7.0/ant-jai-1.7.0.pom" + }, + { + "type": "maven", + "namespace": "org.apache.ant", + "name": "ant-jsch", + "version": "1.7.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "contains the sshexec and scp tasks\n jsch 0.1.29 might not be available from maven", + "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": null, + "dependencies": [ + { + "purl": "pkg:maven/org.apache.ant/ant@1.7.0", + "requirement": "1.7.0", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/com.jcraft/jsch@0.1.29", + "requirement": "0.1.29", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + } + ], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/org.apache.ant/ant-jsch@1.7.0?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/org.apache.ant/ant-jsch@1.7.0", + "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jsch/1.7.0/", + "repository_download_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jsch/1.7.0/ant-jsch-1.7.0.jar", + "api_data_url": "https://repo1.maven.org/maven2/org/apache/ant/ant-jsch/1.7.0/ant-jsch-1.7.0.pom" + }, + { + "type": "maven", + "namespace": "aopalliance", + "name": "aopalliance", + "version": "1.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "AOP alliance\nAOP Alliance", + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": "http://aopalliance.sourceforge.net", + "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": "public-domain AND gpl-1.0-plus", + "declared_license": [ + { + "name": "Public Domain", + "url": null, + "comments": null, + "distribution": null + }, + { + "name": "GPL", + "url": "http://nexb.com", + "comments": null, + "distribution": null + } + ], + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/aopalliance/aopalliance@1.0?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/aopalliance/aopalliance@1.0", + "repository_homepage_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/", + "repository_download_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar", + "api_data_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom" + }, + { + "type": "maven", + "namespace": "bcel", + "name": "bcel", + "version": "5.1", + "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": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/bcel/bcel@5.1?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/bcel/bcel@5.1", + "repository_homepage_url": "https://repo1.maven.org/maven2/bcel/bcel/5.1/", + "repository_download_url": "https://repo1.maven.org/maven2/bcel/bcel/5.1/bcel-5.1.jar", + "api_data_url": "https://repo1.maven.org/maven2/bcel/bcel/5.1/bcel-5.1.pom" + }, + { + "type": "maven", + "namespace": "classworlds", + "name": "classworlds", + "version": "1.1-alpha-2", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "classworlds", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "developper", + "name": "bob mcwhirter", + "email": "bob@werken.com", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Jason van Zyl", + "email": "jason@zenplex.com", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Ben Walding", + "email": "ben@walding.com", + "url": null + }, + { + "type": "organization", + "role": "owner", + "name": "The Codehaus", + "email": null, + "url": "http://codehaus.org/" + } + ], + "keywords": [], + "homepage_url": "http://classworlds.codehaus.org/", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": "http://cvs.classworlds.codehaus.org/", + "vcs_url": "cvs+pserver:anonymous@cvs.codehaus.org:/scm/cvspublic/:classworlds", + "copyright": null, + "license_expression": null, + "declared_license": null, + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/classworlds/classworlds@1.1-alpha-2?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/classworlds/classworlds@1.1-alpha-2", + "repository_homepage_url": "https://repo1.maven.org/maven2/classworlds/classworlds/1.1-alpha-2/", + "repository_download_url": "https://repo1.maven.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar", + "api_data_url": "https://repo1.maven.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom" + }, + { + "type": "maven", + "namespace": "commons-fileupload", + "name": "commons-fileupload", + "version": "1.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "FileUpload\nThe FileUpload component provides a simple yet flexible means of adding\n support for multipart file upload functionality to servlets and web\n applications.", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "developper", + "name": "Martin Cooper", + "email": "martinc@apache.org", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "dIon Gillard", + "email": "dion@apache.org", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "John McNally", + "email": "jmcnally@collab.net", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Daniel Rall", + "email": "dlr@finemaltcoding.com", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Jason van Zyl", + "email": "jason@zenplex.com", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Robert Burrell Donkin", + "email": "rdonkin@apache.org", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Sean C. Sullivan", + "email": "sean |at| seansullivan |dot| com", + "url": null + } + ], + "keywords": [], + "homepage_url": "http://jakarta.apache.org/commons/fileupload/", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "http://nagoya.apache.org/bugzilla/", + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "license_expression": null, + "declared_license": null, + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:maven/servletapi/servletapi@2.3", + "requirement": "2.3", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:maven/junit/junit@3.8.1", + "requirement": "3.8.1", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + } + ], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/commons-fileupload/commons-fileupload@1.0?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/commons-fileupload/commons-fileupload@1.0", + "repository_homepage_url": "https://repo1.maven.org/maven2/commons-fileupload/commons-fileupload/1.0/", + "repository_download_url": "https://repo1.maven.org/maven2/commons-fileupload/commons-fileupload/1.0/commons-fileupload-1.0.jar", + "api_data_url": "https://repo1.maven.org/maven2/commons-fileupload/commons-fileupload/1.0/commons-fileupload-1.0.pom" + }, + { + "type": "maven", + "namespace": "commons-validator", + "name": "commons-validator", + "version": "1.2.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "Validator\nCommons Validator provides the building blocks for both client side validation\n and server side data validation. It may be used standalone or with a framework like\n Struts.", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "developper", + "name": "Don Brown", + "email": "mrdon@apache.org", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Martin Cooper", + "email": "martinc@apache.org", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "David Graham", + "email": "dgraham@apache.org", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Ted Husted", + "email": "husted@apache.org", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Rob Leland", + "email": "rleland at apache.org", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Craig McClanahan", + "email": "craigmcc@apache.org", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "James Mitchell", + "email": "jmitchell NOSPAM apache.org", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Niall Pemberton", + "email": "niallp NOSPAM apache.org", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "James Turner", + "email": "turner@apache.org", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "David Winterfeldt", + "email": "dwinterfeldt@apache.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Saul Q Yuan Add", + "email": null, + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Shane Bailey", + "email": null, + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Dave Derry", + "email": null, + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tim O'Brien", + "email": null, + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Scott Clasen", + "email": "ticktock@speakeasy.net>", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Marcus Brito Finish", + "email": null, + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Padma Ginnaram", + "email": null, + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Thomas Jacob", + "email": "thomas.jacob@sinnerschrader.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Adam Kramer", + "email": null, + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Greg Ludington", + "email": null, + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Bjorn-H. Moritz", + "email": null, + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "David Neuer", + "email": "DavidNeuer@nascopgh.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kurt Post", + "email": null, + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Arun Mammen Thomas", + "email": null, + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Steven Fines", + "email": "steven.fines@cotelligent.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Didier Romelot", + "email": "didier.romelot@renault.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Steve Stair", + "email": null, + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jeremy Tan", + "email": "jeremytan@scualum.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "94RGt2", + "email": "lmagee@biziworks.com.au", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nacho G. Mac Dowell", + "email": null, + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mark Lowe", + "email": "mark.lowe@boxstuff.com", + "url": null + }, + { + "type": "organization", + "role": "owner", + "name": "The Apache Software Foundation", + "email": null, + "url": "http://jakarta.apache.org" + } + ], + "keywords": [], + "homepage_url": "http://jakarta.apache.org/commons/validator/", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "http://issues.apache.org/bugzilla/", + "code_view_url": "http://svn.apache.org/viewcvs.cgi", + "vcs_url": "svn+http://svn.apache.org/repos/asf/jakarta/commons/proper/validator/trunk", + "copyright": null, + "license_expression": "apache-2.0", + "declared_license": [ + { + "name": "The Apache Software License, Version 2.0", + "url": "/LICENSE.txt", + "comments": null, + "distribution": null + } + ], + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:maven/commons-beanutils/commons-beanutils@1.7.0", + "requirement": "1.7.0", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-digester/commons-digester@1.6", + "requirement": "1.6", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-logging/commons-logging@1.0.4", + "requirement": "1.0.4", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/oro/oro@2.0.8", + "requirement": "2.0.8", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/xml-apis/xml-apis@2.0.2", + "requirement": "2.0.2", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/junit/junit@3.8.1", + "requirement": "3.8.1", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + } + ], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/commons-validator/commons-validator@1.2.0?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/commons-validator/commons-validator@1.2.0", + "repository_homepage_url": "https://repo1.maven.org/maven2/commons-validator/commons-validator/1.2.0/", + "repository_download_url": "https://repo1.maven.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar", + "api_data_url": "https://repo1.maven.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom" + }, + { + "type": "maven", + "namespace": "easyconf", + "name": "easyconf", + "version": "0.9.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "Easyconf library\nEasyConf is a library to access configuration of software components and applications. \n It defines simple conventions to make it easier to use. It was born in a portlets-based \n portal and has several features useful for this and similar environments.", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "developper", + "name": "Jorge Ferrer", + "email": "jferrer germinus.com", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Jes\u00fas Jaimez", + "email": null, + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Ismael Ferrer", + "email": "iferrer germinus.com", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "\u00c3?lvaro Gonz\u00c3\u00a1lez", + "email": "agonzalez germinus.com", + "url": null + }, + { + "type": "organization", + "role": "owner", + "name": "EasyConf team", + "email": null, + "url": "http://www.sourceforge.net/projects/easyconf" + } + ], + "keywords": [], + "homepage_url": "http://easyconf.sourceforge.net", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://sourceforge.net/tracker/?group_id=131552&atid=721404", + "code_view_url": "http://cvs.sourceforge.net/viewcvs.py/easyconf/", + "vcs_url": "cvs+pserver:anonymous@cvs.sourceforge.net:/cvsroot/easyconf:easyconf", + "copyright": null, + "license_expression": null, + "declared_license": null, + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:maven/log4j/log4j@1.2.8", + "requirement": "1.2.8", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/servletapi/servletapi@2.3", + "requirement": "2.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/struts/struts@1.1", + "requirement": "1.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-configuration/commons-configuration@1.1", + "requirement": "1.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-collections/commons-collections@3.1", + "requirement": "3.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-lang/commons-lang@2.0", + "requirement": "2.0", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/dom4j/dom4j@1.4", + "requirement": "1.4", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-logging/commons-logging@1.0.4", + "requirement": "1.0.4", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-digester/commons-digester@1.6", + "requirement": "1.6", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/xerces/xerces@2.2.1", + "requirement": "2.2.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/xml-apis/xml-apis@2.0.2", + "requirement": "2.0.2", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/xdoclet/xdoclet@1.2.1", + "requirement": "1.2.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/junit/junit@3.8.1", + "requirement": "3.8.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-beanutils/commons-beanutils-core@1.7.0", + "requirement": "1.7.0", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-beanutils/commons-beanutils-bean-collections@1.7.0", + "requirement": "1.7.0", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/xdoclet/xdoclet-web-module@1.2.1", + "requirement": "1.2.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/mx4j/mx4j-jmx@2.1.1", + "requirement": "2.1.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/mx4j/mx4j-impl@2.1.1", + "requirement": "2.1.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + } + ], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/easyconf/easyconf@0.9.0?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/easyconf/easyconf@0.9.0", + "repository_homepage_url": "https://repo1.maven.org/maven2/easyconf/easyconf/0.9.0/", + "repository_download_url": "https://repo1.maven.org/maven2/easyconf/easyconf/0.9.0/easyconf-0.9.0.jar", + "api_data_url": "https://repo1.maven.org/maven2/easyconf/easyconf/0.9.0/easyconf-0.9.0.pom" + }, + { + "type": "maven", + "namespace": "org.codehaus.mojo", + "name": "findbugs-maven-plugin", + "version": "1.1.1", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "Maven FindBugs PlugIn\nThis Plug-In generates reports based on the FindBugs Library", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "developper", + "name": "Cyrill Ruettimann", + "email": "mypublicaddress@mac.com", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Garvin LeClaire", + "email": "gleclaire@codehaus.org", + "url": "http://gdleclaire.blogspot.com" + }, + { + "type": "person", + "role": "contributor", + "name": "Detlef Pleiss", + "email": "d.pleiss@comundus.com", + "url": null + }, + { + "type": "organization", + "role": "owner", + "name": "CodeHaus", + "email": null, + "url": "http://www.codehaus.org" + } + ], + "keywords": [], + "homepage_url": null, + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": "https://svn.codehaus.org/mojo/tags/findbugs-maven-plugin-1.1.1", + "vcs_url": "svn+https://svn.codehaus.org/mojo/tags/findbugs-maven-plugin-1.1.1", + "copyright": null, + "license_expression": "mit", + "declared_license": [ + { + "name": "MIT", + "url": "LICENSE.txt", + "comments": null, + "distribution": "repo" + } + ], + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:maven/org.apache.maven/maven-artifact@2.0.4", + "requirement": "2.0.4", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.apache.maven.reporting/maven-reporting-impl@2.0.4", + "requirement": "2.0.4", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.apache.maven.reporting/maven-reporting-api@2.0.4", + "requirement": "2.0.4", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.apache.maven.doxia/doxia-core@1.0-alpha-8", + "requirement": "1.0-alpha-8", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/net.sourceforge.findbugs/findbugs@1.2.0", + "requirement": "1.2.0", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + } + ], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/org.codehaus.mojo/findbugs-maven-plugin@1.1.1", + "repository_homepage_url": "https://repo1.maven.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/", + "repository_download_url": "https://repo1.maven.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/findbugs-maven-plugin-1.1.1.jar", + "api_data_url": "https://repo1.maven.org/maven2/org/codehaus/mojo/findbugs-maven-plugin/1.1.1/findbugs-maven-plugin-1.1.1.pom" + }, + { + "type": "maven", + "namespace": "it.assist.jrecordbind", + "name": "jrecordbind${artifactId.ext}", + "version": "2.3.4", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "jrecordbind\nTransform fixed-length and variable-length text files into beans and back", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "developper", + "name": "Federico Fissore", + "email": "fridrik@dev.java.net", + "url": null + } + ], + "keywords": [], + "homepage_url": "https://jrecordbind.dev.java.net/", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://jrecordbind.dev.java.net/servlets/ProjectIssues", + "code_view_url": "https://jrecordbind.dev.java.net/source/browse/jrecordbind/", + "vcs_url": "svn+https://jrecordbind.dev.java.net/svn/jrecordbind/trunk/", + "copyright": null, + "license_expression": "lgpl-2.0-plus AND lgpl-2.1-plus", + "declared_license": [ + { + "name": "LGPL", + "url": "http://www.gnu.org/copyleft/lesser.html", + "comments": null, + "distribution": "repo" + } + ], + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:maven/relaxngDatatype/relaxngDatatype@20020414", + "requirement": "20020414", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/com.sun.xml.bind/jaxb-impl@2.1.11", + "requirement": "2.1.11", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/com.sun.xml.bind/jaxb-xjc@2.1.11", + "requirement": "2.1.11", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/com.sun.xsom/xsom@20081112", + "requirement": "20081112", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + } + ], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/it.assist.jrecordbind/jrecordbind%24%7BartifactId.ext%7D@2.3.4", + "repository_homepage_url": "https://repo1.maven.org/maven2/it/assist/jrecordbind/jrecordbind${artifactId.ext}/2.3.4/", + "repository_download_url": "https://repo1.maven.org/maven2/it/assist/jrecordbind/jrecordbind${artifactId.ext}/2.3.4/jrecordbind${artifactId.ext}-2.3.4.jar", + "api_data_url": "https://repo1.maven.org/maven2/it/assist/jrecordbind/jrecordbind${artifactId.ext}/2.3.4/jrecordbind${artifactId.ext}-2.3.4.pom" + }, + { + "type": "maven", + "namespace": "ch.qos.logback", + "name": "logback-access", + "version": "0.2.5", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "Logback Access Module\nLogback: the generic, reliable, fast and flexible logging library for Java.", + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": "http://logback.qos.ch/access", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": "http://svn.qos.ch/viewcvs/logback/access/trunk/", + "vcs_url": "http://svn.qos.ch/repos/logback/access/trunk/", + "copyright": null, + "license_expression": "lgpl-2.0-plus", + "declared_license": [ + { + "name": "GNU Lesser General Public License", + "url": "http://www.gnu.org/licenses/lgpl.html", + "comments": null, + "distribution": null + } + ], + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:maven/ch.qos.logback/logback-core", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + }, + { + "purl": "pkg:maven/tomcat/catalina", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + }, + { + "purl": "pkg:maven/org.mortbay.jetty/jetty", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + }, + { + "purl": "pkg:maven/com.caucho/resin", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + }, + { + "purl": "pkg:maven/org.mortbay.jetty/servlet-api-2.5", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + } + ], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/ch.qos.logback/logback-access@0.2.5?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/ch.qos.logback/logback-access@0.2.5", + "repository_homepage_url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-access/0.2.5/", + "repository_download_url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-access/0.2.5/logback-access-0.2.5.jar", + "api_data_url": "https://repo1.maven.org/maven2/ch/qos/logback/logback-access/0.2.5/logback-access-0.2.5.pom" + }, + { + "type": "maven", + "namespace": "org.codehaus.plexus", + "name": "plexus-interactivity-api", + "version": "1.0-alpha-4", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "Plexus Default Interactivity Handler", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "developper", + "name": "Jason van Zyl", + "email": "jason@zenplex.com", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Pete Kazmier", + "email": null, + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "James Taylor", + "email": "james@jamestaylor.org", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Dan Diephouse", + "email": "dan@envoisolutions.com", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Kasper Nielsen", + "email": "apache@kav.dk", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Ben Walding", + "email": "bwalding@codehaus.org", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Mark Wilkinson", + "email": "mhw@kremvax.net", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Michal Maczka", + "email": "mmaczka@interia.pl", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Emmanuel Venisse", + "email": "evenisse@codehaus.org", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Trygve Laugstol", + "email": "trygvis@codehaus.org", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Kenney Westerhof", + "email": "kenney@codehaus.org", + "url": null + }, + { + "type": "organization", + "role": "owner", + "name": "Codehaus", + "email": null, + "url": "http://www.codehaus.org/" + } + ], + "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": "svn://svn.codehaus.org/plexus/scm/trunk/plexus-components/plexus-interactivity/plexus-interactivity-api", + "copyright": null, + "license_expression": null, + "declared_license": null, + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:maven/org.codehaus.plexus/plexus-container-default@1.0-alpha-7", + "requirement": "1.0-alpha-7", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/classworlds/classworlds@1.1-alpha-2", + "requirement": "1.1-alpha-2", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/plexus/plexus-utils@1.0.2", + "requirement": "1.0.2", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/junit/junit@3.8.1", + "requirement": "3.8.1", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + } + ], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/org.codehaus.plexus/plexus-interactivity-api@1.0-alpha-4", + "repository_homepage_url": "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/", + "repository_download_url": "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar", + "api_data_url": "https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom" + }, + { + "type": "maven", + "namespace": "ur.urwerk.test.modules", + "name": "main", + "version": "1.0.0-SNAPSHOT", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "ur.urwerk.test.modules:main:pom:1.0.0-SNAPSHOT", + "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": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/ur.urwerk.test.modules/main@1.0.0-SNAPSHOT", + "repository_homepage_url": "https://repo1.maven.org/maven2/ur/urwerk/test/modules/main/1.0.0-SNAPSHOT/", + "repository_download_url": "https://repo1.maven.org/maven2/ur/urwerk/test/modules/main/1.0.0-SNAPSHOT/main-1.0.0-SNAPSHOT.jar", + "api_data_url": "https://repo1.maven.org/maven2/ur/urwerk/test/modules/main/1.0.0-SNAPSHOT/main-1.0.0-SNAPSHOT.pom" + }, + { + "type": "maven", + "namespace": "org.apache.geronimo.specs", + "name": "specs", + "version": "1.3", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "Geronimo Specifications\nProvides open-source implementations of Sun specifications.", + "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": "http://svn.apache.org/viewvc/geronimo/specs/tags/1_3/", + "vcs_url": "svn+http://svn.apache.org/repos/asf/geronimo/specs/tags/1_3", + "copyright": null, + "license_expression": null, + "declared_license": null, + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:maven/junit/junit@3.8.1", + "requirement": "3.8.1", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + } + ], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/org.apache.geronimo.specs/specs@1.3?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/org.apache.geronimo.specs/specs@1.3", + "repository_homepage_url": "https://repo1.maven.org/maven2/org/apache/geronimo/specs/specs/1.3/", + "repository_download_url": "https://repo1.maven.org/maven2/org/apache/geronimo/specs/specs/1.3/specs-1.3.jar", + "api_data_url": "https://repo1.maven.org/maven2/org/apache/geronimo/specs/specs/1.3/specs-1.3.pom" + }, + { + "type": "maven", + "namespace": "org.springframework", + "name": "spring", + "version": "2.5.4", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "Spring Framework", + "release_date": null, + "parties": [ + { + "type": "organization", + "role": "owner", + "name": "Spring Framework", + "email": null, + "url": "http://www.springframework.org/" + } + ], + "keywords": [], + "homepage_url": "http://www.springframework.org", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": "http://springframework.cvs.sourceforge.net/springframework/", + "vcs_url": "cvs+pserver:anonymous:@springframework.cvs.sourceforge.net:/cvsroot/springframework/spring", + "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": null, + "dependencies": [ + { + "purl": "pkg:maven/aopalliance/aopalliance@1.0", + "requirement": "1.0", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/asm/asm@2.2.3", + "requirement": "2.2.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/asm/asm-commons@2.2.3", + "requirement": "2.2.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/asm/asm-util@2.2.3", + "requirement": "2.2.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/aspectj/aspectjrt@1.5.4", + "requirement": "1.5.4", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/aspectj/aspectjweaver@1.5.4", + "requirement": "1.5.4", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/backport-util-concurrent/backport-util-concurrent@3.0", + "requirement": "3.0", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/c3p0/c3p0@0.9.1.2", + "requirement": "0.9.1.2", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/cglib/cglib-nodep@2.1_3", + "requirement": "2.1_3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-attributes/commons-attributes-api@2.2", + "requirement": "2.2", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-attributes/commons-attributes-compiler@2.2", + "requirement": "2.2", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-beanutils/commons-beanutils@1.7.0", + "requirement": "1.7.0", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-collections/commons-collections@3.2", + "requirement": "3.2", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-dbcp/commons-dbcp@1.2.2", + "requirement": "1.2.2", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-fileupload/commons-fileupload@1.2", + "requirement": "1.2", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-httpclient/commons-httpclient@3.1", + "requirement": "3.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-logging/commons-logging@1.1.1", + "requirement": "1.1.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-pool/commons-pool@1.3", + "requirement": "1.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/com.bea.wlplatform/commonj-twm@1.1", + "requirement": "1.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/com.experlog/xapool@1.5.0", + "requirement": "1.5.0", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.apache.ibatis/ibatis-sqlmap@2.3.0.677", + "requirement": "2.3.0.677", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/com.jamonapi/jamon@2.4", + "requirement": "2.4", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/com.lowagie/itext@2.0.7", + "requirement": "2.0.7", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/com.oracle.toplink/toplink@10.1.3", + "requirement": "10.1.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/com.oracle/toplink-essentials@2.41", + "requirement": "2.41", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/com.oracle/oc4j@1.0", + "requirement": "1.0", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/freemarker/freemarker@2.3.12", + "requirement": "2.3.12", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/groovy/groovy@1.5.5", + "requirement": "1.5.5", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/hessian/hessian@3.1.3", + "requirement": "3.1.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/jasperreports/jasperreports@2.0.5", + "requirement": "2.0.5", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/jexcelapi/jxl@2.6.6", + "requirement": "2.6.6", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/jotm/jotm@2.0.10", + "requirement": "2.0.10", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/jruby/jruby-bin@1.0.1", + "requirement": "1.0.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/junit/junit@3.8.1", + "requirement": "3.8.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/log4j/log4j@1.2.15", + "requirement": "1.2.15", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/net.sf.ehcache/ehcache@1.4.1", + "requirement": "1.4.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.apache.axis/axis@1.4", + "requirement": "1.4", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.apache.tiles/tiles-api@2.0.5", + "requirement": "2.0.5", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.apache.tiles/tiles-core@2.0.5", + "requirement": "2.0.5", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.apache.tiles/tiles-jsp@2.0.5", + "requirement": "2.0.5", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.beanshell/bsh@2.0b4", + "requirement": "2.0b4", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.hibernate/hibernate@3.2.6.ga", + "requirement": "3.2.6.ga", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.hibernate/hibernate-entitymanager@3.3.2.ga", + "requirement": "3.3.2.ga", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/poi/poi@3.0.1", + "requirement": "3.0.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/opensymphony/quartz-all@1.6.0", + "requirement": "1.6.0", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/struts/struts@1.2.9", + "requirement": "1.2.9", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/taglibs/standard@1.1.2", + "requirement": "1.1.2", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/tomcat/catalina@5.5.23", + "requirement": "5.5.23", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/velocity/velocity@1.5", + "requirement": "1.5", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/velocity-tools/velocity-tools-generic@1.4", + "requirement": "1.4", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/velocity-tools/velocity-tools-view@1.4", + "requirement": "1.4", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.activation/activation@1.1", + "requirement": "1.1", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.ejb/ejb@3.0", + "requirement": "3.0", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.faces/jsf-api@1.1", + "requirement": "1.1", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.jdo/jdo2-api@2.0", + "requirement": "2.0", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.jms/jms@1.1", + "requirement": "1.1", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.mail/mail@1.4", + "requirement": "1.4", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.persistence/persistence-api@1.0", + "requirement": "1.0", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.portlet/portlet-api@1.0", + "requirement": "1.0", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.resource/connector-api@1.5", + "requirement": "1.5", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.servlet/jsp-api@2.0", + "requirement": "2.0", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.servlet/jstl@1.1.0", + "requirement": "1.1.0", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.servlet/servlet-api@2.4", + "requirement": "2.4", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.transaction/jta@1.1", + "requirement": "1.1", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.xml/jaxrpc-api@1.1", + "requirement": "1.1", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + } + ], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/org.springframework/spring@2.5.4?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/org.springframework/spring@2.5.4", + "repository_homepage_url": "https://repo1.maven.org/maven2/org/springframework/spring/2.5.4/", + "repository_download_url": "https://repo1.maven.org/maven2/org/springframework/spring/2.5.4/spring-2.5.4.jar", + "api_data_url": "https://repo1.maven.org/maven2/org/springframework/spring/2.5.4/spring-2.5.4.pom" + }, + { + "type": "maven", + "namespace": "org.springframework", + "name": "spring-orm", + "version": "2.5.3", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "Spring Framework: ORM", + "release_date": null, + "parties": [ + { + "type": "organization", + "role": "owner", + "name": "Spring Framework", + "email": null, + "url": "http://www.springframework.org/" + } + ], + "keywords": [], + "homepage_url": "http://www.springframework.org", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": "http://springframework.cvs.sourceforge.net/springframework/", + "vcs_url": "cvs+pserver:anonymous:@springframework.cvs.sourceforge.net:/cvsroot/springframework/spring", + "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": null, + "dependencies": [ + { + "purl": "pkg:maven/aopalliance/aopalliance@1.0", + "requirement": "1.0", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-logging/commons-logging@1.1.1", + "requirement": "1.1.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/com.oracle/toplink-essentials@2.41", + "requirement": "2.41", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/com.oracle.toplink/toplink@10.1.3", + "requirement": "10.1.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.apache.ibatis/ibatis-sqlmap@2.3.0", + "requirement": "2.3.0", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.hibernate/hibernate@3.2.6.ga", + "requirement": "3.2.6.ga", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.hibernate/hibernate-entitymanager@3.3.1.ga", + "requirement": "3.3.1.ga", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.springframework/spring-aop@2.5.3", + "requirement": "2.5.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.springframework/spring-beans@2.5.3", + "requirement": "2.5.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.springframework/spring-context@2.5.3", + "requirement": "2.5.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.springframework/spring-core@2.5.3", + "requirement": "2.5.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.springframework/spring-jdbc@2.5.3", + "requirement": "2.5.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.springframework/spring-tx@2.5.3", + "requirement": "2.5.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.springframework/spring-web@2.5.3", + "requirement": "2.5.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.jdo/jdo2-api@2.0", + "requirement": "2.0", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.persistence/persistence-api@1.0", + "requirement": "1.0", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + } + ], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/org.springframework/spring-orm@2.5.3?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/org.springframework/spring-orm@2.5.3", + "repository_homepage_url": "https://repo1.maven.org/maven2/org/springframework/spring-orm/2.5.3/", + "repository_download_url": "https://repo1.maven.org/maven2/org/springframework/spring-orm/2.5.3/spring-orm-2.5.3.jar", + "api_data_url": "https://repo1.maven.org/maven2/org/springframework/spring-orm/2.5.3/spring-orm-2.5.3.pom" + }, + { + "type": "maven", + "namespace": "org.springframework", + "name": "spring-webmvc", + "version": "2.5.3", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "Spring Framework: Web MVC", + "release_date": null, + "parties": [ + { + "type": "organization", + "role": "owner", + "name": "Spring Framework", + "email": null, + "url": "http://www.springframework.org/" + } + ], + "keywords": [], + "homepage_url": "http://www.springframework.org", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": "http://springframework.cvs.sourceforge.net/springframework/", + "vcs_url": "cvs+pserver:anonymous:@springframework.cvs.sourceforge.net:/cvsroot/springframework/spring", + "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": null, + "dependencies": [ + { + "purl": "pkg:maven/commons-attributes/commons-attributes-api@2.2", + "requirement": "2.2", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-attributes/commons-attributes-compiler@2.2", + "requirement": "2.2", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/commons-logging/commons-logging@1.1.1", + "requirement": "1.1.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/com.lowagie/itext@2.0.7", + "requirement": "2.0.7", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/freemarker/freemarker@2.3.12", + "requirement": "2.3.12", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/jasperreports/jasperreports@2.0.2", + "requirement": "2.0.2", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/jexcelapi/jxl@2.6.6", + "requirement": "2.6.6", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.apache.tiles/tiles-api@2.0.5", + "requirement": "2.0.5", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.apache.tiles/tiles-core@2.0.5", + "requirement": "2.0.5", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.apache.tiles/tiles-jsp@2.0.5", + "requirement": "2.0.5", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/poi/poi@3.0.1", + "requirement": "3.0.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/velocity/velocity@1.5", + "requirement": "1.5", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/velocity-tools/velocity-tools-generic@1.4", + "requirement": "1.4", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/velocity-tools/velocity-tools-view@1.4", + "requirement": "1.4", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.springframework/spring-beans@2.5.3", + "requirement": "2.5.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.springframework/spring-context@2.5.3", + "requirement": "2.5.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.springframework/spring-context-support@2.5.3", + "requirement": "2.5.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.springframework/spring-core@2.5.3", + "requirement": "2.5.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/org.springframework/spring-web@2.5.3", + "requirement": "2.5.3", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.servlet/jsp-api@2.0", + "requirement": "2.0", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.servlet/jstl@1.1.0", + "requirement": "1.1.0", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:maven/javax.servlet/servlet-api@2.4", + "requirement": "2.4", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + } + ], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/org.springframework/spring-webmvc@2.5.3?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/org.springframework/spring-webmvc@2.5.3", + "repository_homepage_url": "https://repo1.maven.org/maven2/org/springframework/spring-webmvc/2.5.3/", + "repository_download_url": "https://repo1.maven.org/maven2/org/springframework/spring-webmvc/2.5.3/spring-webmvc-2.5.3.jar", + "api_data_url": "https://repo1.maven.org/maven2/org/springframework/spring-webmvc/2.5.3/spring-webmvc-2.5.3.pom" + }, + { + "type": "maven", + "namespace": "org.jvnet.hudson.plugins", + "name": "startup-trigger-plugin", + "version": "0.1", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "Startup Trigger", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "developper", + "name": "Ash Lux", + "email": "ashlux@gmail.com", + "url": "http://www.ashlux.com/" + } + ], + "keywords": [], + "homepage_url": "http://wiki.hudson-ci.org/display/HUDSON/Startup+Trigger", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": "https://hudson.dev.java.net/source/browse/hudson/tags/startup-trigger-plugin-0.1", + "vcs_url": "svn+https://guest@svn.dev.java.net/svn/hudson/tags/startup-trigger-plugin-0.1", + "copyright": null, + "license_expression": null, + "declared_license": null, + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:maven/org.mockito/mockito-all@1.8.1", + "requirement": "1.8.1", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + } + ], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/org.jvnet.hudson.plugins/startup-trigger-plugin@0.1", + "repository_homepage_url": "https://repo1.maven.org/maven2/org/jvnet/hudson/plugins/startup-trigger-plugin/0.1/", + "repository_download_url": "https://repo1.maven.org/maven2/org/jvnet/hudson/plugins/startup-trigger-plugin/0.1/startup-trigger-plugin-0.1.jar", + "api_data_url": "https://repo1.maven.org/maven2/org/jvnet/hudson/plugins/startup-trigger-plugin/0.1/startup-trigger-plugin-0.1.pom" + }, + { + "type": "maven", + "namespace": "au.com.acegi", + "name": "xml-format-maven-plugin", + "version": "3.0.6", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "XML Format Maven Plugin\nAutomatically formats XML files in a project.", + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": null, + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/acegi/xml-format-maven-plugin/issues", + "code_view_url": "https://github.com/acegi/xml-format-maven-plugin.git", + "vcs_url": "git+https://github.com/acegi/xml-format-maven-plugin.git", + "copyright": null, + "license_expression": null, + "declared_license": null, + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:maven/junit/junit", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + }, + { + "purl": "pkg:maven/org.hamcrest/hamcrest-core", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + }, + { + "purl": "pkg:maven/org.mockito/mockito-core", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + }, + { + "purl": "pkg:maven/org.apache.maven/maven-plugin-api", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + }, + { + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + }, + { + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils", + "requirement": null, + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": null + }, + { + "purl": "pkg:maven/org.dom4j/dom4j@2.0.1", + "requirement": "2.0.1", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + } + ], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/au.com.acegi/xml-format-maven-plugin@3.0.6", + "repository_homepage_url": "https://repo1.maven.org/maven2/au/com/acegi/xml-format-maven-plugin/3.0.6/", + "repository_download_url": "https://repo1.maven.org/maven2/au/com/acegi/xml-format-maven-plugin/3.0.6/xml-format-maven-plugin-3.0.6.jar", + "api_data_url": "https://repo1.maven.org/maven2/au/com/acegi/xml-format-maven-plugin/3.0.6/xml-format-maven-plugin-3.0.6.pom" + } + ], "files": [ { "path": "activemq-camel-pom.xml", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "activemq-camel-pom.xml.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "activemq-camel-pom.xml.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "adarwin-1.0.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "adarwin", @@ -85,19 +2707,19 @@ { "path": "adarwin-1.0.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "adarwin-1.0.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "ant-jai-1.7.0.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "org.apache.ant", @@ -167,19 +2789,19 @@ { "path": "ant-jai-1.7.0.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "ant-jai-1.7.0.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "ant-jsch-1.7.0.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "org.apache.ant", @@ -241,19 +2863,19 @@ { "path": "ant-jsch-1.7.0.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "ant-jsch-1.7.0.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "aopalliance-1.0.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "aopalliance", @@ -311,19 +2933,19 @@ { "path": "aopalliance-1.0.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "aopalliance-1.0.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "bcel-5.1.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "bcel", @@ -368,19 +2990,19 @@ { "path": "bcel-5.1.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "bcel-5.1.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "classworlds-1.1-alpha-2.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "classworlds", @@ -454,19 +3076,19 @@ { "path": "classworlds-1.1-alpha-2.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "classworlds-1.1-alpha-2.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "commons-fileupload-1.0.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "commons-fileupload", @@ -578,19 +3200,19 @@ { "path": "commons-fileupload-1.0.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "commons-fileupload-1.0.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "commons-validator-1.2.0.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "commons-validator", @@ -916,37 +3538,37 @@ { "path": "commons-validator-1.2.0.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "commons-validator-1.2.0.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "dbwebx_pom.xml", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "dbwebx_pom.xml.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "dbwebx_pom.xml.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "easyconf-0.9.0.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "easyconf", @@ -1172,19 +3794,19 @@ { "path": "easyconf-0.9.0.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "easyconf-0.9.0.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "findbugs-maven-plugin-1.1.1.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "org.codehaus.mojo", @@ -1306,109 +3928,109 @@ { "path": "findbugs-maven-plugin-1.1.1.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "findbugs-maven-plugin-1.1.1.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "fna2_pom.xml", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "fna2_pom.xml.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "fna2_pom.xml.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "fna_pom_project.xml", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "fna_pom_project.xml.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "fna_pom_project.xml.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "foo-pom.xml", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "foo-pom.xml.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "foo-pom.xml.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "gero_pom.xml", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "gero_pom.xml.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "gero_pom.xml.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "idega_pom.xml", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "idega_pom.xml.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "idega_pom.xml.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "jrecordbind-2.3.4.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "it.assist.jrecordbind", @@ -1501,37 +4123,37 @@ { "path": "jrecordbind-2.3.4.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "jrecordbind-2.3.4.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "log4j-pom.xml", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "log4j-pom.xml.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "log4j-pom.xml.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "logback-access.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "ch.qos.logback", @@ -1624,19 +4246,19 @@ { "path": "logback-access.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "logback-access.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "plexus-interactivity-api-1.0-alpha-4.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "org.codehaus.plexus", @@ -1799,19 +4421,19 @@ { "path": "plexus-interactivity-api-1.0-alpha-4.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "plexus-interactivity-api-1.0-alpha-4.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "pom.xml", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "ur.urwerk.test.modules", @@ -1856,73 +4478,73 @@ { "path": "pom.xml.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "pom.xml.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "proper_pom.xml", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "proper_pom.xml.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "proper_pom.xml.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "rel_pom.xml", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "rel_pom.xml.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "rel_pom.xml.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "sea_pom.xml", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "sea_pom.xml.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "sea_pom.xml.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "specs-1.3.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "org.apache.geronimo.specs", @@ -1976,19 +4598,19 @@ { "path": "specs-1.3.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "specs-1.3.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "spring-2.5.4.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "org.springframework", @@ -2569,19 +5191,19 @@ { "path": "spring-2.5.4.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "spring-2.5.4.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "spring-orm-2.5.3.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "org.springframework", @@ -2770,19 +5392,19 @@ { "path": "spring-orm-2.5.3.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "spring-orm-2.5.3.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "spring-webmvc-2.5.3.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "org.springframework", @@ -3019,19 +5641,19 @@ { "path": "spring-webmvc-2.5.3.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "spring-webmvc-2.5.3.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "startup-trigger-plugin-0.1.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "org.jvnet.hudson.plugins", @@ -3093,73 +5715,73 @@ { "path": "startup-trigger-plugin-0.1.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "startup-trigger-plugin-0.1.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "uni_pom.xml", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "uni_pom.xml.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "uni_pom.xml.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "urwerky_pom.xml", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "urwerky_pom.xml.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "urwerky_pom.xml.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "webre_pom.xml", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "webre_pom.xml.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "webre_pom.xml.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "xml-format-maven-plugin-3.0.6.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "au.com.acegi", @@ -3261,13 +5883,13 @@ { "path": "xml-format-maven-plugin-3.0.6.pom.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "xml-format-maven-plugin-3.0.6.pom.package.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] } ] diff --git a/tests/packagedcode/data/plugin/mui-package-expected.json b/tests/packagedcode/data/plugin/mui-package-expected.json index 80ce63c6c90..f480b630f37 100644 --- a/tests/packagedcode/data/plugin/mui-package-expected.json +++ b/tests/packagedcode/data/plugin/mui-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,61 @@ } } ], + "packages": [ + { + "type": "winexe", + "namespace": null, + "name": "Microsoft\u00ae Windows\u00ae Operating System", + "version": "10.0.18362.1256", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "Common Log File System Driver", + "release_date": null, + "parties": [ + { + "type": "organization", + "role": "author", + "name": "Microsoft Corporation", + "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": "\u00a9 Microsoft Corporation. All rights reserved.", + "license_expression": "unknown", + "declared_license": { + "LegalCopyright": "\u00a9 Microsoft Corporation. All rights reserved.", + "LegalTrademarks": "", + "License": null + }, + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:winexe/Microsoft%C2%AE%20Windows%C2%AE%20Operating%20System@10.0.18362.1256", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } + ], "files": [ { "path": "clfs.sys.mui", "type": "file", - "packages": [ + "package_manifests": [ { "type": "winexe", "namespace": null, diff --git a/tests/packagedcode/data/plugin/mum-package-expected.json b/tests/packagedcode/data/plugin/mum-package-expected.json index 60c9e881b64..b31ed963e4d 100644 --- a/tests/packagedcode/data/plugin/mum-package-expected.json +++ b/tests/packagedcode/data/plugin/mum-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,57 @@ } } ], + "packages": [ + { + "type": "windows-update", + "namespace": null, + "name": "Package_1_for_KB4601060", + "version": "10.0.3770.4", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "Fix for KB4601060", + "release_date": null, + "parties": [ + { + "type": "organization", + "role": "owner", + "name": "Microsoft Corporation", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": "http://support.microsoft.com/?kbid=4601060", + "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": "Microsoft Corporation", + "license_expression": null, + "declared_license": null, + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:windows-update/Package_1_for_KB4601060@10.0.3770.4", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } + ], "files": [ { "path": "test.mum", "type": "file", - "packages": [ + "package_manifests": [ { "type": "windows-update", "namespace": null, diff --git a/tests/packagedcode/data/plugin/mun-package-expected.json b/tests/packagedcode/data/plugin/mun-package-expected.json index 009c6388882..277a978d84c 100644 --- a/tests/packagedcode/data/plugin/mun-package-expected.json +++ b/tests/packagedcode/data/plugin/mun-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,61 @@ } } ], + "packages": [ + { + "type": "winexe", + "namespace": null, + "name": "Microsoft\u00ae Windows\u00ae Operating System", + "version": "10.0.18362.1256", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "Crypto API32", + "release_date": null, + "parties": [ + { + "type": "organization", + "role": "author", + "name": "Microsoft Corporation", + "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": "\u00a9 Microsoft Corporation. All rights reserved.", + "license_expression": "unknown", + "declared_license": { + "LegalCopyright": "\u00a9 Microsoft Corporation. All rights reserved.", + "LegalTrademarks": "", + "License": null + }, + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:winexe/Microsoft%C2%AE%20Windows%C2%AE%20Operating%20System@10.0.18362.1256", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } + ], "files": [ { "path": "crypt32.dll.mun", "type": "file", - "packages": [ + "package_manifests": [ { "type": "winexe", "namespace": null, diff --git a/tests/packagedcode/data/plugin/npm-package-expected.json b/tests/packagedcode/data/plugin/npm-package-expected.json index b7ebc4dbccb..55efd8f5f9a 100644 --- a/tests/packagedcode/data/plugin/npm-package-expected.json +++ b/tests/packagedcode/data/plugin/npm-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,78 @@ } } ], + "packages": [ + { + "type": "npm", + "namespace": null, + "name": "cookie-signature", + "version": "1.0.3", + "qualifiers": {}, + "subpath": null, + "primary_language": "JavaScript", + "description": "Sign and unsign cookies", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "TJ Holowaychuk", + "email": "tj@learnboost.com", + "url": null + } + ], + "keywords": [ + "cookie", + "sign", + "unsign" + ], + "homepage_url": null, + "download_url": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.3.tgz", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/visionmedia/node-cookie-signature/issues", + "code_view_url": null, + "vcs_url": "git+https://github.com/visionmedia/node-cookie-signature.git", + "copyright": null, + "license_expression": null, + "declared_license": [], + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:npm/mocha", + "requirement": "*", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/should", + "requirement": "*", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + } + ], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:npm/cookie-signature@1.0.3", + "repository_homepage_url": "https://www.npmjs.com/package/cookie-signature", + "repository_download_url": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.3.tgz", + "api_data_url": "https://registry.npmjs.org/cookie-signature/1.0.3" + } + ], "files": [ { "path": "package.json", "type": "file", - "packages": [ + "package_manifests": [ { "type": "npm", "namespace": null, diff --git a/tests/packagedcode/data/plugin/nuget-package-expected.json b/tests/packagedcode/data/plugin/nuget-package-expected.json index a1d3d1d10c2..ce6b80c0a0a 100644 --- a/tests/packagedcode/data/plugin/nuget-package-expected.json +++ b/tests/packagedcode/data/plugin/nuget-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,64 @@ } } ], + "packages": [ + { + "type": "nuget", + "namespace": null, + "name": "Castle.Core", + "version": "4.2.1", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "Castle Core, including DynamicProxy, Logging Abstractions and DictionaryAdapter", + "release_date": null, + "parties": [ + { + "type": null, + "role": "author", + "name": "Castle Project Contributors", + "email": null, + "url": null + }, + { + "type": null, + "role": "owner", + "name": "Castle Project Contributors", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": "http://www.castleproject.org/", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": "git+https://github.com/castleproject/Core", + "copyright": "Copyright (c) 2004-2017 Castle Project - http://www.castleproject.org/", + "license_expression": "apache-2.0", + "declared_license": "http://www.apache.org/licenses/LICENSE-2.0.html", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:nuget/Castle.Core@4.2.1", + "repository_homepage_url": "https://www.nuget.org/packages/Castle.Core/4.2.1", + "repository_download_url": "https://www.nuget.org/api/v2/package/Castle.Core/4.2.1", + "api_data_url": "https://api.nuget.org/v3/registration3/castle.core/4.2.1.json" + } + ], "files": [ { "path": "Castle.Core.nuspec", "type": "file", - "packages": [ + "package_manifests": [ { "type": "nuget", "namespace": null, diff --git a/tests/packagedcode/data/plugin/opam-package-expected.json b/tests/packagedcode/data/plugin/opam-package-expected.json index c32abc7aaa3..fd56b4691e0 100644 --- a/tests/packagedcode/data/plugin/opam-package-expected.json +++ b/tests/packagedcode/data/plugin/opam-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,132 @@ } } ], + "packages": [ + { + "type": "opam", + "namespace": null, + "name": null, + "version": "4.11.0+trunk", + "qualifiers": {}, + "subpath": null, + "primary_language": "Ocaml", + "description": "OCaml development version", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "Xavier Leroy", + "email": null, + "url": null + }, + { + "type": "person", + "role": "author", + "name": "Damien Doligez", + "email": null, + "url": null + }, + { + "type": "person", + "role": "author", + "name": "Alain Frisch", + "email": null, + "url": null + }, + { + "type": "person", + "role": "author", + "name": "Jacques Garrigue", + "email": null, + "url": null + }, + { + "type": "person", + "role": "author", + "name": "Didier R\u00e9my", + "email": null, + "url": null + }, + { + "type": "person", + "role": "author", + "name": "J\u00e9r\u00f4me Vouillon", + "email": null, + "url": null + }, + { + "type": "person", + "role": "maintainer", + "name": null, + "email": "caml-list@inria.fr", + "url": null + } + ], + "keywords": [], + "homepage_url": "https://github.com/ocaml/ocaml/", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/ocaml/ocaml/issues", + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "license_expression": null, + "declared_license": null, + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:opam/ocaml", + "requirement": "= 4.11.0 & post", + "scope": "dependency", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:opam/base-unix", + "requirement": "post", + "scope": "dependency", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:opam/base-bigarray", + "requirement": "post", + "scope": "dependency", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:opam/base-threads", + "requirement": "post", + "scope": "dependency", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + } + ], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": null, + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } + ], "files": [ { "path": "ocaml-variants.opam", "type": "file", - "packages": [ + "package_manifests": [ { "type": "opam", "namespace": null, diff --git a/tests/packagedcode/data/plugin/phpcomposer-package-expected.json b/tests/packagedcode/data/plugin/phpcomposer-package-expected.json index 4904241b6d2..6378b0e98ba 100644 --- a/tests/packagedcode/data/plugin/phpcomposer-package-expected.json +++ b/tests/packagedcode/data/plugin/phpcomposer-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,89 @@ } } ], + "packages": [ + { + "type": "composer", + "namespace": "jandreasn", + "name": "a-timer", + "version": null, + "qualifiers": {}, + "subpath": null, + "primary_language": "PHP", + "description": null, + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "Andreas Nilsson", + "email": null, + "url": null + }, + { + "type": "person", + "role": "vendor", + "name": "jandreasn", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": "http://github.com/jandreasn/a-timer", + "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": "mit", + "declared_license": "MIT", + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:composer/php", + "requirement": ">=5.6.0", + "scope": "require", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:composer/phpunit/phpunit", + "requirement": "^5.6", + "scope": "require-dev", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:composer/squizlabs/php_codesniffer", + "requirement": "^2.7", + "scope": "require-dev", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + } + ], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:composer/jandreasn/a-timer", + "repository_homepage_url": "https://packagist.org/packages/jandreasn/a-timer", + "repository_download_url": null, + "api_data_url": "https://packagist.org/p/packages/jandreasn/a-timer.json" + } + ], "files": [ { "path": "composer.json", "type": "file", - "packages": [ + "package_manifests": [ { "type": "composer", "namespace": "jandreasn", diff --git a/tests/packagedcode/data/plugin/pubspec-expected.json b/tests/packagedcode/data/plugin/pubspec-expected.json index 5d66538f4b0..c2956f49f1c 100644 --- a/tests/packagedcode/data/plugin/pubspec-expected.json +++ b/tests/packagedcode/data/plugin/pubspec-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,12 @@ } } ], + "packages": [], "files": [ { "path": "authors-pubspec.yaml", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] } ] diff --git a/tests/packagedcode/data/plugin/pubspec-lock-expected.json b/tests/packagedcode/data/plugin/pubspec-lock-expected.json index 3ad9c040eeb..e8c28009241 100644 --- a/tests/packagedcode/data/plugin/pubspec-lock-expected.json +++ b/tests/packagedcode/data/plugin/pubspec-lock-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,12 @@ } } ], + "packages": [], "files": [ { "path": "dart-pubspec.lock", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] } ] diff --git a/tests/packagedcode/data/plugin/python-package-expected.json b/tests/packagedcode/data/plugin/python-package-expected.json index 873ad881c12..db09a3010ae 100644 --- a/tests/packagedcode/data/plugin/python-package-expected.json +++ b/tests/packagedcode/data/plugin/python-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,17 +19,493 @@ } } ], + "packages": [ + { + "type": "pypi", + "namespace": null, + "name": "atomicwrites", + "version": "1.2.1", + "qualifiers": {}, + "subpath": null, + "primary_language": "Python", + "description": "===================\npython-atomicwrites\n===================\n\n.. image:: https://travis-ci.org/untitaker/python-atomicwrites.svg?branch=master\n :target: https://travis-ci.org/untitaker/python-atomicwrites\n\n.. image:: https://ci.appveyor.com/api/projects/status/vadc4le3c27to59x/branch/master?svg=true\n :target: https://ci.appveyor.com/project/untitaker/python-atomicwrites/branch/master\n\nAtomic file writes.\n\n.. code-block:: python\n\n from atomicwrites import atomic_write\n\n with atomic_write('foo.txt', overwrite=True) as f:\n f.write('Hello world.')\n # \"foo.txt\" doesn't exist yet.\n\n # Now it does.\n\n\nFeatures that distinguish it from other similar libraries (see `Alternatives and Credit`_):\n\n- Race-free assertion that the target file doesn't yet exist. This can be\n controlled with the ``overwrite`` parameter.\n\n- Windows support, although not well-tested. The MSDN resources are not very\n explicit about which operations are atomic. I'm basing my assumptions off `a\n comment\n `_\n by `Doug Crook\n `_, who appears\n to be a Microsoft employee:\n\n FAQ: Is MoveFileEx atomic\n Frequently asked question: Is MoveFileEx atomic if the existing and new\n files are both on the same drive?\n\n The simple answer is \"usually, but in some cases it will silently fall-back\n to a non-atomic method, so don't count on it\".\n\n The implementation of MoveFileEx looks something like this: [...]\n\n The problem is if the rename fails, you might end up with a CopyFile, which\n is definitely not atomic.\n\n If you really need atomic-or-nothing, you can try calling\n NtSetInformationFile, which is unsupported but is much more likely to be\n atomic. \n\n- Simple high-level API that wraps a very flexible class-based API.\n\n- Consistent error handling across platforms.\n\n\nHow it works\n============\n\nIt uses a temporary file in the same directory as the given path. This ensures\nthat the temporary file resides on the same filesystem.\n\nThe temporary file will then be atomically moved to the target location: On\nPOSIX, it will use ``rename`` if files should be overwritten, otherwise a\ncombination of ``link`` and ``unlink``. On Windows, it uses MoveFileEx_ through\nstdlib's ``ctypes`` with the appropriate flags.\n\nNote that with ``link`` and ``unlink``, there's a timewindow where the file\nmight be available under two entries in the filesystem: The name of the\ntemporary file, and the name of the target file.\n\nAlso note that the permissions of the target file may change this way. In some\nsituations a ``chmod`` can be issued without any concurrency problems, but\nsince that is not always the case, this library doesn't do it by itself.\n\n.. _MoveFileEx: https://msdn.microsoft.com/en-us/library/windows/desktop/aa365240%28v=vs.85%29.aspx\n\nfsync\n-----\n\nOn POSIX, ``fsync`` is invoked on the temporary file after it is written (to\nflush file content and metadata), and on the parent directory after the file is\nmoved (to flush filename).\n\n``fsync`` does not take care of disks' internal buffers, but there don't seem\nto be any standard POSIX APIs for that. On OS X, ``fcntl`` is used with\n``F_FULLFSYNC`` instead of ``fsync`` for that reason.\n\nOn Windows, `_commit `_\nis used, but there are no guarantees about disk internal buffers.\n\nAlternatives and Credit\n=======================\n\nAtomicwrites is directly inspired by the following libraries (and shares a\nminimal amount of code):\n\n- The Trac project's `utility functions\n `_,\n also used in `Werkzeug `_ and\n `mitsuhiko/python-atomicfile\n `_. The idea to use\n ``ctypes`` instead of ``PyWin32`` originated there.\n\n- `abarnert/fatomic `_. Windows support\n (based on ``PyWin32``) was originally taken from there.\n\nOther alternatives to atomicwrites include:\n\n- `sashka/atomicfile `_. Originally I\n considered using that, but at the time it was lacking a lot of features I\n needed (Windows support, overwrite-parameter, overriding behavior through\n subclassing).\n\n- The `Boltons library collection `_\n features a class for atomic file writes, which seems to have a very similar\n ``overwrite`` parameter. It is lacking Windows support though.\n\nLicense\n=======\n\nLicensed under the MIT, see ``LICENSE``.", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "Markus Unterwaditzer", + "email": "markus@unterwaditzer.net", + "url": null + } + ], + "keywords": [ + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: Implementation :: CPython" + ], + "homepage_url": "https://github.com/untitaker/python-atomicwrites", + "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": "mit", + "declared_license": { + "license": "MIT", + "classifiers": [ + "License :: OSI Approved :: MIT License" + ] + }, + "notice_text": null, + "root_path": "atomicwrites-1.2.1-py2.py3-none-any.whl", + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:pypi/atomicwrites@1.2.1", + "repository_homepage_url": "https://pypi.org/project/https://pypi.org", + "repository_download_url": "https://pypi.org/packages/source/a/atomicwrites/atomicwrites-1.2.1.tar.gz", + "api_data_url": "https://pypi.org/pypi/atomicwrites/1.2.1/json" + }, + { + "type": "pypi", + "namespace": null, + "name": "six", + "version": "1.10.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Python", + "description": "Python 2 and 3 compatibility utilities\nSix is a Python 2 and 3 compatibility library. It provides utility functions\nfor smoothing over the differences between the Python versions with the goal of\nwriting Python code that is compatible on both Python versions. See the\ndocumentation for more information on what is provided.\n\nSix supports every Python version since 2.6. It is contained in only one Python\nfile, so it can be easily copied into your project. (The copyright and license\nnotice must be retained.)\n\nOnline documentation is at https://pythonhosted.org/six/.\n\nBugs can be reported to https://bitbucket.org/gutworth/six. The code can also\nbe found there.\n\nFor questions about six or porting in general, email the python-porting mailing\nlist: https://mail.python.org/mailman/listinfo/python-porting", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "Benjamin Peterson", + "email": "benjamin@python.org", + "url": null + } + ], + "keywords": [ + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 3", + "Intended Audience :: Developers", + "Topic :: Software Development :: Libraries", + "Topic :: Utilities" + ], + "homepage_url": "http://pypi.python.org/pypi/six/", + "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": "mit", + "declared_license": { + "license": "MIT", + "classifiers": [ + "License :: OSI Approved :: MIT License" + ] + }, + "notice_text": null, + "root_path": "METADATA", + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:pypi/six@1.10.0", + "repository_homepage_url": "https://pypi.org/project/https://pypi.org", + "repository_download_url": "https://pypi.org/packages/source/s/six/six-1.10.0.tar.gz", + "api_data_url": "https://pypi.org/pypi/six/1.10.0/json" + }, + { + "type": "chef", + "namespace": null, + "name": "six", + "version": "1.10.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Ruby", + "description": null, + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": null, + "download_url": "https://supermarket.chef.io/cookbooks/six/versions/1.10.0/download", + "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": "mit", + "declared_license": "MIT", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:chef/six@1.10.0", + "repository_homepage_url": null, + "repository_download_url": "https://supermarket.chef.io/cookbooks/six/versions/1.10.0/download", + "api_data_url": "https://supermarket.chef.io/api/v1/cookbooks/six/versions/1.10.0" + }, + { + "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": "6e45251662433bf51f96fb3d2204b65416fece329d60e6235c0f0edc416cfe24", + "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": "Pipfile.lock", + "dependencies": [ + { + "purl": "pkg:pypi/atomicwrites@1.1.5", + "requirement": "==1.1.5", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:pypi/attrs@18.1.0", + "requirement": "==18.1.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:pypi/contextlib2@0.5.5", + "requirement": "==0.5.5", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:pypi/coverage@4.5.1", + "requirement": "==4.5.1", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:pypi/funcsigs@1.0.2", + "requirement": "==1.0.2", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:pypi/mock@2.0.0", + "requirement": "==2.0.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:pypi/more-itertools@4.2.0", + "requirement": "==4.2.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:pypi/pbr@4.2.0", + "requirement": "==4.2.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:pypi/pluggy@0.6.0", + "requirement": "==0.6.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:pypi/py@1.5.4", + "requirement": "==1.5.4", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:pypi/pytest@3.6.3", + "requirement": "==3.6.3", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:pypi/pytest-cov@2.5.1", + "requirement": "==2.5.1", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:pypi/pytest-vcr@0.3.0", + "requirement": "==0.3.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:pypi/pyyaml@3.13", + "requirement": "==3.13", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:pypi/six@1.11.0", + "requirement": "==1.11.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:pypi/vcrpy@1.13.0", + "requirement": "==1.13.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + }, + { + "purl": "pkg:pypi/wrapt@1.10.11", + "requirement": "==1.10.11", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true + } + ], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": null, + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "pypi", + "namespace": null, + "name": "TicketImport", + "version": "0.7a", + "qualifiers": {}, + "subpath": null, + "primary_language": "Python", + "description": "Import CSV and Excel files\nUNKNOWN", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "Francois Granade", + "email": "fg@nexb.com", + "url": null + } + ], + "keywords": [], + "homepage_url": "http://nexb.com", + "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": "unknown", + "declared_license": { + "license": "BSD" + }, + "notice_text": null, + "root_path": "PKG-INFO", + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:pypi/ticketimport@0.7a", + "repository_homepage_url": "https://pypi.org/project/https://pypi.org", + "repository_download_url": "https://pypi.org/packages/source/T/TicketImport/TicketImport-0.7a.tar.gz", + "api_data_url": "https://pypi.org/pypi/TicketImport/0.7a/json" + }, + { + "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, + "root_path": "requirements.txt", + "dependencies": [ + { + "purl": "pkg:pypi/setuptools", + "requirement": ">=32.0.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:pypi/nose", + "requirement": ">=1.3.7", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:pypi/chardet", + "requirement": ">=3.0.4", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + } + ], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": null, + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "pypi", + "namespace": null, + "name": "arpy", + "version": "0.1.1", + "qualifiers": {}, + "subpath": null, + "primary_language": "Python", + "description": "Library for accessing \"ar\" files", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "Stanis\u0142aw Pitucha", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": "http://bitbucket.org/viraptor/arpy", + "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": "bsd-simplified", + "declared_license": { + "license": "Simplified BSD" + }, + "notice_text": null, + "root_path": "setup.py", + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:pypi/arpy@0.1.1", + "repository_homepage_url": "https://pypi.org/project/https://pypi.org", + "repository_download_url": "https://pypi.org/packages/source/a/arpy/arpy-0.1.1.tar.gz", + "api_data_url": "https://pypi.org/pypi/arpy/0.1.1/json" + } + ], "files": [ { "path": "DESCRIPTION.rst", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "METADATA", "type": "file", - "packages": [ + "package_manifests": [ { "type": "pypi", "namespace": null, @@ -90,7 +567,7 @@ { "path": "PKG-INFO", "type": "file", - "packages": [ + "package_manifests": [ { "type": "pypi", "namespace": null, @@ -143,7 +620,7 @@ { "path": "Pipfile.lock", "type": "file", - "packages": [ + "package_manifests": [ { "type": "pypi", "namespace": null, @@ -323,7 +800,7 @@ { "path": "atomicwrites-1.2.1-py2.py3-none-any.whl", "type": "file", - "packages": [ + "package_manifests": [ { "type": "pypi", "namespace": null, @@ -387,7 +864,7 @@ { "path": "metadata.json", "type": "file", - "packages": [ + "package_manifests": [ { "type": "chef", "namespace": null, @@ -430,7 +907,7 @@ { "path": "requirements.txt", "type": "file", - "packages": [ + "package_manifests": [ { "type": "pypi", "namespace": null, @@ -498,7 +975,7 @@ { "path": "setup.py", "type": "file", - "packages": [ + "package_manifests": [ { "type": "pypi", "namespace": null, diff --git a/tests/packagedcode/data/plugin/rpm-package-expected.json b/tests/packagedcode/data/plugin/rpm-package-expected.json index 38db42c588c..66d01f0aad1 100644 --- a/tests/packagedcode/data/plugin/rpm-package-expected.json +++ b/tests/packagedcode/data/plugin/rpm-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,51 @@ } } ], + "packages": [ + { + "type": "rpm", + "namespace": null, + "name": "alfandega", + "version": "2.0-1.7.3", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "A perl modules for iptables firewall control.", + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": "http://alfandega.sourceforge.net/", + "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": "gpl-1.0-plus", + "declared_license": "GPL", + "notice_text": null, + "root_path": "alfandega-2.0-1.7.3.noarch.rpm", + "dependencies": [], + "contains_source_code": null, + "source_packages": [ + "pkg:rpm/alfandega@2.0-1.7.3?arch=src" + ], + "extra_data": {}, + "purl": "pkg:rpm/alfandega@2.0-1.7.3", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } + ], "files": [ { "path": "alfandega-2.0-1.7.3.noarch.rpm", "type": "file", - "packages": [ + "package_manifests": [ { "type": "rpm", "namespace": null, diff --git a/tests/packagedcode/data/plugin/rubygems-package-expected.json b/tests/packagedcode/data/plugin/rubygems-package-expected.json index d7c31e55974..635f78b9411 100644 --- a/tests/packagedcode/data/plugin/rubygems-package-expected.json +++ b/tests/packagedcode/data/plugin/rubygems-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,185 @@ } } ], + "packages": [ + { + "type": "gem", + "namespace": null, + "name": "m2r", + "version": "2.1.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Ruby", + "description": "Mongrel2 interface and handler library for Ruby.\nMongrel2 Rack handler and pure handler. Works with Rack, so it works with Rails!", + "release_date": "2013-10-29", + "parties": [ + { + "type": null, + "role": "author", + "name": "Colin Curtin", + "email": null, + "url": null + }, + { + "type": null, + "role": "author", + "name": "Pradeep Elankumaran", + "email": null, + "url": null + }, + { + "type": null, + "role": "author", + "name": "Pawel Pacana", + "email": null, + "url": null + }, + { + "type": null, + "role": "author", + "name": "Robert Pankowecki", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": "http://github.com/perplexes/m2r", + "download_url": "https://rubygems.org/downloads/m2r-2.1.0.gem", + "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": "mit", + "declared_license": [ + "MIT" + ], + "notice_text": null, + "root_path": "m2r-2.1.0.gem", + "dependencies": [ + { + "purl": "pkg:gem/ffi-rzmq", + "requirement": ">= 1.0.1", + "scope": "runtime", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:gem/ffi", + "requirement": ">= 1.0.0", + "scope": "runtime", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:gem/multi_json", + "requirement": null, + "scope": "runtime", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:gem/tnetstring", + "requirement": null, + "scope": "runtime", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:gem/rack", + "requirement": null, + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:gem/rake", + "requirement": null, + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:gem/minitest", + "requirement": "= 3.2.0", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:gem/mocha", + "requirement": ">= 0.14.0", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:gem/bbq", + "requirement": "= 0.0.4", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:gem/capybara-mechanize", + "requirement": "= 0.3.0", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": true + }, + { + "purl": "pkg:gem/activesupport", + "requirement": "~> 3.2.7", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:gem/yard", + "requirement": "~> 0.8.2", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:gem/kramdown", + "requirement": "~> 0.13.7", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + } + ], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:gem/m2r@2.1.0", + "repository_homepage_url": "https://rubygems.org/gems/m2r/versions/2.1.0", + "repository_download_url": "https://rubygems.org/downloads/m2r-2.1.0.gem", + "api_data_url": "https://rubygems.org/api/v2/rubygems/m2r/versions/2.1.0.json" + } + ], "files": [ { "path": "m2r-2.1.0.gem", "type": "file", - "packages": [ + "package_manifests": [ { "type": "gem", "namespace": null, @@ -201,7 +376,7 @@ { "path": "m2r-2.1.0.gem.json", "type": "file", - "packages": [], + "package_manifests": [], "scan_errors": [] } ] diff --git a/tests/packagedcode/data/plugin/sys-package-expected.json b/tests/packagedcode/data/plugin/sys-package-expected.json index 1ca0007d3f5..11b21c11284 100644 --- a/tests/packagedcode/data/plugin/sys-package-expected.json +++ b/tests/packagedcode/data/plugin/sys-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,61 @@ } } ], + "packages": [ + { + "type": "winexe", + "namespace": null, + "name": "Microsoft\u00ae Windows\u00ae Operating System", + "version": "10.0.17763.1697", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "Export driver for kernel mode TPM API", + "release_date": null, + "parties": [ + { + "type": "organization", + "role": "author", + "name": "Microsoft Corporation", + "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": "\u00a9 Microsoft Corporation. All rights reserved.", + "license_expression": "unknown", + "declared_license": { + "LegalCopyright": "\u00a9 Microsoft Corporation. All rights reserved.", + "LegalTrademarks": "", + "License": null + }, + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:winexe/Microsoft%C2%AE%20Windows%C2%AE%20Operating%20System@10.0.17763.1697", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } + ], "files": [ { "path": "tbs.sys", "type": "file", - "packages": [ + "package_manifests": [ { "type": "winexe", "namespace": null, diff --git a/tests/packagedcode/data/plugin/tlb-package-expected.json b/tests/packagedcode/data/plugin/tlb-package-expected.json index 109f3f2a5fc..69c55a36af1 100644 --- a/tests/packagedcode/data/plugin/tlb-package-expected.json +++ b/tests/packagedcode/data/plugin/tlb-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,61 @@ } } ], + "packages": [ + { + "type": "winexe", + "namespace": null, + "name": "Microsoft\u00ae Windows\u00ae Operating System", + "version": "10.0.18362.1256", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "STDOLE2.TLB", + "release_date": null, + "parties": [ + { + "type": "organization", + "role": "author", + "name": "Microsoft Corporation", + "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": "\u00a9 Microsoft Corporation. All rights reserved.", + "license_expression": "unknown", + "declared_license": { + "LegalCopyright": "\u00a9 Microsoft Corporation. All rights reserved.", + "LegalTrademarks": "", + "License": null + }, + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:winexe/Microsoft%C2%AE%20Windows%C2%AE%20Operating%20System@10.0.18362.1256", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } + ], "files": [ { "path": "stdole2.tlb", "type": "file", - "packages": [ + "package_manifests": [ { "type": "winexe", "namespace": null, diff --git a/tests/packagedcode/data/plugin/win_pe-package-expected.json b/tests/packagedcode/data/plugin/win_pe-package-expected.json index cd54387e434..ae8758f9597 100644 --- a/tests/packagedcode/data/plugin/win_pe-package-expected.json +++ b/tests/packagedcode/data/plugin/win_pe-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,61 @@ } } ], + "packages": [ + { + "type": "winexe", + "namespace": null, + "name": "File", + "version": "5.03.3414.16721", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "File: determine file type", + "release_date": null, + "parties": [ + { + "type": "organization", + "role": "author", + "name": "GnuWin32 ", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": "http://www.darwinsys.com/file/", + "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": "\u00a9 2009 Ian F. Darwin", + "license_expression": "unknown", + "declared_license": { + "LegalCopyright": "\u00a9 2009 Ian F. Darwin", + "LegalTrademarks": "GnuWin32\u00ae, File\u00ae, file\u00ae", + "License": "Copyright (c) Ian F. Darwin 1986, 1987, 1989, 1990, 1991, 1992, 1994, 1995. Software written by Ian F. Darwin and others; maintained 1994-2004 Christos Zoulas. This software is not subject to any export provision of the United States Department of Commerce, and may be exported to any country or planet. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice immediately at the beginning of the file, without modification, this list of conditions, and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." + }, + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:winexe/File@5.03.3414.16721", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } + ], "files": [ { "path": "file.exe", "type": "file", - "packages": [ + "package_manifests": [ { "type": "winexe", "namespace": null, diff --git a/tests/packagedcode/data/plugin/winmd-package-expected.json b/tests/packagedcode/data/plugin/winmd-package-expected.json index 3ec42d683d2..d759bc7e950 100644 --- a/tests/packagedcode/data/plugin/winmd-package-expected.json +++ b/tests/packagedcode/data/plugin/winmd-package-expected.json @@ -10,6 +10,7 @@ "--strip-root": 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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -18,11 +19,61 @@ } } ], + "packages": [ + { + "type": "winexe", + "namespace": null, + "name": "Windows SDK", + "version": "10.0.10011.16384", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "Windows SDK metadata", + "release_date": null, + "parties": [ + { + "type": "organization", + "role": "author", + "name": "Microsoft Corporation", + "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": "\u00a9 Microsoft Corporation. All rights reserved.", + "license_expression": "unknown", + "declared_license": { + "LegalCopyright": "\u00a9 Microsoft Corporation. All rights reserved.", + "LegalTrademarks": "", + "License": null + }, + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:winexe/Windows%20SDK@10.0.10011.16384", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } + ], "files": [ { "path": "Windows.AI.winmd", "type": "file", - "packages": [ + "package_manifests": [ { "type": "winexe", "namespace": null, diff --git a/tests/packagedcode/test_about.py b/tests/packagedcode/test_about.py index a64c5ffed01..6eee81376a3 100644 --- a/tests/packagedcode/test_about.py +++ b/tests/packagedcode/test_about.py @@ -18,13 +18,13 @@ class TestAbout(PackageTester): test_data_dir = os.path.join(os.path.dirname(__file__), 'data') def test_parse_about_file_home_url(self): - test_file = self.get_test_loc('about/apipkg.ABOUT') + test_file = self.get_test_loc('about/aboutfiles/apipkg.ABOUT') package = about.parse(test_file) expected_loc = self.get_test_loc('about/apipkg.ABOUT-expected') self.check_package(package, expected_loc, regen=False) def test_parse_about_file_homepage_url(self): - test_file = self.get_test_loc('about/appdirs.ABOUT') + test_file = self.get_test_loc('about/aboutfiles/appdirs.ABOUT') package = about.parse(test_file) expected_loc = self.get_test_loc('about/appdirs.ABOUT-expected') self.check_package(package, expected_loc, regen=False) diff --git a/tests/packagedcode/test_maven.py b/tests/packagedcode/test_maven.py index 4a1a79033fe..10545816340 100644 --- a/tests/packagedcode/test_maven.py +++ b/tests/packagedcode/test_maven.py @@ -214,7 +214,7 @@ def test_package_root_is_properly_returned_for_metainf_poms(self): manifest_resource = [r for r in codebase.walk() if r.name == 'pom.xml'][0] packages = list(maven.MavenPomPackage.recognize(manifest_resource.location)) assert packages - manifest_resource.packages.append(packages[0].to_dict()) + manifest_resource.package_manifests.append(packages[0].to_dict()) manifest_resource.save(codebase) proot = maven.MavenPomPackage.get_package_root(manifest_resource, codebase) assert proot.name == 'activiti-image-generator-7-201802-EA-sources.jar-extract' diff --git a/tests/packagedcode/test_plugin.py b/tests/packagedcode/test_plugin.py index 7a23a9e7a96..a19dfe63c41 100644 --- a/tests/packagedcode/test_plugin.py +++ b/tests/packagedcode/test_plugin.py @@ -43,7 +43,7 @@ def test_package_command_scan_maven(self): check_json_scan(expected_file, result_file, regen=False) def test_package_command_scan_about(self): - test_dir = self.get_test_loc('about') + test_dir = self.get_test_loc('about/aboutfiles/') result_file = self.get_temp_file('json') expected_file = self.get_test_loc('plugin/about-package-expected.json') run_scan_click(['--package', '--strip-root', '--processes', '-1', test_dir, '--json', result_file]) diff --git a/tests/packagedcode/test_recognize.py b/tests/packagedcode/test_recognize.py index 4a9d97243dd..43c1272bb2c 100644 --- a/tests/packagedcode/test_recognize.py +++ b/tests/packagedcode/test_recognize.py @@ -13,7 +13,7 @@ from commoncode.testcase import FileBasedTesting import packagedcode -from packagedcode.recognize import recognize_packages +from packagedcode.recognize import recognize_package_manifests from packagedcode import bower from packagedcode import cargo @@ -34,188 +34,188 @@ class TestRecognize(FileBasedTesting): test_data_dir = os.path.join(os.path.dirname(__file__), 'data') - def test_recognize_packages_deb(self): + def test_recognize_package_manifests_deb(self): test_file = self.get_test_loc('archives/adduser_3.112ubuntu1_all.deb') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], packagedcode.debian.DebianPackage) - def test_recognize_packages_rpm(self): + def test_recognize_package_manifests_rpm(self): test_file = self.get_test_loc('archives/alfandega-2.2-2.rh80.src.rpm') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], rpm.RpmPackage) - def test_recognize_packages_cab(self): + def test_recognize_package_manifests_cab(self): test_file = self.get_test_loc('archives/basic.cab') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], packagedcode.models.CabPackage) - def test_recognize_packages_rar(self): + def test_recognize_package_manifests_rar(self): test_file = self.get_test_loc('archives/basic.rar') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert not packages - def test_recognize_packages_zip(self): + def test_recognize_package_manifests_zip(self): test_file = self.get_test_loc('archives/myarch-2.3.0.7z') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert not packages - def test_recognize_packages_gem(self): + def test_recognize_package_manifests_gem(self): test_file = self.get_test_loc('archives/mysmallidea-address_standardization-0.4.1.gem') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], packagedcode.rubygems.RubyGem) - def test_recognize_packages_jar(self): + def test_recognize_package_manifests_jar(self): test_file = self.get_test_loc('archives/simple.jar') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], packagedcode.models.JavaJar) - def test_recognize_packages_iso(self): + def test_recognize_package_manifests_iso(self): test_file = self.get_test_loc('archives/small.iso') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], packagedcode.models.IsoImagePackage) - def test_recognize_packages_does_not_recognize_plain_tarball(self): + def test_recognize_package_manifests_does_not_recognize_plain_tarball(self): test_file = self.get_test_loc('archives/tarred_bzipped.tar.bz2') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert not packages def test_recognize_cpan_manifest_as_plain_package(self): test_file = self.get_test_loc('cpan/MANIFEST') try: - recognize_packages(test_file) + recognize_package_manifests(test_file) self.fail('Exception not raised') except NotImplementedError: pass def test_recognize_maven_dot_pom(self): test_file = self.get_test_loc('m2/aspectj/aspectjrt/1.5.3/aspectjrt-1.5.3.pom') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], maven.MavenPomPackage) def test_recognize_maven_pom_xml(self): test_file = self.get_test_loc('maven2/pom.xml') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], maven.MavenPomPackage) def test_recognize_npm(self): test_file = self.get_test_loc('recon/package.json') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], npm.NpmPackage) def test_recognize_cargo(self): test_file = self.get_test_loc('recon/Cargo.toml') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], cargo.RustCargoCrate) def test_recognize_opam(self): test_file = self.get_test_loc('recon/opam') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], opam.OpamPackage) def test_recognize_opam1(self): test_file = self.get_test_loc('recon/base.opam') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], opam.OpamPackage) def test_recognize_composer(self): test_file = self.get_test_loc('recon/composer.json') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], phpcomposer.PHPComposerPackage) def test_recognize_haxe(self): test_file = self.get_test_loc('recon/haxelib.json') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], haxe.HaxePackage) def test_recognize_freebsd(self): test_file = self.get_test_loc('freebsd/multi_license/+COMPACT_MANIFEST') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], freebsd.FreeBSDPackage) def test_recognize_nuget(self): test_file = self.get_test_loc('recon/bootstrap.nuspec') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], nuget.NugetPackage) def test_recognize_winexe(self): test_file = self.get_test_loc('win_pe/tre4.dll') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], win_pe.WindowsExecutable) def test_recognize_bower(self): test_file = self.get_test_loc('bower/basic/bower.json') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], bower.BowerPackage) @expectedFailure def test_recognize_cpan(self): test_file = self.get_test_loc('cpan/MANIFEST') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], models.CpanModule) def test_recognize_python2(self): test_file = self.get_test_loc('recon/pypi/atomicwrites-1.2.1-py2.py3-none-any.whl') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], pypi.PythonPackage) def test_recognize_python3(self): test_file = self.get_test_loc('recon/pypi/METADATA') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], pypi.PythonPackage) def test_recognize_python5(self): test_file = self.get_test_loc('recon/pypi/PKG-INFO') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], pypi.PythonPackage) def test_recognize_python6(self): test_file = self.get_test_loc('recon/pypi/setup.py') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], pypi.PythonPackage) def test_recognize_python7(self): test_file = self.get_test_loc('recon/pypi/Pipfile.lock') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], pypi.PythonPackage) def test_recognize_python8(self): test_file = self.get_test_loc('recon/pypi/requirements.txt') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], pypi.PythonPackage) def test_recognize_go_mod(self): test_file = self.get_test_loc('golang/gomod/kingpin/go.mod') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], golang.GolangPackage) def test_recognize_go_sum(self): test_file = self.get_test_loc('golang/gosum/sample1/go.sum') - packages = recognize_packages(test_file) + packages = recognize_package_manifests(test_file) assert packages assert isinstance(packages[0], golang.GolangPackage) diff --git a/tests/scancode/data/composer/composer.expected.json b/tests/scancode/data/composer/composer.expected.json index 373897f6973..99bf5fd2eaa 100644 --- a/tests/scancode/data/composer/composer.expected.json +++ b/tests/scancode/data/composer/composer.expected.json @@ -8,6 +8,7 @@ "--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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -16,11 +17,122 @@ } } ], + "packages": [ + { + "type": "composer", + "namespace": "laravel", + "name": "laravel", + "version": null, + "qualifiers": {}, + "subpath": null, + "primary_language": "PHP", + "description": null, + "release_date": null, + "parties": [ + { + "type": "person", + "role": "vendor", + "name": "laravel", + "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": null, + "license_expression": "mit", + "declared_license": "MIT", + "notice_text": null, + "root_path": null, + "dependencies": [ + { + "purl": "pkg:composer/php", + "requirement": ">=7.0.0", + "scope": "require", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:composer/fideloper/proxy", + "requirement": "~3.3", + "scope": "require", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:composer/laravel/framework", + "requirement": "5.5.*", + "scope": "require", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:composer/laravel/tinker", + "requirement": "~1.0", + "scope": "require", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:composer/filp/whoops", + "requirement": "~2.0", + "scope": "require-dev", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:composer/fzaninotto/faker", + "requirement": "~1.4", + "scope": "require-dev", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:composer/mockery/mockery", + "requirement": "0.9.*", + "scope": "require-dev", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:composer/phpunit/phpunit", + "requirement": "~6.0", + "scope": "require-dev", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + } + ], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:composer/laravel/laravel", + "repository_homepage_url": "https://packagist.org/packages/laravel/laravel", + "repository_download_url": null, + "api_data_url": "https://packagist.org/p/packages/laravel/laravel.json" + } + ], "files": [ { "path": "composer.json", "type": "file", - "packages": [ + "package_manifests": [ { "type": "composer", "namespace": "laravel", diff --git a/tests/scancode/data/help/help.txt b/tests/scancode/data/help/help.txt index 0bba64026dd..10ce98cca35 100644 --- a/tests/scancode/data/help/help.txt +++ b/tests/scancode/data/help/help.txt @@ -73,10 +73,10 @@ Options: is not treated as findings). output control: - --full-root Report full, absolute paths. - --strip-root Strip the root directory segment of all paths. The default is - to always include the last directory segment of the scanned - path such that all paths have a common root directory. + --full-root Report full, absolute paths. + --strip-root Strip the root directory segment of all paths. The default is to + always include the last directory segment of the scanned path + such that all paths have a common root directory. pre-scan: --ignore Ignore files matching . diff --git a/tests/scancode/data/plugin_only_findings/basic.expected.json b/tests/scancode/data/plugin_only_findings/basic.expected.json index 1f5891ea761..b58b4de5598 100644 --- a/tests/scancode/data/plugin_only_findings/basic.expected.json +++ b/tests/scancode/data/plugin_only_findings/basic.expected.json @@ -12,6 +12,7 @@ "--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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -20,6 +21,7 @@ } } ], + "packages": [], "files": [ { "path": "basic.tgz/basic/dir2/subdir/bcopy.s", @@ -105,7 +107,7 @@ "end_line": 36 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -235,7 +237,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, diff --git a/tests/scancode/data/rpm/fping-2.4-0.b2.rhfc1.dag.i386.rpm.expected.json b/tests/scancode/data/rpm/fping-2.4-0.b2.rhfc1.dag.i386.rpm.expected.json index f3d57b44c72..27ff797be59 100644 --- a/tests/scancode/data/rpm/fping-2.4-0.b2.rhfc1.dag.i386.rpm.expected.json +++ b/tests/scancode/data/rpm/fping-2.4-0.b2.rhfc1.dag.i386.rpm.expected.json @@ -8,6 +8,7 @@ "--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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -16,11 +17,59 @@ } } ], + "packages": [ + { + "type": "rpm", + "namespace": null, + "name": "fping", + "version": "2.4-0.b2.rhfc1.dag", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "A utility to ping multiple hosts at once.\nfping is a ping-like program which uses the Internet Control Message\nProtocol (ICMP) echo request to determine if a target host is responding.\n\nfping is different from ping in that you can specify any number of hosts\non the command line, or specify a file containing the lists of hosts to\nping. Instead of trying one host until it timeouts or replies, fping will\nsend out a ping packet and move on to the next host in a round-robin fashion.\nIf a host replies, it is noted and removed from the list of hosts to check.\nIf a host does not respond within a certain time limit and/or retry limit it\nwill be considered unreachable.", + "release_date": null, + "parties": [ + { + "type": null, + "role": "vendor", + "name": "Dag Apt Repository, http://dag.wieers.com/apt/", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": "http://www.fping.com/", + "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": "unknown", + "declared_license": "distributable", + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [ + "pkg:rpm/fping@2.4-0.b2.rhfc1.dag?arch=src" + ], + "extra_data": {}, + "purl": "pkg:rpm/fping@2.4-0.b2.rhfc1.dag", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } + ], "files": [ { "path": "fping-2.4-0.b2.rhfc1.dag.i386.rpm", "type": "file", - "packages": [ + "package_manifests": [ { "type": "rpm", "namespace": null, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-linux.json b/tests/scancode/data/unicodepath/unicodepath.expected-linux.json index cfb130901fa..fb906cdb959 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-linux.json +++ b/tests/scancode/data/unicodepath/unicodepath.expected-linux.json @@ -14,6 +14,7 @@ "--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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -22,6 +23,7 @@ } } ], + "packages": [], "files": [ { "path": "unicodepath", @@ -48,7 +50,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -81,7 +83,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114,7 +116,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -147,7 +149,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-linux.json--quiet b/tests/scancode/data/unicodepath/unicodepath.expected-linux.json--quiet index 4bdbf62dee8..a6e76895987 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-linux.json--quiet +++ b/tests/scancode/data/unicodepath/unicodepath.expected-linux.json--quiet @@ -15,6 +15,7 @@ "--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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -23,6 +24,7 @@ } } ], + "packages": [], "files": [ { "path": "unicodepath", @@ -49,7 +51,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -82,7 +84,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -115,7 +117,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -148,7 +150,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-linux.json--verbose b/tests/scancode/data/unicodepath/unicodepath.expected-linux.json--verbose index cfb130901fa..fb906cdb959 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-linux.json--verbose +++ b/tests/scancode/data/unicodepath/unicodepath.expected-linux.json--verbose @@ -14,6 +14,7 @@ "--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": "1.0.0", "message": null, "errors": [], "extra_data": { @@ -22,6 +23,7 @@ } } ], + "packages": [], "files": [ { "path": "unicodepath", @@ -48,7 +50,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -81,7 +83,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114,7 +116,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -147,7 +149,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-mac.json b/tests/scancode/data/unicodepath/unicodepath.expected-mac.json index a1b62919977..0dfd07562e6 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-mac.json +++ b/tests/scancode/data/unicodepath/unicodepath.expected-mac.json @@ -21,6 +21,7 @@ } } ], + "packages": [], "files": [ { "path": "unicodepath", @@ -47,7 +48,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -80,7 +81,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113,7 +114,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -146,7 +147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-mac.json--quiet b/tests/scancode/data/unicodepath/unicodepath.expected-mac.json--quiet index 2af72c55bec..51c3a27309c 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-mac.json--quiet +++ b/tests/scancode/data/unicodepath/unicodepath.expected-mac.json--quiet @@ -22,6 +22,7 @@ } } ], + "packages": [], "files": [ { "path": "unicodepath", @@ -48,7 +49,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -81,7 +82,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114,7 +115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -147,7 +148,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-mac.json--verbose b/tests/scancode/data/unicodepath/unicodepath.expected-mac.json--verbose index e8d7c6b4298..facc3c2205e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-mac.json--verbose +++ b/tests/scancode/data/unicodepath/unicodepath.expected-mac.json--verbose @@ -22,6 +22,7 @@ } } ], + "packages": [], "files": [ { "path": "unicodepath", @@ -48,7 +49,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -81,7 +82,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114,7 +115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -147,7 +148,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json b/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json index f8d7a4cabc3..f87ebc1cbce 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json +++ b/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json @@ -21,6 +21,7 @@ } } ], + "packages": [], "files": [ { "path": "unicodepath", @@ -47,7 +48,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -80,7 +81,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113,7 +114,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -146,7 +147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json--quiet b/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json--quiet index 005474174cd..95ce6fae92e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json--quiet +++ b/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json--quiet @@ -22,6 +22,7 @@ } } ], + "packages": [], "files": [ { "path": "unicodepath", @@ -48,7 +49,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -81,7 +82,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114,7 +115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -147,7 +148,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json--verbose b/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json--verbose index 6c00b842269..c1032fda9b4 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json--verbose +++ b/tests/scancode/data/unicodepath/unicodepath.expected-mac14.json--verbose @@ -22,6 +22,7 @@ } } ], + "packages": [], "files": [ { "path": "unicodepath", @@ -48,7 +49,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -81,7 +82,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114,7 +115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -147,7 +148,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-win.json b/tests/scancode/data/unicodepath/unicodepath.expected-win.json index f8d7a4cabc3..f87ebc1cbce 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-win.json +++ b/tests/scancode/data/unicodepath/unicodepath.expected-win.json @@ -21,6 +21,7 @@ } } ], + "packages": [], "files": [ { "path": "unicodepath", @@ -47,7 +48,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -80,7 +81,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113,7 +114,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -146,7 +147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-win.json--quiet b/tests/scancode/data/unicodepath/unicodepath.expected-win.json--quiet index 005474174cd..95ce6fae92e 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-win.json--quiet +++ b/tests/scancode/data/unicodepath/unicodepath.expected-win.json--quiet @@ -22,6 +22,7 @@ } } ], + "packages": [], "files": [ { "path": "unicodepath", @@ -48,7 +49,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -81,7 +82,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114,7 +115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -147,7 +148,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, diff --git a/tests/scancode/data/unicodepath/unicodepath.expected-win.json--verbose b/tests/scancode/data/unicodepath/unicodepath.expected-win.json--verbose index 6c00b842269..c1032fda9b4 100644 --- a/tests/scancode/data/unicodepath/unicodepath.expected-win.json--verbose +++ b/tests/scancode/data/unicodepath/unicodepath.expected-win.json--verbose @@ -22,6 +22,7 @@ } } ], + "packages": [], "files": [ { "path": "unicodepath", @@ -48,7 +49,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -81,7 +82,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114,7 +115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -147,7 +148,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, diff --git a/tests/scancode/test_api.py b/tests/scancode/test_api.py index 3fea677fdc2..633df4e5d60 100644 --- a/tests/scancode/test_api.py +++ b/tests/scancode/test_api.py @@ -18,13 +18,13 @@ class TestPackageAPI(FileBasedTesting): def test_get_package_info_works_for_maven_dot_pom(self): test_file = self.get_test_loc('api/package/p6spy-1.3.pom') - packages = api.get_package_info(test_file) - assert packages['packages'][0]['version'] == '1.3' + packages = api.get_package_manifests(test_file) + assert packages['package_manifests'][0]['version'] == '1.3' def test_get_package_info_works_for_maven_pom_dot_xml(self): test_file = self.get_test_loc('api/package/pom.xml') - packages = api.get_package_info(test_file) - assert packages['packages'][0]['version'] == '1.3' + packages = api.get_package_manifests(test_file) + assert packages['package_manifests'][0]['version'] == '1.3' class TestAPI(FileBasedTesting): @@ -32,7 +32,7 @@ class TestAPI(FileBasedTesting): def test_get_package_info_can_pickle(self): test_file = self.get_test_loc('api/package/package.json') - package = api.get_package_info(test_file) + package = api.get_package_manifests(test_file) import pickle try: diff --git a/tests/summarycode/data/end-2-end/bug-1141.expected.json b/tests/summarycode/data/end-2-end/bug-1141.expected.json index 409b6aad15b..e78901e94a4 100644 --- a/tests/summarycode/data/end-2-end/bug-1141.expected.json +++ b/tests/summarycode/data/end-2-end/bug-1141.expected.json @@ -26,6 +26,7 @@ } } ], + "packages": [], "summary": { "license_expressions": [ { @@ -72,8 +73,7 @@ "value": "C", "count": 2 } - ], - "packages": [] + ] }, "summary_of_key_files": { "license_expressions": [ @@ -113,7 +113,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "facets": [], "is_legal": false, "is_manifest": false, @@ -150,7 +150,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "facets": [], "is_legal": false, "is_manifest": false, @@ -187,7 +187,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "facets": [], "is_legal": false, "is_manifest": false, @@ -224,7 +224,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "facets": [], "is_legal": false, "is_manifest": false, @@ -302,7 +302,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "facets": [ "core" ], @@ -341,7 +341,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "facets": [ "core" ], @@ -380,7 +380,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "facets": [], "is_legal": false, "is_manifest": false, @@ -417,7 +417,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "facets": [], "is_legal": false, "is_manifest": false, @@ -454,7 +454,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "facets": [], "is_legal": false, "is_manifest": false, @@ -544,7 +544,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "facets": [ "core" ], @@ -595,7 +595,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "facets": [ "core" ], diff --git a/tests/summarycode/data/full_summary/summary.expected.json b/tests/summarycode/data/full_summary/summary.expected.json index 274b66348a0..24894a4da90 100644 --- a/tests/summarycode/data/full_summary/summary.expected.json +++ b/tests/summarycode/data/full_summary/summary.expected.json @@ -21,6 +21,2846 @@ } } ], + "packages": [ + { + "type": "npm", + "namespace": null, + "name": "npm", + "version": "2.13.5", + "qualifiers": {}, + "subpath": null, + "primary_language": "JavaScript", + "description": "a package manager for JavaScript", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me" + }, + { + "type": "person", + "role": "contributor", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Steve Steiner", + "email": "ssteinerX@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Aaron Blohowiak", + "email": "aaron.blohowiak@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Martyn Smith", + "email": "martyn@dollyfish.net.nz", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Francisco Treacy", + "email": "francisco.treacy@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Cliffano Subagio", + "email": "cliffano@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Christian Eager", + "email": "christian.eager@nokia.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Dav Glass", + "email": "davglass@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alex K. Wolfe", + "email": "alexkwolfe@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "James Sanders", + "email": "jimmyjazz14@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Reid Burke", + "email": "me@reidburke.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Arlo Breault", + "email": "arlolra@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Timo Derstappen", + "email": "teemow@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Bart Teeuwisse", + "email": "bart.teeuwisse@thecodemill.biz", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ben Noordhuis", + "email": "info@bnoordhuis.nl", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tor Valamo", + "email": "tor.valamo@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Whyme.Lyu", + "email": "5longluna@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Olivier Melcher", + "email": "olivier.melcher@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Toma\u017e Muraus", + "email": "kami@k5-storitve.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Evan Meagher", + "email": "evan.meagher@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Orlando Vazquez", + "email": "ovazquez@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kai Chen", + "email": "kaichenxyz@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "George Miroshnykov", + "email": "gmiroshnykov@lohika.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Geoff Flarity", + "email": "geoff.flarity@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Max Goodman", + "email": "c@chromakode.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Pete Kruckenberg", + "email": "pete@kruckenberg.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Laurie Harper", + "email": "laurie@holoweb.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Chris Wong", + "email": "chris@chriswongstudio.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Scott Bronson", + "email": "brons_github@rinspin.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Federico Romero", + "email": "federomero@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Visnu Pitiyanuvath", + "email": "visnupx@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mark Cahill", + "email": "mark@tiemonster.info", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tony", + "email": "zearin@gonk.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Iain Sproat", + "email": "iainsproat@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Trent Mick", + "email": "trentm@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Felix Geisendo\u0308rfer", + "email": "felix@debuggable.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jameson Little", + "email": "t.jameson.little@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Conny Brunnkvist", + "email": "conny@fuchsia.se", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Will Elwood", + "email": "w.elwood08@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Dean Landolt", + "email": "dean@deanlandolt.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Oleg Efimov", + "email": "efimovov@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Martin Cooper", + "email": "mfncooper@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jann Horn", + "email": "jannhorn@googlemail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrew Bradley", + "email": "cspotcode@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Maciej Ma\u0142ecki", + "email": "me@mmalecki.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Stephen Sugden", + "email": "glurgle@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Michael Budde", + "email": "mbudde@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jason Smith", + "email": "jhs@iriscouch.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Gautham Pai", + "email": "buzypi@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "David Trejo", + "email": "david.daniel.trejo@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "George Ornbo", + "email": "george@shapeshed.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tim Oxley", + "email": "secoif@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tyler Green", + "email": "tyler.green2@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Dave Pacheco", + "email": "dap@joyent.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Danila Gerasimov", + "email": "danila.gerasimov@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Rod Vagg", + "email": "rod@vagg.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Christian Howe", + "email": "coderarity@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrew Lunny", + "email": "alunny@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Henrik Hodne", + "email": "dvyjones@binaryhex.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Adam Blackburn", + "email": "regality@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kris Windham", + "email": "kriswindham@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jens Grunert", + "email": "jens.grunert@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Joost-Wim Boekesteijn", + "email": "joost-wim@boekesteijn.nl", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Dalmais Maxence", + "email": "root@ip-10-195-202-5.ec2.internal", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Marcus Ekwall", + "email": "marcus.ekwall@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Aaron Stacy", + "email": "aaron.r.stacy@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Phillip Howell", + "email": "phowell@cothm.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Domenic Denicola", + "email": "domenic@domenicdenicola.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "James Halliday", + "email": "mail@substack.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jeremy Cantrell", + "email": "jmcantrell@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ribettes", + "email": "patlogan29@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Don Park", + "email": "donpark@docuverse.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Einar Otto Stangvik", + "email": "einaros@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kei Son", + "email": "heyacct@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nicolas Morel", + "email": "marsup@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mark Dube", + "email": "markisdee@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Maxim Bogushevich", + "email": "boga1@mail.ru", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Meaglin", + "email": "Meaglin.wasabi@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ben Evans", + "email": "ben@bensbit.co.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nathan Zadoks", + "email": "nathan@nathan7.eu", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Brian White", + "email": "mscdex@mscdex.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jed Schmidt", + "email": "tr@nslator.jp", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ian Livingstone", + "email": "ianl@cs.dal.ca", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Patrick Pfeiffer", + "email": "patrick@buzzle.at", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Paul Miller", + "email": "paul@paulmillr.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ryan Emery", + "email": "seebees@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Carl Lange", + "email": "carl@flax.ie", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jan Lehnardt", + "email": "jan@apache.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Stuart P. Bentley", + "email": "stuart@testtrack4.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Johan Sk\u00f6ld", + "email": "johan@skold.cc", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Stuart Knightley", + "email": "stuart@stuartk.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Niggler", + "email": "nirk.niggler@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Paolo Fragomeni", + "email": "paolo@async.ly", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jaakko Manninen", + "email": "jaakko@rocketpack.fi", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Luke Arduini", + "email": "luke.arduini@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Larz Conwell", + "email": "larz@larz-laptop.(none)", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Marcel Klehr", + "email": "mklehr@gmx.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Robert Kowalski", + "email": "rok@kowalski.gd", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Forbes Lindesay", + "email": "forbes@lindesay.co.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Vaz Allen", + "email": "vaz@tryptid.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jake Verbaten", + "email": "raynos2@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Schabse Laks", + "email": "Dev@SLaks.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Florian Margaine", + "email": "florian@margaine.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Johan Nordberg", + "email": "its@johan-nordberg.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ian Babrou", + "email": "ibobrik@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Di Wu", + "email": "dwu@palantir.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mathias Bynens", + "email": "mathias@qiwi.be", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Matt McClure", + "email": "matt.mcclure@mapmyfitness.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Matt Lunn", + "email": "matt@mattlunn.me.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alexey Kreschuk", + "email": "akrsch@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "elisee", + "email": "elisee@sparklin.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Robert Gieseke", + "email": "robert.gieseke@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Franc\u0327ois Frisch", + "email": "francoisfrisch@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Trevor Burnham", + "email": "tburnham@hubspot.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alan Shaw", + "email": "alan@freestyle-developments.co.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nicholas Kinsey", + "email": "pyro@feisty.io", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Paulo Cesar", + "email": "pauloc062@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Elan Shanker", + "email": "elan.shanker@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jon Spencer", + "email": "jon@jonspencer.ca", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jason Diamond", + "email": "jason@diamond.name", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Maximilian Antoni", + "email": "mail@maxantoni.de", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Thom Blake", + "email": "tblake@brightroll.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jess Martin", + "email": "jessmartin@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Spain Train", + "email": "michael.spainhower@opower.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alex Rodionov", + "email": "p0deje@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Matt Colyer", + "email": "matt@colyer.name", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Evan You", + "email": "yyx990803@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "bitspill", + "email": "bitspill+github@bitspill.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Gabriel Falkenberg", + "email": "gabriel.falkenberg@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alexej Yaroshevich", + "email": "alex@qfox.ru", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Quim Calpe", + "email": "quim@kalpe.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Steve Mason", + "email": "stevem@brandwatch.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Wil Moore III", + "email": "wil.moore@wilmoore.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Sergey Belov", + "email": "peimei@ya.ru", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tom Huang", + "email": "hzlhu.dargon@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "CamilleM", + "email": "camille.moulin@alterway.fr", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "S\u00e9bastien Santoro", + "email": "dereckson@espace-win.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Evan Lucas", + "email": "evan@btc.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Quinn Slack", + "email": "qslack@qslack.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alex Kocharin", + "email": "alex@kocharin.ru", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Daniel Santiago", + "email": "daniel.santiago@highlevelwebs.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Denis Gladkikh", + "email": "outcoldman@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrew Horton", + "email": "andrew.j.horton@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Zeke Sikelianos", + "email": "zeke@sikelianos.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Dylan Greene", + "email": "dylang@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Franck Cuny", + "email": "franck.cuny@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Yeonghoon Park", + "email": "sola92@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Rafael de Oleza", + "email": "rafa@spotify.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mikola Lysenko", + "email": "mikolalysenko@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Yazhong Liu", + "email": "yorkiefixer@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Neil Gentleman", + "email": "ngentleman@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kris Kowal", + "email": "kris.kowal@cixar.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alex Gorbatchev", + "email": "alex.gorbatchev@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Shawn Wildermuth", + "email": "shawn@wildermuth.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Wesley de Souza", + "email": "wesleywex@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "yoyoyogi", + "email": "yogesh.k@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "J. Tangelder", + "email": "j.tangelder@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jean Lauliac", + "email": "jean@lauliac.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrey Kislyuk", + "email": "kislyuk@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Thorsten Lorenz", + "email": "thlorenz@gmx.de", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Julian Gruber", + "email": "julian@juliangruber.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Benjamin Coe", + "email": "bencoe@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alex Ford", + "email": "Alex.Ford@CodeTunnel.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Matt Hickford", + "email": "matt.hickford@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Sean McGivern", + "email": "sean.mcgivern@rightscale.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "C J Silverio", + "email": "ceejceej@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Robin Tweedie", + "email": "robin@songkick.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Miroslav Bajto\u0161", + "email": "miroslav@strongloop.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "David Glasser", + "email": "glasser@davidglasser.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Gianluca Casati", + "email": "casati_gianluca@yahoo.it", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Forrest L Norvell", + "email": "ogd@aoaioxxysz.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Karsten Tinnefeld", + "email": "k.tinnefeld@googlemail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Bryan Burgers", + "email": "bryan@burgers.io", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "David Beitey", + "email": "david@davidjb.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Evan You", + "email": "yyou@google.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Zach Pomerantz", + "email": "zmp@umich.edu", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Chris Williams", + "email": "cwilliams88@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "sudodoki", + "email": "smd.deluzion@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mick Thompson", + "email": "dthompson@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Felix Rabe", + "email": "felix@rabe.io", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Michael Hayes", + "email": "michael@hayes.io", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Chris Dickinson", + "email": "christopher.s.dickinson@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Bradley Meck", + "email": "bradley.meck@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "GeJ", + "email": "geraud@gcu.info", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrew Terris", + "email": "atterris@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Michael Nisi", + "email": "michael.nisi@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "fengmk2", + "email": "fengmk2@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Adam Meadows", + "email": "adam.meadows@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Chulki Lee", + "email": "chulki.lee@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "\u4e0d\u56db", + "email": "busi.hyy@taobao.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "dead_horse", + "email": "dead_horse@qq.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kenan Yildirim", + "email": "kenan@kenany.me", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Laurie Voss", + "email": "git@seldo.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Rebecca Turner", + "email": "me@re-becca.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Hunter Loftis", + "email": "hunter@hunterloftis.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Peter Richardson", + "email": "github@zoomy.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jussi Kalliokoski", + "email": "jussi.kalliokoski@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Filip Weiss", + "email": "me@fiws.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Timo Wei\u00df", + "email": "timoweiss@Timo-MBP.local", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Christopher Hiller", + "email": "chiller@badwing.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "J\u00e9r\u00e9my Lal", + "email": "kapouer@melix.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Anders Janmyr", + "email": "anders@janmyr.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Chris Meyers", + "email": "chris.meyers.fsu@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ludwig Magnusson", + "email": "ludwig@mediatool.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Wout Mertens", + "email": "Wout.Mertens@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nick Santos", + "email": "nick@medium.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Terin Stock", + "email": "terinjokes@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Faiq Raza", + "email": "faiqrazarizvi@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Thomas Torp", + "email": "thomas@erupt.no", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Sam Mikes", + "email": "smikes@cubane.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mat Tyndall", + "email": "mat.tyndall@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tauren Mills", + "email": "tauren@sportzing.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ron Martinez", + "email": "ramartin.net@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kazuhito Hokamura", + "email": "k.hokamura@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tristan Davies", + "email": "github@tristan.io", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "David Volm", + "email": "david@volminator.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Lin Clark", + "email": "lin.w.clark@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ben Page", + "email": "bpage@dewalch.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jeff Jo", + "email": "jeffjo@squareup.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "martinvd", + "email": "martinvdpub@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mark J. Titorenko", + "email": "nospam-github.aaakk.us.kg@titorenko.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Oddur Sigurdsson", + "email": "oddurs@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Eric Mill", + "email": "eric@konklone.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Gabriel Barros", + "email": "descartavel1@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "KevinSheedy", + "email": "kevinsheedy@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Aleksey Smolenchuk", + "email": "aleksey@uber.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ed Morley", + "email": "emorley@mozilla.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Blaine Bublitz", + "email": "blaine@iceddev.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrey Fedorov", + "email": "anfedorov@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Daijiro Wachi", + "email": "daijiro.wachi@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Luc Thevenard", + "email": "lucthevenard@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Aria Stewart", + "email": "aredridel@nbtsc.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Charlie Rudolph", + "email": "charles.w.rudolph@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Vladimir Rutsky", + "email": "rutsky@users.noreply.github.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Isaac Murchie", + "email": "isaac@saucelabs.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Marcin Wosinek", + "email": "marcin.wosinek@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "David Marr", + "email": "davemarr@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Bryan English", + "email": "bryan@bryanenglish.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Anthony Zotti", + "email": "amZotti@users.noreply.github.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Karl Horky", + "email": "karl.horky@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Gu\u00f0laugur Stef\u00e1n Egilsson", + "email": "gulli@kolibri.is", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Helge Skogly Holm", + "email": "helge.holm@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Peter A. Shevtsov", + "email": "petr.shevtsov@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alain Kalker", + "email": "a.c.kalker@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Bryant Williams", + "email": "b.n.williams@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jonas Weber", + "email": "github@jonasw.de", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tim Whidden", + "email": "twhid@twhid.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andreas", + "email": "functino@users.noreply.github.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Karolis Narkevicius", + "email": "karolis.n@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Adrian Lynch", + "email": "adi_ady_ade@hotmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Richard Littauer", + "email": "richard.littauer@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Oli Evans", + "email": "oli@zilla.org.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Matt Brennan", + "email": "mattyb1000@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jeff Barczewski", + "email": "jeff.barczewski@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Danny Fritz", + "email": "dannyfritz@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Takaya Kobayashi", + "email": "jigsaw@live.jp", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ra'Shaun Stovall", + "email": "rashaunstovall@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Julien Meddah", + "email": "julien.meddah@deveryware.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Michiel Sikma", + "email": "michiel@wedemandhtml.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jakob Krigovsky", + "email": "jakob.krigovsky@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Charmander", + "email": "~@charmander.me", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Erik Wienhold", + "email": "git@ewie.name", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "James Butler", + "email": "james.butler@sandfox.co.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kevin Kragenbrink", + "email": "kevin@gaikai.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Arnaud Rinquin", + "email": "rinquin.arnaud@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mike MacCana", + "email": "mike.maccana@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Antti Mattila", + "email": "anttti@fastmail.fm", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "laiso", + "email": "laiso@lai.so", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Matt Zorn", + "email": "zornme@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kyle Mitchell", + "email": "kyle@kemitchell.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jeremiah Senkpiel", + "email": "fishrock123@rocketmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Michael Klein", + "email": "mischkl@users.noreply.github.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Simen Bekkhus", + "email": "sbekkhus91@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Victor", + "email": "victor.shih@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "thefourtheye", + "email": "thechargingvolcano@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Clay Carpenter", + "email": "claycarpenter@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "bangbang93", + "email": "bangbang93@163.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nick Malaguti", + "email": "nmalaguti@palantir.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Cedric Nelson", + "email": "cedric.nelson@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kat March\u00e1n", + "email": "kzm@sykosomatic.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrew", + "email": "talktome@aboutandrew.co.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Eduardo Pinho", + "email": "enet4mikeenet@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Rachel Hutchison", + "email": "rhutchix@intel.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ryan Temple", + "email": "ryantemple145@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Eugene Sharygin", + "email": "eush77@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nick Heiner", + "email": "nick.heiner@opower.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "James Talmage", + "email": "james@talmage.io", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "jane arc", + "email": "jane@uber.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Joseph Dykstra", + "email": "josephdykstra@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Joshua Egan", + "email": "josh-egan@users.noreply.github.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Thomas Cort", + "email": "thomasc@ssimicro.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Thaddee Tyl", + "email": "thaddee.tyl@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Steve Klabnik", + "email": "steve@steveklabnik.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrew Murray", + "email": "radarhere@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Stephan B\u00f6nnemann", + "email": "stephan@excellenteasy.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kyle M. Tarplee", + "email": "kyle.tarplee@numerica.us", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Derek Peterson", + "email": "derekpetey@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Greg Whiteley", + "email": "greg.whiteley@atomos.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "murgatroid99", + "email": "mlumish@google.com", + "url": null + }, + { + "type": "person", + "role": "maintainer", + "name": "isaacs", + "email": "isaacs@npmjs.com", + "url": null + }, + { + "type": "person", + "role": "maintainer", + "name": "othiym23", + "email": "ogd@aoaioxxysz.net", + "url": null + }, + { + "type": "person", + "role": "maintainer", + "name": "iarna", + "email": "me@re-becca.org", + "url": null + }, + { + "type": "person", + "role": "maintainer", + "name": "zkat", + "email": "kat@sykosomatic.org", + "url": null + } + ], + "keywords": [ + "package manager", + "modules", + "install", + "package.json" + ], + "homepage_url": "https://docs.npmjs.com/", + "download_url": "https://registry.npmjs.org/npm/-/npm-2.13.5.tgz", + "size": null, + "sha1": "a124386bce4a90506f28ad4b1d1a804a17baaf32", + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "http://github.com/npm/npm/issues", + "code_view_url": null, + "vcs_url": "git+https://github.com/npm/npm.git@fc7bbf03e39cc48a8924b90696d28345a6a90f3c", + "copyright": null, + "license_expression": "artistic-2.0", + "declared_license": [ + "Artistic-2.0" + ], + "notice_text": null, + "root_path": "scan", + "dependencies": [ + { + "purl": "pkg:npm/abbrev", + "requirement": "~1.0.7", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/ansi", + "requirement": "~0.3.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/ansicolors", + "requirement": "~0.3.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/ansistyles", + "requirement": "~0.1.3", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/archy", + "requirement": "~1.0.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/async-some", + "requirement": "~1.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/block-stream", + "requirement": "0.0.8", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/char-spinner", + "requirement": "~1.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/chmodr", + "requirement": "~1.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/chownr", + "requirement": "0.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/cmd-shim", + "requirement": "~2.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/columnify", + "requirement": "~1.5.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/config-chain", + "requirement": "~1.1.9", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/dezalgo", + "requirement": "~1.0.3", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/editor", + "requirement": "~1.0.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/fs-vacuum", + "requirement": "~1.2.6", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/fs-write-stream-atomic", + "requirement": "~1.0.3", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/fstream", + "requirement": "~1.0.7", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/fstream-npm", + "requirement": "~1.0.4", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/github-url-from-git", + "requirement": "~1.4.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/github-url-from-username-repo", + "requirement": "~1.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/glob", + "requirement": "~5.0.14", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/graceful-fs", + "requirement": "~4.1.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/hosted-git-info", + "requirement": "~2.1.4", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/inflight", + "requirement": "~1.0.4", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/inherits", + "requirement": "~2.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/ini", + "requirement": "~1.3.4", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/init-package-json", + "requirement": "~1.7.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/lockfile", + "requirement": "~1.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/lru-cache", + "requirement": "~2.6.5", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/minimatch", + "requirement": "~2.0.10", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/mkdirp", + "requirement": "~0.5.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/node-gyp", + "requirement": "~2.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/nopt", + "requirement": "~3.0.3", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/normalize-git-url", + "requirement": "~3.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/normalize-package-data", + "requirement": "~2.3.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-cache-filename", + "requirement": "~1.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-install-checks", + "requirement": "~1.0.6", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-package-arg", + "requirement": "~4.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-registry-client", + "requirement": "~6.5.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-user-validate", + "requirement": "~0.1.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/npmlog", + "requirement": "~1.2.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/once", + "requirement": "~1.3.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/opener", + "requirement": "~1.4.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/osenv", + "requirement": "~0.1.3", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/path-is-inside", + "requirement": "~1.0.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/read", + "requirement": "~1.0.6", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/read-installed", + "requirement": "~4.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/read-package-json", + "requirement": "~2.0.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/readable-stream", + "requirement": "~1.1.13", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/realize-package-specifier", + "requirement": "~3.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/request", + "requirement": "~2.60.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/retry", + "requirement": "~0.6.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/rimraf", + "requirement": "~2.4.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/semver", + "requirement": "~5.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/sha", + "requirement": "~1.3.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/slide", + "requirement": "~1.1.6", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/sorted-object", + "requirement": "~1.0.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/spdx", + "requirement": "~0.4.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/tar", + "requirement": "~2.1.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/text-table", + "requirement": "~0.2.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/uid-number", + "requirement": "0.0.6", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/umask", + "requirement": "~1.1.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/validate-npm-package-name", + "requirement": "~2.2.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/which", + "requirement": "~1.1.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/wrappy", + "requirement": "~1.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/write-file-atomic", + "requirement": "~1.1.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/validate-npm-package-license", + "requirement": "*", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/deep-equal", + "requirement": "~1.0.0", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/marked", + "requirement": "~0.3.3", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/marked-man", + "requirement": "~0.1.5", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/nock", + "requirement": "~2.10.0", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-registry-couchapp", + "requirement": "~2.6.7", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-registry-mock", + "requirement": "~1.0.0", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/require-inject", + "requirement": "~1.2.0", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/sprintf-js", + "requirement": "~1.0.2", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/tap", + "requirement": "~1.3.1", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + } + ], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:npm/npm@2.13.5", + "repository_homepage_url": "https://www.npmjs.com/package/npm", + "repository_download_url": "https://registry.npmjs.org/npm/-/npm-2.13.5.tgz", + "api_data_url": "https://registry.npmjs.org/npm/2.13.5" + } + ], "summary": { "license_expressions": [ { @@ -195,2852 +3035,6 @@ "value": "GAS", "count": 1 } - ], - "packages": [ - { - "type": "npm", - "namespace": null, - "name": "npm", - "version": "2.13.5", - "qualifiers": {}, - "subpath": null, - "primary_language": "JavaScript", - "description": "a package manager for JavaScript", - "release_date": null, - "parties": [ - { - "type": "person", - "role": "author", - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - { - "type": "person", - "role": "contributor", - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Steve Steiner", - "email": "ssteinerX@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Mikeal Rogers", - "email": "mikeal.rogers@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Aaron Blohowiak", - "email": "aaron.blohowiak@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Martyn Smith", - "email": "martyn@dollyfish.net.nz", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Charlie Robbins", - "email": "charlie.robbins@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Francisco Treacy", - "email": "francisco.treacy@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Cliffano Subagio", - "email": "cliffano@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Christian Eager", - "email": "christian.eager@nokia.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Dav Glass", - "email": "davglass@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Alex K. Wolfe", - "email": "alexkwolfe@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "James Sanders", - "email": "jimmyjazz14@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Reid Burke", - "email": "me@reidburke.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Arlo Breault", - "email": "arlolra@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Timo Derstappen", - "email": "teemow@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Bart Teeuwisse", - "email": "bart.teeuwisse@thecodemill.biz", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ben Noordhuis", - "email": "info@bnoordhuis.nl", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Tor Valamo", - "email": "tor.valamo@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Whyme.Lyu", - "email": "5longluna@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Olivier Melcher", - "email": "olivier.melcher@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Toma\u017e Muraus", - "email": "kami@k5-storitve.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Evan Meagher", - "email": "evan.meagher@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Orlando Vazquez", - "email": "ovazquez@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kai Chen", - "email": "kaichenxyz@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "George Miroshnykov", - "email": "gmiroshnykov@lohika.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Geoff Flarity", - "email": "geoff.flarity@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Max Goodman", - "email": "c@chromakode.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Pete Kruckenberg", - "email": "pete@kruckenberg.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Laurie Harper", - "email": "laurie@holoweb.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Chris Wong", - "email": "chris@chriswongstudio.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Scott Bronson", - "email": "brons_github@rinspin.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Federico Romero", - "email": "federomero@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Visnu Pitiyanuvath", - "email": "visnupx@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Irakli Gozalishvili", - "email": "rfobic@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Mark Cahill", - "email": "mark@tiemonster.info", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Tony", - "email": "zearin@gonk.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Iain Sproat", - "email": "iainsproat@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Trent Mick", - "email": "trentm@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Felix Geisendo\u0308rfer", - "email": "felix@debuggable.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jameson Little", - "email": "t.jameson.little@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Conny Brunnkvist", - "email": "conny@fuchsia.se", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Will Elwood", - "email": "w.elwood08@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Dean Landolt", - "email": "dean@deanlandolt.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Oleg Efimov", - "email": "efimovov@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Martin Cooper", - "email": "mfncooper@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jann Horn", - "email": "jannhorn@googlemail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Andrew Bradley", - "email": "cspotcode@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Maciej Ma\u0142ecki", - "email": "me@mmalecki.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Stephen Sugden", - "email": "glurgle@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Michael Budde", - "email": "mbudde@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jason Smith", - "email": "jhs@iriscouch.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Gautham Pai", - "email": "buzypi@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "David Trejo", - "email": "david.daniel.trejo@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Paul Vorbach", - "email": "paul@vorb.de", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "George Ornbo", - "email": "george@shapeshed.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Tim Oxley", - "email": "secoif@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Tyler Green", - "email": "tyler.green2@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Dave Pacheco", - "email": "dap@joyent.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Danila Gerasimov", - "email": "danila.gerasimov@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Rod Vagg", - "email": "rod@vagg.org", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Christian Howe", - "email": "coderarity@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Andrew Lunny", - "email": "alunny@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Henrik Hodne", - "email": "dvyjones@binaryhex.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Adam Blackburn", - "email": "regality@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kris Windham", - "email": "kriswindham@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jens Grunert", - "email": "jens.grunert@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Joost-Wim Boekesteijn", - "email": "joost-wim@boekesteijn.nl", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Dalmais Maxence", - "email": "root@ip-10-195-202-5.ec2.internal", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Marcus Ekwall", - "email": "marcus.ekwall@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Aaron Stacy", - "email": "aaron.r.stacy@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Phillip Howell", - "email": "phowell@cothm.org", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Domenic Denicola", - "email": "domenic@domenicdenicola.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "James Halliday", - "email": "mail@substack.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jeremy Cantrell", - "email": "jmcantrell@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ribettes", - "email": "patlogan29@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Don Park", - "email": "donpark@docuverse.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Einar Otto Stangvik", - "email": "einaros@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kei Son", - "email": "heyacct@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Nicolas Morel", - "email": "marsup@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Mark Dube", - "email": "markisdee@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Nathan Rajlich", - "email": "nathan@tootallnate.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Maxim Bogushevich", - "email": "boga1@mail.ru", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Meaglin", - "email": "Meaglin.wasabi@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ben Evans", - "email": "ben@bensbit.co.uk", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Nathan Zadoks", - "email": "nathan@nathan7.eu", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Brian White", - "email": "mscdex@mscdex.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jed Schmidt", - "email": "tr@nslator.jp", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ian Livingstone", - "email": "ianl@cs.dal.ca", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Patrick Pfeiffer", - "email": "patrick@buzzle.at", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Paul Miller", - "email": "paul@paulmillr.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ryan Emery", - "email": "seebees@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Carl Lange", - "email": "carl@flax.ie", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jan Lehnardt", - "email": "jan@apache.org", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Stuart P. Bentley", - "email": "stuart@testtrack4.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Johan Sk\u00f6ld", - "email": "johan@skold.cc", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Stuart Knightley", - "email": "stuart@stuartk.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Niggler", - "email": "nirk.niggler@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Paolo Fragomeni", - "email": "paolo@async.ly", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jaakko Manninen", - "email": "jaakko@rocketpack.fi", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Luke Arduini", - "email": "luke.arduini@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Larz Conwell", - "email": "larz@larz-laptop.(none)", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Marcel Klehr", - "email": "mklehr@gmx.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Robert Kowalski", - "email": "rok@kowalski.gd", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Forbes Lindesay", - "email": "forbes@lindesay.co.uk", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Vaz Allen", - "email": "vaz@tryptid.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jake Verbaten", - "email": "raynos2@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Schabse Laks", - "email": "Dev@SLaks.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Florian Margaine", - "email": "florian@margaine.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Johan Nordberg", - "email": "its@johan-nordberg.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ian Babrou", - "email": "ibobrik@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Di Wu", - "email": "dwu@palantir.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Mathias Bynens", - "email": "mathias@qiwi.be", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Matt McClure", - "email": "matt.mcclure@mapmyfitness.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Matt Lunn", - "email": "matt@mattlunn.me.uk", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Alexey Kreschuk", - "email": "akrsch@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "elisee", - "email": "elisee@sparklin.org", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Robert Gieseke", - "email": "robert.gieseke@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Franc\u0327ois Frisch", - "email": "francoisfrisch@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Trevor Burnham", - "email": "tburnham@hubspot.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Alan Shaw", - "email": "alan@freestyle-developments.co.uk", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Nicholas Kinsey", - "email": "pyro@feisty.io", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Paulo Cesar", - "email": "pauloc062@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Elan Shanker", - "email": "elan.shanker@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jon Spencer", - "email": "jon@jonspencer.ca", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jason Diamond", - "email": "jason@diamond.name", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Maximilian Antoni", - "email": "mail@maxantoni.de", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Thom Blake", - "email": "tblake@brightroll.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jess Martin", - "email": "jessmartin@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Spain Train", - "email": "michael.spainhower@opower.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Alex Rodionov", - "email": "p0deje@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Matt Colyer", - "email": "matt@colyer.name", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Evan You", - "email": "yyx990803@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "bitspill", - "email": "bitspill+github@bitspill.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Gabriel Falkenberg", - "email": "gabriel.falkenberg@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Alexej Yaroshevich", - "email": "alex@qfox.ru", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Quim Calpe", - "email": "quim@kalpe.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Steve Mason", - "email": "stevem@brandwatch.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Wil Moore III", - "email": "wil.moore@wilmoore.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Sergey Belov", - "email": "peimei@ya.ru", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Tom Huang", - "email": "hzlhu.dargon@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "CamilleM", - "email": "camille.moulin@alterway.fr", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "S\u00e9bastien Santoro", - "email": "dereckson@espace-win.org", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Evan Lucas", - "email": "evan@btc.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Quinn Slack", - "email": "qslack@qslack.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Alex Kocharin", - "email": "alex@kocharin.ru", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Daniel Santiago", - "email": "daniel.santiago@highlevelwebs.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Denis Gladkikh", - "email": "outcoldman@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Andrew Horton", - "email": "andrew.j.horton@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Zeke Sikelianos", - "email": "zeke@sikelianos.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Dylan Greene", - "email": "dylang@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Franck Cuny", - "email": "franck.cuny@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Yeonghoon Park", - "email": "sola92@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Rafael de Oleza", - "email": "rafa@spotify.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Mikola Lysenko", - "email": "mikolalysenko@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Yazhong Liu", - "email": "yorkiefixer@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Neil Gentleman", - "email": "ngentleman@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kris Kowal", - "email": "kris.kowal@cixar.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Alex Gorbatchev", - "email": "alex.gorbatchev@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Shawn Wildermuth", - "email": "shawn@wildermuth.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Wesley de Souza", - "email": "wesleywex@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "yoyoyogi", - "email": "yogesh.k@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "J. Tangelder", - "email": "j.tangelder@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jean Lauliac", - "email": "jean@lauliac.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Andrey Kislyuk", - "email": "kislyuk@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Thorsten Lorenz", - "email": "thlorenz@gmx.de", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Julian Gruber", - "email": "julian@juliangruber.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Benjamin Coe", - "email": "bencoe@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Alex Ford", - "email": "Alex.Ford@CodeTunnel.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Matt Hickford", - "email": "matt.hickford@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Sean McGivern", - "email": "sean.mcgivern@rightscale.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "C J Silverio", - "email": "ceejceej@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Robin Tweedie", - "email": "robin@songkick.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Miroslav Bajto\u0161", - "email": "miroslav@strongloop.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "David Glasser", - "email": "glasser@davidglasser.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Gianluca Casati", - "email": "casati_gianluca@yahoo.it", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Forrest L Norvell", - "email": "ogd@aoaioxxysz.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Karsten Tinnefeld", - "email": "k.tinnefeld@googlemail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Bryan Burgers", - "email": "bryan@burgers.io", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "David Beitey", - "email": "david@davidjb.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Evan You", - "email": "yyou@google.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Zach Pomerantz", - "email": "zmp@umich.edu", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Chris Williams", - "email": "cwilliams88@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "sudodoki", - "email": "smd.deluzion@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Mick Thompson", - "email": "dthompson@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Felix Rabe", - "email": "felix@rabe.io", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Michael Hayes", - "email": "michael@hayes.io", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Chris Dickinson", - "email": "christopher.s.dickinson@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Bradley Meck", - "email": "bradley.meck@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "GeJ", - "email": "geraud@gcu.info", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Andrew Terris", - "email": "atterris@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Michael Nisi", - "email": "michael.nisi@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "fengmk2", - "email": "fengmk2@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Adam Meadows", - "email": "adam.meadows@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Chulki Lee", - "email": "chulki.lee@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "\u4e0d\u56db", - "email": "busi.hyy@taobao.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "dead_horse", - "email": "dead_horse@qq.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kenan Yildirim", - "email": "kenan@kenany.me", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Laurie Voss", - "email": "git@seldo.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Rebecca Turner", - "email": "me@re-becca.org", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Hunter Loftis", - "email": "hunter@hunterloftis.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Peter Richardson", - "email": "github@zoomy.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jussi Kalliokoski", - "email": "jussi.kalliokoski@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Filip Weiss", - "email": "me@fiws.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Timo Wei\u00df", - "email": "timoweiss@Timo-MBP.local", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Christopher Hiller", - "email": "chiller@badwing.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "J\u00e9r\u00e9my Lal", - "email": "kapouer@melix.org", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Anders Janmyr", - "email": "anders@janmyr.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Chris Meyers", - "email": "chris.meyers.fsu@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ludwig Magnusson", - "email": "ludwig@mediatool.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Wout Mertens", - "email": "Wout.Mertens@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Nick Santos", - "email": "nick@medium.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Terin Stock", - "email": "terinjokes@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Faiq Raza", - "email": "faiqrazarizvi@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Thomas Torp", - "email": "thomas@erupt.no", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Sam Mikes", - "email": "smikes@cubane.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Mat Tyndall", - "email": "mat.tyndall@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Tauren Mills", - "email": "tauren@sportzing.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ron Martinez", - "email": "ramartin.net@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kazuhito Hokamura", - "email": "k.hokamura@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Tristan Davies", - "email": "github@tristan.io", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "David Volm", - "email": "david@volminator.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Lin Clark", - "email": "lin.w.clark@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ben Page", - "email": "bpage@dewalch.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jeff Jo", - "email": "jeffjo@squareup.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "martinvd", - "email": "martinvdpub@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Mark J. Titorenko", - "email": "nospam-github.aaakk.us.kg@titorenko.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Oddur Sigurdsson", - "email": "oddurs@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Eric Mill", - "email": "eric@konklone.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Gabriel Barros", - "email": "descartavel1@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "KevinSheedy", - "email": "kevinsheedy@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Aleksey Smolenchuk", - "email": "aleksey@uber.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ed Morley", - "email": "emorley@mozilla.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Blaine Bublitz", - "email": "blaine@iceddev.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Andrey Fedorov", - "email": "anfedorov@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Daijiro Wachi", - "email": "daijiro.wachi@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Luc Thevenard", - "email": "lucthevenard@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Aria Stewart", - "email": "aredridel@nbtsc.org", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Charlie Rudolph", - "email": "charles.w.rudolph@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Vladimir Rutsky", - "email": "rutsky@users.noreply.github.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Isaac Murchie", - "email": "isaac@saucelabs.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Marcin Wosinek", - "email": "marcin.wosinek@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "David Marr", - "email": "davemarr@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Bryan English", - "email": "bryan@bryanenglish.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Anthony Zotti", - "email": "amZotti@users.noreply.github.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Karl Horky", - "email": "karl.horky@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jordan Harband", - "email": "ljharb@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Gu\u00f0laugur Stef\u00e1n Egilsson", - "email": "gulli@kolibri.is", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Helge Skogly Holm", - "email": "helge.holm@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Peter A. Shevtsov", - "email": "petr.shevtsov@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Alain Kalker", - "email": "a.c.kalker@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Bryant Williams", - "email": "b.n.williams@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jonas Weber", - "email": "github@jonasw.de", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Tim Whidden", - "email": "twhid@twhid.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Andreas", - "email": "functino@users.noreply.github.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Karolis Narkevicius", - "email": "karolis.n@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Adrian Lynch", - "email": "adi_ady_ade@hotmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Richard Littauer", - "email": "richard.littauer@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Oli Evans", - "email": "oli@zilla.org.uk", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Matt Brennan", - "email": "mattyb1000@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jeff Barczewski", - "email": "jeff.barczewski@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Danny Fritz", - "email": "dannyfritz@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Takaya Kobayashi", - "email": "jigsaw@live.jp", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ra'Shaun Stovall", - "email": "rashaunstovall@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Julien Meddah", - "email": "julien.meddah@deveryware.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Michiel Sikma", - "email": "michiel@wedemandhtml.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jakob Krigovsky", - "email": "jakob.krigovsky@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Charmander", - "email": "~@charmander.me", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Erik Wienhold", - "email": "git@ewie.name", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "James Butler", - "email": "james.butler@sandfox.co.uk", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kevin Kragenbrink", - "email": "kevin@gaikai.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Arnaud Rinquin", - "email": "rinquin.arnaud@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Mike MacCana", - "email": "mike.maccana@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Antti Mattila", - "email": "anttti@fastmail.fm", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "laiso", - "email": "laiso@lai.so", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Matt Zorn", - "email": "zornme@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kyle Mitchell", - "email": "kyle@kemitchell.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jeremiah Senkpiel", - "email": "fishrock123@rocketmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Michael Klein", - "email": "mischkl@users.noreply.github.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Simen Bekkhus", - "email": "sbekkhus91@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Victor", - "email": "victor.shih@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "thefourtheye", - "email": "thechargingvolcano@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Clay Carpenter", - "email": "claycarpenter@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "bangbang93", - "email": "bangbang93@163.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Nick Malaguti", - "email": "nmalaguti@palantir.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Cedric Nelson", - "email": "cedric.nelson@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kat March\u00e1n", - "email": "kzm@sykosomatic.org", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Andrew", - "email": "talktome@aboutandrew.co.uk", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Eduardo Pinho", - "email": "enet4mikeenet@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Rachel Hutchison", - "email": "rhutchix@intel.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ryan Temple", - "email": "ryantemple145@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Eugene Sharygin", - "email": "eush77@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Nick Heiner", - "email": "nick.heiner@opower.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "James Talmage", - "email": "james@talmage.io", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "jane arc", - "email": "jane@uber.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Joseph Dykstra", - "email": "josephdykstra@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Joshua Egan", - "email": "josh-egan@users.noreply.github.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Thomas Cort", - "email": "thomasc@ssimicro.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Thaddee Tyl", - "email": "thaddee.tyl@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Steve Klabnik", - "email": "steve@steveklabnik.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Andrew Murray", - "email": "radarhere@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Stephan B\u00f6nnemann", - "email": "stephan@excellenteasy.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kyle M. Tarplee", - "email": "kyle.tarplee@numerica.us", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Derek Peterson", - "email": "derekpetey@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Greg Whiteley", - "email": "greg.whiteley@atomos.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "murgatroid99", - "email": "mlumish@google.com", - "url": null - }, - { - "type": "person", - "role": "maintainer", - "name": "isaacs", - "email": "isaacs@npmjs.com", - "url": null - }, - { - "type": "person", - "role": "maintainer", - "name": "othiym23", - "email": "ogd@aoaioxxysz.net", - "url": null - }, - { - "type": "person", - "role": "maintainer", - "name": "iarna", - "email": "me@re-becca.org", - "url": null - }, - { - "type": "person", - "role": "maintainer", - "name": "zkat", - "email": "kat@sykosomatic.org", - "url": null - } - ], - "keywords": [ - "package manager", - "modules", - "install", - "package.json" - ], - "homepage_url": "https://docs.npmjs.com/", - "download_url": "https://registry.npmjs.org/npm/-/npm-2.13.5.tgz", - "size": null, - "sha1": "a124386bce4a90506f28ad4b1d1a804a17baaf32", - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": "http://github.com/npm/npm/issues", - "code_view_url": null, - "vcs_url": "git+https://github.com/npm/npm.git@fc7bbf03e39cc48a8924b90696d28345a6a90f3c", - "copyright": null, - "license_expression": "artistic-2.0", - "declared_license": [ - "Artistic-2.0" - ], - "notice_text": null, - "root_path": "scan", - "dependencies": [ - { - "purl": "pkg:npm/abbrev", - "requirement": "~1.0.7", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/ansi", - "requirement": "~0.3.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/ansicolors", - "requirement": "~0.3.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/ansistyles", - "requirement": "~0.1.3", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/archy", - "requirement": "~1.0.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/async-some", - "requirement": "~1.0.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/block-stream", - "requirement": "0.0.8", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/char-spinner", - "requirement": "~1.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/chmodr", - "requirement": "~1.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/chownr", - "requirement": "0.0.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/cmd-shim", - "requirement": "~2.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/columnify", - "requirement": "~1.5.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/config-chain", - "requirement": "~1.1.9", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/dezalgo", - "requirement": "~1.0.3", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/editor", - "requirement": "~1.0.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/fs-vacuum", - "requirement": "~1.2.6", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/fs-write-stream-atomic", - "requirement": "~1.0.3", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/fstream", - "requirement": "~1.0.7", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/fstream-npm", - "requirement": "~1.0.4", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/github-url-from-git", - "requirement": "~1.4.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/github-url-from-username-repo", - "requirement": "~1.0.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/glob", - "requirement": "~5.0.14", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/graceful-fs", - "requirement": "~4.1.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/hosted-git-info", - "requirement": "~2.1.4", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/inflight", - "requirement": "~1.0.4", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/inherits", - "requirement": "~2.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/ini", - "requirement": "~1.3.4", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/init-package-json", - "requirement": "~1.7.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/lockfile", - "requirement": "~1.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/lru-cache", - "requirement": "~2.6.5", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/minimatch", - "requirement": "~2.0.10", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/mkdirp", - "requirement": "~0.5.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/node-gyp", - "requirement": "~2.0.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/nopt", - "requirement": "~3.0.3", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/normalize-git-url", - "requirement": "~3.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/normalize-package-data", - "requirement": "~2.3.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/npm-cache-filename", - "requirement": "~1.0.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/npm-install-checks", - "requirement": "~1.0.6", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/npm-package-arg", - "requirement": "~4.0.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/npm-registry-client", - "requirement": "~6.5.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/npm-user-validate", - "requirement": "~0.1.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/npmlog", - "requirement": "~1.2.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/once", - "requirement": "~1.3.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/opener", - "requirement": "~1.4.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/osenv", - "requirement": "~0.1.3", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/path-is-inside", - "requirement": "~1.0.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/read", - "requirement": "~1.0.6", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/read-installed", - "requirement": "~4.0.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/read-package-json", - "requirement": "~2.0.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/readable-stream", - "requirement": "~1.1.13", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/realize-package-specifier", - "requirement": "~3.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/request", - "requirement": "~2.60.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/retry", - "requirement": "~0.6.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/rimraf", - "requirement": "~2.4.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/semver", - "requirement": "~5.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/sha", - "requirement": "~1.3.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/slide", - "requirement": "~1.1.6", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/sorted-object", - "requirement": "~1.0.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/spdx", - "requirement": "~0.4.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/tar", - "requirement": "~2.1.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/text-table", - "requirement": "~0.2.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/uid-number", - "requirement": "0.0.6", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/umask", - "requirement": "~1.1.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/validate-npm-package-name", - "requirement": "~2.2.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/which", - "requirement": "~1.1.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/wrappy", - "requirement": "~1.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/write-file-atomic", - "requirement": "~1.1.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/validate-npm-package-license", - "requirement": "*", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/deep-equal", - "requirement": "~1.0.0", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/marked", - "requirement": "~0.3.3", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/marked-man", - "requirement": "~0.1.5", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/nock", - "requirement": "~2.10.0", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/npm-registry-couchapp", - "requirement": "~2.6.7", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/npm-registry-mock", - "requirement": "~1.0.0", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/require-inject", - "requirement": "~1.2.0", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/sprintf-js", - "requirement": "~1.0.2", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/tap", - "requirement": "~1.3.1", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - } - ], - "contains_source_code": null, - "source_packages": [], - "extra_data": {}, - "purl": "pkg:npm/npm@2.13.5", - "repository_homepage_url": "https://www.npmjs.com/package/npm", - "repository_download_url": "https://registry.npmjs.org/npm/-/npm-2.13.5.tgz", - "api_data_url": "https://registry.npmjs.org/npm/2.13.5", - "files": [ - { - "path": "scan/package.json", - "type": "file" - } - ] - } ] }, "files": [ @@ -3069,7 +3063,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 26, "dirs_count": 9, "size_count": 58647, @@ -3100,7 +3094,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 7, "dirs_count": 1, "size_count": 4227, @@ -3131,7 +3125,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 7, "dirs_count": 0, "size_count": 4227, @@ -3215,7 +3209,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -3305,7 +3299,7 @@ "end_line": 10 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -3389,7 +3383,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -3426,7 +3420,7 @@ "end_line": 4 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -3463,7 +3457,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -3547,7 +3541,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -3584,7 +3578,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -3615,7 +3609,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -3646,7 +3640,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 3, "dirs_count": 0, "size_count": 1896, @@ -3732,7 +3726,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -3816,7 +3810,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -3902,7 +3896,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -3974,7 +3968,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -4052,7 +4046,7 @@ "end_line": 17 } ], - "packages": [ + "package_manifests": [ { "type": "npm", "namespace": null, @@ -6889,13 +6883,7 @@ "purl": "pkg:npm/npm@2.13.5", "repository_homepage_url": "https://www.npmjs.com/package/npm", "repository_download_url": "https://registry.npmjs.org/npm/-/npm-2.13.5.tgz", - "api_data_url": "https://registry.npmjs.org/npm/2.13.5", - "files": [ - { - "path": "scan/package.json", - "type": "file" - } - ] + "api_data_url": "https://registry.npmjs.org/npm/2.13.5" } ], "files_count": 0, @@ -6928,7 +6916,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 13, "dirs_count": 5, "size_count": 7951, @@ -6959,7 +6947,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 1, "dirs_count": 0, "size_count": 2054, @@ -7083,7 +7071,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -7169,7 +7157,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -7255,7 +7243,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -7341,7 +7329,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -7372,7 +7360,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 2, "dirs_count": 0, "size_count": 863, @@ -7415,7 +7403,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -7501,7 +7489,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -7532,7 +7520,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 1, "dirs_count": 0, "size_count": 1774, @@ -7622,7 +7610,7 @@ "end_line": 12 } ], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -7653,7 +7641,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 2, "dirs_count": 0, "size_count": 353, @@ -7739,7 +7727,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -7825,7 +7813,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -7856,7 +7844,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 1, "dirs_count": 0, "size_count": 649, @@ -7940,7 +7928,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -8024,7 +8012,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -8110,7 +8098,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -8196,7 +8184,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "files_count": 0, "dirs_count": 0, "size_count": 0, diff --git a/tests/summarycode/data/full_summary/summary_by_facet.expected.json b/tests/summarycode/data/full_summary/summary_by_facet.expected.json index a0fc6c61be1..c21ad42582a 100644 --- a/tests/summarycode/data/full_summary/summary_by_facet.expected.json +++ b/tests/summarycode/data/full_summary/summary_by_facet.expected.json @@ -32,3025 +32,3019 @@ } } ], - "summary": { - "license_expressions": [ - { - "value": "zlib", - "count": 12 - }, - { - "value": "lgpl-2.1-plus", - "count": 3 - }, - { - "value": "artistic-2.0", - "count": 1 - }, - { - "value": "boost-1.0", - "count": 1 - }, - { - "value": "cc-by-2.5", - "count": 1 - }, - { - "value": "cc0-1.0", - "count": 1 - }, - { - "value": "gpl-2.0-plus WITH ada-linking-exception", - "count": 1 - }, - { - "value": "mit-old-style", - "count": 1 - } - ], - "copyrights": [ - { - "value": null, - "count": 6 - }, - { - "value": "Copyright (c) Jean-loup Gailly", - "count": 4 - }, - { - "value": "Copyright (c) Mark Adler", - "count": 4 - }, - { - "value": "Copyright (c) Jean-loup Gailly and Mark Adler", - "count": 3 - }, - { - "value": "Copyright (c) Brian Goetz and Tim Peierls", - "count": 1 - }, - { - "value": "Copyright (c) Christian Michelsen Research AS Advanced Computing", - "count": 1 - }, - { - "value": "Copyright (c) Dmitriy Anisimkov", - "count": 1 - }, - { - "value": "Copyright (c) Jean-loup Gailly, Brian Raiter and Gilles Vollant", - "count": 1 - }, - { - "value": "Copyright (c) by Henrik Ravn", - "count": 1 - }, - { - "value": "Copyright Henrik Ravn", - "count": 1 - }, - { - "value": "Copyright JBoss Inc., and individual contributors", - "count": 1 - }, - { - "value": "Copyright Red Hat Middleware LLC, and individual contributors", - "count": 1 - }, - { - "value": "Copyright Red Hat, Inc. and individual contributors", - "count": 1 - } - ], - "holders": [ - { - "value": null, - "count": 6 - }, - { - "value": "Jean-loup Gailly", - "count": 4 - }, - { - "value": "Mark Adler", - "count": 4 - }, - { - "value": "Jean-loup Gailly and Mark Adler", - "count": 3 - }, - { - "value": "Henrik Ravn", - "count": 2 - }, - { - "value": "Brian Goetz and Tim Peierls", - "count": 1 - }, - { - "value": "Christian Michelsen Research AS Advanced Computing", - "count": 1 - }, - { - "value": "Dmitriy Anisimkov", - "count": 1 - }, - { - "value": "JBoss Inc., and individual contributors", - "count": 1 - }, - { - "value": "Jean-loup Gailly, Brian Raiter and Gilles Vollant", - "count": 1 - }, - { - "value": "Red Hat Middleware LLC, and individual contributors", - "count": 1 - }, - { - "value": "Red Hat, Inc. and individual contributors", - "count": 1 - } - ], - "authors": [ - { - "value": null, - "count": 20 - }, - { - "value": "Bela Ban", - "count": 4 - }, - { - "value": "Gilles Vollant", - "count": 1 - }, - { - "value": "name' Isaac Z.", - "count": 1 - } - ], - "programming_language": [ - { - "value": "C", - "count": 12 - }, - { - "value": "Java", - "count": 7 - }, - { - "value": "C#", - "count": 2 - }, - { - "value": "GAS", - "count": 1 - } - ], - "packages": [ - { - "type": "npm", - "namespace": null, - "name": "npm", - "version": "2.13.5", - "qualifiers": {}, - "subpath": null, - "primary_language": "JavaScript", - "description": "a package manager for JavaScript", - "release_date": null, - "parties": [ - { - "type": "person", - "role": "author", - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - { - "type": "person", - "role": "contributor", - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Steve Steiner", - "email": "ssteinerX@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Mikeal Rogers", - "email": "mikeal.rogers@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Aaron Blohowiak", - "email": "aaron.blohowiak@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Martyn Smith", - "email": "martyn@dollyfish.net.nz", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Charlie Robbins", - "email": "charlie.robbins@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Francisco Treacy", - "email": "francisco.treacy@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Cliffano Subagio", - "email": "cliffano@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Christian Eager", - "email": "christian.eager@nokia.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Dav Glass", - "email": "davglass@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Alex K. Wolfe", - "email": "alexkwolfe@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "James Sanders", - "email": "jimmyjazz14@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Reid Burke", - "email": "me@reidburke.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Arlo Breault", - "email": "arlolra@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Timo Derstappen", - "email": "teemow@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Bart Teeuwisse", - "email": "bart.teeuwisse@thecodemill.biz", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ben Noordhuis", - "email": "info@bnoordhuis.nl", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Tor Valamo", - "email": "tor.valamo@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Whyme.Lyu", - "email": "5longluna@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Olivier Melcher", - "email": "olivier.melcher@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Toma\u017e Muraus", - "email": "kami@k5-storitve.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Evan Meagher", - "email": "evan.meagher@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Orlando Vazquez", - "email": "ovazquez@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kai Chen", - "email": "kaichenxyz@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "George Miroshnykov", - "email": "gmiroshnykov@lohika.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Geoff Flarity", - "email": "geoff.flarity@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Max Goodman", - "email": "c@chromakode.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Pete Kruckenberg", - "email": "pete@kruckenberg.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Laurie Harper", - "email": "laurie@holoweb.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Chris Wong", - "email": "chris@chriswongstudio.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Scott Bronson", - "email": "brons_github@rinspin.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Federico Romero", - "email": "federomero@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Visnu Pitiyanuvath", - "email": "visnupx@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Irakli Gozalishvili", - "email": "rfobic@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Mark Cahill", - "email": "mark@tiemonster.info", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Tony", - "email": "zearin@gonk.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Iain Sproat", - "email": "iainsproat@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Trent Mick", - "email": "trentm@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Felix Geisendo\u0308rfer", - "email": "felix@debuggable.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jameson Little", - "email": "t.jameson.little@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Conny Brunnkvist", - "email": "conny@fuchsia.se", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Will Elwood", - "email": "w.elwood08@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Dean Landolt", - "email": "dean@deanlandolt.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Oleg Efimov", - "email": "efimovov@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Martin Cooper", - "email": "mfncooper@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jann Horn", - "email": "jannhorn@googlemail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Andrew Bradley", - "email": "cspotcode@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Maciej Ma\u0142ecki", - "email": "me@mmalecki.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Stephen Sugden", - "email": "glurgle@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Michael Budde", - "email": "mbudde@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jason Smith", - "email": "jhs@iriscouch.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Gautham Pai", - "email": "buzypi@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "David Trejo", - "email": "david.daniel.trejo@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Paul Vorbach", - "email": "paul@vorb.de", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "George Ornbo", - "email": "george@shapeshed.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Tim Oxley", - "email": "secoif@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Tyler Green", - "email": "tyler.green2@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Dave Pacheco", - "email": "dap@joyent.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Danila Gerasimov", - "email": "danila.gerasimov@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Rod Vagg", - "email": "rod@vagg.org", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Christian Howe", - "email": "coderarity@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Andrew Lunny", - "email": "alunny@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Henrik Hodne", - "email": "dvyjones@binaryhex.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Adam Blackburn", - "email": "regality@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kris Windham", - "email": "kriswindham@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jens Grunert", - "email": "jens.grunert@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Joost-Wim Boekesteijn", - "email": "joost-wim@boekesteijn.nl", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Dalmais Maxence", - "email": "root@ip-10-195-202-5.ec2.internal", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Marcus Ekwall", - "email": "marcus.ekwall@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Aaron Stacy", - "email": "aaron.r.stacy@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Phillip Howell", - "email": "phowell@cothm.org", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Domenic Denicola", - "email": "domenic@domenicdenicola.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "James Halliday", - "email": "mail@substack.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jeremy Cantrell", - "email": "jmcantrell@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ribettes", - "email": "patlogan29@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Don Park", - "email": "donpark@docuverse.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Einar Otto Stangvik", - "email": "einaros@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kei Son", - "email": "heyacct@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Nicolas Morel", - "email": "marsup@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Mark Dube", - "email": "markisdee@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Nathan Rajlich", - "email": "nathan@tootallnate.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Maxim Bogushevich", - "email": "boga1@mail.ru", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Meaglin", - "email": "Meaglin.wasabi@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ben Evans", - "email": "ben@bensbit.co.uk", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Nathan Zadoks", - "email": "nathan@nathan7.eu", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Brian White", - "email": "mscdex@mscdex.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jed Schmidt", - "email": "tr@nslator.jp", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ian Livingstone", - "email": "ianl@cs.dal.ca", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Patrick Pfeiffer", - "email": "patrick@buzzle.at", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Paul Miller", - "email": "paul@paulmillr.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ryan Emery", - "email": "seebees@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Carl Lange", - "email": "carl@flax.ie", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jan Lehnardt", - "email": "jan@apache.org", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Stuart P. Bentley", - "email": "stuart@testtrack4.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Johan Sk\u00f6ld", - "email": "johan@skold.cc", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Stuart Knightley", - "email": "stuart@stuartk.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Niggler", - "email": "nirk.niggler@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Paolo Fragomeni", - "email": "paolo@async.ly", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jaakko Manninen", - "email": "jaakko@rocketpack.fi", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Luke Arduini", - "email": "luke.arduini@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Larz Conwell", - "email": "larz@larz-laptop.(none)", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Marcel Klehr", - "email": "mklehr@gmx.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Robert Kowalski", - "email": "rok@kowalski.gd", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Forbes Lindesay", - "email": "forbes@lindesay.co.uk", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Vaz Allen", - "email": "vaz@tryptid.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jake Verbaten", - "email": "raynos2@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Schabse Laks", - "email": "Dev@SLaks.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Florian Margaine", - "email": "florian@margaine.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Johan Nordberg", - "email": "its@johan-nordberg.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ian Babrou", - "email": "ibobrik@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Di Wu", - "email": "dwu@palantir.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Mathias Bynens", - "email": "mathias@qiwi.be", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Matt McClure", - "email": "matt.mcclure@mapmyfitness.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Matt Lunn", - "email": "matt@mattlunn.me.uk", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Alexey Kreschuk", - "email": "akrsch@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "elisee", - "email": "elisee@sparklin.org", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Robert Gieseke", - "email": "robert.gieseke@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Franc\u0327ois Frisch", - "email": "francoisfrisch@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Trevor Burnham", - "email": "tburnham@hubspot.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Alan Shaw", - "email": "alan@freestyle-developments.co.uk", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Nicholas Kinsey", - "email": "pyro@feisty.io", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Paulo Cesar", - "email": "pauloc062@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Elan Shanker", - "email": "elan.shanker@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jon Spencer", - "email": "jon@jonspencer.ca", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jason Diamond", - "email": "jason@diamond.name", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Maximilian Antoni", - "email": "mail@maxantoni.de", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Thom Blake", - "email": "tblake@brightroll.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jess Martin", - "email": "jessmartin@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Spain Train", - "email": "michael.spainhower@opower.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Alex Rodionov", - "email": "p0deje@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Matt Colyer", - "email": "matt@colyer.name", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Evan You", - "email": "yyx990803@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "bitspill", - "email": "bitspill+github@bitspill.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Gabriel Falkenberg", - "email": "gabriel.falkenberg@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Alexej Yaroshevich", - "email": "alex@qfox.ru", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Quim Calpe", - "email": "quim@kalpe.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Steve Mason", - "email": "stevem@brandwatch.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Wil Moore III", - "email": "wil.moore@wilmoore.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Sergey Belov", - "email": "peimei@ya.ru", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Tom Huang", - "email": "hzlhu.dargon@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "CamilleM", - "email": "camille.moulin@alterway.fr", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "S\u00e9bastien Santoro", - "email": "dereckson@espace-win.org", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Evan Lucas", - "email": "evan@btc.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Quinn Slack", - "email": "qslack@qslack.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Alex Kocharin", - "email": "alex@kocharin.ru", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Daniel Santiago", - "email": "daniel.santiago@highlevelwebs.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Denis Gladkikh", - "email": "outcoldman@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Andrew Horton", - "email": "andrew.j.horton@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Zeke Sikelianos", - "email": "zeke@sikelianos.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Dylan Greene", - "email": "dylang@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Franck Cuny", - "email": "franck.cuny@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Yeonghoon Park", - "email": "sola92@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Rafael de Oleza", - "email": "rafa@spotify.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Mikola Lysenko", - "email": "mikolalysenko@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Yazhong Liu", - "email": "yorkiefixer@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Neil Gentleman", - "email": "ngentleman@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kris Kowal", - "email": "kris.kowal@cixar.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Alex Gorbatchev", - "email": "alex.gorbatchev@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Shawn Wildermuth", - "email": "shawn@wildermuth.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Wesley de Souza", - "email": "wesleywex@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "yoyoyogi", - "email": "yogesh.k@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "J. Tangelder", - "email": "j.tangelder@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jean Lauliac", - "email": "jean@lauliac.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Andrey Kislyuk", - "email": "kislyuk@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Thorsten Lorenz", - "email": "thlorenz@gmx.de", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Julian Gruber", - "email": "julian@juliangruber.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Benjamin Coe", - "email": "bencoe@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Alex Ford", - "email": "Alex.Ford@CodeTunnel.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Matt Hickford", - "email": "matt.hickford@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Sean McGivern", - "email": "sean.mcgivern@rightscale.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "C J Silverio", - "email": "ceejceej@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Robin Tweedie", - "email": "robin@songkick.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Miroslav Bajto\u0161", - "email": "miroslav@strongloop.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "David Glasser", - "email": "glasser@davidglasser.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Gianluca Casati", - "email": "casati_gianluca@yahoo.it", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Forrest L Norvell", - "email": "ogd@aoaioxxysz.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Karsten Tinnefeld", - "email": "k.tinnefeld@googlemail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Bryan Burgers", - "email": "bryan@burgers.io", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "David Beitey", - "email": "david@davidjb.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Evan You", - "email": "yyou@google.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Zach Pomerantz", - "email": "zmp@umich.edu", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Chris Williams", - "email": "cwilliams88@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "sudodoki", - "email": "smd.deluzion@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Mick Thompson", - "email": "dthompson@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Felix Rabe", - "email": "felix@rabe.io", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Michael Hayes", - "email": "michael@hayes.io", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Chris Dickinson", - "email": "christopher.s.dickinson@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Bradley Meck", - "email": "bradley.meck@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "GeJ", - "email": "geraud@gcu.info", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Andrew Terris", - "email": "atterris@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Michael Nisi", - "email": "michael.nisi@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "fengmk2", - "email": "fengmk2@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Adam Meadows", - "email": "adam.meadows@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Chulki Lee", - "email": "chulki.lee@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "\u4e0d\u56db", - "email": "busi.hyy@taobao.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "dead_horse", - "email": "dead_horse@qq.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kenan Yildirim", - "email": "kenan@kenany.me", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Laurie Voss", - "email": "git@seldo.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Rebecca Turner", - "email": "me@re-becca.org", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Hunter Loftis", - "email": "hunter@hunterloftis.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Peter Richardson", - "email": "github@zoomy.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jussi Kalliokoski", - "email": "jussi.kalliokoski@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Filip Weiss", - "email": "me@fiws.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Timo Wei\u00df", - "email": "timoweiss@Timo-MBP.local", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Christopher Hiller", - "email": "chiller@badwing.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "J\u00e9r\u00e9my Lal", - "email": "kapouer@melix.org", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Anders Janmyr", - "email": "anders@janmyr.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Chris Meyers", - "email": "chris.meyers.fsu@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ludwig Magnusson", - "email": "ludwig@mediatool.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Wout Mertens", - "email": "Wout.Mertens@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Nick Santos", - "email": "nick@medium.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Terin Stock", - "email": "terinjokes@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Faiq Raza", - "email": "faiqrazarizvi@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Thomas Torp", - "email": "thomas@erupt.no", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Sam Mikes", - "email": "smikes@cubane.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Mat Tyndall", - "email": "mat.tyndall@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Tauren Mills", - "email": "tauren@sportzing.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ron Martinez", - "email": "ramartin.net@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kazuhito Hokamura", - "email": "k.hokamura@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Tristan Davies", - "email": "github@tristan.io", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "David Volm", - "email": "david@volminator.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Lin Clark", - "email": "lin.w.clark@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ben Page", - "email": "bpage@dewalch.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jeff Jo", - "email": "jeffjo@squareup.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "martinvd", - "email": "martinvdpub@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Mark J. Titorenko", - "email": "nospam-github.aaakk.us.kg@titorenko.net", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Oddur Sigurdsson", - "email": "oddurs@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Eric Mill", - "email": "eric@konklone.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Gabriel Barros", - "email": "descartavel1@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "KevinSheedy", - "email": "kevinsheedy@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Aleksey Smolenchuk", - "email": "aleksey@uber.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ed Morley", - "email": "emorley@mozilla.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Blaine Bublitz", - "email": "blaine@iceddev.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Andrey Fedorov", - "email": "anfedorov@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Daijiro Wachi", - "email": "daijiro.wachi@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Luc Thevenard", - "email": "lucthevenard@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Aria Stewart", - "email": "aredridel@nbtsc.org", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Charlie Rudolph", - "email": "charles.w.rudolph@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Vladimir Rutsky", - "email": "rutsky@users.noreply.github.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Isaac Murchie", - "email": "isaac@saucelabs.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Marcin Wosinek", - "email": "marcin.wosinek@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "David Marr", - "email": "davemarr@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Bryan English", - "email": "bryan@bryanenglish.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Anthony Zotti", - "email": "amZotti@users.noreply.github.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Karl Horky", - "email": "karl.horky@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jordan Harband", - "email": "ljharb@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Gu\u00f0laugur Stef\u00e1n Egilsson", - "email": "gulli@kolibri.is", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Helge Skogly Holm", - "email": "helge.holm@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Peter A. Shevtsov", - "email": "petr.shevtsov@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Alain Kalker", - "email": "a.c.kalker@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Bryant Williams", - "email": "b.n.williams@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jonas Weber", - "email": "github@jonasw.de", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Tim Whidden", - "email": "twhid@twhid.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Andreas", - "email": "functino@users.noreply.github.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Karolis Narkevicius", - "email": "karolis.n@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Adrian Lynch", - "email": "adi_ady_ade@hotmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Richard Littauer", - "email": "richard.littauer@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Oli Evans", - "email": "oli@zilla.org.uk", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Matt Brennan", - "email": "mattyb1000@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jeff Barczewski", - "email": "jeff.barczewski@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Danny Fritz", - "email": "dannyfritz@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Takaya Kobayashi", - "email": "jigsaw@live.jp", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ra'Shaun Stovall", - "email": "rashaunstovall@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Julien Meddah", - "email": "julien.meddah@deveryware.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Michiel Sikma", - "email": "michiel@wedemandhtml.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jakob Krigovsky", - "email": "jakob.krigovsky@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Charmander", - "email": "~@charmander.me", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Erik Wienhold", - "email": "git@ewie.name", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "James Butler", - "email": "james.butler@sandfox.co.uk", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kevin Kragenbrink", - "email": "kevin@gaikai.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Arnaud Rinquin", - "email": "rinquin.arnaud@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Mike MacCana", - "email": "mike.maccana@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Antti Mattila", - "email": "anttti@fastmail.fm", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "laiso", - "email": "laiso@lai.so", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Matt Zorn", - "email": "zornme@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kyle Mitchell", - "email": "kyle@kemitchell.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Jeremiah Senkpiel", - "email": "fishrock123@rocketmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Michael Klein", - "email": "mischkl@users.noreply.github.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Simen Bekkhus", - "email": "sbekkhus91@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Victor", - "email": "victor.shih@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "thefourtheye", - "email": "thechargingvolcano@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Clay Carpenter", - "email": "claycarpenter@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "bangbang93", - "email": "bangbang93@163.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Nick Malaguti", - "email": "nmalaguti@palantir.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Cedric Nelson", - "email": "cedric.nelson@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kat March\u00e1n", - "email": "kzm@sykosomatic.org", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Andrew", - "email": "talktome@aboutandrew.co.uk", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Eduardo Pinho", - "email": "enet4mikeenet@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Rachel Hutchison", - "email": "rhutchix@intel.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Ryan Temple", - "email": "ryantemple145@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Eugene Sharygin", - "email": "eush77@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Nick Heiner", - "email": "nick.heiner@opower.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "James Talmage", - "email": "james@talmage.io", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "jane arc", - "email": "jane@uber.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Joseph Dykstra", - "email": "josephdykstra@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Joshua Egan", - "email": "josh-egan@users.noreply.github.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Thomas Cort", - "email": "thomasc@ssimicro.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Thaddee Tyl", - "email": "thaddee.tyl@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Steve Klabnik", - "email": "steve@steveklabnik.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Andrew Murray", - "email": "radarhere@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Stephan B\u00f6nnemann", - "email": "stephan@excellenteasy.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Kyle M. Tarplee", - "email": "kyle.tarplee@numerica.us", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Derek Peterson", - "email": "derekpetey@gmail.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "Greg Whiteley", - "email": "greg.whiteley@atomos.com", - "url": null - }, - { - "type": "person", - "role": "contributor", - "name": "murgatroid99", - "email": "mlumish@google.com", - "url": null - }, - { - "type": "person", - "role": "maintainer", - "name": "isaacs", - "email": "isaacs@npmjs.com", - "url": null - }, - { - "type": "person", - "role": "maintainer", - "name": "othiym23", - "email": "ogd@aoaioxxysz.net", - "url": null - }, - { - "type": "person", - "role": "maintainer", - "name": "iarna", - "email": "me@re-becca.org", - "url": null - }, - { - "type": "person", - "role": "maintainer", - "name": "zkat", - "email": "kat@sykosomatic.org", - "url": null - } - ], - "keywords": [ - "package manager", - "modules", - "install", - "package.json" - ], - "homepage_url": "https://docs.npmjs.com/", - "download_url": "https://registry.npmjs.org/npm/-/npm-2.13.5.tgz", - "size": null, - "sha1": "a124386bce4a90506f28ad4b1d1a804a17baaf32", - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": "http://github.com/npm/npm/issues", - "code_view_url": null, - "vcs_url": "git+https://github.com/npm/npm.git@fc7bbf03e39cc48a8924b90696d28345a6a90f3c", - "copyright": null, - "license_expression": "artistic-2.0", - "declared_license": [ - "Artistic-2.0" - ], - "notice_text": null, - "root_path": "scan", - "dependencies": [ - { - "purl": "pkg:npm/abbrev", - "requirement": "~1.0.7", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/ansi", - "requirement": "~0.3.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/ansicolors", - "requirement": "~0.3.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/ansistyles", - "requirement": "~0.1.3", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/archy", - "requirement": "~1.0.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/async-some", - "requirement": "~1.0.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/block-stream", - "requirement": "0.0.8", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/char-spinner", - "requirement": "~1.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/chmodr", - "requirement": "~1.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/chownr", - "requirement": "0.0.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/cmd-shim", - "requirement": "~2.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/columnify", - "requirement": "~1.5.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/config-chain", - "requirement": "~1.1.9", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/dezalgo", - "requirement": "~1.0.3", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/editor", - "requirement": "~1.0.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/fs-vacuum", - "requirement": "~1.2.6", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/fs-write-stream-atomic", - "requirement": "~1.0.3", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/fstream", - "requirement": "~1.0.7", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/fstream-npm", - "requirement": "~1.0.4", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/github-url-from-git", - "requirement": "~1.4.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/github-url-from-username-repo", - "requirement": "~1.0.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/glob", - "requirement": "~5.0.14", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/graceful-fs", - "requirement": "~4.1.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/hosted-git-info", - "requirement": "~2.1.4", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/inflight", - "requirement": "~1.0.4", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/inherits", - "requirement": "~2.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/ini", - "requirement": "~1.3.4", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/init-package-json", - "requirement": "~1.7.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/lockfile", - "requirement": "~1.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/lru-cache", - "requirement": "~2.6.5", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/minimatch", - "requirement": "~2.0.10", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/mkdirp", - "requirement": "~0.5.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/node-gyp", - "requirement": "~2.0.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/nopt", - "requirement": "~3.0.3", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/normalize-git-url", - "requirement": "~3.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/normalize-package-data", - "requirement": "~2.3.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/npm-cache-filename", - "requirement": "~1.0.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/npm-install-checks", - "requirement": "~1.0.6", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/npm-package-arg", - "requirement": "~4.0.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/npm-registry-client", - "requirement": "~6.5.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/npm-user-validate", - "requirement": "~0.1.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/npmlog", - "requirement": "~1.2.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/once", - "requirement": "~1.3.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/opener", - "requirement": "~1.4.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/osenv", - "requirement": "~0.1.3", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/path-is-inside", - "requirement": "~1.0.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/read", - "requirement": "~1.0.6", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/read-installed", - "requirement": "~4.0.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/read-package-json", - "requirement": "~2.0.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/readable-stream", - "requirement": "~1.1.13", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/realize-package-specifier", - "requirement": "~3.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/request", - "requirement": "~2.60.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/retry", - "requirement": "~0.6.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/rimraf", - "requirement": "~2.4.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/semver", - "requirement": "~5.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/sha", - "requirement": "~1.3.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/slide", - "requirement": "~1.1.6", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/sorted-object", - "requirement": "~1.0.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/spdx", - "requirement": "~0.4.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/tar", - "requirement": "~2.1.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/text-table", - "requirement": "~0.2.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/uid-number", - "requirement": "0.0.6", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/umask", - "requirement": "~1.1.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/validate-npm-package-name", - "requirement": "~2.2.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/which", - "requirement": "~1.1.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/wrappy", - "requirement": "~1.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/write-file-atomic", - "requirement": "~1.1.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/validate-npm-package-license", - "requirement": "*", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/deep-equal", - "requirement": "~1.0.0", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/marked", - "requirement": "~0.3.3", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/marked-man", - "requirement": "~0.1.5", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/nock", - "requirement": "~2.10.0", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/npm-registry-couchapp", - "requirement": "~2.6.7", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/npm-registry-mock", - "requirement": "~1.0.0", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/require-inject", - "requirement": "~1.2.0", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/sprintf-js", - "requirement": "~1.0.2", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/tap", - "requirement": "~1.3.1", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - } - ], - "contains_source_code": null, - "source_packages": [], - "extra_data": {}, - "purl": "pkg:npm/npm@2.13.5", - "repository_homepage_url": "https://www.npmjs.com/package/npm", - "repository_download_url": "https://registry.npmjs.org/npm/-/npm-2.13.5.tgz", - "api_data_url": "https://registry.npmjs.org/npm/2.13.5", - "files": [ - { - "path": "scan/package.json", - "type": "file" - } - ] + "packages": [ + { + "type": "npm", + "namespace": null, + "name": "npm", + "version": "2.13.5", + "qualifiers": {}, + "subpath": null, + "primary_language": "JavaScript", + "description": "a package manager for JavaScript", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me" + }, + { + "type": "person", + "role": "contributor", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Steve Steiner", + "email": "ssteinerX@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Aaron Blohowiak", + "email": "aaron.blohowiak@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Martyn Smith", + "email": "martyn@dollyfish.net.nz", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Francisco Treacy", + "email": "francisco.treacy@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Cliffano Subagio", + "email": "cliffano@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Christian Eager", + "email": "christian.eager@nokia.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Dav Glass", + "email": "davglass@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alex K. Wolfe", + "email": "alexkwolfe@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "James Sanders", + "email": "jimmyjazz14@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Reid Burke", + "email": "me@reidburke.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Arlo Breault", + "email": "arlolra@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Timo Derstappen", + "email": "teemow@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Bart Teeuwisse", + "email": "bart.teeuwisse@thecodemill.biz", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ben Noordhuis", + "email": "info@bnoordhuis.nl", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tor Valamo", + "email": "tor.valamo@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Whyme.Lyu", + "email": "5longluna@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Olivier Melcher", + "email": "olivier.melcher@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Toma\u017e Muraus", + "email": "kami@k5-storitve.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Evan Meagher", + "email": "evan.meagher@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Orlando Vazquez", + "email": "ovazquez@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kai Chen", + "email": "kaichenxyz@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "George Miroshnykov", + "email": "gmiroshnykov@lohika.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Geoff Flarity", + "email": "geoff.flarity@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Max Goodman", + "email": "c@chromakode.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Pete Kruckenberg", + "email": "pete@kruckenberg.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Laurie Harper", + "email": "laurie@holoweb.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Chris Wong", + "email": "chris@chriswongstudio.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Scott Bronson", + "email": "brons_github@rinspin.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Federico Romero", + "email": "federomero@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Visnu Pitiyanuvath", + "email": "visnupx@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mark Cahill", + "email": "mark@tiemonster.info", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tony", + "email": "zearin@gonk.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Iain Sproat", + "email": "iainsproat@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Trent Mick", + "email": "trentm@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Felix Geisendo\u0308rfer", + "email": "felix@debuggable.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jameson Little", + "email": "t.jameson.little@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Conny Brunnkvist", + "email": "conny@fuchsia.se", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Will Elwood", + "email": "w.elwood08@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Dean Landolt", + "email": "dean@deanlandolt.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Oleg Efimov", + "email": "efimovov@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Martin Cooper", + "email": "mfncooper@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jann Horn", + "email": "jannhorn@googlemail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrew Bradley", + "email": "cspotcode@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Maciej Ma\u0142ecki", + "email": "me@mmalecki.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Stephen Sugden", + "email": "glurgle@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Michael Budde", + "email": "mbudde@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jason Smith", + "email": "jhs@iriscouch.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Gautham Pai", + "email": "buzypi@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "David Trejo", + "email": "david.daniel.trejo@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "George Ornbo", + "email": "george@shapeshed.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tim Oxley", + "email": "secoif@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tyler Green", + "email": "tyler.green2@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Dave Pacheco", + "email": "dap@joyent.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Danila Gerasimov", + "email": "danila.gerasimov@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Rod Vagg", + "email": "rod@vagg.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Christian Howe", + "email": "coderarity@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrew Lunny", + "email": "alunny@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Henrik Hodne", + "email": "dvyjones@binaryhex.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Adam Blackburn", + "email": "regality@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kris Windham", + "email": "kriswindham@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jens Grunert", + "email": "jens.grunert@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Joost-Wim Boekesteijn", + "email": "joost-wim@boekesteijn.nl", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Dalmais Maxence", + "email": "root@ip-10-195-202-5.ec2.internal", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Marcus Ekwall", + "email": "marcus.ekwall@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Aaron Stacy", + "email": "aaron.r.stacy@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Phillip Howell", + "email": "phowell@cothm.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Domenic Denicola", + "email": "domenic@domenicdenicola.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "James Halliday", + "email": "mail@substack.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jeremy Cantrell", + "email": "jmcantrell@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ribettes", + "email": "patlogan29@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Don Park", + "email": "donpark@docuverse.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Einar Otto Stangvik", + "email": "einaros@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kei Son", + "email": "heyacct@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nicolas Morel", + "email": "marsup@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mark Dube", + "email": "markisdee@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Maxim Bogushevich", + "email": "boga1@mail.ru", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Meaglin", + "email": "Meaglin.wasabi@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ben Evans", + "email": "ben@bensbit.co.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nathan Zadoks", + "email": "nathan@nathan7.eu", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Brian White", + "email": "mscdex@mscdex.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jed Schmidt", + "email": "tr@nslator.jp", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ian Livingstone", + "email": "ianl@cs.dal.ca", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Patrick Pfeiffer", + "email": "patrick@buzzle.at", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Paul Miller", + "email": "paul@paulmillr.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ryan Emery", + "email": "seebees@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Carl Lange", + "email": "carl@flax.ie", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jan Lehnardt", + "email": "jan@apache.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Stuart P. Bentley", + "email": "stuart@testtrack4.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Johan Sk\u00f6ld", + "email": "johan@skold.cc", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Stuart Knightley", + "email": "stuart@stuartk.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Niggler", + "email": "nirk.niggler@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Paolo Fragomeni", + "email": "paolo@async.ly", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jaakko Manninen", + "email": "jaakko@rocketpack.fi", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Luke Arduini", + "email": "luke.arduini@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Larz Conwell", + "email": "larz@larz-laptop.(none)", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Marcel Klehr", + "email": "mklehr@gmx.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Robert Kowalski", + "email": "rok@kowalski.gd", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Forbes Lindesay", + "email": "forbes@lindesay.co.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Vaz Allen", + "email": "vaz@tryptid.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jake Verbaten", + "email": "raynos2@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Schabse Laks", + "email": "Dev@SLaks.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Florian Margaine", + "email": "florian@margaine.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Johan Nordberg", + "email": "its@johan-nordberg.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ian Babrou", + "email": "ibobrik@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Di Wu", + "email": "dwu@palantir.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mathias Bynens", + "email": "mathias@qiwi.be", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Matt McClure", + "email": "matt.mcclure@mapmyfitness.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Matt Lunn", + "email": "matt@mattlunn.me.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alexey Kreschuk", + "email": "akrsch@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "elisee", + "email": "elisee@sparklin.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Robert Gieseke", + "email": "robert.gieseke@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Franc\u0327ois Frisch", + "email": "francoisfrisch@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Trevor Burnham", + "email": "tburnham@hubspot.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alan Shaw", + "email": "alan@freestyle-developments.co.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nicholas Kinsey", + "email": "pyro@feisty.io", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Paulo Cesar", + "email": "pauloc062@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Elan Shanker", + "email": "elan.shanker@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jon Spencer", + "email": "jon@jonspencer.ca", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jason Diamond", + "email": "jason@diamond.name", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Maximilian Antoni", + "email": "mail@maxantoni.de", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Thom Blake", + "email": "tblake@brightroll.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jess Martin", + "email": "jessmartin@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Spain Train", + "email": "michael.spainhower@opower.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alex Rodionov", + "email": "p0deje@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Matt Colyer", + "email": "matt@colyer.name", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Evan You", + "email": "yyx990803@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "bitspill", + "email": "bitspill+github@bitspill.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Gabriel Falkenberg", + "email": "gabriel.falkenberg@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alexej Yaroshevich", + "email": "alex@qfox.ru", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Quim Calpe", + "email": "quim@kalpe.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Steve Mason", + "email": "stevem@brandwatch.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Wil Moore III", + "email": "wil.moore@wilmoore.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Sergey Belov", + "email": "peimei@ya.ru", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tom Huang", + "email": "hzlhu.dargon@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "CamilleM", + "email": "camille.moulin@alterway.fr", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "S\u00e9bastien Santoro", + "email": "dereckson@espace-win.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Evan Lucas", + "email": "evan@btc.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Quinn Slack", + "email": "qslack@qslack.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alex Kocharin", + "email": "alex@kocharin.ru", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Daniel Santiago", + "email": "daniel.santiago@highlevelwebs.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Denis Gladkikh", + "email": "outcoldman@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrew Horton", + "email": "andrew.j.horton@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Zeke Sikelianos", + "email": "zeke@sikelianos.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Dylan Greene", + "email": "dylang@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Franck Cuny", + "email": "franck.cuny@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Yeonghoon Park", + "email": "sola92@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Rafael de Oleza", + "email": "rafa@spotify.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mikola Lysenko", + "email": "mikolalysenko@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Yazhong Liu", + "email": "yorkiefixer@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Neil Gentleman", + "email": "ngentleman@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kris Kowal", + "email": "kris.kowal@cixar.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alex Gorbatchev", + "email": "alex.gorbatchev@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Shawn Wildermuth", + "email": "shawn@wildermuth.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Wesley de Souza", + "email": "wesleywex@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "yoyoyogi", + "email": "yogesh.k@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "J. Tangelder", + "email": "j.tangelder@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jean Lauliac", + "email": "jean@lauliac.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrey Kislyuk", + "email": "kislyuk@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Thorsten Lorenz", + "email": "thlorenz@gmx.de", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Julian Gruber", + "email": "julian@juliangruber.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Benjamin Coe", + "email": "bencoe@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alex Ford", + "email": "Alex.Ford@CodeTunnel.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Matt Hickford", + "email": "matt.hickford@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Sean McGivern", + "email": "sean.mcgivern@rightscale.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "C J Silverio", + "email": "ceejceej@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Robin Tweedie", + "email": "robin@songkick.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Miroslav Bajto\u0161", + "email": "miroslav@strongloop.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "David Glasser", + "email": "glasser@davidglasser.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Gianluca Casati", + "email": "casati_gianluca@yahoo.it", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Forrest L Norvell", + "email": "ogd@aoaioxxysz.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Karsten Tinnefeld", + "email": "k.tinnefeld@googlemail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Bryan Burgers", + "email": "bryan@burgers.io", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "David Beitey", + "email": "david@davidjb.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Evan You", + "email": "yyou@google.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Zach Pomerantz", + "email": "zmp@umich.edu", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Chris Williams", + "email": "cwilliams88@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "sudodoki", + "email": "smd.deluzion@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mick Thompson", + "email": "dthompson@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Felix Rabe", + "email": "felix@rabe.io", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Michael Hayes", + "email": "michael@hayes.io", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Chris Dickinson", + "email": "christopher.s.dickinson@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Bradley Meck", + "email": "bradley.meck@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "GeJ", + "email": "geraud@gcu.info", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrew Terris", + "email": "atterris@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Michael Nisi", + "email": "michael.nisi@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "fengmk2", + "email": "fengmk2@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Adam Meadows", + "email": "adam.meadows@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Chulki Lee", + "email": "chulki.lee@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "\u4e0d\u56db", + "email": "busi.hyy@taobao.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "dead_horse", + "email": "dead_horse@qq.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kenan Yildirim", + "email": "kenan@kenany.me", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Laurie Voss", + "email": "git@seldo.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Rebecca Turner", + "email": "me@re-becca.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Hunter Loftis", + "email": "hunter@hunterloftis.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Peter Richardson", + "email": "github@zoomy.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jussi Kalliokoski", + "email": "jussi.kalliokoski@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Filip Weiss", + "email": "me@fiws.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Timo Wei\u00df", + "email": "timoweiss@Timo-MBP.local", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Christopher Hiller", + "email": "chiller@badwing.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "J\u00e9r\u00e9my Lal", + "email": "kapouer@melix.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Anders Janmyr", + "email": "anders@janmyr.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Chris Meyers", + "email": "chris.meyers.fsu@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ludwig Magnusson", + "email": "ludwig@mediatool.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Wout Mertens", + "email": "Wout.Mertens@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nick Santos", + "email": "nick@medium.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Terin Stock", + "email": "terinjokes@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Faiq Raza", + "email": "faiqrazarizvi@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Thomas Torp", + "email": "thomas@erupt.no", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Sam Mikes", + "email": "smikes@cubane.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mat Tyndall", + "email": "mat.tyndall@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tauren Mills", + "email": "tauren@sportzing.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ron Martinez", + "email": "ramartin.net@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kazuhito Hokamura", + "email": "k.hokamura@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tristan Davies", + "email": "github@tristan.io", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "David Volm", + "email": "david@volminator.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Lin Clark", + "email": "lin.w.clark@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ben Page", + "email": "bpage@dewalch.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jeff Jo", + "email": "jeffjo@squareup.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "martinvd", + "email": "martinvdpub@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mark J. Titorenko", + "email": "nospam-github.aaakk.us.kg@titorenko.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Oddur Sigurdsson", + "email": "oddurs@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Eric Mill", + "email": "eric@konklone.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Gabriel Barros", + "email": "descartavel1@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "KevinSheedy", + "email": "kevinsheedy@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Aleksey Smolenchuk", + "email": "aleksey@uber.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ed Morley", + "email": "emorley@mozilla.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Blaine Bublitz", + "email": "blaine@iceddev.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrey Fedorov", + "email": "anfedorov@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Daijiro Wachi", + "email": "daijiro.wachi@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Luc Thevenard", + "email": "lucthevenard@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Aria Stewart", + "email": "aredridel@nbtsc.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Charlie Rudolph", + "email": "charles.w.rudolph@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Vladimir Rutsky", + "email": "rutsky@users.noreply.github.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Isaac Murchie", + "email": "isaac@saucelabs.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Marcin Wosinek", + "email": "marcin.wosinek@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "David Marr", + "email": "davemarr@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Bryan English", + "email": "bryan@bryanenglish.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Anthony Zotti", + "email": "amZotti@users.noreply.github.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Karl Horky", + "email": "karl.horky@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Gu\u00f0laugur Stef\u00e1n Egilsson", + "email": "gulli@kolibri.is", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Helge Skogly Holm", + "email": "helge.holm@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Peter A. Shevtsov", + "email": "petr.shevtsov@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alain Kalker", + "email": "a.c.kalker@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Bryant Williams", + "email": "b.n.williams@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jonas Weber", + "email": "github@jonasw.de", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tim Whidden", + "email": "twhid@twhid.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andreas", + "email": "functino@users.noreply.github.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Karolis Narkevicius", + "email": "karolis.n@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Adrian Lynch", + "email": "adi_ady_ade@hotmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Richard Littauer", + "email": "richard.littauer@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Oli Evans", + "email": "oli@zilla.org.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Matt Brennan", + "email": "mattyb1000@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jeff Barczewski", + "email": "jeff.barczewski@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Danny Fritz", + "email": "dannyfritz@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Takaya Kobayashi", + "email": "jigsaw@live.jp", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ra'Shaun Stovall", + "email": "rashaunstovall@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Julien Meddah", + "email": "julien.meddah@deveryware.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Michiel Sikma", + "email": "michiel@wedemandhtml.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jakob Krigovsky", + "email": "jakob.krigovsky@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Charmander", + "email": "~@charmander.me", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Erik Wienhold", + "email": "git@ewie.name", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "James Butler", + "email": "james.butler@sandfox.co.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kevin Kragenbrink", + "email": "kevin@gaikai.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Arnaud Rinquin", + "email": "rinquin.arnaud@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mike MacCana", + "email": "mike.maccana@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Antti Mattila", + "email": "anttti@fastmail.fm", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "laiso", + "email": "laiso@lai.so", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Matt Zorn", + "email": "zornme@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kyle Mitchell", + "email": "kyle@kemitchell.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jeremiah Senkpiel", + "email": "fishrock123@rocketmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Michael Klein", + "email": "mischkl@users.noreply.github.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Simen Bekkhus", + "email": "sbekkhus91@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Victor", + "email": "victor.shih@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "thefourtheye", + "email": "thechargingvolcano@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Clay Carpenter", + "email": "claycarpenter@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "bangbang93", + "email": "bangbang93@163.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nick Malaguti", + "email": "nmalaguti@palantir.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Cedric Nelson", + "email": "cedric.nelson@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kat March\u00e1n", + "email": "kzm@sykosomatic.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrew", + "email": "talktome@aboutandrew.co.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Eduardo Pinho", + "email": "enet4mikeenet@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Rachel Hutchison", + "email": "rhutchix@intel.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ryan Temple", + "email": "ryantemple145@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Eugene Sharygin", + "email": "eush77@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nick Heiner", + "email": "nick.heiner@opower.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "James Talmage", + "email": "james@talmage.io", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "jane arc", + "email": "jane@uber.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Joseph Dykstra", + "email": "josephdykstra@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Joshua Egan", + "email": "josh-egan@users.noreply.github.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Thomas Cort", + "email": "thomasc@ssimicro.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Thaddee Tyl", + "email": "thaddee.tyl@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Steve Klabnik", + "email": "steve@steveklabnik.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrew Murray", + "email": "radarhere@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Stephan B\u00f6nnemann", + "email": "stephan@excellenteasy.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kyle M. Tarplee", + "email": "kyle.tarplee@numerica.us", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Derek Peterson", + "email": "derekpetey@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Greg Whiteley", + "email": "greg.whiteley@atomos.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "murgatroid99", + "email": "mlumish@google.com", + "url": null + }, + { + "type": "person", + "role": "maintainer", + "name": "isaacs", + "email": "isaacs@npmjs.com", + "url": null + }, + { + "type": "person", + "role": "maintainer", + "name": "othiym23", + "email": "ogd@aoaioxxysz.net", + "url": null + }, + { + "type": "person", + "role": "maintainer", + "name": "iarna", + "email": "me@re-becca.org", + "url": null + }, + { + "type": "person", + "role": "maintainer", + "name": "zkat", + "email": "kat@sykosomatic.org", + "url": null + } + ], + "keywords": [ + "package manager", + "modules", + "install", + "package.json" + ], + "homepage_url": "https://docs.npmjs.com/", + "download_url": "https://registry.npmjs.org/npm/-/npm-2.13.5.tgz", + "size": null, + "sha1": "a124386bce4a90506f28ad4b1d1a804a17baaf32", + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "http://github.com/npm/npm/issues", + "code_view_url": null, + "vcs_url": "git+https://github.com/npm/npm.git@fc7bbf03e39cc48a8924b90696d28345a6a90f3c", + "copyright": null, + "license_expression": "artistic-2.0", + "declared_license": [ + "Artistic-2.0" + ], + "notice_text": null, + "root_path": "scan", + "dependencies": [ + { + "purl": "pkg:npm/abbrev", + "requirement": "~1.0.7", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/ansi", + "requirement": "~0.3.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/ansicolors", + "requirement": "~0.3.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/ansistyles", + "requirement": "~0.1.3", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/archy", + "requirement": "~1.0.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/async-some", + "requirement": "~1.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/block-stream", + "requirement": "0.0.8", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/char-spinner", + "requirement": "~1.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/chmodr", + "requirement": "~1.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/chownr", + "requirement": "0.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/cmd-shim", + "requirement": "~2.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/columnify", + "requirement": "~1.5.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/config-chain", + "requirement": "~1.1.9", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/dezalgo", + "requirement": "~1.0.3", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/editor", + "requirement": "~1.0.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/fs-vacuum", + "requirement": "~1.2.6", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/fs-write-stream-atomic", + "requirement": "~1.0.3", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/fstream", + "requirement": "~1.0.7", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/fstream-npm", + "requirement": "~1.0.4", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/github-url-from-git", + "requirement": "~1.4.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/github-url-from-username-repo", + "requirement": "~1.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/glob", + "requirement": "~5.0.14", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/graceful-fs", + "requirement": "~4.1.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/hosted-git-info", + "requirement": "~2.1.4", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/inflight", + "requirement": "~1.0.4", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/inherits", + "requirement": "~2.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/ini", + "requirement": "~1.3.4", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/init-package-json", + "requirement": "~1.7.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/lockfile", + "requirement": "~1.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/lru-cache", + "requirement": "~2.6.5", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/minimatch", + "requirement": "~2.0.10", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/mkdirp", + "requirement": "~0.5.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/node-gyp", + "requirement": "~2.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/nopt", + "requirement": "~3.0.3", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/normalize-git-url", + "requirement": "~3.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/normalize-package-data", + "requirement": "~2.3.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-cache-filename", + "requirement": "~1.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-install-checks", + "requirement": "~1.0.6", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-package-arg", + "requirement": "~4.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-registry-client", + "requirement": "~6.5.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-user-validate", + "requirement": "~0.1.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/npmlog", + "requirement": "~1.2.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/once", + "requirement": "~1.3.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/opener", + "requirement": "~1.4.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/osenv", + "requirement": "~0.1.3", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/path-is-inside", + "requirement": "~1.0.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/read", + "requirement": "~1.0.6", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/read-installed", + "requirement": "~4.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/read-package-json", + "requirement": "~2.0.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/readable-stream", + "requirement": "~1.1.13", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/realize-package-specifier", + "requirement": "~3.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/request", + "requirement": "~2.60.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/retry", + "requirement": "~0.6.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/rimraf", + "requirement": "~2.4.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/semver", + "requirement": "~5.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/sha", + "requirement": "~1.3.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/slide", + "requirement": "~1.1.6", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/sorted-object", + "requirement": "~1.0.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/spdx", + "requirement": "~0.4.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/tar", + "requirement": "~2.1.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/text-table", + "requirement": "~0.2.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/uid-number", + "requirement": "0.0.6", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/umask", + "requirement": "~1.1.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/validate-npm-package-name", + "requirement": "~2.2.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/which", + "requirement": "~1.1.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/wrappy", + "requirement": "~1.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/write-file-atomic", + "requirement": "~1.1.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/validate-npm-package-license", + "requirement": "*", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/deep-equal", + "requirement": "~1.0.0", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/marked", + "requirement": "~0.3.3", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/marked-man", + "requirement": "~0.1.5", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/nock", + "requirement": "~2.10.0", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-registry-couchapp", + "requirement": "~2.6.7", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-registry-mock", + "requirement": "~1.0.0", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/require-inject", + "requirement": "~1.2.0", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/sprintf-js", + "requirement": "~1.0.2", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/tap", + "requirement": "~1.3.1", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + } + ], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:npm/npm@2.13.5", + "repository_homepage_url": "https://www.npmjs.com/package/npm", + "repository_download_url": "https://registry.npmjs.org/npm/-/npm-2.13.5.tgz", + "api_data_url": "https://registry.npmjs.org/npm/2.13.5" + } + ], + "summary": { + "license_expressions": [ + { + "value": "zlib", + "count": 12 + }, + { + "value": "lgpl-2.1-plus", + "count": 3 + }, + { + "value": "artistic-2.0", + "count": 1 + }, + { + "value": "boost-1.0", + "count": 1 + }, + { + "value": "cc-by-2.5", + "count": 1 + }, + { + "value": "cc0-1.0", + "count": 1 + }, + { + "value": "gpl-2.0-plus WITH ada-linking-exception", + "count": 1 + }, + { + "value": "mit-old-style", + "count": 1 + } + ], + "copyrights": [ + { + "value": null, + "count": 6 + }, + { + "value": "Copyright (c) Jean-loup Gailly", + "count": 4 + }, + { + "value": "Copyright (c) Mark Adler", + "count": 4 + }, + { + "value": "Copyright (c) Jean-loup Gailly and Mark Adler", + "count": 3 + }, + { + "value": "Copyright (c) Brian Goetz and Tim Peierls", + "count": 1 + }, + { + "value": "Copyright (c) Christian Michelsen Research AS Advanced Computing", + "count": 1 + }, + { + "value": "Copyright (c) Dmitriy Anisimkov", + "count": 1 + }, + { + "value": "Copyright (c) Jean-loup Gailly, Brian Raiter and Gilles Vollant", + "count": 1 + }, + { + "value": "Copyright (c) by Henrik Ravn", + "count": 1 + }, + { + "value": "Copyright Henrik Ravn", + "count": 1 + }, + { + "value": "Copyright JBoss Inc., and individual contributors", + "count": 1 + }, + { + "value": "Copyright Red Hat Middleware LLC, and individual contributors", + "count": 1 + }, + { + "value": "Copyright Red Hat, Inc. and individual contributors", + "count": 1 + } + ], + "holders": [ + { + "value": null, + "count": 6 + }, + { + "value": "Jean-loup Gailly", + "count": 4 + }, + { + "value": "Mark Adler", + "count": 4 + }, + { + "value": "Jean-loup Gailly and Mark Adler", + "count": 3 + }, + { + "value": "Henrik Ravn", + "count": 2 + }, + { + "value": "Brian Goetz and Tim Peierls", + "count": 1 + }, + { + "value": "Christian Michelsen Research AS Advanced Computing", + "count": 1 + }, + { + "value": "Dmitriy Anisimkov", + "count": 1 + }, + { + "value": "JBoss Inc., and individual contributors", + "count": 1 + }, + { + "value": "Jean-loup Gailly, Brian Raiter and Gilles Vollant", + "count": 1 + }, + { + "value": "Red Hat Middleware LLC, and individual contributors", + "count": 1 + }, + { + "value": "Red Hat, Inc. and individual contributors", + "count": 1 + } + ], + "authors": [ + { + "value": null, + "count": 20 + }, + { + "value": "Bela Ban", + "count": 4 + }, + { + "value": "Gilles Vollant", + "count": 1 + }, + { + "value": "name' Isaac Z.", + "count": 1 + } + ], + "programming_language": [ + { + "value": "C", + "count": 12 + }, + { + "value": "Java", + "count": 7 + }, + { + "value": "C#", + "count": 2 + }, + { + "value": "GAS", + "count": 1 } ] }, @@ -3123,8 +3117,7 @@ "value": "C", "count": 10 } - ], - "packages": [] + ] } }, { @@ -3219,8 +3212,7 @@ "value": "C#", "count": 2 } - ], - "packages": [] + ] } }, { @@ -3250,8 +3242,7 @@ "value": "C", "count": 2 } - ], - "packages": [] + ] } }, { @@ -3261,8 +3252,7 @@ "copyrights": [], "holders": [], "authors": [], - "programming_language": [], - "packages": [] + "programming_language": [] } }, { @@ -3297,8 +3287,7 @@ "value": "GAS", "count": 1 } - ], - "packages": [] + ] } }, { @@ -3308,8 +3297,7 @@ "copyrights": [], "holders": [], "authors": [], - "programming_language": [], - "packages": [] + "programming_language": [] } } ], @@ -3339,7 +3327,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [], @@ -3373,7 +3361,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [], @@ -3407,7 +3395,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [], @@ -3494,7 +3482,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -3595,7 +3583,7 @@ "end_line": 10 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -3695,7 +3683,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -3743,7 +3731,7 @@ "end_line": 4 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [ @@ -3785,7 +3773,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [ @@ -3874,7 +3862,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -3922,7 +3910,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [ @@ -3958,7 +3946,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -4005,7 +3993,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [], @@ -4094,7 +4082,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [ @@ -4183,7 +4171,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jloup@gzip.org", @@ -4291,7 +4279,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [ @@ -4368,7 +4356,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [ @@ -4451,7 +4439,7 @@ "end_line": 17 } ], - "packages": [ + "package_manifests": [ { "type": "npm", "namespace": null, @@ -7288,13 +7276,7 @@ "purl": "pkg:npm/npm@2.13.5", "repository_homepage_url": "https://www.npmjs.com/package/npm", "repository_download_url": "https://registry.npmjs.org/npm/-/npm-2.13.5.tgz", - "api_data_url": "https://registry.npmjs.org/npm/2.13.5", - "files": [ - { - "path": "scan/package.json", - "type": "file" - } - ] + "api_data_url": "https://registry.npmjs.org/npm/2.13.5" } ], "emails": [ @@ -7614,7 +7596,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [], @@ -7648,7 +7630,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [], @@ -7775,7 +7757,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [ @@ -7866,7 +7848,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [ @@ -7957,7 +7939,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [ @@ -8048,7 +8030,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [ @@ -8084,7 +8066,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [], @@ -8130,7 +8112,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [ @@ -8221,7 +8203,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -8263,7 +8245,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [], @@ -8356,7 +8338,7 @@ "end_line": 12 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -8408,7 +8390,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [], @@ -8497,7 +8479,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [ @@ -8588,7 +8570,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [ @@ -8624,7 +8606,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [], @@ -8711,7 +8693,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -8806,7 +8788,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jloup@gzip.org", @@ -8908,7 +8890,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [ @@ -8999,7 +8981,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "facets": [ diff --git a/tests/summarycode/data/full_summary/summary_details.expected.json b/tests/summarycode/data/full_summary/summary_details.expected.json index c96debd5a0a..0c20b6e059e 100644 --- a/tests/summarycode/data/full_summary/summary_details.expected.json +++ b/tests/summarycode/data/full_summary/summary_details.expected.json @@ -21,6 +21,2846 @@ } } ], + "packages": [ + { + "type": "npm", + "namespace": null, + "name": "npm", + "version": "2.13.5", + "qualifiers": {}, + "subpath": null, + "primary_language": "JavaScript", + "description": "a package manager for JavaScript", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me" + }, + { + "type": "person", + "role": "contributor", + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Steve Steiner", + "email": "ssteinerX@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Aaron Blohowiak", + "email": "aaron.blohowiak@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Martyn Smith", + "email": "martyn@dollyfish.net.nz", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Francisco Treacy", + "email": "francisco.treacy@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Cliffano Subagio", + "email": "cliffano@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Christian Eager", + "email": "christian.eager@nokia.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Dav Glass", + "email": "davglass@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alex K. Wolfe", + "email": "alexkwolfe@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "James Sanders", + "email": "jimmyjazz14@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Reid Burke", + "email": "me@reidburke.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Arlo Breault", + "email": "arlolra@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Timo Derstappen", + "email": "teemow@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Bart Teeuwisse", + "email": "bart.teeuwisse@thecodemill.biz", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ben Noordhuis", + "email": "info@bnoordhuis.nl", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tor Valamo", + "email": "tor.valamo@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Whyme.Lyu", + "email": "5longluna@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Olivier Melcher", + "email": "olivier.melcher@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Toma\u017e Muraus", + "email": "kami@k5-storitve.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Evan Meagher", + "email": "evan.meagher@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Orlando Vazquez", + "email": "ovazquez@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kai Chen", + "email": "kaichenxyz@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "George Miroshnykov", + "email": "gmiroshnykov@lohika.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Geoff Flarity", + "email": "geoff.flarity@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Max Goodman", + "email": "c@chromakode.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Pete Kruckenberg", + "email": "pete@kruckenberg.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Laurie Harper", + "email": "laurie@holoweb.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Chris Wong", + "email": "chris@chriswongstudio.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Scott Bronson", + "email": "brons_github@rinspin.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Federico Romero", + "email": "federomero@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Visnu Pitiyanuvath", + "email": "visnupx@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mark Cahill", + "email": "mark@tiemonster.info", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tony", + "email": "zearin@gonk.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Iain Sproat", + "email": "iainsproat@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Trent Mick", + "email": "trentm@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Felix Geisendo\u0308rfer", + "email": "felix@debuggable.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jameson Little", + "email": "t.jameson.little@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Conny Brunnkvist", + "email": "conny@fuchsia.se", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Will Elwood", + "email": "w.elwood08@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Dean Landolt", + "email": "dean@deanlandolt.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Oleg Efimov", + "email": "efimovov@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Martin Cooper", + "email": "mfncooper@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jann Horn", + "email": "jannhorn@googlemail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrew Bradley", + "email": "cspotcode@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Maciej Ma\u0142ecki", + "email": "me@mmalecki.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Stephen Sugden", + "email": "glurgle@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Michael Budde", + "email": "mbudde@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jason Smith", + "email": "jhs@iriscouch.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Gautham Pai", + "email": "buzypi@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "David Trejo", + "email": "david.daniel.trejo@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "George Ornbo", + "email": "george@shapeshed.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tim Oxley", + "email": "secoif@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tyler Green", + "email": "tyler.green2@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Dave Pacheco", + "email": "dap@joyent.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Danila Gerasimov", + "email": "danila.gerasimov@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Rod Vagg", + "email": "rod@vagg.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Christian Howe", + "email": "coderarity@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrew Lunny", + "email": "alunny@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Henrik Hodne", + "email": "dvyjones@binaryhex.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Adam Blackburn", + "email": "regality@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kris Windham", + "email": "kriswindham@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jens Grunert", + "email": "jens.grunert@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Joost-Wim Boekesteijn", + "email": "joost-wim@boekesteijn.nl", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Dalmais Maxence", + "email": "root@ip-10-195-202-5.ec2.internal", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Marcus Ekwall", + "email": "marcus.ekwall@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Aaron Stacy", + "email": "aaron.r.stacy@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Phillip Howell", + "email": "phowell@cothm.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Domenic Denicola", + "email": "domenic@domenicdenicola.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "James Halliday", + "email": "mail@substack.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jeremy Cantrell", + "email": "jmcantrell@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ribettes", + "email": "patlogan29@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Don Park", + "email": "donpark@docuverse.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Einar Otto Stangvik", + "email": "einaros@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kei Son", + "email": "heyacct@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nicolas Morel", + "email": "marsup@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mark Dube", + "email": "markisdee@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Maxim Bogushevich", + "email": "boga1@mail.ru", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Meaglin", + "email": "Meaglin.wasabi@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ben Evans", + "email": "ben@bensbit.co.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nathan Zadoks", + "email": "nathan@nathan7.eu", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Brian White", + "email": "mscdex@mscdex.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jed Schmidt", + "email": "tr@nslator.jp", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ian Livingstone", + "email": "ianl@cs.dal.ca", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Patrick Pfeiffer", + "email": "patrick@buzzle.at", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Paul Miller", + "email": "paul@paulmillr.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ryan Emery", + "email": "seebees@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Carl Lange", + "email": "carl@flax.ie", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jan Lehnardt", + "email": "jan@apache.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Stuart P. Bentley", + "email": "stuart@testtrack4.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Johan Sk\u00f6ld", + "email": "johan@skold.cc", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Stuart Knightley", + "email": "stuart@stuartk.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Niggler", + "email": "nirk.niggler@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Paolo Fragomeni", + "email": "paolo@async.ly", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jaakko Manninen", + "email": "jaakko@rocketpack.fi", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Luke Arduini", + "email": "luke.arduini@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Larz Conwell", + "email": "larz@larz-laptop.(none)", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Marcel Klehr", + "email": "mklehr@gmx.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Robert Kowalski", + "email": "rok@kowalski.gd", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Forbes Lindesay", + "email": "forbes@lindesay.co.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Vaz Allen", + "email": "vaz@tryptid.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jake Verbaten", + "email": "raynos2@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Schabse Laks", + "email": "Dev@SLaks.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Florian Margaine", + "email": "florian@margaine.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Johan Nordberg", + "email": "its@johan-nordberg.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ian Babrou", + "email": "ibobrik@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Di Wu", + "email": "dwu@palantir.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mathias Bynens", + "email": "mathias@qiwi.be", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Matt McClure", + "email": "matt.mcclure@mapmyfitness.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Matt Lunn", + "email": "matt@mattlunn.me.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alexey Kreschuk", + "email": "akrsch@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "elisee", + "email": "elisee@sparklin.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Robert Gieseke", + "email": "robert.gieseke@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Franc\u0327ois Frisch", + "email": "francoisfrisch@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Trevor Burnham", + "email": "tburnham@hubspot.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alan Shaw", + "email": "alan@freestyle-developments.co.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nicholas Kinsey", + "email": "pyro@feisty.io", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Paulo Cesar", + "email": "pauloc062@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Elan Shanker", + "email": "elan.shanker@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jon Spencer", + "email": "jon@jonspencer.ca", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jason Diamond", + "email": "jason@diamond.name", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Maximilian Antoni", + "email": "mail@maxantoni.de", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Thom Blake", + "email": "tblake@brightroll.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jess Martin", + "email": "jessmartin@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Spain Train", + "email": "michael.spainhower@opower.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alex Rodionov", + "email": "p0deje@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Matt Colyer", + "email": "matt@colyer.name", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Evan You", + "email": "yyx990803@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "bitspill", + "email": "bitspill+github@bitspill.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Gabriel Falkenberg", + "email": "gabriel.falkenberg@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alexej Yaroshevich", + "email": "alex@qfox.ru", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Quim Calpe", + "email": "quim@kalpe.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Steve Mason", + "email": "stevem@brandwatch.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Wil Moore III", + "email": "wil.moore@wilmoore.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Sergey Belov", + "email": "peimei@ya.ru", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tom Huang", + "email": "hzlhu.dargon@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "CamilleM", + "email": "camille.moulin@alterway.fr", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "S\u00e9bastien Santoro", + "email": "dereckson@espace-win.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Evan Lucas", + "email": "evan@btc.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Quinn Slack", + "email": "qslack@qslack.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alex Kocharin", + "email": "alex@kocharin.ru", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Daniel Santiago", + "email": "daniel.santiago@highlevelwebs.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Denis Gladkikh", + "email": "outcoldman@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrew Horton", + "email": "andrew.j.horton@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Zeke Sikelianos", + "email": "zeke@sikelianos.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Dylan Greene", + "email": "dylang@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Franck Cuny", + "email": "franck.cuny@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Yeonghoon Park", + "email": "sola92@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Rafael de Oleza", + "email": "rafa@spotify.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mikola Lysenko", + "email": "mikolalysenko@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Yazhong Liu", + "email": "yorkiefixer@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Neil Gentleman", + "email": "ngentleman@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kris Kowal", + "email": "kris.kowal@cixar.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alex Gorbatchev", + "email": "alex.gorbatchev@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Shawn Wildermuth", + "email": "shawn@wildermuth.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Wesley de Souza", + "email": "wesleywex@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "yoyoyogi", + "email": "yogesh.k@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "J. Tangelder", + "email": "j.tangelder@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jean Lauliac", + "email": "jean@lauliac.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrey Kislyuk", + "email": "kislyuk@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Thorsten Lorenz", + "email": "thlorenz@gmx.de", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Julian Gruber", + "email": "julian@juliangruber.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Benjamin Coe", + "email": "bencoe@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alex Ford", + "email": "Alex.Ford@CodeTunnel.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Matt Hickford", + "email": "matt.hickford@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Sean McGivern", + "email": "sean.mcgivern@rightscale.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "C J Silverio", + "email": "ceejceej@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Robin Tweedie", + "email": "robin@songkick.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Miroslav Bajto\u0161", + "email": "miroslav@strongloop.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "David Glasser", + "email": "glasser@davidglasser.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Gianluca Casati", + "email": "casati_gianluca@yahoo.it", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Forrest L Norvell", + "email": "ogd@aoaioxxysz.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Karsten Tinnefeld", + "email": "k.tinnefeld@googlemail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Bryan Burgers", + "email": "bryan@burgers.io", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "David Beitey", + "email": "david@davidjb.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Evan You", + "email": "yyou@google.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Zach Pomerantz", + "email": "zmp@umich.edu", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Chris Williams", + "email": "cwilliams88@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "sudodoki", + "email": "smd.deluzion@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mick Thompson", + "email": "dthompson@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Felix Rabe", + "email": "felix@rabe.io", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Michael Hayes", + "email": "michael@hayes.io", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Chris Dickinson", + "email": "christopher.s.dickinson@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Bradley Meck", + "email": "bradley.meck@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "GeJ", + "email": "geraud@gcu.info", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrew Terris", + "email": "atterris@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Michael Nisi", + "email": "michael.nisi@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "fengmk2", + "email": "fengmk2@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Adam Meadows", + "email": "adam.meadows@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Chulki Lee", + "email": "chulki.lee@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "\u4e0d\u56db", + "email": "busi.hyy@taobao.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "dead_horse", + "email": "dead_horse@qq.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kenan Yildirim", + "email": "kenan@kenany.me", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Laurie Voss", + "email": "git@seldo.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Rebecca Turner", + "email": "me@re-becca.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Hunter Loftis", + "email": "hunter@hunterloftis.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Peter Richardson", + "email": "github@zoomy.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jussi Kalliokoski", + "email": "jussi.kalliokoski@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Filip Weiss", + "email": "me@fiws.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Timo Wei\u00df", + "email": "timoweiss@Timo-MBP.local", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Christopher Hiller", + "email": "chiller@badwing.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "J\u00e9r\u00e9my Lal", + "email": "kapouer@melix.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Anders Janmyr", + "email": "anders@janmyr.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Chris Meyers", + "email": "chris.meyers.fsu@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ludwig Magnusson", + "email": "ludwig@mediatool.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Wout Mertens", + "email": "Wout.Mertens@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nick Santos", + "email": "nick@medium.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Terin Stock", + "email": "terinjokes@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Faiq Raza", + "email": "faiqrazarizvi@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Thomas Torp", + "email": "thomas@erupt.no", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Sam Mikes", + "email": "smikes@cubane.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mat Tyndall", + "email": "mat.tyndall@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tauren Mills", + "email": "tauren@sportzing.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ron Martinez", + "email": "ramartin.net@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kazuhito Hokamura", + "email": "k.hokamura@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tristan Davies", + "email": "github@tristan.io", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "David Volm", + "email": "david@volminator.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Lin Clark", + "email": "lin.w.clark@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ben Page", + "email": "bpage@dewalch.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jeff Jo", + "email": "jeffjo@squareup.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "martinvd", + "email": "martinvdpub@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mark J. Titorenko", + "email": "nospam-github.aaakk.us.kg@titorenko.net", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Oddur Sigurdsson", + "email": "oddurs@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Eric Mill", + "email": "eric@konklone.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Gabriel Barros", + "email": "descartavel1@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "KevinSheedy", + "email": "kevinsheedy@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Aleksey Smolenchuk", + "email": "aleksey@uber.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ed Morley", + "email": "emorley@mozilla.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Blaine Bublitz", + "email": "blaine@iceddev.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrey Fedorov", + "email": "anfedorov@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Daijiro Wachi", + "email": "daijiro.wachi@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Luc Thevenard", + "email": "lucthevenard@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Aria Stewart", + "email": "aredridel@nbtsc.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Charlie Rudolph", + "email": "charles.w.rudolph@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Vladimir Rutsky", + "email": "rutsky@users.noreply.github.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Isaac Murchie", + "email": "isaac@saucelabs.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Marcin Wosinek", + "email": "marcin.wosinek@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "David Marr", + "email": "davemarr@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Bryan English", + "email": "bryan@bryanenglish.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Anthony Zotti", + "email": "amZotti@users.noreply.github.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Karl Horky", + "email": "karl.horky@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Gu\u00f0laugur Stef\u00e1n Egilsson", + "email": "gulli@kolibri.is", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Helge Skogly Holm", + "email": "helge.holm@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Peter A. Shevtsov", + "email": "petr.shevtsov@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Alain Kalker", + "email": "a.c.kalker@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Bryant Williams", + "email": "b.n.williams@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jonas Weber", + "email": "github@jonasw.de", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Tim Whidden", + "email": "twhid@twhid.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andreas", + "email": "functino@users.noreply.github.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Karolis Narkevicius", + "email": "karolis.n@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Adrian Lynch", + "email": "adi_ady_ade@hotmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Richard Littauer", + "email": "richard.littauer@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Oli Evans", + "email": "oli@zilla.org.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Matt Brennan", + "email": "mattyb1000@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jeff Barczewski", + "email": "jeff.barczewski@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Danny Fritz", + "email": "dannyfritz@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Takaya Kobayashi", + "email": "jigsaw@live.jp", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ra'Shaun Stovall", + "email": "rashaunstovall@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Julien Meddah", + "email": "julien.meddah@deveryware.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Michiel Sikma", + "email": "michiel@wedemandhtml.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jakob Krigovsky", + "email": "jakob.krigovsky@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Charmander", + "email": "~@charmander.me", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Erik Wienhold", + "email": "git@ewie.name", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "James Butler", + "email": "james.butler@sandfox.co.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kevin Kragenbrink", + "email": "kevin@gaikai.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Arnaud Rinquin", + "email": "rinquin.arnaud@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Mike MacCana", + "email": "mike.maccana@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Antti Mattila", + "email": "anttti@fastmail.fm", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "laiso", + "email": "laiso@lai.so", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Matt Zorn", + "email": "zornme@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kyle Mitchell", + "email": "kyle@kemitchell.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Jeremiah Senkpiel", + "email": "fishrock123@rocketmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Michael Klein", + "email": "mischkl@users.noreply.github.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Simen Bekkhus", + "email": "sbekkhus91@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Victor", + "email": "victor.shih@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "thefourtheye", + "email": "thechargingvolcano@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Clay Carpenter", + "email": "claycarpenter@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "bangbang93", + "email": "bangbang93@163.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nick Malaguti", + "email": "nmalaguti@palantir.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Cedric Nelson", + "email": "cedric.nelson@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kat March\u00e1n", + "email": "kzm@sykosomatic.org", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrew", + "email": "talktome@aboutandrew.co.uk", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Eduardo Pinho", + "email": "enet4mikeenet@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Rachel Hutchison", + "email": "rhutchix@intel.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Ryan Temple", + "email": "ryantemple145@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Eugene Sharygin", + "email": "eush77@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Nick Heiner", + "email": "nick.heiner@opower.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "James Talmage", + "email": "james@talmage.io", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "jane arc", + "email": "jane@uber.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Joseph Dykstra", + "email": "josephdykstra@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Joshua Egan", + "email": "josh-egan@users.noreply.github.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Thomas Cort", + "email": "thomasc@ssimicro.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Thaddee Tyl", + "email": "thaddee.tyl@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Steve Klabnik", + "email": "steve@steveklabnik.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Andrew Murray", + "email": "radarhere@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Stephan B\u00f6nnemann", + "email": "stephan@excellenteasy.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Kyle M. Tarplee", + "email": "kyle.tarplee@numerica.us", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Derek Peterson", + "email": "derekpetey@gmail.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "Greg Whiteley", + "email": "greg.whiteley@atomos.com", + "url": null + }, + { + "type": "person", + "role": "contributor", + "name": "murgatroid99", + "email": "mlumish@google.com", + "url": null + }, + { + "type": "person", + "role": "maintainer", + "name": "isaacs", + "email": "isaacs@npmjs.com", + "url": null + }, + { + "type": "person", + "role": "maintainer", + "name": "othiym23", + "email": "ogd@aoaioxxysz.net", + "url": null + }, + { + "type": "person", + "role": "maintainer", + "name": "iarna", + "email": "me@re-becca.org", + "url": null + }, + { + "type": "person", + "role": "maintainer", + "name": "zkat", + "email": "kat@sykosomatic.org", + "url": null + } + ], + "keywords": [ + "package manager", + "modules", + "install", + "package.json" + ], + "homepage_url": "https://docs.npmjs.com/", + "download_url": "https://registry.npmjs.org/npm/-/npm-2.13.5.tgz", + "size": null, + "sha1": "a124386bce4a90506f28ad4b1d1a804a17baaf32", + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "http://github.com/npm/npm/issues", + "code_view_url": null, + "vcs_url": "git+https://github.com/npm/npm.git@fc7bbf03e39cc48a8924b90696d28345a6a90f3c", + "copyright": null, + "license_expression": "artistic-2.0", + "declared_license": [ + "Artistic-2.0" + ], + "notice_text": null, + "root_path": "scan", + "dependencies": [ + { + "purl": "pkg:npm/abbrev", + "requirement": "~1.0.7", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/ansi", + "requirement": "~0.3.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/ansicolors", + "requirement": "~0.3.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/ansistyles", + "requirement": "~0.1.3", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/archy", + "requirement": "~1.0.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/async-some", + "requirement": "~1.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/block-stream", + "requirement": "0.0.8", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/char-spinner", + "requirement": "~1.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/chmodr", + "requirement": "~1.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/chownr", + "requirement": "0.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/cmd-shim", + "requirement": "~2.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/columnify", + "requirement": "~1.5.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/config-chain", + "requirement": "~1.1.9", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/dezalgo", + "requirement": "~1.0.3", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/editor", + "requirement": "~1.0.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/fs-vacuum", + "requirement": "~1.2.6", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/fs-write-stream-atomic", + "requirement": "~1.0.3", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/fstream", + "requirement": "~1.0.7", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/fstream-npm", + "requirement": "~1.0.4", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/github-url-from-git", + "requirement": "~1.4.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/github-url-from-username-repo", + "requirement": "~1.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/glob", + "requirement": "~5.0.14", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/graceful-fs", + "requirement": "~4.1.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/hosted-git-info", + "requirement": "~2.1.4", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/inflight", + "requirement": "~1.0.4", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/inherits", + "requirement": "~2.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/ini", + "requirement": "~1.3.4", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/init-package-json", + "requirement": "~1.7.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/lockfile", + "requirement": "~1.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/lru-cache", + "requirement": "~2.6.5", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/minimatch", + "requirement": "~2.0.10", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/mkdirp", + "requirement": "~0.5.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/node-gyp", + "requirement": "~2.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/nopt", + "requirement": "~3.0.3", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/normalize-git-url", + "requirement": "~3.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/normalize-package-data", + "requirement": "~2.3.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-cache-filename", + "requirement": "~1.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-install-checks", + "requirement": "~1.0.6", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-package-arg", + "requirement": "~4.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-registry-client", + "requirement": "~6.5.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-user-validate", + "requirement": "~0.1.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/npmlog", + "requirement": "~1.2.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/once", + "requirement": "~1.3.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/opener", + "requirement": "~1.4.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/osenv", + "requirement": "~0.1.3", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/path-is-inside", + "requirement": "~1.0.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/read", + "requirement": "~1.0.6", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/read-installed", + "requirement": "~4.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/read-package-json", + "requirement": "~2.0.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/readable-stream", + "requirement": "~1.1.13", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/realize-package-specifier", + "requirement": "~3.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/request", + "requirement": "~2.60.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/retry", + "requirement": "~0.6.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/rimraf", + "requirement": "~2.4.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/semver", + "requirement": "~5.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/sha", + "requirement": "~1.3.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/slide", + "requirement": "~1.1.6", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/sorted-object", + "requirement": "~1.0.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/spdx", + "requirement": "~0.4.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/tar", + "requirement": "~2.1.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/text-table", + "requirement": "~0.2.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/uid-number", + "requirement": "0.0.6", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/umask", + "requirement": "~1.1.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/validate-npm-package-name", + "requirement": "~2.2.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/which", + "requirement": "~1.1.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/wrappy", + "requirement": "~1.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/write-file-atomic", + "requirement": "~1.1.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/validate-npm-package-license", + "requirement": "*", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/deep-equal", + "requirement": "~1.0.0", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/marked", + "requirement": "~0.3.3", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/marked-man", + "requirement": "~0.1.5", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/nock", + "requirement": "~2.10.0", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-registry-couchapp", + "requirement": "~2.6.7", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/npm-registry-mock", + "requirement": "~1.0.0", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/require-inject", + "requirement": "~1.2.0", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/sprintf-js", + "requirement": "~1.0.2", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/tap", + "requirement": "~1.3.1", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + } + ], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:npm/npm@2.13.5", + "repository_homepage_url": "https://www.npmjs.com/package/npm", + "repository_download_url": "https://registry.npmjs.org/npm/-/npm-2.13.5.tgz", + "api_data_url": "https://registry.npmjs.org/npm/2.13.5" + } + ], "summary": { "license_expressions": [ { @@ -223,7 +3063,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -430,7 +3270,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -533,7 +3373,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -689,7 +3529,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -811,7 +3651,7 @@ "end_line": 10 } ], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -927,7 +3767,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -996,7 +3836,7 @@ "end_line": 4 } ], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -1065,7 +3905,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -1181,7 +4021,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -1250,7 +4090,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -1313,7 +4153,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -1376,7 +4216,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -1510,7 +4350,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -1626,7 +4466,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -1744,7 +4584,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -1848,7 +4688,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -1958,7 +4798,7 @@ "end_line": 17 } ], - "packages": [ + "package_manifests": [ { "type": "npm", "namespace": null, @@ -4795,13 +7635,7 @@ "purl": "pkg:npm/npm@2.13.5", "repository_homepage_url": "https://www.npmjs.com/package/npm", "repository_download_url": "https://registry.npmjs.org/npm/-/npm-2.13.5.tgz", - "api_data_url": "https://registry.npmjs.org/npm/2.13.5", - "files": [ - { - "path": "scan/package.json", - "type": "file" - } - ] + "api_data_url": "https://registry.npmjs.org/npm/2.13.5" } ], "summary": { @@ -4866,7 +7700,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -5005,7 +7839,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -5156,7 +7990,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -5274,7 +8108,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -5392,7 +8226,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -5510,7 +8344,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -5573,7 +8407,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -5652,7 +8486,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -5770,7 +8604,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -5833,7 +8667,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -5955,7 +8789,7 @@ "end_line": 12 } ], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -6018,7 +8852,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -6136,7 +8970,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -6254,7 +9088,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -6317,7 +9151,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -6433,7 +9267,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -6549,7 +9383,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -6667,7 +9501,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { @@ -6785,7 +9619,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "summary": { "license_expressions": [ { diff --git a/tests/summarycode/data/packages/expected.json b/tests/summarycode/data/packages/expected.json index 8481c0b5e36..b27fa01e0d0 100644 --- a/tests/summarycode/data/packages/expected.json +++ b/tests/summarycode/data/packages/expected.json @@ -18,691 +18,672 @@ } } ], - "summary": { - "packages": [ - { - "type": "maven", - "namespace": "aopalliance", - "name": "aopalliance", - "version": "1.0", - "qualifiers": {}, - "subpath": null, - "primary_language": "Java", - "description": "AOP alliance\nAOP Alliance", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": "http://aopalliance.sourceforge.net", - "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": "public-domain", - "declared_license": [ - { - "name": "Public Domain", - "url": null, - "comments": null, - "distribution": null - } - ], - "notice_text": null, - "root_path": "scan/aopalliance/aopalliance/1.0", - "dependencies": [], - "contains_source_code": null, - "source_packages": [ - "pkg:maven/aopalliance/aopalliance@1.0?classifier=sources" + "packages": [ + { + "type": "maven", + "namespace": "aopalliance", + "name": "aopalliance", + "version": "1.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "AOP alliance\nAOP Alliance", + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": "http://aopalliance.sourceforge.net", + "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": "public-domain", + "declared_license": [ + { + "name": "Public Domain", + "url": null, + "comments": null, + "distribution": null + } + ], + "notice_text": null, + "root_path": "scan/aopalliance/aopalliance/1.0", + "dependencies": [], + "contains_source_code": null, + "source_packages": [ + "pkg:maven/aopalliance/aopalliance@1.0?classifier=sources" + ], + "extra_data": {}, + "purl": "pkg:maven/aopalliance/aopalliance@1.0", + "repository_homepage_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/", + "repository_download_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar", + "api_data_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom" + }, + { + "type": "freebsd", + "namespace": null, + "name": "dmidecode", + "version": "2.12", + "qualifiers": { + "arch": "freebsd:10:x86:64", + "origin": "sysutils/dmidecode" + }, + "subpath": null, + "primary_language": null, + "description": "Dmidecode is a tool or dumping a computer's DMI (some say SMBIOS) table\ncontents in a human-readable format. The output contains a description of the\nsystem's hardware components, as well as other useful pieces of information\nsuch as serial numbers and BIOS revision.\n\nWWW: http://www.nongnu.org/dmidecode/", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "maintainer", + "name": null, + "email": "anders@FreeBSD.org", + "url": null + } + ], + "keywords": [ + "sysutils" + ], + "homepage_url": "http://www.nongnu.org/dmidecode/", + "download_url": "https://pkg.freebsd.org/freebsd:10:x86:64/latest/All/dmidecode-2.12.txz", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": "https://svnweb.freebsd.org/ports/head/sysutils/dmidecode", + "vcs_url": null, + "copyright": null, + "license_expression": "gpl-2.0", + "declared_license": { + "licenses": [ + "GPLv2" ], - "extra_data": {}, - "purl": "pkg:maven/aopalliance/aopalliance@1.0", - "repository_homepage_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/", - "repository_download_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar", - "api_data_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom", - "files": [ - { - "path": "scan/aopalliance/aopalliance/1.0/aopalliance-1.0.pom", - "type": "file" - } - ] + "licenselogic": "single" }, - { - "type": "freebsd", - "namespace": null, - "name": "dmidecode", - "version": "2.12", - "qualifiers": { - "arch": "freebsd:10:x86:64", - "origin": "sysutils/dmidecode" + "notice_text": null, + "root_path": "scan/freebsd/basic", + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:freebsd/dmidecode@2.12?arch=freebsd:10:x86:64&origin=sysutils/dmidecode", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + }, + { + "type": "npm", + "namespace": "@ionic", + "name": "app-scripts", + "version": "3.0.1-201710301651", + "qualifiers": {}, + "subpath": null, + "primary_language": "JavaScript", + "description": "Scripts for Ionic Projects", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "Ionic Team", + "email": "hi@ionic.io", + "url": "https://ionic.io" + } + ], + "keywords": [], + "homepage_url": "https://ionicframework.com/", + "download_url": "https://registry.npmjs.org/@ionic/app-scripts/-/app-scripts-3.0.1-201710301651.tgz", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/ionic-team/ionic-app-scripts/issues", + "code_view_url": null, + "vcs_url": "git+https://github.com/ionic-team/ionic-app-scripts.git", + "copyright": null, + "license_expression": "mit", + "declared_license": [ + "MIT" + ], + "notice_text": null, + "root_path": "scan/scoped1", + "dependencies": [ + { + "purl": "pkg:npm/%40angular-devkit/build-optimizer", + "requirement": "^0.0.31", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false }, - "subpath": null, - "primary_language": null, - "description": "Dmidecode is a tool or dumping a computer's DMI (some say SMBIOS) table\ncontents in a human-readable format. The output contains a description of the\nsystem's hardware components, as well as other useful pieces of information\nsuch as serial numbers and BIOS revision.\n\nWWW: http://www.nongnu.org/dmidecode/", - "release_date": null, - "parties": [ - { - "type": "person", - "role": "maintainer", - "name": null, - "email": "anders@FreeBSD.org", - "url": null - } - ], - "keywords": [ - "sysutils" - ], - "homepage_url": "http://www.nongnu.org/dmidecode/", - "download_url": "https://pkg.freebsd.org/freebsd:10:x86:64/latest/All/dmidecode-2.12.txz", - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": "https://svnweb.freebsd.org/ports/head/sysutils/dmidecode", - "vcs_url": null, - "copyright": null, - "license_expression": "gpl-2.0", - "declared_license": { - "licenses": [ - "GPLv2" - ], - "licenselogic": "single" + { + "purl": "pkg:npm/autoprefixer", + "requirement": "^7.1.6", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false }, - "notice_text": null, - "root_path": "scan/freebsd/basic", - "dependencies": [], - "contains_source_code": null, - "source_packages": [], - "extra_data": {}, - "purl": "pkg:freebsd/dmidecode@2.12?arch=freebsd:10:x86:64&origin=sysutils/dmidecode", - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "files": [ - { - "path": "scan/freebsd/basic/+COMPACT_MANIFEST", - "type": "file" - } - ] - }, - { - "type": "npm", - "namespace": "@ionic", - "name": "app-scripts", - "version": "3.0.1-201710301651", - "qualifiers": {}, - "subpath": null, - "primary_language": "JavaScript", - "description": "Scripts for Ionic Projects", - "release_date": null, - "parties": [ - { - "type": "person", - "role": "author", - "name": "Ionic Team", - "email": "hi@ionic.io", - "url": "https://ionic.io" - } - ], - "keywords": [], - "homepage_url": "https://ionicframework.com/", - "download_url": "https://registry.npmjs.org/@ionic/app-scripts/-/app-scripts-3.0.1-201710301651.tgz", - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": "https://github.com/ionic-team/ionic-app-scripts/issues", - "code_view_url": null, - "vcs_url": "git+https://github.com/ionic-team/ionic-app-scripts.git", - "copyright": null, - "license_expression": "mit", - "declared_license": [ - "MIT" - ], - "notice_text": null, - "root_path": "scan/scoped1", - "dependencies": [ - { - "purl": "pkg:npm/%40angular-devkit/build-optimizer", - "requirement": "^0.0.31", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/autoprefixer", - "requirement": "^7.1.6", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/chalk", - "requirement": "^2.3.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/chokidar", - "requirement": "^1.7.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/clean-css", - "requirement": "^4.1.9", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/cross-spawn", - "requirement": "^5.1.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/express", - "requirement": "^4.16.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/fs-extra", - "requirement": "^4.0.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/glob", - "requirement": "^7.1.2", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/json-loader", - "requirement": "^0.5.7", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/node-sass", - "requirement": "^4.5.3", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/os-name", - "requirement": "^2.0.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/postcss", - "requirement": "^6.0.13", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/proxy-middleware", - "requirement": "^0.15.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/reflect-metadata", - "requirement": "^0.1.10", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/rollup", - "requirement": "0.50.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/rollup-plugin-commonjs", - "requirement": "8.2.6", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/rollup-plugin-node-resolve", - "requirement": "3.0.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/source-map", - "requirement": "^0.6.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/tiny-lr", - "requirement": "^1.0.5", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/tslint", - "requirement": "^5.8.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/tslint-eslint-rules", - "requirement": "^4.1.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/uglify-es", - "requirement": "^3.1.6", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/webpack", - "requirement": "^3.8.1", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/ws", - "requirement": "^3.2.0", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/xml2js", - "requirement": "^0.4.19", - "scope": "dependencies", - "is_runtime": true, - "is_optional": false, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40angular/animations", - "requirement": "4.4.3", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40angular/common", - "requirement": "4.4.3", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40angular/compiler", - "requirement": "4.4.3", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40angular/compiler-cli", - "requirement": "4.4.3", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40angular/core", - "requirement": "4.4.3", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40angular/forms", - "requirement": "4.4.3", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40angular/http", - "requirement": "4.4.3", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40angular/platform-browser", - "requirement": "4.4.3", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40angular/platform-browser-dynamic", - "requirement": "4.4.3", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40angular/platform-server", - "requirement": "4.4.3", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40angular/tsc-wrapped", - "requirement": "4.4.3", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40types/chokidar", - "requirement": "^1.7.3", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40types/clean-css", - "requirement": "^3.4.29", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40types/express", - "requirement": "^4.0.39", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40types/fs-extra", - "requirement": "^4.0.3", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40types/glob", - "requirement": "^5.0.30", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40types/jest", - "requirement": "^21.1.5", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40types/mock-fs", - "requirement": "^3.6.30", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40types/node", - "requirement": "^8.0.47", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40types/node-sass", - "requirement": "^3.10.32", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40types/rewire", - "requirement": "^2.5.27", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40types/webpack", - "requirement": "^3.0.14", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/%40types/ws", - "requirement": "^3.2.0", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/conventional-changelog-cli", - "requirement": "^1.3.1", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/github", - "requirement": "0.2.4", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/ionic-cz-conventional-changelog", - "requirement": "^1.0.0", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/jest", - "requirement": "^21.2.1", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/mock-fs", - "requirement": "^4.4.2", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/rewire", - "requirement": "^2.5.2", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/rimraf", - "requirement": "^2.6.1", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/rxjs", - "requirement": "^5.5.2", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/sw-toolbox", - "requirement": "^3.6.0", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/tslint-ionic-rules", - "requirement": "^0.0.11", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/typescript", - "requirement": "~2.3.4", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - }, - { - "purl": "pkg:npm/zone.js", - "requirement": "^0.8.17", - "scope": "devDependencies", - "is_runtime": false, - "is_optional": true, - "is_resolved": false - } - ], - "contains_source_code": null, - "source_packages": [], - "extra_data": {}, - "purl": "pkg:npm/%40ionic/app-scripts@3.0.1-201710301651", - "repository_homepage_url": "https://www.npmjs.com/package/@ionic/app-scripts", - "repository_download_url": "https://registry.npmjs.org/@ionic/app-scripts/-/app-scripts-3.0.1-201710301651.tgz", - "api_data_url": "https://registry.npmjs.org/@ionic%2fapp-scripts", - "files": [ - { - "path": "scan/scoped1/package.json", - "type": "file" - } - ] - } - ] - }, + { + "purl": "pkg:npm/chalk", + "requirement": "^2.3.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/chokidar", + "requirement": "^1.7.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/clean-css", + "requirement": "^4.1.9", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/cross-spawn", + "requirement": "^5.1.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/express", + "requirement": "^4.16.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/fs-extra", + "requirement": "^4.0.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/glob", + "requirement": "^7.1.2", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/json-loader", + "requirement": "^0.5.7", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/node-sass", + "requirement": "^4.5.3", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/os-name", + "requirement": "^2.0.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/postcss", + "requirement": "^6.0.13", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/proxy-middleware", + "requirement": "^0.15.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/reflect-metadata", + "requirement": "^0.1.10", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/rollup", + "requirement": "0.50.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/rollup-plugin-commonjs", + "requirement": "8.2.6", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/rollup-plugin-node-resolve", + "requirement": "3.0.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/source-map", + "requirement": "^0.6.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/tiny-lr", + "requirement": "^1.0.5", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/tslint", + "requirement": "^5.8.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/tslint-eslint-rules", + "requirement": "^4.1.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/uglify-es", + "requirement": "^3.1.6", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/webpack", + "requirement": "^3.8.1", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/ws", + "requirement": "^3.2.0", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/xml2js", + "requirement": "^0.4.19", + "scope": "dependencies", + "is_runtime": true, + "is_optional": false, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40angular/animations", + "requirement": "4.4.3", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40angular/common", + "requirement": "4.4.3", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40angular/compiler", + "requirement": "4.4.3", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40angular/compiler-cli", + "requirement": "4.4.3", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40angular/core", + "requirement": "4.4.3", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40angular/forms", + "requirement": "4.4.3", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40angular/http", + "requirement": "4.4.3", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40angular/platform-browser", + "requirement": "4.4.3", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40angular/platform-browser-dynamic", + "requirement": "4.4.3", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40angular/platform-server", + "requirement": "4.4.3", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40angular/tsc-wrapped", + "requirement": "4.4.3", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40types/chokidar", + "requirement": "^1.7.3", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40types/clean-css", + "requirement": "^3.4.29", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40types/express", + "requirement": "^4.0.39", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40types/fs-extra", + "requirement": "^4.0.3", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40types/glob", + "requirement": "^5.0.30", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40types/jest", + "requirement": "^21.1.5", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40types/mock-fs", + "requirement": "^3.6.30", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40types/node", + "requirement": "^8.0.47", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40types/node-sass", + "requirement": "^3.10.32", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40types/rewire", + "requirement": "^2.5.27", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40types/webpack", + "requirement": "^3.0.14", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/%40types/ws", + "requirement": "^3.2.0", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/conventional-changelog-cli", + "requirement": "^1.3.1", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/github", + "requirement": "0.2.4", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/ionic-cz-conventional-changelog", + "requirement": "^1.0.0", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/jest", + "requirement": "^21.2.1", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/mock-fs", + "requirement": "^4.4.2", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/rewire", + "requirement": "^2.5.2", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/rimraf", + "requirement": "^2.6.1", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/rxjs", + "requirement": "^5.5.2", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/sw-toolbox", + "requirement": "^3.6.0", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/tslint-ionic-rules", + "requirement": "^0.0.11", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/typescript", + "requirement": "~2.3.4", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + }, + { + "purl": "pkg:npm/zone.js", + "requirement": "^0.8.17", + "scope": "devDependencies", + "is_runtime": false, + "is_optional": true, + "is_resolved": false + } + ], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:npm/%40ionic/app-scripts@3.0.1-201710301651", + "repository_homepage_url": "https://www.npmjs.com/package/@ionic/app-scripts", + "repository_download_url": "https://registry.npmjs.org/@ionic/app-scripts/-/app-scripts-3.0.1-201710301651.tgz", + "api_data_url": "https://registry.npmjs.org/@ionic%2fapp-scripts" + } + ], + "summary": {}, "files": [ { "path": "scan", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "scan/aopalliance", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "scan/aopalliance/aopalliance", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "scan/aopalliance/aopalliance/1.0", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "scan/aopalliance/aopalliance/1.0/aopalliance-1.0.pom", "type": "file", - "packages": [ + "package_manifests": [ { "type": "maven", "namespace": "aopalliance", @@ -746,13 +727,7 @@ "purl": "pkg:maven/aopalliance/aopalliance@1.0", "repository_homepage_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/", "repository_download_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar", - "api_data_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom", - "files": [ - { - "path": "scan/aopalliance/aopalliance/1.0/aopalliance-1.0.pom", - "type": "file" - } - ] + "api_data_url": "https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom" } ], "scan_errors": [] @@ -760,19 +735,19 @@ { "path": "scan/freebsd", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "scan/freebsd/basic", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "scan/freebsd/basic/+COMPACT_MANIFEST", "type": "file", - "packages": [ + "package_manifests": [ { "type": "freebsd", "namespace": null, @@ -825,13 +800,7 @@ "purl": "pkg:freebsd/dmidecode@2.12?arch=freebsd:10:x86:64&origin=sysutils/dmidecode", "repository_homepage_url": null, "repository_download_url": null, - "api_data_url": null, - "files": [ - { - "path": "scan/freebsd/basic/+COMPACT_MANIFEST", - "type": "file" - } - ] + "api_data_url": null } ], "scan_errors": [] @@ -839,13 +808,13 @@ { "path": "scan/scoped1", "type": "directory", - "packages": [], + "package_manifests": [], "scan_errors": [] }, { "path": "scan/scoped1/package.json", "type": "file", - "packages": [ + "package_manifests": [ { "type": "npm", "namespace": "@ionic", @@ -1379,13 +1348,7 @@ "purl": "pkg:npm/%40ionic/app-scripts@3.0.1-201710301651", "repository_homepage_url": "https://www.npmjs.com/package/@ionic/app-scripts", "repository_download_url": "https://registry.npmjs.org/@ionic/app-scripts/-/app-scripts-3.0.1-201710301651.tgz", - "api_data_url": "https://registry.npmjs.org/@ionic%2fapp-scripts", - "files": [ - { - "path": "scan/scoped1/package.json", - "type": "file" - } - ] + "api_data_url": "https://registry.npmjs.org/@ionic%2fapp-scripts" } ], "scan_errors": [] diff --git a/tests/summarycode/data/plugin_consolidate/component-package-build-expected.json b/tests/summarycode/data/plugin_consolidate/component-package-build-expected.json index 22f1edab78c..ae8d3b40c41 100644 --- a/tests/summarycode/data/plugin_consolidate/component-package-build-expected.json +++ b/tests/summarycode/data/plugin_consolidate/component-package-build-expected.json @@ -21,53 +21,43 @@ } } ], - "consolidated_components": [ - { - "type": "build", - "identifier": "demo_1", - "consolidated_license_expression": null, - "consolidated_holders": [], - "consolidated_copyright": "Copyright (c) ", - "core_license_expression": null, - "core_holders": [], - "other_license_expression": null, - "other_holders": [], - "files_count": 1 - }, + "packages": [ { - "type": "holders", - "identifier": "apache_foundation_software_1", - "consolidated_license_expression": "apache-2.0", - "consolidated_holders": [ - "The Apache Software Foundation" - ], - "consolidated_copyright": "Copyright (c) The Apache Software Foundation", - "core_license_expression": "apache-2.0", - "core_holders": [ - "The Apache Software Foundation" - ], - "other_license_expression": null, - "other_holders": [], - "files_count": 3 + "type": "buck", + "namespace": null, + "name": "demo", + "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": "component-package-build/build", + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "extra_data": {}, + "purl": "pkg:buck/demo", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null }, - { - "type": "holders", - "identifier": "inc_nexb_1", - "consolidated_license_expression": "lgpl-2.0", - "consolidated_holders": [ - "nexB, Inc." - ], - "consolidated_copyright": "Copyright (c) nexB, Inc.", - "core_license_expression": "lgpl-2.0", - "core_holders": [ - "nexB, Inc." - ], - "other_license_expression": null, - "other_holders": [], - "files_count": 1 - } - ], - "consolidated_packages": [ { "type": "npm", "namespace": null, @@ -104,26 +94,76 @@ "purl": "pkg:npm/test-package@0.0.1", "repository_homepage_url": "https://www.npmjs.com/package/test-package", "repository_download_url": "https://registry.npmjs.org/test-package/-/test-package-0.0.1.tgz", - "api_data_url": "https://registry.npmjs.org/test-package/0.0.1", - "identifier": "pkg_npm_test_package_0_0_1_1", - "consolidated_license_expression": "apache-2.0 AND gpl-1.0-plus", + "api_data_url": "https://registry.npmjs.org/test-package/0.0.1" + } + ], + "consolidated_components": [ + { + "type": "holders", + "identifier": "apache_foundation_software_1", + "consolidated_license_expression": "apache-2.0", "consolidated_holders": [ - "IBM Corp.", - "The Apache Software", "The Apache Software Foundation" ], - "consolidated_copyright": "Copyright (c) IBM Corp., The Apache Software, The Apache Software Foundation", + "consolidated_copyright": "Copyright (c) The Apache Software Foundation", "core_license_expression": "apache-2.0", - "core_holders": [], - "other_license_expression": "apache-2.0 AND gpl-1.0-plus", - "other_holders": [ - "The Apache Software Foundation", - "The Apache Software", - "IBM Corp." + "core_holders": [ + "The Apache Software Foundation" ], + "other_license_expression": null, + "other_holders": [], "files_count": 3 + }, + { + "type": "holders", + "identifier": "apache_software_1", + "consolidated_license_expression": "apache-2.0", + "consolidated_holders": [ + "The Apache Software" + ], + "consolidated_copyright": "Copyright (c) The Apache Software", + "core_license_expression": "apache-2.0", + "core_holders": [ + "The Apache Software" + ], + "other_license_expression": null, + "other_holders": [], + "files_count": 1 + }, + { + "type": "holders", + "identifier": "corp_ibm_1", + "consolidated_license_expression": "gpl-1.0-plus", + "consolidated_holders": [ + "IBM Corp." + ], + "consolidated_copyright": "Copyright (c) IBM Corp.", + "core_license_expression": "gpl-1.0-plus", + "core_holders": [ + "IBM Corp." + ], + "other_license_expression": null, + "other_holders": [], + "files_count": 1 + }, + { + "type": "holders", + "identifier": "inc_nexb_1", + "consolidated_license_expression": "lgpl-2.0", + "consolidated_holders": [ + "nexB, Inc." + ], + "consolidated_copyright": "Copyright (c) nexB, Inc.", + "core_license_expression": "lgpl-2.0", + "core_holders": [ + "nexB, Inc." + ], + "other_license_expression": null, + "other_holders": [], + "files_count": 1 } ], + "consolidated_packages": [], "files": [ { "path": "component-package-build", @@ -150,7 +190,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [], "files_count": 8, "dirs_count": 3, @@ -182,10 +222,8 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], - "consolidated_to": [ - "demo_1" - ], + "package_manifests": [], + "consolidated_to": [], "files_count": 1, "dirs_count": 0, "size_count": 261, @@ -216,7 +254,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [ + "package_manifests": [ { "type": "buck", "namespace": null, @@ -254,9 +292,7 @@ "api_data_url": null } ], - "consolidated_to": [ - "demo_1" - ], + "consolidated_to": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -287,7 +323,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "apache_foundation_software_1", "inc_nexb_1" @@ -375,7 +411,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "apache_foundation_software_1" ], @@ -462,7 +498,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "apache_foundation_software_1" ], @@ -549,7 +585,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "apache_foundation_software_1" ], @@ -636,7 +672,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "inc_nexb_1" ], @@ -670,9 +706,10 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" + "apache_software_1", + "corp_ibm_1" ], "files_count": 3, "dirs_count": 0, @@ -757,7 +794,7 @@ } ], "authors": [], - "packages": [ + "package_manifests": [ { "type": "npm", "namespace": null, @@ -798,7 +835,7 @@ } ], "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" + "apache_software_1" ], "files_count": 0, "dirs_count": 0, @@ -883,10 +920,8 @@ } ], "authors": [], - "packages": [], - "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" - ], + "package_manifests": [], + "consolidated_to": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -970,9 +1005,9 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" + "corp_ibm_1" ], "files_count": 0, "dirs_count": 0, diff --git a/tests/summarycode/data/plugin_consolidate/component-package-expected.json b/tests/summarycode/data/plugin_consolidate/component-package-expected.json index f1671d50cb5..eb5fc03a882 100644 --- a/tests/summarycode/data/plugin_consolidate/component-package-expected.json +++ b/tests/summarycode/data/plugin_consolidate/component-package-expected.json @@ -4,6 +4,7 @@ "tool_name": "scancode-toolkit", "options": { "input": "", + "--consolidate": true, "--copyright": true, "--info": true, "--json": "", @@ -18,77 +19,9 @@ "spdx_license_list_version": "3.14", "files_count": 7 } - }, - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--consolidate": true, - "--from-json": true, - "--json": "" - }, - "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": "1.0.0", - "message": null, - "errors": [], - "extra_data": { - "spdx_license_list_version": "3.14", - "files_count": 7 - } - }, - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--consolidate": true, - "--from-json": true, - "--json": "" - }, - "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": "1.0.0", - "message": null, - "errors": [], - "extra_data": { - "spdx_license_list_version": "3.14", - "files_count": 7 - } } ], - "consolidated_components": [ - { - "type": "holders", - "identifier": "apache_foundation_software_1", - "consolidated_license_expression": "apache-2.0", - "consolidated_holders": [ - "The Apache Software Foundation" - ], - "consolidated_copyright": "Copyright (c) The Apache Software Foundation", - "core_license_expression": "apache-2.0", - "core_holders": [ - "The Apache Software Foundation" - ], - "other_license_expression": null, - "other_holders": [], - "files_count": 3 - }, - { - "type": "holders", - "identifier": "inc_nexb_1", - "consolidated_license_expression": "lgpl-2.0", - "consolidated_holders": [ - "nexB, Inc." - ], - "consolidated_copyright": "Copyright (c) nexB, Inc.", - "core_license_expression": "lgpl-2.0", - "core_holders": [ - "nexB, Inc." - ], - "other_license_expression": null, - "other_holders": [], - "files_count": 1 - } - ], - "consolidated_packages": [ + "packages": [ { "type": "npm", "namespace": null, @@ -125,26 +58,76 @@ "purl": "pkg:npm/test-package@0.0.1", "repository_homepage_url": "https://www.npmjs.com/package/test-package", "repository_download_url": "https://registry.npmjs.org/test-package/-/test-package-0.0.1.tgz", - "api_data_url": "https://registry.npmjs.org/test-package/0.0.1", - "identifier": "pkg_npm_test_package_0_0_1_1", - "consolidated_license_expression": "apache-2.0 AND gpl-1.0-plus", + "api_data_url": "https://registry.npmjs.org/test-package/0.0.1" + } + ], + "consolidated_components": [ + { + "type": "holders", + "identifier": "apache_foundation_software_1", + "consolidated_license_expression": "apache-2.0", "consolidated_holders": [ - "IBM Corp.", - "The Apache Software", "The Apache Software Foundation" ], - "consolidated_copyright": "Copyright (c) IBM Corp., The Apache Software, The Apache Software Foundation", + "consolidated_copyright": "Copyright (c) The Apache Software Foundation", "core_license_expression": "apache-2.0", - "core_holders": [], - "other_license_expression": "apache-2.0 AND gpl-1.0-plus", - "other_holders": [ - "The Apache Software Foundation", - "The Apache Software", - "IBM Corp." + "core_holders": [ + "The Apache Software Foundation" ], + "other_license_expression": null, + "other_holders": [], "files_count": 3 + }, + { + "type": "holders", + "identifier": "apache_software_1", + "consolidated_license_expression": "apache-2.0", + "consolidated_holders": [ + "The Apache Software" + ], + "consolidated_copyright": "Copyright (c) The Apache Software", + "core_license_expression": "apache-2.0", + "core_holders": [ + "The Apache Software" + ], + "other_license_expression": null, + "other_holders": [], + "files_count": 1 + }, + { + "type": "holders", + "identifier": "corp_ibm_1", + "consolidated_license_expression": "gpl-1.0-plus", + "consolidated_holders": [ + "IBM Corp." + ], + "consolidated_copyright": "Copyright (c) IBM Corp.", + "core_license_expression": "gpl-1.0-plus", + "core_holders": [ + "IBM Corp." + ], + "other_license_expression": null, + "other_holders": [], + "files_count": 1 + }, + { + "type": "holders", + "identifier": "inc_nexb_1", + "consolidated_license_expression": "lgpl-2.0", + "consolidated_holders": [ + "nexB, Inc." + ], + "consolidated_copyright": "Copyright (c) nexB, Inc.", + "core_license_expression": "lgpl-2.0", + "core_holders": [ + "nexB, Inc." + ], + "other_license_expression": null, + "other_holders": [], + "files_count": 1 } ], + "consolidated_packages": [], "files": [ { "path": "component-package", @@ -171,7 +154,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [], "files_count": 7, "dirs_count": 2, @@ -203,7 +186,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "apache_foundation_software_1", "inc_nexb_1" @@ -291,7 +274,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "apache_foundation_software_1" ], @@ -378,7 +361,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "apache_foundation_software_1" ], @@ -465,7 +448,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "apache_foundation_software_1" ], @@ -552,7 +535,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "inc_nexb_1" ], @@ -586,9 +569,10 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" + "apache_software_1", + "corp_ibm_1" ], "files_count": 3, "dirs_count": 0, @@ -673,7 +657,7 @@ } ], "authors": [], - "packages": [ + "package_manifests": [ { "type": "npm", "namespace": null, @@ -714,7 +698,7 @@ } ], "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" + "apache_software_1" ], "files_count": 0, "dirs_count": 0, @@ -799,10 +783,8 @@ } ], "authors": [], - "packages": [], - "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" - ], + "package_manifests": [], + "consolidated_to": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -886,9 +868,9 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" + "corp_ibm_1" ], "files_count": 0, "dirs_count": 0, diff --git a/tests/summarycode/data/plugin_consolidate/e2fsprogs-expected.json b/tests/summarycode/data/plugin_consolidate/e2fsprogs-expected.json index fe8814cfc51..4a6d080e51f 100644 --- a/tests/summarycode/data/plugin_consolidate/e2fsprogs-expected.json +++ b/tests/summarycode/data/plugin_consolidate/e2fsprogs-expected.json @@ -1189,7 +1189,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -1229,7 +1229,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -1261,7 +1261,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -1329,7 +1329,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sv-request@li.org", @@ -1395,7 +1395,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -1477,7 +1477,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -1517,7 +1517,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -1549,7 +1549,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -1581,7 +1581,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -1613,7 +1613,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -1902,7 +1902,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -1949,7 +1949,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -1998,7 +1998,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -2106,7 +2106,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -2305,7 +2305,7 @@ "end_line": 140 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "j.darrington@elvis.murdoch.edu.au", @@ -3958,7 +3958,7 @@ "end_line": 3594 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@cygnus.com", @@ -4045,7 +4045,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -4215,7 +4215,7 @@ "end_line": 53 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "config-patches@gnu.org", @@ -4355,7 +4355,7 @@ "end_line": 7 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "gord@gnu.ai.mit.edu", @@ -4522,7 +4522,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "config-patches@gnu.org", @@ -4573,7 +4573,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -4827,7 +4827,7 @@ "end_line": 1376 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "gord@gnu.ai.mit.edu", @@ -4945,7 +4945,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "friedman@prep.ai.mit.edu", @@ -4983,7 +4983,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5015,7 +5015,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5183,7 +5183,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bug-autoconf@gnu.org", @@ -5223,7 +5223,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -5272,7 +5272,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -5354,7 +5354,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -5388,7 +5388,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5432,7 +5432,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -5466,7 +5466,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5498,7 +5498,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5530,7 +5530,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5562,7 +5562,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5594,7 +5594,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5626,7 +5626,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5658,7 +5658,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5690,7 +5690,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5722,7 +5722,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5802,7 +5802,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -5842,7 +5842,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5874,7 +5874,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5906,7 +5906,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5938,7 +5938,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5970,7 +5970,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6014,7 +6014,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Ulrich.Windl@rz.uni-regensburg.de", @@ -6054,7 +6054,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6134,7 +6134,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -6232,7 +6232,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sandeen@redhat.com", @@ -6356,7 +6356,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -6401,7 +6401,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6481,7 +6481,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -6515,7 +6515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6547,7 +6547,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6579,7 +6579,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6611,7 +6611,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6643,7 +6643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6723,7 +6723,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -6757,7 +6757,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -6796,7 +6796,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6828,7 +6828,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6860,7 +6860,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6892,7 +6892,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6924,7 +6924,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6956,7 +6956,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6988,7 +6988,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -7020,7 +7020,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "dirson@debian.org", @@ -7058,7 +7058,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -7090,7 +7090,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -7122,7 +7122,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -7434,7 +7434,7 @@ "end_line": 3284 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -7559,7 +7559,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -7591,7 +7591,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -7623,7 +7623,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -7655,7 +7655,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -7687,7 +7687,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -7719,7 +7719,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -7751,7 +7751,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -7783,7 +7783,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -8130,7 +8130,7 @@ "end_line": 13 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -8344,7 +8344,7 @@ "end_line": 14 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -8414,7 +8414,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -8446,7 +8446,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -8478,7 +8478,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -8510,7 +8510,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -8542,7 +8542,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -8717,7 +8717,7 @@ "end_line": 14 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -8787,7 +8787,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -8819,7 +8819,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -8851,7 +8851,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -8883,7 +8883,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -8915,7 +8915,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -8947,7 +8947,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -8979,7 +8979,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9011,7 +9011,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9043,7 +9043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9075,7 +9075,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9107,7 +9107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9139,7 +9139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9171,7 +9171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9203,7 +9203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9235,7 +9235,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9331,7 +9331,7 @@ "end_line": 8 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -9378,7 +9378,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9410,7 +9410,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9496,7 +9496,7 @@ "end_line": 7 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "dirson@debian.org", @@ -9536,7 +9536,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9568,7 +9568,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9606,7 +9606,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9638,7 +9638,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9670,7 +9670,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9702,7 +9702,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9788,7 +9788,7 @@ "end_line": 8 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "dirson@debian.org", @@ -9828,7 +9828,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9860,7 +9860,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9946,7 +9946,7 @@ "end_line": 8 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -9992,7 +9992,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10024,7 +10024,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10056,7 +10056,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10088,7 +10088,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10120,7 +10120,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10152,7 +10152,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10184,7 +10184,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10216,7 +10216,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10248,7 +10248,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10280,7 +10280,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10312,7 +10312,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10344,7 +10344,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10376,7 +10376,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10408,7 +10408,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10440,7 +10440,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10472,7 +10472,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10504,7 +10504,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10536,7 +10536,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10568,7 +10568,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10600,7 +10600,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10686,7 +10686,7 @@ "end_line": 8 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -10732,7 +10732,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10818,7 +10818,7 @@ "end_line": 8 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -10864,7 +10864,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10896,7 +10896,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10928,7 +10928,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10960,7 +10960,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10992,7 +10992,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11024,7 +11024,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11056,7 +11056,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -11099,7 +11099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -11147,7 +11147,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -11181,7 +11181,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11261,7 +11261,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -11349,7 +11349,7 @@ "end_line": 867 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -11443,7 +11443,7 @@ "end_line": 8 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "gt8134b@prism.gatech.edu", @@ -11483,7 +11483,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11563,7 +11563,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -11645,7 +11645,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -11727,7 +11727,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -11809,7 +11809,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -11891,7 +11891,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -11973,7 +11973,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -12055,7 +12055,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -12157,7 +12157,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -12261,7 +12261,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -12361,7 +12361,7 @@ "end_line": 6 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sct@redhat.com", @@ -12449,7 +12449,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -12531,7 +12531,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -12613,7 +12613,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -12695,7 +12695,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -12777,7 +12777,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -12859,7 +12859,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -12941,7 +12941,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -13023,7 +13023,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -13105,7 +13105,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -13187,7 +13187,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -13221,7 +13221,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13253,7 +13253,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13285,7 +13285,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13317,7 +13317,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13349,7 +13349,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13381,7 +13381,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13413,7 +13413,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13445,7 +13445,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13477,7 +13477,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13509,7 +13509,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13541,7 +13541,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13573,7 +13573,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13605,7 +13605,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13637,7 +13637,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "whawes@star.net", @@ -13675,7 +13675,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13707,7 +13707,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13739,7 +13739,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13771,7 +13771,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13803,7 +13803,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13835,7 +13835,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13867,7 +13867,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13969,7 +13969,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14001,7 +14001,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14033,7 +14033,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14065,7 +14065,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14097,7 +14097,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14129,7 +14129,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14161,7 +14161,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14193,7 +14193,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14225,7 +14225,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14263,7 +14263,7 @@ "end_line": 79 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14295,7 +14295,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14327,7 +14327,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14359,7 +14359,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14391,7 +14391,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14423,7 +14423,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14455,7 +14455,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14487,7 +14487,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14589,7 +14589,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14621,7 +14621,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14653,7 +14653,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14685,7 +14685,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14753,7 +14753,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14785,7 +14785,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14817,7 +14817,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14849,7 +14849,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14881,7 +14881,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -14929,7 +14929,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14961,7 +14961,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14993,7 +14993,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15025,7 +15025,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15127,7 +15127,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15159,7 +15159,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15191,7 +15191,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15223,7 +15223,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15255,7 +15255,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15287,7 +15287,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15319,7 +15319,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15351,7 +15351,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15453,7 +15453,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15485,7 +15485,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15517,7 +15517,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15585,7 +15585,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15617,7 +15617,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15649,7 +15649,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15681,7 +15681,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15713,7 +15713,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15745,7 +15745,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15777,7 +15777,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15809,7 +15809,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15933,7 +15933,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -16050,7 +16050,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bug-texinfo@gnu.org", @@ -16151,7 +16151,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -16198,7 +16198,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -16232,7 +16232,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -16264,7 +16264,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -16344,7 +16344,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -16426,7 +16426,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -16508,7 +16508,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -16596,7 +16596,7 @@ "end_line": 499 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -16684,7 +16684,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -16766,7 +16766,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -16848,7 +16848,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -16930,7 +16930,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -17012,7 +17012,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -17094,7 +17094,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -17176,7 +17176,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -17258,7 +17258,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -17338,7 +17338,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -17372,7 +17372,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -17452,7 +17452,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -17554,7 +17554,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -17636,7 +17636,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -17718,7 +17718,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -17752,7 +17752,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -17832,7 +17832,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "mike@ai.mit.edu", @@ -17920,7 +17920,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "mike@ai.mit.edu", @@ -18008,7 +18008,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -18090,7 +18090,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -18172,7 +18172,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -18254,7 +18254,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -18336,7 +18336,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -18418,7 +18418,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -18500,7 +18500,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -18582,7 +18582,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -18664,7 +18664,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -18698,7 +18698,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -18778,7 +18778,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -18864,7 +18864,7 @@ "end_line": 4 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sct@redhat.com", @@ -18950,7 +18950,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -19032,7 +19032,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -19120,7 +19120,7 @@ "end_line": 4 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sct@redhat.com", @@ -19160,7 +19160,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -19240,7 +19240,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -19322,7 +19322,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -19404,7 +19404,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -19486,7 +19486,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -19596,7 +19596,7 @@ "end_line": 10 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -19710,7 +19710,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -19753,7 +19753,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -19881,7 +19881,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -19916,7 +19916,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -19948,7 +19948,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@MIT.EDU", @@ -20014,7 +20014,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -20060,7 +20060,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -20106,7 +20106,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -20140,7 +20140,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -20242,7 +20242,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -20311,7 +20311,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tgud@tochnapc2.technion.ac.il", @@ -20425,7 +20425,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tgud@tochnapc2.technion.ac.il", @@ -20494,7 +20494,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -20547,7 +20547,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -20581,7 +20581,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tgud@tochnapc2.technion.ac.il", @@ -20619,7 +20619,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -20663,7 +20663,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -20709,7 +20709,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -20801,7 +20801,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -20847,7 +20847,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -20893,7 +20893,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -20939,7 +20939,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -20985,7 +20985,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -21031,7 +21031,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -21077,7 +21077,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -21123,7 +21123,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Christian.Bac@int-evry.fr", @@ -21163,7 +21163,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21195,7 +21195,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21227,7 +21227,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21259,7 +21259,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21291,7 +21291,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21323,7 +21323,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21355,7 +21355,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21387,7 +21387,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21419,7 +21419,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21451,7 +21451,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21483,7 +21483,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21515,7 +21515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21547,7 +21547,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21579,7 +21579,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21611,7 +21611,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21643,7 +21643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21723,7 +21723,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -21757,7 +21757,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21789,7 +21789,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21821,7 +21821,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21853,7 +21853,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21885,7 +21885,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21917,7 +21917,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21949,7 +21949,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -21981,7 +21981,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -22013,7 +22013,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -22045,7 +22045,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -22077,7 +22077,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -22109,7 +22109,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -22141,7 +22141,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -22173,7 +22173,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -22205,7 +22205,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -22237,7 +22237,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -22269,7 +22269,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -22337,7 +22337,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "eowmob@exp-math.uni-essen.de", @@ -22375,7 +22375,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -22407,7 +22407,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -22489,7 +22489,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -22523,7 +22523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -22603,7 +22603,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -22685,7 +22685,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "st001906@hrz1.hrz.tu-darmstadt.de", @@ -22778,7 +22778,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -22860,7 +22860,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -22942,7 +22942,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -23024,7 +23024,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -23106,7 +23106,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -23188,7 +23188,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -23276,7 +23276,7 @@ "end_line": 2 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@gnu.ai.mit.edu", @@ -23370,7 +23370,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@gnu.org", @@ -23458,7 +23458,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -23546,7 +23546,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@cygnus.com", @@ -23634,7 +23634,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -23716,7 +23716,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -23798,7 +23798,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -23886,7 +23886,7 @@ "end_line": 2 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@gnu.ai.mit.edu", @@ -23974,7 +23974,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -24056,7 +24056,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -24144,7 +24144,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@cygnus.com", @@ -24232,7 +24232,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -24320,7 +24320,7 @@ "end_line": 20 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bruno@clisp.org", @@ -24408,7 +24408,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -24490,7 +24490,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bugs@gnu.org", @@ -24578,7 +24578,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -24671,7 +24671,7 @@ "end_line": 20 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@gnu.org", @@ -24781,7 +24781,7 @@ "end_line": 19 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bruno@clisp.org", @@ -24869,7 +24869,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -24951,7 +24951,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -25033,7 +25033,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -25115,7 +25115,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -25203,7 +25203,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@cygnus.com", @@ -25297,7 +25297,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@cygnus.com", @@ -25475,7 +25475,7 @@ "end_line": 329 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@cygnus.com", @@ -25569,7 +25569,7 @@ "end_line": 4 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@cygnus.com", @@ -25657,7 +25657,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -25739,7 +25739,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -25821,7 +25821,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -25903,7 +25903,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -25991,7 +25991,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bruno@clisp.org", @@ -26085,7 +26085,7 @@ "end_line": 20 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "haible@clisp.cons.org", @@ -26179,7 +26179,7 @@ "end_line": 20 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "haible@clisp.cons.org", @@ -26273,7 +26273,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bruno@clisp.org", @@ -26367,7 +26367,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bruno@clisp.org", @@ -26455,7 +26455,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -26537,7 +26537,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -26619,7 +26619,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -26701,7 +26701,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -26783,7 +26783,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -26865,7 +26865,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -26899,7 +26899,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -26943,7 +26943,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -26977,7 +26977,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -27009,7 +27009,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -27041,7 +27041,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -27073,7 +27073,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -27105,7 +27105,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -27137,7 +27137,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -27169,7 +27169,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -27201,7 +27201,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -27248,7 +27248,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -27330,7 +27330,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -27428,7 +27428,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -27462,7 +27462,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -27552,7 +27552,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -27586,7 +27586,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -27676,7 +27676,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -27768,7 +27768,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -27870,7 +27870,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -27962,7 +27962,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -28044,7 +28044,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -28205,7 +28205,7 @@ "end_line": 53 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@turbolinux.com", @@ -28254,7 +28254,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -28334,7 +28334,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -28446,7 +28446,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "kay.sievers@vrfy.org", @@ -28571,7 +28571,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -28663,7 +28663,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -28755,7 +28755,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -28847,7 +28847,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -28939,7 +28939,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -28973,7 +28973,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29005,7 +29005,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29037,7 +29037,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29069,7 +29069,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29101,7 +29101,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29133,7 +29133,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29165,7 +29165,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29197,7 +29197,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29229,7 +29229,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29261,7 +29261,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29293,7 +29293,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29325,7 +29325,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29357,7 +29357,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29389,7 +29389,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29421,7 +29421,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29453,7 +29453,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29485,7 +29485,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29517,7 +29517,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29549,7 +29549,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29581,7 +29581,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29613,7 +29613,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29645,7 +29645,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29677,7 +29677,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29709,7 +29709,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29741,7 +29741,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29773,7 +29773,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29805,7 +29805,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29837,7 +29837,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29869,7 +29869,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29901,7 +29901,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29933,7 +29933,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29965,7 +29965,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -29997,7 +29997,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -30029,7 +30029,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -30061,7 +30061,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -30093,7 +30093,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -30125,7 +30125,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -30157,7 +30157,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -30189,7 +30189,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -30221,7 +30221,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -30301,7 +30301,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -30383,7 +30383,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -30417,7 +30417,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -30465,7 +30465,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -30497,7 +30497,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -30545,7 +30545,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -30627,7 +30627,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -30715,7 +30715,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -30791,7 +30791,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -30823,7 +30823,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -30903,7 +30903,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -30985,7 +30985,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -31073,7 +31073,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -31161,7 +31161,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -31249,7 +31249,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -31337,7 +31337,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -31425,7 +31425,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -31513,7 +31513,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -31601,7 +31601,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -31689,7 +31689,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -31777,7 +31777,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -31865,7 +31865,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -31953,7 +31953,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -32051,7 +32051,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -32145,7 +32145,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -32233,7 +32233,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -32321,7 +32321,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -32409,7 +32409,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -32497,7 +32497,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -32585,7 +32585,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -32661,7 +32661,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -32741,7 +32741,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -32829,7 +32829,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -32917,7 +32917,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -32993,7 +32993,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -33025,7 +33025,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -33073,7 +33073,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -33107,7 +33107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -33151,7 +33151,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -33227,7 +33227,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -33271,7 +33271,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -33303,7 +33303,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -33467,7 +33467,7 @@ "end_line": 514 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -33557,7 +33557,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -33604,7 +33604,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -33638,7 +33638,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -33718,7 +33718,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -33798,7 +33798,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -33830,7 +33830,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -33862,7 +33862,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -33936,7 +33936,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -34010,7 +34010,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -34078,7 +34078,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -34110,7 +34110,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -34145,7 +34145,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -34177,7 +34177,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -34209,7 +34209,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -34241,7 +34241,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -34285,7 +34285,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -34319,7 +34319,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -34351,7 +34351,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -34395,7 +34395,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -34429,7 +34429,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -34461,7 +34461,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -34493,7 +34493,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -34525,7 +34525,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -34557,7 +34557,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -34643,7 +34643,7 @@ "end_line": 32 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "innovation@andrew.cmu.edu", @@ -34689,7 +34689,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -34721,7 +34721,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -34753,7 +34753,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -34785,7 +34785,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -34900,7 +34900,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bug-texinfo@gnu.org", @@ -35055,7 +35055,7 @@ "end_line": 12 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -35089,7 +35089,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -35155,7 +35155,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -35189,7 +35189,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -35269,7 +35269,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -35351,7 +35351,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -35433,7 +35433,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -35515,7 +35515,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -35603,7 +35603,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "darrick.wong@oracle.com", @@ -35689,7 +35689,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -35771,7 +35771,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -35853,7 +35853,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -35935,7 +35935,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -36023,7 +36023,7 @@ "end_line": 31 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -36105,7 +36105,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -36187,7 +36187,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -36269,7 +36269,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "lczerner@redhat.com", @@ -36363,7 +36363,7 @@ "end_line": 6 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jrs@us.ibm.com", @@ -36451,7 +36451,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -36533,7 +36533,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -36615,7 +36615,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -36697,7 +36697,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -36779,7 +36779,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -36861,7 +36861,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -36943,7 +36943,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -37025,7 +37025,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -37095,7 +37095,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -37175,7 +37175,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bgardner@wabtec.com", @@ -37326,7 +37326,7 @@ "end_line": 15 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Matt_Domsch@dell.com", @@ -37369,7 +37369,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -37459,7 +37459,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@clusterfs.com", @@ -37547,7 +37547,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -37629,7 +37629,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -37717,7 +37717,7 @@ "end_line": 7 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -37797,7 +37797,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -37879,7 +37879,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -38015,7 +38015,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jeremy@zip.com.au", @@ -38115,7 +38115,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -38198,7 +38198,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -38280,7 +38280,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -38362,7 +38362,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -38444,7 +38444,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -38526,7 +38526,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -38572,7 +38572,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "a.gruenbacher@computer.org", @@ -38634,7 +38634,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -38720,7 +38720,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -38754,7 +38754,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -38834,7 +38834,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -38868,7 +38868,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -38948,7 +38948,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -39036,7 +39036,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "info@clusterfs.com", @@ -39081,7 +39081,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -39171,7 +39171,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "a.gruenbacher@computer.org", @@ -39260,7 +39260,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -39342,7 +39342,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -39392,7 +39392,7 @@ "end_line": 8 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "mfasheh@suse.com", @@ -39490,7 +39490,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -39572,7 +39572,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -39654,7 +39654,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -39736,7 +39736,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -39818,7 +39818,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -39900,7 +39900,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -39934,7 +39934,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -40014,7 +40014,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -40096,7 +40096,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -40188,7 +40188,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -40281,7 +40281,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -40316,7 +40316,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -40348,7 +40348,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -40428,7 +40428,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -40510,7 +40510,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -40592,7 +40592,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -40674,7 +40674,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -40756,7 +40756,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -40838,7 +40838,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -40920,7 +40920,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "wenqing.lz@taobao.com", @@ -41008,7 +41008,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -41090,7 +41090,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -41124,7 +41124,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -41204,7 +41204,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -41286,7 +41286,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -41368,7 +41368,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -41402,7 +41402,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -41488,7 +41488,7 @@ "end_line": 4 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sct@redhat.com", @@ -41526,7 +41526,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -41606,7 +41606,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -41688,7 +41688,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -41770,7 +41770,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -41852,7 +41852,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -41934,7 +41934,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -42016,7 +42016,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -42098,7 +42098,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -42180,7 +42180,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -42262,7 +42262,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -42354,7 +42354,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -42452,7 +42452,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "andreys@ns.cr.cyco.com", @@ -42541,7 +42541,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -42623,7 +42623,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -42705,7 +42705,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -42787,7 +42787,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "lczerner@redhat.com", @@ -42881,7 +42881,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "lczerner@redhat.com", @@ -42985,7 +42985,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "andrea@suse.de", @@ -43079,7 +43079,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "andrea@suse.de", @@ -43167,7 +43167,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -43249,7 +43249,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -43331,7 +43331,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -43411,7 +43411,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -43562,7 +43562,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sam@hocevar.net", @@ -43719,7 +43719,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sam@hocevar.net", @@ -43759,7 +43759,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -43839,7 +43839,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -43921,7 +43921,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -43955,7 +43955,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -44055,7 +44055,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Shlomi@exanet.com", @@ -44151,7 +44151,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -44185,7 +44185,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -44217,7 +44217,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -44327,7 +44327,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -44363,7 +44363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -44431,7 +44431,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -44463,7 +44463,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -44495,7 +44495,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -44527,7 +44527,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -44595,7 +44595,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -44705,7 +44705,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -44790,7 +44790,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -44872,7 +44872,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -44954,7 +44954,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -44988,7 +44988,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -45020,7 +45020,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -45052,7 +45052,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -45132,7 +45132,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -45214,7 +45214,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -45248,7 +45248,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -45328,7 +45328,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -45410,7 +45410,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -45492,7 +45492,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -45574,7 +45574,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -45656,7 +45656,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -45690,7 +45690,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -45770,7 +45770,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -45852,7 +45852,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -45940,7 +45940,7 @@ "end_line": 6 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "aneesh.kumar@linux.vnet.ibm.com", @@ -46028,7 +46028,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -46110,7 +46110,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -46144,7 +46144,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -46224,7 +46224,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -46306,7 +46306,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -46388,7 +46388,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -46470,7 +46470,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -46552,7 +46552,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -46586,7 +46586,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -46630,7 +46630,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -46664,7 +46664,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -46696,7 +46696,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -46728,7 +46728,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -46808,7 +46808,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -46882,7 +46882,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -46962,7 +46962,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -47036,7 +47036,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -47110,7 +47110,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -47184,7 +47184,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -47258,7 +47258,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -47332,7 +47332,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -47412,7 +47412,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -47456,7 +47456,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -47490,7 +47490,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -47564,7 +47564,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -47638,7 +47638,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -47712,7 +47712,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -47786,7 +47786,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -47860,7 +47860,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -47934,7 +47934,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -47972,7 +47972,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -48004,7 +48004,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -48078,7 +48078,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -48110,7 +48110,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -48142,7 +48142,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -48174,7 +48174,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -48206,7 +48206,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -48280,7 +48280,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -48312,7 +48312,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -48359,7 +48359,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -48393,7 +48393,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -48473,7 +48473,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -48555,7 +48555,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -48589,7 +48589,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -48621,7 +48621,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -48653,7 +48653,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -48733,7 +48733,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "kaz@ashi.footprints.net", @@ -48821,7 +48821,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "kaz@ashi.footprints.net", @@ -48861,7 +48861,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jack@suse.cz", @@ -48899,7 +48899,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adityakali@google.com", @@ -48937,7 +48937,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -48969,7 +48969,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -49059,7 +49059,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -49142,7 +49142,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -49176,7 +49176,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -49306,7 +49306,7 @@ "end_line": 8 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -49432,7 +49432,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -49514,7 +49514,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -49596,7 +49596,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -49630,7 +49630,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jack@suse.cz", @@ -49673,7 +49673,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adityakali@google.com", @@ -49716,7 +49716,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jack@suse.cz", @@ -49754,7 +49754,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -49786,7 +49786,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jack@suse.cz", @@ -49824,7 +49824,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -49856,7 +49856,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -49900,7 +49900,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -49970,7 +49970,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -50002,7 +50002,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -50082,7 +50082,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -50164,7 +50164,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -50198,7 +50198,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -50278,7 +50278,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -50360,7 +50360,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -50406,7 +50406,7 @@ "end_line": 4 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "andreys@ns.cr.cyco.com", @@ -50492,7 +50492,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -50574,7 +50574,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -50656,7 +50656,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -50738,7 +50738,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -50820,7 +50820,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -50902,7 +50902,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -50990,7 +50990,7 @@ "end_line": 42 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -51082,7 +51082,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -51116,7 +51116,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -51196,7 +51196,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -51278,7 +51278,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -51370,7 +51370,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -51462,7 +51462,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -51554,7 +51554,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -51646,7 +51646,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -51738,7 +51738,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -51830,7 +51830,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -51922,7 +51922,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -51956,7 +51956,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -52036,7 +52036,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -52128,7 +52128,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -52162,7 +52162,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -52212,7 +52212,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -52246,7 +52246,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -52289,7 +52289,7 @@ "end_line": 229 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Remy.Card@linux.org", @@ -52421,7 +52421,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -52521,7 +52521,7 @@ "end_line": 12 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -52561,7 +52561,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -52647,7 +52647,7 @@ "end_line": 160 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@turbolinux.com", @@ -52739,7 +52739,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -52782,7 +52782,7 @@ "end_line": 200 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Remy.Card@linux.org", @@ -52879,7 +52879,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -52965,7 +52965,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "liezhi.yang@windriver.com", @@ -53005,7 +53005,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -53096,7 +53096,7 @@ "end_line": 106 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Remy.Card@linux.org", @@ -53205,7 +53205,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -53256,7 +53256,7 @@ "end_line": 93 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@sun.com", @@ -53348,7 +53348,7 @@ "end_line": 7 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "rupesh@sun.com", @@ -53393,7 +53393,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -53473,7 +53473,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -53517,7 +53517,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -53603,7 +53603,7 @@ "end_line": 312 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -53697,7 +53697,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -53779,7 +53779,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -53867,7 +53867,7 @@ "end_line": 47 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -53967,7 +53967,7 @@ "end_line": 4 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "aeb@cwi.nl", @@ -54043,7 +54043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -54129,7 +54129,7 @@ "end_line": 78 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "aneesh.kumar@linux.vnet.ibm.com", @@ -54229,7 +54229,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "aneesh.kumar@linux.vnet.ibm.com", @@ -54273,7 +54273,7 @@ "end_line": 69 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "mhalcrow@google.com", @@ -54339,7 +54339,7 @@ "end_line": 8 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "mhalcrow@google.com", @@ -54388,7 +54388,7 @@ "end_line": 87 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "a-fujita@rs.jp.nec.com", @@ -54449,7 +54449,7 @@ "end_line": 7 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "a-fujita@rs.jp.nec.com", @@ -54542,7 +54542,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -54588,7 +54588,7 @@ "end_line": 62 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -54674,7 +54674,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -54762,7 +54762,7 @@ "end_line": 28 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -54862,7 +54862,7 @@ "end_line": 45 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "ssd@nevets.oau.org", @@ -54970,7 +54970,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -55064,7 +55064,7 @@ "end_line": 9 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -55109,7 +55109,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -55195,7 +55195,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "darrick.wong@oracle.com", @@ -55281,7 +55281,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -55369,7 +55369,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -55449,7 +55449,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -55531,7 +55531,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -55619,7 +55619,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -55664,7 +55664,7 @@ "end_line": 46 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Remy.Card@linux.org", @@ -55761,7 +55761,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -55799,7 +55799,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -55831,7 +55831,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -55917,7 +55917,7 @@ "end_line": 850 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -56011,7 +56011,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -56099,7 +56099,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -56133,7 +56133,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -56213,7 +56213,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -56306,7 +56306,7 @@ "end_line": 36 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Remy.Card@linux.org", @@ -56405,7 +56405,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -56454,7 +56454,7 @@ "end_line": 6 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "alknaff@innet.lu", @@ -56497,7 +56497,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -56555,7 +56555,7 @@ "end_line": 768 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Remy.Card@linux.org", @@ -56677,7 +56677,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -56768,7 +56768,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -56848,7 +56848,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -56930,7 +56930,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -57018,7 +57018,7 @@ "end_line": 92 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -57112,7 +57112,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -57152,7 +57152,7 @@ "end_line": 12 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -57244,7 +57244,7 @@ "end_line": 59 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -57336,7 +57336,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -57370,7 +57370,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -57405,7 +57405,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -57485,7 +57485,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@gnu.ai.mit.edu", @@ -57525,7 +57525,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -57563,7 +57563,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -57595,7 +57595,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "en@quot.po", @@ -57638,7 +57638,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -57670,7 +57670,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -57702,7 +57702,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -57804,7 +57804,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "david.planella@gmail.com", @@ -57870,7 +57870,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -57972,7 +57972,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "mitr@volny.cz", @@ -58038,7 +58038,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -58140,7 +58140,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -58201,7 +58201,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -58303,7 +58303,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "olke@users.sourceforge.net", @@ -58422,7 +58422,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -58478,7 +58478,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -58516,7 +58516,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -58554,7 +58554,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -58650,7 +58650,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "benno@vertaalt.nl", @@ -58706,7 +58706,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -58808,7 +58808,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "max@upn.mx", @@ -58874,7 +58874,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -58970,7 +58970,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "lanurmi@iki.fi", @@ -59026,7 +59026,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -59138,7 +59138,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "robitail@IRO.UMontreal.CA", @@ -59200,7 +59200,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -59296,7 +59296,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -59360,7 +59360,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -59456,7 +59456,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "arif_endro@yahoo.com", @@ -59512,7 +59512,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -59544,7 +59544,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -59640,7 +59640,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "lupin85@email.it", @@ -59706,7 +59706,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -59802,7 +59802,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sharuzzaman@gmail.com", @@ -59858,7 +59858,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -59960,7 +59960,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "benno@vertaalt.nl", @@ -60026,7 +60026,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -60128,7 +60128,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "qboosh@pld-linux.org", @@ -60184,7 +60184,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -60286,7 +60286,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -60347,7 +60347,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -60379,7 +60379,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -60411,7 +60411,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -60496,7 +60496,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "uskokovic@etf.bg.ac.yu", @@ -60555,7 +60555,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -60657,7 +60657,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "goeran@uddeborg.se", @@ -60713,7 +60713,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -60814,7 +60814,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "nilgun@buguner.name.tr", @@ -60880,7 +60880,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -60982,7 +60982,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -61048,7 +61048,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -61165,7 +61165,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "clytie@riverland.net.au", @@ -61237,7 +61237,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -61327,7 +61327,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drdarkraven@gmail.com", @@ -61396,7 +61396,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -61443,7 +61443,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -61477,7 +61477,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -61567,7 +61567,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -61660,7 +61660,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -61743,7 +61743,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -61851,7 +61851,7 @@ "end_line": 171 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -61951,7 +61951,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -62044,7 +62044,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -62127,7 +62127,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -62219,7 +62219,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -62254,7 +62254,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -62344,7 +62344,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -62379,7 +62379,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -62411,7 +62411,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -62445,7 +62445,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -62559,7 +62559,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "darrick.wong@oracle.com", @@ -62605,7 +62605,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "e2scrub@host.domain.name", @@ -62697,7 +62697,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "darrick.wong@oracle.com", @@ -62735,7 +62735,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -62767,7 +62767,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -62881,7 +62881,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "darrick.wong@oracle.com", @@ -62927,7 +62927,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63013,7 +63013,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "darrick.wong@oracle.com", @@ -63051,7 +63051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63083,7 +63083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63169,7 +63169,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "darrick.wong@oracle.com", @@ -63207,7 +63207,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63239,7 +63239,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63271,7 +63271,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63303,7 +63303,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63335,7 +63335,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63367,7 +63367,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63399,7 +63399,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63431,7 +63431,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63463,7 +63463,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63495,7 +63495,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63527,7 +63527,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63559,7 +63559,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63591,7 +63591,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63623,7 +63623,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63655,7 +63655,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63687,7 +63687,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63719,7 +63719,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63751,7 +63751,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63783,7 +63783,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63815,7 +63815,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63847,7 +63847,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63879,7 +63879,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63911,7 +63911,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63943,7 +63943,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -63975,7 +63975,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64007,7 +64007,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64039,7 +64039,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64071,7 +64071,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64103,7 +64103,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64135,7 +64135,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64167,7 +64167,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64199,7 +64199,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64231,7 +64231,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64263,7 +64263,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64295,7 +64295,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64327,7 +64327,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64359,7 +64359,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64391,7 +64391,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64423,7 +64423,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64455,7 +64455,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64487,7 +64487,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64519,7 +64519,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64551,7 +64551,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64583,7 +64583,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64615,7 +64615,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64647,7 +64647,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -64685,7 +64685,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64717,7 +64717,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64749,7 +64749,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64781,7 +64781,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64813,7 +64813,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64845,7 +64845,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64877,7 +64877,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64909,7 +64909,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64941,7 +64941,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -64973,7 +64973,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65005,7 +65005,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65037,7 +65037,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65069,7 +65069,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65101,7 +65101,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65133,7 +65133,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65165,7 +65165,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65197,7 +65197,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65229,7 +65229,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65261,7 +65261,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65293,7 +65293,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65325,7 +65325,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65357,7 +65357,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65389,7 +65389,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65421,7 +65421,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65453,7 +65453,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65485,7 +65485,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65517,7 +65517,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65549,7 +65549,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65581,7 +65581,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65613,7 +65613,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65645,7 +65645,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65677,7 +65677,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65709,7 +65709,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65741,7 +65741,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65773,7 +65773,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65805,7 +65805,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65837,7 +65837,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65869,7 +65869,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65901,7 +65901,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65933,7 +65933,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65965,7 +65965,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -65997,7 +65997,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66029,7 +66029,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66061,7 +66061,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66093,7 +66093,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66125,7 +66125,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66157,7 +66157,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66189,7 +66189,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66221,7 +66221,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66253,7 +66253,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66285,7 +66285,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66317,7 +66317,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66349,7 +66349,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66381,7 +66381,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66413,7 +66413,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66445,7 +66445,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66477,7 +66477,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66509,7 +66509,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66541,7 +66541,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66573,7 +66573,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66605,7 +66605,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66637,7 +66637,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66669,7 +66669,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66701,7 +66701,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66733,7 +66733,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66765,7 +66765,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66797,7 +66797,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66829,7 +66829,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66861,7 +66861,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66893,7 +66893,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66925,7 +66925,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66957,7 +66957,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -66989,7 +66989,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67021,7 +67021,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67053,7 +67053,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67085,7 +67085,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67117,7 +67117,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67149,7 +67149,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67181,7 +67181,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67213,7 +67213,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67245,7 +67245,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67277,7 +67277,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67309,7 +67309,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67341,7 +67341,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67373,7 +67373,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67405,7 +67405,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67437,7 +67437,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67469,7 +67469,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67501,7 +67501,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67533,7 +67533,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67565,7 +67565,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67597,7 +67597,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67629,7 +67629,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67661,7 +67661,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67693,7 +67693,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67725,7 +67725,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67757,7 +67757,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67789,7 +67789,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67821,7 +67821,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67853,7 +67853,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67885,7 +67885,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67917,7 +67917,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67949,7 +67949,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -67981,7 +67981,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68013,7 +68013,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68045,7 +68045,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68077,7 +68077,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68109,7 +68109,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68141,7 +68141,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68173,7 +68173,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68205,7 +68205,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68237,7 +68237,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68269,7 +68269,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68301,7 +68301,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68333,7 +68333,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68365,7 +68365,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68397,7 +68397,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68429,7 +68429,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68461,7 +68461,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68493,7 +68493,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68525,7 +68525,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68557,7 +68557,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68589,7 +68589,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68621,7 +68621,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68653,7 +68653,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68685,7 +68685,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68717,7 +68717,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68749,7 +68749,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68781,7 +68781,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68813,7 +68813,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68845,7 +68845,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68877,7 +68877,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68909,7 +68909,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68941,7 +68941,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -68973,7 +68973,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69005,7 +69005,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69037,7 +69037,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69069,7 +69069,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69101,7 +69101,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69133,7 +69133,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69165,7 +69165,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69197,7 +69197,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69229,7 +69229,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69261,7 +69261,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69293,7 +69293,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69325,7 +69325,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69357,7 +69357,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69389,7 +69389,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69421,7 +69421,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69453,7 +69453,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69485,7 +69485,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69517,7 +69517,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69549,7 +69549,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69581,7 +69581,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69613,7 +69613,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69645,7 +69645,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69677,7 +69677,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69709,7 +69709,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69741,7 +69741,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69773,7 +69773,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69805,7 +69805,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69837,7 +69837,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69869,7 +69869,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69901,7 +69901,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69933,7 +69933,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69965,7 +69965,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -69997,7 +69997,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70029,7 +70029,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70061,7 +70061,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70093,7 +70093,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70125,7 +70125,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70157,7 +70157,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70189,7 +70189,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70221,7 +70221,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70253,7 +70253,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70285,7 +70285,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70317,7 +70317,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70349,7 +70349,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70381,7 +70381,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70413,7 +70413,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70445,7 +70445,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70477,7 +70477,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70509,7 +70509,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70541,7 +70541,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70573,7 +70573,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70605,7 +70605,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70637,7 +70637,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70669,7 +70669,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70701,7 +70701,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70733,7 +70733,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70765,7 +70765,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70797,7 +70797,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70829,7 +70829,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70861,7 +70861,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70893,7 +70893,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70925,7 +70925,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70957,7 +70957,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -70989,7 +70989,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71021,7 +71021,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71053,7 +71053,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71085,7 +71085,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71117,7 +71117,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71149,7 +71149,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71181,7 +71181,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71213,7 +71213,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71245,7 +71245,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71277,7 +71277,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71309,7 +71309,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71341,7 +71341,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71373,7 +71373,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71405,7 +71405,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71437,7 +71437,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71469,7 +71469,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71501,7 +71501,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71533,7 +71533,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71565,7 +71565,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71597,7 +71597,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71629,7 +71629,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71661,7 +71661,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71693,7 +71693,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71725,7 +71725,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71757,7 +71757,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71789,7 +71789,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71821,7 +71821,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71853,7 +71853,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71885,7 +71885,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71917,7 +71917,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71949,7 +71949,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -71981,7 +71981,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72013,7 +72013,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72045,7 +72045,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72077,7 +72077,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72109,7 +72109,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72141,7 +72141,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72173,7 +72173,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72205,7 +72205,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72237,7 +72237,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72269,7 +72269,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72301,7 +72301,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72333,7 +72333,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72365,7 +72365,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72397,7 +72397,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72429,7 +72429,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72461,7 +72461,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72493,7 +72493,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72525,7 +72525,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72557,7 +72557,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72589,7 +72589,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72621,7 +72621,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72653,7 +72653,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72685,7 +72685,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72717,7 +72717,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72749,7 +72749,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72781,7 +72781,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72813,7 +72813,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72845,7 +72845,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72877,7 +72877,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72909,7 +72909,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72941,7 +72941,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -72973,7 +72973,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73005,7 +73005,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73037,7 +73037,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73069,7 +73069,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73101,7 +73101,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73133,7 +73133,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73165,7 +73165,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73197,7 +73197,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73229,7 +73229,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73261,7 +73261,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73293,7 +73293,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73325,7 +73325,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73357,7 +73357,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73389,7 +73389,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73421,7 +73421,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73453,7 +73453,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73485,7 +73485,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73517,7 +73517,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73549,7 +73549,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73581,7 +73581,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73613,7 +73613,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73645,7 +73645,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73677,7 +73677,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73709,7 +73709,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73741,7 +73741,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73773,7 +73773,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73805,7 +73805,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73837,7 +73837,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73869,7 +73869,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73901,7 +73901,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73933,7 +73933,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73965,7 +73965,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -73997,7 +73997,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74029,7 +74029,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74061,7 +74061,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74093,7 +74093,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74125,7 +74125,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74157,7 +74157,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74189,7 +74189,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74221,7 +74221,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74253,7 +74253,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74285,7 +74285,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74317,7 +74317,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74349,7 +74349,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74381,7 +74381,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74413,7 +74413,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74445,7 +74445,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74477,7 +74477,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74509,7 +74509,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74541,7 +74541,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74573,7 +74573,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74605,7 +74605,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74637,7 +74637,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74669,7 +74669,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74701,7 +74701,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74733,7 +74733,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74765,7 +74765,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74797,7 +74797,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74829,7 +74829,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74861,7 +74861,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74893,7 +74893,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74925,7 +74925,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74957,7 +74957,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -74989,7 +74989,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75021,7 +75021,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75053,7 +75053,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75085,7 +75085,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75117,7 +75117,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75149,7 +75149,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75181,7 +75181,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75213,7 +75213,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75245,7 +75245,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75277,7 +75277,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75309,7 +75309,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75341,7 +75341,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75373,7 +75373,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75405,7 +75405,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75437,7 +75437,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75469,7 +75469,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75501,7 +75501,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75533,7 +75533,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75565,7 +75565,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75597,7 +75597,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75629,7 +75629,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75661,7 +75661,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75693,7 +75693,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75725,7 +75725,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75757,7 +75757,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75789,7 +75789,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75821,7 +75821,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75853,7 +75853,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75885,7 +75885,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75917,7 +75917,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75949,7 +75949,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -75981,7 +75981,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76013,7 +76013,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76045,7 +76045,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76077,7 +76077,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76109,7 +76109,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76141,7 +76141,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76173,7 +76173,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76205,7 +76205,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76237,7 +76237,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76269,7 +76269,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76301,7 +76301,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76333,7 +76333,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76365,7 +76365,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76397,7 +76397,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76429,7 +76429,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76461,7 +76461,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76493,7 +76493,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76525,7 +76525,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76557,7 +76557,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76589,7 +76589,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76621,7 +76621,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76653,7 +76653,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76685,7 +76685,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76717,7 +76717,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76749,7 +76749,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76781,7 +76781,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76813,7 +76813,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76845,7 +76845,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76877,7 +76877,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76909,7 +76909,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76941,7 +76941,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -76973,7 +76973,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77005,7 +77005,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77037,7 +77037,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77069,7 +77069,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77101,7 +77101,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77133,7 +77133,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77165,7 +77165,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77197,7 +77197,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77229,7 +77229,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77261,7 +77261,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77293,7 +77293,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77325,7 +77325,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77357,7 +77357,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77389,7 +77389,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77421,7 +77421,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77453,7 +77453,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77485,7 +77485,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77517,7 +77517,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77549,7 +77549,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77581,7 +77581,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77613,7 +77613,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77645,7 +77645,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77677,7 +77677,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77709,7 +77709,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77741,7 +77741,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77773,7 +77773,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77805,7 +77805,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77837,7 +77837,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77869,7 +77869,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77901,7 +77901,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77933,7 +77933,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77965,7 +77965,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -77997,7 +77997,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78029,7 +78029,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78061,7 +78061,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78093,7 +78093,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78125,7 +78125,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78157,7 +78157,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78189,7 +78189,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78221,7 +78221,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78253,7 +78253,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78285,7 +78285,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78317,7 +78317,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78349,7 +78349,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78381,7 +78381,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78413,7 +78413,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78445,7 +78445,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78477,7 +78477,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78509,7 +78509,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78541,7 +78541,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78573,7 +78573,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78605,7 +78605,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78637,7 +78637,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78669,7 +78669,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78701,7 +78701,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78733,7 +78733,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78765,7 +78765,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78797,7 +78797,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78829,7 +78829,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78861,7 +78861,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78893,7 +78893,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78925,7 +78925,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78957,7 +78957,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -78989,7 +78989,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79021,7 +79021,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79053,7 +79053,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79085,7 +79085,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79117,7 +79117,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79149,7 +79149,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79181,7 +79181,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79213,7 +79213,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79245,7 +79245,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79277,7 +79277,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79309,7 +79309,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79341,7 +79341,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79373,7 +79373,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79405,7 +79405,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79437,7 +79437,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79469,7 +79469,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79501,7 +79501,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79533,7 +79533,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79565,7 +79565,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79597,7 +79597,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79629,7 +79629,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79661,7 +79661,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79693,7 +79693,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79725,7 +79725,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79757,7 +79757,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79789,7 +79789,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79821,7 +79821,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79853,7 +79853,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79885,7 +79885,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79917,7 +79917,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79949,7 +79949,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -79981,7 +79981,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80013,7 +80013,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80045,7 +80045,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80077,7 +80077,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80109,7 +80109,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80141,7 +80141,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80173,7 +80173,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80205,7 +80205,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80237,7 +80237,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80269,7 +80269,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80301,7 +80301,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80333,7 +80333,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80365,7 +80365,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80397,7 +80397,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80429,7 +80429,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80461,7 +80461,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80493,7 +80493,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80525,7 +80525,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80557,7 +80557,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80589,7 +80589,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80621,7 +80621,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80653,7 +80653,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80685,7 +80685,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80717,7 +80717,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80749,7 +80749,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80781,7 +80781,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80813,7 +80813,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80845,7 +80845,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80877,7 +80877,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80909,7 +80909,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80941,7 +80941,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -80973,7 +80973,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81005,7 +81005,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81037,7 +81037,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81069,7 +81069,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81101,7 +81101,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81133,7 +81133,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81165,7 +81165,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81197,7 +81197,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81229,7 +81229,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81261,7 +81261,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81293,7 +81293,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81325,7 +81325,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81357,7 +81357,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81389,7 +81389,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81421,7 +81421,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81453,7 +81453,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81485,7 +81485,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81517,7 +81517,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81549,7 +81549,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81581,7 +81581,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81613,7 +81613,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81645,7 +81645,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81677,7 +81677,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81709,7 +81709,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81741,7 +81741,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81773,7 +81773,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81805,7 +81805,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81837,7 +81837,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81869,7 +81869,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81901,7 +81901,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81933,7 +81933,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81965,7 +81965,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -81997,7 +81997,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82029,7 +82029,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82061,7 +82061,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82093,7 +82093,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82125,7 +82125,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82157,7 +82157,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82189,7 +82189,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82221,7 +82221,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82253,7 +82253,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82285,7 +82285,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82317,7 +82317,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82349,7 +82349,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82381,7 +82381,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82413,7 +82413,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82445,7 +82445,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82477,7 +82477,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82509,7 +82509,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82541,7 +82541,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82573,7 +82573,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82605,7 +82605,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82637,7 +82637,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82669,7 +82669,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82701,7 +82701,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82733,7 +82733,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82765,7 +82765,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82797,7 +82797,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82829,7 +82829,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82861,7 +82861,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82893,7 +82893,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82925,7 +82925,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82957,7 +82957,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -82989,7 +82989,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83021,7 +83021,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83053,7 +83053,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83085,7 +83085,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83117,7 +83117,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83149,7 +83149,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83181,7 +83181,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83213,7 +83213,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83245,7 +83245,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83277,7 +83277,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83309,7 +83309,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83341,7 +83341,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83373,7 +83373,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83405,7 +83405,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83437,7 +83437,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83469,7 +83469,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83501,7 +83501,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83533,7 +83533,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83565,7 +83565,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83597,7 +83597,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83629,7 +83629,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83661,7 +83661,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83693,7 +83693,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83725,7 +83725,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83757,7 +83757,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83789,7 +83789,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83821,7 +83821,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83853,7 +83853,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83885,7 +83885,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83917,7 +83917,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83949,7 +83949,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -83981,7 +83981,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84013,7 +84013,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84045,7 +84045,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84077,7 +84077,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84109,7 +84109,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84141,7 +84141,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84173,7 +84173,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84205,7 +84205,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84237,7 +84237,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84269,7 +84269,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84301,7 +84301,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84333,7 +84333,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84365,7 +84365,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84397,7 +84397,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84429,7 +84429,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84461,7 +84461,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84493,7 +84493,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84525,7 +84525,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84557,7 +84557,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84589,7 +84589,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84621,7 +84621,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84653,7 +84653,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84685,7 +84685,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84717,7 +84717,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84749,7 +84749,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84781,7 +84781,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84813,7 +84813,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84845,7 +84845,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84877,7 +84877,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84909,7 +84909,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84941,7 +84941,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -84973,7 +84973,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85005,7 +85005,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85037,7 +85037,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85069,7 +85069,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85101,7 +85101,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85133,7 +85133,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85165,7 +85165,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85197,7 +85197,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85229,7 +85229,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85261,7 +85261,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85293,7 +85293,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85325,7 +85325,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85357,7 +85357,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85389,7 +85389,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85421,7 +85421,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85453,7 +85453,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85485,7 +85485,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85517,7 +85517,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85549,7 +85549,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85581,7 +85581,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85613,7 +85613,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85645,7 +85645,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85677,7 +85677,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85709,7 +85709,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85741,7 +85741,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85773,7 +85773,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85805,7 +85805,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85837,7 +85837,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85869,7 +85869,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85901,7 +85901,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85933,7 +85933,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85965,7 +85965,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -85997,7 +85997,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86029,7 +86029,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86061,7 +86061,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86093,7 +86093,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86125,7 +86125,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86157,7 +86157,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86189,7 +86189,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86221,7 +86221,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86253,7 +86253,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86285,7 +86285,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86317,7 +86317,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86349,7 +86349,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86381,7 +86381,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86413,7 +86413,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86445,7 +86445,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86477,7 +86477,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86509,7 +86509,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86541,7 +86541,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86573,7 +86573,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86605,7 +86605,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86637,7 +86637,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86669,7 +86669,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86701,7 +86701,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86733,7 +86733,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86765,7 +86765,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86797,7 +86797,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86829,7 +86829,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86861,7 +86861,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86893,7 +86893,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86925,7 +86925,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86957,7 +86957,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -86989,7 +86989,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87021,7 +87021,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87053,7 +87053,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87085,7 +87085,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87117,7 +87117,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87149,7 +87149,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87181,7 +87181,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87213,7 +87213,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87245,7 +87245,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87277,7 +87277,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87309,7 +87309,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87341,7 +87341,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87373,7 +87373,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87405,7 +87405,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87437,7 +87437,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87469,7 +87469,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87501,7 +87501,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87533,7 +87533,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87565,7 +87565,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87597,7 +87597,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87629,7 +87629,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87661,7 +87661,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87693,7 +87693,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87725,7 +87725,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87757,7 +87757,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87789,7 +87789,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87821,7 +87821,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87853,7 +87853,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87885,7 +87885,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87917,7 +87917,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87949,7 +87949,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -87981,7 +87981,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88013,7 +88013,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88045,7 +88045,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88077,7 +88077,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88109,7 +88109,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88141,7 +88141,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88173,7 +88173,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88205,7 +88205,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88237,7 +88237,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88269,7 +88269,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88301,7 +88301,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88333,7 +88333,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88365,7 +88365,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88397,7 +88397,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88429,7 +88429,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88461,7 +88461,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88493,7 +88493,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88525,7 +88525,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88557,7 +88557,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88589,7 +88589,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88621,7 +88621,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88653,7 +88653,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88685,7 +88685,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88717,7 +88717,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88749,7 +88749,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88781,7 +88781,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88813,7 +88813,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88845,7 +88845,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88877,7 +88877,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88909,7 +88909,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88941,7 +88941,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -88973,7 +88973,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89005,7 +89005,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89037,7 +89037,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89069,7 +89069,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89101,7 +89101,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89133,7 +89133,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89165,7 +89165,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89197,7 +89197,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89229,7 +89229,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89261,7 +89261,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89293,7 +89293,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89325,7 +89325,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89357,7 +89357,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89389,7 +89389,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89421,7 +89421,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89453,7 +89453,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89485,7 +89485,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89517,7 +89517,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89549,7 +89549,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89581,7 +89581,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89613,7 +89613,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89645,7 +89645,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89677,7 +89677,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89709,7 +89709,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89741,7 +89741,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89773,7 +89773,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89805,7 +89805,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89837,7 +89837,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89869,7 +89869,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89901,7 +89901,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89933,7 +89933,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89965,7 +89965,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -89997,7 +89997,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90029,7 +90029,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90061,7 +90061,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90093,7 +90093,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90125,7 +90125,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90157,7 +90157,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90189,7 +90189,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90221,7 +90221,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90253,7 +90253,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90285,7 +90285,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90317,7 +90317,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90349,7 +90349,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90381,7 +90381,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90413,7 +90413,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90445,7 +90445,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90477,7 +90477,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90509,7 +90509,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90541,7 +90541,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90573,7 +90573,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90605,7 +90605,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90637,7 +90637,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90669,7 +90669,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90701,7 +90701,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90733,7 +90733,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90765,7 +90765,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90797,7 +90797,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90829,7 +90829,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90861,7 +90861,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90893,7 +90893,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90925,7 +90925,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90957,7 +90957,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -90989,7 +90989,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91021,7 +91021,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91053,7 +91053,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91085,7 +91085,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91117,7 +91117,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91149,7 +91149,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91181,7 +91181,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91213,7 +91213,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91245,7 +91245,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91277,7 +91277,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91309,7 +91309,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91341,7 +91341,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91373,7 +91373,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91405,7 +91405,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91437,7 +91437,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91469,7 +91469,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91501,7 +91501,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91533,7 +91533,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91565,7 +91565,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91597,7 +91597,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91629,7 +91629,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91661,7 +91661,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91693,7 +91693,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91725,7 +91725,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91757,7 +91757,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91789,7 +91789,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91821,7 +91821,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91853,7 +91853,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91885,7 +91885,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91917,7 +91917,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91949,7 +91949,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -91981,7 +91981,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92013,7 +92013,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92045,7 +92045,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92077,7 +92077,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92109,7 +92109,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92141,7 +92141,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92173,7 +92173,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92205,7 +92205,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92237,7 +92237,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92269,7 +92269,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92301,7 +92301,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92333,7 +92333,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92365,7 +92365,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92397,7 +92397,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92429,7 +92429,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92461,7 +92461,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92493,7 +92493,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92525,7 +92525,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92557,7 +92557,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92589,7 +92589,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92621,7 +92621,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92653,7 +92653,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92685,7 +92685,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92717,7 +92717,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92749,7 +92749,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92781,7 +92781,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92813,7 +92813,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92845,7 +92845,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92877,7 +92877,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92909,7 +92909,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92941,7 +92941,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -92973,7 +92973,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93005,7 +93005,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93037,7 +93037,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93069,7 +93069,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93101,7 +93101,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93133,7 +93133,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93165,7 +93165,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93197,7 +93197,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93229,7 +93229,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93261,7 +93261,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93293,7 +93293,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93325,7 +93325,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93357,7 +93357,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93389,7 +93389,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93421,7 +93421,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93453,7 +93453,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93485,7 +93485,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93517,7 +93517,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93549,7 +93549,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93581,7 +93581,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93613,7 +93613,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93645,7 +93645,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93677,7 +93677,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93709,7 +93709,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93741,7 +93741,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93773,7 +93773,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93805,7 +93805,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93837,7 +93837,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93869,7 +93869,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93901,7 +93901,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93933,7 +93933,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93965,7 +93965,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -93997,7 +93997,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94029,7 +94029,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94061,7 +94061,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94093,7 +94093,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94125,7 +94125,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94157,7 +94157,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94189,7 +94189,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94221,7 +94221,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94253,7 +94253,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94285,7 +94285,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94317,7 +94317,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94349,7 +94349,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94381,7 +94381,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94413,7 +94413,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94445,7 +94445,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94477,7 +94477,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94509,7 +94509,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94541,7 +94541,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94573,7 +94573,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94605,7 +94605,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94637,7 +94637,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94669,7 +94669,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94701,7 +94701,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94733,7 +94733,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94765,7 +94765,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94797,7 +94797,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94829,7 +94829,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94861,7 +94861,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94893,7 +94893,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94925,7 +94925,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94957,7 +94957,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -94989,7 +94989,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95021,7 +95021,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95053,7 +95053,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95085,7 +95085,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95117,7 +95117,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95149,7 +95149,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95181,7 +95181,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95213,7 +95213,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95245,7 +95245,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95277,7 +95277,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95309,7 +95309,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95341,7 +95341,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95373,7 +95373,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95405,7 +95405,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95437,7 +95437,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95469,7 +95469,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95501,7 +95501,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95533,7 +95533,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95565,7 +95565,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95597,7 +95597,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95629,7 +95629,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95661,7 +95661,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95693,7 +95693,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95725,7 +95725,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95757,7 +95757,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95789,7 +95789,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95821,7 +95821,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95853,7 +95853,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95885,7 +95885,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95917,7 +95917,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95949,7 +95949,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -95981,7 +95981,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96013,7 +96013,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96045,7 +96045,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96077,7 +96077,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96109,7 +96109,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96141,7 +96141,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96173,7 +96173,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96205,7 +96205,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96237,7 +96237,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96269,7 +96269,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96301,7 +96301,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96333,7 +96333,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96365,7 +96365,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96397,7 +96397,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96429,7 +96429,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96461,7 +96461,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96493,7 +96493,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96525,7 +96525,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96557,7 +96557,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96589,7 +96589,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96621,7 +96621,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96653,7 +96653,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96685,7 +96685,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96717,7 +96717,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96749,7 +96749,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96781,7 +96781,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96813,7 +96813,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96845,7 +96845,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96877,7 +96877,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96909,7 +96909,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96941,7 +96941,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -96973,7 +96973,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97005,7 +97005,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97037,7 +97037,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97069,7 +97069,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97101,7 +97101,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97133,7 +97133,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97165,7 +97165,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97197,7 +97197,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97229,7 +97229,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97261,7 +97261,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97293,7 +97293,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97325,7 +97325,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97357,7 +97357,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97389,7 +97389,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97421,7 +97421,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97453,7 +97453,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97485,7 +97485,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97517,7 +97517,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97549,7 +97549,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97581,7 +97581,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97613,7 +97613,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97645,7 +97645,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97677,7 +97677,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97709,7 +97709,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97741,7 +97741,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97773,7 +97773,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97805,7 +97805,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97837,7 +97837,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97869,7 +97869,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97901,7 +97901,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97933,7 +97933,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97965,7 +97965,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -97997,7 +97997,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98029,7 +98029,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98061,7 +98061,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98093,7 +98093,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98125,7 +98125,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98157,7 +98157,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98189,7 +98189,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98221,7 +98221,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98253,7 +98253,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98285,7 +98285,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98317,7 +98317,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98349,7 +98349,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98381,7 +98381,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98413,7 +98413,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98445,7 +98445,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98477,7 +98477,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98509,7 +98509,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98541,7 +98541,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98573,7 +98573,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98605,7 +98605,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98637,7 +98637,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98669,7 +98669,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98701,7 +98701,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98733,7 +98733,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98765,7 +98765,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98797,7 +98797,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98829,7 +98829,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98861,7 +98861,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98893,7 +98893,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98925,7 +98925,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98957,7 +98957,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -98989,7 +98989,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99021,7 +99021,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99053,7 +99053,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99085,7 +99085,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99117,7 +99117,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99149,7 +99149,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99181,7 +99181,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99213,7 +99213,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99245,7 +99245,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99277,7 +99277,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99309,7 +99309,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99341,7 +99341,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99373,7 +99373,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99405,7 +99405,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99437,7 +99437,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99469,7 +99469,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99501,7 +99501,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99533,7 +99533,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99565,7 +99565,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99597,7 +99597,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99629,7 +99629,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99661,7 +99661,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99693,7 +99693,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99725,7 +99725,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99757,7 +99757,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99789,7 +99789,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99821,7 +99821,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99853,7 +99853,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99885,7 +99885,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99917,7 +99917,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99949,7 +99949,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -99981,7 +99981,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100013,7 +100013,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100045,7 +100045,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100077,7 +100077,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100109,7 +100109,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100141,7 +100141,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100173,7 +100173,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100205,7 +100205,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100237,7 +100237,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100269,7 +100269,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100301,7 +100301,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100333,7 +100333,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100365,7 +100365,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100397,7 +100397,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100429,7 +100429,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100461,7 +100461,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100493,7 +100493,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100525,7 +100525,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100557,7 +100557,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100589,7 +100589,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100621,7 +100621,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100653,7 +100653,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100685,7 +100685,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100717,7 +100717,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100749,7 +100749,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100781,7 +100781,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100813,7 +100813,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100845,7 +100845,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100877,7 +100877,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100909,7 +100909,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100941,7 +100941,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -100973,7 +100973,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101005,7 +101005,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101037,7 +101037,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101069,7 +101069,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101101,7 +101101,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101133,7 +101133,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101165,7 +101165,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101197,7 +101197,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101229,7 +101229,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101261,7 +101261,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101293,7 +101293,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101325,7 +101325,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101357,7 +101357,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101389,7 +101389,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101421,7 +101421,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101453,7 +101453,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101485,7 +101485,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101517,7 +101517,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101549,7 +101549,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101581,7 +101581,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101613,7 +101613,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101645,7 +101645,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101677,7 +101677,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101709,7 +101709,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101741,7 +101741,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101773,7 +101773,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101805,7 +101805,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101837,7 +101837,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101869,7 +101869,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101901,7 +101901,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101933,7 +101933,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101965,7 +101965,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -101997,7 +101997,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102029,7 +102029,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102061,7 +102061,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102093,7 +102093,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102125,7 +102125,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102157,7 +102157,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102189,7 +102189,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102221,7 +102221,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102253,7 +102253,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102285,7 +102285,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102317,7 +102317,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102349,7 +102349,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102381,7 +102381,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102413,7 +102413,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102445,7 +102445,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102477,7 +102477,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102509,7 +102509,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102541,7 +102541,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102573,7 +102573,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102605,7 +102605,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102637,7 +102637,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102669,7 +102669,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102701,7 +102701,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102733,7 +102733,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102765,7 +102765,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102797,7 +102797,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102829,7 +102829,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102861,7 +102861,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102893,7 +102893,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102925,7 +102925,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102957,7 +102957,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -102989,7 +102989,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103021,7 +103021,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103053,7 +103053,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103085,7 +103085,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103117,7 +103117,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103149,7 +103149,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103181,7 +103181,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103213,7 +103213,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103245,7 +103245,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103277,7 +103277,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103309,7 +103309,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103341,7 +103341,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103373,7 +103373,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103405,7 +103405,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103437,7 +103437,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103469,7 +103469,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103501,7 +103501,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103533,7 +103533,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103565,7 +103565,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103597,7 +103597,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103629,7 +103629,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103661,7 +103661,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103693,7 +103693,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103725,7 +103725,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103757,7 +103757,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103789,7 +103789,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103821,7 +103821,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103853,7 +103853,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103885,7 +103885,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103917,7 +103917,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103949,7 +103949,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -103981,7 +103981,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104013,7 +104013,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104045,7 +104045,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104077,7 +104077,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104109,7 +104109,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104141,7 +104141,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104173,7 +104173,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104205,7 +104205,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104237,7 +104237,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104269,7 +104269,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104301,7 +104301,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104333,7 +104333,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104365,7 +104365,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104397,7 +104397,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104429,7 +104429,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104461,7 +104461,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104493,7 +104493,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104525,7 +104525,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104557,7 +104557,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104589,7 +104589,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104621,7 +104621,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104653,7 +104653,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104685,7 +104685,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104717,7 +104717,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104749,7 +104749,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104781,7 +104781,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104813,7 +104813,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104845,7 +104845,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104877,7 +104877,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104909,7 +104909,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104941,7 +104941,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -104973,7 +104973,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105005,7 +105005,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105037,7 +105037,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105069,7 +105069,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105101,7 +105101,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105133,7 +105133,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105165,7 +105165,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105197,7 +105197,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105229,7 +105229,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105261,7 +105261,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105293,7 +105293,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105325,7 +105325,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105357,7 +105357,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105389,7 +105389,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105421,7 +105421,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105453,7 +105453,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105485,7 +105485,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105517,7 +105517,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105549,7 +105549,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105581,7 +105581,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105613,7 +105613,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105645,7 +105645,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105677,7 +105677,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105709,7 +105709,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105741,7 +105741,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105773,7 +105773,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105805,7 +105805,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105837,7 +105837,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105869,7 +105869,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105901,7 +105901,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105933,7 +105933,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105965,7 +105965,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -105997,7 +105997,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106029,7 +106029,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106061,7 +106061,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106093,7 +106093,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106125,7 +106125,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106157,7 +106157,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106189,7 +106189,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106221,7 +106221,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106253,7 +106253,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106285,7 +106285,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106317,7 +106317,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106349,7 +106349,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106381,7 +106381,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106413,7 +106413,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106445,7 +106445,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106477,7 +106477,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106509,7 +106509,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106541,7 +106541,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106573,7 +106573,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106605,7 +106605,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106637,7 +106637,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106669,7 +106669,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106701,7 +106701,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106733,7 +106733,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106765,7 +106765,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -106845,7 +106845,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -106927,7 +106927,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -107009,7 +107009,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -107043,7 +107043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -107075,7 +107075,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -107107,7 +107107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -107139,7 +107139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -107171,7 +107171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -107203,7 +107203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -107235,7 +107235,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -107267,7 +107267,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -107347,7 +107347,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -107429,7 +107429,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -107511,7 +107511,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -107593,7 +107593,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -107627,7 +107627,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -107707,7 +107707,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -107789,7 +107789,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -107871,7 +107871,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -107953,7 +107953,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -107987,7 +107987,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108019,7 +108019,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108051,7 +108051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108083,7 +108083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108115,7 +108115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108147,7 +108147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108179,7 +108179,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108211,7 +108211,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108243,7 +108243,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108275,7 +108275,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108307,7 +108307,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108339,7 +108339,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108371,7 +108371,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108403,7 +108403,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108435,7 +108435,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108467,7 +108467,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108499,7 +108499,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108531,7 +108531,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108563,7 +108563,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108595,7 +108595,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108627,7 +108627,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108659,7 +108659,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108691,7 +108691,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108723,7 +108723,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108755,7 +108755,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108787,7 +108787,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108819,7 +108819,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108851,7 +108851,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108883,7 +108883,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108915,7 +108915,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108947,7 +108947,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -108979,7 +108979,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109011,7 +109011,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109043,7 +109043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109075,7 +109075,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109107,7 +109107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109139,7 +109139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109171,7 +109171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109203,7 +109203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109235,7 +109235,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109267,7 +109267,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109299,7 +109299,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109331,7 +109331,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109363,7 +109363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109395,7 +109395,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109427,7 +109427,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109459,7 +109459,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109491,7 +109491,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109523,7 +109523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109555,7 +109555,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109587,7 +109587,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109619,7 +109619,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109651,7 +109651,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109683,7 +109683,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109715,7 +109715,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109747,7 +109747,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109779,7 +109779,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109811,7 +109811,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109843,7 +109843,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109875,7 +109875,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109907,7 +109907,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109939,7 +109939,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -109971,7 +109971,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110003,7 +110003,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110035,7 +110035,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110067,7 +110067,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110099,7 +110099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110131,7 +110131,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110163,7 +110163,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110195,7 +110195,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110227,7 +110227,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110259,7 +110259,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110291,7 +110291,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110323,7 +110323,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110355,7 +110355,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110387,7 +110387,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110419,7 +110419,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110451,7 +110451,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110483,7 +110483,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110515,7 +110515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110547,7 +110547,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110579,7 +110579,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110611,7 +110611,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110643,7 +110643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110675,7 +110675,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110707,7 +110707,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110739,7 +110739,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110771,7 +110771,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110803,7 +110803,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110835,7 +110835,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110867,7 +110867,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110899,7 +110899,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110931,7 +110931,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110963,7 +110963,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -110995,7 +110995,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111027,7 +111027,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111059,7 +111059,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111091,7 +111091,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111123,7 +111123,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111155,7 +111155,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111187,7 +111187,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111219,7 +111219,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111251,7 +111251,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111283,7 +111283,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111315,7 +111315,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111347,7 +111347,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111379,7 +111379,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111411,7 +111411,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111443,7 +111443,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111475,7 +111475,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111507,7 +111507,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111539,7 +111539,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111571,7 +111571,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111603,7 +111603,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111635,7 +111635,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111667,7 +111667,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111699,7 +111699,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111731,7 +111731,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111763,7 +111763,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111795,7 +111795,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111827,7 +111827,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111859,7 +111859,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111891,7 +111891,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111923,7 +111923,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111955,7 +111955,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -111987,7 +111987,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112019,7 +112019,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112051,7 +112051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112083,7 +112083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112115,7 +112115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112147,7 +112147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112179,7 +112179,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112211,7 +112211,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112243,7 +112243,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112275,7 +112275,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112307,7 +112307,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112339,7 +112339,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112371,7 +112371,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112403,7 +112403,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112435,7 +112435,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112467,7 +112467,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112499,7 +112499,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112531,7 +112531,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112563,7 +112563,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112595,7 +112595,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112627,7 +112627,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112659,7 +112659,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112691,7 +112691,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112723,7 +112723,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112755,7 +112755,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112787,7 +112787,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112819,7 +112819,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112851,7 +112851,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112883,7 +112883,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112915,7 +112915,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112947,7 +112947,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -112979,7 +112979,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113011,7 +113011,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113043,7 +113043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113075,7 +113075,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113107,7 +113107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113139,7 +113139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113171,7 +113171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113203,7 +113203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113235,7 +113235,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113267,7 +113267,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113299,7 +113299,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113331,7 +113331,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113363,7 +113363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113395,7 +113395,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113427,7 +113427,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113459,7 +113459,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113491,7 +113491,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113523,7 +113523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113555,7 +113555,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113587,7 +113587,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113619,7 +113619,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113651,7 +113651,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113683,7 +113683,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113715,7 +113715,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113747,7 +113747,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113779,7 +113779,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113811,7 +113811,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113843,7 +113843,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113875,7 +113875,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113907,7 +113907,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113939,7 +113939,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -113971,7 +113971,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114003,7 +114003,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114035,7 +114035,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114067,7 +114067,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114099,7 +114099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114131,7 +114131,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114163,7 +114163,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114195,7 +114195,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114227,7 +114227,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114259,7 +114259,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114291,7 +114291,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114323,7 +114323,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114355,7 +114355,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114387,7 +114387,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114419,7 +114419,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114451,7 +114451,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114483,7 +114483,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114515,7 +114515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114547,7 +114547,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114579,7 +114579,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114611,7 +114611,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114643,7 +114643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114675,7 +114675,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114707,7 +114707,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114739,7 +114739,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114771,7 +114771,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114803,7 +114803,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114835,7 +114835,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114867,7 +114867,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114899,7 +114899,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114931,7 +114931,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114963,7 +114963,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -114995,7 +114995,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115027,7 +115027,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115059,7 +115059,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115091,7 +115091,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115123,7 +115123,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115155,7 +115155,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115187,7 +115187,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115219,7 +115219,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115251,7 +115251,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115283,7 +115283,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115315,7 +115315,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115347,7 +115347,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115379,7 +115379,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115411,7 +115411,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115443,7 +115443,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115475,7 +115475,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115507,7 +115507,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115539,7 +115539,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115571,7 +115571,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115603,7 +115603,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115635,7 +115635,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115667,7 +115667,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115699,7 +115699,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115731,7 +115731,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115763,7 +115763,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115795,7 +115795,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115827,7 +115827,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115859,7 +115859,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115891,7 +115891,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115923,7 +115923,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115955,7 +115955,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -115987,7 +115987,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -116019,7 +116019,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -116051,7 +116051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -116083,7 +116083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -116115,7 +116115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "FN@.tar.gz", @@ -116159,7 +116159,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -116191,7 +116191,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -116271,7 +116271,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -116305,7 +116305,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -116337,7 +116337,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -116369,7 +116369,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -116401,7 +116401,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -116433,7 +116433,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "E2FSPROGS_PKGVER@.orig.tar.gz", @@ -116471,7 +116471,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -116503,7 +116503,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -116535,7 +116535,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -116615,7 +116615,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -116658,7 +116658,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -116690,7 +116690,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -116728,7 +116728,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -116760,7 +116760,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -116792,7 +116792,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -116824,7 +116824,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -116950,7 +116950,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -116984,7 +116984,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], diff --git a/tests/summarycode/data/plugin_consolidate/e2fsprogs.json b/tests/summarycode/data/plugin_consolidate/e2fsprogs.json index f0746874d3d..5395cf33f36 100644 --- a/tests/summarycode/data/plugin_consolidate/e2fsprogs.json +++ b/tests/summarycode/data/plugin_consolidate/e2fsprogs.json @@ -52,7 +52,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2183, @@ -84,7 +84,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -116,7 +116,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -184,7 +184,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sv-request@li.org", @@ -405,7 +405,7 @@ "end_line": 140 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "j.darrington@elvis.murdoch.edu.au", @@ -2055,7 +2055,7 @@ "end_line": 3594 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@cygnus.com", @@ -2151,7 +2151,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -2231,7 +2231,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -2269,7 +2269,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -2437,7 +2437,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bug-autoconf@gnu.org", @@ -2475,7 +2475,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -2583,7 +2583,7 @@ "end_line": 10 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -2697,7 +2697,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -2740,7 +2740,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -2772,7 +2772,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -2804,7 +2804,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -2836,7 +2836,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -3125,7 +3125,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -3169,7 +3169,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -3218,7 +3218,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -3326,7 +3326,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -3406,7 +3406,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -3438,7 +3438,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -3470,7 +3470,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 7, @@ -3640,7 +3640,7 @@ "end_line": 53 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "config-patches@gnu.org", @@ -3778,7 +3778,7 @@ "end_line": 7 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "gord@gnu.ai.mit.edu", @@ -3943,7 +3943,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "config-patches@gnu.org", @@ -3992,7 +3992,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -4246,7 +4246,7 @@ "end_line": 1376 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "gord@gnu.ai.mit.edu", @@ -4362,7 +4362,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "friedman@prep.ai.mit.edu", @@ -4400,7 +4400,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -4432,7 +4432,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 30, @@ -4512,7 +4512,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -4556,7 +4556,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -4588,7 +4588,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -4632,7 +4632,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Ulrich.Windl@rz.uni-regensburg.de", @@ -4670,7 +4670,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -4750,7 +4750,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -4846,7 +4846,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sandeen@redhat.com", @@ -4967,7 +4967,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -5010,7 +5010,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5090,7 +5090,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5122,7 +5122,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5202,7 +5202,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5234,7 +5234,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 15, @@ -5278,7 +5278,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5310,7 +5310,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5342,7 +5342,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5374,7 +5374,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5406,7 +5406,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5438,7 +5438,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5470,7 +5470,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5502,7 +5502,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5534,7 +5534,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5566,7 +5566,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5646,7 +5646,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -5684,7 +5684,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5716,7 +5716,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5748,7 +5748,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5780,7 +5780,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5812,7 +5812,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -5844,7 +5844,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5876,7 +5876,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5908,7 +5908,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5940,7 +5940,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 82, @@ -6252,7 +6252,7 @@ "end_line": 3284 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -6377,7 +6377,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -6409,7 +6409,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -6441,7 +6441,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -6473,7 +6473,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -6505,7 +6505,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -6537,7 +6537,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -6569,7 +6569,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -6601,7 +6601,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -6948,7 +6948,7 @@ "end_line": 13 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -7155,7 +7155,7 @@ "end_line": 14 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -7219,7 +7219,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7251,7 +7251,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7283,7 +7283,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7315,7 +7315,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7347,7 +7347,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7522,7 +7522,7 @@ "end_line": 14 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -7586,7 +7586,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7618,7 +7618,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7650,7 +7650,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7682,7 +7682,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7714,7 +7714,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7746,7 +7746,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7778,7 +7778,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7810,7 +7810,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7842,7 +7842,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7874,7 +7874,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7906,7 +7906,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7938,7 +7938,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7970,7 +7970,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8002,7 +8002,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8034,7 +8034,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8130,7 +8130,7 @@ "end_line": 8 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -8174,7 +8174,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8206,7 +8206,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8292,7 +8292,7 @@ "end_line": 7 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "dirson@debian.org", @@ -8330,7 +8330,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8362,7 +8362,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8400,7 +8400,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8432,7 +8432,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8464,7 +8464,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8496,7 +8496,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8582,7 +8582,7 @@ "end_line": 8 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "dirson@debian.org", @@ -8620,7 +8620,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8652,7 +8652,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8738,7 +8738,7 @@ "end_line": 8 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -8782,7 +8782,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8814,7 +8814,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8846,7 +8846,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8878,7 +8878,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8910,7 +8910,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8942,7 +8942,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8974,7 +8974,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9006,7 +9006,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9038,7 +9038,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9070,7 +9070,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9102,7 +9102,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9134,7 +9134,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9220,7 +9220,7 @@ "end_line": 8 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -9264,7 +9264,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9296,7 +9296,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9382,7 +9382,7 @@ "end_line": 8 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -9426,7 +9426,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9458,7 +9458,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9490,7 +9490,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9522,7 +9522,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9554,7 +9554,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9586,7 +9586,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9618,7 +9618,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -9661,7 +9661,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 9, @@ -9693,7 +9693,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9725,7 +9725,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9757,7 +9757,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9789,7 +9789,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9821,7 +9821,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -9853,7 +9853,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9885,7 +9885,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "dirson@debian.org", @@ -9923,7 +9923,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9955,7 +9955,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9987,7 +9987,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -10019,7 +10019,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -10051,7 +10051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -10083,7 +10083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -10115,7 +10115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -10147,7 +10147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -10179,7 +10179,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -10211,7 +10211,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -10243,7 +10243,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 26, @@ -10287,7 +10287,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -10367,7 +10367,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -10453,7 +10453,7 @@ "end_line": 867 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -10545,7 +10545,7 @@ "end_line": 8 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "gt8134b@prism.gatech.edu", @@ -10583,7 +10583,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -10663,7 +10663,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -10743,7 +10743,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -10823,7 +10823,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -10903,7 +10903,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -10983,7 +10983,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11063,7 +11063,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11143,7 +11143,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11243,7 +11243,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11343,7 +11343,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11439,7 +11439,7 @@ "end_line": 6 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sct@redhat.com", @@ -11525,7 +11525,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11605,7 +11605,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11637,7 +11637,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11717,7 +11717,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11797,7 +11797,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11877,7 +11877,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11957,7 +11957,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12037,7 +12037,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12117,7 +12117,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12197,7 +12197,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12277,7 +12277,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12309,7 +12309,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 69, @@ -12341,7 +12341,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12465,7 +12465,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12497,7 +12497,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12612,7 +12612,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bug-texinfo@gnu.org", @@ -12711,7 +12711,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 65, @@ -12743,7 +12743,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12775,7 +12775,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12807,7 +12807,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12839,7 +12839,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12871,7 +12871,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12903,7 +12903,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12935,7 +12935,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12967,7 +12967,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12999,7 +12999,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13031,7 +13031,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "whawes@star.net", @@ -13069,7 +13069,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13101,7 +13101,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13133,7 +13133,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13165,7 +13165,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13197,7 +13197,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13229,7 +13229,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13261,7 +13261,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13363,7 +13363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13395,7 +13395,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13427,7 +13427,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13459,7 +13459,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13491,7 +13491,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13523,7 +13523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13555,7 +13555,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13587,7 +13587,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13619,7 +13619,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13657,7 +13657,7 @@ "end_line": 79 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13689,7 +13689,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13721,7 +13721,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13753,7 +13753,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13785,7 +13785,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13817,7 +13817,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13849,7 +13849,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13881,7 +13881,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13983,7 +13983,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14015,7 +14015,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14047,7 +14047,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14079,7 +14079,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14147,7 +14147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14179,7 +14179,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14211,7 +14211,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14243,7 +14243,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14275,7 +14275,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -14323,7 +14323,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14355,7 +14355,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14387,7 +14387,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14419,7 +14419,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14521,7 +14521,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14553,7 +14553,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14585,7 +14585,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14617,7 +14617,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14649,7 +14649,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14681,7 +14681,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14713,7 +14713,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14745,7 +14745,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14847,7 +14847,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14879,7 +14879,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14911,7 +14911,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14979,7 +14979,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15011,7 +15011,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15043,7 +15043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15075,7 +15075,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15107,7 +15107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15139,7 +15139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15171,7 +15171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15203,7 +15203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 44, @@ -15247,7 +15247,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15327,7 +15327,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15359,7 +15359,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15439,7 +15439,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15519,7 +15519,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15605,7 +15605,7 @@ "end_line": 499 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -15691,7 +15691,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15771,7 +15771,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15851,7 +15851,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15931,7 +15931,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16011,7 +16011,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16091,7 +16091,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16171,7 +16171,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16251,7 +16251,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16331,7 +16331,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16363,7 +16363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16443,7 +16443,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16543,7 +16543,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16623,7 +16623,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16655,7 +16655,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16735,7 +16735,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16767,7 +16767,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16847,7 +16847,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "mike@ai.mit.edu", @@ -16933,7 +16933,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "mike@ai.mit.edu", @@ -17019,7 +17019,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -17099,7 +17099,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -17179,7 +17179,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -17259,7 +17259,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -17339,7 +17339,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -17419,7 +17419,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -17499,7 +17499,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -17579,7 +17579,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -17659,7 +17659,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -17691,7 +17691,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -17771,7 +17771,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -17857,7 +17857,7 @@ "end_line": 4 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sct@redhat.com", @@ -17943,7 +17943,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -18023,7 +18023,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -18109,7 +18109,7 @@ "end_line": 4 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sct@redhat.com", @@ -18147,7 +18147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -18227,7 +18227,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -18307,7 +18307,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -18387,7 +18387,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -18467,7 +18467,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -18499,7 +18499,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 23, @@ -18543,7 +18543,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -18667,7 +18667,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -18711,7 +18711,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -18755,7 +18755,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -18809,7 +18809,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -18859,7 +18859,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -18891,7 +18891,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tgud@tochnapc2.technion.ac.il", @@ -18929,7 +18929,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -18973,7 +18973,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -19017,7 +19017,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -19107,7 +19107,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -19151,7 +19151,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -19195,7 +19195,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -19239,7 +19239,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -19283,7 +19283,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -19327,7 +19327,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -19359,7 +19359,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -19391,7 +19391,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@MIT.EDU", @@ -19457,7 +19457,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -19501,7 +19501,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Christian.Bac@int-evry.fr", @@ -19539,7 +19539,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -19639,7 +19639,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -19704,7 +19704,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tgud@tochnapc2.technion.ac.il", @@ -19815,7 +19815,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tgud@tochnapc2.technion.ac.il", @@ -19858,7 +19858,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 24, @@ -19890,7 +19890,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 7, @@ -19922,7 +19922,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -19954,7 +19954,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -19986,7 +19986,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20018,7 +20018,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -20050,7 +20050,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20082,7 +20082,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -20114,7 +20114,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20146,7 +20146,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20178,7 +20178,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20210,7 +20210,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 17, @@ -20242,7 +20242,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20274,7 +20274,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20354,7 +20354,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20386,7 +20386,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20418,7 +20418,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20450,7 +20450,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20482,7 +20482,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20514,7 +20514,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20546,7 +20546,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -20578,7 +20578,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20610,7 +20610,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -20642,7 +20642,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20674,7 +20674,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 7, @@ -20706,7 +20706,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20738,7 +20738,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20770,7 +20770,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20802,7 +20802,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20834,7 +20834,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20866,7 +20866,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20898,7 +20898,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -20930,7 +20930,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -20962,7 +20962,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -21030,7 +21030,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "eowmob@exp-math.uni-essen.de", @@ -21068,7 +21068,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -21100,7 +21100,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 51, @@ -21180,7 +21180,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -21260,7 +21260,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "st001906@hrz1.hrz.tu-darmstadt.de", @@ -21351,7 +21351,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -21431,7 +21431,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -21511,7 +21511,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -21591,7 +21591,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -21671,7 +21671,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -21751,7 +21751,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -21837,7 +21837,7 @@ "end_line": 2 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@gnu.ai.mit.edu", @@ -21929,7 +21929,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@gnu.org", @@ -22015,7 +22015,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -22101,7 +22101,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@cygnus.com", @@ -22187,7 +22187,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -22267,7 +22267,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -22347,7 +22347,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -22433,7 +22433,7 @@ "end_line": 2 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@gnu.ai.mit.edu", @@ -22519,7 +22519,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -22599,7 +22599,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -22685,7 +22685,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@cygnus.com", @@ -22771,7 +22771,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -22857,7 +22857,7 @@ "end_line": 20 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bruno@clisp.org", @@ -22943,7 +22943,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -23023,7 +23023,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bugs@gnu.org", @@ -23109,7 +23109,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -23200,7 +23200,7 @@ "end_line": 20 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@gnu.org", @@ -23308,7 +23308,7 @@ "end_line": 19 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bruno@clisp.org", @@ -23394,7 +23394,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -23474,7 +23474,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -23554,7 +23554,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -23634,7 +23634,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -23714,7 +23714,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -23800,7 +23800,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@cygnus.com", @@ -23892,7 +23892,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@cygnus.com", @@ -24068,7 +24068,7 @@ "end_line": 329 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@cygnus.com", @@ -24160,7 +24160,7 @@ "end_line": 4 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@cygnus.com", @@ -24246,7 +24246,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -24326,7 +24326,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -24406,7 +24406,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -24486,7 +24486,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -24572,7 +24572,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bruno@clisp.org", @@ -24664,7 +24664,7 @@ "end_line": 20 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "haible@clisp.cons.org", @@ -24756,7 +24756,7 @@ "end_line": 20 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "haible@clisp.cons.org", @@ -24848,7 +24848,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bruno@clisp.org", @@ -24940,7 +24940,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bruno@clisp.org", @@ -25026,7 +25026,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -25106,7 +25106,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -25186,7 +25186,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -25266,7 +25266,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -25298,7 +25298,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -25378,7 +25378,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -25458,7 +25458,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -25490,7 +25490,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 370, @@ -25534,7 +25534,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -25566,7 +25566,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -25614,7 +25614,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -25694,7 +25694,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -25726,7 +25726,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -25758,7 +25758,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -25790,7 +25790,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -25822,7 +25822,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -25854,7 +25854,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -25886,7 +25886,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -25918,7 +25918,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -25950,7 +25950,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 61, @@ -25994,7 +25994,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -26084,7 +26084,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -26116,7 +26116,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -26148,7 +26148,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -26238,7 +26238,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -26328,7 +26328,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -26418,7 +26418,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -26518,7 +26518,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -26608,7 +26608,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -26688,7 +26688,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -26847,7 +26847,7 @@ "end_line": 53 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@turbolinux.com", @@ -26896,7 +26896,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -26976,7 +26976,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -27056,7 +27056,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -27172,7 +27172,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "kay.sievers@vrfy.org", @@ -27294,7 +27294,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -27384,7 +27384,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -27474,7 +27474,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -27564,7 +27564,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -27654,7 +27654,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -27686,7 +27686,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -27766,7 +27766,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -27846,7 +27846,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -27878,7 +27878,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 38, @@ -27910,7 +27910,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -27942,7 +27942,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -27974,7 +27974,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28006,7 +28006,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28038,7 +28038,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28070,7 +28070,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28102,7 +28102,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28134,7 +28134,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28166,7 +28166,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28198,7 +28198,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28230,7 +28230,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28262,7 +28262,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28294,7 +28294,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28326,7 +28326,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28358,7 +28358,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28390,7 +28390,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28422,7 +28422,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28454,7 +28454,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28486,7 +28486,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28518,7 +28518,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28550,7 +28550,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28582,7 +28582,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28614,7 +28614,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28646,7 +28646,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28678,7 +28678,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28710,7 +28710,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28742,7 +28742,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28774,7 +28774,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28806,7 +28806,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28838,7 +28838,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28870,7 +28870,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28902,7 +28902,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28934,7 +28934,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28966,7 +28966,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -28998,7 +28998,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -29030,7 +29030,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -29062,7 +29062,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -29094,7 +29094,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -29126,7 +29126,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 30, @@ -29170,7 +29170,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -29250,7 +29250,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -29324,7 +29324,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -29356,7 +29356,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -29436,7 +29436,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -29516,7 +29516,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -29602,7 +29602,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -29688,7 +29688,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -29774,7 +29774,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -29860,7 +29860,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -29946,7 +29946,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -30032,7 +30032,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -30118,7 +30118,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -30204,7 +30204,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -30290,7 +30290,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -30376,7 +30376,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -30462,7 +30462,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -30558,7 +30558,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -30649,7 +30649,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -30735,7 +30735,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -30821,7 +30821,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -30907,7 +30907,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -30993,7 +30993,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -31079,7 +31079,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -31165,7 +31165,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -31239,7 +31239,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -31319,7 +31319,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -31405,7 +31405,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -31491,7 +31491,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -31565,7 +31565,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -31597,7 +31597,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 37, @@ -31641,7 +31641,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -31685,7 +31685,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -31759,7 +31759,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -31803,7 +31803,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -31835,7 +31835,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -31999,7 +31999,7 @@ "end_line": 514 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -32089,7 +32089,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -32133,7 +32133,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -32165,7 +32165,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -32245,7 +32245,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -32325,7 +32325,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -32357,7 +32357,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -32389,7 +32389,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -32463,7 +32463,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -32537,7 +32537,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -32605,7 +32605,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -32637,7 +32637,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -32752,7 +32752,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bug-texinfo@gnu.org", @@ -32905,7 +32905,7 @@ "end_line": 12 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -32937,7 +32937,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 18, @@ -32969,7 +32969,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33001,7 +33001,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33033,7 +33033,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33065,7 +33065,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33109,7 +33109,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33141,7 +33141,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33173,7 +33173,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33217,7 +33217,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33249,7 +33249,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33281,7 +33281,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33313,7 +33313,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33345,7 +33345,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33377,7 +33377,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33463,7 +33463,7 @@ "end_line": 32 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "innovation@andrew.cmu.edu", @@ -33507,7 +33507,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33539,7 +33539,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33571,7 +33571,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33603,7 +33603,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33635,7 +33635,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 146, @@ -33715,7 +33715,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33795,7 +33795,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33875,7 +33875,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33955,7 +33955,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -33999,7 +33999,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -34085,7 +34085,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "darrick.wong@oracle.com", @@ -34171,7 +34171,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -34251,7 +34251,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -34331,7 +34331,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -34411,7 +34411,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -34497,7 +34497,7 @@ "end_line": 31 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -34577,7 +34577,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -34657,7 +34657,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -34737,7 +34737,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "lczerner@redhat.com", @@ -34829,7 +34829,7 @@ "end_line": 6 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jrs@us.ibm.com", @@ -34915,7 +34915,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -34995,7 +34995,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -35075,7 +35075,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -35155,7 +35155,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -35235,7 +35235,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -35315,7 +35315,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -35395,7 +35395,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -35475,7 +35475,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -35543,7 +35543,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -35623,7 +35623,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "bgardner@wabtec.com", @@ -35772,7 +35772,7 @@ "end_line": 15 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Matt_Domsch@dell.com", @@ -35815,7 +35815,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -35905,7 +35905,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@clusterfs.com", @@ -35991,7 +35991,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -36071,7 +36071,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -36157,7 +36157,7 @@ "end_line": 7 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -36237,7 +36237,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -36317,7 +36317,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -36451,7 +36451,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jeremy@zip.com.au", @@ -36547,7 +36547,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -36627,7 +36627,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -36707,7 +36707,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -36787,7 +36787,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -36867,7 +36867,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -36947,7 +36947,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -36991,7 +36991,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "a.gruenbacher@computer.org", @@ -37051,7 +37051,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -37137,7 +37137,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -37169,7 +37169,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -37249,7 +37249,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -37281,7 +37281,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -37361,7 +37361,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -37447,7 +37447,7 @@ "end_line": 3 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "info@clusterfs.com", @@ -37490,7 +37490,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -37580,7 +37580,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "a.gruenbacher@computer.org", @@ -37666,7 +37666,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -37746,7 +37746,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -37796,7 +37796,7 @@ "end_line": 8 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "mfasheh@suse.com", @@ -37892,7 +37892,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -37972,7 +37972,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -38052,7 +38052,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -38132,7 +38132,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -38212,7 +38212,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -38292,7 +38292,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -38324,7 +38324,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -38404,7 +38404,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -38484,7 +38484,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -38574,7 +38574,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -38664,7 +38664,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -38696,7 +38696,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -38728,7 +38728,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -38808,7 +38808,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -38888,7 +38888,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -38968,7 +38968,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -39048,7 +39048,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -39128,7 +39128,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -39208,7 +39208,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -39288,7 +39288,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "wenqing.lz@taobao.com", @@ -39374,7 +39374,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -39454,7 +39454,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -39486,7 +39486,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -39566,7 +39566,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -39646,7 +39646,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -39726,7 +39726,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -39758,7 +39758,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -39844,7 +39844,7 @@ "end_line": 4 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sct@redhat.com", @@ -39882,7 +39882,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -39962,7 +39962,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -40042,7 +40042,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -40122,7 +40122,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -40154,7 +40154,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -40234,7 +40234,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -40314,7 +40314,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -40394,7 +40394,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -40474,7 +40474,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -40554,7 +40554,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -40634,7 +40634,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -40724,7 +40724,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -40820,7 +40820,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "andreys@ns.cr.cyco.com", @@ -40906,7 +40906,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -40986,7 +40986,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -41066,7 +41066,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -41146,7 +41146,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "lczerner@redhat.com", @@ -41238,7 +41238,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "lczerner@redhat.com", @@ -41340,7 +41340,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "andrea@suse.de", @@ -41431,7 +41431,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "andrea@suse.de", @@ -41517,7 +41517,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -41597,7 +41597,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -41677,7 +41677,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -41757,7 +41757,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -41906,7 +41906,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sam@hocevar.net", @@ -42061,7 +42061,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sam@hocevar.net", @@ -42099,7 +42099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -42179,7 +42179,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -42259,7 +42259,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -42359,7 +42359,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Shlomi@exanet.com", @@ -42451,7 +42451,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -42561,7 +42561,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -42641,7 +42641,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -42721,7 +42721,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -42801,7 +42801,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -42833,7 +42833,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -42865,7 +42865,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -42897,7 +42897,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -42977,7 +42977,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -43057,7 +43057,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -43089,7 +43089,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -43169,7 +43169,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -43249,7 +43249,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -43329,7 +43329,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -43409,7 +43409,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -43489,7 +43489,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -43521,7 +43521,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -43601,7 +43601,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -43681,7 +43681,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -43767,7 +43767,7 @@ "end_line": 6 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "aneesh.kumar@linux.vnet.ibm.com", @@ -43853,7 +43853,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -43933,7 +43933,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -43965,7 +43965,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -44045,7 +44045,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -44125,7 +44125,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -44205,7 +44205,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -44285,7 +44285,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -44317,7 +44317,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 8, @@ -44349,7 +44349,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -44381,7 +44381,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 7, @@ -44491,7 +44491,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -44523,7 +44523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -44591,7 +44591,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -44623,7 +44623,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -44655,7 +44655,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -44687,7 +44687,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -44755,7 +44755,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -44787,7 +44787,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 29, @@ -44831,7 +44831,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -44863,7 +44863,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -44895,7 +44895,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -44975,7 +44975,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -45049,7 +45049,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -45129,7 +45129,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -45203,7 +45203,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -45277,7 +45277,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -45351,7 +45351,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -45425,7 +45425,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -45499,7 +45499,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -45531,7 +45531,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -45611,7 +45611,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -45655,7 +45655,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -45687,7 +45687,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -45761,7 +45761,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -45835,7 +45835,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -45909,7 +45909,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -45983,7 +45983,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -46057,7 +46057,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -46131,7 +46131,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -46169,7 +46169,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -46201,7 +46201,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -46275,7 +46275,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -46307,7 +46307,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -46339,7 +46339,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -46371,7 +46371,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -46403,7 +46403,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -46477,7 +46477,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -46509,7 +46509,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 26, @@ -46553,7 +46553,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -46633,7 +46633,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -46713,7 +46713,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -46745,7 +46745,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -46777,7 +46777,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -46809,7 +46809,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -46889,7 +46889,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "kaz@ashi.footprints.net", @@ -46975,7 +46975,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "kaz@ashi.footprints.net", @@ -47013,7 +47013,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jack@suse.cz", @@ -47051,7 +47051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -47083,7 +47083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adityakali@google.com", @@ -47121,7 +47121,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -47153,7 +47153,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -47243,7 +47243,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -47323,7 +47323,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -47355,7 +47355,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -47485,7 +47485,7 @@ "end_line": 8 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -47609,7 +47609,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -47689,7 +47689,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -47769,7 +47769,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -47801,7 +47801,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jack@suse.cz", @@ -47844,7 +47844,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adityakali@google.com", @@ -47887,7 +47887,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jack@suse.cz", @@ -47925,7 +47925,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -47957,7 +47957,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jack@suse.cz", @@ -47995,7 +47995,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -48027,7 +48027,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 30, @@ -48071,7 +48071,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -48151,7 +48151,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -48231,7 +48231,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -48263,7 +48263,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -48343,7 +48343,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -48411,7 +48411,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -48491,7 +48491,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -48535,7 +48535,7 @@ "end_line": 4 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "andreys@ns.cr.cyco.com", @@ -48621,7 +48621,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -48653,7 +48653,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -48733,7 +48733,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -48813,7 +48813,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -48893,7 +48893,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -48973,7 +48973,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -49053,7 +49053,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -49139,7 +49139,7 @@ "end_line": 42 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -49231,7 +49231,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -49263,7 +49263,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -49343,7 +49343,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -49435,7 +49435,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -49527,7 +49527,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -49619,7 +49619,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -49711,7 +49711,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -49803,7 +49803,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -49895,7 +49895,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -49987,7 +49987,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -50019,7 +50019,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -50099,7 +50099,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -50191,7 +50191,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -50271,7 +50271,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -50303,7 +50303,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 68, @@ -50347,7 +50347,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -50390,7 +50390,7 @@ "end_line": 229 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Remy.Card@linux.org", @@ -50522,7 +50522,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -50619,7 +50619,7 @@ "end_line": 12 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -50657,7 +50657,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -50743,7 +50743,7 @@ "end_line": 160 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@turbolinux.com", @@ -50835,7 +50835,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -50878,7 +50878,7 @@ "end_line": 200 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Remy.Card@linux.org", @@ -50975,7 +50975,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -51061,7 +51061,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "liezhi.yang@windriver.com", @@ -51099,7 +51099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -51190,7 +51190,7 @@ "end_line": 106 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Remy.Card@linux.org", @@ -51297,7 +51297,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -51346,7 +51346,7 @@ "end_line": 93 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@sun.com", @@ -51438,7 +51438,7 @@ "end_line": 7 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "rupesh@sun.com", @@ -51481,7 +51481,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -51561,7 +51561,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -51605,7 +51605,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -51691,7 +51691,7 @@ "end_line": 312 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -51783,7 +51783,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -51863,7 +51863,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -51949,7 +51949,7 @@ "end_line": 47 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -52047,7 +52047,7 @@ "end_line": 4 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "aeb@cwi.nl", @@ -52121,7 +52121,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -52207,7 +52207,7 @@ "end_line": 78 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "aneesh.kumar@linux.vnet.ibm.com", @@ -52305,7 +52305,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "aneesh.kumar@linux.vnet.ibm.com", @@ -52349,7 +52349,7 @@ "end_line": 69 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "mhalcrow@google.com", @@ -52415,7 +52415,7 @@ "end_line": 8 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "mhalcrow@google.com", @@ -52464,7 +52464,7 @@ "end_line": 87 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "a-fujita@rs.jp.nec.com", @@ -52525,7 +52525,7 @@ "end_line": 7 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "a-fujita@rs.jp.nec.com", @@ -52616,7 +52616,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -52660,7 +52660,7 @@ "end_line": 62 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -52746,7 +52746,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -52832,7 +52832,7 @@ "end_line": 28 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -52930,7 +52930,7 @@ "end_line": 45 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "ssd@nevets.oau.org", @@ -53036,7 +53036,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -53128,7 +53128,7 @@ "end_line": 9 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -53171,7 +53171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -53257,7 +53257,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "darrick.wong@oracle.com", @@ -53343,7 +53343,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -53429,7 +53429,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -53509,7 +53509,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -53589,7 +53589,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -53675,7 +53675,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -53718,7 +53718,7 @@ "end_line": 46 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Remy.Card@linux.org", @@ -53815,7 +53815,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -53853,7 +53853,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -53885,7 +53885,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -53917,7 +53917,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -54003,7 +54003,7 @@ "end_line": 850 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -54095,7 +54095,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -54181,7 +54181,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -54213,7 +54213,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -54293,7 +54293,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -54384,7 +54384,7 @@ "end_line": 36 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Remy.Card@linux.org", @@ -54481,7 +54481,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -54530,7 +54530,7 @@ "end_line": 6 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "alknaff@innet.lu", @@ -54573,7 +54573,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -54631,7 +54631,7 @@ "end_line": 768 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Remy.Card@linux.org", @@ -54753,7 +54753,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "card@masi.ibp.fr", @@ -54842,7 +54842,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -54922,7 +54922,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -55002,7 +55002,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -55088,7 +55088,7 @@ "end_line": 92 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -55180,7 +55180,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -55218,7 +55218,7 @@ "end_line": 12 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -55310,7 +55310,7 @@ "end_line": 59 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "adilger@enel.ucalgary.ca", @@ -55402,7 +55402,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -55434,7 +55434,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 55, @@ -55466,7 +55466,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -55498,7 +55498,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -55530,7 +55530,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -55632,7 +55632,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "david.planella@gmail.com", @@ -55696,7 +55696,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -55798,7 +55798,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "mitr@volny.cz", @@ -55862,7 +55862,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -55964,7 +55964,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -56023,7 +56023,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -56125,7 +56125,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "olke@users.sourceforge.net", @@ -56242,7 +56242,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -56296,7 +56296,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -56334,7 +56334,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -56372,7 +56372,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -56468,7 +56468,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "benno@vertaalt.nl", @@ -56522,7 +56522,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -56624,7 +56624,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "max@upn.mx", @@ -56688,7 +56688,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -56784,7 +56784,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "lanurmi@iki.fi", @@ -56838,7 +56838,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -56950,7 +56950,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "robitail@IRO.UMontreal.CA", @@ -57009,7 +57009,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -57105,7 +57105,7 @@ ], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -57169,7 +57169,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -57265,7 +57265,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "arif_endro@yahoo.com", @@ -57319,7 +57319,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -57351,7 +57351,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -57447,7 +57447,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "lupin85@email.it", @@ -57511,7 +57511,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -57591,7 +57591,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drepper@gnu.ai.mit.edu", @@ -57629,7 +57629,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -57667,7 +57667,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -57763,7 +57763,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sharuzzaman@gmail.com", @@ -57817,7 +57817,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -57919,7 +57919,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "benno@vertaalt.nl", @@ -57983,7 +57983,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -58085,7 +58085,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "qboosh@pld-linux.org", @@ -58139,7 +58139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -58171,7 +58171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -58273,7 +58273,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -58332,7 +58332,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -58364,7 +58364,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -58396,7 +58396,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "en@quot.po", @@ -58439,7 +58439,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -58524,7 +58524,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "uskokovic@etf.bg.ac.yu", @@ -58583,7 +58583,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -58685,7 +58685,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "goeran@uddeborg.se", @@ -58739,7 +58739,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -58840,7 +58840,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "nilgun@buguner.name.tr", @@ -58904,7 +58904,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -59006,7 +59006,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -59070,7 +59070,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -59187,7 +59187,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "clytie@riverland.net.au", @@ -59256,7 +59256,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@alum.mit.edu", @@ -59346,7 +59346,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "drdarkraven@gmail.com", @@ -59415,7 +59415,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 13, @@ -59459,7 +59459,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -59549,7 +59549,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -59639,7 +59639,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -59671,7 +59671,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -59751,7 +59751,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -59857,7 +59857,7 @@ "end_line": 171 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -59953,7 +59953,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -60043,7 +60043,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -60123,7 +60123,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -60213,7 +60213,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -60245,7 +60245,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -60335,7 +60335,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -60367,7 +60367,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -60399,7 +60399,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 15, @@ -60513,7 +60513,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "darrick.wong@oracle.com", @@ -60557,7 +60557,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "e2scrub@host.domain.name", @@ -60649,7 +60649,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "darrick.wong@oracle.com", @@ -60687,7 +60687,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -60719,7 +60719,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -60833,7 +60833,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "darrick.wong@oracle.com", @@ -60877,7 +60877,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -60963,7 +60963,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "darrick.wong@oracle.com", @@ -61001,7 +61001,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61033,7 +61033,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61119,7 +61119,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "darrick.wong@oracle.com", @@ -61157,7 +61157,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61189,7 +61189,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61221,7 +61221,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61253,7 +61253,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61285,7 +61285,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1261, @@ -61317,7 +61317,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61349,7 +61349,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61381,7 +61381,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61413,7 +61413,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61445,7 +61445,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61477,7 +61477,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61509,7 +61509,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61541,7 +61541,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61573,7 +61573,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61605,7 +61605,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61637,7 +61637,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -61669,7 +61669,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61701,7 +61701,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61733,7 +61733,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61765,7 +61765,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -61797,7 +61797,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61829,7 +61829,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61861,7 +61861,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61893,7 +61893,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61925,7 +61925,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -61957,7 +61957,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -61989,7 +61989,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62021,7 +62021,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62053,7 +62053,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -62085,7 +62085,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62117,7 +62117,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62149,7 +62149,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62181,7 +62181,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -62213,7 +62213,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62245,7 +62245,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62277,7 +62277,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62309,7 +62309,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -62341,7 +62341,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62373,7 +62373,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62405,7 +62405,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62437,7 +62437,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -62469,7 +62469,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62501,7 +62501,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62533,7 +62533,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62565,7 +62565,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62597,7 +62597,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -62629,7 +62629,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62661,7 +62661,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62693,7 +62693,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62725,7 +62725,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -62757,7 +62757,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62789,7 +62789,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62821,7 +62821,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62853,7 +62853,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -62885,7 +62885,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -62923,7 +62923,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62955,7 +62955,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -62987,7 +62987,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -63019,7 +63019,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63051,7 +63051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63083,7 +63083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63115,7 +63115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -63147,7 +63147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63179,7 +63179,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63211,7 +63211,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63243,7 +63243,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -63275,7 +63275,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63307,7 +63307,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63339,7 +63339,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63371,7 +63371,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -63403,7 +63403,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63435,7 +63435,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63467,7 +63467,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63499,7 +63499,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -63531,7 +63531,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63563,7 +63563,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63595,7 +63595,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -63627,7 +63627,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63659,7 +63659,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -63691,7 +63691,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63723,7 +63723,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -63755,7 +63755,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63787,7 +63787,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63819,7 +63819,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -63851,7 +63851,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63883,7 +63883,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63915,7 +63915,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63947,7 +63947,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -63979,7 +63979,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -64011,7 +64011,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64043,7 +64043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64075,7 +64075,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64107,7 +64107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64139,7 +64139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -64171,7 +64171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64203,7 +64203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64235,7 +64235,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64267,7 +64267,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64299,7 +64299,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -64331,7 +64331,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64363,7 +64363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64395,7 +64395,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64427,7 +64427,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64459,7 +64459,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -64491,7 +64491,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64523,7 +64523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64555,7 +64555,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64587,7 +64587,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64619,7 +64619,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -64651,7 +64651,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64683,7 +64683,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64715,7 +64715,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64747,7 +64747,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64779,7 +64779,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -64811,7 +64811,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64843,7 +64843,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64875,7 +64875,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64907,7 +64907,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -64939,7 +64939,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -64971,7 +64971,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65003,7 +65003,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65035,7 +65035,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65067,7 +65067,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65099,7 +65099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -65131,7 +65131,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65163,7 +65163,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65195,7 +65195,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65227,7 +65227,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65259,7 +65259,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65291,7 +65291,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -65323,7 +65323,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65355,7 +65355,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65387,7 +65387,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65419,7 +65419,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65451,7 +65451,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -65483,7 +65483,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65515,7 +65515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65547,7 +65547,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65579,7 +65579,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65611,7 +65611,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -65643,7 +65643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65675,7 +65675,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65707,7 +65707,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65739,7 +65739,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65771,7 +65771,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -65803,7 +65803,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65835,7 +65835,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65867,7 +65867,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65899,7 +65899,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65931,7 +65931,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -65963,7 +65963,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -65995,7 +65995,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66027,7 +66027,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66059,7 +66059,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66091,7 +66091,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -66123,7 +66123,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66155,7 +66155,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66187,7 +66187,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66219,7 +66219,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66251,7 +66251,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -66283,7 +66283,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66315,7 +66315,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66347,7 +66347,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66379,7 +66379,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66411,7 +66411,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66443,7 +66443,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -66475,7 +66475,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66507,7 +66507,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66539,7 +66539,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66571,7 +66571,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66603,7 +66603,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -66635,7 +66635,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66667,7 +66667,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66699,7 +66699,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66731,7 +66731,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66763,7 +66763,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -66795,7 +66795,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66827,7 +66827,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66859,7 +66859,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66891,7 +66891,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66923,7 +66923,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -66955,7 +66955,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -66987,7 +66987,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67019,7 +67019,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67051,7 +67051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67083,7 +67083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -67115,7 +67115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67147,7 +67147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67179,7 +67179,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67211,7 +67211,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67243,7 +67243,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -67275,7 +67275,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67307,7 +67307,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67339,7 +67339,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67371,7 +67371,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67403,7 +67403,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67435,7 +67435,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -67467,7 +67467,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67499,7 +67499,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67531,7 +67531,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67563,7 +67563,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67595,7 +67595,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -67627,7 +67627,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67659,7 +67659,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67691,7 +67691,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67723,7 +67723,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67755,7 +67755,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -67787,7 +67787,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67819,7 +67819,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67851,7 +67851,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67883,7 +67883,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67915,7 +67915,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -67947,7 +67947,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -67979,7 +67979,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68011,7 +68011,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68043,7 +68043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68075,7 +68075,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -68107,7 +68107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68139,7 +68139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68171,7 +68171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68203,7 +68203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68235,7 +68235,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -68267,7 +68267,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68299,7 +68299,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68331,7 +68331,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68363,7 +68363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68395,7 +68395,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -68427,7 +68427,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68459,7 +68459,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68491,7 +68491,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68523,7 +68523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68555,7 +68555,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -68587,7 +68587,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68619,7 +68619,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68651,7 +68651,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68683,7 +68683,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68715,7 +68715,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -68747,7 +68747,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68779,7 +68779,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68811,7 +68811,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68843,7 +68843,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68875,7 +68875,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -68907,7 +68907,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68939,7 +68939,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -68971,7 +68971,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69003,7 +69003,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69035,7 +69035,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69067,7 +69067,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -69099,7 +69099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69131,7 +69131,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69163,7 +69163,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69195,7 +69195,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69227,7 +69227,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -69259,7 +69259,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69291,7 +69291,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69323,7 +69323,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69355,7 +69355,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69387,7 +69387,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -69419,7 +69419,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69451,7 +69451,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69483,7 +69483,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69515,7 +69515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69547,7 +69547,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69579,7 +69579,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -69611,7 +69611,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69643,7 +69643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69675,7 +69675,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69707,7 +69707,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69739,7 +69739,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69771,7 +69771,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -69803,7 +69803,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69835,7 +69835,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69867,7 +69867,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69899,7 +69899,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69931,7 +69931,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -69963,7 +69963,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -69995,7 +69995,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70027,7 +70027,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70059,7 +70059,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70091,7 +70091,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70123,7 +70123,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70155,7 +70155,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -70187,7 +70187,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70219,7 +70219,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70251,7 +70251,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70283,7 +70283,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70315,7 +70315,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70347,7 +70347,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -70379,7 +70379,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70411,7 +70411,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70443,7 +70443,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70475,7 +70475,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70507,7 +70507,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -70539,7 +70539,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70571,7 +70571,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70603,7 +70603,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70635,7 +70635,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70667,7 +70667,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -70699,7 +70699,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70731,7 +70731,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70763,7 +70763,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70795,7 +70795,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -70827,7 +70827,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70859,7 +70859,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70891,7 +70891,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70923,7 +70923,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70955,7 +70955,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -70987,7 +70987,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -71019,7 +71019,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71051,7 +71051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71083,7 +71083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71115,7 +71115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71147,7 +71147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -71179,7 +71179,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71211,7 +71211,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71243,7 +71243,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71275,7 +71275,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71307,7 +71307,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -71339,7 +71339,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71371,7 +71371,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71403,7 +71403,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71435,7 +71435,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -71467,7 +71467,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71499,7 +71499,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71531,7 +71531,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71563,7 +71563,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71595,7 +71595,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71627,7 +71627,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -71659,7 +71659,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71691,7 +71691,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71723,7 +71723,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71755,7 +71755,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71787,7 +71787,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71819,7 +71819,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -71851,7 +71851,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71883,7 +71883,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71915,7 +71915,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71947,7 +71947,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -71979,7 +71979,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -72011,7 +72011,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72043,7 +72043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72075,7 +72075,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72107,7 +72107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72139,7 +72139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -72171,7 +72171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72203,7 +72203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72235,7 +72235,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72267,7 +72267,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72299,7 +72299,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -72331,7 +72331,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72363,7 +72363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72395,7 +72395,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72427,7 +72427,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72459,7 +72459,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -72491,7 +72491,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72523,7 +72523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72555,7 +72555,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72587,7 +72587,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72619,7 +72619,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -72651,7 +72651,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72683,7 +72683,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72715,7 +72715,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72747,7 +72747,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72779,7 +72779,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -72811,7 +72811,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72843,7 +72843,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72875,7 +72875,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72907,7 +72907,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -72939,7 +72939,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -72971,7 +72971,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73003,7 +73003,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73035,7 +73035,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73067,7 +73067,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73099,7 +73099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 7, @@ -73131,7 +73131,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73163,7 +73163,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73195,7 +73195,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73227,7 +73227,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73259,7 +73259,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73291,7 +73291,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73323,7 +73323,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73355,7 +73355,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -73387,7 +73387,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73419,7 +73419,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73451,7 +73451,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73483,7 +73483,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73515,7 +73515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -73547,7 +73547,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73579,7 +73579,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73611,7 +73611,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73643,7 +73643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73675,7 +73675,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -73707,7 +73707,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73739,7 +73739,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73771,7 +73771,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73803,7 +73803,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73835,7 +73835,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -73867,7 +73867,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73899,7 +73899,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73931,7 +73931,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73963,7 +73963,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -73995,7 +73995,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -74027,7 +74027,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74059,7 +74059,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74091,7 +74091,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74123,7 +74123,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74155,7 +74155,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -74187,7 +74187,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74219,7 +74219,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74251,7 +74251,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74283,7 +74283,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74315,7 +74315,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -74347,7 +74347,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74379,7 +74379,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74411,7 +74411,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74443,7 +74443,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74475,7 +74475,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -74507,7 +74507,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74539,7 +74539,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74571,7 +74571,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74603,7 +74603,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -74635,7 +74635,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74667,7 +74667,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74699,7 +74699,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74731,7 +74731,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74763,7 +74763,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -74795,7 +74795,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74827,7 +74827,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74859,7 +74859,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74891,7 +74891,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74923,7 +74923,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -74955,7 +74955,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -74987,7 +74987,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75019,7 +75019,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75051,7 +75051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75083,7 +75083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -75115,7 +75115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75147,7 +75147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75179,7 +75179,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75211,7 +75211,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75243,7 +75243,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -75275,7 +75275,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75307,7 +75307,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75339,7 +75339,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75371,7 +75371,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75403,7 +75403,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -75435,7 +75435,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75467,7 +75467,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75499,7 +75499,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75531,7 +75531,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75563,7 +75563,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -75595,7 +75595,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75627,7 +75627,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75659,7 +75659,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75691,7 +75691,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75723,7 +75723,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -75755,7 +75755,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75787,7 +75787,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75819,7 +75819,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75851,7 +75851,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75883,7 +75883,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 6, @@ -75915,7 +75915,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75947,7 +75947,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -75979,7 +75979,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76011,7 +76011,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76043,7 +76043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76075,7 +76075,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76107,7 +76107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -76139,7 +76139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76171,7 +76171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76203,7 +76203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76235,7 +76235,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76267,7 +76267,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -76299,7 +76299,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76331,7 +76331,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76363,7 +76363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76395,7 +76395,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76427,7 +76427,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 6, @@ -76459,7 +76459,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76491,7 +76491,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76523,7 +76523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76555,7 +76555,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76587,7 +76587,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76619,7 +76619,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76651,7 +76651,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -76683,7 +76683,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76715,7 +76715,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76747,7 +76747,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76779,7 +76779,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76811,7 +76811,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -76843,7 +76843,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76875,7 +76875,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76907,7 +76907,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76939,7 +76939,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -76971,7 +76971,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -77003,7 +77003,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77035,7 +77035,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77067,7 +77067,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77099,7 +77099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77131,7 +77131,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -77163,7 +77163,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77195,7 +77195,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77227,7 +77227,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77259,7 +77259,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77291,7 +77291,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -77323,7 +77323,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77355,7 +77355,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77387,7 +77387,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77419,7 +77419,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77451,7 +77451,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -77483,7 +77483,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77515,7 +77515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77547,7 +77547,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77579,7 +77579,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77611,7 +77611,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -77643,7 +77643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77675,7 +77675,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77707,7 +77707,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77739,7 +77739,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77771,7 +77771,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -77803,7 +77803,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77835,7 +77835,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77867,7 +77867,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77899,7 +77899,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -77931,7 +77931,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77963,7 +77963,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -77995,7 +77995,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78027,7 +78027,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78059,7 +78059,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78091,7 +78091,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -78123,7 +78123,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78155,7 +78155,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78187,7 +78187,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78219,7 +78219,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78251,7 +78251,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -78283,7 +78283,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78315,7 +78315,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78347,7 +78347,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78379,7 +78379,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78411,7 +78411,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -78443,7 +78443,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78475,7 +78475,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78507,7 +78507,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78539,7 +78539,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78571,7 +78571,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -78603,7 +78603,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78635,7 +78635,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78667,7 +78667,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78699,7 +78699,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78731,7 +78731,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -78763,7 +78763,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78795,7 +78795,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78827,7 +78827,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78859,7 +78859,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78891,7 +78891,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -78923,7 +78923,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78955,7 +78955,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -78987,7 +78987,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79019,7 +79019,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79051,7 +79051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -79083,7 +79083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79115,7 +79115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79147,7 +79147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79179,7 +79179,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79211,7 +79211,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -79243,7 +79243,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79275,7 +79275,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79307,7 +79307,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79339,7 +79339,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79371,7 +79371,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -79403,7 +79403,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79435,7 +79435,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79467,7 +79467,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79499,7 +79499,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79531,7 +79531,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79563,7 +79563,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -79595,7 +79595,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79627,7 +79627,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79659,7 +79659,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79691,7 +79691,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79723,7 +79723,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79755,7 +79755,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -79787,7 +79787,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79819,7 +79819,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79851,7 +79851,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79883,7 +79883,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79915,7 +79915,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -79947,7 +79947,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -79979,7 +79979,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80011,7 +80011,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80043,7 +80043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80075,7 +80075,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80107,7 +80107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80139,7 +80139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -80171,7 +80171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80203,7 +80203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80235,7 +80235,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80267,7 +80267,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80299,7 +80299,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80331,7 +80331,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -80363,7 +80363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80395,7 +80395,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80427,7 +80427,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80459,7 +80459,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80491,7 +80491,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -80523,7 +80523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80555,7 +80555,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80587,7 +80587,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80619,7 +80619,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80651,7 +80651,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -80683,7 +80683,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80715,7 +80715,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80747,7 +80747,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80779,7 +80779,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80811,7 +80811,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -80843,7 +80843,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80875,7 +80875,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80907,7 +80907,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80939,7 +80939,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -80971,7 +80971,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -81003,7 +81003,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81035,7 +81035,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81067,7 +81067,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81099,7 +81099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81131,7 +81131,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -81163,7 +81163,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81195,7 +81195,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81227,7 +81227,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81259,7 +81259,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81291,7 +81291,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -81323,7 +81323,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81355,7 +81355,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81387,7 +81387,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81419,7 +81419,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81451,7 +81451,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -81483,7 +81483,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81515,7 +81515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81547,7 +81547,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81579,7 +81579,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81611,7 +81611,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -81643,7 +81643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81675,7 +81675,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81707,7 +81707,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81739,7 +81739,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81771,7 +81771,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -81803,7 +81803,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81835,7 +81835,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81867,7 +81867,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81899,7 +81899,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81931,7 +81931,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -81963,7 +81963,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -81995,7 +81995,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82027,7 +82027,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82059,7 +82059,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82091,7 +82091,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -82123,7 +82123,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82155,7 +82155,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82187,7 +82187,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82219,7 +82219,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82251,7 +82251,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -82283,7 +82283,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82315,7 +82315,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82347,7 +82347,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82379,7 +82379,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82411,7 +82411,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -82443,7 +82443,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82475,7 +82475,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82507,7 +82507,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82539,7 +82539,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82571,7 +82571,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -82603,7 +82603,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82635,7 +82635,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82667,7 +82667,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82699,7 +82699,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82731,7 +82731,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -82763,7 +82763,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82795,7 +82795,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82827,7 +82827,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82859,7 +82859,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82891,7 +82891,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -82923,7 +82923,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82955,7 +82955,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -82987,7 +82987,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83019,7 +83019,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83051,7 +83051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -83083,7 +83083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83115,7 +83115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83147,7 +83147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83179,7 +83179,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83211,7 +83211,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -83243,7 +83243,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83275,7 +83275,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83307,7 +83307,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83339,7 +83339,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83371,7 +83371,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -83403,7 +83403,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83435,7 +83435,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83467,7 +83467,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83499,7 +83499,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83531,7 +83531,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -83563,7 +83563,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83595,7 +83595,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83627,7 +83627,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83659,7 +83659,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83691,7 +83691,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -83723,7 +83723,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83755,7 +83755,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83787,7 +83787,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83819,7 +83819,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83851,7 +83851,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -83883,7 +83883,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83915,7 +83915,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83947,7 +83947,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -83979,7 +83979,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84011,7 +84011,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -84043,7 +84043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84075,7 +84075,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84107,7 +84107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84139,7 +84139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84171,7 +84171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84203,7 +84203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 6, @@ -84235,7 +84235,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84267,7 +84267,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84299,7 +84299,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84331,7 +84331,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84363,7 +84363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84395,7 +84395,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84427,7 +84427,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 6, @@ -84459,7 +84459,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84491,7 +84491,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84523,7 +84523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84555,7 +84555,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84587,7 +84587,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84619,7 +84619,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84651,7 +84651,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 6, @@ -84683,7 +84683,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84715,7 +84715,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84747,7 +84747,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84779,7 +84779,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84811,7 +84811,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84843,7 +84843,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84875,7 +84875,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -84907,7 +84907,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84939,7 +84939,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -84971,7 +84971,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85003,7 +85003,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85035,7 +85035,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -85067,7 +85067,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85099,7 +85099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85131,7 +85131,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85163,7 +85163,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85195,7 +85195,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -85227,7 +85227,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85259,7 +85259,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85291,7 +85291,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85323,7 +85323,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85355,7 +85355,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -85387,7 +85387,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85419,7 +85419,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85451,7 +85451,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85483,7 +85483,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85515,7 +85515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -85547,7 +85547,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85579,7 +85579,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85611,7 +85611,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85643,7 +85643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85675,7 +85675,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -85707,7 +85707,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85739,7 +85739,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85771,7 +85771,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85803,7 +85803,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85835,7 +85835,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -85867,7 +85867,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85899,7 +85899,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85931,7 +85931,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85963,7 +85963,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -85995,7 +85995,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -86027,7 +86027,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86059,7 +86059,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86091,7 +86091,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86123,7 +86123,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86155,7 +86155,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -86187,7 +86187,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86219,7 +86219,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86251,7 +86251,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86283,7 +86283,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86315,7 +86315,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -86347,7 +86347,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86379,7 +86379,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86411,7 +86411,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86443,7 +86443,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86475,7 +86475,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -86507,7 +86507,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86539,7 +86539,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86571,7 +86571,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86603,7 +86603,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86635,7 +86635,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -86667,7 +86667,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86699,7 +86699,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86731,7 +86731,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86763,7 +86763,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86795,7 +86795,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -86827,7 +86827,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86859,7 +86859,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -86891,7 +86891,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86923,7 +86923,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86955,7 +86955,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -86987,7 +86987,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -87019,7 +87019,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87051,7 +87051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87083,7 +87083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87115,7 +87115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87147,7 +87147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87179,7 +87179,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -87211,7 +87211,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87243,7 +87243,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87275,7 +87275,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -87307,7 +87307,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87339,7 +87339,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87371,7 +87371,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87403,7 +87403,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87435,7 +87435,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -87467,7 +87467,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87499,7 +87499,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87531,7 +87531,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87563,7 +87563,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87595,7 +87595,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -87627,7 +87627,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87659,7 +87659,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87691,7 +87691,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87723,7 +87723,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87755,7 +87755,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -87787,7 +87787,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87819,7 +87819,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87851,7 +87851,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87883,7 +87883,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87915,7 +87915,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -87947,7 +87947,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -87979,7 +87979,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88011,7 +88011,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88043,7 +88043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -88075,7 +88075,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88107,7 +88107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88139,7 +88139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88171,7 +88171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -88203,7 +88203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88235,7 +88235,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88267,7 +88267,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88299,7 +88299,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88331,7 +88331,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -88363,7 +88363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88395,7 +88395,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88427,7 +88427,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88459,7 +88459,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88491,7 +88491,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -88523,7 +88523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88555,7 +88555,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88587,7 +88587,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88619,7 +88619,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88651,7 +88651,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -88683,7 +88683,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88715,7 +88715,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88747,7 +88747,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88779,7 +88779,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88811,7 +88811,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88843,7 +88843,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -88875,7 +88875,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88907,7 +88907,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88939,7 +88939,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -88971,7 +88971,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -89003,7 +89003,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89035,7 +89035,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89067,7 +89067,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89099,7 +89099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89131,7 +89131,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -89163,7 +89163,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89195,7 +89195,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89227,7 +89227,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89259,7 +89259,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -89291,7 +89291,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89323,7 +89323,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89355,7 +89355,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89387,7 +89387,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89419,7 +89419,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89451,7 +89451,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 7, @@ -89483,7 +89483,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89515,7 +89515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89547,7 +89547,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89579,7 +89579,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89611,7 +89611,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89643,7 +89643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89675,7 +89675,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89707,7 +89707,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -89739,7 +89739,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89771,7 +89771,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89803,7 +89803,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89835,7 +89835,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89867,7 +89867,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -89899,7 +89899,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89931,7 +89931,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89963,7 +89963,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -89995,7 +89995,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90027,7 +90027,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -90059,7 +90059,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90091,7 +90091,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90123,7 +90123,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90155,7 +90155,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90187,7 +90187,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -90219,7 +90219,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90251,7 +90251,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90283,7 +90283,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90315,7 +90315,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90347,7 +90347,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -90379,7 +90379,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90411,7 +90411,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90443,7 +90443,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90475,7 +90475,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90507,7 +90507,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -90539,7 +90539,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90571,7 +90571,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90603,7 +90603,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90635,7 +90635,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90667,7 +90667,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -90699,7 +90699,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90731,7 +90731,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90763,7 +90763,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90795,7 +90795,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90827,7 +90827,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90859,7 +90859,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -90891,7 +90891,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90923,7 +90923,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -90955,7 +90955,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -90987,7 +90987,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91019,7 +91019,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91051,7 +91051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91083,7 +91083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91115,7 +91115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -91147,7 +91147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91179,7 +91179,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91211,7 +91211,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91243,7 +91243,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91275,7 +91275,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -91307,7 +91307,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91339,7 +91339,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91371,7 +91371,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91403,7 +91403,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91435,7 +91435,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -91467,7 +91467,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91499,7 +91499,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91531,7 +91531,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91563,7 +91563,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91595,7 +91595,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -91627,7 +91627,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91659,7 +91659,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91691,7 +91691,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91723,7 +91723,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91755,7 +91755,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -91787,7 +91787,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91819,7 +91819,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91851,7 +91851,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91883,7 +91883,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91915,7 +91915,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -91947,7 +91947,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -91979,7 +91979,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92011,7 +92011,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92043,7 +92043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92075,7 +92075,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -92107,7 +92107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92139,7 +92139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92171,7 +92171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92203,7 +92203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92235,7 +92235,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92267,7 +92267,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -92299,7 +92299,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92331,7 +92331,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92363,7 +92363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92395,7 +92395,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92427,7 +92427,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92459,7 +92459,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -92491,7 +92491,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92523,7 +92523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92555,7 +92555,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92587,7 +92587,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92619,7 +92619,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -92651,7 +92651,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92683,7 +92683,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92715,7 +92715,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92747,7 +92747,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92779,7 +92779,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -92811,7 +92811,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92843,7 +92843,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92875,7 +92875,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92907,7 +92907,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -92939,7 +92939,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -92971,7 +92971,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93003,7 +93003,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93035,7 +93035,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93067,7 +93067,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93099,7 +93099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -93131,7 +93131,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93163,7 +93163,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93195,7 +93195,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93227,7 +93227,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93259,7 +93259,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -93291,7 +93291,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93323,7 +93323,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93355,7 +93355,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93387,7 +93387,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93419,7 +93419,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -93451,7 +93451,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93483,7 +93483,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93515,7 +93515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93547,7 +93547,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93579,7 +93579,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -93611,7 +93611,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93643,7 +93643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93675,7 +93675,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93707,7 +93707,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93739,7 +93739,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93771,7 +93771,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -93803,7 +93803,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93835,7 +93835,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93867,7 +93867,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93899,7 +93899,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93931,7 +93931,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -93963,7 +93963,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -93995,7 +93995,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94027,7 +94027,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94059,7 +94059,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94091,7 +94091,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94123,7 +94123,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -94155,7 +94155,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94187,7 +94187,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94219,7 +94219,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94251,7 +94251,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94283,7 +94283,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -94315,7 +94315,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94347,7 +94347,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94379,7 +94379,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94411,7 +94411,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94443,7 +94443,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -94475,7 +94475,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94507,7 +94507,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94539,7 +94539,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94571,7 +94571,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94603,7 +94603,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94635,7 +94635,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -94667,7 +94667,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94699,7 +94699,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94731,7 +94731,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94763,7 +94763,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94795,7 +94795,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -94827,7 +94827,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94859,7 +94859,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94891,7 +94891,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94923,7 +94923,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -94955,7 +94955,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -94987,7 +94987,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95019,7 +95019,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95051,7 +95051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95083,7 +95083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95115,7 +95115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -95147,7 +95147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95179,7 +95179,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95211,7 +95211,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -95243,7 +95243,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95275,7 +95275,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95307,7 +95307,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95339,7 +95339,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -95371,7 +95371,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95403,7 +95403,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95435,7 +95435,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -95467,7 +95467,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95499,7 +95499,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95531,7 +95531,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -95563,7 +95563,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95595,7 +95595,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95627,7 +95627,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95659,7 +95659,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95691,7 +95691,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -95723,7 +95723,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95755,7 +95755,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95787,7 +95787,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95819,7 +95819,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95851,7 +95851,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -95883,7 +95883,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95915,7 +95915,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95947,7 +95947,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -95979,7 +95979,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96011,7 +96011,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -96043,7 +96043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96075,7 +96075,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96107,7 +96107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96139,7 +96139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96171,7 +96171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -96203,7 +96203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96235,7 +96235,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96267,7 +96267,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96299,7 +96299,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96331,7 +96331,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -96363,7 +96363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96395,7 +96395,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96427,7 +96427,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96459,7 +96459,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96491,7 +96491,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -96523,7 +96523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96555,7 +96555,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96587,7 +96587,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96619,7 +96619,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -96651,7 +96651,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96683,7 +96683,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96715,7 +96715,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96747,7 +96747,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96779,7 +96779,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96811,7 +96811,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -96843,7 +96843,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96875,7 +96875,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96907,7 +96907,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -96939,7 +96939,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -96971,7 +96971,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97003,7 +97003,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97035,7 +97035,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97067,7 +97067,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97099,7 +97099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -97131,7 +97131,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97163,7 +97163,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97195,7 +97195,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97227,7 +97227,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97259,7 +97259,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -97291,7 +97291,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97323,7 +97323,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97355,7 +97355,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97387,7 +97387,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97419,7 +97419,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -97451,7 +97451,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97483,7 +97483,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97515,7 +97515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97547,7 +97547,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97579,7 +97579,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -97611,7 +97611,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97643,7 +97643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97675,7 +97675,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97707,7 +97707,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97739,7 +97739,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -97771,7 +97771,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97803,7 +97803,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97835,7 +97835,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97867,7 +97867,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97899,7 +97899,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -97931,7 +97931,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97963,7 +97963,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -97995,7 +97995,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98027,7 +98027,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98059,7 +98059,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -98091,7 +98091,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98123,7 +98123,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98155,7 +98155,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98187,7 +98187,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98219,7 +98219,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -98251,7 +98251,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98283,7 +98283,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98315,7 +98315,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98347,7 +98347,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98379,7 +98379,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -98411,7 +98411,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98443,7 +98443,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98475,7 +98475,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98507,7 +98507,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98539,7 +98539,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -98571,7 +98571,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98603,7 +98603,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98635,7 +98635,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98667,7 +98667,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98699,7 +98699,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -98731,7 +98731,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98763,7 +98763,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98795,7 +98795,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98827,7 +98827,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98859,7 +98859,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -98891,7 +98891,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98923,7 +98923,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98955,7 +98955,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -98987,7 +98987,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99019,7 +99019,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -99051,7 +99051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99083,7 +99083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99115,7 +99115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99147,7 +99147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -99179,7 +99179,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99211,7 +99211,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99243,7 +99243,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99275,7 +99275,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -99307,7 +99307,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99339,7 +99339,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99371,7 +99371,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99403,7 +99403,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -99435,7 +99435,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99467,7 +99467,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99499,7 +99499,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99531,7 +99531,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -99563,7 +99563,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99595,7 +99595,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99627,7 +99627,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99659,7 +99659,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -99691,7 +99691,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99723,7 +99723,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99755,7 +99755,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99787,7 +99787,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -99819,7 +99819,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99851,7 +99851,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99883,7 +99883,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99915,7 +99915,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -99947,7 +99947,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -99979,7 +99979,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100011,7 +100011,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100043,7 +100043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -100075,7 +100075,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100107,7 +100107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100139,7 +100139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100171,7 +100171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100203,7 +100203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100235,7 +100235,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -100267,7 +100267,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100299,7 +100299,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100331,7 +100331,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100363,7 +100363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100395,7 +100395,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100427,7 +100427,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -100459,7 +100459,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100491,7 +100491,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100523,7 +100523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100555,7 +100555,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100587,7 +100587,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100619,7 +100619,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -100651,7 +100651,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100683,7 +100683,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100715,7 +100715,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100747,7 +100747,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -100779,7 +100779,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100811,7 +100811,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100843,7 +100843,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100875,7 +100875,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -100907,7 +100907,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100939,7 +100939,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -100971,7 +100971,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101003,7 +101003,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -101035,7 +101035,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101067,7 +101067,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101099,7 +101099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101131,7 +101131,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -101163,7 +101163,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101195,7 +101195,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101227,7 +101227,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101259,7 +101259,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -101291,7 +101291,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101323,7 +101323,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101355,7 +101355,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101387,7 +101387,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -101419,7 +101419,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101451,7 +101451,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101483,7 +101483,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101515,7 +101515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -101547,7 +101547,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101579,7 +101579,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101611,7 +101611,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101643,7 +101643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -101675,7 +101675,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101707,7 +101707,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101739,7 +101739,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101771,7 +101771,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -101803,7 +101803,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101835,7 +101835,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101867,7 +101867,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101899,7 +101899,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -101931,7 +101931,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101963,7 +101963,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -101995,7 +101995,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102027,7 +102027,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -102059,7 +102059,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102091,7 +102091,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102123,7 +102123,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -102155,7 +102155,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102187,7 +102187,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102219,7 +102219,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -102251,7 +102251,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102283,7 +102283,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102315,7 +102315,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -102347,7 +102347,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102379,7 +102379,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102411,7 +102411,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -102443,7 +102443,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102475,7 +102475,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -102507,7 +102507,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102539,7 +102539,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102571,7 +102571,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -102603,7 +102603,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102635,7 +102635,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102667,7 +102667,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -102699,7 +102699,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102731,7 +102731,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102763,7 +102763,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102795,7 +102795,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -102827,7 +102827,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102859,7 +102859,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102891,7 +102891,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102923,7 +102923,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -102955,7 +102955,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -102987,7 +102987,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103019,7 +103019,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103051,7 +103051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -103083,7 +103083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103115,7 +103115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103147,7 +103147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -103179,7 +103179,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103211,7 +103211,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103243,7 +103243,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103275,7 +103275,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -103307,7 +103307,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103339,7 +103339,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103371,7 +103371,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -103403,7 +103403,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103435,7 +103435,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103467,7 +103467,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103499,7 +103499,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -103531,7 +103531,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103563,7 +103563,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103595,7 +103595,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -103627,7 +103627,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103659,7 +103659,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103691,7 +103691,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -103723,7 +103723,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103755,7 +103755,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103787,7 +103787,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103819,7 +103819,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103851,7 +103851,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -103883,7 +103883,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103915,7 +103915,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103947,7 +103947,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -103979,7 +103979,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104011,7 +104011,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104043,7 +104043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -104075,7 +104075,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104107,7 +104107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104139,7 +104139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -104171,7 +104171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104203,7 +104203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -104235,7 +104235,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104267,7 +104267,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104299,7 +104299,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -104331,7 +104331,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104363,7 +104363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104395,7 +104395,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -104427,7 +104427,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104459,7 +104459,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104491,7 +104491,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -104523,7 +104523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104555,7 +104555,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104587,7 +104587,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -104619,7 +104619,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104651,7 +104651,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104683,7 +104683,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104715,7 +104715,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -104747,7 +104747,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104779,7 +104779,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104811,7 +104811,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -104843,7 +104843,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104875,7 +104875,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -104907,7 +104907,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 20, @@ -104987,7 +104987,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -105067,7 +105067,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -105099,7 +105099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -105179,7 +105179,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -105259,7 +105259,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -105291,7 +105291,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -105371,7 +105371,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -105451,7 +105451,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -105531,7 +105531,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -105611,7 +105611,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -105643,7 +105643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 10, @@ -105675,7 +105675,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -105707,7 +105707,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -105739,7 +105739,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -105771,7 +105771,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -105803,7 +105803,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -105835,7 +105835,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -105867,7 +105867,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -105947,7 +105947,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106027,7 +106027,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106107,7 +106107,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106139,7 +106139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -106171,7 +106171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106203,7 +106203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -106235,7 +106235,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106267,7 +106267,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106299,7 +106299,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106331,7 +106331,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -106363,7 +106363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106395,7 +106395,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106427,7 +106427,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106459,7 +106459,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -106491,7 +106491,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106523,7 +106523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106555,7 +106555,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106587,7 +106587,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -106619,7 +106619,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106651,7 +106651,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106683,7 +106683,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106715,7 +106715,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -106747,7 +106747,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106779,7 +106779,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106811,7 +106811,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -106843,7 +106843,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106875,7 +106875,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106907,7 +106907,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -106939,7 +106939,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -106971,7 +106971,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107003,7 +107003,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107035,7 +107035,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107067,7 +107067,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -107099,7 +107099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107131,7 +107131,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -107163,7 +107163,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107195,7 +107195,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107227,7 +107227,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107259,7 +107259,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -107291,7 +107291,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107323,7 +107323,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107355,7 +107355,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -107387,7 +107387,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107419,7 +107419,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -107451,7 +107451,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107483,7 +107483,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107515,7 +107515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -107547,7 +107547,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107579,7 +107579,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107611,7 +107611,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -107643,7 +107643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107675,7 +107675,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107707,7 +107707,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107739,7 +107739,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107771,7 +107771,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -107803,7 +107803,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107835,7 +107835,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -107867,7 +107867,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107899,7 +107899,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107931,7 +107931,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107963,7 +107963,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -107995,7 +107995,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -108027,7 +108027,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108059,7 +108059,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108091,7 +108091,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108123,7 +108123,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108155,7 +108155,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -108187,7 +108187,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108219,7 +108219,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108251,7 +108251,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108283,7 +108283,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -108315,7 +108315,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108347,7 +108347,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108379,7 +108379,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108411,7 +108411,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -108443,7 +108443,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108475,7 +108475,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108507,7 +108507,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108539,7 +108539,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -108571,7 +108571,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108603,7 +108603,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108635,7 +108635,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108667,7 +108667,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -108699,7 +108699,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108731,7 +108731,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108763,7 +108763,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108795,7 +108795,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -108827,7 +108827,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108859,7 +108859,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108891,7 +108891,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -108923,7 +108923,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108955,7 +108955,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -108987,7 +108987,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -109019,7 +109019,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109051,7 +109051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109083,7 +109083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -109115,7 +109115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109147,7 +109147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109179,7 +109179,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -109211,7 +109211,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109243,7 +109243,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109275,7 +109275,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -109307,7 +109307,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109339,7 +109339,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109371,7 +109371,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109403,7 +109403,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -109435,7 +109435,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109467,7 +109467,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109499,7 +109499,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -109531,7 +109531,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109563,7 +109563,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109595,7 +109595,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -109627,7 +109627,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109659,7 +109659,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109691,7 +109691,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -109723,7 +109723,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109755,7 +109755,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109787,7 +109787,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109819,7 +109819,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -109851,7 +109851,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109883,7 +109883,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109915,7 +109915,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -109947,7 +109947,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -109979,7 +109979,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110011,7 +110011,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110043,7 +110043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110075,7 +110075,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -110107,7 +110107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110139,7 +110139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110171,7 +110171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -110203,7 +110203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110235,7 +110235,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110267,7 +110267,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -110299,7 +110299,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110331,7 +110331,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110363,7 +110363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110395,7 +110395,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -110427,7 +110427,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110459,7 +110459,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110491,7 +110491,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110523,7 +110523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -110555,7 +110555,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110587,7 +110587,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110619,7 +110619,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110651,7 +110651,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -110683,7 +110683,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110715,7 +110715,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110747,7 +110747,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110779,7 +110779,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -110811,7 +110811,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110843,7 +110843,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -110875,7 +110875,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110907,7 +110907,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -110939,7 +110939,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -110971,7 +110971,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111003,7 +111003,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111035,7 +111035,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111067,7 +111067,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -111099,7 +111099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111131,7 +111131,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111163,7 +111163,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111195,7 +111195,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -111227,7 +111227,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111259,7 +111259,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111291,7 +111291,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -111323,7 +111323,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111355,7 +111355,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111387,7 +111387,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -111419,7 +111419,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111451,7 +111451,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111483,7 +111483,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -111515,7 +111515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111547,7 +111547,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111579,7 +111579,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -111611,7 +111611,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111643,7 +111643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111675,7 +111675,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -111707,7 +111707,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111739,7 +111739,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111771,7 +111771,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -111803,7 +111803,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111835,7 +111835,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111867,7 +111867,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -111899,7 +111899,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111931,7 +111931,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -111963,7 +111963,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -111995,7 +111995,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -112027,7 +112027,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -112059,7 +112059,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -112091,7 +112091,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -112123,7 +112123,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -112155,7 +112155,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -112187,7 +112187,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -112219,7 +112219,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -112251,7 +112251,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -112283,7 +112283,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -112315,7 +112315,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -112347,7 +112347,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -112379,7 +112379,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -112411,7 +112411,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -112443,7 +112443,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -112475,7 +112475,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -112507,7 +112507,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -112539,7 +112539,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -112571,7 +112571,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -112603,7 +112603,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -112635,7 +112635,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -112667,7 +112667,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -112699,7 +112699,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -112731,7 +112731,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -112763,7 +112763,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -112795,7 +112795,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -112827,7 +112827,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -112859,7 +112859,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -112891,7 +112891,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -112923,7 +112923,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -112955,7 +112955,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -112987,7 +112987,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113019,7 +113019,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -113051,7 +113051,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113083,7 +113083,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -113115,7 +113115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113147,7 +113147,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -113179,7 +113179,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113211,7 +113211,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -113243,7 +113243,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113275,7 +113275,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -113307,7 +113307,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113339,7 +113339,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -113371,7 +113371,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113403,7 +113403,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -113435,7 +113435,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113467,7 +113467,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -113499,7 +113499,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113531,7 +113531,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -113563,7 +113563,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113595,7 +113595,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -113627,7 +113627,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113659,7 +113659,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -113691,7 +113691,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113723,7 +113723,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -113755,7 +113755,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113787,7 +113787,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -113819,7 +113819,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113851,7 +113851,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -113883,7 +113883,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113915,7 +113915,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -113947,7 +113947,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -113979,7 +113979,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 20, @@ -114011,7 +114011,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114043,7 +114043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "FN@.tar.gz", @@ -114087,7 +114087,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114119,7 +114119,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114199,7 +114199,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114231,7 +114231,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114263,7 +114263,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114295,7 +114295,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114327,7 +114327,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114359,7 +114359,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "E2FSPROGS_PKGVER@.orig.tar.gz", @@ -114397,7 +114397,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114429,7 +114429,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114461,7 +114461,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114493,7 +114493,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114573,7 +114573,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -114616,7 +114616,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114648,7 +114648,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "tytso@mit.edu", @@ -114686,7 +114686,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114718,7 +114718,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -114750,7 +114750,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -114782,7 +114782,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { diff --git a/tests/summarycode/data/plugin_consolidate/license-holder-rollup-expected.json b/tests/summarycode/data/plugin_consolidate/license-holder-rollup-expected.json index 9f4bd6aeb56..fb0940cddb2 100644 --- a/tests/summarycode/data/plugin_consolidate/license-holder-rollup-expected.json +++ b/tests/summarycode/data/plugin_consolidate/license-holder-rollup-expected.json @@ -21,6 +21,7 @@ } } ], + "packages": [], "consolidated_components": [ { "type": "holders", @@ -98,7 +99,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [], "files_count": 3, "dirs_count": 5, @@ -130,7 +131,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [], "files_count": 1, "dirs_count": 1, @@ -162,7 +163,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "omegacom_1" ], @@ -288,7 +289,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "omegacom_1" ], @@ -322,7 +323,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [], "files_count": 2, "dirs_count": 2, @@ -354,7 +355,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "corp_ibm_1" ], @@ -480,7 +481,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "corp_ibm_1" ], @@ -514,7 +515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "corp_oracle_1" ], @@ -640,7 +641,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "corp_oracle_1" ], diff --git a/tests/summarycode/data/plugin_consolidate/multiple-same-holder-and-license-expected.json b/tests/summarycode/data/plugin_consolidate/multiple-same-holder-and-license-expected.json index 2f860cdbf9b..1765d3d4b53 100644 --- a/tests/summarycode/data/plugin_consolidate/multiple-same-holder-and-license-expected.json +++ b/tests/summarycode/data/plugin_consolidate/multiple-same-holder-and-license-expected.json @@ -21,6 +21,7 @@ } } ], + "packages": [], "consolidated_components": [ { "type": "holders", @@ -66,7 +67,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "corp_ibm_1" ], @@ -202,7 +203,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "corp_ibm_1" ], @@ -338,7 +339,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "corp_ibm_1" ], diff --git a/tests/summarycode/data/plugin_consolidate/package-files-not-counted-in-license-holders-expected.json b/tests/summarycode/data/plugin_consolidate/package-files-not-counted-in-license-holders-expected.json index fcb1703fc99..0bbe8a9bc03 100644 --- a/tests/summarycode/data/plugin_consolidate/package-files-not-counted-in-license-holders-expected.json +++ b/tests/summarycode/data/plugin_consolidate/package-files-not-counted-in-license-holders-expected.json @@ -21,25 +21,7 @@ } } ], - "consolidated_components": [ - { - "type": "holders", - "identifier": "apache_foundation_software_1", - "consolidated_license_expression": "apache-2.0", - "consolidated_holders": [ - "The Apache Software Foundation" - ], - "consolidated_copyright": "Copyright (c) The Apache Software Foundation", - "core_license_expression": "apache-2.0", - "core_holders": [ - "The Apache Software Foundation" - ], - "other_license_expression": null, - "other_holders": [], - "files_count": 2 - } - ], - "consolidated_packages": [ + "packages": [ { "type": "npm", "namespace": null, @@ -76,24 +58,44 @@ "purl": "pkg:npm/test-package@0.0.1", "repository_homepage_url": "https://www.npmjs.com/package/test-package", "repository_download_url": "https://registry.npmjs.org/test-package/-/test-package-0.0.1.tgz", - "api_data_url": "https://registry.npmjs.org/test-package/0.0.1", - "identifier": "pkg_npm_test_package_0_0_1_1", + "api_data_url": "https://registry.npmjs.org/test-package/0.0.1" + } + ], + "consolidated_components": [ + { + "type": "holders", + "identifier": "apache_foundation_software_1", "consolidated_license_expression": "apache-2.0", "consolidated_holders": [ - "The Apache Software", "The Apache Software Foundation" ], - "consolidated_copyright": "Copyright (c) The Apache Software, The Apache Software Foundation", + "consolidated_copyright": "Copyright (c) The Apache Software Foundation", "core_license_expression": "apache-2.0", - "core_holders": [], - "other_license_expression": "apache-2.0", - "other_holders": [ - "The Apache Software Foundation", + "core_holders": [ + "The Apache Software Foundation" + ], + "other_license_expression": null, + "other_holders": [], + "files_count": 5 + }, + { + "type": "holders", + "identifier": "apache_software_1", + "consolidated_license_expression": "apache-2.0", + "consolidated_holders": [ + "The Apache Software" + ], + "consolidated_copyright": "Copyright (c) The Apache Software", + "core_license_expression": "apache-2.0", + "core_holders": [ "The Apache Software" ], - "files_count": 4 + "other_license_expression": null, + "other_holders": [], + "files_count": 1 } ], + "consolidated_packages": [], "files": [ { "path": "package-files-not-counted-in-license-holders", @@ -120,7 +122,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "apache_foundation_software_1" ], @@ -154,9 +156,9 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" + "apache_software_1" ], "files_count": 4, "dirs_count": 0, @@ -241,7 +243,7 @@ } ], "authors": [], - "packages": [ + "package_manifests": [ { "type": "npm", "namespace": null, @@ -282,7 +284,7 @@ } ], "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" + "apache_software_1" ], "files_count": 0, "dirs_count": 0, @@ -367,9 +369,9 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" + "apache_foundation_software_1" ], "files_count": 0, "dirs_count": 0, @@ -454,9 +456,9 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" + "apache_foundation_software_1" ], "files_count": 0, "dirs_count": 0, @@ -541,9 +543,9 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" + "apache_foundation_software_1" ], "files_count": 0, "dirs_count": 0, @@ -628,7 +630,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "apache_foundation_software_1" ], @@ -715,7 +717,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "apache_foundation_software_1" ], diff --git a/tests/summarycode/data/plugin_consolidate/package-fileset-expected.json b/tests/summarycode/data/plugin_consolidate/package-fileset-expected.json index d8df74f0ced..5e5de3d545c 100644 --- a/tests/summarycode/data/plugin_consolidate/package-fileset-expected.json +++ b/tests/summarycode/data/plugin_consolidate/package-fileset-expected.json @@ -21,8 +21,7 @@ } } ], - "consolidated_components": [], - "consolidated_packages": [ + "packages": [ { "type": "npm", "namespace": null, @@ -59,22 +58,28 @@ "purl": "pkg:npm/test-package@0.0.1", "repository_homepage_url": "https://www.npmjs.com/package/test-package", "repository_download_url": "https://registry.npmjs.org/test-package/-/test-package-0.0.1.tgz", - "api_data_url": "https://registry.npmjs.org/test-package/0.0.1", - "identifier": "pkg_npm_test_package_0_0_1_1", + "api_data_url": "https://registry.npmjs.org/test-package/0.0.1" + } + ], + "consolidated_components": [ + { + "type": "holders", + "identifier": "apache_foundation_software_1", "consolidated_license_expression": "apache-2.0", "consolidated_holders": [ "The Apache Software Foundation" ], "consolidated_copyright": "Copyright (c) The Apache Software Foundation", "core_license_expression": "apache-2.0", - "core_holders": [], - "other_license_expression": "apache-2.0", - "other_holders": [ + "core_holders": [ "The Apache Software Foundation" ], - "files_count": 4 + "other_license_expression": null, + "other_holders": [], + "files_count": 3 } ], + "consolidated_packages": [], "files": [ { "path": "package", @@ -101,9 +106,9 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" + "apache_foundation_software_1" ], "files_count": 4, "dirs_count": 0, @@ -176,7 +181,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [ + "package_manifests": [ { "type": "npm", "namespace": null, @@ -216,9 +221,7 @@ "api_data_url": "https://registry.npmjs.org/test-package/0.0.1" } ], - "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" - ], + "consolidated_to": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -302,9 +305,9 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" + "apache_foundation_software_1" ], "files_count": 0, "dirs_count": 0, @@ -389,9 +392,9 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" + "apache_foundation_software_1" ], "files_count": 0, "dirs_count": 0, @@ -476,9 +479,9 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" + "apache_foundation_software_1" ], "files_count": 0, "dirs_count": 0, diff --git a/tests/summarycode/data/plugin_consolidate/package-manifest-expected.json b/tests/summarycode/data/plugin_consolidate/package-manifest-expected.json index 3bd9b54bf2a..7478d142117 100644 --- a/tests/summarycode/data/plugin_consolidate/package-manifest-expected.json +++ b/tests/summarycode/data/plugin_consolidate/package-manifest-expected.json @@ -21,8 +21,7 @@ } } ], - "consolidated_components": [], - "consolidated_packages": [ + "packages": [ { "type": "npm", "namespace": null, @@ -59,18 +58,11 @@ "purl": "pkg:npm/test-package@0.0.1", "repository_homepage_url": "https://www.npmjs.com/package/test-package", "repository_download_url": "https://registry.npmjs.org/test-package/-/test-package-0.0.1.tgz", - "api_data_url": "https://registry.npmjs.org/test-package/0.0.1", - "identifier": "pkg_npm_test_package_0_0_1_1", - "consolidated_license_expression": "apache-2.0", - "consolidated_holders": [], - "consolidated_copyright": "Copyright (c) ", - "core_license_expression": "apache-2.0", - "core_holders": [], - "other_license_expression": "apache-2.0", - "other_holders": [], - "files_count": 1 + "api_data_url": "https://registry.npmjs.org/test-package/0.0.1" } ], + "consolidated_components": [], + "consolidated_packages": [], "files": [ { "path": "package-manifest", @@ -97,10 +89,8 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], - "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" - ], + "package_manifests": [], + "consolidated_to": [], "files_count": 1, "dirs_count": 0, "size_count": 78, @@ -172,7 +162,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [ + "package_manifests": [ { "type": "npm", "namespace": null, @@ -212,9 +202,7 @@ "api_data_url": "https://registry.npmjs.org/test-package/0.0.1" } ], - "consolidated_to": [ - "pkg_npm_test_package_0_0_1_1" - ], + "consolidated_to": [], "files_count": 0, "dirs_count": 0, "size_count": 0, diff --git a/tests/summarycode/data/plugin_consolidate/report-subdirectory-with-minority-origin-expected.json b/tests/summarycode/data/plugin_consolidate/report-subdirectory-with-minority-origin-expected.json index c2bfddba196..86349e6c127 100644 --- a/tests/summarycode/data/plugin_consolidate/report-subdirectory-with-minority-origin-expected.json +++ b/tests/summarycode/data/plugin_consolidate/report-subdirectory-with-minority-origin-expected.json @@ -21,6 +21,7 @@ } } ], + "packages": [], "consolidated_components": [ { "type": "holders", @@ -82,7 +83,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "corp_ibm_1" ], @@ -169,7 +170,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "corp_ibm_1" ], @@ -256,7 +257,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "corp_ibm_1" ], @@ -343,7 +344,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "corp_ibm_1" ], @@ -377,7 +378,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "corp_omega_1" ], @@ -464,7 +465,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "corp_omega_1" ], diff --git a/tests/summarycode/data/plugin_consolidate/return-nested-local-majority-expected.json b/tests/summarycode/data/plugin_consolidate/return-nested-local-majority-expected.json index 404d49f812e..87fd9ca0364 100644 --- a/tests/summarycode/data/plugin_consolidate/return-nested-local-majority-expected.json +++ b/tests/summarycode/data/plugin_consolidate/return-nested-local-majority-expected.json @@ -21,6 +21,7 @@ } } ], + "packages": [], "consolidated_components": [ { "type": "holders", @@ -82,7 +83,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [], "files_count": 4, "dirs_count": 2, @@ -114,7 +115,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "apache_foundation_software_1" ], @@ -240,7 +241,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "apache_foundation_software_1" ], @@ -366,7 +367,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "apache_foundation_software_1" ], @@ -400,7 +401,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "corp_ibm_1" ], @@ -526,7 +527,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "corp_ibm_1" ], @@ -652,7 +653,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "consolidated_to": [ "apache_foundation_software_1" ], diff --git a/tests/summarycode/data/plugin_consolidate/zlib-expected.json b/tests/summarycode/data/plugin_consolidate/zlib-expected.json index 12c05d09759..0ac77deac09 100644 --- a/tests/summarycode/data/plugin_consolidate/zlib-expected.json +++ b/tests/summarycode/data/plugin_consolidate/zlib-expected.json @@ -43,30 +43,6 @@ } ], "consolidated_components": [ - { - "type": "build", - "identifier": "minizip_1", - "consolidated_license_expression": "info-zip-2009-01 AND zlib", - "consolidated_holders": [ - "Even Rouault", - "Gilles Vollant", - "Gilles Vollant, Even Rouault, Mathias Svensson", - "Info-ZIP.", - "Mathias Svensson" - ], - "consolidated_copyright": "Copyright (c) Even Rouault, Gilles Vollant, Gilles Vollant, Even Rouault, Mathias Svensson, Info-ZIP., Mathias Svensson", - "core_license_expression": null, - "core_holders": [], - "other_license_expression": "info-zip-2009-01 AND zlib", - "other_holders": [ - "Gilles Vollant, Even Rouault, Mathias Svensson", - "Even Rouault", - "Gilles Vollant", - "Info-ZIP.", - "Mathias Svensson" - ], - "files_count": 22 - }, { "type": "holders", "identifier": "adler_and_gailly_jean_loup_mark_1", @@ -461,7 +437,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -498,7 +474,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -551,7 +527,7 @@ "end_line": 1230 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "info@winimage.com", @@ -635,7 +611,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "zlib@gzip.org", @@ -734,7 +710,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -766,7 +742,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -846,7 +822,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -954,7 +930,7 @@ "end_line": 111 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "zlib@gzip.org", @@ -1118,7 +1094,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -1152,7 +1128,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -1199,7 +1175,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -1245,7 +1221,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Osma.Ahvenlampi@hut.fi", @@ -1333,7 +1309,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -1367,7 +1343,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "alain.bonnefoy@icbt.com", @@ -1415,7 +1391,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -1543,7 +1519,7 @@ "end_line": 78 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "anisimkov@yahoo.com", @@ -1667,7 +1643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -1790,7 +1766,7 @@ "end_line": 11 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sjs@essex.ac.uk", @@ -1913,7 +1889,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -2030,7 +2006,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -2070,7 +2046,7 @@ "end_line": 63 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "anisimkov@yahoo.com", @@ -2212,7 +2188,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -2329,7 +2305,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -2446,7 +2422,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -2563,7 +2539,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -2680,7 +2656,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -2797,7 +2773,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -2914,7 +2890,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -2948,7 +2924,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -2980,7 +2956,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -3048,7 +3024,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -3080,7 +3056,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -3114,7 +3090,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "breadbox@muppetlabs.com", @@ -3206,7 +3182,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "breadbox@muppetlabs.com", @@ -3246,7 +3222,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -3278,7 +3254,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -3310,7 +3286,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "madler@alumni.caltech.edu", @@ -3396,7 +3372,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -3478,7 +3454,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "madler@alumni.caltech.edu", @@ -3518,7 +3494,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -3550,7 +3526,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -3582,7 +3558,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -3634,7 +3610,7 @@ "end_line": 10 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "cosmint@cs.ubbcluj.ro", @@ -3674,7 +3650,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -3718,7 +3694,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "cosmint@cs.ubbcluj.ro", @@ -3758,7 +3734,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -3790,7 +3766,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -3824,7 +3800,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -3856,7 +3832,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -3888,7 +3864,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -3920,7 +3896,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -3964,7 +3940,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -4046,7 +4022,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -4134,7 +4110,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -4222,7 +4198,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -4310,7 +4286,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -4398,7 +4374,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -4438,7 +4414,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -4518,7 +4494,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -4606,7 +4582,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -4694,7 +4670,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -4775,7 +4751,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -4855,7 +4831,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -4895,7 +4871,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -4983,7 +4959,7 @@ "end_line": 15 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -5048,7 +5024,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5080,7 +5056,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5160,7 +5136,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -5242,7 +5218,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -5276,7 +5252,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5356,7 +5332,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -5448,7 +5424,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -5530,7 +5506,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -5564,7 +5540,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -5656,7 +5632,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "christop@charm.net", @@ -5771,7 +5747,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "christop@charm.net", @@ -5823,7 +5799,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5855,7 +5831,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5887,7 +5863,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5919,7 +5895,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -5951,7 +5927,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -6033,7 +6009,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -6073,7 +6049,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6105,7 +6081,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6179,7 +6155,7 @@ "end_line": 13 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "schwardt@sun.ac.za", @@ -6217,7 +6193,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6260,7 +6236,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "schwardt@sun.ac.za", @@ -6314,7 +6290,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "schwardt@sun.ac.za", @@ -6368,7 +6344,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "schwardt@sun.ac.za", @@ -6411,7 +6387,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6443,7 +6419,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6529,7 +6505,7 @@ "end_line": 11 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -6650,7 +6626,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "christop@charm.net", @@ -6706,7 +6682,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -6765,7 +6741,7 @@ "end_line": 11 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -6808,7 +6784,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6840,7 +6816,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -6930,7 +6906,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "christop@charm.net", @@ -7055,7 +7031,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "breadbox@muppetlabs.com", @@ -7114,7 +7090,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -7157,7 +7133,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -7165,8 +7141,7 @@ "even_rouault_1", "gilles_vollant_1", "info_zip_1", - "mathias_svensson_1", - "minizip_1" + "mathias_svensson_1" ], "files_count": 22, "dirs_count": 0, @@ -7196,12 +7171,10 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], - "consolidated_to": [ - "minizip_1" - ], + "consolidated_to": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -7230,12 +7203,10 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], - "consolidated_to": [ - "minizip_1" - ], + "consolidated_to": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -7264,12 +7235,10 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], - "consolidated_to": [ - "minizip_1" - ], + "consolidated_to": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -7352,7 +7321,7 @@ "end_line": 35 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -7377,8 +7346,7 @@ } ], "consolidated_to": [ - "gilles_vollant_1", - "minizip_1" + "gilles_vollant_1" ], "files_count": 0, "dirs_count": 0, @@ -7408,7 +7376,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [ + "package_manifests": [ { "type": "autotools", "namespace": null, @@ -7447,9 +7415,7 @@ ], "emails": [], "urls": [], - "consolidated_to": [ - "minizip_1" - ], + "consolidated_to": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -7490,7 +7456,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -7500,8 +7466,7 @@ } ], "consolidated_to": [ - "gilles_vollant_1", - "minizip_1" + "gilles_vollant_1" ], "files_count": 0, "dirs_count": 0, @@ -7553,7 +7518,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -7569,8 +7534,7 @@ ], "consolidated_to": [ "gilles_vollant_1", - "mathias_svensson_1", - "minizip_1" + "mathias_svensson_1" ], "files_count": 0, "dirs_count": 0, @@ -7622,7 +7586,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -7638,8 +7602,7 @@ ], "consolidated_to": [ "gilles_vollant_1", - "mathias_svensson_1", - "minizip_1" + "mathias_svensson_1" ], "files_count": 0, "dirs_count": 0, @@ -7691,7 +7654,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -7707,8 +7670,7 @@ ], "consolidated_to": [ "gilles_vollant_1", - "mathias_svensson_1", - "minizip_1" + "mathias_svensson_1" ], "files_count": 0, "dirs_count": 0, @@ -7760,7 +7722,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -7776,8 +7738,7 @@ ], "consolidated_to": [ "gilles_vollant_1", - "mathias_svensson_1", - "minizip_1" + "mathias_svensson_1" ], "files_count": 0, "dirs_count": 0, @@ -7807,12 +7768,10 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], - "consolidated_to": [ - "minizip_1" - ], + "consolidated_to": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -7879,7 +7838,7 @@ "end_line": 191 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -7901,8 +7860,7 @@ "consolidated_to": [ "even_rouault_1", "gilles_vollant_1", - "mathias_svensson_1", - "minizip_1" + "mathias_svensson_1" ], "files_count": 0, "dirs_count": 0, @@ -7948,7 +7906,7 @@ "end_line": 63 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "broonie@sirena.org.uk", @@ -7962,9 +7920,7 @@ } ], "urls": [], - "consolidated_to": [ - "minizip_1" - ], + "consolidated_to": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -8004,7 +7960,7 @@ "end_line": 45 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "broonie@sirena.org.uk", @@ -8013,9 +7969,7 @@ } ], "urls": [], - "consolidated_to": [ - "minizip_1" - ], + "consolidated_to": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -8082,7 +8036,7 @@ "end_line": 169 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -8099,8 +8053,7 @@ "consolidated_to": [ "even_rouault_1", "gilles_vollant_1", - "mathias_svensson_1", - "minizip_1" + "mathias_svensson_1" ], "files_count": 0, "dirs_count": 0, @@ -8130,12 +8083,10 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], - "consolidated_to": [ - "minizip_1" - ], + "consolidated_to": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -8200,7 +8151,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -8209,9 +8160,7 @@ "end_line": 4 } ], - "consolidated_to": [ - "minizip_1" - ], + "consolidated_to": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -8276,7 +8225,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -8285,9 +8234,7 @@ "end_line": 4 } ], - "consolidated_to": [ - "minizip_1" - ], + "consolidated_to": [], "files_count": 0, "dirs_count": 0, "size_count": 0, @@ -8430,7 +8377,7 @@ "end_line": 58 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "cryogen@infoserve.net", @@ -8465,8 +8412,7 @@ "even_rouault_1", "gilles_vollant_1", "info_zip_1", - "mathias_svensson_1", - "minizip_1" + "mathias_svensson_1" ], "files_count": 0, "dirs_count": 0, @@ -8564,7 +8510,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -8581,8 +8527,7 @@ "consolidated_to": [ "even_rouault_1", "gilles_vollant_1", - "mathias_svensson_1", - "minizip_1" + "mathias_svensson_1" ], "files_count": 0, "dirs_count": 0, @@ -8644,7 +8589,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -8665,8 +8610,7 @@ ], "consolidated_to": [ "gilles_vollant_1", - "mathias_svensson_1", - "minizip_1" + "mathias_svensson_1" ], "files_count": 0, "dirs_count": 0, @@ -8754,7 +8698,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -8770,8 +8714,7 @@ ], "consolidated_to": [ "gilles_vollant_1", - "mathias_svensson_1", - "minizip_1" + "mathias_svensson_1" ], "files_count": 0, "dirs_count": 0, @@ -8801,7 +8744,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -8905,7 +8848,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -9039,7 +8982,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -9077,7 +9020,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9157,7 +9100,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -9191,7 +9134,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9223,7 +9166,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9255,7 +9198,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "madler@alumni.caltech.edu", @@ -9341,7 +9284,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -9429,7 +9372,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "madler@alumni.caltech.edu", @@ -9517,7 +9460,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -9551,7 +9494,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9583,7 +9526,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9615,7 +9558,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -9653,7 +9596,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9685,7 +9628,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9717,7 +9660,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9749,7 +9692,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9797,7 +9740,7 @@ "end_line": 6 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "paag@tid.es", @@ -9845,7 +9788,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9877,7 +9820,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "info@winimage.com", @@ -9926,7 +9869,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9958,7 +9901,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -9990,7 +9933,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10022,7 +9965,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10054,7 +9997,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10086,7 +10029,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10118,7 +10061,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10150,7 +10093,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10182,7 +10125,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10226,7 +10169,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -10260,7 +10203,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10292,7 +10235,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10324,7 +10267,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10356,7 +10299,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10388,7 +10331,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10420,7 +10363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10452,7 +10395,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10484,7 +10427,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10516,7 +10459,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10548,7 +10491,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10580,7 +10523,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10624,7 +10567,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -10658,7 +10601,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10690,7 +10633,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10722,7 +10665,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10754,7 +10697,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10786,7 +10729,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10818,7 +10761,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10850,7 +10793,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10882,7 +10825,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10914,7 +10857,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -10958,7 +10901,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -10992,7 +10935,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11024,7 +10967,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11056,7 +10999,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11088,7 +11031,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11120,7 +11063,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11152,7 +11095,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11184,7 +11127,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11216,7 +11159,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11248,7 +11191,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11292,7 +11235,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -11326,7 +11269,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11358,7 +11301,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11390,7 +11333,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11422,7 +11365,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11454,7 +11397,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11486,7 +11429,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11518,7 +11461,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11550,7 +11493,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11582,7 +11525,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11626,7 +11569,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -11660,7 +11603,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11692,7 +11635,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11724,7 +11667,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11756,7 +11699,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11836,7 +11779,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "rbrown64@csc.com.au", @@ -11876,7 +11819,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -11972,7 +11915,7 @@ "end_line": 35 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -12094,7 +12037,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -12128,7 +12071,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -12163,7 +12106,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jloup@gzip.org", @@ -12260,7 +12203,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "ghost@aladdin.com", @@ -12384,7 +12327,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "ghost@aladdin.com", @@ -12514,7 +12457,7 @@ "end_line": 573 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "gzip@prep.ai.mit.edu", @@ -12600,7 +12543,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -12632,7 +12575,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -12664,7 +12607,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -12708,7 +12651,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -12778,7 +12721,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -12868,7 +12811,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -12960,7 +12903,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "madler@alumni.caltech.edu", @@ -13048,7 +12991,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "madler@alumni.caltech.edu", @@ -13136,7 +13079,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -13218,7 +13161,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "madler@alumni.caltech.edu", @@ -13316,7 +13259,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -13386,7 +13329,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -13466,7 +13409,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -13548,7 +13491,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -13630,7 +13573,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -13712,7 +13655,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -13794,7 +13737,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -13876,7 +13819,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -13958,7 +13901,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -14040,7 +13983,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -14122,7 +14065,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -14156,7 +14099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14236,7 +14179,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -14318,7 +14261,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -14410,7 +14353,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -14492,7 +14435,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -14532,7 +14475,7 @@ "end_line": 427 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "zinser@zinser.no-ip.info", @@ -14575,7 +14518,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14607,7 +14550,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14687,7 +14630,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -14769,7 +14712,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -14803,7 +14746,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14835,7 +14778,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14867,7 +14810,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14899,7 +14842,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -14931,7 +14874,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "eduardo.m.costa@gmail.com", @@ -14975,7 +14918,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15055,7 +14998,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -15089,7 +15032,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "rw@shadow.org.uk", @@ -15127,7 +15070,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15165,7 +15108,7 @@ "end_line": 2 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "m.zinser@gsi.de", @@ -15203,7 +15146,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15271,7 +15214,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15303,7 +15246,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15335,7 +15278,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jon-net@usa.net", @@ -15383,7 +15326,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15415,7 +15358,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15447,7 +15390,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15491,7 +15434,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -15525,7 +15468,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15557,7 +15500,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15589,7 +15532,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "alain.bonnefoy@icbt.com", @@ -15638,7 +15581,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -15718,7 +15661,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -15800,7 +15743,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -15882,7 +15825,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "malbrech@eso.org", @@ -15922,7 +15865,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -16002,7 +15945,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -16042,7 +15985,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -16122,7 +16065,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -16156,7 +16099,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -16188,7 +16131,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -16220,7 +16163,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -16252,7 +16195,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -16284,7 +16227,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "cosmint@cs.ubbcluj.ro", @@ -16333,7 +16276,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -16413,7 +16356,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -16459,7 +16402,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -16552,7 +16495,7 @@ "end_line": 99 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "zlib@gzip.org", @@ -16618,7 +16561,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -16650,7 +16593,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -16694,7 +16637,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -16782,7 +16725,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -16864,7 +16807,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -16946,7 +16889,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -17039,7 +16982,7 @@ "end_line": 143 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "info@winimage.com", @@ -17194,7 +17137,7 @@ "end_line": 117 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "info@winimage.com", @@ -17333,7 +17276,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jloup@gzip.org", @@ -17384,7 +17327,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -17416,7 +17359,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -17448,7 +17391,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -17486,7 +17429,7 @@ "end_line": 7 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [], @@ -17566,7 +17509,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ @@ -17648,7 +17591,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "consolidated_to": [ diff --git a/tests/summarycode/data/plugin_consolidate/zlib.json b/tests/summarycode/data/plugin_consolidate/zlib.json index 96a3f2973cb..b9215724bb8 100644 --- a/tests/summarycode/data/plugin_consolidate/zlib.json +++ b/tests/summarycode/data/plugin_consolidate/zlib.json @@ -52,7 +52,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 253, @@ -132,7 +132,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -185,7 +185,7 @@ "end_line": 1230 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "info@winimage.com", @@ -269,7 +269,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -349,7 +349,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -381,7 +381,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "alain.bonnefoy@icbt.com", @@ -477,7 +477,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "rbrown64@csc.com.au", @@ -515,7 +515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -611,7 +611,7 @@ "end_line": 35 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -731,7 +731,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -763,7 +763,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "zlib@gzip.org", @@ -910,7 +910,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -990,7 +990,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -1070,7 +1070,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -1150,7 +1150,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -1230,7 +1230,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -1262,7 +1262,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -1342,7 +1342,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -1422,7 +1422,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -1502,7 +1502,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -1534,7 +1534,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -1614,7 +1614,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -1694,7 +1694,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -1784,7 +1784,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -1864,7 +1864,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -1902,7 +1902,7 @@ "end_line": 427 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "zinser@zinser.no-ip.info", @@ -1945,7 +1945,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -2025,7 +2025,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -2131,7 +2131,7 @@ "end_line": 111 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "zlib@gzip.org", @@ -2245,7 +2245,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -2325,7 +2325,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -2363,7 +2363,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -2443,7 +2443,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -2523,7 +2523,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -2603,7 +2603,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -2683,7 +2683,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -2774,7 +2774,7 @@ "end_line": 143 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "info@winimage.com", @@ -2927,7 +2927,7 @@ "end_line": 117 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "info@winimage.com", @@ -3064,7 +3064,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jloup@gzip.org", @@ -3113,7 +3113,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -3145,7 +3145,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -3177,7 +3177,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -3215,7 +3215,7 @@ "end_line": 7 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -3295,7 +3295,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -3375,7 +3375,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -3407,7 +3407,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -3451,7 +3451,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -3495,7 +3495,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "Osma.Ahvenlampi@hut.fi", @@ -3533,7 +3533,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 159, @@ -3661,7 +3661,7 @@ "end_line": 78 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "anisimkov@yahoo.com", @@ -3785,7 +3785,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 12, @@ -3906,7 +3906,7 @@ "end_line": 11 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "sjs@essex.ac.uk", @@ -4027,7 +4027,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -4142,7 +4142,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -4180,7 +4180,7 @@ "end_line": 63 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "anisimkov@yahoo.com", @@ -4322,7 +4322,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -4437,7 +4437,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -4552,7 +4552,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -4667,7 +4667,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -4782,7 +4782,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -4897,7 +4897,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5012,7 +5012,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5044,7 +5044,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5076,7 +5076,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -5144,7 +5144,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5176,7 +5176,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -5256,7 +5256,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "breadbox@muppetlabs.com", @@ -5294,7 +5294,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "breadbox@muppetlabs.com", @@ -5338,7 +5338,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 6, @@ -5418,7 +5418,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5498,7 +5498,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "madler@alumni.caltech.edu", @@ -5536,7 +5536,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5568,7 +5568,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "madler@alumni.caltech.edu", @@ -5606,7 +5606,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5638,7 +5638,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5670,7 +5670,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -5714,7 +5714,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "cosmint@cs.ubbcluj.ro", @@ -5770,7 +5770,7 @@ "end_line": 10 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "cosmint@cs.ubbcluj.ro", @@ -5808,7 +5808,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5840,7 +5840,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5872,7 +5872,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 15, @@ -5904,7 +5904,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5936,7 +5936,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -5968,7 +5968,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -6036,7 +6036,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -6116,7 +6116,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -6154,7 +6154,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 10, @@ -6198,7 +6198,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -6278,7 +6278,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -6364,7 +6364,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -6450,7 +6450,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -6536,7 +6536,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -6622,7 +6622,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -6660,7 +6660,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -6740,7 +6740,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -6826,7 +6826,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -6912,7 +6912,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -6955,7 +6955,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -7041,7 +7041,7 @@ "end_line": 15 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -7104,7 +7104,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 7, @@ -7184,7 +7184,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7264,7 +7264,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7296,7 +7296,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7376,7 +7376,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7466,7 +7466,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7546,7 +7546,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7578,7 +7578,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7610,7 +7610,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -7700,7 +7700,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "christop@charm.net", @@ -7812,7 +7812,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "christop@charm.net", @@ -7861,7 +7861,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -7893,7 +7893,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7925,7 +7925,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7957,7 +7957,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -7989,7 +7989,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -8069,7 +8069,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -8107,7 +8107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8139,7 +8139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -8213,7 +8213,7 @@ "end_line": 13 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "schwardt@sun.ac.za", @@ -8262,7 +8262,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "schwardt@sun.ac.za", @@ -8305,7 +8305,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8348,7 +8348,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "schwardt@sun.ac.za", @@ -8402,7 +8402,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "schwardt@sun.ac.za", @@ -8445,7 +8445,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -8477,7 +8477,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8563,7 +8563,7 @@ "end_line": 11 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -8684,7 +8684,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "christop@charm.net", @@ -8738,7 +8738,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -8797,7 +8797,7 @@ "end_line": 11 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -8840,7 +8840,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -8872,7 +8872,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -8962,7 +8962,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "christop@charm.net", @@ -9085,7 +9085,7 @@ "end_line": 5 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "breadbox@muppetlabs.com", @@ -9144,7 +9144,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -9187,7 +9187,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 22, @@ -9219,7 +9219,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [ + "package_manifests": [ { "type": "autotools", "namespace": null, @@ -9299,7 +9299,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -9359,7 +9359,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -9424,7 +9424,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -9489,7 +9489,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -9554,7 +9554,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -9597,7 +9597,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9629,7 +9629,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9661,7 +9661,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -9731,7 +9731,7 @@ "end_line": 191 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -9795,7 +9795,7 @@ "end_line": 63 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "broonie@sirena.org.uk", @@ -9849,7 +9849,7 @@ "end_line": 45 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "broonie@sirena.org.uk", @@ -9925,7 +9925,7 @@ "end_line": 169 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -9968,7 +9968,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -10000,7 +10000,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -10086,7 +10086,7 @@ "end_line": 35 } ], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -10175,7 +10175,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -10249,7 +10249,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -10401,7 +10401,7 @@ "end_line": 58 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "cryogen@infoserve.net", @@ -10528,7 +10528,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -10603,7 +10603,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -10709,7 +10709,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -10752,7 +10752,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -10852,7 +10852,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -10982,7 +10982,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11014,7 +11014,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11094,7 +11094,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11126,7 +11126,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 6, @@ -11158,7 +11158,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11238,7 +11238,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -11324,7 +11324,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "madler@alumni.caltech.edu", @@ -11410,7 +11410,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11442,7 +11442,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "madler@alumni.caltech.edu", @@ -11480,7 +11480,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11512,7 +11512,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -11544,7 +11544,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { @@ -11582,7 +11582,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11614,7 +11614,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -11646,7 +11646,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11678,7 +11678,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11726,7 +11726,7 @@ "end_line": 6 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "paag@tid.es", @@ -11774,7 +11774,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 52, @@ -11806,7 +11806,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "info@winimage.com", @@ -11855,7 +11855,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 15, @@ -11887,7 +11887,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11919,7 +11919,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11951,7 +11951,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -11983,7 +11983,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12015,7 +12015,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12047,7 +12047,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12079,7 +12079,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12111,7 +12111,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12155,7 +12155,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12187,7 +12187,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12219,7 +12219,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12251,7 +12251,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12283,7 +12283,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12315,7 +12315,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12347,7 +12347,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12379,7 +12379,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 9, @@ -12411,7 +12411,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12443,7 +12443,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12475,7 +12475,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12507,7 +12507,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12551,7 +12551,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12583,7 +12583,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12615,7 +12615,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12647,7 +12647,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12679,7 +12679,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12711,7 +12711,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 9, @@ -12743,7 +12743,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12775,7 +12775,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12807,7 +12807,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12839,7 +12839,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12883,7 +12883,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12915,7 +12915,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12947,7 +12947,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -12979,7 +12979,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13011,7 +13011,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13043,7 +13043,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 9, @@ -13075,7 +13075,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13107,7 +13107,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13139,7 +13139,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13171,7 +13171,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13215,7 +13215,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13247,7 +13247,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13279,7 +13279,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13311,7 +13311,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13343,7 +13343,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13375,7 +13375,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 9, @@ -13407,7 +13407,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13439,7 +13439,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13471,7 +13471,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13503,7 +13503,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13547,7 +13547,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13579,7 +13579,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13611,7 +13611,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13643,7 +13643,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13675,7 +13675,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -13707,7 +13707,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -13739,7 +13739,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jloup@gzip.org", @@ -13836,7 +13836,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "ghost@aladdin.com", @@ -13958,7 +13958,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "ghost@aladdin.com", @@ -14086,7 +14086,7 @@ "end_line": 573 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "gzip@prep.ai.mit.edu", @@ -14170,7 +14170,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14202,7 +14202,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 11, @@ -14246,7 +14246,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14314,7 +14314,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14404,7 +14404,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14494,7 +14494,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "madler@alumni.caltech.edu", @@ -14580,7 +14580,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "madler@alumni.caltech.edu", @@ -14666,7 +14666,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14746,7 +14746,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "madler@alumni.caltech.edu", @@ -14784,7 +14784,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14874,7 +14874,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -14942,7 +14942,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15022,7 +15022,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15054,7 +15054,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 5, @@ -15086,7 +15086,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15166,7 +15166,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15246,7 +15246,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15278,7 +15278,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15310,7 +15310,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15342,7 +15342,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -15374,7 +15374,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15406,7 +15406,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "eduardo.m.costa@gmail.com", @@ -15450,7 +15450,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 7, @@ -15488,7 +15488,7 @@ "end_line": 2 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "m.zinser@gsi.de", @@ -15574,7 +15574,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15606,7 +15606,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "rw@shadow.org.uk", @@ -15644,7 +15644,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15676,7 +15676,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "jon-net@usa.net", @@ -15724,7 +15724,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -15792,7 +15792,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15824,7 +15824,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15856,7 +15856,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 4, @@ -15888,7 +15888,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15932,7 +15932,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15964,7 +15964,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -15996,7 +15996,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16028,7 +16028,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 1, @@ -16060,7 +16060,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "alain.bonnefoy@icbt.com", @@ -16109,7 +16109,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 3, @@ -16189,7 +16189,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16269,7 +16269,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16349,7 +16349,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "malbrech@eso.org", @@ -16387,7 +16387,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 2, @@ -16419,7 +16419,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16451,7 +16451,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16483,7 +16483,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 8, @@ -16515,7 +16515,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [ { "email": "cosmint@cs.ubbcluj.ro", @@ -16564,7 +16564,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16644,7 +16644,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16688,7 +16688,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16779,7 +16779,7 @@ "end_line": 99 } ], - "packages": [], + "package_manifests": [], "emails": [ { "email": "zlib@gzip.org", @@ -16843,7 +16843,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16875,7 +16875,7 @@ "copyrights": [], "holders": [], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [], "files_count": 0, @@ -16919,7 +16919,7 @@ } ], "authors": [], - "packages": [], + "package_manifests": [], "emails": [], "urls": [ { diff --git a/tests/summarycode/test_plugin_consolidate.py b/tests/summarycode/test_plugin_consolidate.py index 2da4f95582a..d93508deaf2 100644 --- a/tests/summarycode/test_plugin_consolidate.py +++ b/tests/summarycode/test_plugin_consolidate.py @@ -73,7 +73,7 @@ def test_get_package_resources_on_nested_packages_should_include_manifest(self): scan_file = self.get_scan('plugin_consolidate/nested-packages', cli_options='-p') codebase = VirtualCodebase(scan_file) for resource in codebase.walk(): - for package_data in resource.packages: + for package_data in resource.package_manifests: package = get_package_instance(package_data) package_resources = list(package.get_package_resources(resource, codebase)) assert any(r.name == 'package.json' for r in package_resources), resource.path
Package Information
{{ path }}