authorgravatar for meghan@unicycle.coMeghan Denny <meghan@unicycle.co> 2021-07-19 06:50:50 -07:00
committergravatar for meghan@unicycle.coMeghan Denny <meghan@unicycle.co> 2021-07-19 06:50:50 -07:00
log621c1bc9719451dad909249f3c6bc73dffa40ed8
tree349715829d59e0301ffa2ce52868da3017cb8492
parent75bc8deae4b9066c1b1118a665b4d0982ad22d10

remove `License.isOsiApproved`


2 files changed, 463 insertions(+), 466 deletions(-)

generate.zig+1-3
......@@ -23,7 +23,6 @@ pub fn main() !void {
2323 try w.writeAll("\n");
2424 try w.writeAll(
2525 \\pub const License = struct {
26 \\ isOsiApproved: bool,
2726 \\ url: []const u8,
2827 \\};
2928 \\
......@@ -35,9 +34,8 @@ pub fn main() !void {
3534 try w.writeAll("\n");
3635 try w.writeAll("pub const spdx = struct {\n");
3736 for (licenses) |lic| {
38 try w.print(" pub const @\"{s}\" = License{{ .isOsiApproved = {}, .url = \"{s}\" }};\n", .{
37 try w.print(" pub const @\"{s}\" = License{{ .url = \"{s}\" }};\n", .{
3938 lic.get("licenseId").?.String,
40 lic.get("isOsiApproved").?.Bool,
4139 lic.get("reference").?.String,
4240 });
4341 }
src/lib.zig+462-463
......@@ -4,473 +4,472 @@
44//
55
66pub const License = struct {
7 isOsiApproved: bool,
87 url: []const u8,
98};
109
1110pub const spdx = struct {
12 pub const @"0BSD" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/0BSD.html" };
13 pub const @"AAL" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/AAL.html" };
14 pub const @"ADSL" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/ADSL.html" };
15 pub const @"AFL-1.1" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/AFL-1.1.html" };
16 pub const @"AFL-1.2" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/AFL-1.2.html" };
17 pub const @"AFL-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/AFL-2.0.html" };
18 pub const @"AFL-2.1" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/AFL-2.1.html" };
19 pub const @"AFL-3.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/AFL-3.0.html" };
20 pub const @"AGPL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/AGPL-1.0.html" };
21 pub const @"AGPL-1.0-only" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/AGPL-1.0-only.html" };
22 pub const @"AGPL-1.0-or-later" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/AGPL-1.0-or-later.html" };
23 pub const @"AGPL-3.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/AGPL-3.0.html" };
24 pub const @"AGPL-3.0-only" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/AGPL-3.0-only.html" };
25 pub const @"AGPL-3.0-or-later" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/AGPL-3.0-or-later.html" };
26 pub const @"AMDPLPA" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/AMDPLPA.html" };
27 pub const @"AML" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/AML.html" };
28 pub const @"AMPAS" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/AMPAS.html" };
29 pub const @"ANTLR-PD" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/ANTLR-PD.html" };
30 pub const @"ANTLR-PD-fallback" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/ANTLR-PD-fallback.html" };
31 pub const @"APAFML" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/APAFML.html" };
32 pub const @"APL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/APL-1.0.html" };
33 pub const @"APSL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/APSL-1.0.html" };
34 pub const @"APSL-1.1" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/APSL-1.1.html" };
35 pub const @"APSL-1.2" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/APSL-1.2.html" };
36 pub const @"APSL-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/APSL-2.0.html" };
37 pub const @"Abstyles" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Abstyles.html" };
38 pub const @"Adobe-2006" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Adobe-2006.html" };
39 pub const @"Adobe-Glyph" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Adobe-Glyph.html" };
40 pub const @"Afmparse" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Afmparse.html" };
41 pub const @"Aladdin" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Aladdin.html" };
42 pub const @"Apache-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Apache-1.0.html" };
43 pub const @"Apache-1.1" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Apache-1.1.html" };
44 pub const @"Apache-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Apache-2.0.html" };
45 pub const @"Artistic-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Artistic-1.0.html" };
46 pub const @"Artistic-1.0-Perl" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Artistic-1.0-Perl.html" };
47 pub const @"Artistic-1.0-cl8" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Artistic-1.0-cl8.html" };
48 pub const @"Artistic-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Artistic-2.0.html" };
49 pub const @"BSD-1-Clause" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/BSD-1-Clause.html" };
50 pub const @"BSD-2-Clause" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/BSD-2-Clause.html" };
51 pub const @"BSD-2-Clause-FreeBSD" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.html" };
52 pub const @"BSD-2-Clause-NetBSD" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BSD-2-Clause-NetBSD.html" };
53 pub const @"BSD-2-Clause-Patent" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/BSD-2-Clause-Patent.html" };
54 pub const @"BSD-2-Clause-Views" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BSD-2-Clause-Views.html" };
55 pub const @"BSD-3-Clause" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/BSD-3-Clause.html" };
56 pub const @"BSD-3-Clause-Attribution" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BSD-3-Clause-Attribution.html" };
57 pub const @"BSD-3-Clause-Clear" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BSD-3-Clause-Clear.html" };
58 pub const @"BSD-3-Clause-LBNL" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/BSD-3-Clause-LBNL.html" };
59 pub const @"BSD-3-Clause-Modification" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BSD-3-Clause-Modification.html" };
60 pub const @"BSD-3-Clause-No-Military-License" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BSD-3-Clause-No-Military-License.html" };
61 pub const @"BSD-3-Clause-No-Nuclear-License" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.html" };
62 pub const @"BSD-3-Clause-No-Nuclear-License-2014" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.html" };
63 pub const @"BSD-3-Clause-No-Nuclear-Warranty" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.html" };
64 pub const @"BSD-3-Clause-Open-MPI" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.html" };
65 pub const @"BSD-4-Clause" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BSD-4-Clause.html" };
66 pub const @"BSD-4-Clause-Shortened" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BSD-4-Clause-Shortened.html" };
67 pub const @"BSD-4-Clause-UC" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BSD-4-Clause-UC.html" };
68 pub const @"BSD-Protection" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BSD-Protection.html" };
69 pub const @"BSD-Source-Code" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BSD-Source-Code.html" };
70 pub const @"BSL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/BSL-1.0.html" };
71 pub const @"BUSL-1.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BUSL-1.1.html" };
72 pub const @"Bahyph" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Bahyph.html" };
73 pub const @"Barr" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Barr.html" };
74 pub const @"Beerware" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Beerware.html" };
75 pub const @"BitTorrent-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BitTorrent-1.0.html" };
76 pub const @"BitTorrent-1.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BitTorrent-1.1.html" };
77 pub const @"BlueOak-1.0.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/BlueOak-1.0.0.html" };
78 pub const @"Borceux" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Borceux.html" };
79 pub const @"C-UDA-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/C-UDA-1.0.html" };
80 pub const @"CAL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/CAL-1.0.html" };
81 pub const @"CAL-1.0-Combined-Work-Exception" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.html" };
82 pub const @"CATOSL-1.1" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/CATOSL-1.1.html" };
83 pub const @"CC-BY-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-1.0.html" };
84 pub const @"CC-BY-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-2.0.html" };
85 pub const @"CC-BY-2.5" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-2.5.html" };
86 pub const @"CC-BY-2.5-AU" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-2.5-AU.html" };
87 pub const @"CC-BY-3.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-3.0.html" };
88 pub const @"CC-BY-3.0-AT" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-3.0-AT.html" };
89 pub const @"CC-BY-3.0-US" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-3.0-US.html" };
90 pub const @"CC-BY-4.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-4.0.html" };
91 pub const @"CC-BY-NC-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-NC-1.0.html" };
92 pub const @"CC-BY-NC-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-NC-2.0.html" };
93 pub const @"CC-BY-NC-2.5" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-NC-2.5.html" };
94 pub const @"CC-BY-NC-3.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-NC-3.0.html" };
95 pub const @"CC-BY-NC-4.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-NC-4.0.html" };
96 pub const @"CC-BY-NC-ND-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-NC-ND-1.0.html" };
97 pub const @"CC-BY-NC-ND-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-NC-ND-2.0.html" };
98 pub const @"CC-BY-NC-ND-2.5" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-NC-ND-2.5.html" };
99 pub const @"CC-BY-NC-ND-3.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html" };
100 pub const @"CC-BY-NC-ND-3.0-IGO" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.html" };
101 pub const @"CC-BY-NC-ND-4.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-NC-ND-4.0.html" };
102 pub const @"CC-BY-NC-SA-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-NC-SA-1.0.html" };
103 pub const @"CC-BY-NC-SA-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-NC-SA-2.0.html" };
104 pub const @"CC-BY-NC-SA-2.5" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-NC-SA-2.5.html" };
105 pub const @"CC-BY-NC-SA-3.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html" };
106 pub const @"CC-BY-NC-SA-4.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-NC-SA-4.0.html" };
107 pub const @"CC-BY-ND-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-ND-1.0.html" };
108 pub const @"CC-BY-ND-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-ND-2.0.html" };
109 pub const @"CC-BY-ND-2.5" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-ND-2.5.html" };
110 pub const @"CC-BY-ND-3.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-ND-3.0.html" };
111 pub const @"CC-BY-ND-4.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-ND-4.0.html" };
112 pub const @"CC-BY-SA-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-SA-1.0.html" };
113 pub const @"CC-BY-SA-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-SA-2.0.html" };
114 pub const @"CC-BY-SA-2.0-UK" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-SA-2.0-UK.html" };
115 pub const @"CC-BY-SA-2.1-JP" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-SA-2.1-JP.html" };
116 pub const @"CC-BY-SA-2.5" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-SA-2.5.html" };
117 pub const @"CC-BY-SA-3.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-SA-3.0.html" };
118 pub const @"CC-BY-SA-3.0-AT" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-SA-3.0-AT.html" };
119 pub const @"CC-BY-SA-4.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-BY-SA-4.0.html" };
120 pub const @"CC-PDDC" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC-PDDC.html" };
121 pub const @"CC0-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CC0-1.0.html" };
122 pub const @"CDDL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/CDDL-1.0.html" };
123 pub const @"CDDL-1.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CDDL-1.1.html" };
124 pub const @"CDL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CDL-1.0.html" };
125 pub const @"CDLA-Permissive-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CDLA-Permissive-1.0.html" };
126 pub const @"CDLA-Sharing-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CDLA-Sharing-1.0.html" };
127 pub const @"CECILL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CECILL-1.0.html" };
128 pub const @"CECILL-1.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CECILL-1.1.html" };
129 pub const @"CECILL-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CECILL-2.0.html" };
130 pub const @"CECILL-2.1" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/CECILL-2.1.html" };
131 pub const @"CECILL-B" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CECILL-B.html" };
132 pub const @"CECILL-C" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CECILL-C.html" };
133 pub const @"CERN-OHL-1.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CERN-OHL-1.1.html" };
134 pub const @"CERN-OHL-1.2" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CERN-OHL-1.2.html" };
135 pub const @"CERN-OHL-P-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/CERN-OHL-P-2.0.html" };
136 pub const @"CERN-OHL-S-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/CERN-OHL-S-2.0.html" };
137 pub const @"CERN-OHL-W-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/CERN-OHL-W-2.0.html" };
138 pub const @"CNRI-Jython" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CNRI-Jython.html" };
139 pub const @"CNRI-Python" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/CNRI-Python.html" };
140 pub const @"CNRI-Python-GPL-Compatible" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.html" };
141 pub const @"CPAL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/CPAL-1.0.html" };
142 pub const @"CPL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/CPL-1.0.html" };
143 pub const @"CPOL-1.02" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CPOL-1.02.html" };
144 pub const @"CUA-OPL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/CUA-OPL-1.0.html" };
145 pub const @"Caldera" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Caldera.html" };
146 pub const @"ClArtistic" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/ClArtistic.html" };
147 pub const @"Condor-1.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Condor-1.1.html" };
148 pub const @"Crossword" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Crossword.html" };
149 pub const @"CrystalStacker" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/CrystalStacker.html" };
150 pub const @"Cube" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Cube.html" };
151 pub const @"D-FSL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/D-FSL-1.0.html" };
152 pub const @"DOC" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/DOC.html" };
153 pub const @"DRL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/DRL-1.0.html" };
154 pub const @"DSDP" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/DSDP.html" };
155 pub const @"Dotseqn" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Dotseqn.html" };
156 pub const @"ECL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/ECL-1.0.html" };
157 pub const @"ECL-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/ECL-2.0.html" };
158 pub const @"EFL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/EFL-1.0.html" };
159 pub const @"EFL-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/EFL-2.0.html" };
160 pub const @"EPICS" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/EPICS.html" };
161 pub const @"EPL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/EPL-1.0.html" };
162 pub const @"EPL-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/EPL-2.0.html" };
163 pub const @"EUDatagrid" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/EUDatagrid.html" };
164 pub const @"EUPL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/EUPL-1.0.html" };
165 pub const @"EUPL-1.1" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/EUPL-1.1.html" };
166 pub const @"EUPL-1.2" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/EUPL-1.2.html" };
167 pub const @"Entessa" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Entessa.html" };
168 pub const @"ErlPL-1.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/ErlPL-1.1.html" };
169 pub const @"Eurosym" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Eurosym.html" };
170 pub const @"FSFAP" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/FSFAP.html" };
171 pub const @"FSFUL" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/FSFUL.html" };
172 pub const @"FSFULLR" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/FSFULLR.html" };
173 pub const @"FTL" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/FTL.html" };
174 pub const @"Fair" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Fair.html" };
175 pub const @"Frameworx-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Frameworx-1.0.html" };
176 pub const @"FreeBSD-DOC" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/FreeBSD-DOC.html" };
177 pub const @"FreeImage" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/FreeImage.html" };
178 pub const @"GD" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GD.html" };
179 pub const @"GFDL-1.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.1.html" };
180 pub const @"GFDL-1.1-invariants-only" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.1-invariants-only.html" };
181 pub const @"GFDL-1.1-invariants-or-later" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.1-invariants-or-later.html" };
182 pub const @"GFDL-1.1-no-invariants-only" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.1-no-invariants-only.html" };
183 pub const @"GFDL-1.1-no-invariants-or-later" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later.html" };
184 pub const @"GFDL-1.1-only" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.1-only.html" };
185 pub const @"GFDL-1.1-or-later" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.1-or-later.html" };
186 pub const @"GFDL-1.2" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.2.html" };
187 pub const @"GFDL-1.2-invariants-only" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.2-invariants-only.html" };
188 pub const @"GFDL-1.2-invariants-or-later" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.2-invariants-or-later.html" };
189 pub const @"GFDL-1.2-no-invariants-only" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.2-no-invariants-only.html" };
190 pub const @"GFDL-1.2-no-invariants-or-later" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later.html" };
191 pub const @"GFDL-1.2-only" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.2-only.html" };
192 pub const @"GFDL-1.2-or-later" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.2-or-later.html" };
193 pub const @"GFDL-1.3" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.3.html" };
194 pub const @"GFDL-1.3-invariants-only" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.3-invariants-only.html" };
195 pub const @"GFDL-1.3-invariants-or-later" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.3-invariants-or-later.html" };
196 pub const @"GFDL-1.3-no-invariants-only" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.3-no-invariants-only.html" };
197 pub const @"GFDL-1.3-no-invariants-or-later" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.html" };
198 pub const @"GFDL-1.3-only" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.3-only.html" };
199 pub const @"GFDL-1.3-or-later" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GFDL-1.3-or-later.html" };
200 pub const @"GL2PS" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GL2PS.html" };
201 pub const @"GLWTPL" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GLWTPL.html" };
202 pub const @"GPL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GPL-1.0.html" };
203 pub const @"GPL-1.0+" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GPL-1.0+.html" };
204 pub const @"GPL-1.0-only" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GPL-1.0-only.html" };
205 pub const @"GPL-1.0-or-later" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GPL-1.0-or-later.html" };
206 pub const @"GPL-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/GPL-2.0.html" };
207 pub const @"GPL-2.0+" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/GPL-2.0+.html" };
208 pub const @"GPL-2.0-only" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/GPL-2.0-only.html" };
209 pub const @"GPL-2.0-or-later" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/GPL-2.0-or-later.html" };
210 pub const @"GPL-2.0-with-GCC-exception" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html" };
211 pub const @"GPL-2.0-with-autoconf-exception" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.html" };
212 pub const @"GPL-2.0-with-bison-exception" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GPL-2.0-with-bison-exception.html" };
213 pub const @"GPL-2.0-with-classpath-exception" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.html" };
214 pub const @"GPL-2.0-with-font-exception" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GPL-2.0-with-font-exception.html" };
215 pub const @"GPL-3.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/GPL-3.0.html" };
216 pub const @"GPL-3.0+" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/GPL-3.0+.html" };
217 pub const @"GPL-3.0-only" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/GPL-3.0-only.html" };
218 pub const @"GPL-3.0-or-later" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/GPL-3.0-or-later.html" };
219 pub const @"GPL-3.0-with-GCC-exception" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.html" };
220 pub const @"GPL-3.0-with-autoconf-exception" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.html" };
221 pub const @"Giftware" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Giftware.html" };
222 pub const @"Glide" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Glide.html" };
223 pub const @"Glulxe" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Glulxe.html" };
224 pub const @"HPND" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/HPND.html" };
225 pub const @"HPND-sell-variant" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/HPND-sell-variant.html" };
226 pub const @"HTMLTIDY" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/HTMLTIDY.html" };
227 pub const @"HaskellReport" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/HaskellReport.html" };
228 pub const @"Hippocratic-2.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Hippocratic-2.1.html" };
229 pub const @"IBM-pibs" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/IBM-pibs.html" };
230 pub const @"ICU" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/ICU.html" };
231 pub const @"IJG" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/IJG.html" };
232 pub const @"IPA" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/IPA.html" };
233 pub const @"IPL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/IPL-1.0.html" };
234 pub const @"ISC" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/ISC.html" };
235 pub const @"ImageMagick" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/ImageMagick.html" };
236 pub const @"Imlib2" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Imlib2.html" };
237 pub const @"Info-ZIP" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Info-ZIP.html" };
238 pub const @"Intel" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Intel.html" };
239 pub const @"Intel-ACPI" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Intel-ACPI.html" };
240 pub const @"Interbase-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Interbase-1.0.html" };
241 pub const @"JPNIC" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/JPNIC.html" };
242 pub const @"JSON" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/JSON.html" };
243 pub const @"JasPer-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/JasPer-2.0.html" };
244 pub const @"LAL-1.2" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/LAL-1.2.html" };
245 pub const @"LAL-1.3" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/LAL-1.3.html" };
246 pub const @"LGPL-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/LGPL-2.0.html" };
247 pub const @"LGPL-2.0+" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/LGPL-2.0+.html" };
248 pub const @"LGPL-2.0-only" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/LGPL-2.0-only.html" };
249 pub const @"LGPL-2.0-or-later" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/LGPL-2.0-or-later.html" };
250 pub const @"LGPL-2.1" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/LGPL-2.1.html" };
251 pub const @"LGPL-2.1+" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/LGPL-2.1+.html" };
252 pub const @"LGPL-2.1-only" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/LGPL-2.1-only.html" };
253 pub const @"LGPL-2.1-or-later" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/LGPL-2.1-or-later.html" };
254 pub const @"LGPL-3.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/LGPL-3.0.html" };
255 pub const @"LGPL-3.0+" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/LGPL-3.0+.html" };
256 pub const @"LGPL-3.0-only" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/LGPL-3.0-only.html" };
257 pub const @"LGPL-3.0-or-later" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/LGPL-3.0-or-later.html" };
258 pub const @"LGPLLR" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/LGPLLR.html" };
259 pub const @"LPL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/LPL-1.0.html" };
260 pub const @"LPL-1.02" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/LPL-1.02.html" };
261 pub const @"LPPL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/LPPL-1.0.html" };
262 pub const @"LPPL-1.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/LPPL-1.1.html" };
263 pub const @"LPPL-1.2" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/LPPL-1.2.html" };
264 pub const @"LPPL-1.3a" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/LPPL-1.3a.html" };
265 pub const @"LPPL-1.3c" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/LPPL-1.3c.html" };
266 pub const @"Latex2e" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Latex2e.html" };
267 pub const @"Leptonica" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Leptonica.html" };
268 pub const @"LiLiQ-P-1.1" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/LiLiQ-P-1.1.html" };
269 pub const @"LiLiQ-R-1.1" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/LiLiQ-R-1.1.html" };
270 pub const @"LiLiQ-Rplus-1.1" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/LiLiQ-Rplus-1.1.html" };
271 pub const @"Libpng" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Libpng.html" };
272 pub const @"Linux-OpenIB" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Linux-OpenIB.html" };
273 pub const @"MIT" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/MIT.html" };
274 pub const @"MIT-0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/MIT-0.html" };
275 pub const @"MIT-CMU" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/MIT-CMU.html" };
276 pub const @"MIT-Modern-Variant" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/MIT-Modern-Variant.html" };
277 pub const @"MIT-advertising" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/MIT-advertising.html" };
278 pub const @"MIT-enna" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/MIT-enna.html" };
279 pub const @"MIT-feh" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/MIT-feh.html" };
280 pub const @"MIT-open-group" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/MIT-open-group.html" };
281 pub const @"MITNFA" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/MITNFA.html" };
282 pub const @"MPL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/MPL-1.0.html" };
283 pub const @"MPL-1.1" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/MPL-1.1.html" };
284 pub const @"MPL-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/MPL-2.0.html" };
285 pub const @"MPL-2.0-no-copyleft-exception" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html" };
286 pub const @"MS-PL" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/MS-PL.html" };
287 pub const @"MS-RL" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/MS-RL.html" };
288 pub const @"MTLL" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/MTLL.html" };
289 pub const @"MakeIndex" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/MakeIndex.html" };
290 pub const @"MirOS" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/MirOS.html" };
291 pub const @"Motosoto" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Motosoto.html" };
292 pub const @"MulanPSL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/MulanPSL-1.0.html" };
293 pub const @"MulanPSL-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/MulanPSL-2.0.html" };
294 pub const @"Multics" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Multics.html" };
295 pub const @"Mup" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Mup.html" };
296 pub const @"NAIST-2003" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/NAIST-2003.html" };
297 pub const @"NASA-1.3" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/NASA-1.3.html" };
298 pub const @"NBPL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/NBPL-1.0.html" };
299 pub const @"NCGL-UK-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/NCGL-UK-2.0.html" };
300 pub const @"NCSA" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/NCSA.html" };
301 pub const @"NGPL" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/NGPL.html" };
302 pub const @"NIST-PD" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/NIST-PD.html" };
303 pub const @"NIST-PD-fallback" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/NIST-PD-fallback.html" };
304 pub const @"NLOD-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/NLOD-1.0.html" };
305 pub const @"NLPL" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/NLPL.html" };
306 pub const @"NOSL" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/NOSL.html" };
307 pub const @"NPL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/NPL-1.0.html" };
308 pub const @"NPL-1.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/NPL-1.1.html" };
309 pub const @"NPOSL-3.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/NPOSL-3.0.html" };
310 pub const @"NRL" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/NRL.html" };
311 pub const @"NTP" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/NTP.html" };
312 pub const @"NTP-0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/NTP-0.html" };
313 pub const @"Naumen" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Naumen.html" };
314 pub const @"Net-SNMP" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Net-SNMP.html" };
315 pub const @"NetCDF" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/NetCDF.html" };
316 pub const @"Newsletr" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Newsletr.html" };
317 pub const @"Nokia" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Nokia.html" };
318 pub const @"Noweb" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Noweb.html" };
319 pub const @"Nunit" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Nunit.html" };
320 pub const @"O-UDA-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/O-UDA-1.0.html" };
321 pub const @"OCCT-PL" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OCCT-PL.html" };
322 pub const @"OCLC-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/OCLC-2.0.html" };
323 pub const @"ODC-By-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/ODC-By-1.0.html" };
324 pub const @"ODbL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/ODbL-1.0.html" };
325 pub const @"OFL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OFL-1.0.html" };
326 pub const @"OFL-1.0-RFN" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OFL-1.0-RFN.html" };
327 pub const @"OFL-1.0-no-RFN" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OFL-1.0-no-RFN.html" };
328 pub const @"OFL-1.1" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/OFL-1.1.html" };
329 pub const @"OFL-1.1-RFN" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/OFL-1.1-RFN.html" };
330 pub const @"OFL-1.1-no-RFN" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/OFL-1.1-no-RFN.html" };
331 pub const @"OGC-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OGC-1.0.html" };
332 pub const @"OGDL-Taiwan-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OGDL-Taiwan-1.0.html" };
333 pub const @"OGL-Canada-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OGL-Canada-2.0.html" };
334 pub const @"OGL-UK-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OGL-UK-1.0.html" };
335 pub const @"OGL-UK-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OGL-UK-2.0.html" };
336 pub const @"OGL-UK-3.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OGL-UK-3.0.html" };
337 pub const @"OGTSL" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/OGTSL.html" };
338 pub const @"OLDAP-1.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OLDAP-1.1.html" };
339 pub const @"OLDAP-1.2" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OLDAP-1.2.html" };
340 pub const @"OLDAP-1.3" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OLDAP-1.3.html" };
341 pub const @"OLDAP-1.4" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OLDAP-1.4.html" };
342 pub const @"OLDAP-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OLDAP-2.0.html" };
343 pub const @"OLDAP-2.0.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OLDAP-2.0.1.html" };
344 pub const @"OLDAP-2.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OLDAP-2.1.html" };
345 pub const @"OLDAP-2.2" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OLDAP-2.2.html" };
346 pub const @"OLDAP-2.2.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OLDAP-2.2.1.html" };
347 pub const @"OLDAP-2.2.2" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OLDAP-2.2.2.html" };
348 pub const @"OLDAP-2.3" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OLDAP-2.3.html" };
349 pub const @"OLDAP-2.4" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OLDAP-2.4.html" };
350 pub const @"OLDAP-2.5" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OLDAP-2.5.html" };
351 pub const @"OLDAP-2.6" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OLDAP-2.6.html" };
352 pub const @"OLDAP-2.7" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OLDAP-2.7.html" };
353 pub const @"OLDAP-2.8" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/OLDAP-2.8.html" };
354 pub const @"OML" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OML.html" };
355 pub const @"OPL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OPL-1.0.html" };
356 pub const @"OPUBL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OPUBL-1.0.html" };
357 pub const @"OSET-PL-2.1" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/OSET-PL-2.1.html" };
358 pub const @"OSL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/OSL-1.0.html" };
359 pub const @"OSL-1.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OSL-1.1.html" };
360 pub const @"OSL-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/OSL-2.0.html" };
361 pub const @"OSL-2.1" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/OSL-2.1.html" };
362 pub const @"OSL-3.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/OSL-3.0.html" };
363 pub const @"OpenSSL" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/OpenSSL.html" };
364 pub const @"PDDL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/PDDL-1.0.html" };
365 pub const @"PHP-3.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/PHP-3.0.html" };
366 pub const @"PHP-3.01" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/PHP-3.01.html" };
367 pub const @"PSF-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/PSF-2.0.html" };
368 pub const @"Parity-6.0.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Parity-6.0.0.html" };
369 pub const @"Parity-7.0.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Parity-7.0.0.html" };
370 pub const @"Plexus" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Plexus.html" };
371 pub const @"PolyForm-Noncommercial-1.0.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.html" };
372 pub const @"PolyForm-Small-Business-1.0.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/PolyForm-Small-Business-1.0.0.html" };
373 pub const @"PostgreSQL" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/PostgreSQL.html" };
374 pub const @"Python-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Python-2.0.html" };
375 pub const @"QPL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/QPL-1.0.html" };
376 pub const @"Qhull" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Qhull.html" };
377 pub const @"RHeCos-1.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/RHeCos-1.1.html" };
378 pub const @"RPL-1.1" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/RPL-1.1.html" };
379 pub const @"RPL-1.5" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/RPL-1.5.html" };
380 pub const @"RPSL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/RPSL-1.0.html" };
381 pub const @"RSA-MD" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/RSA-MD.html" };
382 pub const @"RSCPL" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/RSCPL.html" };
383 pub const @"Rdisc" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Rdisc.html" };
384 pub const @"Ruby" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Ruby.html" };
385 pub const @"SAX-PD" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/SAX-PD.html" };
386 pub const @"SCEA" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/SCEA.html" };
387 pub const @"SGI-B-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/SGI-B-1.0.html" };
388 pub const @"SGI-B-1.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/SGI-B-1.1.html" };
389 pub const @"SGI-B-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/SGI-B-2.0.html" };
390 pub const @"SHL-0.5" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/SHL-0.5.html" };
391 pub const @"SHL-0.51" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/SHL-0.51.html" };
392 pub const @"SISSL" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/SISSL.html" };
393 pub const @"SISSL-1.2" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/SISSL-1.2.html" };
394 pub const @"SMLNJ" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/SMLNJ.html" };
395 pub const @"SMPPL" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/SMPPL.html" };
396 pub const @"SNIA" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/SNIA.html" };
397 pub const @"SPL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/SPL-1.0.html" };
398 pub const @"SSH-OpenSSH" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/SSH-OpenSSH.html" };
399 pub const @"SSH-short" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/SSH-short.html" };
400 pub const @"SSPL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/SSPL-1.0.html" };
401 pub const @"SWL" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/SWL.html" };
402 pub const @"Saxpath" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Saxpath.html" };
403 pub const @"Sendmail" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Sendmail.html" };
404 pub const @"Sendmail-8.23" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Sendmail-8.23.html" };
405 pub const @"SimPL-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/SimPL-2.0.html" };
406 pub const @"Sleepycat" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Sleepycat.html" };
407 pub const @"Spencer-86" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Spencer-86.html" };
408 pub const @"Spencer-94" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Spencer-94.html" };
409 pub const @"Spencer-99" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Spencer-99.html" };
410 pub const @"StandardML-NJ" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/StandardML-NJ.html" };
411 pub const @"SugarCRM-1.1.3" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/SugarCRM-1.1.3.html" };
412 pub const @"TAPR-OHL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/TAPR-OHL-1.0.html" };
413 pub const @"TCL" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/TCL.html" };
414 pub const @"TCP-wrappers" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/TCP-wrappers.html" };
415 pub const @"TMate" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/TMate.html" };
416 pub const @"TORQUE-1.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/TORQUE-1.1.html" };
417 pub const @"TOSL" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/TOSL.html" };
418 pub const @"TU-Berlin-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/TU-Berlin-1.0.html" };
419 pub const @"TU-Berlin-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/TU-Berlin-2.0.html" };
420 pub const @"UCL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/UCL-1.0.html" };
421 pub const @"UPL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/UPL-1.0.html" };
422 pub const @"Unicode-DFS-2015" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Unicode-DFS-2015.html" };
423 pub const @"Unicode-DFS-2016" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Unicode-DFS-2016.html" };
424 pub const @"Unicode-TOU" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Unicode-TOU.html" };
425 pub const @"Unlicense" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Unlicense.html" };
426 pub const @"VOSTROM" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/VOSTROM.html" };
427 pub const @"VSL-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/VSL-1.0.html" };
428 pub const @"Vim" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Vim.html" };
429 pub const @"W3C" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/W3C.html" };
430 pub const @"W3C-19980720" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/W3C-19980720.html" };
431 pub const @"W3C-20150513" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/W3C-20150513.html" };
432 pub const @"WTFPL" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/WTFPL.html" };
433 pub const @"Watcom-1.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Watcom-1.0.html" };
434 pub const @"Wsuipa" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Wsuipa.html" };
435 pub const @"X11" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/X11.html" };
436 pub const @"XFree86-1.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/XFree86-1.1.html" };
437 pub const @"XSkat" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/XSkat.html" };
438 pub const @"Xerox" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Xerox.html" };
439 pub const @"Xnet" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Xnet.html" };
440 pub const @"YPL-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/YPL-1.0.html" };
441 pub const @"YPL-1.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/YPL-1.1.html" };
442 pub const @"ZPL-1.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/ZPL-1.1.html" };
443 pub const @"ZPL-2.0" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/ZPL-2.0.html" };
444 pub const @"ZPL-2.1" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/ZPL-2.1.html" };
445 pub const @"Zed" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Zed.html" };
446 pub const @"Zend-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Zend-2.0.html" };
447 pub const @"Zimbra-1.3" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Zimbra-1.3.html" };
448 pub const @"Zimbra-1.4" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/Zimbra-1.4.html" };
449 pub const @"Zlib" = License{ .isOsiApproved = true, .url = "https://spdx.org/licenses/Zlib.html" };
450 pub const @"blessing" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/blessing.html" };
451 pub const @"bzip2-1.0.5" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/bzip2-1.0.5.html" };
452 pub const @"bzip2-1.0.6" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/bzip2-1.0.6.html" };
453 pub const @"copyleft-next-0.3.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/copyleft-next-0.3.0.html" };
454 pub const @"copyleft-next-0.3.1" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/copyleft-next-0.3.1.html" };
455 pub const @"curl" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/curl.html" };
456 pub const @"diffmark" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/diffmark.html" };
457 pub const @"dvipdfm" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/dvipdfm.html" };
458 pub const @"eCos-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/eCos-2.0.html" };
459 pub const @"eGenix" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/eGenix.html" };
460 pub const @"etalab-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/etalab-2.0.html" };
461 pub const @"gSOAP-1.3b" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/gSOAP-1.3b.html" };
462 pub const @"gnuplot" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/gnuplot.html" };
463 pub const @"iMatix" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/iMatix.html" };
464 pub const @"libpng-2.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/libpng-2.0.html" };
465 pub const @"libselinux-1.0" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/libselinux-1.0.html" };
466 pub const @"libtiff" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/libtiff.html" };
467 pub const @"mpich2" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/mpich2.html" };
468 pub const @"psfrag" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/psfrag.html" };
469 pub const @"psutils" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/psutils.html" };
470 pub const @"wxWindows" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/wxWindows.html" };
471 pub const @"xinetd" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/xinetd.html" };
472 pub const @"xpp" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/xpp.html" };
473 pub const @"zlib-acknowledgement" = License{ .isOsiApproved = false, .url = "https://spdx.org/licenses/zlib-acknowledgement.html" };
11 pub const @"0BSD" = License{ .url = "https://spdx.org/licenses/0BSD.html" };
12 pub const @"AAL" = License{ .url = "https://spdx.org/licenses/AAL.html" };
13 pub const @"ADSL" = License{ .url = "https://spdx.org/licenses/ADSL.html" };
14 pub const @"AFL-1.1" = License{ .url = "https://spdx.org/licenses/AFL-1.1.html" };
15 pub const @"AFL-1.2" = License{ .url = "https://spdx.org/licenses/AFL-1.2.html" };
16 pub const @"AFL-2.0" = License{ .url = "https://spdx.org/licenses/AFL-2.0.html" };
17 pub const @"AFL-2.1" = License{ .url = "https://spdx.org/licenses/AFL-2.1.html" };
18 pub const @"AFL-3.0" = License{ .url = "https://spdx.org/licenses/AFL-3.0.html" };
19 pub const @"AGPL-1.0" = License{ .url = "https://spdx.org/licenses/AGPL-1.0.html" };
20 pub const @"AGPL-1.0-only" = License{ .url = "https://spdx.org/licenses/AGPL-1.0-only.html" };
21 pub const @"AGPL-1.0-or-later" = License{ .url = "https://spdx.org/licenses/AGPL-1.0-or-later.html" };
22 pub const @"AGPL-3.0" = License{ .url = "https://spdx.org/licenses/AGPL-3.0.html" };
23 pub const @"AGPL-3.0-only" = License{ .url = "https://spdx.org/licenses/AGPL-3.0-only.html" };
24 pub const @"AGPL-3.0-or-later" = License{ .url = "https://spdx.org/licenses/AGPL-3.0-or-later.html" };
25 pub const @"AMDPLPA" = License{ .url = "https://spdx.org/licenses/AMDPLPA.html" };
26 pub const @"AML" = License{ .url = "https://spdx.org/licenses/AML.html" };
27 pub const @"AMPAS" = License{ .url = "https://spdx.org/licenses/AMPAS.html" };
28 pub const @"ANTLR-PD" = License{ .url = "https://spdx.org/licenses/ANTLR-PD.html" };
29 pub const @"ANTLR-PD-fallback" = License{ .url = "https://spdx.org/licenses/ANTLR-PD-fallback.html" };
30 pub const @"APAFML" = License{ .url = "https://spdx.org/licenses/APAFML.html" };
31 pub const @"APL-1.0" = License{ .url = "https://spdx.org/licenses/APL-1.0.html" };
32 pub const @"APSL-1.0" = License{ .url = "https://spdx.org/licenses/APSL-1.0.html" };
33 pub const @"APSL-1.1" = License{ .url = "https://spdx.org/licenses/APSL-1.1.html" };
34 pub const @"APSL-1.2" = License{ .url = "https://spdx.org/licenses/APSL-1.2.html" };
35 pub const @"APSL-2.0" = License{ .url = "https://spdx.org/licenses/APSL-2.0.html" };
36 pub const @"Abstyles" = License{ .url = "https://spdx.org/licenses/Abstyles.html" };
37 pub const @"Adobe-2006" = License{ .url = "https://spdx.org/licenses/Adobe-2006.html" };
38 pub const @"Adobe-Glyph" = License{ .url = "https://spdx.org/licenses/Adobe-Glyph.html" };
39 pub const @"Afmparse" = License{ .url = "https://spdx.org/licenses/Afmparse.html" };
40 pub const @"Aladdin" = License{ .url = "https://spdx.org/licenses/Aladdin.html" };
41 pub const @"Apache-1.0" = License{ .url = "https://spdx.org/licenses/Apache-1.0.html" };
42 pub const @"Apache-1.1" = License{ .url = "https://spdx.org/licenses/Apache-1.1.html" };
43 pub const @"Apache-2.0" = License{ .url = "https://spdx.org/licenses/Apache-2.0.html" };
44 pub const @"Artistic-1.0" = License{ .url = "https://spdx.org/licenses/Artistic-1.0.html" };
45 pub const @"Artistic-1.0-Perl" = License{ .url = "https://spdx.org/licenses/Artistic-1.0-Perl.html" };
46 pub const @"Artistic-1.0-cl8" = License{ .url = "https://spdx.org/licenses/Artistic-1.0-cl8.html" };
47 pub const @"Artistic-2.0" = License{ .url = "https://spdx.org/licenses/Artistic-2.0.html" };
48 pub const @"BSD-1-Clause" = License{ .url = "https://spdx.org/licenses/BSD-1-Clause.html" };
49 pub const @"BSD-2-Clause" = License{ .url = "https://spdx.org/licenses/BSD-2-Clause.html" };
50 pub const @"BSD-2-Clause-FreeBSD" = License{ .url = "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.html" };
51 pub const @"BSD-2-Clause-NetBSD" = License{ .url = "https://spdx.org/licenses/BSD-2-Clause-NetBSD.html" };
52 pub const @"BSD-2-Clause-Patent" = License{ .url = "https://spdx.org/licenses/BSD-2-Clause-Patent.html" };
53 pub const @"BSD-2-Clause-Views" = License{ .url = "https://spdx.org/licenses/BSD-2-Clause-Views.html" };
54 pub const @"BSD-3-Clause" = License{ .url = "https://spdx.org/licenses/BSD-3-Clause.html" };
55 pub const @"BSD-3-Clause-Attribution" = License{ .url = "https://spdx.org/licenses/BSD-3-Clause-Attribution.html" };
56 pub const @"BSD-3-Clause-Clear" = License{ .url = "https://spdx.org/licenses/BSD-3-Clause-Clear.html" };
57 pub const @"BSD-3-Clause-LBNL" = License{ .url = "https://spdx.org/licenses/BSD-3-Clause-LBNL.html" };
58 pub const @"BSD-3-Clause-Modification" = License{ .url = "https://spdx.org/licenses/BSD-3-Clause-Modification.html" };
59 pub const @"BSD-3-Clause-No-Military-License" = License{ .url = "https://spdx.org/licenses/BSD-3-Clause-No-Military-License.html" };
60 pub const @"BSD-3-Clause-No-Nuclear-License" = License{ .url = "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.html" };
61 pub const @"BSD-3-Clause-No-Nuclear-License-2014" = License{ .url = "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.html" };
62 pub const @"BSD-3-Clause-No-Nuclear-Warranty" = License{ .url = "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.html" };
63 pub const @"BSD-3-Clause-Open-MPI" = License{ .url = "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.html" };
64 pub const @"BSD-4-Clause" = License{ .url = "https://spdx.org/licenses/BSD-4-Clause.html" };
65 pub const @"BSD-4-Clause-Shortened" = License{ .url = "https://spdx.org/licenses/BSD-4-Clause-Shortened.html" };
66 pub const @"BSD-4-Clause-UC" = License{ .url = "https://spdx.org/licenses/BSD-4-Clause-UC.html" };
67 pub const @"BSD-Protection" = License{ .url = "https://spdx.org/licenses/BSD-Protection.html" };
68 pub const @"BSD-Source-Code" = License{ .url = "https://spdx.org/licenses/BSD-Source-Code.html" };
69 pub const @"BSL-1.0" = License{ .url = "https://spdx.org/licenses/BSL-1.0.html" };
70 pub const @"BUSL-1.1" = License{ .url = "https://spdx.org/licenses/BUSL-1.1.html" };
71 pub const @"Bahyph" = License{ .url = "https://spdx.org/licenses/Bahyph.html" };
72 pub const @"Barr" = License{ .url = "https://spdx.org/licenses/Barr.html" };
73 pub const @"Beerware" = License{ .url = "https://spdx.org/licenses/Beerware.html" };
74 pub const @"BitTorrent-1.0" = License{ .url = "https://spdx.org/licenses/BitTorrent-1.0.html" };
75 pub const @"BitTorrent-1.1" = License{ .url = "https://spdx.org/licenses/BitTorrent-1.1.html" };
76 pub const @"BlueOak-1.0.0" = License{ .url = "https://spdx.org/licenses/BlueOak-1.0.0.html" };
77 pub const @"Borceux" = License{ .url = "https://spdx.org/licenses/Borceux.html" };
78 pub const @"C-UDA-1.0" = License{ .url = "https://spdx.org/licenses/C-UDA-1.0.html" };
79 pub const @"CAL-1.0" = License{ .url = "https://spdx.org/licenses/CAL-1.0.html" };
80 pub const @"CAL-1.0-Combined-Work-Exception" = License{ .url = "https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.html" };
81 pub const @"CATOSL-1.1" = License{ .url = "https://spdx.org/licenses/CATOSL-1.1.html" };
82 pub const @"CC-BY-1.0" = License{ .url = "https://spdx.org/licenses/CC-BY-1.0.html" };
83 pub const @"CC-BY-2.0" = License{ .url = "https://spdx.org/licenses/CC-BY-2.0.html" };
84 pub const @"CC-BY-2.5" = License{ .url = "https://spdx.org/licenses/CC-BY-2.5.html" };
85 pub const @"CC-BY-2.5-AU" = License{ .url = "https://spdx.org/licenses/CC-BY-2.5-AU.html" };
86 pub const @"CC-BY-3.0" = License{ .url = "https://spdx.org/licenses/CC-BY-3.0.html" };
87 pub const @"CC-BY-3.0-AT" = License{ .url = "https://spdx.org/licenses/CC-BY-3.0-AT.html" };
88 pub const @"CC-BY-3.0-US" = License{ .url = "https://spdx.org/licenses/CC-BY-3.0-US.html" };
89 pub const @"CC-BY-4.0" = License{ .url = "https://spdx.org/licenses/CC-BY-4.0.html" };
90 pub const @"CC-BY-NC-1.0" = License{ .url = "https://spdx.org/licenses/CC-BY-NC-1.0.html" };
91 pub const @"CC-BY-NC-2.0" = License{ .url = "https://spdx.org/licenses/CC-BY-NC-2.0.html" };
92 pub const @"CC-BY-NC-2.5" = License{ .url = "https://spdx.org/licenses/CC-BY-NC-2.5.html" };
93 pub const @"CC-BY-NC-3.0" = License{ .url = "https://spdx.org/licenses/CC-BY-NC-3.0.html" };
94 pub const @"CC-BY-NC-4.0" = License{ .url = "https://spdx.org/licenses/CC-BY-NC-4.0.html" };
95 pub const @"CC-BY-NC-ND-1.0" = License{ .url = "https://spdx.org/licenses/CC-BY-NC-ND-1.0.html" };
96 pub const @"CC-BY-NC-ND-2.0" = License{ .url = "https://spdx.org/licenses/CC-BY-NC-ND-2.0.html" };
97 pub const @"CC-BY-NC-ND-2.5" = License{ .url = "https://spdx.org/licenses/CC-BY-NC-ND-2.5.html" };
98 pub const @"CC-BY-NC-ND-3.0" = License{ .url = "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html" };
99 pub const @"CC-BY-NC-ND-3.0-IGO" = License{ .url = "https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.html" };
100 pub const @"CC-BY-NC-ND-4.0" = License{ .url = "https://spdx.org/licenses/CC-BY-NC-ND-4.0.html" };
101 pub const @"CC-BY-NC-SA-1.0" = License{ .url = "https://spdx.org/licenses/CC-BY-NC-SA-1.0.html" };
102 pub const @"CC-BY-NC-SA-2.0" = License{ .url = "https://spdx.org/licenses/CC-BY-NC-SA-2.0.html" };
103 pub const @"CC-BY-NC-SA-2.5" = License{ .url = "https://spdx.org/licenses/CC-BY-NC-SA-2.5.html" };
104 pub const @"CC-BY-NC-SA-3.0" = License{ .url = "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html" };
105 pub const @"CC-BY-NC-SA-4.0" = License{ .url = "https://spdx.org/licenses/CC-BY-NC-SA-4.0.html" };
106 pub const @"CC-BY-ND-1.0" = License{ .url = "https://spdx.org/licenses/CC-BY-ND-1.0.html" };
107 pub const @"CC-BY-ND-2.0" = License{ .url = "https://spdx.org/licenses/CC-BY-ND-2.0.html" };
108 pub const @"CC-BY-ND-2.5" = License{ .url = "https://spdx.org/licenses/CC-BY-ND-2.5.html" };
109 pub const @"CC-BY-ND-3.0" = License{ .url = "https://spdx.org/licenses/CC-BY-ND-3.0.html" };
110 pub const @"CC-BY-ND-4.0" = License{ .url = "https://spdx.org/licenses/CC-BY-ND-4.0.html" };
111 pub const @"CC-BY-SA-1.0" = License{ .url = "https://spdx.org/licenses/CC-BY-SA-1.0.html" };
112 pub const @"CC-BY-SA-2.0" = License{ .url = "https://spdx.org/licenses/CC-BY-SA-2.0.html" };
113 pub const @"CC-BY-SA-2.0-UK" = License{ .url = "https://spdx.org/licenses/CC-BY-SA-2.0-UK.html" };
114 pub const @"CC-BY-SA-2.1-JP" = License{ .url = "https://spdx.org/licenses/CC-BY-SA-2.1-JP.html" };
115 pub const @"CC-BY-SA-2.5" = License{ .url = "https://spdx.org/licenses/CC-BY-SA-2.5.html" };
116 pub const @"CC-BY-SA-3.0" = License{ .url = "https://spdx.org/licenses/CC-BY-SA-3.0.html" };
117 pub const @"CC-BY-SA-3.0-AT" = License{ .url = "https://spdx.org/licenses/CC-BY-SA-3.0-AT.html" };
118 pub const @"CC-BY-SA-4.0" = License{ .url = "https://spdx.org/licenses/CC-BY-SA-4.0.html" };
119 pub const @"CC-PDDC" = License{ .url = "https://spdx.org/licenses/CC-PDDC.html" };
120 pub const @"CC0-1.0" = License{ .url = "https://spdx.org/licenses/CC0-1.0.html" };
121 pub const @"CDDL-1.0" = License{ .url = "https://spdx.org/licenses/CDDL-1.0.html" };
122 pub const @"CDDL-1.1" = License{ .url = "https://spdx.org/licenses/CDDL-1.1.html" };
123 pub const @"CDL-1.0" = License{ .url = "https://spdx.org/licenses/CDL-1.0.html" };
124 pub const @"CDLA-Permissive-1.0" = License{ .url = "https://spdx.org/licenses/CDLA-Permissive-1.0.html" };
125 pub const @"CDLA-Sharing-1.0" = License{ .url = "https://spdx.org/licenses/CDLA-Sharing-1.0.html" };
126 pub const @"CECILL-1.0" = License{ .url = "https://spdx.org/licenses/CECILL-1.0.html" };
127 pub const @"CECILL-1.1" = License{ .url = "https://spdx.org/licenses/CECILL-1.1.html" };
128 pub const @"CECILL-2.0" = License{ .url = "https://spdx.org/licenses/CECILL-2.0.html" };
129 pub const @"CECILL-2.1" = License{ .url = "https://spdx.org/licenses/CECILL-2.1.html" };
130 pub const @"CECILL-B" = License{ .url = "https://spdx.org/licenses/CECILL-B.html" };
131 pub const @"CECILL-C" = License{ .url = "https://spdx.org/licenses/CECILL-C.html" };
132 pub const @"CERN-OHL-1.1" = License{ .url = "https://spdx.org/licenses/CERN-OHL-1.1.html" };
133 pub const @"CERN-OHL-1.2" = License{ .url = "https://spdx.org/licenses/CERN-OHL-1.2.html" };
134 pub const @"CERN-OHL-P-2.0" = License{ .url = "https://spdx.org/licenses/CERN-OHL-P-2.0.html" };
135 pub const @"CERN-OHL-S-2.0" = License{ .url = "https://spdx.org/licenses/CERN-OHL-S-2.0.html" };
136 pub const @"CERN-OHL-W-2.0" = License{ .url = "https://spdx.org/licenses/CERN-OHL-W-2.0.html" };
137 pub const @"CNRI-Jython" = License{ .url = "https://spdx.org/licenses/CNRI-Jython.html" };
138 pub const @"CNRI-Python" = License{ .url = "https://spdx.org/licenses/CNRI-Python.html" };
139 pub const @"CNRI-Python-GPL-Compatible" = License{ .url = "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.html" };
140 pub const @"CPAL-1.0" = License{ .url = "https://spdx.org/licenses/CPAL-1.0.html" };
141 pub const @"CPL-1.0" = License{ .url = "https://spdx.org/licenses/CPL-1.0.html" };
142 pub const @"CPOL-1.02" = License{ .url = "https://spdx.org/licenses/CPOL-1.02.html" };
143 pub const @"CUA-OPL-1.0" = License{ .url = "https://spdx.org/licenses/CUA-OPL-1.0.html" };
144 pub const @"Caldera" = License{ .url = "https://spdx.org/licenses/Caldera.html" };
145 pub const @"ClArtistic" = License{ .url = "https://spdx.org/licenses/ClArtistic.html" };
146 pub const @"Condor-1.1" = License{ .url = "https://spdx.org/licenses/Condor-1.1.html" };
147 pub const @"Crossword" = License{ .url = "https://spdx.org/licenses/Crossword.html" };
148 pub const @"CrystalStacker" = License{ .url = "https://spdx.org/licenses/CrystalStacker.html" };
149 pub const @"Cube" = License{ .url = "https://spdx.org/licenses/Cube.html" };
150 pub const @"D-FSL-1.0" = License{ .url = "https://spdx.org/licenses/D-FSL-1.0.html" };
151 pub const @"DOC" = License{ .url = "https://spdx.org/licenses/DOC.html" };
152 pub const @"DRL-1.0" = License{ .url = "https://spdx.org/licenses/DRL-1.0.html" };
153 pub const @"DSDP" = License{ .url = "https://spdx.org/licenses/DSDP.html" };
154 pub const @"Dotseqn" = License{ .url = "https://spdx.org/licenses/Dotseqn.html" };
155 pub const @"ECL-1.0" = License{ .url = "https://spdx.org/licenses/ECL-1.0.html" };
156 pub const @"ECL-2.0" = License{ .url = "https://spdx.org/licenses/ECL-2.0.html" };
157 pub const @"EFL-1.0" = License{ .url = "https://spdx.org/licenses/EFL-1.0.html" };
158 pub const @"EFL-2.0" = License{ .url = "https://spdx.org/licenses/EFL-2.0.html" };
159 pub const @"EPICS" = License{ .url = "https://spdx.org/licenses/EPICS.html" };
160 pub const @"EPL-1.0" = License{ .url = "https://spdx.org/licenses/EPL-1.0.html" };
161 pub const @"EPL-2.0" = License{ .url = "https://spdx.org/licenses/EPL-2.0.html" };
162 pub const @"EUDatagrid" = License{ .url = "https://spdx.org/licenses/EUDatagrid.html" };
163 pub const @"EUPL-1.0" = License{ .url = "https://spdx.org/licenses/EUPL-1.0.html" };
164 pub const @"EUPL-1.1" = License{ .url = "https://spdx.org/licenses/EUPL-1.1.html" };
165 pub const @"EUPL-1.2" = License{ .url = "https://spdx.org/licenses/EUPL-1.2.html" };
166 pub const @"Entessa" = License{ .url = "https://spdx.org/licenses/Entessa.html" };
167 pub const @"ErlPL-1.1" = License{ .url = "https://spdx.org/licenses/ErlPL-1.1.html" };
168 pub const @"Eurosym" = License{ .url = "https://spdx.org/licenses/Eurosym.html" };
169 pub const @"FSFAP" = License{ .url = "https://spdx.org/licenses/FSFAP.html" };
170 pub const @"FSFUL" = License{ .url = "https://spdx.org/licenses/FSFUL.html" };
171 pub const @"FSFULLR" = License{ .url = "https://spdx.org/licenses/FSFULLR.html" };
172 pub const @"FTL" = License{ .url = "https://spdx.org/licenses/FTL.html" };
173 pub const @"Fair" = License{ .url = "https://spdx.org/licenses/Fair.html" };
174 pub const @"Frameworx-1.0" = License{ .url = "https://spdx.org/licenses/Frameworx-1.0.html" };
175 pub const @"FreeBSD-DOC" = License{ .url = "https://spdx.org/licenses/FreeBSD-DOC.html" };
176 pub const @"FreeImage" = License{ .url = "https://spdx.org/licenses/FreeImage.html" };
177 pub const @"GD" = License{ .url = "https://spdx.org/licenses/GD.html" };
178 pub const @"GFDL-1.1" = License{ .url = "https://spdx.org/licenses/GFDL-1.1.html" };
179 pub const @"GFDL-1.1-invariants-only" = License{ .url = "https://spdx.org/licenses/GFDL-1.1-invariants-only.html" };
180 pub const @"GFDL-1.1-invariants-or-later" = License{ .url = "https://spdx.org/licenses/GFDL-1.1-invariants-or-later.html" };
181 pub const @"GFDL-1.1-no-invariants-only" = License{ .url = "https://spdx.org/licenses/GFDL-1.1-no-invariants-only.html" };
182 pub const @"GFDL-1.1-no-invariants-or-later" = License{ .url = "https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later.html" };
183 pub const @"GFDL-1.1-only" = License{ .url = "https://spdx.org/licenses/GFDL-1.1-only.html" };
184 pub const @"GFDL-1.1-or-later" = License{ .url = "https://spdx.org/licenses/GFDL-1.1-or-later.html" };
185 pub const @"GFDL-1.2" = License{ .url = "https://spdx.org/licenses/GFDL-1.2.html" };
186 pub const @"GFDL-1.2-invariants-only" = License{ .url = "https://spdx.org/licenses/GFDL-1.2-invariants-only.html" };
187 pub const @"GFDL-1.2-invariants-or-later" = License{ .url = "https://spdx.org/licenses/GFDL-1.2-invariants-or-later.html" };
188 pub const @"GFDL-1.2-no-invariants-only" = License{ .url = "https://spdx.org/licenses/GFDL-1.2-no-invariants-only.html" };
189 pub const @"GFDL-1.2-no-invariants-or-later" = License{ .url = "https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later.html" };
190 pub const @"GFDL-1.2-only" = License{ .url = "https://spdx.org/licenses/GFDL-1.2-only.html" };
191 pub const @"GFDL-1.2-or-later" = License{ .url = "https://spdx.org/licenses/GFDL-1.2-or-later.html" };
192 pub const @"GFDL-1.3" = License{ .url = "https://spdx.org/licenses/GFDL-1.3.html" };
193 pub const @"GFDL-1.3-invariants-only" = License{ .url = "https://spdx.org/licenses/GFDL-1.3-invariants-only.html" };
194 pub const @"GFDL-1.3-invariants-or-later" = License{ .url = "https://spdx.org/licenses/GFDL-1.3-invariants-or-later.html" };
195 pub const @"GFDL-1.3-no-invariants-only" = License{ .url = "https://spdx.org/licenses/GFDL-1.3-no-invariants-only.html" };
196 pub const @"GFDL-1.3-no-invariants-or-later" = License{ .url = "https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.html" };
197 pub const @"GFDL-1.3-only" = License{ .url = "https://spdx.org/licenses/GFDL-1.3-only.html" };
198 pub const @"GFDL-1.3-or-later" = License{ .url = "https://spdx.org/licenses/GFDL-1.3-or-later.html" };
199 pub const @"GL2PS" = License{ .url = "https://spdx.org/licenses/GL2PS.html" };
200 pub const @"GLWTPL" = License{ .url = "https://spdx.org/licenses/GLWTPL.html" };
201 pub const @"GPL-1.0" = License{ .url = "https://spdx.org/licenses/GPL-1.0.html" };
202 pub const @"GPL-1.0+" = License{ .url = "https://spdx.org/licenses/GPL-1.0+.html" };
203 pub const @"GPL-1.0-only" = License{ .url = "https://spdx.org/licenses/GPL-1.0-only.html" };
204 pub const @"GPL-1.0-or-later" = License{ .url = "https://spdx.org/licenses/GPL-1.0-or-later.html" };
205 pub const @"GPL-2.0" = License{ .url = "https://spdx.org/licenses/GPL-2.0.html" };
206 pub const @"GPL-2.0+" = License{ .url = "https://spdx.org/licenses/GPL-2.0+.html" };
207 pub const @"GPL-2.0-only" = License{ .url = "https://spdx.org/licenses/GPL-2.0-only.html" };
208 pub const @"GPL-2.0-or-later" = License{ .url = "https://spdx.org/licenses/GPL-2.0-or-later.html" };
209 pub const @"GPL-2.0-with-GCC-exception" = License{ .url = "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html" };
210 pub const @"GPL-2.0-with-autoconf-exception" = License{ .url = "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.html" };
211 pub const @"GPL-2.0-with-bison-exception" = License{ .url = "https://spdx.org/licenses/GPL-2.0-with-bison-exception.html" };
212 pub const @"GPL-2.0-with-classpath-exception" = License{ .url = "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.html" };
213 pub const @"GPL-2.0-with-font-exception" = License{ .url = "https://spdx.org/licenses/GPL-2.0-with-font-exception.html" };
214 pub const @"GPL-3.0" = License{ .url = "https://spdx.org/licenses/GPL-3.0.html" };
215 pub const @"GPL-3.0+" = License{ .url = "https://spdx.org/licenses/GPL-3.0+.html" };
216 pub const @"GPL-3.0-only" = License{ .url = "https://spdx.org/licenses/GPL-3.0-only.html" };
217 pub const @"GPL-3.0-or-later" = License{ .url = "https://spdx.org/licenses/GPL-3.0-or-later.html" };
218 pub const @"GPL-3.0-with-GCC-exception" = License{ .url = "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.html" };
219 pub const @"GPL-3.0-with-autoconf-exception" = License{ .url = "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.html" };
220 pub const @"Giftware" = License{ .url = "https://spdx.org/licenses/Giftware.html" };
221 pub const @"Glide" = License{ .url = "https://spdx.org/licenses/Glide.html" };
222 pub const @"Glulxe" = License{ .url = "https://spdx.org/licenses/Glulxe.html" };
223 pub const @"HPND" = License{ .url = "https://spdx.org/licenses/HPND.html" };
224 pub const @"HPND-sell-variant" = License{ .url = "https://spdx.org/licenses/HPND-sell-variant.html" };
225 pub const @"HTMLTIDY" = License{ .url = "https://spdx.org/licenses/HTMLTIDY.html" };
226 pub const @"HaskellReport" = License{ .url = "https://spdx.org/licenses/HaskellReport.html" };
227 pub const @"Hippocratic-2.1" = License{ .url = "https://spdx.org/licenses/Hippocratic-2.1.html" };
228 pub const @"IBM-pibs" = License{ .url = "https://spdx.org/licenses/IBM-pibs.html" };
229 pub const @"ICU" = License{ .url = "https://spdx.org/licenses/ICU.html" };
230 pub const @"IJG" = License{ .url = "https://spdx.org/licenses/IJG.html" };
231 pub const @"IPA" = License{ .url = "https://spdx.org/licenses/IPA.html" };
232 pub const @"IPL-1.0" = License{ .url = "https://spdx.org/licenses/IPL-1.0.html" };
233 pub const @"ISC" = License{ .url = "https://spdx.org/licenses/ISC.html" };
234 pub const @"ImageMagick" = License{ .url = "https://spdx.org/licenses/ImageMagick.html" };
235 pub const @"Imlib2" = License{ .url = "https://spdx.org/licenses/Imlib2.html" };
236 pub const @"Info-ZIP" = License{ .url = "https://spdx.org/licenses/Info-ZIP.html" };
237 pub const @"Intel" = License{ .url = "https://spdx.org/licenses/Intel.html" };
238 pub const @"Intel-ACPI" = License{ .url = "https://spdx.org/licenses/Intel-ACPI.html" };
239 pub const @"Interbase-1.0" = License{ .url = "https://spdx.org/licenses/Interbase-1.0.html" };
240 pub const @"JPNIC" = License{ .url = "https://spdx.org/licenses/JPNIC.html" };
241 pub const @"JSON" = License{ .url = "https://spdx.org/licenses/JSON.html" };
242 pub const @"JasPer-2.0" = License{ .url = "https://spdx.org/licenses/JasPer-2.0.html" };
243 pub const @"LAL-1.2" = License{ .url = "https://spdx.org/licenses/LAL-1.2.html" };
244 pub const @"LAL-1.3" = License{ .url = "https://spdx.org/licenses/LAL-1.3.html" };
245 pub const @"LGPL-2.0" = License{ .url = "https://spdx.org/licenses/LGPL-2.0.html" };
246 pub const @"LGPL-2.0+" = License{ .url = "https://spdx.org/licenses/LGPL-2.0+.html" };
247 pub const @"LGPL-2.0-only" = License{ .url = "https://spdx.org/licenses/LGPL-2.0-only.html" };
248 pub const @"LGPL-2.0-or-later" = License{ .url = "https://spdx.org/licenses/LGPL-2.0-or-later.html" };
249 pub const @"LGPL-2.1" = License{ .url = "https://spdx.org/licenses/LGPL-2.1.html" };
250 pub const @"LGPL-2.1+" = License{ .url = "https://spdx.org/licenses/LGPL-2.1+.html" };
251 pub const @"LGPL-2.1-only" = License{ .url = "https://spdx.org/licenses/LGPL-2.1-only.html" };
252 pub const @"LGPL-2.1-or-later" = License{ .url = "https://spdx.org/licenses/LGPL-2.1-or-later.html" };
253 pub const @"LGPL-3.0" = License{ .url = "https://spdx.org/licenses/LGPL-3.0.html" };
254 pub const @"LGPL-3.0+" = License{ .url = "https://spdx.org/licenses/LGPL-3.0+.html" };
255 pub const @"LGPL-3.0-only" = License{ .url = "https://spdx.org/licenses/LGPL-3.0-only.html" };
256 pub const @"LGPL-3.0-or-later" = License{ .url = "https://spdx.org/licenses/LGPL-3.0-or-later.html" };
257 pub const @"LGPLLR" = License{ .url = "https://spdx.org/licenses/LGPLLR.html" };
258 pub const @"LPL-1.0" = License{ .url = "https://spdx.org/licenses/LPL-1.0.html" };
259 pub const @"LPL-1.02" = License{ .url = "https://spdx.org/licenses/LPL-1.02.html" };
260 pub const @"LPPL-1.0" = License{ .url = "https://spdx.org/licenses/LPPL-1.0.html" };
261 pub const @"LPPL-1.1" = License{ .url = "https://spdx.org/licenses/LPPL-1.1.html" };
262 pub const @"LPPL-1.2" = License{ .url = "https://spdx.org/licenses/LPPL-1.2.html" };
263 pub const @"LPPL-1.3a" = License{ .url = "https://spdx.org/licenses/LPPL-1.3a.html" };
264 pub const @"LPPL-1.3c" = License{ .url = "https://spdx.org/licenses/LPPL-1.3c.html" };
265 pub const @"Latex2e" = License{ .url = "https://spdx.org/licenses/Latex2e.html" };
266 pub const @"Leptonica" = License{ .url = "https://spdx.org/licenses/Leptonica.html" };
267 pub const @"LiLiQ-P-1.1" = License{ .url = "https://spdx.org/licenses/LiLiQ-P-1.1.html" };
268 pub const @"LiLiQ-R-1.1" = License{ .url = "https://spdx.org/licenses/LiLiQ-R-1.1.html" };
269 pub const @"LiLiQ-Rplus-1.1" = License{ .url = "https://spdx.org/licenses/LiLiQ-Rplus-1.1.html" };
270 pub const @"Libpng" = License{ .url = "https://spdx.org/licenses/Libpng.html" };
271 pub const @"Linux-OpenIB" = License{ .url = "https://spdx.org/licenses/Linux-OpenIB.html" };
272 pub const @"MIT" = License{ .url = "https://spdx.org/licenses/MIT.html" };
273 pub const @"MIT-0" = License{ .url = "https://spdx.org/licenses/MIT-0.html" };
274 pub const @"MIT-CMU" = License{ .url = "https://spdx.org/licenses/MIT-CMU.html" };
275 pub const @"MIT-Modern-Variant" = License{ .url = "https://spdx.org/licenses/MIT-Modern-Variant.html" };
276 pub const @"MIT-advertising" = License{ .url = "https://spdx.org/licenses/MIT-advertising.html" };
277 pub const @"MIT-enna" = License{ .url = "https://spdx.org/licenses/MIT-enna.html" };
278 pub const @"MIT-feh" = License{ .url = "https://spdx.org/licenses/MIT-feh.html" };
279 pub const @"MIT-open-group" = License{ .url = "https://spdx.org/licenses/MIT-open-group.html" };
280 pub const @"MITNFA" = License{ .url = "https://spdx.org/licenses/MITNFA.html" };
281 pub const @"MPL-1.0" = License{ .url = "https://spdx.org/licenses/MPL-1.0.html" };
282 pub const @"MPL-1.1" = License{ .url = "https://spdx.org/licenses/MPL-1.1.html" };
283 pub const @"MPL-2.0" = License{ .url = "https://spdx.org/licenses/MPL-2.0.html" };
284 pub const @"MPL-2.0-no-copyleft-exception" = License{ .url = "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html" };
285 pub const @"MS-PL" = License{ .url = "https://spdx.org/licenses/MS-PL.html" };
286 pub const @"MS-RL" = License{ .url = "https://spdx.org/licenses/MS-RL.html" };
287 pub const @"MTLL" = License{ .url = "https://spdx.org/licenses/MTLL.html" };
288 pub const @"MakeIndex" = License{ .url = "https://spdx.org/licenses/MakeIndex.html" };
289 pub const @"MirOS" = License{ .url = "https://spdx.org/licenses/MirOS.html" };
290 pub const @"Motosoto" = License{ .url = "https://spdx.org/licenses/Motosoto.html" };
291 pub const @"MulanPSL-1.0" = License{ .url = "https://spdx.org/licenses/MulanPSL-1.0.html" };
292 pub const @"MulanPSL-2.0" = License{ .url = "https://spdx.org/licenses/MulanPSL-2.0.html" };
293 pub const @"Multics" = License{ .url = "https://spdx.org/licenses/Multics.html" };
294 pub const @"Mup" = License{ .url = "https://spdx.org/licenses/Mup.html" };
295 pub const @"NAIST-2003" = License{ .url = "https://spdx.org/licenses/NAIST-2003.html" };
296 pub const @"NASA-1.3" = License{ .url = "https://spdx.org/licenses/NASA-1.3.html" };
297 pub const @"NBPL-1.0" = License{ .url = "https://spdx.org/licenses/NBPL-1.0.html" };
298 pub const @"NCGL-UK-2.0" = License{ .url = "https://spdx.org/licenses/NCGL-UK-2.0.html" };
299 pub const @"NCSA" = License{ .url = "https://spdx.org/licenses/NCSA.html" };
300 pub const @"NGPL" = License{ .url = "https://spdx.org/licenses/NGPL.html" };
301 pub const @"NIST-PD" = License{ .url = "https://spdx.org/licenses/NIST-PD.html" };
302 pub const @"NIST-PD-fallback" = License{ .url = "https://spdx.org/licenses/NIST-PD-fallback.html" };
303 pub const @"NLOD-1.0" = License{ .url = "https://spdx.org/licenses/NLOD-1.0.html" };
304 pub const @"NLPL" = License{ .url = "https://spdx.org/licenses/NLPL.html" };
305 pub const @"NOSL" = License{ .url = "https://spdx.org/licenses/NOSL.html" };
306 pub const @"NPL-1.0" = License{ .url = "https://spdx.org/licenses/NPL-1.0.html" };
307 pub const @"NPL-1.1" = License{ .url = "https://spdx.org/licenses/NPL-1.1.html" };
308 pub const @"NPOSL-3.0" = License{ .url = "https://spdx.org/licenses/NPOSL-3.0.html" };
309 pub const @"NRL" = License{ .url = "https://spdx.org/licenses/NRL.html" };
310 pub const @"NTP" = License{ .url = "https://spdx.org/licenses/NTP.html" };
311 pub const @"NTP-0" = License{ .url = "https://spdx.org/licenses/NTP-0.html" };
312 pub const @"Naumen" = License{ .url = "https://spdx.org/licenses/Naumen.html" };
313 pub const @"Net-SNMP" = License{ .url = "https://spdx.org/licenses/Net-SNMP.html" };
314 pub const @"NetCDF" = License{ .url = "https://spdx.org/licenses/NetCDF.html" };
315 pub const @"Newsletr" = License{ .url = "https://spdx.org/licenses/Newsletr.html" };
316 pub const @"Nokia" = License{ .url = "https://spdx.org/licenses/Nokia.html" };
317 pub const @"Noweb" = License{ .url = "https://spdx.org/licenses/Noweb.html" };
318 pub const @"Nunit" = License{ .url = "https://spdx.org/licenses/Nunit.html" };
319 pub const @"O-UDA-1.0" = License{ .url = "https://spdx.org/licenses/O-UDA-1.0.html" };
320 pub const @"OCCT-PL" = License{ .url = "https://spdx.org/licenses/OCCT-PL.html" };
321 pub const @"OCLC-2.0" = License{ .url = "https://spdx.org/licenses/OCLC-2.0.html" };
322 pub const @"ODC-By-1.0" = License{ .url = "https://spdx.org/licenses/ODC-By-1.0.html" };
323 pub const @"ODbL-1.0" = License{ .url = "https://spdx.org/licenses/ODbL-1.0.html" };
324 pub const @"OFL-1.0" = License{ .url = "https://spdx.org/licenses/OFL-1.0.html" };
325 pub const @"OFL-1.0-RFN" = License{ .url = "https://spdx.org/licenses/OFL-1.0-RFN.html" };
326 pub const @"OFL-1.0-no-RFN" = License{ .url = "https://spdx.org/licenses/OFL-1.0-no-RFN.html" };
327 pub const @"OFL-1.1" = License{ .url = "https://spdx.org/licenses/OFL-1.1.html" };
328 pub const @"OFL-1.1-RFN" = License{ .url = "https://spdx.org/licenses/OFL-1.1-RFN.html" };
329 pub const @"OFL-1.1-no-RFN" = License{ .url = "https://spdx.org/licenses/OFL-1.1-no-RFN.html" };
330 pub const @"OGC-1.0" = License{ .url = "https://spdx.org/licenses/OGC-1.0.html" };
331 pub const @"OGDL-Taiwan-1.0" = License{ .url = "https://spdx.org/licenses/OGDL-Taiwan-1.0.html" };
332 pub const @"OGL-Canada-2.0" = License{ .url = "https://spdx.org/licenses/OGL-Canada-2.0.html" };
333 pub const @"OGL-UK-1.0" = License{ .url = "https://spdx.org/licenses/OGL-UK-1.0.html" };
334 pub const @"OGL-UK-2.0" = License{ .url = "https://spdx.org/licenses/OGL-UK-2.0.html" };
335 pub const @"OGL-UK-3.0" = License{ .url = "https://spdx.org/licenses/OGL-UK-3.0.html" };
336 pub const @"OGTSL" = License{ .url = "https://spdx.org/licenses/OGTSL.html" };
337 pub const @"OLDAP-1.1" = License{ .url = "https://spdx.org/licenses/OLDAP-1.1.html" };
338 pub const @"OLDAP-1.2" = License{ .url = "https://spdx.org/licenses/OLDAP-1.2.html" };
339 pub const @"OLDAP-1.3" = License{ .url = "https://spdx.org/licenses/OLDAP-1.3.html" };
340 pub const @"OLDAP-1.4" = License{ .url = "https://spdx.org/licenses/OLDAP-1.4.html" };
341 pub const @"OLDAP-2.0" = License{ .url = "https://spdx.org/licenses/OLDAP-2.0.html" };
342 pub const @"OLDAP-2.0.1" = License{ .url = "https://spdx.org/licenses/OLDAP-2.0.1.html" };
343 pub const @"OLDAP-2.1" = License{ .url = "https://spdx.org/licenses/OLDAP-2.1.html" };
344 pub const @"OLDAP-2.2" = License{ .url = "https://spdx.org/licenses/OLDAP-2.2.html" };
345 pub const @"OLDAP-2.2.1" = License{ .url = "https://spdx.org/licenses/OLDAP-2.2.1.html" };
346 pub const @"OLDAP-2.2.2" = License{ .url = "https://spdx.org/licenses/OLDAP-2.2.2.html" };
347 pub const @"OLDAP-2.3" = License{ .url = "https://spdx.org/licenses/OLDAP-2.3.html" };
348 pub const @"OLDAP-2.4" = License{ .url = "https://spdx.org/licenses/OLDAP-2.4.html" };
349 pub const @"OLDAP-2.5" = License{ .url = "https://spdx.org/licenses/OLDAP-2.5.html" };
350 pub const @"OLDAP-2.6" = License{ .url = "https://spdx.org/licenses/OLDAP-2.6.html" };
351 pub const @"OLDAP-2.7" = License{ .url = "https://spdx.org/licenses/OLDAP-2.7.html" };
352 pub const @"OLDAP-2.8" = License{ .url = "https://spdx.org/licenses/OLDAP-2.8.html" };
353 pub const @"OML" = License{ .url = "https://spdx.org/licenses/OML.html" };
354 pub const @"OPL-1.0" = License{ .url = "https://spdx.org/licenses/OPL-1.0.html" };
355 pub const @"OPUBL-1.0" = License{ .url = "https://spdx.org/licenses/OPUBL-1.0.html" };
356 pub const @"OSET-PL-2.1" = License{ .url = "https://spdx.org/licenses/OSET-PL-2.1.html" };
357 pub const @"OSL-1.0" = License{ .url = "https://spdx.org/licenses/OSL-1.0.html" };
358 pub const @"OSL-1.1" = License{ .url = "https://spdx.org/licenses/OSL-1.1.html" };
359 pub const @"OSL-2.0" = License{ .url = "https://spdx.org/licenses/OSL-2.0.html" };
360 pub const @"OSL-2.1" = License{ .url = "https://spdx.org/licenses/OSL-2.1.html" };
361 pub const @"OSL-3.0" = License{ .url = "https://spdx.org/licenses/OSL-3.0.html" };
362 pub const @"OpenSSL" = License{ .url = "https://spdx.org/licenses/OpenSSL.html" };
363 pub const @"PDDL-1.0" = License{ .url = "https://spdx.org/licenses/PDDL-1.0.html" };
364 pub const @"PHP-3.0" = License{ .url = "https://spdx.org/licenses/PHP-3.0.html" };
365 pub const @"PHP-3.01" = License{ .url = "https://spdx.org/licenses/PHP-3.01.html" };
366 pub const @"PSF-2.0" = License{ .url = "https://spdx.org/licenses/PSF-2.0.html" };
367 pub const @"Parity-6.0.0" = License{ .url = "https://spdx.org/licenses/Parity-6.0.0.html" };
368 pub const @"Parity-7.0.0" = License{ .url = "https://spdx.org/licenses/Parity-7.0.0.html" };
369 pub const @"Plexus" = License{ .url = "https://spdx.org/licenses/Plexus.html" };
370 pub const @"PolyForm-Noncommercial-1.0.0" = License{ .url = "https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.html" };
371 pub const @"PolyForm-Small-Business-1.0.0" = License{ .url = "https://spdx.org/licenses/PolyForm-Small-Business-1.0.0.html" };
372 pub const @"PostgreSQL" = License{ .url = "https://spdx.org/licenses/PostgreSQL.html" };
373 pub const @"Python-2.0" = License{ .url = "https://spdx.org/licenses/Python-2.0.html" };
374 pub const @"QPL-1.0" = License{ .url = "https://spdx.org/licenses/QPL-1.0.html" };
375 pub const @"Qhull" = License{ .url = "https://spdx.org/licenses/Qhull.html" };
376 pub const @"RHeCos-1.1" = License{ .url = "https://spdx.org/licenses/RHeCos-1.1.html" };
377 pub const @"RPL-1.1" = License{ .url = "https://spdx.org/licenses/RPL-1.1.html" };
378 pub const @"RPL-1.5" = License{ .url = "https://spdx.org/licenses/RPL-1.5.html" };
379 pub const @"RPSL-1.0" = License{ .url = "https://spdx.org/licenses/RPSL-1.0.html" };
380 pub const @"RSA-MD" = License{ .url = "https://spdx.org/licenses/RSA-MD.html" };
381 pub const @"RSCPL" = License{ .url = "https://spdx.org/licenses/RSCPL.html" };
382 pub const @"Rdisc" = License{ .url = "https://spdx.org/licenses/Rdisc.html" };
383 pub const @"Ruby" = License{ .url = "https://spdx.org/licenses/Ruby.html" };
384 pub const @"SAX-PD" = License{ .url = "https://spdx.org/licenses/SAX-PD.html" };
385 pub const @"SCEA" = License{ .url = "https://spdx.org/licenses/SCEA.html" };
386 pub const @"SGI-B-1.0" = License{ .url = "https://spdx.org/licenses/SGI-B-1.0.html" };
387 pub const @"SGI-B-1.1" = License{ .url = "https://spdx.org/licenses/SGI-B-1.1.html" };
388 pub const @"SGI-B-2.0" = License{ .url = "https://spdx.org/licenses/SGI-B-2.0.html" };
389 pub const @"SHL-0.5" = License{ .url = "https://spdx.org/licenses/SHL-0.5.html" };
390 pub const @"SHL-0.51" = License{ .url = "https://spdx.org/licenses/SHL-0.51.html" };
391 pub const @"SISSL" = License{ .url = "https://spdx.org/licenses/SISSL.html" };
392 pub const @"SISSL-1.2" = License{ .url = "https://spdx.org/licenses/SISSL-1.2.html" };
393 pub const @"SMLNJ" = License{ .url = "https://spdx.org/licenses/SMLNJ.html" };
394 pub const @"SMPPL" = License{ .url = "https://spdx.org/licenses/SMPPL.html" };
395 pub const @"SNIA" = License{ .url = "https://spdx.org/licenses/SNIA.html" };
396 pub const @"SPL-1.0" = License{ .url = "https://spdx.org/licenses/SPL-1.0.html" };
397 pub const @"SSH-OpenSSH" = License{ .url = "https://spdx.org/licenses/SSH-OpenSSH.html" };
398 pub const @"SSH-short" = License{ .url = "https://spdx.org/licenses/SSH-short.html" };
399 pub const @"SSPL-1.0" = License{ .url = "https://spdx.org/licenses/SSPL-1.0.html" };
400 pub const @"SWL" = License{ .url = "https://spdx.org/licenses/SWL.html" };
401 pub const @"Saxpath" = License{ .url = "https://spdx.org/licenses/Saxpath.html" };
402 pub const @"Sendmail" = License{ .url = "https://spdx.org/licenses/Sendmail.html" };
403 pub const @"Sendmail-8.23" = License{ .url = "https://spdx.org/licenses/Sendmail-8.23.html" };
404 pub const @"SimPL-2.0" = License{ .url = "https://spdx.org/licenses/SimPL-2.0.html" };
405 pub const @"Sleepycat" = License{ .url = "https://spdx.org/licenses/Sleepycat.html" };
406 pub const @"Spencer-86" = License{ .url = "https://spdx.org/licenses/Spencer-86.html" };
407 pub const @"Spencer-94" = License{ .url = "https://spdx.org/licenses/Spencer-94.html" };
408 pub const @"Spencer-99" = License{ .url = "https://spdx.org/licenses/Spencer-99.html" };
409 pub const @"StandardML-NJ" = License{ .url = "https://spdx.org/licenses/StandardML-NJ.html" };
410 pub const @"SugarCRM-1.1.3" = License{ .url = "https://spdx.org/licenses/SugarCRM-1.1.3.html" };
411 pub const @"TAPR-OHL-1.0" = License{ .url = "https://spdx.org/licenses/TAPR-OHL-1.0.html" };
412 pub const @"TCL" = License{ .url = "https://spdx.org/licenses/TCL.html" };
413 pub const @"TCP-wrappers" = License{ .url = "https://spdx.org/licenses/TCP-wrappers.html" };
414 pub const @"TMate" = License{ .url = "https://spdx.org/licenses/TMate.html" };
415 pub const @"TORQUE-1.1" = License{ .url = "https://spdx.org/licenses/TORQUE-1.1.html" };
416 pub const @"TOSL" = License{ .url = "https://spdx.org/licenses/TOSL.html" };
417 pub const @"TU-Berlin-1.0" = License{ .url = "https://spdx.org/licenses/TU-Berlin-1.0.html" };
418 pub const @"TU-Berlin-2.0" = License{ .url = "https://spdx.org/licenses/TU-Berlin-2.0.html" };
419 pub const @"UCL-1.0" = License{ .url = "https://spdx.org/licenses/UCL-1.0.html" };
420 pub const @"UPL-1.0" = License{ .url = "https://spdx.org/licenses/UPL-1.0.html" };
421 pub const @"Unicode-DFS-2015" = License{ .url = "https://spdx.org/licenses/Unicode-DFS-2015.html" };
422 pub const @"Unicode-DFS-2016" = License{ .url = "https://spdx.org/licenses/Unicode-DFS-2016.html" };
423 pub const @"Unicode-TOU" = License{ .url = "https://spdx.org/licenses/Unicode-TOU.html" };
424 pub const @"Unlicense" = License{ .url = "https://spdx.org/licenses/Unlicense.html" };
425 pub const @"VOSTROM" = License{ .url = "https://spdx.org/licenses/VOSTROM.html" };
426 pub const @"VSL-1.0" = License{ .url = "https://spdx.org/licenses/VSL-1.0.html" };
427 pub const @"Vim" = License{ .url = "https://spdx.org/licenses/Vim.html" };
428 pub const @"W3C" = License{ .url = "https://spdx.org/licenses/W3C.html" };
429 pub const @"W3C-19980720" = License{ .url = "https://spdx.org/licenses/W3C-19980720.html" };
430 pub const @"W3C-20150513" = License{ .url = "https://spdx.org/licenses/W3C-20150513.html" };
431 pub const @"WTFPL" = License{ .url = "https://spdx.org/licenses/WTFPL.html" };
432 pub const @"Watcom-1.0" = License{ .url = "https://spdx.org/licenses/Watcom-1.0.html" };
433 pub const @"Wsuipa" = License{ .url = "https://spdx.org/licenses/Wsuipa.html" };
434 pub const @"X11" = License{ .url = "https://spdx.org/licenses/X11.html" };
435 pub const @"XFree86-1.1" = License{ .url = "https://spdx.org/licenses/XFree86-1.1.html" };
436 pub const @"XSkat" = License{ .url = "https://spdx.org/licenses/XSkat.html" };
437 pub const @"Xerox" = License{ .url = "https://spdx.org/licenses/Xerox.html" };
438 pub const @"Xnet" = License{ .url = "https://spdx.org/licenses/Xnet.html" };
439 pub const @"YPL-1.0" = License{ .url = "https://spdx.org/licenses/YPL-1.0.html" };
440 pub const @"YPL-1.1" = License{ .url = "https://spdx.org/licenses/YPL-1.1.html" };
441 pub const @"ZPL-1.1" = License{ .url = "https://spdx.org/licenses/ZPL-1.1.html" };
442 pub const @"ZPL-2.0" = License{ .url = "https://spdx.org/licenses/ZPL-2.0.html" };
443 pub const @"ZPL-2.1" = License{ .url = "https://spdx.org/licenses/ZPL-2.1.html" };
444 pub const @"Zed" = License{ .url = "https://spdx.org/licenses/Zed.html" };
445 pub const @"Zend-2.0" = License{ .url = "https://spdx.org/licenses/Zend-2.0.html" };
446 pub const @"Zimbra-1.3" = License{ .url = "https://spdx.org/licenses/Zimbra-1.3.html" };
447 pub const @"Zimbra-1.4" = License{ .url = "https://spdx.org/licenses/Zimbra-1.4.html" };
448 pub const @"Zlib" = License{ .url = "https://spdx.org/licenses/Zlib.html" };
449 pub const @"blessing" = License{ .url = "https://spdx.org/licenses/blessing.html" };
450 pub const @"bzip2-1.0.5" = License{ .url = "https://spdx.org/licenses/bzip2-1.0.5.html" };
451 pub const @"bzip2-1.0.6" = License{ .url = "https://spdx.org/licenses/bzip2-1.0.6.html" };
452 pub const @"copyleft-next-0.3.0" = License{ .url = "https://spdx.org/licenses/copyleft-next-0.3.0.html" };
453 pub const @"copyleft-next-0.3.1" = License{ .url = "https://spdx.org/licenses/copyleft-next-0.3.1.html" };
454 pub const @"curl" = License{ .url = "https://spdx.org/licenses/curl.html" };
455 pub const @"diffmark" = License{ .url = "https://spdx.org/licenses/diffmark.html" };
456 pub const @"dvipdfm" = License{ .url = "https://spdx.org/licenses/dvipdfm.html" };
457 pub const @"eCos-2.0" = License{ .url = "https://spdx.org/licenses/eCos-2.0.html" };
458 pub const @"eGenix" = License{ .url = "https://spdx.org/licenses/eGenix.html" };
459 pub const @"etalab-2.0" = License{ .url = "https://spdx.org/licenses/etalab-2.0.html" };
460 pub const @"gSOAP-1.3b" = License{ .url = "https://spdx.org/licenses/gSOAP-1.3b.html" };
461 pub const @"gnuplot" = License{ .url = "https://spdx.org/licenses/gnuplot.html" };
462 pub const @"iMatix" = License{ .url = "https://spdx.org/licenses/iMatix.html" };
463 pub const @"libpng-2.0" = License{ .url = "https://spdx.org/licenses/libpng-2.0.html" };
464 pub const @"libselinux-1.0" = License{ .url = "https://spdx.org/licenses/libselinux-1.0.html" };
465 pub const @"libtiff" = License{ .url = "https://spdx.org/licenses/libtiff.html" };
466 pub const @"mpich2" = License{ .url = "https://spdx.org/licenses/mpich2.html" };
467 pub const @"psfrag" = License{ .url = "https://spdx.org/licenses/psfrag.html" };
468 pub const @"psutils" = License{ .url = "https://spdx.org/licenses/psutils.html" };
469 pub const @"wxWindows" = License{ .url = "https://spdx.org/licenses/wxWindows.html" };
470 pub const @"xinetd" = License{ .url = "https://spdx.org/licenses/xinetd.html" };
471 pub const @"xpp" = License{ .url = "https://spdx.org/licenses/xpp.html" };
472 pub const @"zlib-acknowledgement" = License{ .url = "https://spdx.org/licenses/zlib-acknowledgement.html" };
474473};
475474
476475pub const osi = &[_][]const u8{