From 1a19e4b71639ae2ed3be5a4b76979c365878c132 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Fri, 12 Mar 2021 16:14:49 -0800 Subject: [PATCH] field `isFsfLibre` was removed from license-data --- generate.sh | 23 +- src/lib.zig | 920 ++++++++++++++++++++++++++-------------------------- 2 files changed, 460 insertions(+), 483 deletions(-) diff --git a/generate.sh b/generate.sh index 7b399e5971208104921cbc017d6090c0cb9d5b2e..a8048e09cb97539f1d70fd473e469e1294c1929f 100755 --- a/generate.sh +++ b/generate.sh @@ -29,7 +29,6 @@ do_print "//" do_print do_print "pub const License = struct {" print_tab; do_print "isOsiApproved: bool," -print_tab; do_print "isFsfLibre: bool," print_tab; do_print "url: []const u8," do_print "};" @@ -38,12 +37,12 @@ do_print "};" echo "spdx:" do_print do_print "pub const spdx = struct {" -list=$(do_filter '.licenses | sort_by(.licenseId)[] | { licenseId, isOsiApproved, isFsfLibre, url:.seeAlso[0] }') +list=$(do_filter '.licenses | sort_by(.licenseId)[] | { licenseId, isOsiApproved, url:.seeAlso[0] }') for lic in $list do lic_id=$(sub_filter $lic '.licenseId') - lic_obj=$(sub_filter $lic '{ isOsiApproved, isFsfLibre, url }') + lic_obj=$(sub_filter $lic '{ isOsiApproved, url }') lic_obj=${lic_obj//\":/ = } lic_obj=${lic_obj//,\"/, .} lic_obj=${lic_obj//\{\"/\{\.} @@ -73,21 +72,3 @@ do done do_print "};" echo - -# -# -echo "fsf:" -do_print -do_print "pub const fsf = &[_][]const u8{" -for lic in $list -do - lic_id=$(sub_filter $lic '.licenseId') - valid=$(sub_filter $lic '.isFsfLibre') - if [[ $valid == "true" ]] - then - print_tab; do_print "\"$lic_id\"," - fi - printf "|" -done -do_print "};" -echo diff --git a/src/lib.zig b/src/lib.zig index 127eae91e4075375ee7b7dbe60506a55be1fa313..acc1f5ee6f06e61528e7f4bed2490030f7ec58b8 100644 --- a/src/lib.zig +++ b/src/lib.zig @@ -5,469 +5,468 @@ pub const License = struct { isOsiApproved: bool, - isFsfLibre: bool, url: []const u8, }; pub const spdx = struct { - pub const @"0BSD" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://landley.net/toybox/license.html"}; - pub const @"AAL" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/attribution"}; - pub const @"ADSL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense"}; - pub const @"AFL-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://opensource.linux-mirror.org/licenses/afl-1.1.txt"}; - pub const @"AFL-1.2" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://opensource.linux-mirror.org/licenses/afl-1.2.txt"}; - pub const @"AFL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://wayback.archive.org/web/20060924134533/http://www.opensource.org/licenses/afl-2.0.txt"}; - pub const @"AFL-2.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://opensource.linux-mirror.org/licenses/afl-2.1.txt"}; - pub const @"AFL-3.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.rosenlaw.com/AFL3.0.htm"}; - pub const @"AGPL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.affero.org/oagpl.html"}; - pub const @"AGPL-1.0-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.affero.org/oagpl.html"}; - pub const @"AGPL-1.0-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.affero.org/oagpl.html"}; - pub const @"AGPL-3.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/agpl.txt"}; - pub const @"AGPL-3.0-only" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/agpl.txt"}; - pub const @"AGPL-3.0-or-later" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/agpl.txt"}; - pub const @"AMDPLPA" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License"}; - pub const @"AML" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License"}; - pub const @"AMPAS" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD"}; - pub const @"ANTLR-PD" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.antlr2.org/license.html"}; - pub const @"ANTLR-PD-fallback" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.antlr2.org/license.html"}; - pub const @"APAFML" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM"}; - pub const @"APL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/APL-1.0"}; - pub const @"APSL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0"}; - pub const @"APSL-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE"}; - pub const @"APSL-1.2" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.samurajdata.se/opensource/mirror/licenses/apsl.php"}; - pub const @"APSL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.opensource.apple.com/license/apsl/"}; - pub const @"Abstyles" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Abstyles"}; - pub const @"Adobe-2006" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/AdobeLicense"}; - pub const @"Adobe-Glyph" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph"}; - pub const @"Afmparse" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Afmparse"}; - pub const @"Aladdin" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm"}; - pub const @"Apache-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.apache.org/licenses/LICENSE-1.0"}; - pub const @"Apache-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://apache.org/licenses/LICENSE-1.1"}; - pub const @"Apache-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.apache.org/licenses/LICENSE-2.0"}; - pub const @"Artistic-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Artistic-1.0"}; - pub const @"Artistic-1.0-Perl" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://dev.perl.org/licenses/artistic.html"}; - pub const @"Artistic-1.0-cl8" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Artistic-1.0"}; - pub const @"Artistic-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.perlfoundation.org/artistic_license_2_0"}; - pub const @"BSD-1-Clause" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823"}; - pub const @"BSD-2-Clause" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/BSD-2-Clause"}; - pub const @"BSD-2-Clause-FreeBSD" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.freebsd.org/copyright/freebsd-license.html"}; - pub const @"BSD-2-Clause-NetBSD" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.netbsd.org/about/redistribution.html#default"}; - pub const @"BSD-2-Clause-Patent" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/BSDplusPatent"}; - pub const @"BSD-2-Clause-Views" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.freebsd.org/copyright/freebsd-license.html"}; - pub const @"BSD-3-Clause" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/BSD-3-Clause"}; - pub const @"BSD-3-Clause-Attribution" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution"}; - pub const @"BSD-3-Clause-Clear" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://labs.metacarta.com/license-explanation.html#license"}; - pub const @"BSD-3-Clause-LBNL" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/LBNLBSD"}; - pub const @"BSD-3-Clause-Modification" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing:BSD#Modification_Variant"}; - pub const @"BSD-3-Clause-No-Nuclear-License" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://download.oracle.com/otn-pub/java/licenses/bsd.txt?AuthParam=1467140197_43d516ce1776bd08a58235a7785be1cc"}; - pub const @"BSD-3-Clause-No-Nuclear-License-2014" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://java.net/projects/javaeetutorial/pages/BerkeleyLicense"}; - pub const @"BSD-3-Clause-No-Nuclear-Warranty" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt"}; - pub const @"BSD-3-Clause-Open-MPI" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.open-mpi.org/community/license.php"}; - pub const @"BSD-4-Clause" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://directory.fsf.org/wiki/License:BSD_4Clause"}; - pub const @"BSD-4-Clause-Shortened" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://metadata.ftp-master.debian.org/changelogs//main/a/arpwatch/arpwatch_2.1a15-7_copyright"}; - pub const @"BSD-4-Clause-UC" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.freebsd.org/copyright/license.html"}; - pub const @"BSD-Protection" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License"}; - pub const @"BSD-Source-Code" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/robbiehanson/CocoaHTTPServer/blob/master/LICENSE.txt"}; - pub const @"BSL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.boost.org/LICENSE_1_0.txt"}; - pub const @"BUSL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://mariadb.com/bsl11/"}; - pub const @"Bahyph" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Bahyph"}; - pub const @"Barr" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Barr"}; - pub const @"Beerware" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Beerware"}; - pub const @"BitTorrent-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1=1.1&r2=1.1.1.1&diff_format=s"}; - pub const @"BitTorrent-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://directory.fsf.org/wiki/License:BitTorrentOSL1.1"}; - pub const @"BlueOak-1.0.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://blueoakcouncil.org/license/1.0.0"}; - pub const @"Borceux" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Borceux"}; - pub const @"C-UDA-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/microsoft/Computational-Use-of-Data-Agreement/blob/master/C-UDA-1.0.md"}; - pub const @"CAL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://cryptographicautonomylicense.com/license-text.html"}; - pub const @"CAL-1.0-Combined-Work-Exception" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://cryptographicautonomylicense.com/license-text.html"}; - pub const @"CATOSL-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/CATOSL-1.1"}; - pub const @"CC-BY-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by/1.0/legalcode"}; - pub const @"CC-BY-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by/2.0/legalcode"}; - pub const @"CC-BY-2.5" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by/2.5/legalcode"}; - pub const @"CC-BY-3.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by/3.0/legalcode"}; - pub const @"CC-BY-3.0-AT" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by/3.0/at/legalcode"}; - pub const @"CC-BY-3.0-US" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by/3.0/us/legalcode"}; - pub const @"CC-BY-4.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by/4.0/legalcode"}; - pub const @"CC-BY-NC-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc/1.0/legalcode"}; - pub const @"CC-BY-NC-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc/2.0/legalcode"}; - pub const @"CC-BY-NC-2.5" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc/2.5/legalcode"}; - pub const @"CC-BY-NC-3.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc/3.0/legalcode"}; - pub const @"CC-BY-NC-4.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc/4.0/legalcode"}; - pub const @"CC-BY-NC-ND-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode"}; - pub const @"CC-BY-NC-ND-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode"}; - pub const @"CC-BY-NC-ND-2.5" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode"}; - pub const @"CC-BY-NC-ND-3.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode"}; - pub const @"CC-BY-NC-ND-3.0-IGO" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode"}; - pub const @"CC-BY-NC-ND-4.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode"}; - pub const @"CC-BY-NC-SA-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode"}; - pub const @"CC-BY-NC-SA-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode"}; - pub const @"CC-BY-NC-SA-2.5" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode"}; - pub const @"CC-BY-NC-SA-3.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode"}; - pub const @"CC-BY-NC-SA-4.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode"}; - pub const @"CC-BY-ND-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nd/1.0/legalcode"}; - pub const @"CC-BY-ND-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nd/2.0/legalcode"}; - pub const @"CC-BY-ND-2.5" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nd/2.5/legalcode"}; - pub const @"CC-BY-ND-3.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nd/3.0/legalcode"}; - pub const @"CC-BY-ND-4.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-nd/4.0/legalcode"}; - pub const @"CC-BY-SA-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-sa/1.0/legalcode"}; - pub const @"CC-BY-SA-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-sa/2.0/legalcode"}; - pub const @"CC-BY-SA-2.0-UK" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-sa/2.0/uk/legalcode"}; - pub const @"CC-BY-SA-2.1-JP" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-sa/2.1/jp/legalcode"}; - pub const @"CC-BY-SA-2.5" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-sa/2.5/legalcode"}; - pub const @"CC-BY-SA-3.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-sa/3.0/legalcode"}; - pub const @"CC-BY-SA-3.0-AT" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-sa/3.0/at/legalcode"}; - pub const @"CC-BY-SA-4.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/by-sa/4.0/legalcode"}; - pub const @"CC-PDDC" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/licenses/publicdomain/"}; - pub const @"CC0-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}; - pub const @"CDDL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/cddl1"}; - pub const @"CDDL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://glassfish.java.net/public/CDDL+GPL_1_1.html"}; - pub const @"CDLA-Permissive-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://cdla.io/permissive-1-0"}; - pub const @"CDLA-Sharing-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://cdla.io/sharing-1-0"}; - pub const @"CECILL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html"}; - pub const @"CECILL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html"}; - pub const @"CECILL-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.cecill.info/licences/Licence_CeCILL_V2-en.html"}; - pub const @"CECILL-2.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html"}; - pub const @"CECILL-B" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html"}; - pub const @"CECILL-C" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html"}; - pub const @"CERN-OHL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1"}; - pub const @"CERN-OHL-1.2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2"}; - pub const @"CERN-OHL-P-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2"}; - pub const @"CERN-OHL-S-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2"}; - pub const @"CERN-OHL-W-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2"}; - pub const @"CNRI-Jython" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.jython.org/license.html"}; - pub const @"CNRI-Python" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/CNRI-Python"}; - pub const @"CNRI-Python-GPL-Compatible" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.python.org/download/releases/1.6.1/download_win/"}; - pub const @"CPAL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/CPAL-1.0"}; - pub const @"CPL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/CPL-1.0"}; - pub const @"CPOL-1.02" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.codeproject.com/info/cpol10.aspx"}; - pub const @"CUA-OPL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/CUA-OPL-1.0"}; - pub const @"Caldera" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.lemis.com/grog/UNIX/ancient-source-all.pdf"}; - pub const @"ClArtistic" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/"}; - pub const @"Condor-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://research.cs.wisc.edu/condor/license.html#condor"}; - pub const @"Crossword" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Crossword"}; - pub const @"CrystalStacker" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker"}; - pub const @"Cube" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Cube"}; - pub const @"D-FSL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.dipp.nrw.de/d-fsl/lizenzen/"}; - pub const @"DOC" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.cs.wustl.edu/~schmidt/ACE-copying.html"}; - pub const @"DRL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md"}; - pub const @"DSDP" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/DSDP"}; - pub const @"Dotseqn" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Dotseqn"}; - pub const @"ECL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/ECL-1.0"}; - pub const @"ECL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/ECL-2.0"}; - pub const @"EFL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.eiffel-nice.org/license/forum.txt"}; - pub const @"EFL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.eiffel-nice.org/license/eiffel-forum-license-2.html"}; - pub const @"EPICS" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://epics.anl.gov/license/open.php"}; - pub const @"EPL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.eclipse.org/legal/epl-v10.html"}; - pub const @"EPL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.eclipse.org/legal/epl-2.0"}; - pub const @"EUDatagrid" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://eu-datagrid.web.cern.ch/eu-datagrid/license.html"}; - pub const @"EUPL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://ec.europa.eu/idabc/en/document/7330.html"}; - pub const @"EUPL-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://joinup.ec.europa.eu/software/page/eupl/licence-eupl"}; - pub const @"EUPL-1.2" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://joinup.ec.europa.eu/page/eupl-text-11-12"}; - pub const @"Entessa" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Entessa"}; - pub const @"ErlPL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.erlang.org/EPLICENSE"}; - pub const @"Eurosym" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Eurosym"}; - pub const @"FSFAP" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html"}; - pub const @"FSFUL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License"}; - pub const @"FSFULLR" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant"}; - pub const @"FTL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://freetype.fis.uniroma2.it/FTL.TXT"}; - pub const @"Fair" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://fairlicense.org/"}; - pub const @"Frameworx-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Frameworx-1.0"}; - pub const @"FreeBSD-DOC" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.freebsd.org/copyright/freebsd-doc-license/"}; - pub const @"FreeImage" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://freeimage.sourceforge.net/freeimage-license.txt"}; - pub const @"GD" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://libgd.github.io/manuals/2.3.0/files/license-txt.html"}; - pub const @"GFDL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"}; - pub const @"GFDL-1.1-invariants-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"}; - pub const @"GFDL-1.1-invariants-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"}; - pub const @"GFDL-1.1-no-invariants-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"}; - pub const @"GFDL-1.1-no-invariants-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"}; - pub const @"GFDL-1.1-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"}; - pub const @"GFDL-1.1-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"}; - pub const @"GFDL-1.2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"}; - pub const @"GFDL-1.2-invariants-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"}; - pub const @"GFDL-1.2-invariants-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"}; - pub const @"GFDL-1.2-no-invariants-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"}; - pub const @"GFDL-1.2-no-invariants-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"}; - pub const @"GFDL-1.2-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"}; - pub const @"GFDL-1.2-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"}; - pub const @"GFDL-1.3" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"}; - pub const @"GFDL-1.3-invariants-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"}; - pub const @"GFDL-1.3-invariants-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"}; - pub const @"GFDL-1.3-no-invariants-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"}; - pub const @"GFDL-1.3-no-invariants-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"}; - pub const @"GFDL-1.3-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"}; - pub const @"GFDL-1.3-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"}; - pub const @"GL2PS" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.geuz.org/gl2ps/COPYING.GL2PS"}; - pub const @"GLWTPL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/me-shaon/GLWTPL/commit/da5f6bc734095efbacb442c0b31e33a65b9d6e85"}; - pub const @"GPL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"}; - pub const @"GPL-1.0+" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"}; - pub const @"GPL-1.0-only" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"}; - pub const @"GPL-1.0-or-later" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"}; - pub const @"GPL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"}; - pub const @"GPL-2.0+" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"}; - pub const @"GPL-2.0-only" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"}; - pub const @"GPL-2.0-or-later" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"}; - pub const @"GPL-2.0-with-GCC-exception" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10"}; - pub const @"GPL-2.0-with-autoconf-exception" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://ac-archive.sourceforge.net/doc/copyright.html"}; - pub const @"GPL-2.0-with-bison-exception" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141"}; - pub const @"GPL-2.0-with-classpath-exception" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/software/classpath/license.html"}; - pub const @"GPL-2.0-with-font-exception" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/gpl-faq.html#FontException"}; - pub const @"GPL-3.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/gpl-3.0-standalone.html"}; - pub const @"GPL-3.0+" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/gpl-3.0-standalone.html"}; - pub const @"GPL-3.0-only" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/gpl-3.0-standalone.html"}; - pub const @"GPL-3.0-or-later" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/gpl-3.0-standalone.html"}; - pub const @"GPL-3.0-with-GCC-exception" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/gcc-exception-3.1.html"}; - pub const @"GPL-3.0-with-autoconf-exception" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/autoconf-exception-3.0.html"}; - pub const @"Giftware" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://liballeg.org/license.html#allegro-4-the-giftware-license"}; - pub const @"Glide" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.users.on.net/~triforce/glidexp/COPYING.txt"}; - pub const @"Glulxe" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Glulxe"}; - pub const @"HPND" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/HPND"}; - pub const @"HPND-sell-variant" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h=v4.19"}; - pub const @"HTMLTIDY" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/htacg/tidy-html5/blob/next/README/LICENSE.md"}; - pub const @"HaskellReport" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License"}; - pub const @"Hippocratic-2.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://firstdonoharm.dev/version/2/1/license.html"}; - pub const @"IBM-pibs" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d"}; - pub const @"ICU" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://source.icu-project.org/repos/icu/icu/trunk/license.html"}; - pub const @"IJG" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2"}; - pub const @"IPA" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/IPA"}; - pub const @"IPL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/IPL-1.0"}; - pub const @"ISC" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.isc.org/downloads/software-support-policy/isc-license/"}; - pub const @"ImageMagick" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.imagemagick.org/script/license.php"}; - pub const @"Imlib2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://trac.enlightenment.org/e/browser/trunk/imlib2/COPYING"}; - pub const @"Info-ZIP" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.info-zip.org/license.html"}; - pub const @"Intel" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Intel"}; - pub const @"Intel-ACPI" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement"}; - pub const @"Interbase-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://web.archive.org/web/20060319014854/http://info.borland.com/devsupport/interbase/opensource/IPL.html"}; - pub const @"JPNIC" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://gitlab.isc.org/isc-projects/bind9/blob/master/COPYRIGHT#L366"}; - pub const @"JSON" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.json.org/license.html"}; - pub const @"JasPer-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.ece.uvic.ca/~mdadams/jasper/LICENSE"}; - pub const @"LAL-1.2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://artlibre.org/licence/lal/licence-art-libre-12/"}; - pub const @"LAL-1.3" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://artlibre.org/"}; - pub const @"LGPL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"}; - pub const @"LGPL-2.0+" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"}; - pub const @"LGPL-2.0-only" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"}; - pub const @"LGPL-2.0-or-later" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"}; - pub const @"LGPL-2.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"}; - pub const @"LGPL-2.1+" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"}; - pub const @"LGPL-2.1-only" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"}; - pub const @"LGPL-2.1-or-later" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"}; - pub const @"LGPL-3.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/lgpl-3.0-standalone.html"}; - pub const @"LGPL-3.0+" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/lgpl-3.0-standalone.html"}; - pub const @"LGPL-3.0-only" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/lgpl-3.0-standalone.html"}; - pub const @"LGPL-3.0-or-later" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/lgpl-3.0-standalone.html"}; - pub const @"LGPLLR" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www-igm.univ-mlv.fr/~unitex/lgpllr.html"}; - pub const @"LPL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/LPL-1.0"}; - pub const @"LPL-1.02" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://plan9.bell-labs.com/plan9/license.html"}; - pub const @"LPPL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.latex-project.org/lppl/lppl-1-0.txt"}; - pub const @"LPPL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.latex-project.org/lppl/lppl-1-1.txt"}; - pub const @"LPPL-1.2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.latex-project.org/lppl/lppl-1-2.txt"}; - pub const @"LPPL-1.3a" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.latex-project.org/lppl/lppl-1-3a.txt"}; - pub const @"LPPL-1.3c" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.latex-project.org/lppl/lppl-1-3c.txt"}; - pub const @"Latex2e" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Latex2e"}; - pub const @"Leptonica" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Leptonica"}; - pub const @"LiLiQ-P-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://forge.gouv.qc.ca/licence/fr/liliq-v1-1/"}; - pub const @"LiLiQ-R-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-liliq-r-v1-1/"}; - pub const @"LiLiQ-Rplus-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-forte-liliq-r-v1-1/"}; - pub const @"Libpng" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt"}; - pub const @"Linux-OpenIB" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h"}; - pub const @"MIT" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/MIT"}; - pub const @"MIT-0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://github.com/aws/mit-0"}; - pub const @"MIT-CMU" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style"}; - pub const @"MIT-Modern-Variant" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing:MIT#Modern_Variants"}; - pub const @"MIT-advertising" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising"}; - pub const @"MIT-enna" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT#enna"}; - pub const @"MIT-feh" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT#feh"}; - pub const @"MIT-open-group" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://gitlab.freedesktop.org/xorg/app/iceauth/-/blob/master/COPYING"}; - pub const @"MITNFA" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/MITNFA"}; - pub const @"MPL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.mozilla.org/MPL/MPL-1.0.html"}; - pub const @"MPL-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.mozilla.org/MPL/MPL-1.1.html"}; - pub const @"MPL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.mozilla.org/MPL/2.0/"}; - pub const @"MPL-2.0-no-copyleft-exception" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.mozilla.org/MPL/2.0/"}; - pub const @"MS-PL" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.microsoft.com/opensource/licenses.mspx"}; - pub const @"MS-RL" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.microsoft.com/opensource/licenses.mspx"}; - pub const @"MTLL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License"}; - pub const @"MakeIndex" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/MakeIndex"}; - pub const @"MirOS" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/MirOS"}; - pub const @"Motosoto" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Motosoto"}; - pub const @"MulanPSL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://license.coscl.org.cn/MulanPSL/"}; - pub const @"MulanPSL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://license.coscl.org.cn/MulanPSL2/"}; - pub const @"Multics" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Multics"}; - pub const @"Mup" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Mup"}; - pub const @"NAIST-2003" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://enterprise.dejacode.com/licenses/public/naist-2003/#license-text"}; - pub const @"NASA-1.3" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://ti.arc.nasa.gov/opensource/nosa/"}; - pub const @"NBPL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894"}; - pub const @"NCGL-UK-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/spdx/license-list-XML/blob/master/src/Apache-2.0.xml"}; - pub const @"NCSA" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://otm.illinois.edu/uiuc_openSource"}; - pub const @"NGPL" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/NGPL"}; - pub const @"NIST-PD" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/tcheneau/simpleRPL/blob/e645e69e38dd4e3ccfeceb2db8cba05b7c2e0cd3/LICENSE.txt"}; - pub const @"NIST-PD-fallback" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/usnistgov/jsip/blob/59700e6926cbe96c5cdae897d9a7d2656b42abe3/LICENSE"}; - pub const @"NLOD-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://data.norge.no/nlod/en/1.0"}; - pub const @"NLPL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/NLPL"}; - pub const @"NOSL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://bits.netizen.com.au/licenses/NOSL/nosl.txt"}; - pub const @"NPL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.mozilla.org/MPL/NPL/1.0/"}; - pub const @"NPL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.mozilla.org/MPL/NPL/1.1/"}; - pub const @"NPOSL-3.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/NOSL3.0"}; - pub const @"NRL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://web.mit.edu/network/isakmp/nrllicense.html"}; - pub const @"NTP" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/NTP"}; - pub const @"NTP-0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/tytso/e2fsprogs/blob/master/lib/et/et_name.c"}; - pub const @"Naumen" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Naumen"}; - pub const @"Net-SNMP" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://net-snmp.sourceforge.net/about/license.html"}; - pub const @"NetCDF" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.unidata.ucar.edu/software/netcdf/copyright.html"}; - pub const @"Newsletr" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Newsletr"}; - pub const @"Nokia" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/nokia"}; - pub const @"Noweb" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Noweb"}; - pub const @"Nunit" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Nunit"}; - pub const @"O-UDA-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/microsoft/Open-Use-of-Data-Agreement/blob/v1.0/O-UDA-1.0.md"}; - pub const @"OCCT-PL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.opencascade.com/content/occt-public-license"}; - pub const @"OCLC-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.oclc.org/research/activities/software/license/v2final.htm"}; - pub const @"ODC-By-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://opendatacommons.org/licenses/by/1.0/"}; - pub const @"ODbL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.opendatacommons.org/licenses/odbl/1.0/"}; - pub const @"OFL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web"}; - pub const @"OFL-1.0-RFN" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web"}; - pub const @"OFL-1.0-no-RFN" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web"}; - pub const @"OFL-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web"}; - pub const @"OFL-1.1-RFN" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web"}; - pub const @"OFL-1.1-no-RFN" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web"}; - pub const @"OGC-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.ogc.org/ogc/software/1.0"}; - pub const @"OGDL-Taiwan-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://data.gov.tw/license"}; - pub const @"OGL-Canada-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://open.canada.ca/en/open-government-licence-canada"}; - pub const @"OGL-UK-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/"}; - pub const @"OGL-UK-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"}; - pub const @"OGL-UK-3.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}; - pub const @"OGTSL" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt"}; - pub const @"OLDAP-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f"}; - pub const @"OLDAP-1.2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7"}; - pub const @"OLDAP-1.3" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1"}; - pub const @"OLDAP-1.4" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941"}; - pub const @"OLDAP-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea"}; - pub const @"OLDAP-2.0.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e"}; - pub const @"OLDAP-2.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715"}; - pub const @"OLDAP-2.2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3"}; - pub const @"OLDAP-2.2.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e"}; - pub const @"OLDAP-2.2.2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188"}; - pub const @"OLDAP-2.3" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3"}; - pub const @"OLDAP-2.4" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386"}; - pub const @"OLDAP-2.5" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf"}; - pub const @"OLDAP-2.6" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205"}; - pub const @"OLDAP-2.7" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2"}; - pub const @"OLDAP-2.8" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.openldap.org/software/release/license.html"}; - pub const @"OML" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Open_Market_License"}; - pub const @"OPL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://old.koalateam.com/jackaroo/OPL_1_0.TXT"}; - pub const @"OSET-PL-2.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.osetfoundation.org/public-license"}; - pub const @"OSL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/OSL-1.0"}; - pub const @"OSL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/OSL1.1"}; - pub const @"OSL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://web.archive.org/web/20041020171434/http://www.rosenlaw.com/osl2.0.html"}; - pub const @"OSL-2.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://web.archive.org/web/20050212003940/http://www.rosenlaw.com/osl21.htm"}; - pub const @"OSL-3.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://web.archive.org/web/20120101081418/http://rosenlaw.com:80/OSL3.0.htm"}; - pub const @"OpenSSL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.openssl.org/source/license.html"}; - pub const @"PDDL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://opendatacommons.org/licenses/pddl/1.0/"}; - pub const @"PHP-3.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.php.net/license/3_0.txt"}; - pub const @"PHP-3.01" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.php.net/license/3_01.txt"}; - pub const @"PSF-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://opensource.org/licenses/Python-2.0"}; - pub const @"Parity-6.0.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://paritylicense.com/versions/6.0.0.html"}; - pub const @"Parity-7.0.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://paritylicense.com/versions/7.0.0.html"}; - pub const @"Plexus" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License"}; - pub const @"PolyForm-Noncommercial-1.0.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://polyformproject.org/licenses/noncommercial/1.0.0"}; - pub const @"PolyForm-Small-Business-1.0.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://polyformproject.org/licenses/small-business/1.0.0"}; - pub const @"PostgreSQL" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.postgresql.org/about/licence"}; - pub const @"Python-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Python-2.0"}; - pub const @"QPL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://doc.qt.nokia.com/3.3/license.html"}; - pub const @"Qhull" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Qhull"}; - pub const @"RHeCos-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://ecos.sourceware.org/old-license.html"}; - pub const @"RPL-1.1" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/RPL-1.1"}; - pub const @"RPL-1.5" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/RPL-1.5"}; - pub const @"RPSL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://helixcommunity.org/content/rpsl"}; - pub const @"RSA-MD" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.faqs.org/rfcs/rfc1321.html"}; - pub const @"RSCPL" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://wayback.archive.org/web/20060715140826/http://www.risource.org/RPL/RPL-1.0A.shtml"}; - pub const @"Rdisc" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Rdisc_License"}; - pub const @"Ruby" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.ruby-lang.org/en/LICENSE.txt"}; - pub const @"SAX-PD" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.saxproject.org/copying.html"}; - pub const @"SCEA" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://research.scea.com/scea_shared_source_license.html"}; - pub const @"SGI-B-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html"}; - pub const @"SGI-B-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://oss.sgi.com/projects/FreeB/"}; - pub const @"SGI-B-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf"}; - pub const @"SHL-0.5" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://solderpad.org/licenses/SHL-0.5/"}; - pub const @"SHL-0.51" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://solderpad.org/licenses/SHL-0.51/"}; - pub const @"SISSL" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.openoffice.org/licenses/sissl_license.html"}; - pub const @"SISSL-1.2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html"}; - pub const @"SMLNJ" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.smlnj.org/license.html"}; - pub const @"SMPPL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/dcblake/SMP/blob/master/Documentation/License.txt"}; - pub const @"SNIA" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/SNIA_Public_License"}; - pub const @"SPL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/SPL-1.0"}; - pub const @"SSH-OpenSSH" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/LICENCE#L10"}; - pub const @"SSH-short" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/pathnames.h"}; - pub const @"SSPL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.mongodb.com/licensing/server-side-public-license"}; - pub const @"SWL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/SWL"}; - pub const @"Saxpath" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Saxpath_License"}; - pub const @"Sendmail" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.sendmail.com/pdfs/open_source/sendmail_license.pdf"}; - pub const @"Sendmail-8.23" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.proofpoint.com/sites/default/files/sendmail-license.pdf"}; - pub const @"SimPL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/SimPL-2.0"}; - pub const @"Sleepycat" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Sleepycat"}; - pub const @"Spencer-86" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License"}; - pub const @"Spencer-94" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License"}; - pub const @"Spencer-99" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c"}; - pub const @"StandardML-NJ" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.smlnj.org//license.html"}; - pub const @"SugarCRM-1.1.3" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.sugarcrm.com/crm/SPL"}; - pub const @"TAPR-OHL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.tapr.org/OHL"}; - pub const @"TCL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.tcl.tk/software/tcltk/license.html"}; - pub const @"TCP-wrappers" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://rc.quest.com/topics/openssh/license.php#tcpwrappers"}; - pub const @"TMate" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://svnkit.com/license.html"}; - pub const @"TORQUE-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/TORQUEv1.1"}; - pub const @"TOSL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/TOSL"}; - pub const @"TU-Berlin-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT"}; - pub const @"TU-Berlin-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt"}; - pub const @"UCL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/UCL-1.0"}; - pub const @"UPL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/UPL"}; - pub const @"Unicode-DFS-2015" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html"}; - pub const @"Unicode-DFS-2016" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.unicode.org/copyright.html"}; - pub const @"Unicode-TOU" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.unicode.org/copyright.html"}; - pub const @"Unlicense" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://unlicense.org/"}; - pub const @"VOSTROM" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/VOSTROM"}; - pub const @"VSL-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/VSL-1.0"}; - pub const @"Vim" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://vimdoc.sourceforge.net/htmldoc/uganda.html"}; - pub const @"W3C" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html"}; - pub const @"W3C-19980720" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.w3.org/Consortium/Legal/copyright-software-19980720.html"}; - pub const @"W3C-20150513" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document"}; - pub const @"WTFPL" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.wtfpl.net/about/"}; - pub const @"Watcom-1.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Watcom-1.0"}; - pub const @"Wsuipa" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Wsuipa"}; - pub const @"X11" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3"}; - pub const @"XFree86-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.xfree86.org/current/LICENSE4.html"}; - pub const @"XSkat" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/XSkat_License"}; - pub const @"Xerox" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Xerox"}; - pub const @"Xnet" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "https://opensource.org/licenses/Xnet"}; - pub const @"YPL-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.zimbra.com/license/yahoo_public_license_1.0.html"}; - pub const @"YPL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.zimbra.com/license/yahoo_public_license_1.1.html"}; - pub const @"ZPL-1.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://old.zope.org/Resources/License/ZPL-1.1"}; - pub const @"ZPL-2.0" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://old.zope.org/Resources/License/ZPL-2.0"}; - pub const @"ZPL-2.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://old.zope.org/Resources/ZPL/"}; - pub const @"Zed" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Zed"}; - pub const @"Zend-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt"}; - pub const @"Zimbra-1.3" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://web.archive.org/web/20100302225219/http://www.zimbra.com/license/zimbra-public-license-1-3.html"}; - pub const @"Zimbra-1.4" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.zimbra.com/legal/zimbra-public-license-1-4"}; - pub const @"Zlib" = License{.isOsiApproved = true, .isFsfLibre = false, .url = "http://www.zlib.net/zlib_license.html"}; - pub const @"blessing" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.sqlite.org/src/artifact/e33a4df7e32d742a?ln=4-9"}; - pub const @"bzip2-1.0.5" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://sourceware.org/bzip2/1.0.5/bzip2-manual-1.0.5.html"}; - pub const @"bzip2-1.0.6" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.6"}; - pub const @"copyleft-next-0.3.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.0"}; - pub const @"copyleft-next-0.3.1" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.1"}; - pub const @"curl" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/bagder/curl/blob/master/COPYING"}; - pub const @"diffmark" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/diffmark"}; - pub const @"dvipdfm" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/dvipdfm"}; - pub const @"eCos-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://www.gnu.org/licenses/ecos-license.html"}; - pub const @"eGenix" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf"}; - pub const @"etalab-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf"}; - pub const @"gSOAP-1.3b" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.cs.fsu.edu/~engelen/license.html"}; - pub const @"gnuplot" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Gnuplot"}; - pub const @"iMatix" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://legacy.imatix.com/html/sfl/sfl4.htm#license"}; - pub const @"libpng-2.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt"}; - pub const @"libselinux-1.0" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE"}; - pub const @"libtiff" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/libtiff"}; - pub const @"mpich2" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT"}; - pub const @"psfrag" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/psfrag"}; - pub const @"psutils" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/psutils"}; - pub const @"wxWindows" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://opensource.org/licenses/WXwindows"}; - pub const @"xinetd" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/Xinetd_License"}; - pub const @"xpp" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/xpp"}; - pub const @"zlib-acknowledgement" = License{.isOsiApproved = false, .isFsfLibre = false, .url = "https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement"}; + pub const @"0BSD" = License{.isOsiApproved = true, .url = "http://landley.net/toybox/license.html"}; + pub const @"AAL" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/attribution"}; + pub const @"ADSL" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense"}; + pub const @"AFL-1.1" = License{.isOsiApproved = true, .url = "http://opensource.linux-mirror.org/licenses/afl-1.1.txt"}; + pub const @"AFL-1.2" = License{.isOsiApproved = true, .url = "http://opensource.linux-mirror.org/licenses/afl-1.2.txt"}; + pub const @"AFL-2.0" = License{.isOsiApproved = true, .url = "http://wayback.archive.org/web/20060924134533/http://www.opensource.org/licenses/afl-2.0.txt"}; + pub const @"AFL-2.1" = License{.isOsiApproved = true, .url = "http://opensource.linux-mirror.org/licenses/afl-2.1.txt"}; + pub const @"AFL-3.0" = License{.isOsiApproved = true, .url = "http://www.rosenlaw.com/AFL3.0.htm"}; + pub const @"AGPL-1.0" = License{.isOsiApproved = false, .url = "http://www.affero.org/oagpl.html"}; + pub const @"AGPL-1.0-only" = License{.isOsiApproved = false, .url = "http://www.affero.org/oagpl.html"}; + pub const @"AGPL-1.0-or-later" = License{.isOsiApproved = false, .url = "http://www.affero.org/oagpl.html"}; + pub const @"AGPL-3.0" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/agpl.txt"}; + pub const @"AGPL-3.0-only" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/agpl.txt"}; + pub const @"AGPL-3.0-or-later" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/agpl.txt"}; + pub const @"AMDPLPA" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License"}; + pub const @"AML" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License"}; + pub const @"AMPAS" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD"}; + pub const @"ANTLR-PD" = License{.isOsiApproved = false, .url = "http://www.antlr2.org/license.html"}; + pub const @"ANTLR-PD-fallback" = License{.isOsiApproved = false, .url = "http://www.antlr2.org/license.html"}; + pub const @"APAFML" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM"}; + pub const @"APL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/APL-1.0"}; + pub const @"APSL-1.0" = License{.isOsiApproved = true, .url = "https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0"}; + pub const @"APSL-1.1" = License{.isOsiApproved = true, .url = "http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE"}; + pub const @"APSL-1.2" = License{.isOsiApproved = true, .url = "http://www.samurajdata.se/opensource/mirror/licenses/apsl.php"}; + pub const @"APSL-2.0" = License{.isOsiApproved = true, .url = "http://www.opensource.apple.com/license/apsl/"}; + pub const @"Abstyles" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Abstyles"}; + pub const @"Adobe-2006" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/AdobeLicense"}; + pub const @"Adobe-Glyph" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph"}; + pub const @"Afmparse" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Afmparse"}; + pub const @"Aladdin" = License{.isOsiApproved = false, .url = "http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm"}; + pub const @"Apache-1.0" = License{.isOsiApproved = false, .url = "http://www.apache.org/licenses/LICENSE-1.0"}; + pub const @"Apache-1.1" = License{.isOsiApproved = true, .url = "http://apache.org/licenses/LICENSE-1.1"}; + pub const @"Apache-2.0" = License{.isOsiApproved = true, .url = "http://www.apache.org/licenses/LICENSE-2.0"}; + pub const @"Artistic-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Artistic-1.0"}; + pub const @"Artistic-1.0-Perl" = License{.isOsiApproved = true, .url = "http://dev.perl.org/licenses/artistic.html"}; + pub const @"Artistic-1.0-cl8" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Artistic-1.0"}; + pub const @"Artistic-2.0" = License{.isOsiApproved = true, .url = "http://www.perlfoundation.org/artistic_license_2_0"}; + pub const @"BSD-1-Clause" = License{.isOsiApproved = true, .url = "https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823"}; + pub const @"BSD-2-Clause" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/BSD-2-Clause"}; + pub const @"BSD-2-Clause-FreeBSD" = License{.isOsiApproved = false, .url = "http://www.freebsd.org/copyright/freebsd-license.html"}; + pub const @"BSD-2-Clause-NetBSD" = License{.isOsiApproved = false, .url = "http://www.netbsd.org/about/redistribution.html#default"}; + pub const @"BSD-2-Clause-Patent" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/BSDplusPatent"}; + pub const @"BSD-2-Clause-Views" = License{.isOsiApproved = false, .url = "http://www.freebsd.org/copyright/freebsd-license.html"}; + pub const @"BSD-3-Clause" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/BSD-3-Clause"}; + pub const @"BSD-3-Clause-Attribution" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution"}; + pub const @"BSD-3-Clause-Clear" = License{.isOsiApproved = false, .url = "http://labs.metacarta.com/license-explanation.html#license"}; + pub const @"BSD-3-Clause-LBNL" = License{.isOsiApproved = true, .url = "https://fedoraproject.org/wiki/Licensing/LBNLBSD"}; + pub const @"BSD-3-Clause-Modification" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing:BSD#Modification_Variant"}; + pub const @"BSD-3-Clause-No-Nuclear-License" = License{.isOsiApproved = false, .url = "http://download.oracle.com/otn-pub/java/licenses/bsd.txt?AuthParam=1467140197_43d516ce1776bd08a58235a7785be1cc"}; + pub const @"BSD-3-Clause-No-Nuclear-License-2014" = License{.isOsiApproved = false, .url = "https://java.net/projects/javaeetutorial/pages/BerkeleyLicense"}; + pub const @"BSD-3-Clause-No-Nuclear-Warranty" = License{.isOsiApproved = false, .url = "https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt"}; + pub const @"BSD-3-Clause-Open-MPI" = License{.isOsiApproved = false, .url = "https://www.open-mpi.org/community/license.php"}; + pub const @"BSD-4-Clause" = License{.isOsiApproved = false, .url = "http://directory.fsf.org/wiki/License:BSD_4Clause"}; + pub const @"BSD-4-Clause-Shortened" = License{.isOsiApproved = false, .url = "https://metadata.ftp-master.debian.org/changelogs//main/a/arpwatch/arpwatch_2.1a15-7_copyright"}; + pub const @"BSD-4-Clause-UC" = License{.isOsiApproved = false, .url = "http://www.freebsd.org/copyright/license.html"}; + pub const @"BSD-Protection" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License"}; + pub const @"BSD-Source-Code" = License{.isOsiApproved = false, .url = "https://github.com/robbiehanson/CocoaHTTPServer/blob/master/LICENSE.txt"}; + pub const @"BSL-1.0" = License{.isOsiApproved = true, .url = "http://www.boost.org/LICENSE_1_0.txt"}; + pub const @"BUSL-1.1" = License{.isOsiApproved = false, .url = "https://mariadb.com/bsl11/"}; + pub const @"Bahyph" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Bahyph"}; + pub const @"Barr" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Barr"}; + pub const @"Beerware" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Beerware"}; + pub const @"BitTorrent-1.0" = License{.isOsiApproved = false, .url = "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1=1.1&r2=1.1.1.1&diff_format=s"}; + pub const @"BitTorrent-1.1" = License{.isOsiApproved = false, .url = "http://directory.fsf.org/wiki/License:BitTorrentOSL1.1"}; + pub const @"BlueOak-1.0.0" = License{.isOsiApproved = false, .url = "https://blueoakcouncil.org/license/1.0.0"}; + pub const @"Borceux" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Borceux"}; + pub const @"C-UDA-1.0" = License{.isOsiApproved = false, .url = "https://github.com/microsoft/Computational-Use-of-Data-Agreement/blob/master/C-UDA-1.0.md"}; + pub const @"CAL-1.0" = License{.isOsiApproved = true, .url = "http://cryptographicautonomylicense.com/license-text.html"}; + pub const @"CAL-1.0-Combined-Work-Exception" = License{.isOsiApproved = true, .url = "http://cryptographicautonomylicense.com/license-text.html"}; + pub const @"CATOSL-1.1" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/CATOSL-1.1"}; + pub const @"CC-BY-1.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by/1.0/legalcode"}; + pub const @"CC-BY-2.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by/2.0/legalcode"}; + pub const @"CC-BY-2.5" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by/2.5/legalcode"}; + pub const @"CC-BY-3.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by/3.0/legalcode"}; + pub const @"CC-BY-3.0-AT" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by/3.0/at/legalcode"}; + pub const @"CC-BY-3.0-US" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by/3.0/us/legalcode"}; + pub const @"CC-BY-4.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by/4.0/legalcode"}; + pub const @"CC-BY-NC-1.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc/1.0/legalcode"}; + pub const @"CC-BY-NC-2.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc/2.0/legalcode"}; + pub const @"CC-BY-NC-2.5" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc/2.5/legalcode"}; + pub const @"CC-BY-NC-3.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc/3.0/legalcode"}; + pub const @"CC-BY-NC-4.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc/4.0/legalcode"}; + pub const @"CC-BY-NC-ND-1.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode"}; + pub const @"CC-BY-NC-ND-2.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode"}; + pub const @"CC-BY-NC-ND-2.5" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode"}; + pub const @"CC-BY-NC-ND-3.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode"}; + pub const @"CC-BY-NC-ND-3.0-IGO" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode"}; + pub const @"CC-BY-NC-ND-4.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode"}; + pub const @"CC-BY-NC-SA-1.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode"}; + pub const @"CC-BY-NC-SA-2.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode"}; + pub const @"CC-BY-NC-SA-2.5" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode"}; + pub const @"CC-BY-NC-SA-3.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode"}; + pub const @"CC-BY-NC-SA-4.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode"}; + pub const @"CC-BY-ND-1.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nd/1.0/legalcode"}; + pub const @"CC-BY-ND-2.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nd/2.0/legalcode"}; + pub const @"CC-BY-ND-2.5" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nd/2.5/legalcode"}; + pub const @"CC-BY-ND-3.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nd/3.0/legalcode"}; + pub const @"CC-BY-ND-4.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-nd/4.0/legalcode"}; + pub const @"CC-BY-SA-1.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-sa/1.0/legalcode"}; + pub const @"CC-BY-SA-2.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-sa/2.0/legalcode"}; + pub const @"CC-BY-SA-2.0-UK" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-sa/2.0/uk/legalcode"}; + pub const @"CC-BY-SA-2.1-JP" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-sa/2.1/jp/legalcode"}; + pub const @"CC-BY-SA-2.5" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-sa/2.5/legalcode"}; + pub const @"CC-BY-SA-3.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-sa/3.0/legalcode"}; + pub const @"CC-BY-SA-3.0-AT" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-sa/3.0/at/legalcode"}; + pub const @"CC-BY-SA-4.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/by-sa/4.0/legalcode"}; + pub const @"CC-PDDC" = License{.isOsiApproved = false, .url = "https://creativecommons.org/licenses/publicdomain/"}; + pub const @"CC0-1.0" = License{.isOsiApproved = false, .url = "https://creativecommons.org/publicdomain/zero/1.0/legalcode"}; + pub const @"CDDL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/cddl1"}; + pub const @"CDDL-1.1" = License{.isOsiApproved = false, .url = "http://glassfish.java.net/public/CDDL+GPL_1_1.html"}; + pub const @"CDLA-Permissive-1.0" = License{.isOsiApproved = false, .url = "https://cdla.io/permissive-1-0"}; + pub const @"CDLA-Sharing-1.0" = License{.isOsiApproved = false, .url = "https://cdla.io/sharing-1-0"}; + pub const @"CECILL-1.0" = License{.isOsiApproved = false, .url = "http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html"}; + pub const @"CECILL-1.1" = License{.isOsiApproved = false, .url = "http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html"}; + pub const @"CECILL-2.0" = License{.isOsiApproved = false, .url = "http://www.cecill.info/licences/Licence_CeCILL_V2-en.html"}; + pub const @"CECILL-2.1" = License{.isOsiApproved = true, .url = "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html"}; + pub const @"CECILL-B" = License{.isOsiApproved = false, .url = "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html"}; + pub const @"CECILL-C" = License{.isOsiApproved = false, .url = "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html"}; + pub const @"CERN-OHL-1.1" = License{.isOsiApproved = false, .url = "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1"}; + pub const @"CERN-OHL-1.2" = License{.isOsiApproved = false, .url = "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2"}; + pub const @"CERN-OHL-P-2.0" = License{.isOsiApproved = true, .url = "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2"}; + pub const @"CERN-OHL-S-2.0" = License{.isOsiApproved = true, .url = "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2"}; + pub const @"CERN-OHL-W-2.0" = License{.isOsiApproved = true, .url = "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2"}; + pub const @"CNRI-Jython" = License{.isOsiApproved = false, .url = "http://www.jython.org/license.html"}; + pub const @"CNRI-Python" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/CNRI-Python"}; + pub const @"CNRI-Python-GPL-Compatible" = License{.isOsiApproved = false, .url = "http://www.python.org/download/releases/1.6.1/download_win/"}; + pub const @"CPAL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/CPAL-1.0"}; + pub const @"CPL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/CPL-1.0"}; + pub const @"CPOL-1.02" = License{.isOsiApproved = false, .url = "http://www.codeproject.com/info/cpol10.aspx"}; + pub const @"CUA-OPL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/CUA-OPL-1.0"}; + pub const @"Caldera" = License{.isOsiApproved = false, .url = "http://www.lemis.com/grog/UNIX/ancient-source-all.pdf"}; + pub const @"ClArtistic" = License{.isOsiApproved = false, .url = "http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/"}; + pub const @"Condor-1.1" = License{.isOsiApproved = false, .url = "http://research.cs.wisc.edu/condor/license.html#condor"}; + pub const @"Crossword" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Crossword"}; + pub const @"CrystalStacker" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker"}; + pub const @"Cube" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Cube"}; + pub const @"D-FSL-1.0" = License{.isOsiApproved = false, .url = "http://www.dipp.nrw.de/d-fsl/lizenzen/"}; + pub const @"DOC" = License{.isOsiApproved = false, .url = "http://www.cs.wustl.edu/~schmidt/ACE-copying.html"}; + pub const @"DRL-1.0" = License{.isOsiApproved = false, .url = "https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md"}; + pub const @"DSDP" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/DSDP"}; + pub const @"Dotseqn" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Dotseqn"}; + pub const @"ECL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/ECL-1.0"}; + pub const @"ECL-2.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/ECL-2.0"}; + pub const @"EFL-1.0" = License{.isOsiApproved = true, .url = "http://www.eiffel-nice.org/license/forum.txt"}; + pub const @"EFL-2.0" = License{.isOsiApproved = true, .url = "http://www.eiffel-nice.org/license/eiffel-forum-license-2.html"}; + pub const @"EPICS" = License{.isOsiApproved = false, .url = "https://epics.anl.gov/license/open.php"}; + pub const @"EPL-1.0" = License{.isOsiApproved = true, .url = "http://www.eclipse.org/legal/epl-v10.html"}; + pub const @"EPL-2.0" = License{.isOsiApproved = true, .url = "https://www.eclipse.org/legal/epl-2.0"}; + pub const @"EUDatagrid" = License{.isOsiApproved = true, .url = "http://eu-datagrid.web.cern.ch/eu-datagrid/license.html"}; + pub const @"EUPL-1.0" = License{.isOsiApproved = false, .url = "http://ec.europa.eu/idabc/en/document/7330.html"}; + pub const @"EUPL-1.1" = License{.isOsiApproved = true, .url = "https://joinup.ec.europa.eu/software/page/eupl/licence-eupl"}; + pub const @"EUPL-1.2" = License{.isOsiApproved = true, .url = "https://joinup.ec.europa.eu/page/eupl-text-11-12"}; + pub const @"Entessa" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Entessa"}; + pub const @"ErlPL-1.1" = License{.isOsiApproved = false, .url = "http://www.erlang.org/EPLICENSE"}; + pub const @"Eurosym" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Eurosym"}; + pub const @"FSFAP" = License{.isOsiApproved = false, .url = "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html"}; + pub const @"FSFUL" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License"}; + pub const @"FSFULLR" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant"}; + pub const @"FTL" = License{.isOsiApproved = false, .url = "http://freetype.fis.uniroma2.it/FTL.TXT"}; + pub const @"Fair" = License{.isOsiApproved = true, .url = "http://fairlicense.org/"}; + pub const @"Frameworx-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Frameworx-1.0"}; + pub const @"FreeBSD-DOC" = License{.isOsiApproved = false, .url = "https://www.freebsd.org/copyright/freebsd-doc-license/"}; + pub const @"FreeImage" = License{.isOsiApproved = false, .url = "http://freeimage.sourceforge.net/freeimage-license.txt"}; + pub const @"GD" = License{.isOsiApproved = false, .url = "https://libgd.github.io/manuals/2.3.0/files/license-txt.html"}; + pub const @"GFDL-1.1" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"}; + pub const @"GFDL-1.1-invariants-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"}; + pub const @"GFDL-1.1-invariants-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"}; + pub const @"GFDL-1.1-no-invariants-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"}; + pub const @"GFDL-1.1-no-invariants-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"}; + pub const @"GFDL-1.1-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"}; + pub const @"GFDL-1.1-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"}; + pub const @"GFDL-1.2" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"}; + pub const @"GFDL-1.2-invariants-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"}; + pub const @"GFDL-1.2-invariants-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"}; + pub const @"GFDL-1.2-no-invariants-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"}; + pub const @"GFDL-1.2-no-invariants-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"}; + pub const @"GFDL-1.2-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"}; + pub const @"GFDL-1.2-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"}; + pub const @"GFDL-1.3" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"}; + pub const @"GFDL-1.3-invariants-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"}; + pub const @"GFDL-1.3-invariants-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"}; + pub const @"GFDL-1.3-no-invariants-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"}; + pub const @"GFDL-1.3-no-invariants-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"}; + pub const @"GFDL-1.3-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"}; + pub const @"GFDL-1.3-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/fdl-1.3.txt"}; + pub const @"GL2PS" = License{.isOsiApproved = false, .url = "http://www.geuz.org/gl2ps/COPYING.GL2PS"}; + pub const @"GLWTPL" = License{.isOsiApproved = false, .url = "https://github.com/me-shaon/GLWTPL/commit/da5f6bc734095efbacb442c0b31e33a65b9d6e85"}; + pub const @"GPL-1.0" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"}; + pub const @"GPL-1.0+" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"}; + pub const @"GPL-1.0-only" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"}; + pub const @"GPL-1.0-or-later" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html"}; + pub const @"GPL-2.0" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"}; + pub const @"GPL-2.0+" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"}; + pub const @"GPL-2.0-only" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"}; + pub const @"GPL-2.0-or-later" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html"}; + pub const @"GPL-2.0-with-GCC-exception" = License{.isOsiApproved = false, .url = "https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10"}; + pub const @"GPL-2.0-with-autoconf-exception" = License{.isOsiApproved = false, .url = "http://ac-archive.sourceforge.net/doc/copyright.html"}; + pub const @"GPL-2.0-with-bison-exception" = License{.isOsiApproved = false, .url = "http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141"}; + pub const @"GPL-2.0-with-classpath-exception" = License{.isOsiApproved = false, .url = "https://www.gnu.org/software/classpath/license.html"}; + pub const @"GPL-2.0-with-font-exception" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/gpl-faq.html#FontException"}; + pub const @"GPL-3.0" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/gpl-3.0-standalone.html"}; + pub const @"GPL-3.0+" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/gpl-3.0-standalone.html"}; + pub const @"GPL-3.0-only" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/gpl-3.0-standalone.html"}; + pub const @"GPL-3.0-or-later" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/gpl-3.0-standalone.html"}; + pub const @"GPL-3.0-with-GCC-exception" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/gcc-exception-3.1.html"}; + pub const @"GPL-3.0-with-autoconf-exception" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/autoconf-exception-3.0.html"}; + pub const @"Giftware" = License{.isOsiApproved = false, .url = "http://liballeg.org/license.html#allegro-4-the-giftware-license"}; + pub const @"Glide" = License{.isOsiApproved = false, .url = "http://www.users.on.net/~triforce/glidexp/COPYING.txt"}; + pub const @"Glulxe" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Glulxe"}; + pub const @"HPND" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/HPND"}; + pub const @"HPND-sell-variant" = License{.isOsiApproved = false, .url = "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h=v4.19"}; + pub const @"HTMLTIDY" = License{.isOsiApproved = false, .url = "https://github.com/htacg/tidy-html5/blob/next/README/LICENSE.md"}; + pub const @"HaskellReport" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License"}; + pub const @"Hippocratic-2.1" = License{.isOsiApproved = false, .url = "https://firstdonoharm.dev/version/2/1/license.html"}; + pub const @"IBM-pibs" = License{.isOsiApproved = false, .url = "http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d"}; + pub const @"ICU" = License{.isOsiApproved = false, .url = "http://source.icu-project.org/repos/icu/icu/trunk/license.html"}; + pub const @"IJG" = License{.isOsiApproved = false, .url = "http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2"}; + pub const @"IPA" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/IPA"}; + pub const @"IPL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/IPL-1.0"}; + pub const @"ISC" = License{.isOsiApproved = true, .url = "https://www.isc.org/downloads/software-support-policy/isc-license/"}; + pub const @"ImageMagick" = License{.isOsiApproved = false, .url = "http://www.imagemagick.org/script/license.php"}; + pub const @"Imlib2" = License{.isOsiApproved = false, .url = "http://trac.enlightenment.org/e/browser/trunk/imlib2/COPYING"}; + pub const @"Info-ZIP" = License{.isOsiApproved = false, .url = "http://www.info-zip.org/license.html"}; + pub const @"Intel" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Intel"}; + pub const @"Intel-ACPI" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement"}; + pub const @"Interbase-1.0" = License{.isOsiApproved = false, .url = "https://web.archive.org/web/20060319014854/http://info.borland.com/devsupport/interbase/opensource/IPL.html"}; + pub const @"JPNIC" = License{.isOsiApproved = false, .url = "https://gitlab.isc.org/isc-projects/bind9/blob/master/COPYRIGHT#L366"}; + pub const @"JSON" = License{.isOsiApproved = false, .url = "http://www.json.org/license.html"}; + pub const @"JasPer-2.0" = License{.isOsiApproved = false, .url = "http://www.ece.uvic.ca/~mdadams/jasper/LICENSE"}; + pub const @"LAL-1.2" = License{.isOsiApproved = false, .url = "http://artlibre.org/licence/lal/licence-art-libre-12/"}; + pub const @"LAL-1.3" = License{.isOsiApproved = false, .url = "https://artlibre.org/"}; + pub const @"LGPL-2.0" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"}; + pub const @"LGPL-2.0+" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"}; + pub const @"LGPL-2.0-only" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"}; + pub const @"LGPL-2.0-or-later" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html"}; + pub const @"LGPL-2.1" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"}; + pub const @"LGPL-2.1+" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"}; + pub const @"LGPL-2.1-only" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"}; + pub const @"LGPL-2.1-or-later" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html"}; + pub const @"LGPL-3.0" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/lgpl-3.0-standalone.html"}; + pub const @"LGPL-3.0+" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/lgpl-3.0-standalone.html"}; + pub const @"LGPL-3.0-only" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/lgpl-3.0-standalone.html"}; + pub const @"LGPL-3.0-or-later" = License{.isOsiApproved = true, .url = "https://www.gnu.org/licenses/lgpl-3.0-standalone.html"}; + pub const @"LGPLLR" = License{.isOsiApproved = false, .url = "http://www-igm.univ-mlv.fr/~unitex/lgpllr.html"}; + pub const @"LPL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/LPL-1.0"}; + pub const @"LPL-1.02" = License{.isOsiApproved = true, .url = "http://plan9.bell-labs.com/plan9/license.html"}; + pub const @"LPPL-1.0" = License{.isOsiApproved = false, .url = "http://www.latex-project.org/lppl/lppl-1-0.txt"}; + pub const @"LPPL-1.1" = License{.isOsiApproved = false, .url = "http://www.latex-project.org/lppl/lppl-1-1.txt"}; + pub const @"LPPL-1.2" = License{.isOsiApproved = false, .url = "http://www.latex-project.org/lppl/lppl-1-2.txt"}; + pub const @"LPPL-1.3a" = License{.isOsiApproved = false, .url = "http://www.latex-project.org/lppl/lppl-1-3a.txt"}; + pub const @"LPPL-1.3c" = License{.isOsiApproved = true, .url = "http://www.latex-project.org/lppl/lppl-1-3c.txt"}; + pub const @"Latex2e" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Latex2e"}; + pub const @"Leptonica" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Leptonica"}; + pub const @"LiLiQ-P-1.1" = License{.isOsiApproved = true, .url = "https://forge.gouv.qc.ca/licence/fr/liliq-v1-1/"}; + pub const @"LiLiQ-R-1.1" = License{.isOsiApproved = true, .url = "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-liliq-r-v1-1/"}; + pub const @"LiLiQ-Rplus-1.1" = License{.isOsiApproved = true, .url = "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-forte-liliq-r-v1-1/"}; + pub const @"Libpng" = License{.isOsiApproved = false, .url = "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt"}; + pub const @"Linux-OpenIB" = License{.isOsiApproved = false, .url = "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h"}; + pub const @"MIT" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/MIT"}; + pub const @"MIT-0" = License{.isOsiApproved = true, .url = "https://github.com/aws/mit-0"}; + pub const @"MIT-CMU" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style"}; + pub const @"MIT-Modern-Variant" = License{.isOsiApproved = true, .url = "https://fedoraproject.org/wiki/Licensing:MIT#Modern_Variants"}; + pub const @"MIT-advertising" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising"}; + pub const @"MIT-enna" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT#enna"}; + pub const @"MIT-feh" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT#feh"}; + pub const @"MIT-open-group" = License{.isOsiApproved = false, .url = "https://gitlab.freedesktop.org/xorg/app/iceauth/-/blob/master/COPYING"}; + pub const @"MITNFA" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/MITNFA"}; + pub const @"MPL-1.0" = License{.isOsiApproved = true, .url = "http://www.mozilla.org/MPL/MPL-1.0.html"}; + pub const @"MPL-1.1" = License{.isOsiApproved = true, .url = "http://www.mozilla.org/MPL/MPL-1.1.html"}; + pub const @"MPL-2.0" = License{.isOsiApproved = true, .url = "http://www.mozilla.org/MPL/2.0/"}; + pub const @"MPL-2.0-no-copyleft-exception" = License{.isOsiApproved = true, .url = "http://www.mozilla.org/MPL/2.0/"}; + pub const @"MS-PL" = License{.isOsiApproved = true, .url = "http://www.microsoft.com/opensource/licenses.mspx"}; + pub const @"MS-RL" = License{.isOsiApproved = true, .url = "http://www.microsoft.com/opensource/licenses.mspx"}; + pub const @"MTLL" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License"}; + pub const @"MakeIndex" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/MakeIndex"}; + pub const @"MirOS" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/MirOS"}; + pub const @"Motosoto" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Motosoto"}; + pub const @"MulanPSL-1.0" = License{.isOsiApproved = false, .url = "https://license.coscl.org.cn/MulanPSL/"}; + pub const @"MulanPSL-2.0" = License{.isOsiApproved = true, .url = "https://license.coscl.org.cn/MulanPSL2/"}; + pub const @"Multics" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Multics"}; + pub const @"Mup" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Mup"}; + pub const @"NAIST-2003" = License{.isOsiApproved = false, .url = "https://enterprise.dejacode.com/licenses/public/naist-2003/#license-text"}; + pub const @"NASA-1.3" = License{.isOsiApproved = true, .url = "http://ti.arc.nasa.gov/opensource/nosa/"}; + pub const @"NBPL-1.0" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894"}; + pub const @"NCGL-UK-2.0" = License{.isOsiApproved = false, .url = "https://github.com/spdx/license-list-XML/blob/master/src/Apache-2.0.xml"}; + pub const @"NCSA" = License{.isOsiApproved = true, .url = "http://otm.illinois.edu/uiuc_openSource"}; + pub const @"NGPL" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/NGPL"}; + pub const @"NIST-PD" = License{.isOsiApproved = false, .url = "https://github.com/tcheneau/simpleRPL/blob/e645e69e38dd4e3ccfeceb2db8cba05b7c2e0cd3/LICENSE.txt"}; + pub const @"NIST-PD-fallback" = License{.isOsiApproved = false, .url = "https://github.com/usnistgov/jsip/blob/59700e6926cbe96c5cdae897d9a7d2656b42abe3/LICENSE"}; + pub const @"NLOD-1.0" = License{.isOsiApproved = false, .url = "http://data.norge.no/nlod/en/1.0"}; + pub const @"NLPL" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/NLPL"}; + pub const @"NOSL" = License{.isOsiApproved = false, .url = "http://bits.netizen.com.au/licenses/NOSL/nosl.txt"}; + pub const @"NPL-1.0" = License{.isOsiApproved = false, .url = "http://www.mozilla.org/MPL/NPL/1.0/"}; + pub const @"NPL-1.1" = License{.isOsiApproved = false, .url = "http://www.mozilla.org/MPL/NPL/1.1/"}; + pub const @"NPOSL-3.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/NOSL3.0"}; + pub const @"NRL" = License{.isOsiApproved = false, .url = "http://web.mit.edu/network/isakmp/nrllicense.html"}; + pub const @"NTP" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/NTP"}; + pub const @"NTP-0" = License{.isOsiApproved = false, .url = "https://github.com/tytso/e2fsprogs/blob/master/lib/et/et_name.c"}; + pub const @"Naumen" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Naumen"}; + pub const @"Net-SNMP" = License{.isOsiApproved = false, .url = "http://net-snmp.sourceforge.net/about/license.html"}; + pub const @"NetCDF" = License{.isOsiApproved = false, .url = "http://www.unidata.ucar.edu/software/netcdf/copyright.html"}; + pub const @"Newsletr" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Newsletr"}; + pub const @"Nokia" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/nokia"}; + pub const @"Noweb" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Noweb"}; + pub const @"Nunit" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Nunit"}; + pub const @"O-UDA-1.0" = License{.isOsiApproved = false, .url = "https://github.com/microsoft/Open-Use-of-Data-Agreement/blob/v1.0/O-UDA-1.0.md"}; + pub const @"OCCT-PL" = License{.isOsiApproved = false, .url = "http://www.opencascade.com/content/occt-public-license"}; + pub const @"OCLC-2.0" = License{.isOsiApproved = true, .url = "http://www.oclc.org/research/activities/software/license/v2final.htm"}; + pub const @"ODC-By-1.0" = License{.isOsiApproved = false, .url = "https://opendatacommons.org/licenses/by/1.0/"}; + pub const @"ODbL-1.0" = License{.isOsiApproved = false, .url = "http://www.opendatacommons.org/licenses/odbl/1.0/"}; + pub const @"OFL-1.0" = License{.isOsiApproved = false, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web"}; + pub const @"OFL-1.0-RFN" = License{.isOsiApproved = false, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web"}; + pub const @"OFL-1.0-no-RFN" = License{.isOsiApproved = false, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web"}; + pub const @"OFL-1.1" = License{.isOsiApproved = true, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web"}; + pub const @"OFL-1.1-RFN" = License{.isOsiApproved = true, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web"}; + pub const @"OFL-1.1-no-RFN" = License{.isOsiApproved = true, .url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web"}; + pub const @"OGC-1.0" = License{.isOsiApproved = false, .url = "https://www.ogc.org/ogc/software/1.0"}; + pub const @"OGDL-Taiwan-1.0" = License{.isOsiApproved = false, .url = "https://data.gov.tw/license"}; + pub const @"OGL-Canada-2.0" = License{.isOsiApproved = false, .url = "https://open.canada.ca/en/open-government-licence-canada"}; + pub const @"OGL-UK-1.0" = License{.isOsiApproved = false, .url = "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/"}; + pub const @"OGL-UK-2.0" = License{.isOsiApproved = false, .url = "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/"}; + pub const @"OGL-UK-3.0" = License{.isOsiApproved = false, .url = "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"}; + pub const @"OGTSL" = License{.isOsiApproved = true, .url = "http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt"}; + pub const @"OLDAP-1.1" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f"}; + pub const @"OLDAP-1.2" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7"}; + pub const @"OLDAP-1.3" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1"}; + pub const @"OLDAP-1.4" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941"}; + pub const @"OLDAP-2.0" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea"}; + pub const @"OLDAP-2.0.1" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e"}; + pub const @"OLDAP-2.1" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715"}; + pub const @"OLDAP-2.2" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3"}; + pub const @"OLDAP-2.2.1" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e"}; + pub const @"OLDAP-2.2.2" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188"}; + pub const @"OLDAP-2.3" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3"}; + pub const @"OLDAP-2.4" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386"}; + pub const @"OLDAP-2.5" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf"}; + pub const @"OLDAP-2.6" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205"}; + pub const @"OLDAP-2.7" = License{.isOsiApproved = false, .url = "http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2"}; + pub const @"OLDAP-2.8" = License{.isOsiApproved = true, .url = "http://www.openldap.org/software/release/license.html"}; + pub const @"OML" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Open_Market_License"}; + pub const @"OPL-1.0" = License{.isOsiApproved = false, .url = "http://old.koalateam.com/jackaroo/OPL_1_0.TXT"}; + pub const @"OSET-PL-2.1" = License{.isOsiApproved = true, .url = "http://www.osetfoundation.org/public-license"}; + pub const @"OSL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/OSL-1.0"}; + pub const @"OSL-1.1" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/OSL1.1"}; + pub const @"OSL-2.0" = License{.isOsiApproved = true, .url = "http://web.archive.org/web/20041020171434/http://www.rosenlaw.com/osl2.0.html"}; + pub const @"OSL-2.1" = License{.isOsiApproved = true, .url = "http://web.archive.org/web/20050212003940/http://www.rosenlaw.com/osl21.htm"}; + pub const @"OSL-3.0" = License{.isOsiApproved = true, .url = "https://web.archive.org/web/20120101081418/http://rosenlaw.com:80/OSL3.0.htm"}; + pub const @"OpenSSL" = License{.isOsiApproved = false, .url = "http://www.openssl.org/source/license.html"}; + pub const @"PDDL-1.0" = License{.isOsiApproved = false, .url = "http://opendatacommons.org/licenses/pddl/1.0/"}; + pub const @"PHP-3.0" = License{.isOsiApproved = true, .url = "http://www.php.net/license/3_0.txt"}; + pub const @"PHP-3.01" = License{.isOsiApproved = true, .url = "http://www.php.net/license/3_01.txt"}; + pub const @"PSF-2.0" = License{.isOsiApproved = false, .url = "https://opensource.org/licenses/Python-2.0"}; + pub const @"Parity-6.0.0" = License{.isOsiApproved = false, .url = "https://paritylicense.com/versions/6.0.0.html"}; + pub const @"Parity-7.0.0" = License{.isOsiApproved = false, .url = "https://paritylicense.com/versions/7.0.0.html"}; + pub const @"Plexus" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License"}; + pub const @"PolyForm-Noncommercial-1.0.0" = License{.isOsiApproved = false, .url = "https://polyformproject.org/licenses/noncommercial/1.0.0"}; + pub const @"PolyForm-Small-Business-1.0.0" = License{.isOsiApproved = false, .url = "https://polyformproject.org/licenses/small-business/1.0.0"}; + pub const @"PostgreSQL" = License{.isOsiApproved = true, .url = "http://www.postgresql.org/about/licence"}; + pub const @"Python-2.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Python-2.0"}; + pub const @"QPL-1.0" = License{.isOsiApproved = true, .url = "http://doc.qt.nokia.com/3.3/license.html"}; + pub const @"Qhull" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Qhull"}; + pub const @"RHeCos-1.1" = License{.isOsiApproved = false, .url = "http://ecos.sourceware.org/old-license.html"}; + pub const @"RPL-1.1" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/RPL-1.1"}; + pub const @"RPL-1.5" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/RPL-1.5"}; + pub const @"RPSL-1.0" = License{.isOsiApproved = true, .url = "https://helixcommunity.org/content/rpsl"}; + pub const @"RSA-MD" = License{.isOsiApproved = false, .url = "http://www.faqs.org/rfcs/rfc1321.html"}; + pub const @"RSCPL" = License{.isOsiApproved = true, .url = "http://wayback.archive.org/web/20060715140826/http://www.risource.org/RPL/RPL-1.0A.shtml"}; + pub const @"Rdisc" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Rdisc_License"}; + pub const @"Ruby" = License{.isOsiApproved = false, .url = "http://www.ruby-lang.org/en/LICENSE.txt"}; + pub const @"SAX-PD" = License{.isOsiApproved = false, .url = "http://www.saxproject.org/copying.html"}; + pub const @"SCEA" = License{.isOsiApproved = false, .url = "http://research.scea.com/scea_shared_source_license.html"}; + pub const @"SGI-B-1.0" = License{.isOsiApproved = false, .url = "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html"}; + pub const @"SGI-B-1.1" = License{.isOsiApproved = false, .url = "http://oss.sgi.com/projects/FreeB/"}; + pub const @"SGI-B-2.0" = License{.isOsiApproved = false, .url = "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf"}; + pub const @"SHL-0.5" = License{.isOsiApproved = false, .url = "https://solderpad.org/licenses/SHL-0.5/"}; + pub const @"SHL-0.51" = License{.isOsiApproved = false, .url = "https://solderpad.org/licenses/SHL-0.51/"}; + pub const @"SISSL" = License{.isOsiApproved = true, .url = "http://www.openoffice.org/licenses/sissl_license.html"}; + pub const @"SISSL-1.2" = License{.isOsiApproved = false, .url = "http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html"}; + pub const @"SMLNJ" = License{.isOsiApproved = false, .url = "https://www.smlnj.org/license.html"}; + pub const @"SMPPL" = License{.isOsiApproved = false, .url = "https://github.com/dcblake/SMP/blob/master/Documentation/License.txt"}; + pub const @"SNIA" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/SNIA_Public_License"}; + pub const @"SPL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/SPL-1.0"}; + pub const @"SSH-OpenSSH" = License{.isOsiApproved = false, .url = "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/LICENCE#L10"}; + pub const @"SSH-short" = License{.isOsiApproved = false, .url = "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/pathnames.h"}; + pub const @"SSPL-1.0" = License{.isOsiApproved = false, .url = "https://www.mongodb.com/licensing/server-side-public-license"}; + pub const @"SWL" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/SWL"}; + pub const @"Saxpath" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Saxpath_License"}; + pub const @"Sendmail" = License{.isOsiApproved = false, .url = "http://www.sendmail.com/pdfs/open_source/sendmail_license.pdf"}; + pub const @"Sendmail-8.23" = License{.isOsiApproved = false, .url = "https://www.proofpoint.com/sites/default/files/sendmail-license.pdf"}; + pub const @"SimPL-2.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/SimPL-2.0"}; + pub const @"Sleepycat" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Sleepycat"}; + pub const @"Spencer-86" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License"}; + pub const @"Spencer-94" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License"}; + pub const @"Spencer-99" = License{.isOsiApproved = false, .url = "http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c"}; + pub const @"StandardML-NJ" = License{.isOsiApproved = false, .url = "http://www.smlnj.org//license.html"}; + pub const @"SugarCRM-1.1.3" = License{.isOsiApproved = false, .url = "http://www.sugarcrm.com/crm/SPL"}; + pub const @"TAPR-OHL-1.0" = License{.isOsiApproved = false, .url = "https://www.tapr.org/OHL"}; + pub const @"TCL" = License{.isOsiApproved = false, .url = "http://www.tcl.tk/software/tcltk/license.html"}; + pub const @"TCP-wrappers" = License{.isOsiApproved = false, .url = "http://rc.quest.com/topics/openssh/license.php#tcpwrappers"}; + pub const @"TMate" = License{.isOsiApproved = false, .url = "http://svnkit.com/license.html"}; + pub const @"TORQUE-1.1" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/TORQUEv1.1"}; + pub const @"TOSL" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/TOSL"}; + pub const @"TU-Berlin-1.0" = License{.isOsiApproved = false, .url = "https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT"}; + pub const @"TU-Berlin-2.0" = License{.isOsiApproved = false, .url = "https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt"}; + pub const @"UCL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/UCL-1.0"}; + pub const @"UPL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/UPL"}; + pub const @"Unicode-DFS-2015" = License{.isOsiApproved = false, .url = "https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html"}; + pub const @"Unicode-DFS-2016" = License{.isOsiApproved = true, .url = "http://www.unicode.org/copyright.html"}; + pub const @"Unicode-TOU" = License{.isOsiApproved = false, .url = "http://www.unicode.org/copyright.html"}; + pub const @"Unlicense" = License{.isOsiApproved = true, .url = "https://unlicense.org/"}; + pub const @"VOSTROM" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/VOSTROM"}; + pub const @"VSL-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/VSL-1.0"}; + pub const @"Vim" = License{.isOsiApproved = false, .url = "http://vimdoc.sourceforge.net/htmldoc/uganda.html"}; + pub const @"W3C" = License{.isOsiApproved = true, .url = "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html"}; + pub const @"W3C-19980720" = License{.isOsiApproved = false, .url = "http://www.w3.org/Consortium/Legal/copyright-software-19980720.html"}; + pub const @"W3C-20150513" = License{.isOsiApproved = false, .url = "https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document"}; + pub const @"WTFPL" = License{.isOsiApproved = false, .url = "http://www.wtfpl.net/about/"}; + pub const @"Watcom-1.0" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Watcom-1.0"}; + pub const @"Wsuipa" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Wsuipa"}; + pub const @"X11" = License{.isOsiApproved = false, .url = "http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3"}; + pub const @"XFree86-1.1" = License{.isOsiApproved = false, .url = "http://www.xfree86.org/current/LICENSE4.html"}; + pub const @"XSkat" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/XSkat_License"}; + pub const @"Xerox" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Xerox"}; + pub const @"Xnet" = License{.isOsiApproved = true, .url = "https://opensource.org/licenses/Xnet"}; + pub const @"YPL-1.0" = License{.isOsiApproved = false, .url = "http://www.zimbra.com/license/yahoo_public_license_1.0.html"}; + pub const @"YPL-1.1" = License{.isOsiApproved = false, .url = "http://www.zimbra.com/license/yahoo_public_license_1.1.html"}; + pub const @"ZPL-1.1" = License{.isOsiApproved = false, .url = "http://old.zope.org/Resources/License/ZPL-1.1"}; + pub const @"ZPL-2.0" = License{.isOsiApproved = true, .url = "http://old.zope.org/Resources/License/ZPL-2.0"}; + pub const @"ZPL-2.1" = License{.isOsiApproved = false, .url = "http://old.zope.org/Resources/ZPL/"}; + pub const @"Zed" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Zed"}; + pub const @"Zend-2.0" = License{.isOsiApproved = false, .url = "https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt"}; + pub const @"Zimbra-1.3" = License{.isOsiApproved = false, .url = "http://web.archive.org/web/20100302225219/http://www.zimbra.com/license/zimbra-public-license-1-3.html"}; + pub const @"Zimbra-1.4" = License{.isOsiApproved = false, .url = "http://www.zimbra.com/legal/zimbra-public-license-1-4"}; + pub const @"Zlib" = License{.isOsiApproved = true, .url = "http://www.zlib.net/zlib_license.html"}; + pub const @"blessing" = License{.isOsiApproved = false, .url = "https://www.sqlite.org/src/artifact/e33a4df7e32d742a?ln=4-9"}; + pub const @"bzip2-1.0.5" = License{.isOsiApproved = false, .url = "https://sourceware.org/bzip2/1.0.5/bzip2-manual-1.0.5.html"}; + pub const @"bzip2-1.0.6" = License{.isOsiApproved = false, .url = "https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.6"}; + pub const @"copyleft-next-0.3.0" = License{.isOsiApproved = false, .url = "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.0"}; + pub const @"copyleft-next-0.3.1" = License{.isOsiApproved = false, .url = "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.1"}; + pub const @"curl" = License{.isOsiApproved = false, .url = "https://github.com/bagder/curl/blob/master/COPYING"}; + pub const @"diffmark" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/diffmark"}; + pub const @"dvipdfm" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/dvipdfm"}; + pub const @"eCos-2.0" = License{.isOsiApproved = false, .url = "https://www.gnu.org/licenses/ecos-license.html"}; + pub const @"eGenix" = License{.isOsiApproved = false, .url = "http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf"}; + pub const @"etalab-2.0" = License{.isOsiApproved = false, .url = "https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf"}; + pub const @"gSOAP-1.3b" = License{.isOsiApproved = false, .url = "http://www.cs.fsu.edu/~engelen/license.html"}; + pub const @"gnuplot" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Gnuplot"}; + pub const @"iMatix" = License{.isOsiApproved = false, .url = "http://legacy.imatix.com/html/sfl/sfl4.htm#license"}; + pub const @"libpng-2.0" = License{.isOsiApproved = false, .url = "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt"}; + pub const @"libselinux-1.0" = License{.isOsiApproved = false, .url = "https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE"}; + pub const @"libtiff" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/libtiff"}; + pub const @"mpich2" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/MIT"}; + pub const @"psfrag" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/psfrag"}; + pub const @"psutils" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/psutils"}; + pub const @"wxWindows" = License{.isOsiApproved = false, .url = "https://opensource.org/licenses/WXwindows"}; + pub const @"xinetd" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/Xinetd_License"}; + pub const @"xpp" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/xpp"}; + pub const @"zlib-acknowledgement" = License{.isOsiApproved = false, .url = "https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement"}; }; pub const osi = &[_][]const u8{ @@ -609,6 +608,3 @@ pub const osi = &[_][]const u8{ "ZPL-2.0", "Zlib", }; - -pub const fsf = &[_][]const u8{ -}; -- 2.54.0