diff --git a/atarashi/agents/keywordAgent.py b/atarashi/agents/keywordAgent.py new file mode 100755 index 00000000..53c02cd5 --- /dev/null +++ b/atarashi/agents/keywordAgent.py @@ -0,0 +1,175 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Copyright 2025 Rajul-Jha + +SPDX-License-Identifier: GPL-2.0 + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +version 2 as published by the Free Software Foundation. +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along +with this program; if not, write to the Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +""" +import re +import argparse +import os +import pandas as pd + +from atarashi.agents.atarashiAgent import AtarashiAgent + + +class KeywordAgent(AtarashiAgent): + """ + A scanning agent that quickly identifies potential license files + by searching for a set of predefined keywords. This agent is + inspired by the FOSSology nomos scanner. + """ + _keyword_file_path = os.path.join(os.path.dirname(__file__), '..', 'data', 'license_keywords.txt') + _refs_file_path = os.path.join(os.path.dirname(__file__), '..', 'data', 'licenses', 'license_refs_combined.csv') + + def __init__(self, licenseList=None, verbose=0): + """ + Initializes the KeywordAgent. + + :param licenseList: This parameter is ignored by this agent, + but kept for compatibility with the factory method. + :param verbose: Verbosity level. + """ + self.verbose = verbose + self.keywords = self.load_keywords(self._keyword_file_path) + self.license_shortnames_and_refs = self.load_license_shortnames_and_refs(self._refs_file_path) + + def load_keywords(self, file_path): + """ + Keywords are based on FOSSology's nomos scanner's STRINGS.in + https://github.com/fossology/fossology/blob/master/src/nomos/agent/generator/STRINGS.in + + :param: file_path: Path of the license_keywords.txt file + :return: List of license keyword regex patterns. + """ + patterns = [] + try: + with open(file_path, 'r', encoding='utf-8') as f: + for line in f: + keyword = line.strip() + if keyword: + patterns.append(re.compile(keyword, re.IGNORECASE)) + except Exception as e: + if self.verbose > 0: + print(f"Failed to load keywords from {file_path}: {e}") + return patterns + + def load_license_shortnames_and_refs(self, file_path): + """ + Load the license shortnames and refs using LicenseDownloader as regex patterns. + + :return: List of license keyword regex patterns. + """ + patterns = [] + try: + df = pd.read_csv(file_path) + for keyword in df['key'].dropna(): + patterns.append(re.compile(r'\b' + re.escape(str(keyword)) + r'\b', re.IGNORECASE)) + except Exception as e: + if self.verbose > 0: + print(f"Failed to load keywords from {file_path}: {e}") + return patterns + + def loadFile(self, filePath): + ## DECIDE: To use comment preprocessor or not? Currently not using it for speed. + try: + with open(filePath, 'r', encoding='utf-8') as f: + return f.read() + except Exception: + # Fallback for different encodings if needed + with open(filePath, 'r', encoding='latin-1') as f: + return f.read() + + def scan(self, filePath): + """ + Scans a file for keywords. + + :param filePath: Path to the file to be scanned. + :return: A list of dictionaries with scan results. + """ + try: + processed_data = self.loadFile(filePath) + except Exception as e: + if self.verbose > 0: + print(f"Could not process file {filePath}: {e}") + return [] + + if not processed_data.strip(): + return [] + + results = [] + # Scan for license keywords + matched_keywords = [] + for keyword_re in self.keywords: + if keyword_re.search(processed_data): + matched_keywords.append(keyword_re.pattern) + + if matched_keywords: + if self.verbose > 0: + print(f"Found license-related keywords in {filePath}: {', '.join(matched_keywords)}") + results.append({ + "shortname": "License-Possibility", + "sim_score": 1.0, + "sim_type": "Keyword-Scan", + "description": f"Matched keywords: {', '.join(matched_keywords)}" + }) + + # # Scan for license shortnames and refs + # matched_refs = [] + # for license_ref_or_shortname in self.license_shortnames_and_refs: + # if license_ref_or_shortname.search(processed_data): + # matched_refs.append(license_ref_or_shortname.pattern) + + # if matched_refs: + # if self.verbose > 0: + # print(f"Found license shortnames in {filePath}: {', '.join(matched_refs)}") + # results.append({ + # "shortname": "License-Identifier", + # "sim_score": 1.0, + # "sim_type": "Shortname-Scan", + # "description": f"Matched shortnames/refs: {', '.join(matched_refs)}" + # }) + + return results + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Scan a file or directory for license keywords.") + parser.add_argument("input_path", help="Path to the file or directory to scan.") + parser.add_argument("-v", "--verbose", action="count", default=0, help="Increase output verbosity.") + args = parser.parse_args() + + agent = KeywordAgent(verbose=args.verbose) + input_path = os.path.expanduser(args.input_path) + + if os.path.isfile(input_path): + results = agent.scan(input_path) + if results: + print(f"Keyword Scan results for {input_path}:") + for result in results: + print(result) + elif os.path.isdir(input_path): + print(f"Scanning directory: {input_path}") + for root, _, files in os.walk(input_path): + for file in files: + file_path = os.path.join(root, file) + results = agent.scan(file_path) + if results: + print(f"Scan results for {file_path}:") + for result in results: + print(result) + else: + print(f"Error: Invalid path '{args.input_path}'") diff --git a/atarashi/agents/tfidf.py b/atarashi/agents/tfidf.py index b629c2e7..ce304461 100644 --- a/atarashi/agents/tfidf.py +++ b/atarashi/agents/tfidf.py @@ -26,6 +26,7 @@ from enum import Enum import itertools import time +import warnings from numpy import unique, sum, dot from sklearn.feature_extraction.text import TfidfVectorizer @@ -78,8 +79,11 @@ def __tfidfsumscore(self, inputFile): all_documents = self.licenseList['processed_text'].tolist() all_documents.append(processedData1) + with warnings.catch_warnings(): + warnings.simplefilter("ignore") sklearn_tfidf = TfidfVectorizer(min_df=1, use_idf=True, smooth_idf=True, sublinear_tf=True, tokenizer=tokenize, + token_pattern=None, vocabulary=processedData) sklearn_representation = sklearn_tfidf.fit_transform(all_documents).toarray() @@ -115,8 +119,10 @@ def __tfidfcosinesim(self, inputFile): startTime = time.time() all_documents = self.licenseList['processed_text'].tolist() + with warnings.catch_warnings(): + warnings.simplefilter("ignore") sklearn_tfidf = TfidfVectorizer(min_df=1, max_df=0.10, use_idf=True, smooth_idf=True, - sublinear_tf=True, tokenizer=tokenize) + sublinear_tf=True, tokenizer=tokenize, token_pattern=None) all_documents_matrix = sklearn_tfidf.fit_transform(all_documents).toarray() search_martix = sklearn_tfidf.transform([processedData1]).toarray()[0] diff --git a/atarashi/atarashii.py b/atarashi/atarashii.py old mode 100644 new mode 100755 index 51731a01..2d22b0d8 --- a/atarashi/atarashii.py +++ b/atarashi/atarashii.py @@ -18,16 +18,18 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. """ -from importlib_resources import files import argparse import errno import json import os +import sys +from pathlib import Path from atarashi.agents.cosineSimNgram import NgramAgent from atarashi.agents.dameruLevenDist import DameruLevenDist from atarashi.agents.tfidf import TFIDF from atarashi.agents.wordFrequencySimilarity import WordFrequencySimilarity +from atarashi.agents.keywordAgent import KeywordAgent __author__ = "Aman Jain" __email__ = "amanjain5221@gmail.com" @@ -121,89 +123,108 @@ def main(): Calls atarashii_runner for each file in the folder/ repository specified by user Prints the Input path and the JSON output from atarashii_runner ''' - defaultProcessed = str(files("atarashi.data.licenses").joinpath("processedLicenses.csv")) - defaultJSON = str(files("atarashi.data").joinpath("Ngram_keywords.json")) + base_dir = Path(__file__).resolve().parent + defaultProcessed = str(base_dir / "data" / "licenses" / "processedLicenses.csv") + defaultJSON = str(base_dir / "data" / "Ngram_keywords.json") + parser = argparse.ArgumentParser() parser.add_argument("inputPath", help="Specify the input file/directory path to scan") - parser.add_argument("-l", "--processedLicenseList", required=False, - help="Specify the location of processed license list file") + parser.add_argument("-l", "--processedLicenseList", help="Processed license list CSV") parser.add_argument("-a", "--agent_name", required=True, - choices=['wordFrequencySimilarity', 'DLD', 'tfidf', 'Ngram'], - help="Name of the agent that needs to be run") - parser.add_argument("-s", "--similarity", required=False, default="CosineSim", - choices=["ScoreSim", "CosineSim", "DiceSim", "BigramCosineSim"], - help="Specify the similarity algorithm that you want." - " First 2 are for TFIDF and last 3 are for Ngram") - parser.add_argument("-j", "--ngram_json", required=False, - help="Specify the location of Ngram JSON (for Ngram agent only)") - parser.add_argument("-v", "--verbose", help="increase output verbosity", - action="count", default=0) - parser.add_argument('-V', '--version', action='version', - version='%(prog)s ' + __version__) + choices=['wordFrequencySimilarity', 'DLD', 'tfidf', 'Ngram'], + help="Agent to run") + parser.add_argument("-s", "--similarity", default="CosineSim", + choices=["ScoreSim", "CosineSim", "DiceSim", "BigramCosineSim"], + help="Select the Similarity algorithm. First 2 are for TFIDF agent, last three for Ngram agent.") + parser.add_argument("-j", "--ngram_json", help="Ngram JSON file (for Ngram agent only)") + parser.add_argument("-v", "--verbose", action="count", default=0, help="Increase output verbosity") + parser.add_argument("--skip-keyword", action="store_true", + help="Skip KeywordAgent precheck before similarity scan") + parser.add_argument("-V", "--version", action='version', version=f'%(prog)s {__version__}') args = parser.parse_args() + inputPath = args.inputPath - agent_name = args.agent_name - similarity = args.similarity + processedLicense = args.processedLicenseList or defaultProcessed + ngram_json = args.ngram_json or defaultJSON verbose = args.verbose - processedLicense = args.processedLicenseList - ngram_json = args.ngram_json - if processedLicense is None: - processedLicense = defaultProcessed - if ngram_json is None: - ngram_json = defaultJSON + # Validate compatibility between agent and similarity + if args.agent_name == "tfidf" and args.similarity not in ["CosineSim", "ScoreSim"]: + print("Error: TFIDF agent supports only CosineSim or ScoreSim.", file=sys.stderr) + return 1 + if args.agent_name == "Ngram" and args.similarity not in ["CosineSim", "DiceSim", "BigramCosineSim"]: + print("Error: Ngram agent supports only CosineSim, DiceSim or BigramCosineSim.", file=sys.stderr) + return 1 - scanner_obj = build_scanner_obj(processedLicense, agent_name, similarity, - ngram_json, verbose) + scanner_obj = build_scanner_obj(processedLicense, args.agent_name, args.similarity, ngram_json, verbose) if scanner_obj == -1: - return -1 + return 1 + keyword_scanner = KeywordAgent(verbose=verbose) return_code = 0 + files_scanned = 0 + files_skipped = 0 if os.path.isfile(inputPath): - try: - result = run_scan(scanner_obj, inputPath) - except FileNotFoundError as e: - result = ["Error: " + e.strerror + ": '" + e.filename + "'"] - return_code |= 2 - except UnicodeDecodeError as e: - result = ["Error: Can not encode file '" + inputPath + "' in '" + \ - e.encoding + "'"] - return_code |= 4 - - result = list(result) - result = {"file": os.path.abspath(inputPath), "results": result} - result = json.dumps(result, sort_keys=True, ensure_ascii=False, indent=4) - print(result + "\n") + keyword_ok = args.skip_keyword or keyword_scanner.scan(inputPath) + if not keyword_ok: + files_skipped += 1 + if verbose > 0: + print(f"File {inputPath} does not appear to contain a license, skipping.") + else: + try: + result = run_scan(scanner_obj, inputPath) + result = list(result) + except FileNotFoundError as e: + result = [f"Error: {e.strerror}: '{e.filename}'"] + return_code |= 2 + except UnicodeDecodeError as e: + result = [f"Error: Cannot encode file '{inputPath}' in '{e.encoding}'"] + return_code |= 2 + output = {"file": os.path.abspath(inputPath), "results": result} + print(json.dumps(output, sort_keys=True, ensure_ascii=False, indent=4)) + print(f"Skipped {files_skipped}.\n") elif os.path.isdir(inputPath): print("[") printComma = False - for dirpath, dirnames, filenames in os.walk(inputPath): + for dirpath, _, filenames in os.walk(inputPath): + if "__MACOSX" in Path(dirpath).parts: + continue for file in filenames: + if file.startswith("._") or file == ".DS_Store": + continue fpath = os.path.join(dirpath, file) + keyword_ok = args.skip_keyword or keyword_scanner.scan(fpath) + if not keyword_ok: + files_skipped += 1 + continue try: result = run_scan(scanner_obj, fpath) + result = list(result) except FileNotFoundError as e: - result = ["Error: " + e.strerror + ": '" + e.filename + "'"] + result = [f"Error: {e.strerror}: '{e.filename}'"] return_code |= 2 except UnicodeDecodeError as e: - result = ["Error: Can not encode file '" + fpath + "' in '" + \ - e.encoding + "'"] - return_code |= 4 - result = list(result) - result = {"file": os.path.abspath(fpath), "results": result} + result = [f"Error: Cannot encode file '{fpath}' in '{e.encoding}'"] + return_code |= 2 + output = {"file": os.path.abspath(fpath), "results": result} if printComma: print(",", end="") else: printComma = True - print(json.dumps(result, sort_keys=True, ensure_ascii=False)) + files_scanned += 1 + print(json.dumps(output, sort_keys=True, ensure_ascii=False)) print("]") + if verbose > 0: + print(f"\nScanned: {files_scanned}, Skipped: {files_skipped}") + # print(f"Total files scanned: {files_scanned}\n") + # print(f"Total files skipped: {files_skipped}.\n") else: - print("Error: Can not understand '" + inputPath + "'. Please enter a " + - "correct path or a directory") - return_code |= 6 + print(f"Error: The path '{inputPath}' is not a valid file or directory.", file=sys.stderr) + return_code |= 4 + return return_code diff --git a/atarashi/build_deps.py b/atarashi/build_deps.py index 170c165c..9be985e2 100755 --- a/atarashi/build_deps.py +++ b/atarashi/build_deps.py @@ -55,6 +55,9 @@ def download_dependencies(threads = os.cpu_count(), verbose = 0): spdxLicenseList, processedLicenseListCsv, verbose = verbose) + print("** Populating Licence Refs SPDX and FOSSology") + generated_refs_path = LicenseDownloader.generate_combined_license_refs(threads=threads) + print(f"Combined license refs list generated at path: {generated_refs_path}") print("** Generating Ngrams **") createNgrams(processedLicenseListCsv, ngramJsonLoc, threads, verbose) diff --git a/atarashi/data/license_keywords.txt b/atarashi/data/license_keywords.txt new file mode 100644 index 00000000..04694d11 --- /dev/null +++ b/atarashi/data/license_keywords.txt @@ -0,0 +1,34 @@ +acknowledg(e|ement|ements)? +\bagreement\b +as[\s-]is +\bcopyright\b +\bdamages\b +deriv(e|ed|ation|ative|es|ing) +redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing) +\bfree software\b +\bgrant\b +indemnif(i|y|ied|ication|ying)? +intellectual propert(y|ies)? +[^e]liabilit(y|ies)? +licen[cs](e|ing)? +mis[- ]?represent +\bopen source\b +\bpatent\b +\bpermission\b +public[\s-]domain +require(s|d|ment|ments)? +\bsame terms\b +see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+) +source (and|or)? ?binary +\bsource code\b +\bsubject to\b +\bterms and conditions\b +warrant(y|ies|ed|ing)? +without (fee|restrict(ion|ed)?|limit(ation|ed)?) +\bseverability clause\b +\bException\b +-\(\d+\)\.\(\d+\) +\bonly-or-later\b +\bVersion\s+\(\d+\)\.\(\d+\) +\bVersion-\(\d+\)\.\(\d+\) +\bSPDX-License-Identifier\b diff --git a/atarashi/evaluator/NomosTestfiles.zip b/atarashi/evaluator/NomosTestfiles.zip new file mode 100644 index 00000000..ce86452d Binary files /dev/null and b/atarashi/evaluator/NomosTestfiles.zip differ diff --git a/atarashi/evaluator/keyword_eval.py b/atarashi/evaluator/keyword_eval.py new file mode 100755 index 00000000..a0b2603a --- /dev/null +++ b/atarashi/evaluator/keyword_eval.py @@ -0,0 +1,165 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +""" +Copyright 2025 Rajul Jha (rajuljha49@gmail.com) + +SPDX-License-Identifier: GPL-2.0 + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +version 2 as published by the Free Software Foundation. +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along +with this program; if not, write to the Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +""" + +import argparse +import os +import csv +import zipfile +import tempfile +from atarashi.agents.keywordAgent import KeywordAgent + +try: + from tqdm import tqdm + TQDM_AVAILABLE = True +except ImportError: + TQDM_AVAILABLE = False + +def evaluate_folder(folder_path, agent, output_path, verbose=0): + """ + Scans a folder and writes the results to a CSV file. + + :param: folder_path: to evaluate + :param: KeywordAgent object + :param: output_path: Path to save the result csv to. + :param: verbose Whether to get verbose output or not. + """ + results = [] + file_list = [] + for root, _, files in os.walk(folder_path): + for file in files: + file_path = os.path.join(root, file) + relative_file_path = os.path.relpath(file_path, start=folder_path) + + # Skip macOS system files and resource forks + if "__MACOSX" in relative_file_path or os.path.basename(file).startswith("._"): + continue + if file_path.endswith(".zip"): + continue + + file_list.append(file_path) + + if TQDM_AVAILABLE: + iterator = tqdm(file_list, desc="Scanning files", unit="file") + else: + iterator = file_list + + for file_path in iterator: + scan_results = agent.scan(file_path) + relative_file_path = os.path.relpath(file_path, start=folder_path) + if scan_results: + for result in scan_results: + results.append({ + "file": relative_file_path, + "detected": True, + "matched_keywords": result.get("description", "") + }) + else: + results.append({ + "file": relative_file_path, + "detected": False, + "matched_keywords": "" + }) + if verbose: + print(f"Scanned {file_path}: Detected={bool(scan_results)}") + + # Write results to CSV + with open(output_path, "w", newline="") as csvfile: + fieldnames = ["file", "detected", "matched_keywords"] + writer = csv.DictWriter(csvfile, fieldnames=fieldnames) + writer.writeheader() + for row in results: + writer.writerow(row) + print(f"Results written to {output_path}") + + +def print_results_summary(csv_path): + """ + Reads the results CSV and prints a summary of detection accuracy. + :param: Path to the CSV file to evaluate Keyword results. + """ + total = 0 + detected_correct = 0 + detected_wrong = 0 + + with open(csv_path, newline='') as csvfile: + reader = csv.DictReader(csvfile) + for row in reader: + total += 1 + detected = row["detected"].strip().lower() == "true" + file_path = row["file"] + + if detected: + detected_correct += 1 + else: + if "No_license_found" in file_path: + detected_correct += 1 + else: + detected_wrong += 1 + + accuracy = (detected_correct / total) * 100 if total > 0 else 0 + + print("\n--- Scan Summary ---") + print(f"Total files scanned: {total}") + print(f"Detected Correctly: {detected_correct}") + print(f"Detected Wrongly: {detected_wrong}") + print(f"Accuracy: {accuracy:.2f}%") + + +def main(): + script_dir = os.path.dirname(os.path.realpath(__file__)) + default_zip = os.path.join(script_dir, "NomosTestFiles.zip") + default_output = os.path.join(script_dir, "keyword_results.csv") + + parser = argparse.ArgumentParser(description="Evaluate KeywordAgent on a folder or zip file and store results in CSV.") + parser.add_argument("input_path", nargs='?', default=default_zip, + help=f"Path to the folder or .zip file to scan. Defaults to {default_zip}") + parser.add_argument("-o", "--output", default=default_output, + help=f"Output CSV file (default: {default_output})") + parser.add_argument("-v", "--verbose", action="count", default=0, + help="Increase output verbosity.") + args = parser.parse_args() + + agent = KeywordAgent(verbose=args.verbose) + input_path = os.path.expanduser(args.input_path) + + if input_path.endswith('.zip'): + if not os.path.exists(input_path): + print(f"Error: Default zip file not found at {input_path}") + return + + with tempfile.TemporaryDirectory() as temp_dir: + print(f"Extracting {input_path} to a temporary directory...") + with zipfile.ZipFile(input_path, 'r') as zip_ref: + zip_ref.extractall(temp_dir) + print("Extraction complete. Starting scan...") + evaluate_folder(temp_dir, agent, args.output, args.verbose) + print("Temporary directory has been removed.") + print_results_summary(args.output) + + elif os.path.isdir(input_path): + evaluate_folder(input_path, agent, args.output, args.verbose) + print_results_summary(args.output) + else: + print(f"Error: The specified path is not a valid directory or .zip file: {input_path}") + + +if __name__ == "__main__": + main() diff --git a/atarashi/evaluator/keyword_results.csv b/atarashi/evaluator/keyword_results.csv new file mode 100644 index 00000000..435b4a5f --- /dev/null +++ b/atarashi/evaluator/keyword_results.csv @@ -0,0 +1,2079 @@ +file,detected,matched_keywords +NomosTestfiles/GNU-Manpages/GNU-Manpages.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b" +NomosTestfiles/Imlib2/Imlib2.text,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/FTL/watcom.mk,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/FTL/gxvfgen.c,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/FTL/freetype.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/YPL-1.0/YPL-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Intel/Intel-software-license-emgd-1.16,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Intel/INTEL-binary.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Intel/ISSL.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Intel/README.ipw3945,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/Intel/intel-wlan-license.txt,True,"Matched keywords: [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, require(s|d|ment|ments)?, \bsource code\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Intel/INTEL-LICENSE.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Intel/Intel-ACPI.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Intel/intel-536EP.install,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Vim/Vim.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Vim/Vim_b.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/Vim/Vim_a.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, public[\s-]domain, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b" +NomosTestfiles/MX4J/MX4J-1.0,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b" +NomosTestfiles/libtiff/libtiff-style_b.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/libtiff/libtiff_ref_a.txt,True,"Matched keywords: \bagreement\b, \bcopyright\b, \bdamages\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/libtiff/libtiff_no_IJG.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/libtiff/libtiff-style_a.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/libtiff/libtiff.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/YPL/YPL-1.1b.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/YPL/preamble-YPL-WebClient.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/YPL/YPL-1.1.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/YPL/YPL-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CATOSL/qp157.sep,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bopen source\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/CATOSL/CATOSL-1.1.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CrystalStacker/CrystalStacker.txt,True,"Matched keywords: as[\s-]is, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b" +NomosTestfiles/AAL/AAL.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/AAL/LICENSE,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/PostgreSQL/PostgreSQL.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/PostgreSQL/odbc_fdw.control,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/RPSL/RPSL-1.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/RPSL/RPSL_v1.0_b.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/RPSL/RPSL_v1.0_a.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/W3C/W3C-License.html,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/W3C/W3C-19980720.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), intellectual propert(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/W3C/W3C.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, intellectual propert(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/W3C/W3C-ref_b.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/W3C/W3C-20150513.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), intellectual propert(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/W3C/W3C-ref_a.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, public[\s-]domain, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b" +NomosTestfiles/info-zip/unzip.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b" +NomosTestfiles/SCEA/SCEA-1.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/SISSL/SISSL.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, \bsame terms\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/SISSL/SISSL-1.2.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, \bsame terms\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Sun/SPL-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Sun/24AF6529.license,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Sun/Sun_a.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), require(s|d|ment|ments)?, source (and|or)? ?binary, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Sun/Sun_b.txt,True,"Matched keywords: as[\s-]is, \bdamages\b, [^e]liabilit(y|ies)?, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Sun/Sun.RPC.txt,True,"Matched keywords: as[\s-]is, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/Sun/sissl-1.1,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, \bsame terms\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Freeware/win_ce_semaphore.c,True,"Matched keywords: acknowledg(e|ement|ements)?, \bcopyright\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Freeware/ac_define_dir.m4-BSD-lite,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Freeware/cidr.c,True,Matched keywords: \bcopyright\b +NomosTestfiles/Freeware/cblas.license,True,Matched keywords: as[\s-]is +NomosTestfiles/Freeware/drand48.c,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/Freeware/netical_wrap.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b" +NomosTestfiles/Freeware/freeware-icu.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b" +NomosTestfiles/Freeware/fft4g.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), require(s|d|ment|ments)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Freeware/cpld.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Freeware/tclLoadAix.c,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b" +NomosTestfiles/Freeware/lynxkdi.c,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), source (and|or)? ?binary, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Freeware/s_erf.c,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b" +NomosTestfiles/Freeware/selog_err.c,False, +NomosTestfiles/Freeware/Freeware_not_Public-domain.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, public[\s-]domain, warrant(y|ies|ed|ing)?" +NomosTestfiles/Freeware/app_exec.c,True,"Matched keywords: \bcopyright\b, \bopen source\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Freeware/basename.c,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Freeware/GSM-COPYRIGHT-BSD-lite,True,"Matched keywords: \bcopyright\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Freeware/dlfcn.h,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, \bsubject to\b" +NomosTestfiles/Freeware/Freeware_d.txt,False, +NomosTestfiles/Freeware/snprintf.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), require(s|d|ment|ments)?, \bsource code\b" +NomosTestfiles/Freeware/Soundex.xs,True,"Matched keywords: \bcopyright\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Freeware/newapa.sty,True,Matched keywords: \bcopyright\b +NomosTestfiles/Freeware/Freeware_c.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bcopyright\b, \bopen source\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Freeware/plbasename.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), warrant(y|ies|ed|ing)?" +NomosTestfiles/Freeware/Freeware_b.txt,False, +NomosTestfiles/Freeware/pg_dump.txt,True,Matched keywords: \bdamages\b +NomosTestfiles/Freeware/rules,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bpermission\b" +NomosTestfiles/Freeware/dircolors.hin,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b" +NomosTestfiles/Freeware/Freeware_a.txt,True,"Matched keywords: \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), warrant(y|ies|ed|ing)?" +NomosTestfiles/Freeware/Makefile.in.in,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, public[\s-]domain, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Freeware/if_sppp.h,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/Freeware/hyphenex.us,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bException\b" +NomosTestfiles/Freeware/if_tun.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing)" +NomosTestfiles/Freeware/de_win.RC,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bpermission\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Freeware/vfs.c,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Freeware/update-leap.in,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), warrant(y|ies|ed|ing)?" +NomosTestfiles/Freeware/sparse_crc32.c,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/D-FSL/D-FSL-1.0.txt,True,"Matched keywords: \bagreement\b, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/CUA-OPL/CUA-OPL-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CUA-OPL/cua_office_t1.c,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/XMLDB/SimpleBinaryResource.java,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/LGPL/AcroFields.java,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/LGPL/LGPL-2.1+_ref_b.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/LGPL/LGPL-2.1+_ref_c.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/LGPL/LGPL-2.1_and_GPL-2.0.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/LGPL/LGPL-3.0.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, \bsource code\b, \bterms and conditions\b, \bException\b" +NomosTestfiles/LGPL/LGPL-2.1+_WITH_linking-exception.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/LGPL/LGPL-2.1+_ref_a.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/LGPL/LGPL-2.0+_WITH_GCC-exception.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/LGPL/Deflater.hxx,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/LGPL/fsp-parser.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/LGPL/LGPL-3.0+_and_GPL-2.0+.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/LGPL/defconfig,True,"Matched keywords: as[\s-]is, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b" +NomosTestfiles/LGPL/LGPL-2.1b.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/LGPL/LGPL-2.1.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/LGPL/LGPL-2.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/LGPL/io-jpeg.c,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/LGPL/LGPL-2.0_not_GPL.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/LGPL/LGPL-2.0b.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/LGPL/GPL_false-positive_x_bug2307,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/LGPL/evd-pki-pubkey.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/LGPL/tracker-class.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/LGPL/GPL_false-positive_y_bug2307,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/LGPL/LGPL_16487.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?" +NomosTestfiles/LGPL/openjdk-7-jre-headless_license.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, mis[- ]?represent, \bopen source\b, \bpatent\b, \bpermission\b, public[\s-]domain, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/LGPL/LGPL-3.0+_not_GPL-3.0+.txt,True,"Matched keywords: licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/LGPL/LGPL-3.0+_a.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/LGPL/LGPL-2.0+_ref_a.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/LGPL/LGPL_not_GPL.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/LGPL/LGPL-3.0d.txt,True,Matched keywords: \bcopyright\b +NomosTestfiles/LGPL/README.rst,True,"Matched keywords: deriv(e|ed|ation|ative|es|ing), \bfree software\b, licen[cs](e|ing)?, \bsource code\b" +NomosTestfiles/LGPL/License.rtf,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/LGPL/valaprojectgenerator.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/LGPL/LGPL-3.0c.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/LGPL/LGPL-2.1_not_GPL-2.0.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/LGPL/main.cpp,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/LGPL/LGPL-3.0b.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, \bsource code\b, \bterms and conditions\b, \bException\b" +NomosTestfiles/LGPL/parsenv2.hxx,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/LGPL/Camellia-LGPL-2.1,True,"Matched keywords: deriv(e|ed|ation|ative|es|ing), \bfree software\b, licen[cs](e|ing)?, \bpatent\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/LGPL/autoopts.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/MS/crtlicense.txt,True,"Matched keywords: \bagreement\b, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/MS/MicrosoftReciprocalLicense.rtf,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, licen[cs](e|ing)?, \bpatent\b, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/MS/MS-LPL.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, licen[cs](e|ing)?, \bpatent\b, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/MS/MS-RL.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, licen[cs](e|ing)?, \bpatent\b, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/MS/MicrosoftPermissiveLicense.rtf,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, licen[cs](e|ing)?, \bpatent\b, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/MS/MS-PL_a.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b" +NomosTestfiles/MS/linux-cdc-acm.inf,True,Matched keywords: \bcopyright\b +NomosTestfiles/MS/MS-PL_c.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bsource code\b, \bsubject to\b, \bterms and conditions\b" +NomosTestfiles/MS/MS-PL_b.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/MS/MS-PL_Index.aspx,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/MS/linux.inf,True,Matched keywords: \bcopyright\b +NomosTestfiles/MS/MS-PL.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, licen[cs](e|ing)?, \bpatent\b, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/DPTC/dpt_osdutil.h,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/IPA/Readme_ipag00303.txt,True,"Matched keywords: \bagreement\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bterms and conditions\b" +NomosTestfiles/IPA/IPA.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, require(s|d|ment|ments)?, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Frameworx/Frameworx-1.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, require(s|d|ment|ments)?, \bsame terms\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/ANTLR-PD/ANTLR-PD.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), public[\s-]domain, \bsource code\b" +NomosTestfiles/APL/APL-1.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/U-Cambridge/U-Cambridge.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary" +NomosTestfiles/U-Cambridge/MSNTP.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, source (and|or)? ?binary, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Libpng/libpng-2.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, mis[- ]?represent, \bpermission\b, require(s|d|ment|ments)?, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Libpng/makefile.intel,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Libpng/Libpng.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, mis[- ]?represent, \bopen source\b, \bpermission\b, require(s|d|ment|ments)?, \bsource code\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Libpng/Libpng_not_W3C-style.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, mis[- ]?represent, \bpermission\b, \bsource code\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Libpng/libmng-2007.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, mis[- ]?represent, \bpermission\b, require(s|d|ment|ments)?, \bsource code\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Condor/condor-1.1,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Condor/Condor-1.0,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Amazon/ADSL.txt,True,"Matched keywords: as[\s-]is, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), warrant(y|ies|ed|ing)?" +NomosTestfiles/NBPL/NBPL-1.0,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, public[\s-]domain, require(s|d|ment|ments)?, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/ACAA/c32001a.ada,True,"Matched keywords: as[\s-]is, \bgrant\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/SGI/gl2.h,True,"Matched keywords: \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/SGI/SGI-B-2.0,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/SGI/sgi.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/SGI/SGI-B-1.1_accum.gl,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/HP/snmp_pp.cpp,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/HP/hp-snmp-pp.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Oracle-Berkeley-DB/Oracle-Berkeley-DB.java,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/OLDAP/OLDAP-2.8.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/OLDAP/OpenLDAP-2.3,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/OLDAP/openldap.schema,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, source (and|or)? ?binary" +NomosTestfiles/OSL/OSL-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/OSL/OSL-3.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/OSL/LICENSE.html,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/OSL/OSL-1.1,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/OSL/OSL-2.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/OSL/OSL-2.1.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Bittorrent/bittorrent.py,True,"Matched keywords: as[\s-]is, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bopen source\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/Bittorrent/bittorrent.nsi,True,"Matched keywords: as[\s-]is, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bopen source\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Google-BSD/Google-BSD,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Vixie/user.c,True,"Matched keywords: \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), warrant(y|ies|ed|ing)?" +NomosTestfiles/gnuplot/gnuplot.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, \bsource code\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CMake/FindRuby.cmake,True,"Matched keywords: \bcopyright\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/ContainerRuntimeLoaderTest.php,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, \bsource code\b" +NomosTestfiles/See-file/ftrace.c,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/connection.h,True,"Matched keywords: \bcopyright\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/json.c,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/qlcnic_ctx.c,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/See-file_LICENSE_b,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/See-file/fetmainform.cpp,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/play.h,True,"Matched keywords: \bcopyright\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/dimoopx.cc,True,"Matched keywords: \bcopyright\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/mmu_context.c,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/clip_tbl.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/See-file/prng4.js,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/See-file/revoco.h,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/qla_version.h,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/sel_util.c,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/jcparam.c,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/client.go,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/seeurl.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/See-file/ldapmodule.c,True,Matched keywords: see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+) +NomosTestfiles/See-file/itkAffineTransform.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/See-file/See-file_LICENSE_a,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/See-file/camd_dump.c,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/main.c,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/perf_event.c,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/util.h,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/Connection.java,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bException\b" +NomosTestfiles/See-file/See-file_COPYING_a.txt,True,"Matched keywords: \bfree software\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/mhstatus.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/rtctype.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bopen source\b" +NomosTestfiles/See-file/MPIController.cxx,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/See-file/FlGui.cpp,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/zlib.ads,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bopen source\b" +NomosTestfiles/See-file/popt_options.h,True,Matched keywords: \bcopyright\b +NomosTestfiles/See-file/README.txt,True,"Matched keywords: \bagreement\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bopen source\b, \bsource code\b, \bException\b" +NomosTestfiles/See-file/qlge.h,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/PhotoQuery.cs,True,"Matched keywords: \bfree software\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/pngget.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/XmlPullParser.java,True,"Matched keywords: licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bException\b" +NomosTestfiles/See-file/ad_testfs_close.c,True,"Matched keywords: \bcopyright\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/bzip2.c,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-file/gdcmServiceClassUser.cxx,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/See-file/segformer.py,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/See-file/findme.c,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/Unicode/Unicode-TOU_ref_a.txt,True,"Matched keywords: \bcopyright\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Unicode/Unicode-TOU.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Unicode/Unicode-TOU_ref_b.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/Unicode/Unicode_Exhibit_1.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, \bsource code\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Unicode/Scripts.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/SAX-PD/SAX-PD.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, public[\s-]domain, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Glide/test1.dtd,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing)" +NomosTestfiles/Glide/test2.dtd,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing)" +NomosTestfiles/Python/crtlicense.txt,True,"Matched keywords: \bagreement\b, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Python/Not-Python.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Python/hashlib.py,True,"Matched keywords: \bagreement\b, \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/Python/CNRI-Jython.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Python/Jython.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Python/Python-2.0_ref_a.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Python/BSD_and_CNRI-Python.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Python/Python-2.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/EPL/egPrerequisites.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/EPL/SampleGatherer.java,True,"Matched keywords: acknowledg(e|ement|ements)?, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/EPL/epl1-pom.xml,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/EPL/DEPENDENCIES.txt,True,"Matched keywords: licen[cs](e|ing)?, public[\s-]domain" +NomosTestfiles/EPL/EPL-2.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/EPL/filterscallbacks.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), intellectual propert(y|ies)?, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/EPL/EPL-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/FACE/face_license.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bopen source\b, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/WXwindows/setup.h,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bException\b" +NomosTestfiles/WXwindows/wxWindows-3.1+_ref.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/WXwindows/WXwindows.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bterms and conditions\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/WXwindows/License_wxWindows.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Xnet/Xnet.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/GFDL/GFDL-1.2+_OR_GPL-2.0+.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b" +NomosTestfiles/GFDL/GFDL-1.3.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/GFDL/license2.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GFDL/GFDL-1.2.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/GFDL/GFDL-1.1.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bterms and conditions\b" +NomosTestfiles/GFDL/wget.info-2,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bException\b" +NomosTestfiles/GFDL/GFDL-1.3+.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b" +NomosTestfiles/Mup/Mup.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/LIBGCJ/natStringBuilder.cc,True,"Matched keywords: \bcopyright\b, \bfree software\b, licen[cs](e|ing)?" +NomosTestfiles/OPL/OPL.tex,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bopen source\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/OPL/opl-1.0,True,"Matched keywords: as[\s-]is, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/ZPL/python-psycopg_license.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, mis[- ]?represent, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/ZPL/ZPL-1.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, require(s|d|ment|ments)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/ZPL/ZPL-1.1.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, require(s|d|ment|ments)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/ZPL/ZPL-2.1.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/ZPL/ZPL-2.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Aladdin/Aladdin.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Aladdin/LICENSE.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/ClearSilver/csparse.c,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/eCos/eCos-2.0.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/eCos/Cygnus-eCos-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/eCos/ecos.texi,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/eCos/lcd.c,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Tapjoy/Tapjoy.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Migemo/Mgemo.txt,True,"Matched keywords: \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b" +NomosTestfiles/Naumen/Naumen.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Sleepycat/Sleepycat.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Sleepycat/sleepycat.php,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/D-FSL-1.0/D-FSL-1.0.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bsource code\b" +NomosTestfiles/copyleft-next/CLN-0.3.0_and_ISC.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/copyleft-next/copyleft-next-0.3.1_a.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b" +NomosTestfiles/copyleft-next/copyleft-next-0.3.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/copyleft-next/copyleft-next-0.3.1.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Giftware/giftware.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, require(s|d|ment|ments)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/OpenMap/openmap.md,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, licen[cs](e|ing)?, public[\s-]domain, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/InfoSeek/InfoSeek.txt,True,"Matched keywords: \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Toolbar/Toolbar2000.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Toolbar/Toolbar2000_or_GPL.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/Flora/Flora-1.1,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Flora/Flora-1.0,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Flora/Flora-url,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/QT/Qt.Commercial_OR_LGPL-2.1_WITH_exception.txt,True,"Matched keywords: \bagreement\b, \bcopyright\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bException\b" +NomosTestfiles/QT/printview.cpp,True,"Matched keywords: \bagreement\b, \bcopyright\b, \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bException\b" +NomosTestfiles/QT/LICENSE.GPL3-EXCEPT,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, indemnif(i|y|ied|ication|ying)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, mis[- ]?represent, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/QT/Qt.Commercial_OR_GPL-3.0+.txt,True,"Matched keywords: \bagreement\b, \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/QT/LGPL-EXCEPTION.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bException\b" +NomosTestfiles/QT/header.GPL-EXCEPT,True,"Matched keywords: \bagreement\b, \bcopyright\b, \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/QT/Qt-GPL-Exception-1.0,True,"Matched keywords: deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, \bsource code\b, \bException\b" +NomosTestfiles/mpich2/mpich2.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/TMate/TMate.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/TMate/TMate_a.txt,True,"Matched keywords: licen[cs](e|ing)?, \bopen source\b" +NomosTestfiles/Artistic-1.0-Perl/Artistic-1.0-Perl.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, public[\s-]domain, require(s|d|ment|ments)?, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Qwt/Qwt_ref_a.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?" +NomosTestfiles/LDPL/LDPLref.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/LDPL/LDPL-2.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsubject to\b, \bterms and conditions\b, \bException\b" +NomosTestfiles/LDPL/LDPL-1a.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/SISSL-1.2/SISSL-1.2.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, \bsame terms\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/NOSL/nosl-1.0,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/AFL/LICENSE,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/AFL/list_sidebar.phtml,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b" +NomosTestfiles/AFL/AFL-2.1_dojo.js,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bException\b" +NomosTestfiles/AFL/AFL-2.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/AFL/AFL-2.1.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/AFL/AFL-3.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/AFL/AFL-1.2.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/AFL/AFL-1.1.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, \bsource code\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/AFL/dojo.js,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bException\b" +NomosTestfiles/None-failure/badge_BuckleUp_L.png,False, +NomosTestfiles/WTFPL/wtfpl.c,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/WTFPL/package.json,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/WTFPL/random.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/Inflate.java,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/ANT+SharedSourceLicense.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/inetd.c,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/Linux-OpenIB.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/bug3537_DNSDigest.c,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/BSD/purdue.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, mis[- ]?represent, \bpermission\b, \bsubject to\b" +NomosTestfiles/BSD/htmlArea_ref.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bsame terms\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/BSD/AMPAS.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/DARPA-Cougaar_a.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bopen source\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/bsd-3-3,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/bsd-3-4,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/DARPA-Cougaar_b.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-3-Clause-Attribution_CMU.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/bsd-3-2,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/access.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), source (and|or)? ?binary, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-3-Clause_6.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD_style_n.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD_style_y.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/net-snmp-license.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/BSD/BSD_style_x.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD_style_o.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/BSD/BSD-3-Clause_7.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/defconfig,True,"Matched keywords: as[\s-]is, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b" +NomosTestfiles/BSD/SNMP-TLS-TM-MIB.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary" +NomosTestfiles/BSD/BSD-3-Clause_5.txt,True,"Matched keywords: licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/BSD/ibm.php,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, \bsubject to\b, \bException\b" +NomosTestfiles/BSD/BSD_style_m.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/BSD/BSD_style_z.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-3-Clause-Attribution.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-2-Clause_2.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/toybox.html,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/BSD/destest.c,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-2-Clause_3.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/BSD/BSD-3-Clause_and_LGPL-3.0.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), licen[cs](e|ing)?" +NomosTestfiles/BSD/sparse_format.h,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bopen source\b, public[\s-]domain, \bSPDX-License-Identifier\b" +NomosTestfiles/BSD/BSD-4-Clause_4.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/BSD/BSD_style_l.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-3-Clause_4.txt,True,"Matched keywords: licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/BSD/Epl.h,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?, \bseverability clause\b" +NomosTestfiles/BSD/BSD-4-Clause-UC_and_ISC.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/BSD/BSD_style_h.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/BSD/__init__.py,True,"Matched keywords: as[\s-]is, \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bException\b" +NomosTestfiles/BSD/bsd-3.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-3-Clause-Clear.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/DoerffelBSD,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, require(s|d|ment|ments)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-4-Clause-UC.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD_style_i.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/license.terms,True,"Matched keywords: \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/BSD/BSD-3-Clause_3.txt,True,"Matched keywords: licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/BSD/BSD_style_k.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-4-Clause_3.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/FindUSB1.cmake,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/BSD/README.html,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-4-Clause_2.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-2-Clause.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD_style_j.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-3-Clause_2.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD_style_p.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD_style_g.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/endiantest.c.BSD-2,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-2-Clause-NetBSD.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD_style_f.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD_style_q.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-1-Clause.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/htmlArea.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD_style_s.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD_style_d.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-3-Clause-LBNL_a.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b" +NomosTestfiles/BSD/README.pdfium,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/BSD/lz4.license,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/BSD/BSD_style_e.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/BSD/BSD_style_a.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, require(s|d|ment|ments)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD_style_v.txt,True,"Matched keywords: \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/BSD/BSD-2-Clause-Patent.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-4-Clause.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/manual-bsdstyle,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, mis[- ]?represent, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/BSD/BSD-2-Clause_AND_Imlib2.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/BSD/BSD_style_w.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-3-Clause_8.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-2-Clause_not_BSD-style.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/bsd-3-1,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD_style_b.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD_style_u.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/HP-DEC.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/0BSD.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/BSD/WalkinBSD,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bsubject to\b" +NomosTestfiles/BSD/BSD_style_t.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD_style_c.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/bsd.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/bzip2-1.0.5.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, mis[- ]?represent, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/chpst.c,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-2-Clause_ref_b.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/BSD/BSD_ref_b.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/BSD/BSD-2-Clause_ref_c.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/BSD/README.org,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-3-Clause_AND_CC0-1.0.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bsource code\b" +NomosTestfiles/BSD/lz4.c,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/BSD/README.rst,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/BSD/BSD-3-Clause-Clear.c,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, \bsource code\b, warrant(y|ies|ed|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/BSD/bzip2-1.0.6.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, mis[- ]?represent, \bpermission\b, require(s|d|ment|ments)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-2-Clause_ref_a.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/BSD/BSD_ref_a.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bopen source\b" +NomosTestfiles/BSD/BSD-3-Clause-Open-MPI.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-3-Clause.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/podd.h,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-2-Clause-FreeBSD.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/New-BSD_ref_a.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/BSD/BSD_style_aa.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, public[\s-]domain, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/BSD/BSD-2-Clause_ref_d.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/BSD/Zend-2.0,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD_style_ab.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/autoopts.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/BSD/HP-DEC-style.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSD/BSD-3-Clause-Clear_a.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/No_license_found/dep.pl,True,"Matched keywords: \bopen source\b, require(s|d|ment|ments)?" +NomosTestfiles/No_license_found/gimp-file-extension.txt,False, +NomosTestfiles/No_license_found/pretest.dat,False, +NomosTestfiles/No_license_found/java2.class,True,Matched keywords: \bException\b +NomosTestfiles/No_license_found/ConfigRuleSet.class,True,Matched keywords: \bException\b +NomosTestfiles/No_license_found/remote.html,True,Matched keywords: require(s|d|ment|ments)? +NomosTestfiles/No_license_found/aes-linetype-size-shape.r,False, +NomosTestfiles/No_license_found/utf-8-bom.html,False, +NomosTestfiles/No_license_found/XinhaCor.txt,True,Matched keywords: require(s|d|ment|ments)? +NomosTestfiles/No_license_found/java1.class,False, +NomosTestfiles/No_license_found/Not-LGPL.txt,False, +NomosTestfiles/No_license_found/ipl.h,True,Matched keywords: \bcopyright\b +NomosTestfiles/No_license_found/Ajax.js,False, +NomosTestfiles/No_license_found/GPL-Ghostscript_a.txt,False, +NomosTestfiles/No_license_found/GPL-Ghostscript_b.txt,False, +NomosTestfiles/No_license_found/about.json,False, +NomosTestfiles/No_license_found/No_BSD-possibility.txt,False, +NomosTestfiles/WebM/alpha.c,True,"Matched keywords: \bagreement\b, \bcopyright\b, \bgrant\b, licen[cs](e|ing)?, \bsame terms\b" +NomosTestfiles/ITU-T/ITU-T_General_Public_License.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/ITU-T/ITU-T_a.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bsource code\b, \bsubject to\b" +NomosTestfiles/NCSA/uiuc-ncsa.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/NCSA/NCSA.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/NCSA/NCSA_ref_a.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bopen source\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/HPND/HPND-sell-variant_a.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/HPND/HPND-sell-variant_b.txt,True,"Matched keywords: \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/HPND/HPND.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/RSA-Cryptoki/RSA-Cryptoki.txt,True,"Matched keywords: as[\s-]is, deriv(e|ed|ation|ative|es|ing), intellectual propert(y|ies)?, licen[cs](e|ing)?, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/OFL/OFL-1.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/OFL/OFL-1.1.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/OFL/font-awesome.scss,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/OFL/ubuntu-font-1.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/OFL/font-awesome-ie7.css,True,"Matched keywords: licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/Nokia/Nokia.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/RSCPL/RSCPL.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/IETF/IETF.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), require(s|d|ment|ments)?, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/IETF/IETF_a.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/IETF/IETF_Contributions.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), licen[cs](e|ing)?" +NomosTestfiles/naist/naist-2003.txt,True,"Matched keywords: \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/LPL/LPL-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/LPL/LPL-1.02.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/APSL/APSL-1.2.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/APSL/APSL-1.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/APSL/APSL-1.1.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/APSL/apple.lic,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/APSL/APSL-2.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/APSL/MOKit.html,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/APSL/DNSDigest.c,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/EFL/EFL-2.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/EFL/epanel.h,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/EFL/EFL-1.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/EFL/wel_image_list.h,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Artistic-1.0-cl8/Artistic-1.0-cl8.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, public[\s-]domain, require(s|d|ment|ments)?, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Princeton/adj.dat,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, mis[- ]?represent, \bpatent\b, \bpermission\b, public[\s-]domain, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/PHP/License3.01.php,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bsubject to\b" +NomosTestfiles/PHP/PHP-3.01.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/PHP/PHP-3.0_ref_a.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/PHP/PHP-2.02.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/PHP/License.php,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b" +NomosTestfiles/PHP/PHP-3.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/PHP/PHP-3.01_ref_a.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/PHP/license.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Zlib/zutil.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b" +NomosTestfiles/Zlib/util.cpp,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/Zlib/blast.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Zlib/Spencer-94.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, mis[- ]?represent, \bpermission\b, \bsubject to\b" +NomosTestfiles/Zlib/Zlib.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, mis[- ]?represent, \bpermission\b, require(s|d|ment|ments)?, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Zlib/zlib_ref_a.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Zlib/OSIzlibLicense-2006-10-31,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, mis[- ]?represent, \bpermission\b, require(s|d|ment|ments)?, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Zlib/zlibLicense-1.2.2-2004-Oct-03,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, mis[- ]?represent, \bpermission\b, require(s|d|ment|ments)?, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/MakeIndex/MakeIndex.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, require(s|d|ment|ments)?, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/NotreDame/NotreDame-license.txt,True,"Matched keywords: \bagreement\b, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/InnerNet/InnerNet-2.00,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSL/boost.css,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/BSL/BSL-1.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/BSL/graphviz_digraph_lex.cpp,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/BSL/intel.hpp,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/COMMERCIAL/commercial1.txt,True,"Matched keywords: \bcopyright\b, \bpermission\b, \bsource code\b" +NomosTestfiles/COMMERCIAL/commercial2.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), intellectual propert(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, \bsource code\b" +NomosTestfiles/COMMERCIAL/commercial3.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/QPL/QPL-1.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/IBM/IBM-MIT-style.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/IBM/IBM-pibs.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpatent\b, \bsource code\b" +NomosTestfiles/IBM/IBM-as-is.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), licen[cs](e|ing)?, \bpatent\b, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/IBM/IBM-dhcp.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/IBM/IBM.Copyleft,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/ODC/ODC-By-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/OpenCASCADE/LICENSE,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/OpenCASCADE/ShapeBuild_ReShape.ixx,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/OpenCASCADE/Open-CASCADE-Technology-Public-License-6.3,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/See-doc/lualib.h,True,"Matched keywords: \bcopyright\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-doc/http.h,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-doc/libmng_filter.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-doc/mic.h,True,"Matched keywords: \bcopyright\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-doc/xmlsec.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-doc/cpl.pp,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/See-doc/copyright_ref.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing)" +NomosTestfiles/See-doc/catalog.h,True,"Matched keywords: \bcopyright\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-doc/command.h,True,"Matched keywords: \bcopyright\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-doc/DOMAttrImpl.java,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/See-doc/init.8,True,"Matched keywords: \bcopyright\b, \bfree software\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/OGL/OGL-UK-2.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/OGL/OGL-UK-3.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/OGL/OGL-UK-1.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, mis[- ]?represent, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/NTP/NTP.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/NTP/ntp_a.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/NTP/NTP-0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/NTP/NTP-COPYRIGHT,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Multics/Multics.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Adobe/Adobe-Glyph.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Adobe/AdobeAFM.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing)" +NomosTestfiles/Adobe/Afmparse.txt,True,"Matched keywords: as[\s-]is, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Adobe/Adobe-2006.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), indemnif(i|y|ied|ication|ying)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Adobe/Adobe_b.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Adobe/Adobe_a.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Adobe/Adobe-DNG.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Beerware/hash_md5prime.c,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/EUDatagrid/scar_log.h,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/EUDatagrid/EUDatagrid.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Trademark-ref/53c7xx.c,True,"Matched keywords: \bcopyright\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bException\b" +NomosTestfiles/OCLC/OCLC-2.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/curl/curl_a.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/curl/curl.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CMU/MIT-CMU.txt,True,"Matched keywords: \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CMU/MIT-CMU-style_b.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CMU/MIT-CMU-style.txt,True,"Matched keywords: \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CMU/CMU_d.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CMU/CMU-style.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b" +NomosTestfiles/CMU/CMU_c.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, \bpermission\b" +NomosTestfiles/CMU/USC.Non-commercial,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, source (and|or)? ?binary, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CMU/CMU_b.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, source (and|or)? ?binary, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CMU/Bellcore.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CMU/CMU_a.txt,True,"Matched keywords: \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/package_defs/curl.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Mup.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/EFL-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/AML.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/W3C-19980720.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/APSL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/mpich2.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Naumen.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-2.5.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CPAL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OSL-3.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GFDL-1.3+.npm,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/AGPL-1.0+.composer,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/Saxpath.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/D-FSL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/zlib-acknowledgement.npm,True,"Matched keywords: acknowledg(e|ement|ements)?, licen[cs](e|ing)?" +NomosTestfiles/package_defs/APSL-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSD-Protection.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/psfrag.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-NC-4.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/AAL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MIT-enna.composer,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/OCLC-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/LGPL-3.0+.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/VOSTROM.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/SPL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MIT-CMU.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-4.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OSL-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MTLL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Bahyph.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Wsuipa.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/ClArtistic.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/TORQUE-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GPL-1.0+.npm,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/GFDL-1.3-or-later.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MS-RL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/RPSL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-NC-2.5.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Nokia.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/ANTLR-PD.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OSL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSD-Source-Code.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/APSL-1.2.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Plexus.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MIT-advertising.npm,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/APAFML.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OLDAP-2.8.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/NPOSL-3.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Unicode-DFS-2015.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MIT-feh.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GPL-3.0+.npm,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/Rdisc.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MPL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/SISSL-1.2.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MIT-CMU.composer,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/GFDL-1.1+.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Interbase-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/PHP-3.01.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/HaskellReport.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Sendmail-8.23.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-NC-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/AMPAS.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MPL-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Unicode-TOU.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSD-3-Clause-No-Nuclear-License.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/psutils.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/AGPL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Unicode-DFS-2016.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Linux-OpenIB.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Adobe-Glyph.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Aladdin.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OSET-PL-2.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/SISSL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/UPL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GFDL-1.2+.npm,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/Leptonica.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/NASA-1.3.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GFDL-1.2-or-later.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GFDL-1.1-only.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/TCL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CUA-OPL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CECILL-B.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/copyleft-next-0.3.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/NetCDF.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/xpp.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/libtiff.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Motosoto.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Zed.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/DOC.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/VSL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Watcom-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/SNIA.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/APSL-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/NLOD-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/EFL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSD-1-Clause.npm,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/Entessa.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/ODbL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/JSON.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/NLPL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/EUDatagrid.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/FreeImage.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MIT-0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/copyleft-next-0.3.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Ruby.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/RSCPL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Unlicense.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSD-1-Clause.composer,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/CECILL-C.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Fair.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OSL-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Nunit.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MITNFA.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Abstyles.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/AGPL-1.0+.npm,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/MIT-advertising.composer,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/FSFAP.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Condor-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/RPL-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Spencer-86.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSD-3-Clause-Clear.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CNRI-Jython.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSD-4-Clause-UC.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MIT-0.composer,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/OSL-2.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSD-3-Clause-No-Nuclear-License-2014.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/AGPL-3.0+.npm,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/BSD-3-Clause-Attribution.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/YPL-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-NC-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Latex2e.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-3.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/RPL-1.5.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/LPL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GPL-3.0+.composer,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/Info-ZIP.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Noweb.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/TCP-wrappers.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MPL-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MirOS.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OGTSL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSD-3-Clause-LBNL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/FTL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Cube.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/YPL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Vim.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/diffmark.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CPOL-1.02.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MIT-feh.composer,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/Glulxe.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/zlib-acknowledgement.composer,True,"Matched keywords: acknowledg(e|ement|ements)?, licen[cs](e|ing)?" +NomosTestfiles/package_defs/Artistic-1.0-Perl.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Caldera.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/NTP.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/APL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/IJG.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/ImageMagick.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MIT-enna.npm,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/RSA-MD.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Spencer-94.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/LGPL-3.0+.composer,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/SWL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-NC-3.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GFDL-1.1+.composer,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/MakeIndex.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Xnet.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/IPL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Adobe-2006.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/PDDL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/LPPL-1.3a.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-NC-SA-3.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MIT.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-NC-ND-4.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OCCT-PL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Spencer-99.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Apache-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-ND-2.5.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/LAL-1.2.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OLDAP-2.2.2.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/iMatix.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OLDAP-2.0.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/PHP-3.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/eGenix.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/NBPL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/LAL-1.3.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Apache-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GFDL-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GFDL-1.2-only.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GFDL-1.3-only.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Sendmail.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/TU-Berlin-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-SA-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/0BSD.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/AGPL-3.0+.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/SGI-B-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/AGPL-1.0-or-later.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSD-2-Clause-Patent.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpatent\b" +NomosTestfiles/package_defs/CC-BY-SA-3.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-ND-4.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GFDL-1.3.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CDDL-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Afmparse.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-NC-ND-2.5.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OLDAP-2.2.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MIT-enna.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/LiLiQ-R-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/RHeCos-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/ECL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/LiLiQ-Rplus-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Python-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CDLA-Sharing-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CDDL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OLDAP-1.4.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/QPL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GFDL-1.2.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/LPPL-1.3c.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MPL-2.0-no-copyleft-exception.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bException\b" +NomosTestfiles/package_defs/xinetd.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/EPL-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-NC-SA-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MIT-0.npm,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/AFL-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSD-1-Clause.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/LPPL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-NC-ND-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/IBM-pibs.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OGL-UK-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/XFree86-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Libpng.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Sleepycat.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OPL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/LPPL-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OLDAP-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/AGPL-1.0-only.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/AFL-2.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Qhull.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/X11.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GPL-1.0+.composer,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/GL2PS.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Glide.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/ZPL-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSD-Protection.composer,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/Beerware.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CNRI-Python-GPL-Compatible.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CECILL-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GFDL-1.2+.composer,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/FSFUL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OLDAP-1.3.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Dotseqn.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Artistic-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Xerox.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Zlib.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-ND-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CNRI-Python.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Newsletr.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Multics.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/AGPL-1.0+.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/XSkat.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/DOC.composer,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/LPPL-1.2.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/FSFULLR.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OLDAP-1.2.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/IPA.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CECILL-2.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSD-2-Clause-NetBSD.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OLDAP-2.7.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/NGPL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Net-SNMP.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/SGI-B-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-SA-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/EUPL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/TU-Berlin-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/DSDP.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Borceux.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/ODC-By-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/gSOAP-1.3b.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GFDL-1.1+.npm,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/EUPL-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/SGI-B-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Intel.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/TOSL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSD-Source-Code.composer,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/AGPL-3.0+.composer,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/GPL-3.0+.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MIT-feh.npm,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/Giftware.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/SMLNJ.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OLDAP-2.6.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OLDAP-2.4.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/ADSL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/ECL-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/LGPLLR.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/ErlPL-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-NC-SA-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Zend-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSD-2-Clause-FreeBSD.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CDLA-Permissive-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Frameworx-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/EPL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GFDL-1.2+.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Zimbra-1.3.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MS-PL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/W3C-20150513.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/LPL-1.02.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/HPND.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/EUPL-1.2.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Artistic-1.0-cl8.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OLDAP-2.5.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OML.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OLDAP-2.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/bzip2-1.0.6.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/NPL-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CATOSL-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-SA-4.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSD-Protection.npm,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/zlib-acknowledgement.pom,True,"Matched keywords: acknowledg(e|ement|ements)?, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Eurosym.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BitTorrent-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OGL-UK-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-ND-3.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-NC-SA-2.5.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/dvipdfm.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/ZPL-2.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/AFL-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/AGPL-3.0-or-later.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Fair.composer,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/W3C.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GFDL-1.3+.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Intel-ACPI.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/ZPL-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/SugarCRM-1.1.3.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BitTorrent-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/SMPPL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-NC-ND-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/NPL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OLDAP-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Barr.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GFDL-1.1-or-later.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/SimPL-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OLDAP-2.2.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/bzip2-1.0.5.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/JasPer-2.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MIT-advertising.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-NC-SA-4.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CrystalStacker.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSD-Source-Code.npm,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/SCEA.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-NC-ND-3.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/TMate.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/NCSA.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-SA-2.5.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/AFL-3.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/PostgreSQL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/SAX-PD.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CECILL-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GFDL-1.3+.composer,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/AFL-1.2.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/NOSL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/ICU.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/GPL-1.0+.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Zimbra-1.4.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OpenSSL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/gnuplot.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CECILL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/BSD-3-Clause-No-Nuclear-Warranty.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/package_defs/NRL.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/AMDPLPA.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/MIT-CMU.npm,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/LiLiQ-P-1.1.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Crossword.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/OGL-UK-3.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CC-BY-ND-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/LGPL-3.0+.npm,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/package_defs/OLDAP-2.3.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/Artistic-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/package_defs/CPL-1.0.pom,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/OGC/OGC-Software-Notice.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), intellectual propert(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CNRI-Python/CNRI-Python.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/CNRI-Python/CNRI-Python-GPL-Compatible.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/HSQLDB/hsqldb-ref4.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b" +NomosTestfiles/HSQLDB/hsqldb-ref1.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/HSQLDB/hsqldb-license,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/HSQLDB/hsqldb-ref2.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/HSQLDB/hsqldb-ref3.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b" +NomosTestfiles/TCL/TCL_b.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/TCL/TCL_c.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/TCL/TCL_a.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/AML/AML.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/EDL/edl1.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/EDL/edl-v10,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/JSON/json-license.htm,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/JSON/jslint.js,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/TU-Berlin/TU-Berlin-2.0.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/TU-Berlin/TU-Berlin-1.0.txt,True,"Matched keywords: \bcopyright\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/IPTC/IPTC.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Nvidia/atom.c,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Nvidia/mix_transformer.py,True,"Matched keywords: as[\s-]is, \bcopyright\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b" +NomosTestfiles/Nvidia/Nvidia-EULA.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, require(s|d|ment|ments)?, \bsource code\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/Nvidia/copyright,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, licen[cs](e|ing)?, \bpatent\b, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/UnboundID/UnboundID-LDAP-SDK.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/AGPL/AGPL-3.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, indemnif(i|y|ied|ication|ying)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, mis[- ]?represent, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/AGPL/apps.js,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b" +NomosTestfiles/AGPL/pm2-copyright.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/AGPL/JsonMapper.php,True,"Matched keywords: licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bException\b" +NomosTestfiles/AGPL/Affero-v1.0,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/AGPL/AGPL-3.0_ref_e.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/AGPL/AGPL-3.0_ref_d.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/AGPL/AGPL-3.0_ref_a.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/AGPL/AGPL-3.0_ref_c.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/AGPL/AGPL-3.0_ref_b.txt,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/AGPL/readme.rst,True,"Matched keywords: licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bException\b" +NomosTestfiles/AGPL/ampdu.c,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Unlicense/bitcoin.php,True,"Matched keywords: licen[cs](e|ing)?, public[\s-]domain, require(s|d|ment|ments)?, \bException\b" +NomosTestfiles/SPDX/OSL-2.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LiLiQ-P-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GCC-exception-3.1.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsource code\b, \bException\b" +NomosTestfiles/SPDX/GFDL-1.2-invariants-or-later,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/gnu-javamail-exception,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/NLOD-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.2,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/ZPL-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Imlib2,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/FTL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/YPL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Intel,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-SA-3.0-AT,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.1-no-invariants-or-later,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-3.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Vim,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.3+,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Linux-syscall-note.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), \bfree software\b, licen[cs](e|ing)?" +NomosTestfiles/SPDX/OLDAP-2.8,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/libtiff,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.3-invariants-or-later,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BSD-3-Clause-Clear,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CLISP-exception-2.0.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/SPDX/NCGL-UK-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/MITNFA,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GPL-3.0-only,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Zed,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OLDAP-2.6,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/MulanPSL-1.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/SPDX/CrystalStacker,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/AAL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OLDAP-2.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/PostgreSQL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/YPL-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Parity-7.0.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/W3C,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Info-ZIP,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/ZPL-2.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.3,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/SCEA,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/DigiRule-FOSS-exception.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bopen source\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, \bException\b" +NomosTestfiles/SPDX/GFDL-1.2-only,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/SISSL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/diffmark,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/RPL-1.5,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CLISP-exception-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Newsletr,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-ND-4.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/NIST-PD-fallback,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OSL-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/i2p-gpl-java-exception,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/eCos-exception-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-ND-2.5,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-NC-ND-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OLDAP-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OLDAP-2.7,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Intel-ACPI,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/PolyForm-Small-Business-1.0.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CAL-1.0-Combined-Work-Exception,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/NRL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Rdisc,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OpenJDK-assembly-exception-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.2-no-invariants-only,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OGL-UK-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Artistic-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.1-invariants-or-later,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CUA-OPL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Parity-6.0.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LiLiQ-R-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Interbase-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GPL-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LPL-1.02,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/SimPL-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/IPA,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/PDDL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LLVM-exception.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpatent\b, \bsource code\b, \bException\b" +NomosTestfiles/SPDX/CC-BY-NC-SA-3.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/bzip2-1.0.5,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Libtool-exception.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bException\b" +NomosTestfiles/SPDX/ANTLR-PD,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Autoconf-exception-3.0.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bException\b" +NomosTestfiles/SPDX/GFDL-1.1-no-invariants-only,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LGPL-3.0-or-later,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/AGPL-3.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/ECL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Libpng,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.1-or-later,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.3-only,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Unicode-DFS-2016,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/libpng-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-PDDC,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/AFL-1.2,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LLVM-exception,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Unicode-TOU,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.2-no-invariants-or-later,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/gnuplot,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Wsuipa,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/NLPL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OLDAP-2.0.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BSD-Protection,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-SA-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BlueOak-1.0.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/APSL-1.2,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/SAX-PD,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-NC-2.5,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OLDAP-2.2.2,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/FLTK-exception,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Borceux,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Glide,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BSD-4-Clause,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/FSFUL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-NC-4.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/MulanPSL-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Xnet,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/EPL-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/AFL-3.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Spencer-99,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GPL-1.0-only,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Mup,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/MS-PL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Autoconf-exception-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/VSL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-ND-3.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GPL-2.0-with-code.js,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OSET-PL-2.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/SSPL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Aladdin,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CERN-OHL-W-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OFL-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/AGPL-3.0+,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OLDAP-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BSD-2-Clause-Views,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OSL-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/AGPL-3.0-only,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Hippocratic-2.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Crossword,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/openvpn-openssl-exception.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, \bException\b" +NomosTestfiles/SPDX/CECILL-C,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OCCT-PL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.3-no-invariants-or-later,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Naumen,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LGPL-2.0-only,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Linux-OpenIB,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/APL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/EUPL-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/openvpn-openssl-exception,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Net-SNMP,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Sleepycat,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/copyleft-next-0.3.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/u-boot-exception-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LGPLLR,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-NC-ND-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OGL-Canada-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/D-FSL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Giftware,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-4.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/blessing,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/RHeCos-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GPL-2.0-or-later,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CPL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OFL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Cube,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/SugarCRM-1.1.3,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OGL-UK-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Noweb,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/IBM-pibs,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Artistic-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LZMA-exception,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GCC-exception-2.0.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b" +NomosTestfiles/SPDX/LPPL-1.2,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/389-exception,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/copyleft-next-0.3.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Dotseqn,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/EUPL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/SMPPL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/JPNIC.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bsource code\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/SPDX/ZPL-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/ODC-By-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LGPL-2.1+,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/eCos-exception-2.0.txt,True,"Matched keywords: licen[cs](e|ing)?, \bsource code\b, \bException\b" +NomosTestfiles/SPDX/TCP-wrappers,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CECILL-B,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Bootloader-exception,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OFL-1.1-no-RFN,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OSL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-2.5,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/NBPL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/ECL-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/mpich2,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/RPSL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BSD-2-Clause,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/TAPR-OHL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.1-invariants-only,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LGPL-2.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/TMate,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Artistic-1.0-Perl,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BitTorrent-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/NIST-PD,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GCC-exception-3.1,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/gSOAP-1.3b,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Latex2e,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/gnu-javamail-exception.txt,True,"Matched keywords: licen[cs](e|ing)?, \bException\b" +NomosTestfiles/SPDX/GPL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Font-exception-2.0.txt,True,"Matched keywords: licen[cs](e|ing)?, \bException\b" +NomosTestfiles/SPDX/SISSL-1.2,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/NOSL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/SWL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CERN-OHL-P-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BSD-4-Clause-UC,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Qwt-exception-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OCCT-exception-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/FSFAP.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), warrant(y|ies|ed|ing)?" +NomosTestfiles/SPDX/WTFPL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/freertos-exception-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-NC-3.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Frameworx-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Spencer-86.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, mis[- ]?represent, \bpermission\b, \bsubject to\b" +NomosTestfiles/SPDX/XFree86-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Autoconf-exception-2.0.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, \bException\b" +NomosTestfiles/SPDX/CC-BY-NC-SA-4.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/NCSA,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/HPND,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LGPL-2.1-only,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BlueOak-1.0.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/SPDX/Font-exception-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GPL-1.0+,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LGPL-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/MulanPSL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/u-boot-exception-2.0.txt,True,"Matched keywords: deriv(e|ed|ation|ative|es|ing), licen[cs](e|ing)?, \bException\b" +NomosTestfiles/SPDX/BitTorrent-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/mif-exception.txt,True,"Matched keywords: \bfree software\b, licen[cs](e|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/SPDX/Nokia,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/RSCPL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/EPL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Classpath-exception-2.0.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, \bterms and conditions\b, \bException\b" +NomosTestfiles/SPDX/Artistic-1.0-cl8,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CERN-OHL-1.2,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LPPL-1.3c,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Zlib,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/MakeIndex,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CERN-OHL-S-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/TORQUE-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/AGPL-1.0-only,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CNRI-Jython,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-NC-SA-2.5,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-SA-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Caldera,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/389-exception.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/SPDX/SSH-OpenSSH,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/psfrag,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/freertos-exception-2.0.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, \bsource code\b, \bterms and conditions\b, \bException\b" +NomosTestfiles/SPDX/Nunit,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/FSFUL.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bpermission\b" +NomosTestfiles/SPDX/BSD-3-Clause-No-Nuclear-License,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LGPL-2.1-or-later,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/mif-exception,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Bahyph,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LGPL-2.0-or-later,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OLDAP-2.2,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/dvipdfm,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/0BSD,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/NTP,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/XSkat,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Multics,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BSD-3-Clause-No-Nuclear-License-2014,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OLDAP-2.5,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-ND-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CECILL-2.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BSD-3-Clause-No-Nuclear-Warranty,True,"Matched keywords: licen[cs](e|ing)?, warrant(y|ies|ed|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/IPL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-NC-ND-3.0-IGO,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/EFL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Linux-syscall-note,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Condor-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/TU-Berlin-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Beerware,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/EUDatagrid,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OML,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OGC-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/curl,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Eurosym,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/FSFULLR.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bpermission\b" +NomosTestfiles/SPDX/OLDAP-2.4,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CNRI-Python,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GPL-2.0-only,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GPL-2.0+,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/TCL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/SSH-short,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BSD-2-Clause-Patent,True,"Matched keywords: licen[cs](e|ing)?, \bpatent\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CECILL-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Barr,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OLDAP-2.3,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/AML,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/psutils,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/HaskellReport,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/AGPL-1.0+,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/NTP-0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/JSON,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-NC-ND-3.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Apache-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/SGI-B-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/PolyForm-Noncommercial-1.0.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Unlicense,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Libtool-exception,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Qhull.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/SPDX/LGPL-3.0+,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/SHL-0.51,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.2-or-later,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.3-or-later,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/AMDPLPA,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/RPL-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/FSFAP,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/WxWindows-exception-3.1,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GPL-3.0+,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/SSH-OpenSSH.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/SPDX/AFL-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/MPL-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Fair,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/UCL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/AGPL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/DigiRule-FOSS-exception,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Classpath-exception-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Unicode-DFS-2015,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/SHL-0.5,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/etalab-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-SA-4.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Fawkes-Runtime-exception.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, \bterms and conditions\b, \bException\b" +NomosTestfiles/SPDX/W3C-20150513,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/APSL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-NC-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BSD-2-Clause-NetBSD,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-NC-SA-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LGPL-2.0+,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-SA-2.5,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/DSDP,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.3-invariants-only,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Motosoto,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Adobe-Glyph,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/ISC,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/NASA-1.3,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/SSH-short.txt,True,Matched keywords: deriv(e|ed|ation|ative|es|ing) +NomosTestfiles/SPDX/bzip2-1.0.6,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Entessa,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/iMatix,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OPL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Spencer-99.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, require(s|d|ment|ments)?, source (and|or)? ?binary, warrant(y|ies|ed|ing)?" +NomosTestfiles/SPDX/MPL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Spencer-94,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BSD-Source-Code,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/TOSL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GCC-exception-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/APAFML,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LGPL-3.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/HPND-sell-variant,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CNRI-Python-GPL-Compatible,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/RSA-MD,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Abstyles,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/MIT-0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OCCT-exception-1.0.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bException\b" +NomosTestfiles/SPDX/BSD-3-Clause-Attribution,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Afmparse,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OCLC-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/X11,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Bison-exception-2.2,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/NetCDF,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/MPL-2.0-no-copyleft-exception,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/xinetd,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/AGPL-1.0-or-later,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Bison-exception-2.2.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bException\b" +NomosTestfiles/SPDX/NPOSL-3.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/MTLL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OLDAP-2.2.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GPL-1.0-or-later,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Watcom-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/DOC,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/ODbL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/APSL-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/i2p-gpl-java-exception.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, \bException\b" +NomosTestfiles/SPDX/MPL-2.0_AND_BSD-2-Clause_AND_MIT_OR_Apache-2.0.txt,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/EFL-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CAL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LZMA-exception.txt,True,"Matched keywords: licen[cs](e|ing)?, \bsubject to\b, \bException\b" +NomosTestfiles/SPDX/QPL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OFL-1.1-RFN,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-NC-ND-4.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/AMPAS,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/TU-Berlin-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OpenJDK-assembly-exception-1.0.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, \bException\b" +NomosTestfiles/SPDX/Nokia-Qt-exception-1.1.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bException\b" +NomosTestfiles/SPDX/LPPL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-3.0-AT,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/EUPL-1.2,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OFL-1.0-no-RFN,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/MIT-feh,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Leptonica,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/xpp,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Fawkes-Runtime-exception,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CERN-OHL-1.1.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/SPDX/SGI-B-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CATOSL-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Apache-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Bootloader-exception.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, \bException\b" +NomosTestfiles/SPDX/ADSL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OLDAP-1.2,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OFL-1.0-RFN,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.2-invariants-only,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CECILL-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BSD-1-Clause,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-ND-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OGTSL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-NC-ND-2.5,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/VOSTROM,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OSL-3.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LPPL-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/MIT-enna,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Python-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/WxWindows-exception-3.1.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, \bException\b" +NomosTestfiles/SPDX/Zimbra-1.3,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LGPL-3.0-only,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Xerox,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/MirOS,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CERN-OHL-1.2.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/SPDX/Zimbra-1.4,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/FLTK-exception.txt,True,"Matched keywords: deriv(e|ed|ation|ative|es|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, \bsource code\b" +NomosTestfiles/SPDX/O-UDA-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CECILL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/SNIA,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OLDAP-1.4,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/ErlPL-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OGL-UK-3.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OLDAP-1.3,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/EPICS,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/SPL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/OpenSSL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/MS-RL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/SMLNJ,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/eGenix,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CDLA-Permissive-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/SGI-B-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Apache-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC0-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Spencer-86,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-NC-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Plexus,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/APSL-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/IJG,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.1-only,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-NC-SA-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LPL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.1+,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/ImageMagick,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/PHP-3.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GPL-3.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/FreeImage,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Saxpath,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/zlib-acknowledgement,True,"Matched keywords: acknowledg(e|ement|ements)?, licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/ClArtistic,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Sendmail-8.23,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CDDL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GL2PS,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Qwt-exception-1.0.txt,True,"Matched keywords: deriv(e|ed|ation|ative|es|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, \bsource code\b" +NomosTestfiles/SPDX/LPPL-1.3a,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LAL-1.2,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/PHP-3.01,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Glulxe,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/MIT-CMU,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Adobe-2006,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/AFL-2.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/MIT-advertising,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Zend-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/NPL-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CDLA-Sharing-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Ruby,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BSD-2-Clause-FreeBSD,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/NGPL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/JPNIC,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/ICU,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CC-BY-SA-3.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/W3C-19980720,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BSD-3-Clause-LBNL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.3-no-invariants-only,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BSL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/AGPL-3.0-or-later,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/JasPer-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GFDL-1.2+,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GPL-3.0-or-later,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/MIT,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BSD-3-Clause,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Nokia-Qt-exception-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/NPL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LiLiQ-Rplus-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Autoconf-exception-3.0,True,"Matched keywords: licen[cs](e|ing)?, \bException\b, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CPOL-1.02,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/UPL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/GLWTPL,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/AFL-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/BSD-3-Clause-Open-MPI,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/MPL-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Sendmail,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/libselinux-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CPAL-1.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/LAL-1.3,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CERN-OHL-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/FSFULLR,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/CDDL-1.1,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/PSF-2.0,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/SPDX/Qhull,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/Java-WSDL-Policy/WS-Policy-Specification.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CECILL/CImg.h,True,"Matched keywords: deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/CECILL/CECILL-B.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/CECILL/CECILL-C.txt,True,"Matched keywords: deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/CECILL/qapplication_proxy.cpp,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/CECILL/CECILL-2.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/CECILL/dataset_io.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/CECILL/CECILL-1.1.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/CECILL/ParametersFileFilter.java,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/CECILL/CECILL-1.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/CECILL/GameMode.java,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, require(s|d|ment|ments)?, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/ErlPL/decode_skip.h,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/ErlPL/ErlPL-1.1.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CPAL/CPAL-1.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CPAL/abstract.php,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/CPAL/EndpointMessageProcessorsTestCase.java,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bException\b" +NomosTestfiles/OSF/OSF.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, \bsource code\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/OSF/OSF-style_a.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Non-profit/LICENSE.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Non-profit/freeware.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, licen[cs](e|ing)?, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CDDL/vnode.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b" +NomosTestfiles/CDDL/RegistrationData.java,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bException\b" +NomosTestfiles/CDDL/doctext.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b" +NomosTestfiles/CDDL/DEPENDENCIES.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/CDDL/CDDL-1.1.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CDDL/CDDL-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CDDL/CDDL-1.0_and_CDDL-1.1.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/CDDL/CDDL-1.0-ref.xml,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/Govt-rights/Govt-rights.txt,True,"Matched keywords: as[\s-]is, \bgrant\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/RHeCos/RHeCos-1.1.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Fair/Fair.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/WordNet/WordNet.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/OZPLB/OZPLB-1.1.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/OZPLB/OZPLB-1.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsource code\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/OZPLB/OZPLB_ref_a.txt,True,"Matched keywords: licen[cs](e|ing)?, \bsource code\b" +NomosTestfiles/CPL/CPL-0.5,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CPL/CPL-1.0_ref_b.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/CPL/Not_Eclipse_license.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CPL/CPL_license_test.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CPL/CPL-1.0_ref_a.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/CPL/CPL-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CPL/Serializer.cs,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Motorola/Motorola-Mobile-SLA.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Motorola/Motorola.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Motosoto/Motosoto.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Unidex/unidex.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/EUPL/simRender.h,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/EUPL/async_log.c,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/EUPL/EUPL-1.2.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/EUPL/EUPL-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/EUPL/EUPL-1.1.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/IPL/IBM_Public_License_1.0.htm,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/IPL/IPL-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/IPL/license.c,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/Debian-SPI/Debian-SPI.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bpermission\b" +NomosTestfiles/ISC/classpath_and_ISC_and_IBM.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/ISC/ISC_and_MIT.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/ISC/ISC.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/ISC/go-spew.txt,True,"Matched keywords: licen[cs](e|ing)?, \bopen source\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/ISC/ISC_ref_a.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/ISC/package.json,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/ISC/log.h,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/ISC/chmod.c,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/ISC/ISC-license-OSI,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/ISC/ISC_no_ISC_copyright.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Entessa/Entessa.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Entessa/CacheStorage.java,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/MPL/MPL-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MPL/MPL-1.1.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MPL/MPL-2.0_and_BSD-2-Clause.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/MPL/YUI-Compressor.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, source (and|or)? ?binary, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/MPL/webutil.js,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/MPL/MPL-2.0_not_MPL.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bsource code\b, \bsubject to\b" +NomosTestfiles/MPL/MPL-2.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MPL/README,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bopen source\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/MPL/opl-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MPL/RabbitMQ.license,True,"Matched keywords: licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/MPL/mpl,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MPL/License.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/MPL/mozilla.xhtml,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/MPL/MPL-2.0-with-copyleft-exception.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/NOT-public-domain/README.OSS,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), public[\s-]domain, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/NOT-public-domain/Freeware_not_Public-domain.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, public[\s-]domain, warrant(y|ies|ed|ing)?" +NomosTestfiles/NOT-public-domain/gettext.m4,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, public[\s-]domain, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bException\b" +NomosTestfiles/NOT-public-domain/progtest.m4,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, public[\s-]domain" +NomosTestfiles/ODbL/ODbL-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/ODbL/LICENSE.txt,True,"Matched keywords: licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/SugarCRM/SugarCRM-1.1.3.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/GPL/Timestamp.cc,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/grecord.cpp,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/GPL/01.cc.GPL-2.0+,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/GPL-1.0b.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/GPL-2.0_d.txt,True,Matched keywords: \bcopyright\b +NomosTestfiles/GPL/Autoload.php,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/GPL/InvalidHeaderException.cs,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, public[\s-]domain, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bterms and conditions\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/UploadWizardCampaign.php,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/GPL/GPL-3.0-with-bison-exception,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/GPL-2.0_with_OpenSSL-exception.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, \bException\b" +NomosTestfiles/GPL/GPL-2.0_e.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/GPL-2.0+_with_OpenSSL-exception.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/ps_inspect.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/gpl21_plus.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bterms and conditions\b" +NomosTestfiles/GPL/FSF-and-GPL.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/GPL-2.0_g.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/curve.c,True,Matched keywords: \bcopyright\b +NomosTestfiles/GPL/GPL-2.0_f.txt,True,Matched keywords: \bcopyright\b +NomosTestfiles/GPL/cmdedit.c,True,"Matched keywords: as[\s-]is, \bcopyright\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/GPL-3.0_c.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/GPL/2064.md.GPL-2.0+,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/GPL-2.0_b.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/GPL/GPL-2.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/GPL/Stats.java,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/json.nanorc,True,"Matched keywords: licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/GPL/sys-ecos.c,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/GPL/universal-foss-exception.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/GPL/GPL-2.0_c.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/GPL/GPL-2.0-with-autoconf-exception.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, \bException\b" +NomosTestfiles/GPL/LICENSE,True,"Matched keywords: \bagreement\b, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/gpl-test2.txt,True,Matched keywords: \bcopyright\b +NomosTestfiles/GPL/GPL-2.0_a.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/GPL/save_particles_Point3D_format.h,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/webserver.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/GPL-3.0b.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, indemnif(i|y|ied|ication|ying)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, mis[- ]?represent, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/evd-pki-pubkey-lic.c,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/atp870u.c.GPLpossibility,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/GPL/doxygen.sh,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/GPL/universal-foss-exception_url.txt,True,"Matched keywords: licen[cs](e|ing)?, \bException\b" +NomosTestfiles/GPL/FreeRTOS-license,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/GPL/Boolean.cs,True,"Matched keywords: licen[cs](e|ing)?, \bException\b" +NomosTestfiles/GPL/gpl-3.0.xml,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, indemnif(i|y|ied|ication|ying)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, mis[- ]?represent, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/cfg.c,True,"Matched keywords: \bcopyright\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/GPL/Adler32.cs,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bterms and conditions\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/gcc.c,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/test-file-4-GPL-3.0,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bException\b" +NomosTestfiles/GPL/gtkmovelist.c,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/GPL-with-autoconf-exception,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bException\b" +NomosTestfiles/GPL/stddef.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/server_monitor.py,True,"Matched keywords: \bcopyright\b, \bException\b" +NomosTestfiles/GPL/COPYING_bug3207,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, indemnif(i|y|ied|ication|ying)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, mis[- ]?represent, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/ttl.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/serv_rssclient.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/pmc_atom.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/gids.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/GPL-2.0_with_OpenSSL-exception_2.txt,True,"Matched keywords: \bagreement\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/GPL-2.0_reversed_version_ref,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/Kconfig,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/GPL/radrealms.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/GPL/GPL-2.0_and_LGPL-2.1.txt,True,"Matched keywords: licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/GPL/GPL-2.0+.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/GPL/stdvga.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bterms and conditions\b" +NomosTestfiles/GPL/test-file-4-GPL-2.0.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/abstractwidgetfactory.cpp,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/GPL-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/gwymath.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, public[\s-]domain, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/53c700_d.h_shipped.GPL-2.0+,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/Jersey-LICENSE.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/GPL/GPL-3.0-with-autoconf-exception.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bException\b" +NomosTestfiles/GPL/standalone_html.inc.php,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/GPL/GPL-3.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, indemnif(i|y|ied|ication|ying)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, mis[- ]?represent, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/passdb.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/GPL-2.0-with-bison-exception.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bException\b" +NomosTestfiles/GPL/zconf.tab.c,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/Address.java,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/3w-xxxx.h.GPL-2.0,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/GPL/ax_gcc_archflag.m4,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/fnmatch.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/GPL-3.0-with-GCC-exception.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsource code\b, \bException\b" +NomosTestfiles/GPL/GPL-2.0-with-font-exception.txt,True,"Matched keywords: licen[cs](e|ing)?, \bException\b" +NomosTestfiles/GPL/INSTALL.devcpp,True,"Matched keywords: require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b" +NomosTestfiles/GPL/GPL-3.0+_a.txt,True,"Matched keywords: require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/GPL/GPL-2.0+_a.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/GPL/outcommentedMODULE_LICENSE.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/GPL/m_knock.c,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/GPL/GPL-2.0+_c.txt,True,"Matched keywords: \bcopyright\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/GPL/RelParser.cpp,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/GPL/dialogboundvalues.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/gettext.m4,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, public[\s-]domain, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bException\b" +NomosTestfiles/GPL/frogr-picture-loader.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/frogr-util.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/GPL-2.0+_b.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/argparse.c,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/GPL-2.0+_f.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/GPL/aha1740.c.GPLv2,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bException\b" +NomosTestfiles/GPL/gnulib.mk,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bException\b" +NomosTestfiles/GPL/GPL-2.0+_abi-compliance-checker.pl,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/FreeRTOS-license-ref1.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bsource code\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/GPL-2.0+_and_LGPL-2.0+.txt,True,"Matched keywords: licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/GPL/GPL-2.0+_g.txt,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/GPL/glacier.dts,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bSPDX-License-Identifier\b" +NomosTestfiles/GPL/GPL-2.0+_e.txt,True,Matched keywords: \bcopyright\b +NomosTestfiles/GPL/test-driver,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/missed_detection_of_GPL_v3_bug3093,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, public[\s-]domain, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/GPL-2.0+_with_linking-exception.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/FreeRTOS-license-ref3.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bsource code\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/ConfigEnv.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/FreeRTOS-license-ref2.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bsource code\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/version.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/GPL-2.0+_d.txt,True,"Matched keywords: \bfree software\b, licen[cs](e|ing)?" +NomosTestfiles/GPL/bsam-license.php,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/StopComponentCommand.java,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bterms and conditions\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/mysql-floss-exception.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bopen source\b, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, \bterms and conditions\b, \bException\b" +NomosTestfiles/GPL/GPL-2.0-with-classpath-exception.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, \bterms and conditions\b, \bException\b" +NomosTestfiles/GPL/crtn.S,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/abft.h,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/GPL/mysql-floss-exception_ref_a.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/lua.nanorc,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/GPL/pkg.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/GPL-2.0_l.txt,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/GPL/Oracle-foss-exception.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bopen source\b, \bsource code\b, \bsubject to\b, \bterms and conditions\b, \bException\b" +NomosTestfiles/GPL/gnu-md5.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, public[\s-]domain, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/pl.po,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/ext4_jbd2.h,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/GPL/CFontz-charmap.h,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/GPL/parser.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/taskset.c,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/GPL/GPL-2.0_k.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/GPL/COPYING.GPL-2.0,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/GPL/GPL-2.0+-not-bison.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/clisp.cxx,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b" +NomosTestfiles/GPL/aclocal.m4,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/GPL-2.0-with-GCC-exception.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, \bException\b" +NomosTestfiles/GPL/GPL-3.0+_WITH_linking-exception.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/GPL-2.0_j.txt,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/GPL/bitfield.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?" +NomosTestfiles/GPL/cpio.spec,True,"Matched keywords: licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/GPL/GPL-2.0_h.txt,True,Matched keywords: \bcopyright\b +NomosTestfiles/GPL/GPL-3.0+_WITH_Autoconf-exception-3.0.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/GPL/GPL-2.0_i.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/nomos-diff-GPLv2.php,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/GPL/nf_conntrack_h323_asn1.h,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bsource code\b" +NomosTestfiles/Abstyles/Abstyles.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/X11/X11-SGI,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/X11/bk4r1.dts,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/X11/x11-license.html,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/X11/X11-OpenGroup_b.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/X11/X11-OpenGroup_a.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/X11/X11-Tektronix,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MTLL/MTLL.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/SimPL/SimPL-2.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/UCAR/UCAR.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Logica/logica.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/CDLA/CDLA-Sharing-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, require(s|d|ment|ments)?, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CDLA/CDLA-Permissive-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, require(s|d|ment|ments)?, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/VSL/VSL-1.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Leptonica/affine_reg.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), mis[- ]?represent, \bpermission\b, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/RPL/RPL-1.5.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Postfix/master_spawn.c,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/CC/CC-BY-2.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/CC-BY-SA-4.0_ref_a.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bterms and conditions\b" +NomosTestfiles/CC/CC-BY-NC-2.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/setup.h,True,"Matched keywords: \bcopyright\b, \bdamages\b, licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/CC/malloc.h,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/CC/CC-BY-4.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/CC/Licensing.html,True,"Matched keywords: \bagreement\b, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bException\b" +NomosTestfiles/CC/GCOneShotEffectTimer.h,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/CC/CC-BY-NC-2.5.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/LICENSE,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/CC/CC-BY-2.5.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/CC-BY-SA-3.0b.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/CC/config.h,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/CC/netbsd.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/CC/CC-BY-NC-4.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/CC/CC-BY-SA-3.0c.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/CC/ifiction.h,True,"Matched keywords: licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/CC/CC-BY-ND-3.0_URL.txt,True,"Matched keywords: \bcopyright\b, \bfree software\b, licen[cs](e|ing)?" +NomosTestfiles/CC/CC-BY-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/CC-BY-NC-3.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/license.h,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/CC/DS_HuffmanEncodingTreeNode.h,True,"Matched keywords: \bagreement\b, \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b" +NomosTestfiles/CC/CC-BY-1.0_ref.txt,False, +NomosTestfiles/CC/CC-BY-NC-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/perl-XML-Writer.spec,True,"Matched keywords: licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/CC/CC-BY-3.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/README.icons.txt,True,"Matched keywords: deriv(e|ed|ation|ative|es|ing), licen[cs](e|ing)?" +NomosTestfiles/CC/CC0-1.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/CC-BY-2.5_ref.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/CC/configwords.h,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/CC/accessstate.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/CC/bltsville.h,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/CC/boot_config.h,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/CC/README,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/CC/CC-BY-ND-2.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/matching.py,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, public[\s-]domain, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/CC/CC-BY-NC-ND-2.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/CC-BY-2.0_ref.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/CC/CC-BY-NC-ND-2.5.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/CC-BY-SA-3.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/CC-BY-ND-4.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/CC/CC-BY-NC-SA-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/md5.js,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/CC/CC-BY-ND-2.5.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/memory_map.h,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/CC/CC-BY-NC-SA-3.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/CC-BY-NC-ND-4.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/CC/CC-BY-SA-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/CC-BY-SA-2.5.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/CC-BY-NC-SA-4.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/CC/CC-BY-NC-ND-3.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/CC-BY-ND-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/CC-BY-NC-SA-2.5.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/License.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/CC/CC-BY-SA-4.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/CC/CC-BY-ND-3.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/CC-BY-NC-ND-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/CC-BY-NC-SA-2.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/CC-BY-SA-2.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CC/CopyrightPolicyTheWhiteHouse.html,True,"Matched keywords: \bcopyright\b, \bgrant\b, intellectual propert(y|ies)?, licen[cs](e|ing)?" +NomosTestfiles/TrueCrypt/truecrypt.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, mis[- ]?represent, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Public-domain/nwlib.c,True,"Matched keywords: \bcopyright\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Public-domain/CC0-ref-a.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Public-domain/fitblk.c,True,"Matched keywords: public[\s-]domain, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Public-domain/Public-domain-ref_b.txt,True,"Matched keywords: \bcopyright\b, \bsource code\b" +NomosTestfiles/Public-domain/ar_AE,True,"Matched keywords: \bcopyright\b, \bfree software\b, licen[cs](e|ing)?" +NomosTestfiles/Public-domain/PD-dedication.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, public[\s-]domain" +NomosTestfiles/Public-domain/Public-domain-ref.txt,True,Matched keywords: public[\s-]domain +NomosTestfiles/Public-domain/copyright_waiver.txt,True,"Matched keywords: \bcopyright\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Public-domain/bn.tex,True,"Matched keywords: acknowledg(e|ement|ements)?, licen[cs](e|ing)?, \bopen source\b, public[\s-]domain, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b" +NomosTestfiles/Public-domain/biohazard.svg,True,"Matched keywords: deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/Public-domain/LzmaDec.c,True,"Matched keywords: public[\s-]domain, require(s|d|ment|ments)?" +NomosTestfiles/Public-domain/zpipe.c,True,Matched keywords: public[\s-]domain +NomosTestfiles/Public-domain/dirent.c,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), public[\s-]domain, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/Zimbra/sugarcrm.js,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/Zimbra/Zimbra-1.3.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/NPOSL/NPOSL-3.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/OGTSL/OGTSL.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, public[\s-]domain, require(s|d|ment|ments)?, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/ATT/NOTICE.libutf,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/ATT/ATT-Lucent.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/ATT/ATT.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/LPPL/LPPL-1.2.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/LPPL/LPPL-1.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/LPPL/LPPL-1.1.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/LPPL/LPPL-1.3c.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/LPPL/latex.4ht,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/UnclassifiedLicense/ldapbaseauthenticationprovider.inc.php,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bopen source\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/UnclassifiedLicense/IPA.cpp,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bopen source\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/UnclassifiedLicense/LICENSE.fatfs,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bopen source\b, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/UnclassifiedLicense/port.h,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/UnclassifiedLicense/license.all.html.in,True,"Matched keywords: \bagreement\b, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), intellectual propert(y|ies)?, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/UnclassifiedLicense/isc.h,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/UnclassifiedLicense/config.isc,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bsource code\b, \bterms and conditions\b" +NomosTestfiles/UnclassifiedLicense/net_phy_def.h,True,"Matched keywords: as[\s-]is, \bcopyright\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, \bsource code\b" +NomosTestfiles/UnclassifiedLicense/eula.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, require(s|d|ment|ments)?, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/UnclassifiedLicense/cygwinRef.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/UnclassifiedLicense/README.win64.txt,True,"Matched keywords: licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/MirOS/MirOS.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MirOS/MirOS_2.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/PDDL/PDDL-1.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, public[\s-]domain, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/OpenSSL/syslog-ng-ctl.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/OpenSSL/OpenSSL_ref_a.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/OpenSSL/OpenSSL_ref_c.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/OpenSSL/OpenSSL_ref_b.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/OpenSSL/OpenSSL_ref_f.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/OpenSSL/OpenSSL_ref_e.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, public[\s-]domain, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/OpenSSL/OpenSSL_ref_d.txt,True,"Matched keywords: licen[cs](e|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/OpenSSL/gost89.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/OpenSSL/openssl.spec,True,"Matched keywords: licen[cs](e|ing)?, \bopen source\b, require(s|d|ment|ments)?" +NomosTestfiles/OpenSSL/OpenSSL_Nokia.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/OpenSSL/OpenSSL.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/OpenSSL/SSL_CTX_set_psk_client_callback.pod,True,"Matched keywords: as[\s-]is, \bcopyright\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/OpenSSL/SSLeay.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/SMLNJ/assoc.java,True,"Matched keywords: \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/gSOAP/wsdx.h,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/gSOAP/gSOAP-1.3b.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/IJG/license.html,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, public[\s-]domain, require(s|d|ment|ments)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/IJG/IJG_ref_b.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/IJG/header_netpbm.README_JPEG,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b" +NomosTestfiles/IJG/IJG_ref_a.txt,False, +NomosTestfiles/IJG/jpeg.LICENSE,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Qmail/Qmail.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/RCSL/RCSL_v3.0_a.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/JISP/Maze.h,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, mis[- ]?represent, \bpermission\b, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CCLRC/cdunifpp_check.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/Authorship-inference/setup,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/XFree86/XFree86-1.1.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/XFree86/license_XFree86.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/XFree86/LICENSE.XFree86.1.0,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/CPOL/CPOL.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, public[\s-]domain, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Artistic/Hero.java,True,"Matched keywords: as[\s-]is, \bcopyright\b, licen[cs](e|ing)?, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Artistic/Artistic-1.0-Perl.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, public[\s-]domain, require(s|d|ment|ments)?, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Artistic/a2p.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/Artistic/Artistic-2.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Artistic/macos_main.cpp,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), mis[- ]?represent, \bpermission\b, \bsubject to\b" +NomosTestfiles/Artistic/Artistic-2.0_ref_a.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/Artistic/Artistic-1.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, public[\s-]domain, require(s|d|ment|ments)?, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Artistic/Artistic-1.0-cl8.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, public[\s-]domain, require(s|d|ment|ments)?, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/ClArtistic/ClArtistic.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, public[\s-]domain, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/ClArtistic/SaveAbleCollection.cpp,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/ACE/ACE-copying.html,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsource code\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/FSF/FSF-and-GPL.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/FSF/canonicalize-lgpl.m4,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bpermission\b" +NomosTestfiles/FSF/progtest.m4,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, public[\s-]domain" +NomosTestfiles/FSF/aclocal.m4,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/JasPer/JasPer-2.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Apache/Apache-2.0_d.txt,True,"Matched keywords: licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Apache/Subject.java-Apache-2.0,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, public[\s-]domain, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/Apache/Apache-1.1-style.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Apache/Android_SDK_license.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Apache/Apache-2.0_e.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/Apache/Apache-2.0_g.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Apache/Apache-2.0_f.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/Apache/Apache-1.1_b.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Apache/Apache-2.0_b.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/Apache/Apache-2.0_c.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Apache/Apache-1.1_a.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Apache/Apache-2.0_a.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Apache/Subject.java,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, public[\s-]domain, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/Apache/Apache-1.0.c,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, public[\s-]domain, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?, \bSPDX-License-Identifier\b" +NomosTestfiles/Apache/etcd.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Apache/tsproxy.readme,True,"Matched keywords: licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/Apache/x.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/Apache/License-2.0.Apache_v2.0,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Apache/NOTICE.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Apache/install-windows-quirks.xml.inc,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/Apache/condor_blkng_full_disk_io.h,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/Apache/LGPL-3.0+_or_Apache.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/Apache/Apache-1.1.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, public[\s-]domain, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Apache/Apache-1.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, \bpermission\b, public[\s-]domain, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Apache/Apache-2.0.xml,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bopen source\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/Apache/Apache-2.0_m.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Apache/Apache-2.0_l.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Apache/DomainList.java,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, public[\s-]domain, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/Apache/Apache-2.0_n.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bsource code\b, \bsubject to\b, \bterms and conditions\b" +NomosTestfiles/Apache/license.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Apache/Apache-v1.1,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, public[\s-]domain, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Apache/Apache-2.0_k.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Apache/Apache-2.0_j.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Apache/Apache-2.0_h.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Apache/abs_s.h,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/Apache/Apache-2.0-nourl.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Apache/Apache-2.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Apache/Apache-2.0_i.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/ECL/qt_sbtl_embedder.h,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/ECL/ECL-1.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/ECL/ECL-2.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/ECL/bufftest.c,True,"Matched keywords: \bagreement\b, \bcopyright\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Ruby/Ruby.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, public[\s-]domain, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Ruby/rdoc,True,"Matched keywords: \bcopyright\b, require(s|d|ment|ments)?, \bsame terms\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bException\b" +NomosTestfiles/NGPL/NGPL.txt,True,"Matched keywords: \bagreement\b, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/Perl_ref3,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bsame terms\b" +NomosTestfiles/Dual-license/Perl_ref4,True,"Matched keywords: \bcopyright\b, \bsame terms\b" +NomosTestfiles/Dual-license/Apache-2.0_or_GPL-2.0.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Dual-license/xpmr.h,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/Base64Code.java,True,"Matched keywords: as[\s-]is, \bcopyright\b, licen[cs](e|ing)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/Oracle+Sun_oracle_index.html,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bopen source\b, require(s|d|ment|ments)?, \bsource code\b" +NomosTestfiles/Dual-license/Apache-2.0_or_LGPL-2.1+.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bopen source\b, \bsource code\b" +NomosTestfiles/Dual-license/Perl_ref5,True,"Matched keywords: \bcopyright\b, public[\s-]domain, \bsame terms\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/Perl_ref2,True,"Matched keywords: acknowledg(e|ement|ements)?, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bsame terms\b" +NomosTestfiles/Dual-license/LGPL-2.1_or_MPL-1.0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/postgres_lic.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Dual-license/AFL-2.1_or_BSD.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Dual-license/GPL-2.0+_or_BSD-3-Clause_2.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/Dual-license/GPL-2.0+_or_LGPL-2.0+.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b" +NomosTestfiles/Dual-license/LGPL-3.0+_not_LGPL-3.0_or_BSD.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Dual-license/7-zip_GPL-2.1+-unRARrestriction,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/GPL-2.0+_or_BSD-3-Clause_1.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Dual-license/Artistic-1.0+GPL_META.yml,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/Dual-license/bind.cpp,True,"Matched keywords: licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Dual-license/CRYPTOGAMS.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/LGPL-2.1_or_MPL-1.1_and_MIT.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b" +NomosTestfiles/Dual-license/Qt.Commercial_OR_BSD-3-Clause.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/GPL-2.0_or_BSD-3-Clause_1.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/LGPL_or_GPL.txt,True,Matched keywords: \bcopyright\b +NomosTestfiles/Dual-license/EPL-1.0_or_MPL-2.0_2.txt,True,"Matched keywords: \bagreement\b, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/Dual-license/Sleepycat_or_Commercial.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, require(s|d|ment|ments)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/Apache-2.0_or_CC0-1.0.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/Dual-license/GPL-2.0_or_LGPL-2.0.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/Dual-license/EPL-2.0_or_GPL-2.0_or_LGPL-2.1.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/GPL-2.0_or_BSD-3-Clause_2.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/EPL-1.0_or_MPL-2.0_1.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/Dual-license/smb.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Dual-license/GPL-2.0_or_BSD-3-Clause_3.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/Dual-license/SPL-1.0_or_LGPL.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, \bsubject to\b" +NomosTestfiles/Dual-license/FTL_OR_GPL-2.0.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/Dual-license/MIT_or_Python.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bopen source\b" +NomosTestfiles/Dual-license/respond.js,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/Dual-license/sarissa.js,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/Dual-license/api.css_GPL_MIT,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/Dual-license/BSD-3-Clause_or_GPL-2.0+.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/lzf.c,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, require(s|d|ment|ments)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/aes-586.pl,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Dual-license/ashmem.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bopen source\b" +NomosTestfiles/Dual-license/BSD-2-Clause_or_GPL-2.0.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/jquery.ui.core.js,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Dual-license/BSD-style_or_LGPL-2.1+.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b" +NomosTestfiles/Dual-license/Perl_ref1,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/Dual-license/aes.h,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/Apache-2.0_or_BSD-3-Clause.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/fuse_kernel.h,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/qhttp.cpp,True,"Matched keywords: \bagreement\b, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bException\b" +NomosTestfiles/Dual-license/Perl_README,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/MIT_or_GPL-3.0.txt,True,"Matched keywords: licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Dual-license/Identity_daemon.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?" +NomosTestfiles/Dual-license/asn1.c,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Dual-license/Apache-2.0_or_LGPL-3.0+.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Dual-license/Apache-2.0_or_CC-BY-4.0.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Dual-license/CDDL_or_GPL-2.0-with-classpath-exception.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, \bException\b" +NomosTestfiles/Dual-license/ClearBSD_or_GPL-2.0+.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/Dual-license/mscc.c,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/Dual-license/004.phpt.GPLv2+-PHP,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/GPL-2.0_or_BSD.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/plc.h,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/GPL-2.0_OR_RHeCos-1.1.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/MODULE_LICENSE_BSD_GPL,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Dual-license/GPL-2.0+_or_MIT.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Dual-license/Apache-2.0_or_EPL-1.0.txt,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?" +NomosTestfiles/Dual-license/LGPL-2.1_or_MPL-1.1_1.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/mainpage.doxygen,True,"Matched keywords: licen[cs](e|ing)?, \bsource code\b" +NomosTestfiles/Dual-license/BSD_or_GPL-2.0_2.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Dual-license/GPL-2.0_or_BSD-2-Clause.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/H2_License_1.0.rtf,True,"Matched keywords: \bagreement\b, as[\s-]is, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Dual-license/BSL-1.0_or_MIT.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Dual-license/GPL-2.0_or_Python-2.2.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/Dual-license/LGPL-2.1_or_MPL-1.1_2.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsubject to\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/BSD_or_GPL-2.0_1.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/Dual-license/README.hostapd,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/Qt.Commercial_OR_BSD-2-Clause.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/GPL-2.0_or_X11.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/Dual-license/LGPL-3.0_or_BSD,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/Dual-license/aclocal.m4,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, licen[cs](e|ing)?, \bpermission\b, public[\s-]domain, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, \bException\b" +NomosTestfiles/Dual-license/BSD-style_or_GPL-2.0+.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/GPL-2.0_or_Linux-OpenIB_1.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/GPL-2.0_or_Linux-OpenIB_3.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, source (and|or)? ?binary, \bsource code\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/H2_ExhibitA.rtf,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/Dual-license/GPL-2.0_or_Linux-OpenIB_2.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/Dual-license/AFL-2.1_or_GPL-2.0.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bfree software\b, \bgrant\b, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/Zeus/Zeus.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, [^e]liabilit(y|ies)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/ICU/ICU-license,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/ICU/ICU_ref_b.txt,True,"Matched keywords: \bcopyright\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/ICU/ICU_ref_a.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/ICU/ICU-license-2.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/ICU/ICU-license-3.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MIT/MIT-ref_j.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/MIT/MIT-ref_k.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/MIT/MIT-ref_i.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/MIT/MIT-feh.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MIT/ge_console.h,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?" +NomosTestfiles/MIT/MIT-ref_h.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/MIT/perl-Mozilla-LDAP.spec,True,"Matched keywords: licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/MIT/Netizen.cc,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MIT/MIT_3.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MIT/string.ts,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bsource code\b" +NomosTestfiles/MIT/MIT_2.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MIT/crcalc.copyright,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MIT/WOL.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MIT/watch.c,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, [^e]liabilit(y|ies)?, \bpermission\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/MIT/MITNFA.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MIT/MIT-style_b.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, \bsource code\b" +NomosTestfiles/MIT/MIT-style_a.txt,True,"Matched keywords: \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?), \bException\b" +NomosTestfiles/MIT/NIST-disclaimer.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing)" +NomosTestfiles/MIT/MIT-0.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MIT/edit.c,True,"Matched keywords: as[\s-]is, \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MIT/BroadcomMIT,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MIT/bsdormit.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+)" +NomosTestfiles/MIT/privates.h,True,"Matched keywords: as[\s-]is, \bdamages\b, [^e]liabilit(y|ies)?, require(s|d|ment|ments)?, warrant(y|ies|ed|ing)?" +NomosTestfiles/MIT/MIT-enna.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MIT/bsdandmit.txt,False, +NomosTestfiles/MIT/MIT.json,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/MIT/net.c,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, [^e]liabilit(y|ies)?, \bpermission\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/MIT/MIT.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MIT/MIT-ref_c.txt,True,"Matched keywords: \bcopyright\b, licen[cs](e|ing)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b" +NomosTestfiles/MIT/MIT-advertising.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MIT/MIT-ref_b.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MIT/KhronosMIT,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MIT/MIT-ref_a.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/MIT/MIT-ref_e.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/MIT/MIT-ref_d.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/MIT/MIT-ref_f.txt,True,Matched keywords: licen[cs](e|ing)? +NomosTestfiles/MIT/ImaginationMIT,True,"Matched keywords: \bcopyright\b, redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, \bpermission\b, \bsubject to\b, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MIT/MIT_and_BSD-3-Clause.txt,True,"Matched keywords: as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpermission\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), source (and|or)? ?binary, \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/MIT/MIT-ref_g.txt,True,"Matched keywords: redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), licen[cs](e|ing)?, require(s|d|ment|ments)?" +NomosTestfiles/NPL/NPL-1.1,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/NPL/NPL-1.0,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Sendmail/Sendmail-8.23.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, \bsame terms\b, source (and|or)? ?binary, \bsource code\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Sendmail/snpf.c,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, mis[- ]?represent, \bopen source\b, \bpermission\b, \bsame terms\b, source (and|or)? ?binary, \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" +NomosTestfiles/Sendmail/Sendmail,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpermission\b, \bsame terms\b, source (and|or)? ?binary, \bsource code\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/Watcom/Watcom-1.0.txt,True,"Matched keywords: acknowledg(e|ement|ements)?, \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, intellectual propert(y|ies)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, require(s|d|ment|ments)?, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?, without (fee|restrict(ion|ed)?|limit(ation|ed)?)" +NomosTestfiles/NASA/NASA-1.3.txt,True,"Matched keywords: \bagreement\b, as[\s-]is, \bcopyright\b, \bdamages\b, deriv(e|ed|ation|ative|es|ing), redistribut(e|ion|able|ing)?|distribut(e|ion|able|ing), \bgrant\b, indemnif(i|y|ied|ication|ying)?, [^e]liabilit(y|ies)?, licen[cs](e|ing)?, \bopen source\b, \bpatent\b, \bpermission\b, require(s|d|ment|ments)?, \bsame terms\b, see[\s:-]*(https?://|file://|www\.|[A-Za-z0-9._/-]+), \bsource code\b, \bsubject to\b, \bterms and conditions\b, warrant(y|ies|ed|ing)?" diff --git a/atarashi/license/licenseDownloader.py b/atarashi/license/licenseDownloader.py index ad3f0d5a..480b5780 100644 --- a/atarashi/license/licenseDownloader.py +++ b/atarashi/license/licenseDownloader.py @@ -48,7 +48,7 @@ def _get_http_pool(): Ignoring the SSL verification as to avoid errors and the source is trusted. :return: HTTP Pool Manager """ - proxy_val = os.environ.get('http_proxy', False) + proxy_val = os.environ.get('http_proxy') if proxy_val: return urllib3.ProxyManager(proxy_val, cert_reqs='CERT_NONE', assert_hostname=False) @@ -72,7 +72,26 @@ def _download_json(url): return json.loads(response.data.decode('utf-8')) @staticmethod - def download_license(threads=os.cpu_count(), force=False): + def get_num_threads(requested_threads): + """ + Determine optimal number of threads to use based on system's CPU count and requested value. + + :param requested_threads: User-specified number of threads (can be None) + :return: Final number of threads to use + """ + cpu_count = os.cpu_count() + if requested_threads is None: + num_threads = cpu_count or 1 + else: + num_threads = requested_threads + + if cpu_count is not None: + num_threads = min(num_threads, cpu_count * 2) + + return num_threads + + @staticmethod + def download_license(threads=os.cpu_count(), force=False, to_csv=True): """ Downloads license data from spdx.org. @@ -84,7 +103,8 @@ def download_license(threads=os.cpu_count(), force=False): :param threads: Number of CPU to be used for downloading. This is done to speed up the process :param force: Bool value if licenses needs to be downloaded forcefully - :return: File path if success, None otherwise. + :param to_csv: Bool value to either save the data to a csv or return a list of shortnames + :return: File path if to_csv is True, list of shortnames if to_csv is False, None otherwise. """ jsonData = LicenseDownloader._download_json('https://spdx.org/licenses/licenses.json') license_exceptions = LicenseDownloader._download_json('https://spdx.org/licenses/exceptions.json').get('exceptions') @@ -98,20 +118,24 @@ def download_license(threads=os.cpu_count(), force=False): directory = os.path.abspath(directory + "/../data/licenses") Path(directory).mkdir(exist_ok=True) filePath = Path(os.path.abspath(directory + "/" + fileName)) - if filePath.is_file(): - if (force): + + if filePath.is_file() and to_csv: + if force: filePath.unlink() else: return str(filePath) + licenseDataFrame = pd.DataFrame(columns=csvColumns) - cpuCount = os.cpu_count() - threads = cpuCount * 2 if threads > cpuCount * 2 else threads - pool = ThreadPool(threads) + num_threads = LicenseDownloader.get_num_threads(threads) + + pool = ThreadPool(num_threads) + for row in tqdm(pool.imap_unordered( LicenseDownloader.fetch_exceptional_license, license_exceptions), desc="Exceptions processed", total=len(license_exceptions), unit="exception"): licenseDataFrame = pd.concat([licenseDataFrame, row], sort=False, ignore_index=True) + for row in tqdm(pool.imap_unordered( LicenseDownloader.fetch_license, licenses), desc="Licenses processed", total=len(licenses), @@ -121,11 +145,92 @@ def download_license(threads=os.cpu_count(), force=False): licenseDataFrame = licenseDataFrame.drop_duplicates(subset='shortname') licenseDataFrame = licenseDataFrame.sort_values('deprecated').drop_duplicates(subset='fullname', keep='first') licenseDataFrame = licenseDataFrame.sort_values('shortname').reset_index(drop=True) - licenseDataFrame.to_csv(str(filePath), index=False, encoding='utf-8') - return str(filePath) + + if to_csv: + licenseDataFrame.to_csv(str(filePath), index=False, encoding='utf-8') + return str(filePath) + else: + return licenseDataFrame['shortname'].tolist() else: return None + @staticmethod + def _extract_fossology_names(entry): + """ + Helper function to extract license shortname and fullname from an entry. + Returns a list of non-empty cleaned strings. + """ + terms = [] + shortname = entry.get("rf_shortname") + fullname = entry.get("rf_fullname") + if shortname: + terms.append(shortname.strip()) + if fullname: + terms.append(fullname.strip()) + return terms + + @staticmethod + def download_fossology_licenses(threads=os.cpu_count()): + """ + Downloads the license references used by FOSSology from their GitHub repo. + + :return: A list of license shortnames (refs) from FOSSology. + """ + url = "https://raw.githubusercontent.com/fossology/fossology/master/install/db/licenseRef.json" + try: + data = LicenseDownloader._download_json(url) + num_threads = LicenseDownloader.get_num_threads(threads) + + license_names = [] + with ThreadPool(num_threads) as pool: + results = list(tqdm( + pool.imap(LicenseDownloader._extract_fossology_names, data), + total=len(data), + desc="FOSSology licenses processed", + unit="license" + )) + + for sublist in results: + for term in sublist: + license_names.append(term) + + return license_names + + except Exception as e: + print(f"Failed to download FOSSology license references: {e}") + return [] + + @staticmethod + def generate_combined_license_refs(threads=os.cpu_count()): + """ + Downloads license references from SPDX and FOSSology, combines them, + and saves them to a single CSV file. + """ + print("Downloading SPDX and FOSSology license references...") + spdx_licenses = LicenseDownloader.download_license(threads=threads, to_csv=False) + fossology_licenses = LicenseDownloader.download_fossology_licenses(threads=threads) + + if spdx_licenses is None: + spdx_licenses = [] + + combined_set = set(spdx_licenses) | set(fossology_licenses) + + # Remove any empty strings that might have crept in + combined_set.discard('') + combined_set.discard(None) + combined_list = sorted(list(combined_set)) + + df = pd.DataFrame(combined_list, columns=['key']) + + directory = os.path.dirname(os.path.abspath(__file__)) + output_path = os.path.abspath(os.path.join(directory, "..", "data", "licenses", "license_refs_combined.csv")) + + Path(os.path.dirname(output_path)).mkdir(exist_ok=True) + + df.to_csv(output_path, index=False, encoding='utf-8') + print(f"Combined license references saved to {output_path}") + return output_path + @staticmethod def fetch_license(license): ''' @@ -145,7 +250,7 @@ def fetch_license(license): if 'There is no standard license header for the license' in licenseDict['license_header']: licenseDict['license_header'] = '' - return pd.DataFrame(licenseDict, columns=csvColumns) + return pd.DataFrame(licenseDict, columns=pd.Index(csvColumns)) @staticmethod def fetch_exceptional_license(license): @@ -165,7 +270,7 @@ def fetch_exceptional_license(license): licenseDict['license_header'] = licenseData.get('standardLicenseHeader', '') if 'There is no standard license header for the license' in licenseDict['license_header']: licenseDict['license_header'] = '' - return pd.DataFrame(licenseDict, columns=csvColumns) + return pd.DataFrame(licenseDict, columns=pd.Index(csvColumns)) if __name__ == "__main__": @@ -175,7 +280,16 @@ def fetch_exceptional_license(license): help="No of threads to use for download. Default: CPU count") parser.add_argument("-f", "--force", action="store_true", help="Force download regardless of existing list") + parser.add_argument("--no-csv", action="store_true", + help="If set, does not write output to CSV and returns list of license shortnames") + parser.add_argument("--generate-refs", action="store_true", + help="Generate the combined license references file.") args = parser.parse_args() threads = args.threads force = args.force - print(LicenseDownloader.download_license(threads, force)) + to_csv = not args.no_csv + + if args.generate_refs: + LicenseDownloader.generate_combined_license_refs(threads=threads) + else: + print(LicenseDownloader.download_license(threads, force, to_csv))