spdx 2.0.11 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/lib/spdx_parser.rb CHANGED
@@ -21,20 +21,48 @@ class SpdxParser
21
21
 
22
22
  private_class_method def self.parse_tree(data)
23
23
  parser = SpdxGrammarParser.new # The generated grammar parser is not thread safe
24
- # Couldn't figure out treetop to make parens optional
25
- data = "(#{data})" unless SKIP_PARENS.include?(data)
26
24
 
27
25
  tree = parser.parse(data)
28
26
  raise SpdxGrammar::SpdxParseError, "Unable to parse expression '#{data}'. Parse error at offset: #{parser.index}" if tree.nil?
29
27
 
30
- clean_tree(tree)
31
- tree
28
+ prune(tree)
32
29
  end
33
30
 
34
- private_class_method def self.clean_tree(root_node)
35
- return if root_node.elements.nil?
31
+ private_class_method def self.clean(root_node)
32
+ root_node.elements&.delete_if { |node| node.instance_of?(Treetop::Runtime::SyntaxNode) }
33
+ end
34
+
35
+ private_class_method def self.prune(root_node)
36
+ clean(root_node)
37
+
38
+ root_node.elements&.each_with_index do |node, i|
39
+ case node
40
+ when SpdxGrammar::GroupedExpression, SpdxGrammar::Operand
41
+ clean(node)
42
+ child = node.elements[0]
43
+ child.parent = root_node
44
+ root_node.elements[i] = child
45
+
46
+ case child
47
+ when SpdxGrammar::GroupedExpression, SpdxGrammar::Operand
48
+ # re-prune if child's child is a GroupedExpression or Operand
49
+ prune(root_node)
50
+ else
51
+ prune(child)
52
+ end
53
+ else
54
+ prune(node)
55
+ end
56
+ end
57
+
58
+ case root_node
59
+ when SpdxGrammar::GroupedExpression
60
+ child = root_node.elements[0]
61
+ child.parent = root_node.parent
62
+
63
+ return child
64
+ end
36
65
 
37
- root_node.elements.delete_if { |node| node.class.name == "Treetop::Runtime::SyntaxNode" }
38
- root_node.elements.each { |node| clean_tree(node) }
66
+ root_node
39
67
  end
40
68
  end
@@ -1,39 +1,56 @@
1
1
  grammar SpdxGrammar
2
2
 
3
- rule spdx_expression
3
+ rule license_expression
4
4
  compound_expression / none / no_assertion
5
5
  end
6
6
 
7
7
  rule compound_expression
8
- '(' body ')' <CompoundExpression>
8
+ or_expression / and_expression / expression / grouped_expression
9
9
  end
10
10
 
11
- rule body
12
- (compound_expression / and / or / with / license / space )* <Body>
11
+ rule and_expression
12
+ ( expression space <Operand> / grouped_expression space? <Operand> ) "AND" ( space ( and_expression / expression ) <Operand> / space? grouped_expression <Operand> ) <LogicalAnd>
13
13
  end
14
14
 
15
- rule and
16
- "AND" space !reserve_words <LogicalAnd>
15
+ rule or_expression
16
+ ( ( and_expression / expression ) space <Operand> / grouped_expression space? <Operand> ) "OR" ( space compound_expression <Operand> / space? grouped_expression <Operand> ) <LogicalOr>
17
17
  end
18
18
 
19
- rule or
20
- "OR" space !reserve_words <LogicalOr>
19
+ rule expression
20
+ simple_expression space "WITH" space license_exception_id <With> /
21
+ simple_expression
21
22
  end
22
23
 
23
- rule with
24
- "WITH" space license_exception <With>
24
+ rule grouped_expression
25
+ '(' compound_expression ')' <GroupedExpression>
25
26
  end
26
27
 
27
- rule license
28
- [a-zA-Z0-9\-\+:\.]+ &{|seq| Spdx.license_exists?(seq.first.text_value) || Spdx.license_exists?(seq.first.text_value.delete_suffix('+')) } <License>
28
+ rule simple_expression
29
+ license_id '+' <LicensePlus> / license_id / ref
29
30
  end
30
31
 
31
- rule license_exception
32
- [a-zA-Z0-9\-\+:\.]+ &{|seq| Spdx.exception_exists?(seq.first.text_value) } <LicenseException>
32
+ rule ref
33
+ document_ref / license_ref
33
34
  end
34
35
 
35
- rule reserve_words
36
- "AND" / "OR" / "WITH"
36
+ rule license_ref
37
+ "LicenseRef-" idstring <LicenseRef>
38
+ end
39
+
40
+ rule document_ref
41
+ "DocumentRef-" idstring ':' license_ref <DocumentRef>
42
+ end
43
+
44
+ rule license_id
45
+ idstring &{|seq| Spdx.license_exists?(seq.first.text_value) } <License>
46
+ end
47
+
48
+ rule license_exception_id
49
+ idstring &{|seq| Spdx.exception_exists?(seq.first.text_value) } <LicenseException>
50
+ end
51
+
52
+ rule idstring
53
+ [a-zA-Z0-9\-\.]+
37
54
  end
38
55
 
39
56
  rule none
@@ -48,4 +65,4 @@ grammar SpdxGrammar
48
65
  [\s]+
49
66
  end
50
67
 
51
- end
68
+ end
data/licenses.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
- "licenseListVersion": "3.8-126-gff8ed78",
2
+ "licenseListVersion": "3.10-24-gd78ad74",
3
3
  "licenses": [
4
4
  {
5
5
  "reference": "./0BSD.html",
6
6
  "isDeprecatedLicenseId": false,
7
7
  "detailsUrl": "http://spdx.org/licenses/0BSD.json",
8
- "referenceNumber": "239",
8
+ "referenceNumber": "251",
9
9
  "name": "BSD Zero Clause License",
10
10
  "licenseId": "0BSD",
11
11
  "seeAlso": [
@@ -17,7 +17,7 @@
17
17
  "reference": "./AAL.html",
18
18
  "isDeprecatedLicenseId": false,
19
19
  "detailsUrl": "http://spdx.org/licenses/AAL.json",
20
- "referenceNumber": "60",
20
+ "referenceNumber": "64",
21
21
  "name": "Attribution Assurance License",
22
22
  "licenseId": "AAL",
23
23
  "seeAlso": [
@@ -29,7 +29,7 @@
29
29
  "reference": "./ADSL.html",
30
30
  "isDeprecatedLicenseId": false,
31
31
  "detailsUrl": "http://spdx.org/licenses/ADSL.json",
32
- "referenceNumber": "217",
32
+ "referenceNumber": "228",
33
33
  "name": "Amazon Digital Services License",
34
34
  "licenseId": "ADSL",
35
35
  "seeAlso": [
@@ -42,7 +42,7 @@
42
42
  "isDeprecatedLicenseId": false,
43
43
  "isFsfLibre": true,
44
44
  "detailsUrl": "http://spdx.org/licenses/AFL-1.1.json",
45
- "referenceNumber": "28",
45
+ "referenceNumber": "30",
46
46
  "name": "Academic Free License v1.1",
47
47
  "licenseId": "AFL-1.1",
48
48
  "seeAlso": [
@@ -56,7 +56,7 @@
56
56
  "isDeprecatedLicenseId": false,
57
57
  "isFsfLibre": true,
58
58
  "detailsUrl": "http://spdx.org/licenses/AFL-1.2.json",
59
- "referenceNumber": "222",
59
+ "referenceNumber": "233",
60
60
  "name": "Academic Free License v1.2",
61
61
  "licenseId": "AFL-1.2",
62
62
  "seeAlso": [
@@ -70,7 +70,7 @@
70
70
  "isDeprecatedLicenseId": false,
71
71
  "isFsfLibre": true,
72
72
  "detailsUrl": "http://spdx.org/licenses/AFL-2.0.json",
73
- "referenceNumber": "341",
73
+ "referenceNumber": "360",
74
74
  "name": "Academic Free License v2.0",
75
75
  "licenseId": "AFL-2.0",
76
76
  "seeAlso": [
@@ -83,7 +83,7 @@
83
83
  "isDeprecatedLicenseId": false,
84
84
  "isFsfLibre": true,
85
85
  "detailsUrl": "http://spdx.org/licenses/AFL-2.1.json",
86
- "referenceNumber": "249",
86
+ "referenceNumber": "262",
87
87
  "name": "Academic Free License v2.1",
88
88
  "licenseId": "AFL-2.1",
89
89
  "seeAlso": [
@@ -96,7 +96,7 @@
96
96
  "isDeprecatedLicenseId": false,
97
97
  "isFsfLibre": true,
98
98
  "detailsUrl": "http://spdx.org/licenses/AFL-3.0.json",
99
- "referenceNumber": "361",
99
+ "referenceNumber": "382",
100
100
  "name": "Academic Free License v3.0",
101
101
  "licenseId": "AFL-3.0",
102
102
  "seeAlso": [
@@ -110,7 +110,7 @@
110
110
  "isDeprecatedLicenseId": true,
111
111
  "isFsfLibre": true,
112
112
  "detailsUrl": "http://spdx.org/licenses/AGPL-1.0.json",
113
- "referenceNumber": "175",
113
+ "referenceNumber": "181",
114
114
  "name": "Affero General Public License v1.0",
115
115
  "licenseId": "AGPL-1.0",
116
116
  "seeAlso": [
@@ -122,7 +122,7 @@
122
122
  "reference": "./AGPL-1.0-only.html",
123
123
  "isDeprecatedLicenseId": false,
124
124
  "detailsUrl": "http://spdx.org/licenses/AGPL-1.0-only.json",
125
- "referenceNumber": "71",
125
+ "referenceNumber": "75",
126
126
  "name": "Affero General Public License v1.0 only",
127
127
  "licenseId": "AGPL-1.0-only",
128
128
  "seeAlso": [
@@ -134,7 +134,7 @@
134
134
  "reference": "./AGPL-1.0-or-later.html",
135
135
  "isDeprecatedLicenseId": false,
136
136
  "detailsUrl": "http://spdx.org/licenses/AGPL-1.0-or-later.json",
137
- "referenceNumber": "168",
137
+ "referenceNumber": "174",
138
138
  "name": "Affero General Public License v1.0 or later",
139
139
  "licenseId": "AGPL-1.0-or-later",
140
140
  "seeAlso": [
@@ -147,7 +147,7 @@
147
147
  "isDeprecatedLicenseId": true,
148
148
  "isFsfLibre": true,
149
149
  "detailsUrl": "http://spdx.org/licenses/AGPL-3.0.json",
150
- "referenceNumber": "148",
150
+ "referenceNumber": "153",
151
151
  "name": "GNU Affero General Public License v3.0",
152
152
  "licenseId": "AGPL-3.0",
153
153
  "seeAlso": [
@@ -161,7 +161,7 @@
161
161
  "isDeprecatedLicenseId": false,
162
162
  "isFsfLibre": true,
163
163
  "detailsUrl": "http://spdx.org/licenses/AGPL-3.0-only.json",
164
- "referenceNumber": "298",
164
+ "referenceNumber": "313",
165
165
  "name": "GNU Affero General Public License v3.0 only",
166
166
  "licenseId": "AGPL-3.0-only",
167
167
  "seeAlso": [
@@ -175,7 +175,7 @@
175
175
  "isDeprecatedLicenseId": false,
176
176
  "isFsfLibre": true,
177
177
  "detailsUrl": "http://spdx.org/licenses/AGPL-3.0-or-later.json",
178
- "referenceNumber": "160",
178
+ "referenceNumber": "165",
179
179
  "name": "GNU Affero General Public License v3.0 or later",
180
180
  "licenseId": "AGPL-3.0-or-later",
181
181
  "seeAlso": [
@@ -188,7 +188,7 @@
188
188
  "reference": "./AMDPLPA.html",
189
189
  "isDeprecatedLicenseId": false,
190
190
  "detailsUrl": "http://spdx.org/licenses/AMDPLPA.json",
191
- "referenceNumber": "133",
191
+ "referenceNumber": "138",
192
192
  "name": "AMD\u0027s plpa_map.c License",
193
193
  "licenseId": "AMDPLPA",
194
194
  "seeAlso": [
@@ -200,7 +200,7 @@
200
200
  "reference": "./AML.html",
201
201
  "isDeprecatedLicenseId": false,
202
202
  "detailsUrl": "http://spdx.org/licenses/AML.json",
203
- "referenceNumber": "157",
203
+ "referenceNumber": "162",
204
204
  "name": "Apple MIT License",
205
205
  "licenseId": "AML",
206
206
  "seeAlso": [
@@ -212,7 +212,7 @@
212
212
  "reference": "./AMPAS.html",
213
213
  "isDeprecatedLicenseId": false,
214
214
  "detailsUrl": "http://spdx.org/licenses/AMPAS.json",
215
- "referenceNumber": "136",
215
+ "referenceNumber": "141",
216
216
  "name": "Academy of Motion Picture Arts and Sciences BSD",
217
217
  "licenseId": "AMPAS",
218
218
  "seeAlso": [
@@ -224,7 +224,7 @@
224
224
  "reference": "./ANTLR-PD.html",
225
225
  "isDeprecatedLicenseId": false,
226
226
  "detailsUrl": "http://spdx.org/licenses/ANTLR-PD.json",
227
- "referenceNumber": "44",
227
+ "referenceNumber": "47",
228
228
  "name": "ANTLR Software Rights Notice",
229
229
  "licenseId": "ANTLR-PD",
230
230
  "seeAlso": [
@@ -236,7 +236,7 @@
236
236
  "reference": "./APAFML.html",
237
237
  "isDeprecatedLicenseId": false,
238
238
  "detailsUrl": "http://spdx.org/licenses/APAFML.json",
239
- "referenceNumber": "248",
239
+ "referenceNumber": "261",
240
240
  "name": "Adobe Postscript AFM License",
241
241
  "licenseId": "APAFML",
242
242
  "seeAlso": [
@@ -248,7 +248,7 @@
248
248
  "reference": "./APL-1.0.html",
249
249
  "isDeprecatedLicenseId": false,
250
250
  "detailsUrl": "http://spdx.org/licenses/APL-1.0.json",
251
- "referenceNumber": "278",
251
+ "referenceNumber": "291",
252
252
  "name": "Adaptive Public License 1.0",
253
253
  "licenseId": "APL-1.0",
254
254
  "seeAlso": [
@@ -260,7 +260,7 @@
260
260
  "reference": "./APSL-1.0.html",
261
261
  "isDeprecatedLicenseId": false,
262
262
  "detailsUrl": "http://spdx.org/licenses/APSL-1.0.json",
263
- "referenceNumber": "387",
263
+ "referenceNumber": "408",
264
264
  "name": "Apple Public Source License 1.0",
265
265
  "licenseId": "APSL-1.0",
266
266
  "seeAlso": [
@@ -272,7 +272,7 @@
272
272
  "reference": "./APSL-1.1.html",
273
273
  "isDeprecatedLicenseId": false,
274
274
  "detailsUrl": "http://spdx.org/licenses/APSL-1.1.json",
275
- "referenceNumber": "338",
275
+ "referenceNumber": "357",
276
276
  "name": "Apple Public Source License 1.1",
277
277
  "licenseId": "APSL-1.1",
278
278
  "seeAlso": [
@@ -284,7 +284,7 @@
284
284
  "reference": "./APSL-1.2.html",
285
285
  "isDeprecatedLicenseId": false,
286
286
  "detailsUrl": "http://spdx.org/licenses/APSL-1.2.json",
287
- "referenceNumber": "201",
287
+ "referenceNumber": "212",
288
288
  "name": "Apple Public Source License 1.2",
289
289
  "licenseId": "APSL-1.2",
290
290
  "seeAlso": [
@@ -297,7 +297,7 @@
297
297
  "isDeprecatedLicenseId": false,
298
298
  "isFsfLibre": true,
299
299
  "detailsUrl": "http://spdx.org/licenses/APSL-2.0.json",
300
- "referenceNumber": "141",
300
+ "referenceNumber": "146",
301
301
  "name": "Apple Public Source License 2.0",
302
302
  "licenseId": "APSL-2.0",
303
303
  "seeAlso": [
@@ -309,7 +309,7 @@
309
309
  "reference": "./Abstyles.html",
310
310
  "isDeprecatedLicenseId": false,
311
311
  "detailsUrl": "http://spdx.org/licenses/Abstyles.json",
312
- "referenceNumber": "75",
312
+ "referenceNumber": "79",
313
313
  "name": "Abstyles License",
314
314
  "licenseId": "Abstyles",
315
315
  "seeAlso": [
@@ -321,7 +321,7 @@
321
321
  "reference": "./Adobe-2006.html",
322
322
  "isDeprecatedLicenseId": false,
323
323
  "detailsUrl": "http://spdx.org/licenses/Adobe-2006.json",
324
- "referenceNumber": "310",
324
+ "referenceNumber": "328",
325
325
  "name": "Adobe Systems Incorporated Source Code License Agreement",
326
326
  "licenseId": "Adobe-2006",
327
327
  "seeAlso": [
@@ -333,7 +333,7 @@
333
333
  "reference": "./Adobe-Glyph.html",
334
334
  "isDeprecatedLicenseId": false,
335
335
  "detailsUrl": "http://spdx.org/licenses/Adobe-Glyph.json",
336
- "referenceNumber": "343",
336
+ "referenceNumber": "362",
337
337
  "name": "Adobe Glyph List License",
338
338
  "licenseId": "Adobe-Glyph",
339
339
  "seeAlso": [
@@ -345,7 +345,7 @@
345
345
  "reference": "./Afmparse.html",
346
346
  "isDeprecatedLicenseId": false,
347
347
  "detailsUrl": "http://spdx.org/licenses/Afmparse.json",
348
- "referenceNumber": "332",
348
+ "referenceNumber": "351",
349
349
  "name": "Afmparse License",
350
350
  "licenseId": "Afmparse",
351
351
  "seeAlso": [
@@ -357,7 +357,7 @@
357
357
  "reference": "./Aladdin.html",
358
358
  "isDeprecatedLicenseId": false,
359
359
  "detailsUrl": "http://spdx.org/licenses/Aladdin.json",
360
- "referenceNumber": "315",
360
+ "referenceNumber": "333",
361
361
  "name": "Aladdin Free Public License",
362
362
  "licenseId": "Aladdin",
363
363
  "seeAlso": [
@@ -370,7 +370,7 @@
370
370
  "isDeprecatedLicenseId": false,
371
371
  "isFsfLibre": true,
372
372
  "detailsUrl": "http://spdx.org/licenses/Apache-1.0.json",
373
- "referenceNumber": "32",
373
+ "referenceNumber": "34",
374
374
  "name": "Apache License 1.0",
375
375
  "licenseId": "Apache-1.0",
376
376
  "seeAlso": [
@@ -383,7 +383,7 @@
383
383
  "isDeprecatedLicenseId": false,
384
384
  "isFsfLibre": true,
385
385
  "detailsUrl": "http://spdx.org/licenses/Apache-1.1.json",
386
- "referenceNumber": "274",
386
+ "referenceNumber": "287",
387
387
  "name": "Apache License 1.1",
388
388
  "licenseId": "Apache-1.1",
389
389
  "seeAlso": [
@@ -397,7 +397,7 @@
397
397
  "isDeprecatedLicenseId": false,
398
398
  "isFsfLibre": true,
399
399
  "detailsUrl": "http://spdx.org/licenses/Apache-2.0.json",
400
- "referenceNumber": "366",
400
+ "referenceNumber": "387",
401
401
  "name": "Apache License 2.0",
402
402
  "licenseId": "Apache-2.0",
403
403
  "seeAlso": [
@@ -410,7 +410,7 @@
410
410
  "reference": "./Artistic-1.0.html",
411
411
  "isDeprecatedLicenseId": false,
412
412
  "detailsUrl": "http://spdx.org/licenses/Artistic-1.0.json",
413
- "referenceNumber": "273",
413
+ "referenceNumber": "286",
414
414
  "name": "Artistic License 1.0",
415
415
  "licenseId": "Artistic-1.0",
416
416
  "seeAlso": [
@@ -422,7 +422,7 @@
422
422
  "reference": "./Artistic-1.0-Perl.html",
423
423
  "isDeprecatedLicenseId": false,
424
424
  "detailsUrl": "http://spdx.org/licenses/Artistic-1.0-Perl.json",
425
- "referenceNumber": "306",
425
+ "referenceNumber": "323",
426
426
  "name": "Artistic License 1.0 (Perl)",
427
427
  "licenseId": "Artistic-1.0-Perl",
428
428
  "seeAlso": [
@@ -434,7 +434,7 @@
434
434
  "reference": "./Artistic-1.0-cl8.html",
435
435
  "isDeprecatedLicenseId": false,
436
436
  "detailsUrl": "http://spdx.org/licenses/Artistic-1.0-cl8.json",
437
- "referenceNumber": "229",
437
+ "referenceNumber": "241",
438
438
  "name": "Artistic License 1.0 w/clause 8",
439
439
  "licenseId": "Artistic-1.0-cl8",
440
440
  "seeAlso": [
@@ -447,7 +447,7 @@
447
447
  "isDeprecatedLicenseId": false,
448
448
  "isFsfLibre": true,
449
449
  "detailsUrl": "http://spdx.org/licenses/Artistic-2.0.json",
450
- "referenceNumber": "78",
450
+ "referenceNumber": "82",
451
451
  "name": "Artistic License 2.0",
452
452
  "licenseId": "Artistic-2.0",
453
453
  "seeAlso": [
@@ -460,7 +460,7 @@
460
460
  "reference": "./BSD-1-Clause.html",
461
461
  "isDeprecatedLicenseId": false,
462
462
  "detailsUrl": "http://spdx.org/licenses/BSD-1-Clause.json",
463
- "referenceNumber": "389",
463
+ "referenceNumber": "410",
464
464
  "name": "BSD 1-Clause License",
465
465
  "licenseId": "BSD-1-Clause",
466
466
  "seeAlso": [
@@ -472,7 +472,7 @@
472
472
  "reference": "./BSD-2-Clause.html",
473
473
  "isDeprecatedLicenseId": false,
474
474
  "detailsUrl": "http://spdx.org/licenses/BSD-2-Clause.json",
475
- "referenceNumber": "307",
475
+ "referenceNumber": "324",
476
476
  "name": "BSD 2-Clause \"Simplified\" License",
477
477
  "licenseId": "BSD-2-Clause",
478
478
  "seeAlso": [
@@ -482,10 +482,10 @@
482
482
  },
483
483
  {
484
484
  "reference": "./BSD-2-Clause-FreeBSD.html",
485
- "isDeprecatedLicenseId": false,
485
+ "isDeprecatedLicenseId": true,
486
486
  "isFsfLibre": true,
487
487
  "detailsUrl": "http://spdx.org/licenses/BSD-2-Clause-FreeBSD.json",
488
- "referenceNumber": "281",
488
+ "referenceNumber": "295",
489
489
  "name": "BSD 2-Clause FreeBSD License",
490
490
  "licenseId": "BSD-2-Clause-FreeBSD",
491
491
  "seeAlso": [
@@ -497,7 +497,7 @@
497
497
  "reference": "./BSD-2-Clause-NetBSD.html",
498
498
  "isDeprecatedLicenseId": true,
499
499
  "detailsUrl": "http://spdx.org/licenses/BSD-2-Clause-NetBSD.json",
500
- "referenceNumber": "186",
500
+ "referenceNumber": "194",
501
501
  "name": "BSD 2-Clause NetBSD License",
502
502
  "licenseId": "BSD-2-Clause-NetBSD",
503
503
  "seeAlso": [
@@ -509,7 +509,7 @@
509
509
  "reference": "./BSD-2-Clause-Patent.html",
510
510
  "isDeprecatedLicenseId": false,
511
511
  "detailsUrl": "http://spdx.org/licenses/BSD-2-Clause-Patent.json",
512
- "referenceNumber": "362",
512
+ "referenceNumber": "383",
513
513
  "name": "BSD-2-Clause Plus Patent License",
514
514
  "licenseId": "BSD-2-Clause-Patent",
515
515
  "seeAlso": [
@@ -517,12 +517,26 @@
517
517
  ],
518
518
  "isOsiApproved": true
519
519
  },
520
+ {
521
+ "reference": "./BSD-2-Clause-Views.html",
522
+ "isDeprecatedLicenseId": false,
523
+ "detailsUrl": "http://spdx.org/licenses/BSD-2-Clause-Views.json",
524
+ "referenceNumber": "292",
525
+ "name": "BSD 2-Clause with views sentence",
526
+ "licenseId": "BSD-2-Clause-Views",
527
+ "seeAlso": [
528
+ "http://www.freebsd.org/copyright/freebsd-license.html",
529
+ "https://people.freebsd.org/~ivoras/wine/patch-wine-nvidia.sh",
530
+ "https://github.com/protegeproject/protege/blob/master/license.txt"
531
+ ],
532
+ "isOsiApproved": false
533
+ },
520
534
  {
521
535
  "reference": "./BSD-3-Clause.html",
522
536
  "isDeprecatedLicenseId": false,
523
537
  "isFsfLibre": true,
524
538
  "detailsUrl": "http://spdx.org/licenses/BSD-3-Clause.json",
525
- "referenceNumber": "202",
539
+ "referenceNumber": "213",
526
540
  "name": "BSD 3-Clause \"New\" or \"Revised\" License",
527
541
  "licenseId": "BSD-3-Clause",
528
542
  "seeAlso": [
@@ -534,7 +548,7 @@
534
548
  "reference": "./BSD-3-Clause-Attribution.html",
535
549
  "isDeprecatedLicenseId": false,
536
550
  "detailsUrl": "http://spdx.org/licenses/BSD-3-Clause-Attribution.json",
537
- "referenceNumber": "39",
551
+ "referenceNumber": "42",
538
552
  "name": "BSD with attribution",
539
553
  "licenseId": "BSD-3-Clause-Attribution",
540
554
  "seeAlso": [
@@ -547,7 +561,7 @@
547
561
  "isDeprecatedLicenseId": false,
548
562
  "isFsfLibre": true,
549
563
  "detailsUrl": "http://spdx.org/licenses/BSD-3-Clause-Clear.json",
550
- "referenceNumber": "88",
564
+ "referenceNumber": "93",
551
565
  "name": "BSD 3-Clause Clear License",
552
566
  "licenseId": "BSD-3-Clause-Clear",
553
567
  "seeAlso": [
@@ -559,7 +573,7 @@
559
573
  "reference": "./BSD-3-Clause-LBNL.html",
560
574
  "isDeprecatedLicenseId": false,
561
575
  "detailsUrl": "http://spdx.org/licenses/BSD-3-Clause-LBNL.json",
562
- "referenceNumber": "147",
576
+ "referenceNumber": "152",
563
577
  "name": "Lawrence Berkeley National Labs BSD variant license",
564
578
  "licenseId": "BSD-3-Clause-LBNL",
565
579
  "seeAlso": [
@@ -571,7 +585,7 @@
571
585
  "reference": "./BSD-3-Clause-No-Nuclear-License.html",
572
586
  "isDeprecatedLicenseId": false,
573
587
  "detailsUrl": "http://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.json",
574
- "referenceNumber": "62",
588
+ "referenceNumber": "66",
575
589
  "name": "BSD 3-Clause No Nuclear License",
576
590
  "licenseId": "BSD-3-Clause-No-Nuclear-License",
577
591
  "seeAlso": [
@@ -583,7 +597,7 @@
583
597
  "reference": "./BSD-3-Clause-No-Nuclear-License-2014.html",
584
598
  "isDeprecatedLicenseId": false,
585
599
  "detailsUrl": "http://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.json",
586
- "referenceNumber": "342",
600
+ "referenceNumber": "361",
587
601
  "name": "BSD 3-Clause No Nuclear License 2014",
588
602
  "licenseId": "BSD-3-Clause-No-Nuclear-License-2014",
589
603
  "seeAlso": [
@@ -595,7 +609,7 @@
595
609
  "reference": "./BSD-3-Clause-No-Nuclear-Warranty.html",
596
610
  "isDeprecatedLicenseId": false,
597
611
  "detailsUrl": "http://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.json",
598
- "referenceNumber": "117",
612
+ "referenceNumber": "122",
599
613
  "name": "BSD 3-Clause No Nuclear Warranty",
600
614
  "licenseId": "BSD-3-Clause-No-Nuclear-Warranty",
601
615
  "seeAlso": [
@@ -607,7 +621,7 @@
607
621
  "reference": "./BSD-3-Clause-Open-MPI.html",
608
622
  "isDeprecatedLicenseId": false,
609
623
  "detailsUrl": "http://spdx.org/licenses/BSD-3-Clause-Open-MPI.json",
610
- "referenceNumber": "214",
624
+ "referenceNumber": "225",
611
625
  "name": "BSD 3-Clause Open MPI variant",
612
626
  "licenseId": "BSD-3-Clause-Open-MPI",
613
627
  "seeAlso": [
@@ -621,7 +635,7 @@
621
635
  "isDeprecatedLicenseId": false,
622
636
  "isFsfLibre": true,
623
637
  "detailsUrl": "http://spdx.org/licenses/BSD-4-Clause.json",
624
- "referenceNumber": "69",
638
+ "referenceNumber": "73",
625
639
  "name": "BSD 4-Clause \"Original\" or \"Old\" License",
626
640
  "licenseId": "BSD-4-Clause",
627
641
  "seeAlso": [
@@ -633,7 +647,7 @@
633
647
  "reference": "./BSD-4-Clause-UC.html",
634
648
  "isDeprecatedLicenseId": false,
635
649
  "detailsUrl": "http://spdx.org/licenses/BSD-4-Clause-UC.json",
636
- "referenceNumber": "372",
650
+ "referenceNumber": "393",
637
651
  "name": "BSD-4-Clause (University of California-Specific)",
638
652
  "licenseId": "BSD-4-Clause-UC",
639
653
  "seeAlso": [
@@ -645,7 +659,7 @@
645
659
  "reference": "./BSD-Protection.html",
646
660
  "isDeprecatedLicenseId": false,
647
661
  "detailsUrl": "http://spdx.org/licenses/BSD-Protection.json",
648
- "referenceNumber": "400",
662
+ "referenceNumber": "421",
649
663
  "name": "BSD Protection License",
650
664
  "licenseId": "BSD-Protection",
651
665
  "seeAlso": [
@@ -657,7 +671,7 @@
657
671
  "reference": "./BSD-Source-Code.html",
658
672
  "isDeprecatedLicenseId": false,
659
673
  "detailsUrl": "http://spdx.org/licenses/BSD-Source-Code.json",
660
- "referenceNumber": "169",
674
+ "referenceNumber": "175",
661
675
  "name": "BSD Source Code Attribution",
662
676
  "licenseId": "BSD-Source-Code",
663
677
  "seeAlso": [
@@ -670,7 +684,7 @@
670
684
  "isDeprecatedLicenseId": false,
671
685
  "isFsfLibre": true,
672
686
  "detailsUrl": "http://spdx.org/licenses/BSL-1.0.json",
673
- "referenceNumber": "295",
687
+ "referenceNumber": "310",
674
688
  "name": "Boost Software License 1.0",
675
689
  "licenseId": "BSL-1.0",
676
690
  "seeAlso": [
@@ -683,7 +697,7 @@
683
697
  "reference": "./Bahyph.html",
684
698
  "isDeprecatedLicenseId": false,
685
699
  "detailsUrl": "http://spdx.org/licenses/Bahyph.json",
686
- "referenceNumber": "151",
700
+ "referenceNumber": "156",
687
701
  "name": "Bahyph License",
688
702
  "licenseId": "Bahyph",
689
703
  "seeAlso": [
@@ -695,7 +709,7 @@
695
709
  "reference": "./Barr.html",
696
710
  "isDeprecatedLicenseId": false,
697
711
  "detailsUrl": "http://spdx.org/licenses/Barr.json",
698
- "referenceNumber": "128",
712
+ "referenceNumber": "133",
699
713
  "name": "Barr License",
700
714
  "licenseId": "Barr",
701
715
  "seeAlso": [
@@ -707,7 +721,7 @@
707
721
  "reference": "./Beerware.html",
708
722
  "isDeprecatedLicenseId": false,
709
723
  "detailsUrl": "http://spdx.org/licenses/Beerware.json",
710
- "referenceNumber": "251",
724
+ "referenceNumber": "264",
711
725
  "name": "Beerware License",
712
726
  "licenseId": "Beerware",
713
727
  "seeAlso": [
@@ -720,7 +734,7 @@
720
734
  "reference": "./BitTorrent-1.0.html",
721
735
  "isDeprecatedLicenseId": false,
722
736
  "detailsUrl": "http://spdx.org/licenses/BitTorrent-1.0.json",
723
- "referenceNumber": "207",
737
+ "referenceNumber": "218",
724
738
  "name": "BitTorrent Open Source License v1.0",
725
739
  "licenseId": "BitTorrent-1.0",
726
740
  "seeAlso": [
@@ -733,7 +747,7 @@
733
747
  "isDeprecatedLicenseId": false,
734
748
  "isFsfLibre": true,
735
749
  "detailsUrl": "http://spdx.org/licenses/BitTorrent-1.1.json",
736
- "referenceNumber": "188",
750
+ "referenceNumber": "197",
737
751
  "name": "BitTorrent Open Source License v1.1",
738
752
  "licenseId": "BitTorrent-1.1",
739
753
  "seeAlso": [
@@ -745,7 +759,7 @@
745
759
  "reference": "./BlueOak-1.0.0.html",
746
760
  "isDeprecatedLicenseId": false,
747
761
  "detailsUrl": "http://spdx.org/licenses/BlueOak-1.0.0.json",
748
- "referenceNumber": "211",
762
+ "referenceNumber": "222",
749
763
  "name": "Blue Oak Model License 1.0.0",
750
764
  "licenseId": "BlueOak-1.0.0",
751
765
  "seeAlso": [
@@ -757,7 +771,7 @@
757
771
  "reference": "./Borceux.html",
758
772
  "isDeprecatedLicenseId": false,
759
773
  "detailsUrl": "http://spdx.org/licenses/Borceux.json",
760
- "referenceNumber": "305",
774
+ "referenceNumber": "322",
761
775
  "name": "Borceux license",
762
776
  "licenseId": "Borceux",
763
777
  "seeAlso": [
@@ -769,7 +783,7 @@
769
783
  "reference": "./CAL-1.0.html",
770
784
  "isDeprecatedLicenseId": false,
771
785
  "detailsUrl": "http://spdx.org/licenses/CAL-1.0.json",
772
- "referenceNumber": "59",
786
+ "referenceNumber": "63",
773
787
  "name": "Cryptographic Autonomy License 1.0",
774
788
  "licenseId": "CAL-1.0",
775
789
  "seeAlso": [
@@ -782,8 +796,8 @@
782
796
  "reference": "./CAL-1.0-Combined-Work-Exception.html",
783
797
  "isDeprecatedLicenseId": false,
784
798
  "detailsUrl": "http://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.json",
785
- "referenceNumber": "80",
786
- "name": "Cryptographic Autonomy License 1.0",
799
+ "referenceNumber": "84",
800
+ "name": "Cryptographic Autonomy License 1.0 (Combined Work Exception)",
787
801
  "licenseId": "CAL-1.0-Combined-Work-Exception",
788
802
  "seeAlso": [
789
803
  "http://cryptographicautonomylicense.com/license-text.html",
@@ -795,7 +809,7 @@
795
809
  "reference": "./CATOSL-1.1.html",
796
810
  "isDeprecatedLicenseId": false,
797
811
  "detailsUrl": "http://spdx.org/licenses/CATOSL-1.1.json",
798
- "referenceNumber": "234",
812
+ "referenceNumber": "246",
799
813
  "name": "Computer Associates Trusted Open Source License 1.1",
800
814
  "licenseId": "CATOSL-1.1",
801
815
  "seeAlso": [
@@ -807,7 +821,7 @@
807
821
  "reference": "./CC-BY-1.0.html",
808
822
  "isDeprecatedLicenseId": false,
809
823
  "detailsUrl": "http://spdx.org/licenses/CC-BY-1.0.json",
810
- "referenceNumber": "23",
824
+ "referenceNumber": "25",
811
825
  "name": "Creative Commons Attribution 1.0 Generic",
812
826
  "licenseId": "CC-BY-1.0",
813
827
  "seeAlso": [
@@ -819,7 +833,7 @@
819
833
  "reference": "./CC-BY-2.0.html",
820
834
  "isDeprecatedLicenseId": false,
821
835
  "detailsUrl": "http://spdx.org/licenses/CC-BY-2.0.json",
822
- "referenceNumber": "61",
836
+ "referenceNumber": "65",
823
837
  "name": "Creative Commons Attribution 2.0 Generic",
824
838
  "licenseId": "CC-BY-2.0",
825
839
  "seeAlso": [
@@ -831,7 +845,7 @@
831
845
  "reference": "./CC-BY-2.5.html",
832
846
  "isDeprecatedLicenseId": false,
833
847
  "detailsUrl": "http://spdx.org/licenses/CC-BY-2.5.json",
834
- "referenceNumber": "187",
848
+ "referenceNumber": "195",
835
849
  "name": "Creative Commons Attribution 2.5 Generic",
836
850
  "licenseId": "CC-BY-2.5",
837
851
  "seeAlso": [
@@ -843,7 +857,7 @@
843
857
  "reference": "./CC-BY-3.0.html",
844
858
  "isDeprecatedLicenseId": false,
845
859
  "detailsUrl": "http://spdx.org/licenses/CC-BY-3.0.json",
846
- "referenceNumber": "344",
860
+ "referenceNumber": "363",
847
861
  "name": "Creative Commons Attribution 3.0 Unported",
848
862
  "licenseId": "CC-BY-3.0",
849
863
  "seeAlso": [
@@ -851,12 +865,36 @@
851
865
  ],
852
866
  "isOsiApproved": false
853
867
  },
868
+ {
869
+ "reference": "./CC-BY-3.0-AT.html",
870
+ "isDeprecatedLicenseId": false,
871
+ "detailsUrl": "http://spdx.org/licenses/CC-BY-3.0-AT.json",
872
+ "referenceNumber": "238",
873
+ "name": "Creative Commons Attribution 3.0 Austria",
874
+ "licenseId": "CC-BY-3.0-AT",
875
+ "seeAlso": [
876
+ "https://creativecommons.org/licenses/by/3.0/at/legalcode"
877
+ ],
878
+ "isOsiApproved": false
879
+ },
880
+ {
881
+ "reference": "./CC-BY-3.0-US.html",
882
+ "isDeprecatedLicenseId": false,
883
+ "detailsUrl": "http://spdx.org/licenses/CC-BY-3.0-US.json",
884
+ "referenceNumber": "336",
885
+ "name": "Creative Commons Attribution 3.0 United States",
886
+ "licenseId": "CC-BY-3.0-US",
887
+ "seeAlso": [
888
+ "https://creativecommons.org/licenses/by/3.0/us/legalcode"
889
+ ],
890
+ "isOsiApproved": false
891
+ },
854
892
  {
855
893
  "reference": "./CC-BY-4.0.html",
856
894
  "isDeprecatedLicenseId": false,
857
895
  "isFsfLibre": true,
858
896
  "detailsUrl": "http://spdx.org/licenses/CC-BY-4.0.json",
859
- "referenceNumber": "218",
897
+ "referenceNumber": "229",
860
898
  "name": "Creative Commons Attribution 4.0 International",
861
899
  "licenseId": "CC-BY-4.0",
862
900
  "seeAlso": [
@@ -868,7 +906,7 @@
868
906
  "reference": "./CC-BY-NC-1.0.html",
869
907
  "isDeprecatedLicenseId": false,
870
908
  "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-1.0.json",
871
- "referenceNumber": "231",
909
+ "referenceNumber": "243",
872
910
  "name": "Creative Commons Attribution Non Commercial 1.0 Generic",
873
911
  "licenseId": "CC-BY-NC-1.0",
874
912
  "seeAlso": [
@@ -880,7 +918,7 @@
880
918
  "reference": "./CC-BY-NC-2.0.html",
881
919
  "isDeprecatedLicenseId": false,
882
920
  "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-2.0.json",
883
- "referenceNumber": "326",
921
+ "referenceNumber": "345",
884
922
  "name": "Creative Commons Attribution Non Commercial 2.0 Generic",
885
923
  "licenseId": "CC-BY-NC-2.0",
886
924
  "seeAlso": [
@@ -892,7 +930,7 @@
892
930
  "reference": "./CC-BY-NC-2.5.html",
893
931
  "isDeprecatedLicenseId": false,
894
932
  "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-2.5.json",
895
- "referenceNumber": "398",
933
+ "referenceNumber": "419",
896
934
  "name": "Creative Commons Attribution Non Commercial 2.5 Generic",
897
935
  "licenseId": "CC-BY-NC-2.5",
898
936
  "seeAlso": [
@@ -904,7 +942,7 @@
904
942
  "reference": "./CC-BY-NC-3.0.html",
905
943
  "isDeprecatedLicenseId": false,
906
944
  "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-3.0.json",
907
- "referenceNumber": "336",
945
+ "referenceNumber": "355",
908
946
  "name": "Creative Commons Attribution Non Commercial 3.0 Unported",
909
947
  "licenseId": "CC-BY-NC-3.0",
910
948
  "seeAlso": [
@@ -916,7 +954,7 @@
916
954
  "reference": "./CC-BY-NC-4.0.html",
917
955
  "isDeprecatedLicenseId": false,
918
956
  "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-4.0.json",
919
- "referenceNumber": "272",
957
+ "referenceNumber": "285",
920
958
  "name": "Creative Commons Attribution Non Commercial 4.0 International",
921
959
  "licenseId": "CC-BY-NC-4.0",
922
960
  "seeAlso": [
@@ -928,7 +966,7 @@
928
966
  "reference": "./CC-BY-NC-ND-1.0.html",
929
967
  "isDeprecatedLicenseId": false,
930
968
  "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-ND-1.0.json",
931
- "referenceNumber": "102",
969
+ "referenceNumber": "107",
932
970
  "name": "Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic",
933
971
  "licenseId": "CC-BY-NC-ND-1.0",
934
972
  "seeAlso": [
@@ -940,7 +978,7 @@
940
978
  "reference": "./CC-BY-NC-ND-2.0.html",
941
979
  "isDeprecatedLicenseId": false,
942
980
  "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-ND-2.0.json",
943
- "referenceNumber": "138",
981
+ "referenceNumber": "143",
944
982
  "name": "Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic",
945
983
  "licenseId": "CC-BY-NC-ND-2.0",
946
984
  "seeAlso": [
@@ -952,7 +990,7 @@
952
990
  "reference": "./CC-BY-NC-ND-2.5.html",
953
991
  "isDeprecatedLicenseId": false,
954
992
  "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-ND-2.5.json",
955
- "referenceNumber": "30",
993
+ "referenceNumber": "32",
956
994
  "name": "Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic",
957
995
  "licenseId": "CC-BY-NC-ND-2.5",
958
996
  "seeAlso": [
@@ -964,7 +1002,7 @@
964
1002
  "reference": "./CC-BY-NC-ND-3.0.html",
965
1003
  "isDeprecatedLicenseId": false,
966
1004
  "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-ND-3.0.json",
967
- "referenceNumber": "41",
1005
+ "referenceNumber": "44",
968
1006
  "name": "Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported",
969
1007
  "licenseId": "CC-BY-NC-ND-3.0",
970
1008
  "seeAlso": [
@@ -972,11 +1010,23 @@
972
1010
  ],
973
1011
  "isOsiApproved": false
974
1012
  },
1013
+ {
1014
+ "reference": "./CC-BY-NC-ND-3.0-IGO.html",
1015
+ "isDeprecatedLicenseId": false,
1016
+ "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.json",
1017
+ "referenceNumber": "368",
1018
+ "name": "Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO",
1019
+ "licenseId": "CC-BY-NC-ND-3.0-IGO",
1020
+ "seeAlso": [
1021
+ "https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode"
1022
+ ],
1023
+ "isOsiApproved": false
1024
+ },
975
1025
  {
976
1026
  "reference": "./CC-BY-NC-ND-4.0.html",
977
1027
  "isDeprecatedLicenseId": false,
978
1028
  "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-ND-4.0.json",
979
- "referenceNumber": "172",
1029
+ "referenceNumber": "178",
980
1030
  "name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International",
981
1031
  "licenseId": "CC-BY-NC-ND-4.0",
982
1032
  "seeAlso": [
@@ -988,7 +1038,7 @@
988
1038
  "reference": "./CC-BY-NC-SA-1.0.html",
989
1039
  "isDeprecatedLicenseId": false,
990
1040
  "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-SA-1.0.json",
991
- "referenceNumber": "120",
1041
+ "referenceNumber": "125",
992
1042
  "name": "Creative Commons Attribution Non Commercial Share Alike 1.0 Generic",
993
1043
  "licenseId": "CC-BY-NC-SA-1.0",
994
1044
  "seeAlso": [
@@ -1000,7 +1050,7 @@
1000
1050
  "reference": "./CC-BY-NC-SA-2.0.html",
1001
1051
  "isDeprecatedLicenseId": false,
1002
1052
  "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-SA-2.0.json",
1003
- "referenceNumber": "411",
1053
+ "referenceNumber": "433",
1004
1054
  "name": "Creative Commons Attribution Non Commercial Share Alike 2.0 Generic",
1005
1055
  "licenseId": "CC-BY-NC-SA-2.0",
1006
1056
  "seeAlso": [
@@ -1012,7 +1062,7 @@
1012
1062
  "reference": "./CC-BY-NC-SA-2.5.html",
1013
1063
  "isDeprecatedLicenseId": false,
1014
1064
  "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-SA-2.5.json",
1015
- "referenceNumber": "215",
1065
+ "referenceNumber": "226",
1016
1066
  "name": "Creative Commons Attribution Non Commercial Share Alike 2.5 Generic",
1017
1067
  "licenseId": "CC-BY-NC-SA-2.5",
1018
1068
  "seeAlso": [
@@ -1024,7 +1074,7 @@
1024
1074
  "reference": "./CC-BY-NC-SA-3.0.html",
1025
1075
  "isDeprecatedLicenseId": false,
1026
1076
  "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-SA-3.0.json",
1027
- "referenceNumber": "360",
1077
+ "referenceNumber": "381",
1028
1078
  "name": "Creative Commons Attribution Non Commercial Share Alike 3.0 Unported",
1029
1079
  "licenseId": "CC-BY-NC-SA-3.0",
1030
1080
  "seeAlso": [
@@ -1036,7 +1086,7 @@
1036
1086
  "reference": "./CC-BY-NC-SA-4.0.html",
1037
1087
  "isDeprecatedLicenseId": false,
1038
1088
  "detailsUrl": "http://spdx.org/licenses/CC-BY-NC-SA-4.0.json",
1039
- "referenceNumber": "331",
1089
+ "referenceNumber": "350",
1040
1090
  "name": "Creative Commons Attribution Non Commercial Share Alike 4.0 International",
1041
1091
  "licenseId": "CC-BY-NC-SA-4.0",
1042
1092
  "seeAlso": [
@@ -1048,7 +1098,7 @@
1048
1098
  "reference": "./CC-BY-ND-1.0.html",
1049
1099
  "isDeprecatedLicenseId": false,
1050
1100
  "detailsUrl": "http://spdx.org/licenses/CC-BY-ND-1.0.json",
1051
- "referenceNumber": "94",
1101
+ "referenceNumber": "99",
1052
1102
  "name": "Creative Commons Attribution No Derivatives 1.0 Generic",
1053
1103
  "licenseId": "CC-BY-ND-1.0",
1054
1104
  "seeAlso": [
@@ -1060,7 +1110,7 @@
1060
1110
  "reference": "./CC-BY-ND-2.0.html",
1061
1111
  "isDeprecatedLicenseId": false,
1062
1112
  "detailsUrl": "http://spdx.org/licenses/CC-BY-ND-2.0.json",
1063
- "referenceNumber": "46",
1113
+ "referenceNumber": "49",
1064
1114
  "name": "Creative Commons Attribution No Derivatives 2.0 Generic",
1065
1115
  "licenseId": "CC-BY-ND-2.0",
1066
1116
  "seeAlso": [
@@ -1072,7 +1122,7 @@
1072
1122
  "reference": "./CC-BY-ND-2.5.html",
1073
1123
  "isDeprecatedLicenseId": false,
1074
1124
  "detailsUrl": "http://spdx.org/licenses/CC-BY-ND-2.5.json",
1075
- "referenceNumber": "27",
1125
+ "referenceNumber": "29",
1076
1126
  "name": "Creative Commons Attribution No Derivatives 2.5 Generic",
1077
1127
  "licenseId": "CC-BY-ND-2.5",
1078
1128
  "seeAlso": [
@@ -1084,7 +1134,7 @@
1084
1134
  "reference": "./CC-BY-ND-3.0.html",
1085
1135
  "isDeprecatedLicenseId": false,
1086
1136
  "detailsUrl": "http://spdx.org/licenses/CC-BY-ND-3.0.json",
1087
- "referenceNumber": "284",
1137
+ "referenceNumber": "298",
1088
1138
  "name": "Creative Commons Attribution No Derivatives 3.0 Unported",
1089
1139
  "licenseId": "CC-BY-ND-3.0",
1090
1140
  "seeAlso": [
@@ -1096,7 +1146,7 @@
1096
1146
  "reference": "./CC-BY-ND-4.0.html",
1097
1147
  "isDeprecatedLicenseId": false,
1098
1148
  "detailsUrl": "http://spdx.org/licenses/CC-BY-ND-4.0.json",
1099
- "referenceNumber": "318",
1149
+ "referenceNumber": "337",
1100
1150
  "name": "Creative Commons Attribution No Derivatives 4.0 International",
1101
1151
  "licenseId": "CC-BY-ND-4.0",
1102
1152
  "seeAlso": [
@@ -1108,7 +1158,7 @@
1108
1158
  "reference": "./CC-BY-SA-1.0.html",
1109
1159
  "isDeprecatedLicenseId": false,
1110
1160
  "detailsUrl": "http://spdx.org/licenses/CC-BY-SA-1.0.json",
1111
- "referenceNumber": "403",
1161
+ "referenceNumber": "424",
1112
1162
  "name": "Creative Commons Attribution Share Alike 1.0 Generic",
1113
1163
  "licenseId": "CC-BY-SA-1.0",
1114
1164
  "seeAlso": [
@@ -1120,7 +1170,7 @@
1120
1170
  "reference": "./CC-BY-SA-2.0.html",
1121
1171
  "isDeprecatedLicenseId": false,
1122
1172
  "detailsUrl": "http://spdx.org/licenses/CC-BY-SA-2.0.json",
1123
- "referenceNumber": "367",
1173
+ "referenceNumber": "388",
1124
1174
  "name": "Creative Commons Attribution Share Alike 2.0 Generic",
1125
1175
  "licenseId": "CC-BY-SA-2.0",
1126
1176
  "seeAlso": [
@@ -1128,11 +1178,23 @@
1128
1178
  ],
1129
1179
  "isOsiApproved": false
1130
1180
  },
1181
+ {
1182
+ "reference": "./CC-BY-SA-2.0-UK.html",
1183
+ "isDeprecatedLicenseId": false,
1184
+ "detailsUrl": "http://spdx.org/licenses/CC-BY-SA-2.0-UK.json",
1185
+ "referenceNumber": "2",
1186
+ "name": "Creative Commons Attribution Share Alike 2.0 England and Wales",
1187
+ "licenseId": "CC-BY-SA-2.0-UK",
1188
+ "seeAlso": [
1189
+ "https://creativecommons.org/licenses/by-sa/2.0/uk/legalcode"
1190
+ ],
1191
+ "isOsiApproved": false
1192
+ },
1131
1193
  {
1132
1194
  "reference": "./CC-BY-SA-2.5.html",
1133
1195
  "isDeprecatedLicenseId": false,
1134
1196
  "detailsUrl": "http://spdx.org/licenses/CC-BY-SA-2.5.json",
1135
- "referenceNumber": "203",
1197
+ "referenceNumber": "214",
1136
1198
  "name": "Creative Commons Attribution Share Alike 2.5 Generic",
1137
1199
  "licenseId": "CC-BY-SA-2.5",
1138
1200
  "seeAlso": [
@@ -1144,7 +1206,7 @@
1144
1206
  "reference": "./CC-BY-SA-3.0.html",
1145
1207
  "isDeprecatedLicenseId": false,
1146
1208
  "detailsUrl": "http://spdx.org/licenses/CC-BY-SA-3.0.json",
1147
- "referenceNumber": "233",
1209
+ "referenceNumber": "245",
1148
1210
  "name": "Creative Commons Attribution Share Alike 3.0 Unported",
1149
1211
  "licenseId": "CC-BY-SA-3.0",
1150
1212
  "seeAlso": [
@@ -1152,12 +1214,24 @@
1152
1214
  ],
1153
1215
  "isOsiApproved": false
1154
1216
  },
1217
+ {
1218
+ "reference": "./CC-BY-SA-3.0-AT.html",
1219
+ "isDeprecatedLicenseId": false,
1220
+ "detailsUrl": "http://spdx.org/licenses/CC-BY-SA-3.0-AT.json",
1221
+ "referenceNumber": "306",
1222
+ "name": "Creative Commons Attribution-Share Alike 3.0 Austria",
1223
+ "licenseId": "CC-BY-SA-3.0-AT",
1224
+ "seeAlso": [
1225
+ "https://creativecommons.org/licenses/by-sa/3.0/at/legalcode"
1226
+ ],
1227
+ "isOsiApproved": false
1228
+ },
1155
1229
  {
1156
1230
  "reference": "./CC-BY-SA-4.0.html",
1157
1231
  "isDeprecatedLicenseId": false,
1158
1232
  "isFsfLibre": true,
1159
1233
  "detailsUrl": "http://spdx.org/licenses/CC-BY-SA-4.0.json",
1160
- "referenceNumber": "297",
1234
+ "referenceNumber": "312",
1161
1235
  "name": "Creative Commons Attribution Share Alike 4.0 International",
1162
1236
  "licenseId": "CC-BY-SA-4.0",
1163
1237
  "seeAlso": [
@@ -1169,7 +1243,7 @@
1169
1243
  "reference": "./CC-PDDC.html",
1170
1244
  "isDeprecatedLicenseId": false,
1171
1245
  "detailsUrl": "http://spdx.org/licenses/CC-PDDC.json",
1172
- "referenceNumber": "92",
1246
+ "referenceNumber": "97",
1173
1247
  "name": "Creative Commons Public Domain Dedication and Certification",
1174
1248
  "licenseId": "CC-PDDC",
1175
1249
  "seeAlso": [
@@ -1182,7 +1256,7 @@
1182
1256
  "isDeprecatedLicenseId": false,
1183
1257
  "isFsfLibre": true,
1184
1258
  "detailsUrl": "http://spdx.org/licenses/CC0-1.0.json",
1185
- "referenceNumber": "66",
1259
+ "referenceNumber": "70",
1186
1260
  "name": "Creative Commons Zero v1.0 Universal",
1187
1261
  "licenseId": "CC0-1.0",
1188
1262
  "seeAlso": [
@@ -1195,7 +1269,7 @@
1195
1269
  "isDeprecatedLicenseId": false,
1196
1270
  "isFsfLibre": true,
1197
1271
  "detailsUrl": "http://spdx.org/licenses/CDDL-1.0.json",
1198
- "referenceNumber": "335",
1272
+ "referenceNumber": "354",
1199
1273
  "name": "Common Development and Distribution License 1.0",
1200
1274
  "licenseId": "CDDL-1.0",
1201
1275
  "seeAlso": [
@@ -1207,7 +1281,7 @@
1207
1281
  "reference": "./CDDL-1.1.html",
1208
1282
  "isDeprecatedLicenseId": false,
1209
1283
  "detailsUrl": "http://spdx.org/licenses/CDDL-1.1.json",
1210
- "referenceNumber": "283",
1284
+ "referenceNumber": "297",
1211
1285
  "name": "Common Development and Distribution License 1.1",
1212
1286
  "licenseId": "CDDL-1.1",
1213
1287
  "seeAlso": [
@@ -1220,7 +1294,7 @@
1220
1294
  "reference": "./CDLA-Permissive-1.0.html",
1221
1295
  "isDeprecatedLicenseId": false,
1222
1296
  "detailsUrl": "http://spdx.org/licenses/CDLA-Permissive-1.0.json",
1223
- "referenceNumber": "108",
1297
+ "referenceNumber": "113",
1224
1298
  "name": "Community Data License Agreement Permissive 1.0",
1225
1299
  "licenseId": "CDLA-Permissive-1.0",
1226
1300
  "seeAlso": [
@@ -1232,7 +1306,7 @@
1232
1306
  "reference": "./CDLA-Sharing-1.0.html",
1233
1307
  "isDeprecatedLicenseId": false,
1234
1308
  "detailsUrl": "http://spdx.org/licenses/CDLA-Sharing-1.0.json",
1235
- "referenceNumber": "178",
1309
+ "referenceNumber": "185",
1236
1310
  "name": "Community Data License Agreement Sharing 1.0",
1237
1311
  "licenseId": "CDLA-Sharing-1.0",
1238
1312
  "seeAlso": [
@@ -1244,7 +1318,7 @@
1244
1318
  "reference": "./CECILL-1.0.html",
1245
1319
  "isDeprecatedLicenseId": false,
1246
1320
  "detailsUrl": "http://spdx.org/licenses/CECILL-1.0.json",
1247
- "referenceNumber": "10",
1321
+ "referenceNumber": "12",
1248
1322
  "name": "CeCILL Free Software License Agreement v1.0",
1249
1323
  "licenseId": "CECILL-1.0",
1250
1324
  "seeAlso": [
@@ -1256,7 +1330,7 @@
1256
1330
  "reference": "./CECILL-1.1.html",
1257
1331
  "isDeprecatedLicenseId": false,
1258
1332
  "detailsUrl": "http://spdx.org/licenses/CECILL-1.1.json",
1259
- "referenceNumber": "135",
1333
+ "referenceNumber": "140",
1260
1334
  "name": "CeCILL Free Software License Agreement v1.1",
1261
1335
  "licenseId": "CECILL-1.1",
1262
1336
  "seeAlso": [
@@ -1269,7 +1343,7 @@
1269
1343
  "isDeprecatedLicenseId": false,
1270
1344
  "isFsfLibre": true,
1271
1345
  "detailsUrl": "http://spdx.org/licenses/CECILL-2.0.json",
1272
- "referenceNumber": "5",
1346
+ "referenceNumber": "6",
1273
1347
  "name": "CeCILL Free Software License Agreement v2.0",
1274
1348
  "licenseId": "CECILL-2.0",
1275
1349
  "seeAlso": [
@@ -1281,7 +1355,7 @@
1281
1355
  "reference": "./CECILL-2.1.html",
1282
1356
  "isDeprecatedLicenseId": false,
1283
1357
  "detailsUrl": "http://spdx.org/licenses/CECILL-2.1.json",
1284
- "referenceNumber": "145",
1358
+ "referenceNumber": "150",
1285
1359
  "name": "CeCILL Free Software License Agreement v2.1",
1286
1360
  "licenseId": "CECILL-2.1",
1287
1361
  "seeAlso": [
@@ -1294,7 +1368,7 @@
1294
1368
  "isDeprecatedLicenseId": false,
1295
1369
  "isFsfLibre": true,
1296
1370
  "detailsUrl": "http://spdx.org/licenses/CECILL-B.json",
1297
- "referenceNumber": "93",
1371
+ "referenceNumber": "98",
1298
1372
  "name": "CeCILL-B Free Software License Agreement",
1299
1373
  "licenseId": "CECILL-B",
1300
1374
  "seeAlso": [
@@ -1307,7 +1381,7 @@
1307
1381
  "isDeprecatedLicenseId": false,
1308
1382
  "isFsfLibre": true,
1309
1383
  "detailsUrl": "http://spdx.org/licenses/CECILL-C.json",
1310
- "referenceNumber": "240",
1384
+ "referenceNumber": "252",
1311
1385
  "name": "CeCILL-C Free Software License Agreement",
1312
1386
  "licenseId": "CECILL-C",
1313
1387
  "seeAlso": [
@@ -1319,7 +1393,7 @@
1319
1393
  "reference": "./CERN-OHL-1.1.html",
1320
1394
  "isDeprecatedLicenseId": false,
1321
1395
  "detailsUrl": "http://spdx.org/licenses/CERN-OHL-1.1.json",
1322
- "referenceNumber": "123",
1396
+ "referenceNumber": "128",
1323
1397
  "name": "CERN Open Hardware Licence v1.1",
1324
1398
  "licenseId": "CERN-OHL-1.1",
1325
1399
  "seeAlso": [
@@ -1331,7 +1405,7 @@
1331
1405
  "reference": "./CERN-OHL-1.2.html",
1332
1406
  "isDeprecatedLicenseId": false,
1333
1407
  "detailsUrl": "http://spdx.org/licenses/CERN-OHL-1.2.json",
1334
- "referenceNumber": "167",
1408
+ "referenceNumber": "173",
1335
1409
  "name": "CERN Open Hardware Licence v1.2",
1336
1410
  "licenseId": "CERN-OHL-1.2",
1337
1411
  "seeAlso": [
@@ -1343,7 +1417,7 @@
1343
1417
  "reference": "./CERN-OHL-P-2.0.html",
1344
1418
  "isDeprecatedLicenseId": false,
1345
1419
  "detailsUrl": "http://spdx.org/licenses/CERN-OHL-P-2.0.json",
1346
- "referenceNumber": "255",
1420
+ "referenceNumber": "268",
1347
1421
  "name": "CERN Open Hardware Licence Version 2 - Permissive",
1348
1422
  "licenseId": "CERN-OHL-P-2.0",
1349
1423
  "seeAlso": [
@@ -1355,7 +1429,7 @@
1355
1429
  "reference": "./CERN-OHL-S-2.0.html",
1356
1430
  "isDeprecatedLicenseId": false,
1357
1431
  "detailsUrl": "http://spdx.org/licenses/CERN-OHL-S-2.0.json",
1358
- "referenceNumber": "47",
1432
+ "referenceNumber": "50",
1359
1433
  "name": "CERN Open Hardware Licence Version 2 - Strongly Reciprocal",
1360
1434
  "licenseId": "CERN-OHL-S-2.0",
1361
1435
  "seeAlso": [
@@ -1367,7 +1441,7 @@
1367
1441
  "reference": "./CERN-OHL-W-2.0.html",
1368
1442
  "isDeprecatedLicenseId": false,
1369
1443
  "detailsUrl": "http://spdx.org/licenses/CERN-OHL-W-2.0.json",
1370
- "referenceNumber": "267",
1444
+ "referenceNumber": "280",
1371
1445
  "name": "CERN Open Hardware Licence Version 2 - Weakly Reciprocal",
1372
1446
  "licenseId": "CERN-OHL-W-2.0",
1373
1447
  "seeAlso": [
@@ -1379,7 +1453,7 @@
1379
1453
  "reference": "./CNRI-Jython.html",
1380
1454
  "isDeprecatedLicenseId": false,
1381
1455
  "detailsUrl": "http://spdx.org/licenses/CNRI-Jython.json",
1382
- "referenceNumber": "77",
1456
+ "referenceNumber": "81",
1383
1457
  "name": "CNRI Jython License",
1384
1458
  "licenseId": "CNRI-Jython",
1385
1459
  "seeAlso": [
@@ -1391,7 +1465,7 @@
1391
1465
  "reference": "./CNRI-Python.html",
1392
1466
  "isDeprecatedLicenseId": false,
1393
1467
  "detailsUrl": "http://spdx.org/licenses/CNRI-Python.json",
1394
- "referenceNumber": "96",
1468
+ "referenceNumber": "101",
1395
1469
  "name": "CNRI Python License",
1396
1470
  "licenseId": "CNRI-Python",
1397
1471
  "seeAlso": [
@@ -1403,7 +1477,7 @@
1403
1477
  "reference": "./CNRI-Python-GPL-Compatible.html",
1404
1478
  "isDeprecatedLicenseId": false,
1405
1479
  "detailsUrl": "http://spdx.org/licenses/CNRI-Python-GPL-Compatible.json",
1406
- "referenceNumber": "348",
1480
+ "referenceNumber": "367",
1407
1481
  "name": "CNRI Python Open Source GPL Compatible License Agreement",
1408
1482
  "licenseId": "CNRI-Python-GPL-Compatible",
1409
1483
  "seeAlso": [
@@ -1416,7 +1490,7 @@
1416
1490
  "isDeprecatedLicenseId": false,
1417
1491
  "isFsfLibre": true,
1418
1492
  "detailsUrl": "http://spdx.org/licenses/CPAL-1.0.json",
1419
- "referenceNumber": "285",
1493
+ "referenceNumber": "299",
1420
1494
  "name": "Common Public Attribution License 1.0",
1421
1495
  "licenseId": "CPAL-1.0",
1422
1496
  "seeAlso": [
@@ -1429,7 +1503,7 @@
1429
1503
  "isDeprecatedLicenseId": false,
1430
1504
  "isFsfLibre": true,
1431
1505
  "detailsUrl": "http://spdx.org/licenses/CPL-1.0.json",
1432
- "referenceNumber": "236",
1506
+ "referenceNumber": "248",
1433
1507
  "name": "Common Public License 1.0",
1434
1508
  "licenseId": "CPL-1.0",
1435
1509
  "seeAlso": [
@@ -1441,7 +1515,7 @@
1441
1515
  "reference": "./CPOL-1.02.html",
1442
1516
  "isDeprecatedLicenseId": false,
1443
1517
  "detailsUrl": "http://spdx.org/licenses/CPOL-1.02.json",
1444
- "referenceNumber": "230",
1518
+ "referenceNumber": "242",
1445
1519
  "name": "Code Project Open License 1.02",
1446
1520
  "licenseId": "CPOL-1.02",
1447
1521
  "seeAlso": [
@@ -1453,7 +1527,7 @@
1453
1527
  "reference": "./CUA-OPL-1.0.html",
1454
1528
  "isDeprecatedLicenseId": false,
1455
1529
  "detailsUrl": "http://spdx.org/licenses/CUA-OPL-1.0.json",
1456
- "referenceNumber": "165",
1530
+ "referenceNumber": "171",
1457
1531
  "name": "CUA Office Public License v1.0",
1458
1532
  "licenseId": "CUA-OPL-1.0",
1459
1533
  "seeAlso": [
@@ -1465,7 +1539,7 @@
1465
1539
  "reference": "./Caldera.html",
1466
1540
  "isDeprecatedLicenseId": false,
1467
1541
  "detailsUrl": "http://spdx.org/licenses/Caldera.json",
1468
- "referenceNumber": "250",
1542
+ "referenceNumber": "263",
1469
1543
  "name": "Caldera License",
1470
1544
  "licenseId": "Caldera",
1471
1545
  "seeAlso": [
@@ -1478,7 +1552,7 @@
1478
1552
  "isDeprecatedLicenseId": false,
1479
1553
  "isFsfLibre": true,
1480
1554
  "detailsUrl": "http://spdx.org/licenses/ClArtistic.json",
1481
- "referenceNumber": "245",
1555
+ "referenceNumber": "258",
1482
1556
  "name": "Clarified Artistic License",
1483
1557
  "licenseId": "ClArtistic",
1484
1558
  "seeAlso": [
@@ -1492,7 +1566,7 @@
1492
1566
  "isDeprecatedLicenseId": false,
1493
1567
  "isFsfLibre": true,
1494
1568
  "detailsUrl": "http://spdx.org/licenses/Condor-1.1.json",
1495
- "referenceNumber": "150",
1569
+ "referenceNumber": "155",
1496
1570
  "name": "Condor Public License v1.1",
1497
1571
  "licenseId": "Condor-1.1",
1498
1572
  "seeAlso": [
@@ -1505,7 +1579,7 @@
1505
1579
  "reference": "./Crossword.html",
1506
1580
  "isDeprecatedLicenseId": false,
1507
1581
  "detailsUrl": "http://spdx.org/licenses/Crossword.json",
1508
- "referenceNumber": "101",
1582
+ "referenceNumber": "106",
1509
1583
  "name": "Crossword License",
1510
1584
  "licenseId": "Crossword",
1511
1585
  "seeAlso": [
@@ -1517,7 +1591,7 @@
1517
1591
  "reference": "./CrystalStacker.html",
1518
1592
  "isDeprecatedLicenseId": false,
1519
1593
  "detailsUrl": "http://spdx.org/licenses/CrystalStacker.json",
1520
- "referenceNumber": "38",
1594
+ "referenceNumber": "41",
1521
1595
  "name": "CrystalStacker License",
1522
1596
  "licenseId": "CrystalStacker",
1523
1597
  "seeAlso": [
@@ -1529,7 +1603,7 @@
1529
1603
  "reference": "./Cube.html",
1530
1604
  "isDeprecatedLicenseId": false,
1531
1605
  "detailsUrl": "http://spdx.org/licenses/Cube.json",
1532
- "referenceNumber": "391",
1606
+ "referenceNumber": "412",
1533
1607
  "name": "Cube License",
1534
1608
  "licenseId": "Cube",
1535
1609
  "seeAlso": [
@@ -1541,7 +1615,7 @@
1541
1615
  "reference": "./D-FSL-1.0.html",
1542
1616
  "isDeprecatedLicenseId": false,
1543
1617
  "detailsUrl": "http://spdx.org/licenses/D-FSL-1.0.json",
1544
- "referenceNumber": "358",
1618
+ "referenceNumber": "378",
1545
1619
  "name": "Deutsche Freie Software Lizenz",
1546
1620
  "licenseId": "D-FSL-1.0",
1547
1621
  "seeAlso": [
@@ -1560,11 +1634,12 @@
1560
1634
  "reference": "./DOC.html",
1561
1635
  "isDeprecatedLicenseId": false,
1562
1636
  "detailsUrl": "http://spdx.org/licenses/DOC.json",
1563
- "referenceNumber": "275",
1637
+ "referenceNumber": "288",
1564
1638
  "name": "DOC License",
1565
1639
  "licenseId": "DOC",
1566
1640
  "seeAlso": [
1567
- "http://www.cs.wustl.edu/~schmidt/ACE-copying.html"
1641
+ "http://www.cs.wustl.edu/~schmidt/ACE-copying.html",
1642
+ "https://www.dre.vanderbilt.edu/~schmidt/ACE-copying.html"
1568
1643
  ],
1569
1644
  "isOsiApproved": false
1570
1645
  },
@@ -1572,7 +1647,7 @@
1572
1647
  "reference": "./DSDP.html",
1573
1648
  "isDeprecatedLicenseId": false,
1574
1649
  "detailsUrl": "http://spdx.org/licenses/DSDP.json",
1575
- "referenceNumber": "266",
1650
+ "referenceNumber": "279",
1576
1651
  "name": "DSDP License",
1577
1652
  "licenseId": "DSDP",
1578
1653
  "seeAlso": [
@@ -1584,7 +1659,7 @@
1584
1659
  "reference": "./Dotseqn.html",
1585
1660
  "isDeprecatedLicenseId": false,
1586
1661
  "detailsUrl": "http://spdx.org/licenses/Dotseqn.json",
1587
- "referenceNumber": "33",
1662
+ "referenceNumber": "35",
1588
1663
  "name": "Dotseqn License",
1589
1664
  "licenseId": "Dotseqn",
1590
1665
  "seeAlso": [
@@ -1596,7 +1671,7 @@
1596
1671
  "reference": "./ECL-1.0.html",
1597
1672
  "isDeprecatedLicenseId": false,
1598
1673
  "detailsUrl": "http://spdx.org/licenses/ECL-1.0.json",
1599
- "referenceNumber": "418",
1674
+ "referenceNumber": "440",
1600
1675
  "name": "Educational Community License v1.0",
1601
1676
  "licenseId": "ECL-1.0",
1602
1677
  "seeAlso": [
@@ -1621,7 +1696,7 @@
1621
1696
  "reference": "./EFL-1.0.html",
1622
1697
  "isDeprecatedLicenseId": false,
1623
1698
  "detailsUrl": "http://spdx.org/licenses/EFL-1.0.json",
1624
- "referenceNumber": "76",
1699
+ "referenceNumber": "80",
1625
1700
  "name": "Eiffel Forum License v1.0",
1626
1701
  "licenseId": "EFL-1.0",
1627
1702
  "seeAlso": [
@@ -1635,7 +1710,7 @@
1635
1710
  "isDeprecatedLicenseId": false,
1636
1711
  "isFsfLibre": true,
1637
1712
  "detailsUrl": "http://spdx.org/licenses/EFL-2.0.json",
1638
- "referenceNumber": "7",
1713
+ "referenceNumber": "9",
1639
1714
  "name": "Eiffel Forum License v2.0",
1640
1715
  "licenseId": "EFL-2.0",
1641
1716
  "seeAlso": [
@@ -1644,12 +1719,24 @@
1644
1719
  ],
1645
1720
  "isOsiApproved": true
1646
1721
  },
1722
+ {
1723
+ "reference": "./EPICS.html",
1724
+ "isDeprecatedLicenseId": false,
1725
+ "detailsUrl": "http://spdx.org/licenses/EPICS.json",
1726
+ "referenceNumber": "379",
1727
+ "name": "EPICS Open License",
1728
+ "licenseId": "EPICS",
1729
+ "seeAlso": [
1730
+ "https://epics.anl.gov/license/open.php"
1731
+ ],
1732
+ "isOsiApproved": false
1733
+ },
1647
1734
  {
1648
1735
  "reference": "./EPL-1.0.html",
1649
1736
  "isDeprecatedLicenseId": false,
1650
1737
  "isFsfLibre": true,
1651
1738
  "detailsUrl": "http://spdx.org/licenses/EPL-1.0.json",
1652
- "referenceNumber": "277",
1739
+ "referenceNumber": "290",
1653
1740
  "name": "Eclipse Public License 1.0",
1654
1741
  "licenseId": "EPL-1.0",
1655
1742
  "seeAlso": [
@@ -1663,7 +1750,7 @@
1663
1750
  "isDeprecatedLicenseId": false,
1664
1751
  "isFsfLibre": true,
1665
1752
  "detailsUrl": "http://spdx.org/licenses/EPL-2.0.json",
1666
- "referenceNumber": "416",
1753
+ "referenceNumber": "438",
1667
1754
  "name": "Eclipse Public License 2.0",
1668
1755
  "licenseId": "EPL-2.0",
1669
1756
  "seeAlso": [
@@ -1677,7 +1764,7 @@
1677
1764
  "isDeprecatedLicenseId": false,
1678
1765
  "isFsfLibre": true,
1679
1766
  "detailsUrl": "http://spdx.org/licenses/EUDatagrid.json",
1680
- "referenceNumber": "263",
1767
+ "referenceNumber": "276",
1681
1768
  "name": "EU DataGrid Software License",
1682
1769
  "licenseId": "EUDatagrid",
1683
1770
  "seeAlso": [
@@ -1690,7 +1777,7 @@
1690
1777
  "reference": "./EUPL-1.0.html",
1691
1778
  "isDeprecatedLicenseId": false,
1692
1779
  "detailsUrl": "http://spdx.org/licenses/EUPL-1.0.json",
1693
- "referenceNumber": "98",
1780
+ "referenceNumber": "103",
1694
1781
  "name": "European Union Public License 1.0",
1695
1782
  "licenseId": "EUPL-1.0",
1696
1783
  "seeAlso": [
@@ -1704,7 +1791,7 @@
1704
1791
  "isDeprecatedLicenseId": false,
1705
1792
  "isFsfLibre": true,
1706
1793
  "detailsUrl": "http://spdx.org/licenses/EUPL-1.1.json",
1707
- "referenceNumber": "409",
1794
+ "referenceNumber": "431",
1708
1795
  "name": "European Union Public License 1.1",
1709
1796
  "licenseId": "EUPL-1.1",
1710
1797
  "seeAlso": [
@@ -1719,7 +1806,7 @@
1719
1806
  "isDeprecatedLicenseId": false,
1720
1807
  "isFsfLibre": true,
1721
1808
  "detailsUrl": "http://spdx.org/licenses/EUPL-1.2.json",
1722
- "referenceNumber": "271",
1809
+ "referenceNumber": "284",
1723
1810
  "name": "European Union Public License 1.2",
1724
1811
  "licenseId": "EUPL-1.2",
1725
1812
  "seeAlso": [
@@ -1727,7 +1814,7 @@
1727
1814
  "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl_v1.2_en.pdf",
1728
1815
  "https://joinup.ec.europa.eu/sites/default/files/inline-files/EUPL%20v1_2%20EN(1).txt",
1729
1816
  "http://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri\u003dCELEX:32017D0863",
1730
- "https://opensource.org/licenses/EUPL-1.1"
1817
+ "https://opensource.org/licenses/EUPL-1.2"
1731
1818
  ],
1732
1819
  "isOsiApproved": true
1733
1820
  },
@@ -1735,7 +1822,7 @@
1735
1822
  "reference": "./Entessa.html",
1736
1823
  "isDeprecatedLicenseId": false,
1737
1824
  "detailsUrl": "http://spdx.org/licenses/Entessa.json",
1738
- "referenceNumber": "386",
1825
+ "referenceNumber": "407",
1739
1826
  "name": "Entessa Public License v1.0",
1740
1827
  "licenseId": "Entessa",
1741
1828
  "seeAlso": [
@@ -1747,7 +1834,7 @@
1747
1834
  "reference": "./ErlPL-1.1.html",
1748
1835
  "isDeprecatedLicenseId": false,
1749
1836
  "detailsUrl": "http://spdx.org/licenses/ErlPL-1.1.json",
1750
- "referenceNumber": "408",
1837
+ "referenceNumber": "429",
1751
1838
  "name": "Erlang Public License v1.1",
1752
1839
  "licenseId": "ErlPL-1.1",
1753
1840
  "seeAlso": [
@@ -1759,7 +1846,7 @@
1759
1846
  "reference": "./Eurosym.html",
1760
1847
  "isDeprecatedLicenseId": false,
1761
1848
  "detailsUrl": "http://spdx.org/licenses/Eurosym.json",
1762
- "referenceNumber": "171",
1849
+ "referenceNumber": "177",
1763
1850
  "name": "Eurosym License",
1764
1851
  "licenseId": "Eurosym",
1765
1852
  "seeAlso": [
@@ -1772,7 +1859,7 @@
1772
1859
  "isDeprecatedLicenseId": false,
1773
1860
  "isFsfLibre": true,
1774
1861
  "detailsUrl": "http://spdx.org/licenses/FSFAP.json",
1775
- "referenceNumber": "394",
1862
+ "referenceNumber": "415",
1776
1863
  "name": "FSF All Permissive License",
1777
1864
  "licenseId": "FSFAP",
1778
1865
  "seeAlso": [
@@ -1784,7 +1871,7 @@
1784
1871
  "reference": "./FSFUL.html",
1785
1872
  "isDeprecatedLicenseId": false,
1786
1873
  "detailsUrl": "http://spdx.org/licenses/FSFUL.json",
1787
- "referenceNumber": "2",
1874
+ "referenceNumber": "3",
1788
1875
  "name": "FSF Unlimited License",
1789
1876
  "licenseId": "FSFUL",
1790
1877
  "seeAlso": [
@@ -1796,7 +1883,7 @@
1796
1883
  "reference": "./FSFULLR.html",
1797
1884
  "isDeprecatedLicenseId": false,
1798
1885
  "detailsUrl": "http://spdx.org/licenses/FSFULLR.json",
1799
- "referenceNumber": "308",
1886
+ "referenceNumber": "326",
1800
1887
  "name": "FSF Unlimited License (with License Retention)",
1801
1888
  "licenseId": "FSFULLR",
1802
1889
  "seeAlso": [
@@ -1809,7 +1896,7 @@
1809
1896
  "isDeprecatedLicenseId": false,
1810
1897
  "isFsfLibre": true,
1811
1898
  "detailsUrl": "http://spdx.org/licenses/FTL.json",
1812
- "referenceNumber": "374",
1899
+ "referenceNumber": "395",
1813
1900
  "name": "Freetype Project License",
1814
1901
  "licenseId": "FTL",
1815
1902
  "seeAlso": [
@@ -1822,7 +1909,7 @@
1822
1909
  "reference": "./Fair.html",
1823
1910
  "isDeprecatedLicenseId": false,
1824
1911
  "detailsUrl": "http://spdx.org/licenses/Fair.json",
1825
- "referenceNumber": "262",
1912
+ "referenceNumber": "275",
1826
1913
  "name": "Fair License",
1827
1914
  "licenseId": "Fair",
1828
1915
  "seeAlso": [
@@ -1835,7 +1922,7 @@
1835
1922
  "reference": "./Frameworx-1.0.html",
1836
1923
  "isDeprecatedLicenseId": false,
1837
1924
  "detailsUrl": "http://spdx.org/licenses/Frameworx-1.0.json",
1838
- "referenceNumber": "373",
1925
+ "referenceNumber": "394",
1839
1926
  "name": "Frameworx Open License 1.0",
1840
1927
  "licenseId": "Frameworx-1.0",
1841
1928
  "seeAlso": [
@@ -1847,7 +1934,7 @@
1847
1934
  "reference": "./FreeImage.html",
1848
1935
  "isDeprecatedLicenseId": false,
1849
1936
  "detailsUrl": "http://spdx.org/licenses/FreeImage.json",
1850
- "referenceNumber": "370",
1937
+ "referenceNumber": "391",
1851
1938
  "name": "FreeImage Public License v1.0",
1852
1939
  "licenseId": "FreeImage",
1853
1940
  "seeAlso": [
@@ -1860,7 +1947,7 @@
1860
1947
  "isDeprecatedLicenseId": true,
1861
1948
  "isFsfLibre": true,
1862
1949
  "detailsUrl": "http://spdx.org/licenses/GFDL-1.1.json",
1863
- "referenceNumber": "257",
1950
+ "referenceNumber": "270",
1864
1951
  "name": "GNU Free Documentation License v1.1",
1865
1952
  "licenseId": "GFDL-1.1",
1866
1953
  "seeAlso": [
@@ -1868,12 +1955,60 @@
1868
1955
  ],
1869
1956
  "isOsiApproved": false
1870
1957
  },
1958
+ {
1959
+ "reference": "./GFDL-1.1-invariants-only.html",
1960
+ "isDeprecatedLicenseId": false,
1961
+ "detailsUrl": "http://spdx.org/licenses/GFDL-1.1-invariants-only.json",
1962
+ "referenceNumber": "206",
1963
+ "name": "GNU Free Documentation License v1.1 only - invariants",
1964
+ "licenseId": "GFDL-1.1-invariants-only",
1965
+ "seeAlso": [
1966
+ "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"
1967
+ ],
1968
+ "isOsiApproved": false
1969
+ },
1970
+ {
1971
+ "reference": "./GFDL-1.1-invariants-or-later.html",
1972
+ "isDeprecatedLicenseId": false,
1973
+ "detailsUrl": "http://spdx.org/licenses/GFDL-1.1-invariants-or-later.json",
1974
+ "referenceNumber": "86",
1975
+ "name": "GNU Free Documentation License v1.1 or later - invariants",
1976
+ "licenseId": "GFDL-1.1-invariants-or-later",
1977
+ "seeAlso": [
1978
+ "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"
1979
+ ],
1980
+ "isOsiApproved": false
1981
+ },
1982
+ {
1983
+ "reference": "./GFDL-1.1-no-invariants-only.html",
1984
+ "isDeprecatedLicenseId": false,
1985
+ "detailsUrl": "http://spdx.org/licenses/GFDL-1.1-no-invariants-only.json",
1986
+ "referenceNumber": "8",
1987
+ "name": "GNU Free Documentation License v1.1 only - no invariants",
1988
+ "licenseId": "GFDL-1.1-no-invariants-only",
1989
+ "seeAlso": [
1990
+ "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"
1991
+ ],
1992
+ "isOsiApproved": false
1993
+ },
1994
+ {
1995
+ "reference": "./GFDL-1.1-no-invariants-or-later.html",
1996
+ "isDeprecatedLicenseId": false,
1997
+ "detailsUrl": "http://spdx.org/licenses/GFDL-1.1-no-invariants-or-later.json",
1998
+ "referenceNumber": "255",
1999
+ "name": "GNU Free Documentation License v1.1 or later - no invariants",
2000
+ "licenseId": "GFDL-1.1-no-invariants-or-later",
2001
+ "seeAlso": [
2002
+ "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt"
2003
+ ],
2004
+ "isOsiApproved": false
2005
+ },
1871
2006
  {
1872
2007
  "reference": "./GFDL-1.1-only.html",
1873
2008
  "isDeprecatedLicenseId": false,
1874
2009
  "isFsfLibre": true,
1875
2010
  "detailsUrl": "http://spdx.org/licenses/GFDL-1.1-only.json",
1876
- "referenceNumber": "104",
2011
+ "referenceNumber": "109",
1877
2012
  "name": "GNU Free Documentation License v1.1 only",
1878
2013
  "licenseId": "GFDL-1.1-only",
1879
2014
  "seeAlso": [
@@ -1886,7 +2021,7 @@
1886
2021
  "isDeprecatedLicenseId": false,
1887
2022
  "isFsfLibre": true,
1888
2023
  "detailsUrl": "http://spdx.org/licenses/GFDL-1.1-or-later.json",
1889
- "referenceNumber": "124",
2024
+ "referenceNumber": "129",
1890
2025
  "name": "GNU Free Documentation License v1.1 or later",
1891
2026
  "licenseId": "GFDL-1.1-or-later",
1892
2027
  "seeAlso": [
@@ -1899,7 +2034,7 @@
1899
2034
  "isDeprecatedLicenseId": true,
1900
2035
  "isFsfLibre": true,
1901
2036
  "detailsUrl": "http://spdx.org/licenses/GFDL-1.2.json",
1902
- "referenceNumber": "197",
2037
+ "referenceNumber": "207",
1903
2038
  "name": "GNU Free Documentation License v1.2",
1904
2039
  "licenseId": "GFDL-1.2",
1905
2040
  "seeAlso": [
@@ -1907,12 +2042,60 @@
1907
2042
  ],
1908
2043
  "isOsiApproved": false
1909
2044
  },
2045
+ {
2046
+ "reference": "./GFDL-1.2-invariants-only.html",
2047
+ "isDeprecatedLicenseId": false,
2048
+ "detailsUrl": "http://spdx.org/licenses/GFDL-1.2-invariants-only.json",
2049
+ "referenceNumber": "209",
2050
+ "name": "GNU Free Documentation License v1.2 only - invariants",
2051
+ "licenseId": "GFDL-1.2-invariants-only",
2052
+ "seeAlso": [
2053
+ "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"
2054
+ ],
2055
+ "isOsiApproved": false
2056
+ },
2057
+ {
2058
+ "reference": "./GFDL-1.2-invariants-or-later.html",
2059
+ "isDeprecatedLicenseId": false,
2060
+ "detailsUrl": "http://spdx.org/licenses/GFDL-1.2-invariants-or-later.json",
2061
+ "referenceNumber": "430",
2062
+ "name": "GNU Free Documentation License v1.2 or later - invariants",
2063
+ "licenseId": "GFDL-1.2-invariants-or-later",
2064
+ "seeAlso": [
2065
+ "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"
2066
+ ],
2067
+ "isOsiApproved": false
2068
+ },
2069
+ {
2070
+ "reference": "./GFDL-1.2-no-invariants-only.html",
2071
+ "isDeprecatedLicenseId": false,
2072
+ "detailsUrl": "http://spdx.org/licenses/GFDL-1.2-no-invariants-only.json",
2073
+ "referenceNumber": "325",
2074
+ "name": "GNU Free Documentation License v1.2 only - no invariants",
2075
+ "licenseId": "GFDL-1.2-no-invariants-only",
2076
+ "seeAlso": [
2077
+ "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"
2078
+ ],
2079
+ "isOsiApproved": false
2080
+ },
2081
+ {
2082
+ "reference": "./GFDL-1.2-no-invariants-or-later.html",
2083
+ "isDeprecatedLicenseId": false,
2084
+ "detailsUrl": "http://spdx.org/licenses/GFDL-1.2-no-invariants-or-later.json",
2085
+ "referenceNumber": "196",
2086
+ "name": "GNU Free Documentation License v1.2 or later - no invariants",
2087
+ "licenseId": "GFDL-1.2-no-invariants-or-later",
2088
+ "seeAlso": [
2089
+ "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt"
2090
+ ],
2091
+ "isOsiApproved": false
2092
+ },
1910
2093
  {
1911
2094
  "reference": "./GFDL-1.2-only.html",
1912
2095
  "isDeprecatedLicenseId": false,
1913
2096
  "isFsfLibre": true,
1914
2097
  "detailsUrl": "http://spdx.org/licenses/GFDL-1.2-only.json",
1915
- "referenceNumber": "90",
2098
+ "referenceNumber": "95",
1916
2099
  "name": "GNU Free Documentation License v1.2 only",
1917
2100
  "licenseId": "GFDL-1.2-only",
1918
2101
  "seeAlso": [
@@ -1925,7 +2108,7 @@
1925
2108
  "isDeprecatedLicenseId": false,
1926
2109
  "isFsfLibre": true,
1927
2110
  "detailsUrl": "http://spdx.org/licenses/GFDL-1.2-or-later.json",
1928
- "referenceNumber": "132",
2111
+ "referenceNumber": "137",
1929
2112
  "name": "GNU Free Documentation License v1.2 or later",
1930
2113
  "licenseId": "GFDL-1.2-or-later",
1931
2114
  "seeAlso": [
@@ -1938,7 +2121,7 @@
1938
2121
  "isDeprecatedLicenseId": true,
1939
2122
  "isFsfLibre": true,
1940
2123
  "detailsUrl": "http://spdx.org/licenses/GFDL-1.3.json",
1941
- "referenceNumber": "365",
2124
+ "referenceNumber": "386",
1942
2125
  "name": "GNU Free Documentation License v1.3",
1943
2126
  "licenseId": "GFDL-1.3",
1944
2127
  "seeAlso": [
@@ -1946,12 +2129,60 @@
1946
2129
  ],
1947
2130
  "isOsiApproved": false
1948
2131
  },
2132
+ {
2133
+ "reference": "./GFDL-1.3-invariants-only.html",
2134
+ "isDeprecatedLicenseId": false,
2135
+ "detailsUrl": "http://spdx.org/licenses/GFDL-1.3-invariants-only.json",
2136
+ "referenceNumber": "188",
2137
+ "name": "GNU Free Documentation License v1.3 only - invariants",
2138
+ "licenseId": "GFDL-1.3-invariants-only",
2139
+ "seeAlso": [
2140
+ "https://www.gnu.org/licenses/fdl-1.3.txt"
2141
+ ],
2142
+ "isOsiApproved": false
2143
+ },
2144
+ {
2145
+ "reference": "./GFDL-1.3-invariants-or-later.html",
2146
+ "isDeprecatedLicenseId": false,
2147
+ "detailsUrl": "http://spdx.org/licenses/GFDL-1.3-invariants-or-later.json",
2148
+ "referenceNumber": "320",
2149
+ "name": "GNU Free Documentation License v1.3 or later - invariants",
2150
+ "licenseId": "GFDL-1.3-invariants-or-later",
2151
+ "seeAlso": [
2152
+ "https://www.gnu.org/licenses/fdl-1.3.txt"
2153
+ ],
2154
+ "isOsiApproved": false
2155
+ },
2156
+ {
2157
+ "reference": "./GFDL-1.3-no-invariants-only.html",
2158
+ "isDeprecatedLicenseId": false,
2159
+ "detailsUrl": "http://spdx.org/licenses/GFDL-1.3-no-invariants-only.json",
2160
+ "referenceNumber": "184",
2161
+ "name": "GNU Free Documentation License v1.3 only - no invariants",
2162
+ "licenseId": "GFDL-1.3-no-invariants-only",
2163
+ "seeAlso": [
2164
+ "https://www.gnu.org/licenses/fdl-1.3.txt"
2165
+ ],
2166
+ "isOsiApproved": false
2167
+ },
2168
+ {
2169
+ "reference": "./GFDL-1.3-no-invariants-or-later.html",
2170
+ "isDeprecatedLicenseId": false,
2171
+ "detailsUrl": "http://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.json",
2172
+ "referenceNumber": "168",
2173
+ "name": "GNU Free Documentation License v1.3 or later - no invariants",
2174
+ "licenseId": "GFDL-1.3-no-invariants-or-later",
2175
+ "seeAlso": [
2176
+ "https://www.gnu.org/licenses/fdl-1.3.txt"
2177
+ ],
2178
+ "isOsiApproved": false
2179
+ },
1949
2180
  {
1950
2181
  "reference": "./GFDL-1.3-only.html",
1951
2182
  "isDeprecatedLicenseId": false,
1952
2183
  "isFsfLibre": true,
1953
2184
  "detailsUrl": "http://spdx.org/licenses/GFDL-1.3-only.json",
1954
- "referenceNumber": "200",
2185
+ "referenceNumber": "211",
1955
2186
  "name": "GNU Free Documentation License v1.3 only",
1956
2187
  "licenseId": "GFDL-1.3-only",
1957
2188
  "seeAlso": [
@@ -1964,7 +2195,7 @@
1964
2195
  "isDeprecatedLicenseId": false,
1965
2196
  "isFsfLibre": true,
1966
2197
  "detailsUrl": "http://spdx.org/licenses/GFDL-1.3-or-later.json",
1967
- "referenceNumber": "53",
2198
+ "referenceNumber": "57",
1968
2199
  "name": "GNU Free Documentation License v1.3 or later",
1969
2200
  "licenseId": "GFDL-1.3-or-later",
1970
2201
  "seeAlso": [
@@ -1976,7 +2207,7 @@
1976
2207
  "reference": "./GL2PS.html",
1977
2208
  "isDeprecatedLicenseId": false,
1978
2209
  "detailsUrl": "http://spdx.org/licenses/GL2PS.json",
1979
- "referenceNumber": "314",
2210
+ "referenceNumber": "332",
1980
2211
  "name": "GL2PS License",
1981
2212
  "licenseId": "GL2PS",
1982
2213
  "seeAlso": [
@@ -1984,11 +2215,23 @@
1984
2215
  ],
1985
2216
  "isOsiApproved": false
1986
2217
  },
2218
+ {
2219
+ "reference": "./GLWTPL.html",
2220
+ "isDeprecatedLicenseId": false,
2221
+ "detailsUrl": "http://spdx.org/licenses/GLWTPL.json",
2222
+ "referenceNumber": "56",
2223
+ "name": "Good Luck With That Public License",
2224
+ "licenseId": "GLWTPL",
2225
+ "seeAlso": [
2226
+ "https://github.com/me-shaon/GLWTPL/commit/da5f6bc734095efbacb442c0b31e33a65b9d6e85"
2227
+ ],
2228
+ "isOsiApproved": false
2229
+ },
1987
2230
  {
1988
2231
  "reference": "./GPL-1.0.html",
1989
2232
  "isDeprecatedLicenseId": true,
1990
2233
  "detailsUrl": "http://spdx.org/licenses/GPL-1.0.json",
1991
- "referenceNumber": "330",
2234
+ "referenceNumber": "349",
1992
2235
  "name": "GNU General Public License v1.0 only",
1993
2236
  "licenseId": "GPL-1.0",
1994
2237
  "seeAlso": [
@@ -2000,7 +2243,7 @@
2000
2243
  "reference": "./GPL-1.0+.html",
2001
2244
  "isDeprecatedLicenseId": true,
2002
2245
  "detailsUrl": "http://spdx.org/licenses/GPL-1.0+.json",
2003
- "referenceNumber": "205",
2246
+ "referenceNumber": "216",
2004
2247
  "name": "GNU General Public License v1.0 or later",
2005
2248
  "licenseId": "GPL-1.0+",
2006
2249
  "seeAlso": [
@@ -2012,7 +2255,7 @@
2012
2255
  "reference": "./GPL-1.0-only.html",
2013
2256
  "isDeprecatedLicenseId": false,
2014
2257
  "detailsUrl": "http://spdx.org/licenses/GPL-1.0-only.json",
2015
- "referenceNumber": "15",
2258
+ "referenceNumber": "17",
2016
2259
  "name": "GNU General Public License v1.0 only",
2017
2260
  "licenseId": "GPL-1.0-only",
2018
2261
  "seeAlso": [
@@ -2024,7 +2267,7 @@
2024
2267
  "reference": "./GPL-1.0-or-later.html",
2025
2268
  "isDeprecatedLicenseId": false,
2026
2269
  "detailsUrl": "http://spdx.org/licenses/GPL-1.0-or-later.json",
2027
- "referenceNumber": "134",
2270
+ "referenceNumber": "139",
2028
2271
  "name": "GNU General Public License v1.0 or later",
2029
2272
  "licenseId": "GPL-1.0-or-later",
2030
2273
  "seeAlso": [
@@ -2037,7 +2280,7 @@
2037
2280
  "isDeprecatedLicenseId": true,
2038
2281
  "isFsfLibre": true,
2039
2282
  "detailsUrl": "http://spdx.org/licenses/GPL-2.0.json",
2040
- "referenceNumber": "356",
2283
+ "referenceNumber": "376",
2041
2284
  "name": "GNU General Public License v2.0 only",
2042
2285
  "licenseId": "GPL-2.0",
2043
2286
  "seeAlso": [
@@ -2051,7 +2294,7 @@
2051
2294
  "isDeprecatedLicenseId": true,
2052
2295
  "isFsfLibre": true,
2053
2296
  "detailsUrl": "http://spdx.org/licenses/GPL-2.0+.json",
2054
- "referenceNumber": "401",
2297
+ "referenceNumber": "422",
2055
2298
  "name": "GNU General Public License v2.0 or later",
2056
2299
  "licenseId": "GPL-2.0+",
2057
2300
  "seeAlso": [
@@ -2065,7 +2308,7 @@
2065
2308
  "isDeprecatedLicenseId": false,
2066
2309
  "isFsfLibre": true,
2067
2310
  "detailsUrl": "http://spdx.org/licenses/GPL-2.0-only.json",
2068
- "referenceNumber": "235",
2311
+ "referenceNumber": "247",
2069
2312
  "name": "GNU General Public License v2.0 only",
2070
2313
  "licenseId": "GPL-2.0-only",
2071
2314
  "seeAlso": [
@@ -2079,7 +2322,7 @@
2079
2322
  "isDeprecatedLicenseId": false,
2080
2323
  "isFsfLibre": true,
2081
2324
  "detailsUrl": "http://spdx.org/licenses/GPL-2.0-or-later.json",
2082
- "referenceNumber": "258",
2325
+ "referenceNumber": "271",
2083
2326
  "name": "GNU General Public License v2.0 or later",
2084
2327
  "licenseId": "GPL-2.0-or-later",
2085
2328
  "seeAlso": [
@@ -2092,7 +2335,7 @@
2092
2335
  "reference": "./GPL-2.0-with-GCC-exception.html",
2093
2336
  "isDeprecatedLicenseId": true,
2094
2337
  "detailsUrl": "http://spdx.org/licenses/GPL-2.0-with-GCC-exception.json",
2095
- "referenceNumber": "340",
2338
+ "referenceNumber": "359",
2096
2339
  "name": "GNU General Public License v2.0 w/GCC Runtime Library exception",
2097
2340
  "licenseId": "GPL-2.0-with-GCC-exception",
2098
2341
  "seeAlso": [
@@ -2104,7 +2347,7 @@
2104
2347
  "reference": "./GPL-2.0-with-autoconf-exception.html",
2105
2348
  "isDeprecatedLicenseId": true,
2106
2349
  "detailsUrl": "http://spdx.org/licenses/GPL-2.0-with-autoconf-exception.json",
2107
- "referenceNumber": "36",
2350
+ "referenceNumber": "38",
2108
2351
  "name": "GNU General Public License v2.0 w/Autoconf exception",
2109
2352
  "licenseId": "GPL-2.0-with-autoconf-exception",
2110
2353
  "seeAlso": [
@@ -2116,7 +2359,7 @@
2116
2359
  "reference": "./GPL-2.0-with-bison-exception.html",
2117
2360
  "isDeprecatedLicenseId": true,
2118
2361
  "detailsUrl": "http://spdx.org/licenses/GPL-2.0-with-bison-exception.json",
2119
- "referenceNumber": "371",
2362
+ "referenceNumber": "392",
2120
2363
  "name": "GNU General Public License v2.0 w/Bison exception",
2121
2364
  "licenseId": "GPL-2.0-with-bison-exception",
2122
2365
  "seeAlso": [
@@ -2128,7 +2371,7 @@
2128
2371
  "reference": "./GPL-2.0-with-classpath-exception.html",
2129
2372
  "isDeprecatedLicenseId": true,
2130
2373
  "detailsUrl": "http://spdx.org/licenses/GPL-2.0-with-classpath-exception.json",
2131
- "referenceNumber": "227",
2374
+ "referenceNumber": "239",
2132
2375
  "name": "GNU General Public License v2.0 w/Classpath exception",
2133
2376
  "licenseId": "GPL-2.0-with-classpath-exception",
2134
2377
  "seeAlso": [
@@ -2140,7 +2383,7 @@
2140
2383
  "reference": "./GPL-2.0-with-font-exception.html",
2141
2384
  "isDeprecatedLicenseId": true,
2142
2385
  "detailsUrl": "http://spdx.org/licenses/GPL-2.0-with-font-exception.json",
2143
- "referenceNumber": "24",
2386
+ "referenceNumber": "26",
2144
2387
  "name": "GNU General Public License v2.0 w/Font exception",
2145
2388
  "licenseId": "GPL-2.0-with-font-exception",
2146
2389
  "seeAlso": [
@@ -2153,7 +2396,7 @@
2153
2396
  "isDeprecatedLicenseId": true,
2154
2397
  "isFsfLibre": true,
2155
2398
  "detailsUrl": "http://spdx.org/licenses/GPL-3.0.json",
2156
- "referenceNumber": "414",
2399
+ "referenceNumber": "436",
2157
2400
  "name": "GNU General Public License v3.0 only",
2158
2401
  "licenseId": "GPL-3.0",
2159
2402
  "seeAlso": [
@@ -2167,7 +2410,7 @@
2167
2410
  "isDeprecatedLicenseId": true,
2168
2411
  "isFsfLibre": true,
2169
2412
  "detailsUrl": "http://spdx.org/licenses/GPL-3.0+.json",
2170
- "referenceNumber": "152",
2413
+ "referenceNumber": "157",
2171
2414
  "name": "GNU General Public License v3.0 or later",
2172
2415
  "licenseId": "GPL-3.0+",
2173
2416
  "seeAlso": [
@@ -2181,7 +2424,7 @@
2181
2424
  "isDeprecatedLicenseId": false,
2182
2425
  "isFsfLibre": true,
2183
2426
  "detailsUrl": "http://spdx.org/licenses/GPL-3.0-only.json",
2184
- "referenceNumber": "127",
2427
+ "referenceNumber": "132",
2185
2428
  "name": "GNU General Public License v3.0 only",
2186
2429
  "licenseId": "GPL-3.0-only",
2187
2430
  "seeAlso": [
@@ -2195,7 +2438,7 @@
2195
2438
  "isDeprecatedLicenseId": false,
2196
2439
  "isFsfLibre": true,
2197
2440
  "detailsUrl": "http://spdx.org/licenses/GPL-3.0-or-later.json",
2198
- "referenceNumber": "399",
2441
+ "referenceNumber": "420",
2199
2442
  "name": "GNU General Public License v3.0 or later",
2200
2443
  "licenseId": "GPL-3.0-or-later",
2201
2444
  "seeAlso": [
@@ -2208,7 +2451,7 @@
2208
2451
  "reference": "./GPL-3.0-with-GCC-exception.html",
2209
2452
  "isDeprecatedLicenseId": true,
2210
2453
  "detailsUrl": "http://spdx.org/licenses/GPL-3.0-with-GCC-exception.json",
2211
- "referenceNumber": "6",
2454
+ "referenceNumber": "7",
2212
2455
  "name": "GNU General Public License v3.0 w/GCC Runtime Library exception",
2213
2456
  "licenseId": "GPL-3.0-with-GCC-exception",
2214
2457
  "seeAlso": [
@@ -2220,7 +2463,7 @@
2220
2463
  "reference": "./GPL-3.0-with-autoconf-exception.html",
2221
2464
  "isDeprecatedLicenseId": true,
2222
2465
  "detailsUrl": "http://spdx.org/licenses/GPL-3.0-with-autoconf-exception.json",
2223
- "referenceNumber": "8",
2466
+ "referenceNumber": "10",
2224
2467
  "name": "GNU General Public License v3.0 w/Autoconf exception",
2225
2468
  "licenseId": "GPL-3.0-with-autoconf-exception",
2226
2469
  "seeAlso": [
@@ -2232,7 +2475,7 @@
2232
2475
  "reference": "./Giftware.html",
2233
2476
  "isDeprecatedLicenseId": false,
2234
2477
  "detailsUrl": "http://spdx.org/licenses/Giftware.json",
2235
- "referenceNumber": "379",
2478
+ "referenceNumber": "400",
2236
2479
  "name": "Giftware License",
2237
2480
  "licenseId": "Giftware",
2238
2481
  "seeAlso": [
@@ -2244,7 +2487,7 @@
2244
2487
  "reference": "./Glide.html",
2245
2488
  "isDeprecatedLicenseId": false,
2246
2489
  "detailsUrl": "http://spdx.org/licenses/Glide.json",
2247
- "referenceNumber": "121",
2490
+ "referenceNumber": "126",
2248
2491
  "name": "3dfx Glide License",
2249
2492
  "licenseId": "Glide",
2250
2493
  "seeAlso": [
@@ -2256,7 +2499,7 @@
2256
2499
  "reference": "./Glulxe.html",
2257
2500
  "isDeprecatedLicenseId": false,
2258
2501
  "detailsUrl": "http://spdx.org/licenses/Glulxe.json",
2259
- "referenceNumber": "206",
2502
+ "referenceNumber": "217",
2260
2503
  "name": "Glulxe License",
2261
2504
  "licenseId": "Glulxe",
2262
2505
  "seeAlso": [
@@ -2269,7 +2512,7 @@
2269
2512
  "isDeprecatedLicenseId": false,
2270
2513
  "isFsfLibre": true,
2271
2514
  "detailsUrl": "http://spdx.org/licenses/HPND.json",
2272
- "referenceNumber": "154",
2515
+ "referenceNumber": "159",
2273
2516
  "name": "Historical Permission Notice and Disclaimer",
2274
2517
  "licenseId": "HPND",
2275
2518
  "seeAlso": [
@@ -2281,7 +2524,7 @@
2281
2524
  "reference": "./HPND-sell-variant.html",
2282
2525
  "isDeprecatedLicenseId": false,
2283
2526
  "detailsUrl": "http://spdx.org/licenses/HPND-sell-variant.json",
2284
- "referenceNumber": "164",
2527
+ "referenceNumber": "170",
2285
2528
  "name": "Historical Permission Notice and Disclaimer - sell variant",
2286
2529
  "licenseId": "HPND-sell-variant",
2287
2530
  "seeAlso": [
@@ -2293,7 +2536,7 @@
2293
2536
  "reference": "./HaskellReport.html",
2294
2537
  "isDeprecatedLicenseId": false,
2295
2538
  "detailsUrl": "http://spdx.org/licenses/HaskellReport.json",
2296
- "referenceNumber": "212",
2539
+ "referenceNumber": "223",
2297
2540
  "name": "Haskell Language Report License",
2298
2541
  "licenseId": "HaskellReport",
2299
2542
  "seeAlso": [
@@ -2305,7 +2548,7 @@
2305
2548
  "reference": "./Hippocratic-2.1.html",
2306
2549
  "isDeprecatedLicenseId": false,
2307
2550
  "detailsUrl": "http://spdx.org/licenses/Hippocratic-2.1.json",
2308
- "referenceNumber": "185",
2551
+ "referenceNumber": "193",
2309
2552
  "name": "Hippocratic License 2.1",
2310
2553
  "licenseId": "Hippocratic-2.1",
2311
2554
  "seeAlso": [
@@ -2318,7 +2561,7 @@
2318
2561
  "reference": "./IBM-pibs.html",
2319
2562
  "isDeprecatedLicenseId": false,
2320
2563
  "detailsUrl": "http://spdx.org/licenses/IBM-pibs.json",
2321
- "referenceNumber": "241",
2564
+ "referenceNumber": "253",
2322
2565
  "name": "IBM PowerPC Initialization and Boot Software",
2323
2566
  "licenseId": "IBM-pibs",
2324
2567
  "seeAlso": [
@@ -2330,7 +2573,7 @@
2330
2573
  "reference": "./ICU.html",
2331
2574
  "isDeprecatedLicenseId": false,
2332
2575
  "detailsUrl": "http://spdx.org/licenses/ICU.json",
2333
- "referenceNumber": "180",
2576
+ "referenceNumber": "187",
2334
2577
  "name": "ICU License",
2335
2578
  "licenseId": "ICU",
2336
2579
  "seeAlso": [
@@ -2343,7 +2586,7 @@
2343
2586
  "isDeprecatedLicenseId": false,
2344
2587
  "isFsfLibre": true,
2345
2588
  "detailsUrl": "http://spdx.org/licenses/IJG.json",
2346
- "referenceNumber": "244",
2589
+ "referenceNumber": "257",
2347
2590
  "name": "Independent JPEG Group License",
2348
2591
  "licenseId": "IJG",
2349
2592
  "seeAlso": [
@@ -2356,7 +2599,7 @@
2356
2599
  "isDeprecatedLicenseId": false,
2357
2600
  "isFsfLibre": true,
2358
2601
  "detailsUrl": "http://spdx.org/licenses/IPA.json",
2359
- "referenceNumber": "321",
2602
+ "referenceNumber": "340",
2360
2603
  "name": "IPA Font License",
2361
2604
  "licenseId": "IPA",
2362
2605
  "seeAlso": [
@@ -2369,7 +2612,7 @@
2369
2612
  "isDeprecatedLicenseId": false,
2370
2613
  "isFsfLibre": true,
2371
2614
  "detailsUrl": "http://spdx.org/licenses/IPL-1.0.json",
2372
- "referenceNumber": "320",
2615
+ "referenceNumber": "339",
2373
2616
  "name": "IBM Public License v1.0",
2374
2617
  "licenseId": "IPL-1.0",
2375
2618
  "seeAlso": [
@@ -2382,7 +2625,7 @@
2382
2625
  "isDeprecatedLicenseId": false,
2383
2626
  "isFsfLibre": true,
2384
2627
  "detailsUrl": "http://spdx.org/licenses/ISC.json",
2385
- "referenceNumber": "364",
2628
+ "referenceNumber": "385",
2386
2629
  "name": "ISC License",
2387
2630
  "licenseId": "ISC",
2388
2631
  "seeAlso": [
@@ -2395,7 +2638,7 @@
2395
2638
  "reference": "./ImageMagick.html",
2396
2639
  "isDeprecatedLicenseId": false,
2397
2640
  "detailsUrl": "http://spdx.org/licenses/ImageMagick.json",
2398
- "referenceNumber": "337",
2641
+ "referenceNumber": "356",
2399
2642
  "name": "ImageMagick License",
2400
2643
  "licenseId": "ImageMagick",
2401
2644
  "seeAlso": [
@@ -2408,7 +2651,7 @@
2408
2651
  "isDeprecatedLicenseId": false,
2409
2652
  "isFsfLibre": true,
2410
2653
  "detailsUrl": "http://spdx.org/licenses/Imlib2.json",
2411
- "referenceNumber": "140",
2654
+ "referenceNumber": "145",
2412
2655
  "name": "Imlib2 License",
2413
2656
  "licenseId": "Imlib2",
2414
2657
  "seeAlso": [
@@ -2421,7 +2664,7 @@
2421
2664
  "reference": "./Info-ZIP.html",
2422
2665
  "isDeprecatedLicenseId": false,
2423
2666
  "detailsUrl": "http://spdx.org/licenses/Info-ZIP.json",
2424
- "referenceNumber": "294",
2667
+ "referenceNumber": "309",
2425
2668
  "name": "Info-ZIP License",
2426
2669
  "licenseId": "Info-ZIP",
2427
2670
  "seeAlso": [
@@ -2434,7 +2677,7 @@
2434
2677
  "isDeprecatedLicenseId": false,
2435
2678
  "isFsfLibre": true,
2436
2679
  "detailsUrl": "http://spdx.org/licenses/Intel.json",
2437
- "referenceNumber": "29",
2680
+ "referenceNumber": "31",
2438
2681
  "name": "Intel Open Source License",
2439
2682
  "licenseId": "Intel",
2440
2683
  "seeAlso": [
@@ -2446,7 +2689,7 @@
2446
2689
  "reference": "./Intel-ACPI.html",
2447
2690
  "isDeprecatedLicenseId": false,
2448
2691
  "detailsUrl": "http://spdx.org/licenses/Intel-ACPI.json",
2449
- "referenceNumber": "243",
2692
+ "referenceNumber": "256",
2450
2693
  "name": "Intel ACPI Software License Agreement",
2451
2694
  "licenseId": "Intel-ACPI",
2452
2695
  "seeAlso": [
@@ -2458,7 +2701,7 @@
2458
2701
  "reference": "./Interbase-1.0.html",
2459
2702
  "isDeprecatedLicenseId": false,
2460
2703
  "detailsUrl": "http://spdx.org/licenses/Interbase-1.0.json",
2461
- "referenceNumber": "334",
2704
+ "referenceNumber": "353",
2462
2705
  "name": "Interbase Public License v1.0",
2463
2706
  "licenseId": "Interbase-1.0",
2464
2707
  "seeAlso": [
@@ -2470,7 +2713,7 @@
2470
2713
  "reference": "./JPNIC.html",
2471
2714
  "isDeprecatedLicenseId": false,
2472
2715
  "detailsUrl": "http://spdx.org/licenses/JPNIC.json",
2473
- "referenceNumber": "327",
2716
+ "referenceNumber": "346",
2474
2717
  "name": "Japan Network Information Center License",
2475
2718
  "licenseId": "JPNIC",
2476
2719
  "seeAlso": [
@@ -2482,7 +2725,7 @@
2482
2725
  "reference": "./JSON.html",
2483
2726
  "isDeprecatedLicenseId": false,
2484
2727
  "detailsUrl": "http://spdx.org/licenses/JSON.json",
2485
- "referenceNumber": "204",
2728
+ "referenceNumber": "215",
2486
2729
  "name": "JSON License",
2487
2730
  "licenseId": "JSON",
2488
2731
  "seeAlso": [
@@ -2494,7 +2737,7 @@
2494
2737
  "reference": "./JasPer-2.0.html",
2495
2738
  "isDeprecatedLicenseId": false,
2496
2739
  "detailsUrl": "http://spdx.org/licenses/JasPer-2.0.json",
2497
- "referenceNumber": "81",
2740
+ "referenceNumber": "85",
2498
2741
  "name": "JasPer License",
2499
2742
  "licenseId": "JasPer-2.0",
2500
2743
  "seeAlso": [
@@ -2506,7 +2749,7 @@
2506
2749
  "reference": "./LAL-1.2.html",
2507
2750
  "isDeprecatedLicenseId": false,
2508
2751
  "detailsUrl": "http://spdx.org/licenses/LAL-1.2.json",
2509
- "referenceNumber": "159",
2752
+ "referenceNumber": "164",
2510
2753
  "name": "Licence Art Libre 1.2",
2511
2754
  "licenseId": "LAL-1.2",
2512
2755
  "seeAlso": [
@@ -2518,7 +2761,7 @@
2518
2761
  "reference": "./LAL-1.3.html",
2519
2762
  "isDeprecatedLicenseId": false,
2520
2763
  "detailsUrl": "http://spdx.org/licenses/LAL-1.3.json",
2521
- "referenceNumber": "368",
2764
+ "referenceNumber": "389",
2522
2765
  "name": "Licence Art Libre 1.3",
2523
2766
  "licenseId": "LAL-1.3",
2524
2767
  "seeAlso": [
@@ -2530,7 +2773,7 @@
2530
2773
  "reference": "./LGPL-2.0.html",
2531
2774
  "isDeprecatedLicenseId": true,
2532
2775
  "detailsUrl": "http://spdx.org/licenses/LGPL-2.0.json",
2533
- "referenceNumber": "286",
2776
+ "referenceNumber": "300",
2534
2777
  "name": "GNU Library General Public License v2 only",
2535
2778
  "licenseId": "LGPL-2.0",
2536
2779
  "seeAlso": [
@@ -2542,7 +2785,7 @@
2542
2785
  "reference": "./LGPL-2.0+.html",
2543
2786
  "isDeprecatedLicenseId": true,
2544
2787
  "detailsUrl": "http://spdx.org/licenses/LGPL-2.0+.json",
2545
- "referenceNumber": "144",
2788
+ "referenceNumber": "149",
2546
2789
  "name": "GNU Library General Public License v2 or later",
2547
2790
  "licenseId": "LGPL-2.0+",
2548
2791
  "seeAlso": [
@@ -2554,7 +2797,7 @@
2554
2797
  "reference": "./LGPL-2.0-only.html",
2555
2798
  "isDeprecatedLicenseId": false,
2556
2799
  "detailsUrl": "http://spdx.org/licenses/LGPL-2.0-only.json",
2557
- "referenceNumber": "339",
2800
+ "referenceNumber": "358",
2558
2801
  "name": "GNU Library General Public License v2 only",
2559
2802
  "licenseId": "LGPL-2.0-only",
2560
2803
  "seeAlso": [
@@ -2566,7 +2809,7 @@
2566
2809
  "reference": "./LGPL-2.0-or-later.html",
2567
2810
  "isDeprecatedLicenseId": false,
2568
2811
  "detailsUrl": "http://spdx.org/licenses/LGPL-2.0-or-later.json",
2569
- "referenceNumber": "35",
2812
+ "referenceNumber": "37",
2570
2813
  "name": "GNU Library General Public License v2 or later",
2571
2814
  "licenseId": "LGPL-2.0-or-later",
2572
2815
  "seeAlso": [
@@ -2579,7 +2822,7 @@
2579
2822
  "isDeprecatedLicenseId": true,
2580
2823
  "isFsfLibre": true,
2581
2824
  "detailsUrl": "http://spdx.org/licenses/LGPL-2.1.json",
2582
- "referenceNumber": "189",
2825
+ "referenceNumber": "198",
2583
2826
  "name": "GNU Lesser General Public License v2.1 only",
2584
2827
  "licenseId": "LGPL-2.1",
2585
2828
  "seeAlso": [
@@ -2593,7 +2836,7 @@
2593
2836
  "isDeprecatedLicenseId": true,
2594
2837
  "isFsfLibre": true,
2595
2838
  "detailsUrl": "http://spdx.org/licenses/LGPL-2.1+.json",
2596
- "referenceNumber": "209",
2839
+ "referenceNumber": "220",
2597
2840
  "name": "GNU Library General Public License v2.1 or later",
2598
2841
  "licenseId": "LGPL-2.1+",
2599
2842
  "seeAlso": [
@@ -2607,7 +2850,7 @@
2607
2850
  "isDeprecatedLicenseId": false,
2608
2851
  "isFsfLibre": true,
2609
2852
  "detailsUrl": "http://spdx.org/licenses/LGPL-2.1-only.json",
2610
- "referenceNumber": "143",
2853
+ "referenceNumber": "148",
2611
2854
  "name": "GNU Lesser General Public License v2.1 only",
2612
2855
  "licenseId": "LGPL-2.1-only",
2613
2856
  "seeAlso": [
@@ -2621,7 +2864,7 @@
2621
2864
  "isDeprecatedLicenseId": false,
2622
2865
  "isFsfLibre": true,
2623
2866
  "detailsUrl": "http://spdx.org/licenses/LGPL-2.1-or-later.json",
2624
- "referenceNumber": "279",
2867
+ "referenceNumber": "293",
2625
2868
  "name": "GNU Lesser General Public License v2.1 or later",
2626
2869
  "licenseId": "LGPL-2.1-or-later",
2627
2870
  "seeAlso": [
@@ -2635,7 +2878,7 @@
2635
2878
  "isDeprecatedLicenseId": true,
2636
2879
  "isFsfLibre": true,
2637
2880
  "detailsUrl": "http://spdx.org/licenses/LGPL-3.0.json",
2638
- "referenceNumber": "216",
2881
+ "referenceNumber": "227",
2639
2882
  "name": "GNU Lesser General Public License v3.0 only",
2640
2883
  "licenseId": "LGPL-3.0",
2641
2884
  "seeAlso": [
@@ -2649,7 +2892,7 @@
2649
2892
  "isDeprecatedLicenseId": true,
2650
2893
  "isFsfLibre": true,
2651
2894
  "detailsUrl": "http://spdx.org/licenses/LGPL-3.0+.json",
2652
- "referenceNumber": "228",
2895
+ "referenceNumber": "240",
2653
2896
  "name": "GNU Lesser General Public License v3.0 or later",
2654
2897
  "licenseId": "LGPL-3.0+",
2655
2898
  "seeAlso": [
@@ -2663,7 +2906,7 @@
2663
2906
  "isDeprecatedLicenseId": false,
2664
2907
  "isFsfLibre": true,
2665
2908
  "detailsUrl": "http://spdx.org/licenses/LGPL-3.0-only.json",
2666
- "referenceNumber": "49",
2909
+ "referenceNumber": "52",
2667
2910
  "name": "GNU Lesser General Public License v3.0 only",
2668
2911
  "licenseId": "LGPL-3.0-only",
2669
2912
  "seeAlso": [
@@ -2677,7 +2920,7 @@
2677
2920
  "isDeprecatedLicenseId": false,
2678
2921
  "isFsfLibre": true,
2679
2922
  "detailsUrl": "http://spdx.org/licenses/LGPL-3.0-or-later.json",
2680
- "referenceNumber": "328",
2923
+ "referenceNumber": "347",
2681
2924
  "name": "GNU Lesser General Public License v3.0 or later",
2682
2925
  "licenseId": "LGPL-3.0-or-later",
2683
2926
  "seeAlso": [
@@ -2690,7 +2933,7 @@
2690
2933
  "reference": "./LGPLLR.html",
2691
2934
  "isDeprecatedLicenseId": false,
2692
2935
  "detailsUrl": "http://spdx.org/licenses/LGPLLR.json",
2693
- "referenceNumber": "417",
2936
+ "referenceNumber": "439",
2694
2937
  "name": "Lesser General Public License For Linguistic Resources",
2695
2938
  "licenseId": "LGPLLR",
2696
2939
  "seeAlso": [
@@ -2702,7 +2945,7 @@
2702
2945
  "reference": "./LPL-1.0.html",
2703
2946
  "isDeprecatedLicenseId": false,
2704
2947
  "detailsUrl": "http://spdx.org/licenses/LPL-1.0.json",
2705
- "referenceNumber": "383",
2948
+ "referenceNumber": "404",
2706
2949
  "name": "Lucent Public License Version 1.0",
2707
2950
  "licenseId": "LPL-1.0",
2708
2951
  "seeAlso": [
@@ -2715,7 +2958,7 @@
2715
2958
  "isDeprecatedLicenseId": false,
2716
2959
  "isFsfLibre": true,
2717
2960
  "detailsUrl": "http://spdx.org/licenses/LPL-1.02.json",
2718
- "referenceNumber": "125",
2961
+ "referenceNumber": "130",
2719
2962
  "name": "Lucent Public License v1.02",
2720
2963
  "licenseId": "LPL-1.02",
2721
2964
  "seeAlso": [
@@ -2728,7 +2971,7 @@
2728
2971
  "reference": "./LPPL-1.0.html",
2729
2972
  "isDeprecatedLicenseId": false,
2730
2973
  "detailsUrl": "http://spdx.org/licenses/LPPL-1.0.json",
2731
- "referenceNumber": "86",
2974
+ "referenceNumber": "91",
2732
2975
  "name": "LaTeX Project Public License v1.0",
2733
2976
  "licenseId": "LPPL-1.0",
2734
2977
  "seeAlso": [
@@ -2740,7 +2983,7 @@
2740
2983
  "reference": "./LPPL-1.1.html",
2741
2984
  "isDeprecatedLicenseId": false,
2742
2985
  "detailsUrl": "http://spdx.org/licenses/LPPL-1.1.json",
2743
- "referenceNumber": "174",
2986
+ "referenceNumber": "180",
2744
2987
  "name": "LaTeX Project Public License v1.1",
2745
2988
  "licenseId": "LPPL-1.1",
2746
2989
  "seeAlso": [
@@ -2753,7 +2996,7 @@
2753
2996
  "isDeprecatedLicenseId": false,
2754
2997
  "isFsfLibre": true,
2755
2998
  "detailsUrl": "http://spdx.org/licenses/LPPL-1.2.json",
2756
- "referenceNumber": "166",
2999
+ "referenceNumber": "172",
2757
3000
  "name": "LaTeX Project Public License v1.2",
2758
3001
  "licenseId": "LPPL-1.2",
2759
3002
  "seeAlso": [
@@ -2766,7 +3009,7 @@
2766
3009
  "isDeprecatedLicenseId": false,
2767
3010
  "isFsfLibre": true,
2768
3011
  "detailsUrl": "http://spdx.org/licenses/LPPL-1.3a.json",
2769
- "referenceNumber": "280",
3012
+ "referenceNumber": "294",
2770
3013
  "name": "LaTeX Project Public License v1.3a",
2771
3014
  "licenseId": "LPPL-1.3a",
2772
3015
  "seeAlso": [
@@ -2778,7 +3021,7 @@
2778
3021
  "reference": "./LPPL-1.3c.html",
2779
3022
  "isDeprecatedLicenseId": false,
2780
3023
  "detailsUrl": "http://spdx.org/licenses/LPPL-1.3c.json",
2781
- "referenceNumber": "131",
3024
+ "referenceNumber": "136",
2782
3025
  "name": "LaTeX Project Public License v1.3c",
2783
3026
  "licenseId": "LPPL-1.3c",
2784
3027
  "seeAlso": [
@@ -2791,7 +3034,7 @@
2791
3034
  "reference": "./Latex2e.html",
2792
3035
  "isDeprecatedLicenseId": false,
2793
3036
  "detailsUrl": "http://spdx.org/licenses/Latex2e.json",
2794
- "referenceNumber": "37",
3037
+ "referenceNumber": "39",
2795
3038
  "name": "Latex2e License",
2796
3039
  "licenseId": "Latex2e",
2797
3040
  "seeAlso": [
@@ -2803,7 +3046,7 @@
2803
3046
  "reference": "./Leptonica.html",
2804
3047
  "isDeprecatedLicenseId": false,
2805
3048
  "detailsUrl": "http://spdx.org/licenses/Leptonica.json",
2806
- "referenceNumber": "311",
3049
+ "referenceNumber": "329",
2807
3050
  "name": "Leptonica License",
2808
3051
  "licenseId": "Leptonica",
2809
3052
  "seeAlso": [
@@ -2815,7 +3058,7 @@
2815
3058
  "reference": "./LiLiQ-P-1.1.html",
2816
3059
  "isDeprecatedLicenseId": false,
2817
3060
  "detailsUrl": "http://spdx.org/licenses/LiLiQ-P-1.1.json",
2818
- "referenceNumber": "83",
3061
+ "referenceNumber": "88",
2819
3062
  "name": "Licence Libre du Québec – Permissive version 1.1",
2820
3063
  "licenseId": "LiLiQ-P-1.1",
2821
3064
  "seeAlso": [
@@ -2828,7 +3071,7 @@
2828
3071
  "reference": "./LiLiQ-R-1.1.html",
2829
3072
  "isDeprecatedLicenseId": false,
2830
3073
  "detailsUrl": "http://spdx.org/licenses/LiLiQ-R-1.1.json",
2831
- "referenceNumber": "301",
3074
+ "referenceNumber": "316",
2832
3075
  "name": "Licence Libre du Québec – Réciprocité version 1.1",
2833
3076
  "licenseId": "LiLiQ-R-1.1",
2834
3077
  "seeAlso": [
@@ -2841,7 +3084,7 @@
2841
3084
  "reference": "./LiLiQ-Rplus-1.1.html",
2842
3085
  "isDeprecatedLicenseId": false,
2843
3086
  "detailsUrl": "http://spdx.org/licenses/LiLiQ-Rplus-1.1.json",
2844
- "referenceNumber": "346",
3087
+ "referenceNumber": "365",
2845
3088
  "name": "Licence Libre du Québec – Réciprocité forte version 1.1",
2846
3089
  "licenseId": "LiLiQ-Rplus-1.1",
2847
3090
  "seeAlso": [
@@ -2854,7 +3097,7 @@
2854
3097
  "reference": "./Libpng.html",
2855
3098
  "isDeprecatedLicenseId": false,
2856
3099
  "detailsUrl": "http://spdx.org/licenses/Libpng.json",
2857
- "referenceNumber": "388",
3100
+ "referenceNumber": "409",
2858
3101
  "name": "libpng License",
2859
3102
  "licenseId": "Libpng",
2860
3103
  "seeAlso": [
@@ -2866,7 +3109,7 @@
2866
3109
  "reference": "./Linux-OpenIB.html",
2867
3110
  "isDeprecatedLicenseId": false,
2868
3111
  "detailsUrl": "http://spdx.org/licenses/Linux-OpenIB.json",
2869
- "referenceNumber": "224",
3112
+ "referenceNumber": "235",
2870
3113
  "name": "Linux Kernel Variant of OpenIB.org license",
2871
3114
  "licenseId": "Linux-OpenIB",
2872
3115
  "seeAlso": [
@@ -2879,7 +3122,7 @@
2879
3122
  "isDeprecatedLicenseId": false,
2880
3123
  "isFsfLibre": true,
2881
3124
  "detailsUrl": "http://spdx.org/licenses/MIT.json",
2882
- "referenceNumber": "265",
3125
+ "referenceNumber": "278",
2883
3126
  "name": "MIT License",
2884
3127
  "licenseId": "MIT",
2885
3128
  "seeAlso": [
@@ -2891,7 +3134,7 @@
2891
3134
  "reference": "./MIT-0.html",
2892
3135
  "isDeprecatedLicenseId": false,
2893
3136
  "detailsUrl": "http://spdx.org/licenses/MIT-0.json",
2894
- "referenceNumber": "79",
3137
+ "referenceNumber": "83",
2895
3138
  "name": "MIT No Attribution",
2896
3139
  "licenseId": "MIT-0",
2897
3140
  "seeAlso": [
@@ -2899,13 +3142,13 @@
2899
3142
  "https://romanrm.net/mit-zero",
2900
3143
  "https://github.com/awsdocs/aws-cloud9-user-guide/blob/master/LICENSE-SAMPLECODE"
2901
3144
  ],
2902
- "isOsiApproved": false
3145
+ "isOsiApproved": true
2903
3146
  },
2904
3147
  {
2905
3148
  "reference": "./MIT-CMU.html",
2906
3149
  "isDeprecatedLicenseId": false,
2907
3150
  "detailsUrl": "http://spdx.org/licenses/MIT-CMU.json",
2908
- "referenceNumber": "355",
3151
+ "referenceNumber": "375",
2909
3152
  "name": "CMU License",
2910
3153
  "licenseId": "MIT-CMU",
2911
3154
  "seeAlso": [
@@ -2918,7 +3161,7 @@
2918
3161
  "reference": "./MIT-advertising.html",
2919
3162
  "isDeprecatedLicenseId": false,
2920
3163
  "detailsUrl": "http://spdx.org/licenses/MIT-advertising.json",
2921
- "referenceNumber": "199",
3164
+ "referenceNumber": "210",
2922
3165
  "name": "Enlightenment License (e16)",
2923
3166
  "licenseId": "MIT-advertising",
2924
3167
  "seeAlso": [
@@ -2930,7 +3173,7 @@
2930
3173
  "reference": "./MIT-enna.html",
2931
3174
  "isDeprecatedLicenseId": false,
2932
3175
  "detailsUrl": "http://spdx.org/licenses/MIT-enna.json",
2933
- "referenceNumber": "54",
3176
+ "referenceNumber": "58",
2934
3177
  "name": "enna License",
2935
3178
  "licenseId": "MIT-enna",
2936
3179
  "seeAlso": [
@@ -2942,7 +3185,7 @@
2942
3185
  "reference": "./MIT-feh.html",
2943
3186
  "isDeprecatedLicenseId": false,
2944
3187
  "detailsUrl": "http://spdx.org/licenses/MIT-feh.json",
2945
- "referenceNumber": "376",
3188
+ "referenceNumber": "397",
2946
3189
  "name": "feh License",
2947
3190
  "licenseId": "MIT-feh",
2948
3191
  "seeAlso": [
@@ -2954,7 +3197,7 @@
2954
3197
  "reference": "./MITNFA.html",
2955
3198
  "isDeprecatedLicenseId": false,
2956
3199
  "detailsUrl": "http://spdx.org/licenses/MITNFA.json",
2957
- "referenceNumber": "347",
3200
+ "referenceNumber": "366",
2958
3201
  "name": "MIT +no-false-attribs license",
2959
3202
  "licenseId": "MITNFA",
2960
3203
  "seeAlso": [
@@ -2966,7 +3209,7 @@
2966
3209
  "reference": "./MPL-1.0.html",
2967
3210
  "isDeprecatedLicenseId": false,
2968
3211
  "detailsUrl": "http://spdx.org/licenses/MPL-1.0.json",
2969
- "referenceNumber": "247",
3212
+ "referenceNumber": "260",
2970
3213
  "name": "Mozilla Public License 1.0",
2971
3214
  "licenseId": "MPL-1.0",
2972
3215
  "seeAlso": [
@@ -2980,7 +3223,7 @@
2980
3223
  "isDeprecatedLicenseId": false,
2981
3224
  "isFsfLibre": true,
2982
3225
  "detailsUrl": "http://spdx.org/licenses/MPL-1.1.json",
2983
- "referenceNumber": "407",
3226
+ "referenceNumber": "428",
2984
3227
  "name": "Mozilla Public License 1.1",
2985
3228
  "licenseId": "MPL-1.1",
2986
3229
  "seeAlso": [
@@ -2994,7 +3237,7 @@
2994
3237
  "isDeprecatedLicenseId": false,
2995
3238
  "isFsfLibre": true,
2996
3239
  "detailsUrl": "http://spdx.org/licenses/MPL-2.0.json",
2997
- "referenceNumber": "126",
3240
+ "referenceNumber": "131",
2998
3241
  "name": "Mozilla Public License 2.0",
2999
3242
  "licenseId": "MPL-2.0",
3000
3243
  "seeAlso": [
@@ -3007,7 +3250,7 @@
3007
3250
  "reference": "./MPL-2.0-no-copyleft-exception.html",
3008
3251
  "isDeprecatedLicenseId": false,
3009
3252
  "detailsUrl": "http://spdx.org/licenses/MPL-2.0-no-copyleft-exception.json",
3010
- "referenceNumber": "190",
3253
+ "referenceNumber": "199",
3011
3254
  "name": "Mozilla Public License 2.0 (no copyleft exception)",
3012
3255
  "licenseId": "MPL-2.0-no-copyleft-exception",
3013
3256
  "seeAlso": [
@@ -3021,7 +3264,7 @@
3021
3264
  "isDeprecatedLicenseId": false,
3022
3265
  "isFsfLibre": true,
3023
3266
  "detailsUrl": "http://spdx.org/licenses/MS-PL.json",
3024
- "referenceNumber": "377",
3267
+ "referenceNumber": "398",
3025
3268
  "name": "Microsoft Public License",
3026
3269
  "licenseId": "MS-PL",
3027
3270
  "seeAlso": [
@@ -3035,7 +3278,7 @@
3035
3278
  "isDeprecatedLicenseId": false,
3036
3279
  "isFsfLibre": true,
3037
3280
  "detailsUrl": "http://spdx.org/licenses/MS-RL.json",
3038
- "referenceNumber": "4",
3281
+ "referenceNumber": "5",
3039
3282
  "name": "Microsoft Reciprocal License",
3040
3283
  "licenseId": "MS-RL",
3041
3284
  "seeAlso": [
@@ -3048,7 +3291,7 @@
3048
3291
  "reference": "./MTLL.html",
3049
3292
  "isDeprecatedLicenseId": false,
3050
3293
  "detailsUrl": "http://spdx.org/licenses/MTLL.json",
3051
- "referenceNumber": "106",
3294
+ "referenceNumber": "111",
3052
3295
  "name": "Matrix Template Library License",
3053
3296
  "licenseId": "MTLL",
3054
3297
  "seeAlso": [
@@ -3060,7 +3303,7 @@
3060
3303
  "reference": "./MakeIndex.html",
3061
3304
  "isDeprecatedLicenseId": false,
3062
3305
  "detailsUrl": "http://spdx.org/licenses/MakeIndex.json",
3063
- "referenceNumber": "354",
3306
+ "referenceNumber": "374",
3064
3307
  "name": "MakeIndex License",
3065
3308
  "licenseId": "MakeIndex",
3066
3309
  "seeAlso": [
@@ -3072,7 +3315,7 @@
3072
3315
  "reference": "./MirOS.html",
3073
3316
  "isDeprecatedLicenseId": false,
3074
3317
  "detailsUrl": "http://spdx.org/licenses/MirOS.json",
3075
- "referenceNumber": "381",
3318
+ "referenceNumber": "402",
3076
3319
  "name": "The MirOS Licence",
3077
3320
  "licenseId": "MirOS",
3078
3321
  "seeAlso": [
@@ -3084,7 +3327,7 @@
3084
3327
  "reference": "./Motosoto.html",
3085
3328
  "isDeprecatedLicenseId": false,
3086
3329
  "detailsUrl": "http://spdx.org/licenses/Motosoto.json",
3087
- "referenceNumber": "12",
3330
+ "referenceNumber": "14",
3088
3331
  "name": "Motosoto License",
3089
3332
  "licenseId": "Motosoto",
3090
3333
  "seeAlso": [
@@ -3096,7 +3339,7 @@
3096
3339
  "reference": "./MulanPSL-1.0.html",
3097
3340
  "isDeprecatedLicenseId": false,
3098
3341
  "detailsUrl": "http://spdx.org/licenses/MulanPSL-1.0.json",
3099
- "referenceNumber": "208",
3342
+ "referenceNumber": "219",
3100
3343
  "name": "Mulan Permissive Software License, Version 1",
3101
3344
  "licenseId": "MulanPSL-1.0",
3102
3345
  "seeAlso": [
@@ -3109,7 +3352,7 @@
3109
3352
  "reference": "./MulanPSL-2.0.html",
3110
3353
  "isDeprecatedLicenseId": false,
3111
3354
  "detailsUrl": "http://spdx.org/licenses/MulanPSL-2.0.json",
3112
- "referenceNumber": "153",
3355
+ "referenceNumber": "158",
3113
3356
  "name": "Mulan Permissive Software License, Version 2",
3114
3357
  "licenseId": "MulanPSL-2.0",
3115
3358
  "seeAlso": [
@@ -3121,7 +3364,7 @@
3121
3364
  "reference": "./Multics.html",
3122
3365
  "isDeprecatedLicenseId": false,
3123
3366
  "detailsUrl": "http://spdx.org/licenses/Multics.json",
3124
- "referenceNumber": "170",
3367
+ "referenceNumber": "176",
3125
3368
  "name": "Multics License",
3126
3369
  "licenseId": "Multics",
3127
3370
  "seeAlso": [
@@ -3133,7 +3376,7 @@
3133
3376
  "reference": "./Mup.html",
3134
3377
  "isDeprecatedLicenseId": false,
3135
3378
  "detailsUrl": "http://spdx.org/licenses/Mup.json",
3136
- "referenceNumber": "316",
3379
+ "referenceNumber": "334",
3137
3380
  "name": "Mup License",
3138
3381
  "licenseId": "Mup",
3139
3382
  "seeAlso": [
@@ -3145,7 +3388,7 @@
3145
3388
  "reference": "./NASA-1.3.html",
3146
3389
  "isDeprecatedLicenseId": false,
3147
3390
  "detailsUrl": "http://spdx.org/licenses/NASA-1.3.json",
3148
- "referenceNumber": "114",
3391
+ "referenceNumber": "119",
3149
3392
  "name": "NASA Open Source Agreement 1.3",
3150
3393
  "licenseId": "NASA-1.3",
3151
3394
  "seeAlso": [
@@ -3158,7 +3401,7 @@
3158
3401
  "reference": "./NBPL-1.0.html",
3159
3402
  "isDeprecatedLicenseId": false,
3160
3403
  "detailsUrl": "http://spdx.org/licenses/NBPL-1.0.json",
3161
- "referenceNumber": "17",
3404
+ "referenceNumber": "19",
3162
3405
  "name": "Net Boolean Public License v1",
3163
3406
  "licenseId": "NBPL-1.0",
3164
3407
  "seeAlso": [
@@ -3170,7 +3413,7 @@
3170
3413
  "reference": "./NCGL-UK-2.0.html",
3171
3414
  "isDeprecatedLicenseId": false,
3172
3415
  "detailsUrl": "http://spdx.org/licenses/NCGL-UK-2.0.json",
3173
- "referenceNumber": "225",
3416
+ "referenceNumber": "236",
3174
3417
  "name": "Non-Commercial Government Licence",
3175
3418
  "licenseId": "NCGL-UK-2.0",
3176
3419
  "seeAlso": [
@@ -3183,7 +3426,7 @@
3183
3426
  "isDeprecatedLicenseId": false,
3184
3427
  "isFsfLibre": true,
3185
3428
  "detailsUrl": "http://spdx.org/licenses/NCSA.json",
3186
- "referenceNumber": "194",
3429
+ "referenceNumber": "203",
3187
3430
  "name": "University of Illinois/NCSA Open Source License",
3188
3431
  "licenseId": "NCSA",
3189
3432
  "seeAlso": [
@@ -3196,7 +3439,7 @@
3196
3439
  "reference": "./NGPL.html",
3197
3440
  "isDeprecatedLicenseId": false,
3198
3441
  "detailsUrl": "http://spdx.org/licenses/NGPL.json",
3199
- "referenceNumber": "319",
3442
+ "referenceNumber": "338",
3200
3443
  "name": "Nethack General Public License",
3201
3444
  "licenseId": "NGPL",
3202
3445
  "seeAlso": [
@@ -3204,11 +3447,37 @@
3204
3447
  ],
3205
3448
  "isOsiApproved": true
3206
3449
  },
3450
+ {
3451
+ "reference": "./NIST-PD.html",
3452
+ "isDeprecatedLicenseId": false,
3453
+ "detailsUrl": "http://spdx.org/licenses/NIST-PD.json",
3454
+ "referenceNumber": "321",
3455
+ "name": "NIST Public Domain Notice",
3456
+ "licenseId": "NIST-PD",
3457
+ "seeAlso": [
3458
+ "https://github.com/tcheneau/simpleRPL/blob/e645e69e38dd4e3ccfeceb2db8cba05b7c2e0cd3/LICENSE.txt",
3459
+ "https://github.com/tcheneau/Routing/blob/f09f46fcfe636107f22f2c98348188a65a135d98/README.md"
3460
+ ],
3461
+ "isOsiApproved": false
3462
+ },
3463
+ {
3464
+ "reference": "./NIST-PD-fallback.html",
3465
+ "isDeprecatedLicenseId": false,
3466
+ "detailsUrl": "http://spdx.org/licenses/NIST-PD-fallback.json",
3467
+ "referenceNumber": "40",
3468
+ "name": "NIST Public Domain Notice with license fallback",
3469
+ "licenseId": "NIST-PD-fallback",
3470
+ "seeAlso": [
3471
+ "https://github.com/usnistgov/jsip/blob/59700e6926cbe96c5cdae897d9a7d2656b42abe3/LICENSE",
3472
+ "https://github.com/usnistgov/fipy/blob/86aaa5c2ba2c6f1be19593c5986071cf6568cc34/LICENSE.rst"
3473
+ ],
3474
+ "isOsiApproved": false
3475
+ },
3207
3476
  {
3208
3477
  "reference": "./NLOD-1.0.html",
3209
3478
  "isDeprecatedLicenseId": false,
3210
3479
  "detailsUrl": "http://spdx.org/licenses/NLOD-1.0.json",
3211
- "referenceNumber": "139",
3480
+ "referenceNumber": "144",
3212
3481
  "name": "Norwegian Licence for Open Government Data",
3213
3482
  "licenseId": "NLOD-1.0",
3214
3483
  "seeAlso": [
@@ -3220,7 +3489,7 @@
3220
3489
  "reference": "./NLPL.html",
3221
3490
  "isDeprecatedLicenseId": false,
3222
3491
  "detailsUrl": "http://spdx.org/licenses/NLPL.json",
3223
- "referenceNumber": "317",
3492
+ "referenceNumber": "335",
3224
3493
  "name": "No Limit Public License",
3225
3494
  "licenseId": "NLPL",
3226
3495
  "seeAlso": [
@@ -3233,7 +3502,7 @@
3233
3502
  "isDeprecatedLicenseId": false,
3234
3503
  "isFsfLibre": true,
3235
3504
  "detailsUrl": "http://spdx.org/licenses/NOSL.json",
3236
- "referenceNumber": "392",
3505
+ "referenceNumber": "413",
3237
3506
  "name": "Netizen Open Source License",
3238
3507
  "licenseId": "NOSL",
3239
3508
  "seeAlso": [
@@ -3246,7 +3515,7 @@
3246
3515
  "isDeprecatedLicenseId": false,
3247
3516
  "isFsfLibre": true,
3248
3517
  "detailsUrl": "http://spdx.org/licenses/NPL-1.0.json",
3249
- "referenceNumber": "253",
3518
+ "referenceNumber": "266",
3250
3519
  "name": "Netscape Public License v1.0",
3251
3520
  "licenseId": "NPL-1.0",
3252
3521
  "seeAlso": [
@@ -3259,7 +3528,7 @@
3259
3528
  "isDeprecatedLicenseId": false,
3260
3529
  "isFsfLibre": true,
3261
3530
  "detailsUrl": "http://spdx.org/licenses/NPL-1.1.json",
3262
- "referenceNumber": "422",
3531
+ "referenceNumber": "444",
3263
3532
  "name": "Netscape Public License v1.1",
3264
3533
  "licenseId": "NPL-1.1",
3265
3534
  "seeAlso": [
@@ -3271,7 +3540,7 @@
3271
3540
  "reference": "./NPOSL-3.0.html",
3272
3541
  "isDeprecatedLicenseId": false,
3273
3542
  "detailsUrl": "http://spdx.org/licenses/NPOSL-3.0.json",
3274
- "referenceNumber": "156",
3543
+ "referenceNumber": "161",
3275
3544
  "name": "Non-Profit Open Software License 3.0",
3276
3545
  "licenseId": "NPOSL-3.0",
3277
3546
  "seeAlso": [
@@ -3283,7 +3552,7 @@
3283
3552
  "reference": "./NRL.html",
3284
3553
  "isDeprecatedLicenseId": false,
3285
3554
  "detailsUrl": "http://spdx.org/licenses/NRL.json",
3286
- "referenceNumber": "105",
3555
+ "referenceNumber": "110",
3287
3556
  "name": "NRL License",
3288
3557
  "licenseId": "NRL",
3289
3558
  "seeAlso": [
@@ -3295,7 +3564,7 @@
3295
3564
  "reference": "./NTP.html",
3296
3565
  "isDeprecatedLicenseId": false,
3297
3566
  "detailsUrl": "http://spdx.org/licenses/NTP.json",
3298
- "referenceNumber": "268",
3567
+ "referenceNumber": "281",
3299
3568
  "name": "NTP License",
3300
3569
  "licenseId": "NTP",
3301
3570
  "seeAlso": [
@@ -3307,7 +3576,7 @@
3307
3576
  "reference": "./NTP-0.html",
3308
3577
  "isDeprecatedLicenseId": false,
3309
3578
  "detailsUrl": "http://spdx.org/licenses/NTP-0.json",
3310
- "referenceNumber": "192",
3579
+ "referenceNumber": "201",
3311
3580
  "name": "NTP No Attribution",
3312
3581
  "licenseId": "NTP-0",
3313
3582
  "seeAlso": [
@@ -3319,7 +3588,7 @@
3319
3588
  "reference": "./Naumen.html",
3320
3589
  "isDeprecatedLicenseId": false,
3321
3590
  "detailsUrl": "http://spdx.org/licenses/Naumen.json",
3322
- "referenceNumber": "293",
3591
+ "referenceNumber": "308",
3323
3592
  "name": "Naumen Public License",
3324
3593
  "licenseId": "Naumen",
3325
3594
  "seeAlso": [
@@ -3331,7 +3600,7 @@
3331
3600
  "reference": "./Net-SNMP.html",
3332
3601
  "isDeprecatedLicenseId": false,
3333
3602
  "detailsUrl": "http://spdx.org/licenses/Net-SNMP.json",
3334
- "referenceNumber": "288",
3603
+ "referenceNumber": "302",
3335
3604
  "name": "Net-SNMP License",
3336
3605
  "licenseId": "Net-SNMP",
3337
3606
  "seeAlso": [
@@ -3343,7 +3612,7 @@
3343
3612
  "reference": "./NetCDF.html",
3344
3613
  "isDeprecatedLicenseId": false,
3345
3614
  "detailsUrl": "http://spdx.org/licenses/NetCDF.json",
3346
- "referenceNumber": "219",
3615
+ "referenceNumber": "230",
3347
3616
  "name": "NetCDF license",
3348
3617
  "licenseId": "NetCDF",
3349
3618
  "seeAlso": [
@@ -3355,7 +3624,7 @@
3355
3624
  "reference": "./Newsletr.html",
3356
3625
  "isDeprecatedLicenseId": false,
3357
3626
  "detailsUrl": "http://spdx.org/licenses/Newsletr.json",
3358
- "referenceNumber": "369",
3627
+ "referenceNumber": "390",
3359
3628
  "name": "Newsletr License",
3360
3629
  "licenseId": "Newsletr",
3361
3630
  "seeAlso": [
@@ -3368,7 +3637,7 @@
3368
3637
  "isDeprecatedLicenseId": false,
3369
3638
  "isFsfLibre": true,
3370
3639
  "detailsUrl": "http://spdx.org/licenses/Nokia.json",
3371
- "referenceNumber": "130",
3640
+ "referenceNumber": "135",
3372
3641
  "name": "Nokia Open Source License",
3373
3642
  "licenseId": "Nokia",
3374
3643
  "seeAlso": [
@@ -3380,7 +3649,7 @@
3380
3649
  "reference": "./Noweb.html",
3381
3650
  "isDeprecatedLicenseId": false,
3382
3651
  "detailsUrl": "http://spdx.org/licenses/Noweb.json",
3383
- "referenceNumber": "73",
3652
+ "referenceNumber": "77",
3384
3653
  "name": "Noweb License",
3385
3654
  "licenseId": "Noweb",
3386
3655
  "seeAlso": [
@@ -3393,7 +3662,7 @@
3393
3662
  "isDeprecatedLicenseId": true,
3394
3663
  "isFsfLibre": true,
3395
3664
  "detailsUrl": "http://spdx.org/licenses/Nunit.json",
3396
- "referenceNumber": "91",
3665
+ "referenceNumber": "96",
3397
3666
  "name": "Nunit License",
3398
3667
  "licenseId": "Nunit",
3399
3668
  "seeAlso": [
@@ -3405,7 +3674,7 @@
3405
3674
  "reference": "./O-UDA-1.0.html",
3406
3675
  "isDeprecatedLicenseId": false,
3407
3676
  "detailsUrl": "http://spdx.org/licenses/O-UDA-1.0.json",
3408
- "referenceNumber": "48",
3677
+ "referenceNumber": "51",
3409
3678
  "name": "Open Use of Data Agreement v1.0",
3410
3679
  "licenseId": "O-UDA-1.0",
3411
3680
  "seeAlso": [
@@ -3417,7 +3686,7 @@
3417
3686
  "reference": "./OCCT-PL.html",
3418
3687
  "isDeprecatedLicenseId": false,
3419
3688
  "detailsUrl": "http://spdx.org/licenses/OCCT-PL.json",
3420
- "referenceNumber": "68",
3689
+ "referenceNumber": "72",
3421
3690
  "name": "Open CASCADE Technology Public License",
3422
3691
  "licenseId": "OCCT-PL",
3423
3692
  "seeAlso": [
@@ -3429,7 +3698,7 @@
3429
3698
  "reference": "./OCLC-2.0.html",
3430
3699
  "isDeprecatedLicenseId": false,
3431
3700
  "detailsUrl": "http://spdx.org/licenses/OCLC-2.0.json",
3432
- "referenceNumber": "352",
3701
+ "referenceNumber": "372",
3433
3702
  "name": "OCLC Research Public License 2.0",
3434
3703
  "licenseId": "OCLC-2.0",
3435
3704
  "seeAlso": [
@@ -3442,7 +3711,7 @@
3442
3711
  "reference": "./ODC-By-1.0.html",
3443
3712
  "isDeprecatedLicenseId": false,
3444
3713
  "detailsUrl": "http://spdx.org/licenses/ODC-By-1.0.json",
3445
- "referenceNumber": "393",
3714
+ "referenceNumber": "414",
3446
3715
  "name": "Open Data Commons Attribution License v1.0",
3447
3716
  "licenseId": "ODC-By-1.0",
3448
3717
  "seeAlso": [
@@ -3455,7 +3724,7 @@
3455
3724
  "isDeprecatedLicenseId": false,
3456
3725
  "isFsfLibre": true,
3457
3726
  "detailsUrl": "http://spdx.org/licenses/ODbL-1.0.json",
3458
- "referenceNumber": "351",
3727
+ "referenceNumber": "371",
3459
3728
  "name": "ODC Open Database License v1.0",
3460
3729
  "licenseId": "ODbL-1.0",
3461
3730
  "seeAlso": [
@@ -3468,7 +3737,7 @@
3468
3737
  "isDeprecatedLicenseId": false,
3469
3738
  "isFsfLibre": true,
3470
3739
  "detailsUrl": "http://spdx.org/licenses/OFL-1.0.json",
3471
- "referenceNumber": "84",
3740
+ "referenceNumber": "89",
3472
3741
  "name": "SIL Open Font License 1.0",
3473
3742
  "licenseId": "OFL-1.0",
3474
3743
  "seeAlso": [
@@ -3480,7 +3749,7 @@
3480
3749
  "reference": "./OFL-1.0-RFN.html",
3481
3750
  "isDeprecatedLicenseId": false,
3482
3751
  "detailsUrl": "http://spdx.org/licenses/OFL-1.0-RFN.json",
3483
- "referenceNumber": "309",
3752
+ "referenceNumber": "327",
3484
3753
  "name": "SIL Open Font License 1.0 with Reserved Font Name",
3485
3754
  "licenseId": "OFL-1.0-RFN",
3486
3755
  "seeAlso": [
@@ -3492,7 +3761,7 @@
3492
3761
  "reference": "./OFL-1.0-no-RFN.html",
3493
3762
  "isDeprecatedLicenseId": false,
3494
3763
  "detailsUrl": "http://spdx.org/licenses/OFL-1.0-no-RFN.json",
3495
- "referenceNumber": "74",
3764
+ "referenceNumber": "78",
3496
3765
  "name": "SIL Open Font License 1.0 with no Reserved Font Name",
3497
3766
  "licenseId": "OFL-1.0-no-RFN",
3498
3767
  "seeAlso": [
@@ -3505,7 +3774,7 @@
3505
3774
  "isDeprecatedLicenseId": false,
3506
3775
  "isFsfLibre": true,
3507
3776
  "detailsUrl": "http://spdx.org/licenses/OFL-1.1.json",
3508
- "referenceNumber": "322",
3777
+ "referenceNumber": "341",
3509
3778
  "name": "SIL Open Font License 1.1",
3510
3779
  "licenseId": "OFL-1.1",
3511
3780
  "seeAlso": [
@@ -3518,7 +3787,7 @@
3518
3787
  "reference": "./OFL-1.1-RFN.html",
3519
3788
  "isDeprecatedLicenseId": false,
3520
3789
  "detailsUrl": "http://spdx.org/licenses/OFL-1.1-RFN.json",
3521
- "referenceNumber": "43",
3790
+ "referenceNumber": "46",
3522
3791
  "name": "SIL Open Font License 1.1 with Reserved Font Name",
3523
3792
  "licenseId": "OFL-1.1-RFN",
3524
3793
  "seeAlso": [
@@ -3531,7 +3800,7 @@
3531
3800
  "reference": "./OFL-1.1-no-RFN.html",
3532
3801
  "isDeprecatedLicenseId": false,
3533
3802
  "detailsUrl": "http://spdx.org/licenses/OFL-1.1-no-RFN.json",
3534
- "referenceNumber": "246",
3803
+ "referenceNumber": "259",
3535
3804
  "name": "SIL Open Font License 1.1 with no Reserved Font Name",
3536
3805
  "licenseId": "OFL-1.1-no-RFN",
3537
3806
  "seeAlso": [
@@ -3544,7 +3813,7 @@
3544
3813
  "reference": "./OGC-1.0.html",
3545
3814
  "isDeprecatedLicenseId": false,
3546
3815
  "detailsUrl": "http://spdx.org/licenses/OGC-1.0.json",
3547
- "referenceNumber": "378",
3816
+ "referenceNumber": "399",
3548
3817
  "name": "OGC Software License, Version 1.0",
3549
3818
  "licenseId": "OGC-1.0",
3550
3819
  "seeAlso": [
@@ -3556,7 +3825,7 @@
3556
3825
  "reference": "./OGL-Canada-2.0.html",
3557
3826
  "isDeprecatedLicenseId": false,
3558
3827
  "detailsUrl": "http://spdx.org/licenses/OGL-Canada-2.0.json",
3559
- "referenceNumber": "357",
3828
+ "referenceNumber": "377",
3560
3829
  "name": "Open Government Licence - Canada",
3561
3830
  "licenseId": "OGL-Canada-2.0",
3562
3831
  "seeAlso": [
@@ -3568,7 +3837,7 @@
3568
3837
  "reference": "./OGL-UK-1.0.html",
3569
3838
  "isDeprecatedLicenseId": false,
3570
3839
  "detailsUrl": "http://spdx.org/licenses/OGL-UK-1.0.json",
3571
- "referenceNumber": "359",
3840
+ "referenceNumber": "380",
3572
3841
  "name": "Open Government Licence v1.0",
3573
3842
  "licenseId": "OGL-UK-1.0",
3574
3843
  "seeAlso": [
@@ -3580,7 +3849,7 @@
3580
3849
  "reference": "./OGL-UK-2.0.html",
3581
3850
  "isDeprecatedLicenseId": false,
3582
3851
  "detailsUrl": "http://spdx.org/licenses/OGL-UK-2.0.json",
3583
- "referenceNumber": "13",
3852
+ "referenceNumber": "15",
3584
3853
  "name": "Open Government Licence v2.0",
3585
3854
  "licenseId": "OGL-UK-2.0",
3586
3855
  "seeAlso": [
@@ -3592,7 +3861,7 @@
3592
3861
  "reference": "./OGL-UK-3.0.html",
3593
3862
  "isDeprecatedLicenseId": false,
3594
3863
  "detailsUrl": "http://spdx.org/licenses/OGL-UK-3.0.json",
3595
- "referenceNumber": "21",
3864
+ "referenceNumber": "23",
3596
3865
  "name": "Open Government Licence v3.0",
3597
3866
  "licenseId": "OGL-UK-3.0",
3598
3867
  "seeAlso": [
@@ -3604,7 +3873,7 @@
3604
3873
  "reference": "./OGTSL.html",
3605
3874
  "isDeprecatedLicenseId": false,
3606
3875
  "detailsUrl": "http://spdx.org/licenses/OGTSL.json",
3607
- "referenceNumber": "26",
3876
+ "referenceNumber": "28",
3608
3877
  "name": "Open Group Test Suite License",
3609
3878
  "licenseId": "OGTSL",
3610
3879
  "seeAlso": [
@@ -3617,7 +3886,7 @@
3617
3886
  "reference": "./OLDAP-1.1.html",
3618
3887
  "isDeprecatedLicenseId": false,
3619
3888
  "detailsUrl": "http://spdx.org/licenses/OLDAP-1.1.json",
3620
- "referenceNumber": "57",
3889
+ "referenceNumber": "61",
3621
3890
  "name": "Open LDAP Public License v1.1",
3622
3891
  "licenseId": "OLDAP-1.1",
3623
3892
  "seeAlso": [
@@ -3629,7 +3898,7 @@
3629
3898
  "reference": "./OLDAP-1.2.html",
3630
3899
  "isDeprecatedLicenseId": false,
3631
3900
  "detailsUrl": "http://spdx.org/licenses/OLDAP-1.2.json",
3632
- "referenceNumber": "50",
3901
+ "referenceNumber": "53",
3633
3902
  "name": "Open LDAP Public License v1.2",
3634
3903
  "licenseId": "OLDAP-1.2",
3635
3904
  "seeAlso": [
@@ -3641,7 +3910,7 @@
3641
3910
  "reference": "./OLDAP-1.3.html",
3642
3911
  "isDeprecatedLicenseId": false,
3643
3912
  "detailsUrl": "http://spdx.org/licenses/OLDAP-1.3.json",
3644
- "referenceNumber": "42",
3913
+ "referenceNumber": "45",
3645
3914
  "name": "Open LDAP Public License v1.3",
3646
3915
  "licenseId": "OLDAP-1.3",
3647
3916
  "seeAlso": [
@@ -3653,7 +3922,7 @@
3653
3922
  "reference": "./OLDAP-1.4.html",
3654
3923
  "isDeprecatedLicenseId": false,
3655
3924
  "detailsUrl": "http://spdx.org/licenses/OLDAP-1.4.json",
3656
- "referenceNumber": "52",
3925
+ "referenceNumber": "55",
3657
3926
  "name": "Open LDAP Public License v1.4",
3658
3927
  "licenseId": "OLDAP-1.4",
3659
3928
  "seeAlso": [
@@ -3665,7 +3934,7 @@
3665
3934
  "reference": "./OLDAP-2.0.html",
3666
3935
  "isDeprecatedLicenseId": false,
3667
3936
  "detailsUrl": "http://spdx.org/licenses/OLDAP-2.0.json",
3668
- "referenceNumber": "25",
3937
+ "referenceNumber": "27",
3669
3938
  "name": "Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B)",
3670
3939
  "licenseId": "OLDAP-2.0",
3671
3940
  "seeAlso": [
@@ -3677,7 +3946,7 @@
3677
3946
  "reference": "./OLDAP-2.0.1.html",
3678
3947
  "isDeprecatedLicenseId": false,
3679
3948
  "detailsUrl": "http://spdx.org/licenses/OLDAP-2.0.1.json",
3680
- "referenceNumber": "290",
3949
+ "referenceNumber": "304",
3681
3950
  "name": "Open LDAP Public License v2.0.1",
3682
3951
  "licenseId": "OLDAP-2.0.1",
3683
3952
  "seeAlso": [
@@ -3689,7 +3958,7 @@
3689
3958
  "reference": "./OLDAP-2.1.html",
3690
3959
  "isDeprecatedLicenseId": false,
3691
3960
  "detailsUrl": "http://spdx.org/licenses/OLDAP-2.1.json",
3692
- "referenceNumber": "413",
3961
+ "referenceNumber": "435",
3693
3962
  "name": "Open LDAP Public License v2.1",
3694
3963
  "licenseId": "OLDAP-2.1",
3695
3964
  "seeAlso": [
@@ -3701,7 +3970,7 @@
3701
3970
  "reference": "./OLDAP-2.2.html",
3702
3971
  "isDeprecatedLicenseId": false,
3703
3972
  "detailsUrl": "http://spdx.org/licenses/OLDAP-2.2.json",
3704
- "referenceNumber": "329",
3973
+ "referenceNumber": "348",
3705
3974
  "name": "Open LDAP Public License v2.2",
3706
3975
  "licenseId": "OLDAP-2.2",
3707
3976
  "seeAlso": [
@@ -3713,7 +3982,7 @@
3713
3982
  "reference": "./OLDAP-2.2.1.html",
3714
3983
  "isDeprecatedLicenseId": false,
3715
3984
  "detailsUrl": "http://spdx.org/licenses/OLDAP-2.2.1.json",
3716
- "referenceNumber": "396",
3985
+ "referenceNumber": "417",
3717
3986
  "name": "Open LDAP Public License v2.2.1",
3718
3987
  "licenseId": "OLDAP-2.2.1",
3719
3988
  "seeAlso": [
@@ -3725,7 +3994,7 @@
3725
3994
  "reference": "./OLDAP-2.2.2.html",
3726
3995
  "isDeprecatedLicenseId": false,
3727
3996
  "detailsUrl": "http://spdx.org/licenses/OLDAP-2.2.2.json",
3728
- "referenceNumber": "176",
3997
+ "referenceNumber": "182",
3729
3998
  "name": "Open LDAP Public License 2.2.2",
3730
3999
  "licenseId": "OLDAP-2.2.2",
3731
4000
  "seeAlso": [
@@ -3738,7 +4007,7 @@
3738
4007
  "isDeprecatedLicenseId": false,
3739
4008
  "isFsfLibre": true,
3740
4009
  "detailsUrl": "http://spdx.org/licenses/OLDAP-2.3.json",
3741
- "referenceNumber": "238",
4010
+ "referenceNumber": "250",
3742
4011
  "name": "Open LDAP Public License v2.3",
3743
4012
  "licenseId": "OLDAP-2.3",
3744
4013
  "seeAlso": [
@@ -3750,7 +4019,7 @@
3750
4019
  "reference": "./OLDAP-2.4.html",
3751
4020
  "isDeprecatedLicenseId": false,
3752
4021
  "detailsUrl": "http://spdx.org/licenses/OLDAP-2.4.json",
3753
- "referenceNumber": "119",
4022
+ "referenceNumber": "124",
3754
4023
  "name": "Open LDAP Public License v2.4",
3755
4024
  "licenseId": "OLDAP-2.4",
3756
4025
  "seeAlso": [
@@ -3762,7 +4031,7 @@
3762
4031
  "reference": "./OLDAP-2.5.html",
3763
4032
  "isDeprecatedLicenseId": false,
3764
4033
  "detailsUrl": "http://spdx.org/licenses/OLDAP-2.5.json",
3765
- "referenceNumber": "112",
4034
+ "referenceNumber": "117",
3766
4035
  "name": "Open LDAP Public License v2.5",
3767
4036
  "licenseId": "OLDAP-2.5",
3768
4037
  "seeAlso": [
@@ -3774,7 +4043,7 @@
3774
4043
  "reference": "./OLDAP-2.6.html",
3775
4044
  "isDeprecatedLicenseId": false,
3776
4045
  "detailsUrl": "http://spdx.org/licenses/OLDAP-2.6.json",
3777
- "referenceNumber": "113",
4046
+ "referenceNumber": "118",
3778
4047
  "name": "Open LDAP Public License v2.6",
3779
4048
  "licenseId": "OLDAP-2.6",
3780
4049
  "seeAlso": [
@@ -3787,7 +4056,7 @@
3787
4056
  "isDeprecatedLicenseId": false,
3788
4057
  "isFsfLibre": true,
3789
4058
  "detailsUrl": "http://spdx.org/licenses/OLDAP-2.7.json",
3790
- "referenceNumber": "237",
4059
+ "referenceNumber": "249",
3791
4060
  "name": "Open LDAP Public License v2.7",
3792
4061
  "licenseId": "OLDAP-2.7",
3793
4062
  "seeAlso": [
@@ -3799,19 +4068,19 @@
3799
4068
  "reference": "./OLDAP-2.8.html",
3800
4069
  "isDeprecatedLicenseId": false,
3801
4070
  "detailsUrl": "http://spdx.org/licenses/OLDAP-2.8.json",
3802
- "referenceNumber": "261",
4071
+ "referenceNumber": "274",
3803
4072
  "name": "Open LDAP Public License v2.8",
3804
4073
  "licenseId": "OLDAP-2.8",
3805
4074
  "seeAlso": [
3806
4075
  "http://www.openldap.org/software/release/license.html"
3807
4076
  ],
3808
- "isOsiApproved": false
4077
+ "isOsiApproved": true
3809
4078
  },
3810
4079
  {
3811
4080
  "reference": "./OML.html",
3812
4081
  "isDeprecatedLicenseId": false,
3813
4082
  "detailsUrl": "http://spdx.org/licenses/OML.json",
3814
- "referenceNumber": "177",
4083
+ "referenceNumber": "183",
3815
4084
  "name": "Open Market License",
3816
4085
  "licenseId": "OML",
3817
4086
  "seeAlso": [
@@ -3823,7 +4092,7 @@
3823
4092
  "reference": "./OPL-1.0.html",
3824
4093
  "isDeprecatedLicenseId": false,
3825
4094
  "detailsUrl": "http://spdx.org/licenses/OPL-1.0.json",
3826
- "referenceNumber": "349",
4095
+ "referenceNumber": "369",
3827
4096
  "name": "Open Public License v1.0",
3828
4097
  "licenseId": "OPL-1.0",
3829
4098
  "seeAlso": [
@@ -3836,7 +4105,7 @@
3836
4105
  "reference": "./OSET-PL-2.1.html",
3837
4106
  "isDeprecatedLicenseId": false,
3838
4107
  "detailsUrl": "http://spdx.org/licenses/OSET-PL-2.1.json",
3839
- "referenceNumber": "210",
4108
+ "referenceNumber": "221",
3840
4109
  "name": "OSET Public License version 2.1",
3841
4110
  "licenseId": "OSET-PL-2.1",
3842
4111
  "seeAlso": [
@@ -3850,7 +4119,7 @@
3850
4119
  "isDeprecatedLicenseId": false,
3851
4120
  "isFsfLibre": true,
3852
4121
  "detailsUrl": "http://spdx.org/licenses/OSL-1.0.json",
3853
- "referenceNumber": "99",
4122
+ "referenceNumber": "104",
3854
4123
  "name": "Open Software License 1.0",
3855
4124
  "licenseId": "OSL-1.0",
3856
4125
  "seeAlso": [
@@ -3863,7 +4132,7 @@
3863
4132
  "isDeprecatedLicenseId": false,
3864
4133
  "isFsfLibre": true,
3865
4134
  "detailsUrl": "http://spdx.org/licenses/OSL-1.1.json",
3866
- "referenceNumber": "184",
4135
+ "referenceNumber": "192",
3867
4136
  "name": "Open Software License 1.1",
3868
4137
  "licenseId": "OSL-1.1",
3869
4138
  "seeAlso": [
@@ -3876,7 +4145,7 @@
3876
4145
  "isDeprecatedLicenseId": false,
3877
4146
  "isFsfLibre": true,
3878
4147
  "detailsUrl": "http://spdx.org/licenses/OSL-2.0.json",
3879
- "referenceNumber": "375",
4148
+ "referenceNumber": "396",
3880
4149
  "name": "Open Software License 2.0",
3881
4150
  "licenseId": "OSL-2.0",
3882
4151
  "seeAlso": [
@@ -3889,7 +4158,7 @@
3889
4158
  "isDeprecatedLicenseId": false,
3890
4159
  "isFsfLibre": true,
3891
4160
  "detailsUrl": "http://spdx.org/licenses/OSL-2.1.json",
3892
- "referenceNumber": "163",
4161
+ "referenceNumber": "169",
3893
4162
  "name": "Open Software License 2.1",
3894
4163
  "licenseId": "OSL-2.1",
3895
4164
  "seeAlso": [
@@ -3903,7 +4172,7 @@
3903
4172
  "isDeprecatedLicenseId": false,
3904
4173
  "isFsfLibre": true,
3905
4174
  "detailsUrl": "http://spdx.org/licenses/OSL-3.0.json",
3906
- "referenceNumber": "155",
4175
+ "referenceNumber": "160",
3907
4176
  "name": "Open Software License 3.0",
3908
4177
  "licenseId": "OSL-3.0",
3909
4178
  "seeAlso": [
@@ -3917,7 +4186,7 @@
3917
4186
  "isDeprecatedLicenseId": false,
3918
4187
  "isFsfLibre": true,
3919
4188
  "detailsUrl": "http://spdx.org/licenses/OpenSSL.json",
3920
- "referenceNumber": "87",
4189
+ "referenceNumber": "92",
3921
4190
  "name": "OpenSSL License",
3922
4191
  "licenseId": "OpenSSL",
3923
4192
  "seeAlso": [
@@ -3929,7 +4198,7 @@
3929
4198
  "reference": "./PDDL-1.0.html",
3930
4199
  "isDeprecatedLicenseId": false,
3931
4200
  "detailsUrl": "http://spdx.org/licenses/PDDL-1.0.json",
3932
- "referenceNumber": "137",
4201
+ "referenceNumber": "142",
3933
4202
  "name": "ODC Public Domain Dedication \u0026 License 1.0",
3934
4203
  "licenseId": "PDDL-1.0",
3935
4204
  "seeAlso": [
@@ -3941,7 +4210,7 @@
3941
4210
  "reference": "./PHP-3.0.html",
3942
4211
  "isDeprecatedLicenseId": false,
3943
4212
  "detailsUrl": "http://spdx.org/licenses/PHP-3.0.json",
3944
- "referenceNumber": "198",
4213
+ "referenceNumber": "208",
3945
4214
  "name": "PHP License v3.0",
3946
4215
  "licenseId": "PHP-3.0",
3947
4216
  "seeAlso": [
@@ -3955,19 +4224,19 @@
3955
4224
  "isDeprecatedLicenseId": false,
3956
4225
  "isFsfLibre": true,
3957
4226
  "detailsUrl": "http://spdx.org/licenses/PHP-3.01.json",
3958
- "referenceNumber": "3",
4227
+ "referenceNumber": "4",
3959
4228
  "name": "PHP License v3.01",
3960
4229
  "licenseId": "PHP-3.01",
3961
4230
  "seeAlso": [
3962
4231
  "http://www.php.net/license/3_01.txt"
3963
4232
  ],
3964
- "isOsiApproved": false
4233
+ "isOsiApproved": true
3965
4234
  },
3966
4235
  {
3967
4236
  "reference": "./PSF-2.0.html",
3968
4237
  "isDeprecatedLicenseId": false,
3969
4238
  "detailsUrl": "http://spdx.org/licenses/PSF-2.0.json",
3970
- "referenceNumber": "95",
4239
+ "referenceNumber": "100",
3971
4240
  "name": "Python Software Foundation License 2.0",
3972
4241
  "licenseId": "PSF-2.0",
3973
4242
  "seeAlso": [
@@ -3979,7 +4248,7 @@
3979
4248
  "reference": "./Parity-6.0.0.html",
3980
4249
  "isDeprecatedLicenseId": false,
3981
4250
  "detailsUrl": "http://spdx.org/licenses/Parity-6.0.0.json",
3982
- "referenceNumber": "419",
4251
+ "referenceNumber": "441",
3983
4252
  "name": "The Parity Public License 6.0.0",
3984
4253
  "licenseId": "Parity-6.0.0",
3985
4254
  "seeAlso": [
@@ -3991,7 +4260,7 @@
3991
4260
  "reference": "./Parity-7.0.0.html",
3992
4261
  "isDeprecatedLicenseId": false,
3993
4262
  "detailsUrl": "http://spdx.org/licenses/Parity-7.0.0.json",
3994
- "referenceNumber": "404",
4263
+ "referenceNumber": "425",
3995
4264
  "name": "The Parity Public License 7.0.0",
3996
4265
  "licenseId": "Parity-7.0.0",
3997
4266
  "seeAlso": [
@@ -4003,7 +4272,7 @@
4003
4272
  "reference": "./Plexus.html",
4004
4273
  "isDeprecatedLicenseId": false,
4005
4274
  "detailsUrl": "http://spdx.org/licenses/Plexus.json",
4006
- "referenceNumber": "162",
4275
+ "referenceNumber": "167",
4007
4276
  "name": "Plexus Classworlds License",
4008
4277
  "licenseId": "Plexus",
4009
4278
  "seeAlso": [
@@ -4015,7 +4284,7 @@
4015
4284
  "reference": "./PolyForm-Noncommercial-1.0.0.html",
4016
4285
  "isDeprecatedLicenseId": false,
4017
4286
  "detailsUrl": "http://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.json",
4018
- "referenceNumber": "292",
4287
+ "referenceNumber": "307",
4019
4288
  "name": "PolyForm Noncommercial License 1.0.0",
4020
4289
  "licenseId": "PolyForm-Noncommercial-1.0.0",
4021
4290
  "seeAlso": [
@@ -4027,7 +4296,7 @@
4027
4296
  "reference": "./PolyForm-Small-Business-1.0.0.html",
4028
4297
  "isDeprecatedLicenseId": false,
4029
4298
  "detailsUrl": "http://spdx.org/licenses/PolyForm-Small-Business-1.0.0.json",
4030
- "referenceNumber": "122",
4299
+ "referenceNumber": "127",
4031
4300
  "name": "PolyForm Small Business License 1.0.0",
4032
4301
  "licenseId": "PolyForm-Small-Business-1.0.0",
4033
4302
  "seeAlso": [
@@ -4039,7 +4308,7 @@
4039
4308
  "reference": "./PostgreSQL.html",
4040
4309
  "isDeprecatedLicenseId": false,
4041
4310
  "detailsUrl": "http://spdx.org/licenses/PostgreSQL.json",
4042
- "referenceNumber": "11",
4311
+ "referenceNumber": "13",
4043
4312
  "name": "PostgreSQL License",
4044
4313
  "licenseId": "PostgreSQL",
4045
4314
  "seeAlso": [
@@ -4053,7 +4322,7 @@
4053
4322
  "isDeprecatedLicenseId": false,
4054
4323
  "isFsfLibre": true,
4055
4324
  "detailsUrl": "http://spdx.org/licenses/Python-2.0.json",
4056
- "referenceNumber": "406",
4325
+ "referenceNumber": "427",
4057
4326
  "name": "Python License 2.0",
4058
4327
  "licenseId": "Python-2.0",
4059
4328
  "seeAlso": [
@@ -4066,7 +4335,7 @@
4066
4335
  "isDeprecatedLicenseId": false,
4067
4336
  "isFsfLibre": true,
4068
4337
  "detailsUrl": "http://spdx.org/licenses/QPL-1.0.json",
4069
- "referenceNumber": "300",
4338
+ "referenceNumber": "315",
4070
4339
  "name": "Q Public License 1.0",
4071
4340
  "licenseId": "QPL-1.0",
4072
4341
  "seeAlso": [
@@ -4079,7 +4348,7 @@
4079
4348
  "reference": "./Qhull.html",
4080
4349
  "isDeprecatedLicenseId": false,
4081
4350
  "detailsUrl": "http://spdx.org/licenses/Qhull.json",
4082
- "referenceNumber": "129",
4351
+ "referenceNumber": "134",
4083
4352
  "name": "Qhull License",
4084
4353
  "licenseId": "Qhull",
4085
4354
  "seeAlso": [
@@ -4091,7 +4360,7 @@
4091
4360
  "reference": "./RHeCos-1.1.html",
4092
4361
  "isDeprecatedLicenseId": false,
4093
4362
  "detailsUrl": "http://spdx.org/licenses/RHeCos-1.1.json",
4094
- "referenceNumber": "64",
4363
+ "referenceNumber": "68",
4095
4364
  "name": "Red Hat eCos Public License v1.1",
4096
4365
  "licenseId": "RHeCos-1.1",
4097
4366
  "seeAlso": [
@@ -4103,7 +4372,7 @@
4103
4372
  "reference": "./RPL-1.1.html",
4104
4373
  "isDeprecatedLicenseId": false,
4105
4374
  "detailsUrl": "http://spdx.org/licenses/RPL-1.1.json",
4106
- "referenceNumber": "223",
4375
+ "referenceNumber": "234",
4107
4376
  "name": "Reciprocal Public License 1.1",
4108
4377
  "licenseId": "RPL-1.1",
4109
4378
  "seeAlso": [
@@ -4115,7 +4384,7 @@
4115
4384
  "reference": "./RPL-1.5.html",
4116
4385
  "isDeprecatedLicenseId": false,
4117
4386
  "detailsUrl": "http://spdx.org/licenses/RPL-1.5.json",
4118
- "referenceNumber": "109",
4387
+ "referenceNumber": "114",
4119
4388
  "name": "Reciprocal Public License 1.5",
4120
4389
  "licenseId": "RPL-1.5",
4121
4390
  "seeAlso": [
@@ -4128,7 +4397,7 @@
4128
4397
  "isDeprecatedLicenseId": false,
4129
4398
  "isFsfLibre": true,
4130
4399
  "detailsUrl": "http://spdx.org/licenses/RPSL-1.0.json",
4131
- "referenceNumber": "55",
4400
+ "referenceNumber": "59",
4132
4401
  "name": "RealNetworks Public Source License v1.0",
4133
4402
  "licenseId": "RPSL-1.0",
4134
4403
  "seeAlso": [
@@ -4141,8 +4410,8 @@
4141
4410
  "reference": "./RSA-MD.html",
4142
4411
  "isDeprecatedLicenseId": false,
4143
4412
  "detailsUrl": "http://spdx.org/licenses/RSA-MD.json",
4144
- "referenceNumber": "289",
4145
- "name": "RSA Message-Digest License ",
4413
+ "referenceNumber": "303",
4414
+ "name": "RSA Message-Digest License",
4146
4415
  "licenseId": "RSA-MD",
4147
4416
  "seeAlso": [
4148
4417
  "http://www.faqs.org/rfcs/rfc1321.html"
@@ -4153,7 +4422,7 @@
4153
4422
  "reference": "./RSCPL.html",
4154
4423
  "isDeprecatedLicenseId": false,
4155
4424
  "detailsUrl": "http://spdx.org/licenses/RSCPL.json",
4156
- "referenceNumber": "350",
4425
+ "referenceNumber": "370",
4157
4426
  "name": "Ricoh Source Code Public License",
4158
4427
  "licenseId": "RSCPL",
4159
4428
  "seeAlso": [
@@ -4166,7 +4435,7 @@
4166
4435
  "reference": "./Rdisc.html",
4167
4436
  "isDeprecatedLicenseId": false,
4168
4437
  "detailsUrl": "http://spdx.org/licenses/Rdisc.json",
4169
- "referenceNumber": "333",
4438
+ "referenceNumber": "352",
4170
4439
  "name": "Rdisc License",
4171
4440
  "licenseId": "Rdisc",
4172
4441
  "seeAlso": [
@@ -4179,7 +4448,7 @@
4179
4448
  "isDeprecatedLicenseId": false,
4180
4449
  "isFsfLibre": true,
4181
4450
  "detailsUrl": "http://spdx.org/licenses/Ruby.json",
4182
- "referenceNumber": "14",
4451
+ "referenceNumber": "16",
4183
4452
  "name": "Ruby License",
4184
4453
  "licenseId": "Ruby",
4185
4454
  "seeAlso": [
@@ -4191,7 +4460,7 @@
4191
4460
  "reference": "./SAX-PD.html",
4192
4461
  "isDeprecatedLicenseId": false,
4193
4462
  "detailsUrl": "http://spdx.org/licenses/SAX-PD.json",
4194
- "referenceNumber": "158",
4463
+ "referenceNumber": "163",
4195
4464
  "name": "Sax Public Domain Notice",
4196
4465
  "licenseId": "SAX-PD",
4197
4466
  "seeAlso": [
@@ -4203,7 +4472,7 @@
4203
4472
  "reference": "./SCEA.html",
4204
4473
  "isDeprecatedLicenseId": false,
4205
4474
  "detailsUrl": "http://spdx.org/licenses/SCEA.json",
4206
- "referenceNumber": "142",
4475
+ "referenceNumber": "147",
4207
4476
  "name": "SCEA Shared Source License",
4208
4477
  "licenseId": "SCEA",
4209
4478
  "seeAlso": [
@@ -4215,7 +4484,7 @@
4215
4484
  "reference": "./SGI-B-1.0.html",
4216
4485
  "isDeprecatedLicenseId": false,
4217
4486
  "detailsUrl": "http://spdx.org/licenses/SGI-B-1.0.json",
4218
- "referenceNumber": "196",
4487
+ "referenceNumber": "205",
4219
4488
  "name": "SGI Free Software License B v1.0",
4220
4489
  "licenseId": "SGI-B-1.0",
4221
4490
  "seeAlso": [
@@ -4227,7 +4496,7 @@
4227
4496
  "reference": "./SGI-B-1.1.html",
4228
4497
  "isDeprecatedLicenseId": false,
4229
4498
  "detailsUrl": "http://spdx.org/licenses/SGI-B-1.1.json",
4230
- "referenceNumber": "299",
4499
+ "referenceNumber": "314",
4231
4500
  "name": "SGI Free Software License B v1.1",
4232
4501
  "licenseId": "SGI-B-1.1",
4233
4502
  "seeAlso": [
@@ -4240,7 +4509,7 @@
4240
4509
  "isDeprecatedLicenseId": false,
4241
4510
  "isFsfLibre": true,
4242
4511
  "detailsUrl": "http://spdx.org/licenses/SGI-B-2.0.json",
4243
- "referenceNumber": "31",
4512
+ "referenceNumber": "33",
4244
4513
  "name": "SGI Free Software License B v2.0",
4245
4514
  "licenseId": "SGI-B-2.0",
4246
4515
  "seeAlso": [
@@ -4252,7 +4521,7 @@
4252
4521
  "reference": "./SHL-0.5.html",
4253
4522
  "isDeprecatedLicenseId": false,
4254
4523
  "detailsUrl": "http://spdx.org/licenses/SHL-0.5.json",
4255
- "referenceNumber": "51",
4524
+ "referenceNumber": "54",
4256
4525
  "name": "Solderpad Hardware License v0.5",
4257
4526
  "licenseId": "SHL-0.5",
4258
4527
  "seeAlso": [
@@ -4264,7 +4533,7 @@
4264
4533
  "reference": "./SHL-0.51.html",
4265
4534
  "isDeprecatedLicenseId": false,
4266
4535
  "detailsUrl": "http://spdx.org/licenses/SHL-0.51.json",
4267
- "referenceNumber": "291",
4536
+ "referenceNumber": "305",
4268
4537
  "name": "Solderpad Hardware License, Version 0.51",
4269
4538
  "licenseId": "SHL-0.51",
4270
4539
  "seeAlso": [
@@ -4277,7 +4546,7 @@
4277
4546
  "isDeprecatedLicenseId": false,
4278
4547
  "isFsfLibre": true,
4279
4548
  "detailsUrl": "http://spdx.org/licenses/SISSL.json",
4280
- "referenceNumber": "82",
4549
+ "referenceNumber": "87",
4281
4550
  "name": "Sun Industry Standards Source License v1.1",
4282
4551
  "licenseId": "SISSL",
4283
4552
  "seeAlso": [
@@ -4290,7 +4559,7 @@
4290
4559
  "reference": "./SISSL-1.2.html",
4291
4560
  "isDeprecatedLicenseId": false,
4292
4561
  "detailsUrl": "http://spdx.org/licenses/SISSL-1.2.json",
4293
- "referenceNumber": "65",
4562
+ "referenceNumber": "69",
4294
4563
  "name": "Sun Industry Standards Source License v1.2",
4295
4564
  "licenseId": "SISSL-1.2",
4296
4565
  "seeAlso": [
@@ -4303,7 +4572,7 @@
4303
4572
  "isDeprecatedLicenseId": false,
4304
4573
  "isFsfLibre": true,
4305
4574
  "detailsUrl": "http://spdx.org/licenses/SMLNJ.json",
4306
- "referenceNumber": "226",
4575
+ "referenceNumber": "237",
4307
4576
  "name": "Standard ML of New Jersey License",
4308
4577
  "licenseId": "SMLNJ",
4309
4578
  "seeAlso": [
@@ -4315,7 +4584,7 @@
4315
4584
  "reference": "./SMPPL.html",
4316
4585
  "isDeprecatedLicenseId": false,
4317
4586
  "detailsUrl": "http://spdx.org/licenses/SMPPL.json",
4318
- "referenceNumber": "110",
4587
+ "referenceNumber": "115",
4319
4588
  "name": "Secure Messaging Protocol Public License",
4320
4589
  "licenseId": "SMPPL",
4321
4590
  "seeAlso": [
@@ -4327,7 +4596,7 @@
4327
4596
  "reference": "./SNIA.html",
4328
4597
  "isDeprecatedLicenseId": false,
4329
4598
  "detailsUrl": "http://spdx.org/licenses/SNIA.json",
4330
- "referenceNumber": "313",
4599
+ "referenceNumber": "331",
4331
4600
  "name": "SNIA Public License 1.1",
4332
4601
  "licenseId": "SNIA",
4333
4602
  "seeAlso": [
@@ -4340,7 +4609,7 @@
4340
4609
  "isDeprecatedLicenseId": false,
4341
4610
  "isFsfLibre": true,
4342
4611
  "detailsUrl": "http://spdx.org/licenses/SPL-1.0.json",
4343
- "referenceNumber": "256",
4612
+ "referenceNumber": "269",
4344
4613
  "name": "Sun Public License v1.0",
4345
4614
  "licenseId": "SPL-1.0",
4346
4615
  "seeAlso": [
@@ -4352,7 +4621,7 @@
4352
4621
  "reference": "./SSH-OpenSSH.html",
4353
4622
  "isDeprecatedLicenseId": false,
4354
4623
  "detailsUrl": "http://spdx.org/licenses/SSH-OpenSSH.json",
4355
- "referenceNumber": "22",
4624
+ "referenceNumber": "24",
4356
4625
  "name": "SSH OpenSSH license",
4357
4626
  "licenseId": "SSH-OpenSSH",
4358
4627
  "seeAlso": [
@@ -4364,7 +4633,7 @@
4364
4633
  "reference": "./SSH-short.html",
4365
4634
  "isDeprecatedLicenseId": false,
4366
4635
  "detailsUrl": "http://spdx.org/licenses/SSH-short.json",
4367
- "referenceNumber": "70",
4636
+ "referenceNumber": "74",
4368
4637
  "name": "SSH short notice",
4369
4638
  "licenseId": "SSH-short",
4370
4639
  "seeAlso": [
@@ -4378,7 +4647,7 @@
4378
4647
  "reference": "./SSPL-1.0.html",
4379
4648
  "isDeprecatedLicenseId": false,
4380
4649
  "detailsUrl": "http://spdx.org/licenses/SSPL-1.0.json",
4381
- "referenceNumber": "345",
4650
+ "referenceNumber": "364",
4382
4651
  "name": "Server Side Public License, v 1",
4383
4652
  "licenseId": "SSPL-1.0",
4384
4653
  "seeAlso": [
@@ -4390,7 +4659,7 @@
4390
4659
  "reference": "./SWL.html",
4391
4660
  "isDeprecatedLicenseId": false,
4392
4661
  "detailsUrl": "http://spdx.org/licenses/SWL.json",
4393
- "referenceNumber": "97",
4662
+ "referenceNumber": "102",
4394
4663
  "name": "Scheme Widget Library (SWL) Software License Agreement",
4395
4664
  "licenseId": "SWL",
4396
4665
  "seeAlso": [
@@ -4402,7 +4671,7 @@
4402
4671
  "reference": "./Saxpath.html",
4403
4672
  "isDeprecatedLicenseId": false,
4404
4673
  "detailsUrl": "http://spdx.org/licenses/Saxpath.json",
4405
- "referenceNumber": "34",
4674
+ "referenceNumber": "36",
4406
4675
  "name": "Saxpath License",
4407
4676
  "licenseId": "Saxpath",
4408
4677
  "seeAlso": [
@@ -4414,7 +4683,7 @@
4414
4683
  "reference": "./Sendmail.html",
4415
4684
  "isDeprecatedLicenseId": false,
4416
4685
  "detailsUrl": "http://spdx.org/licenses/Sendmail.json",
4417
- "referenceNumber": "304",
4686
+ "referenceNumber": "319",
4418
4687
  "name": "Sendmail License",
4419
4688
  "licenseId": "Sendmail",
4420
4689
  "seeAlso": [
@@ -4427,7 +4696,7 @@
4427
4696
  "reference": "./Sendmail-8.23.html",
4428
4697
  "isDeprecatedLicenseId": false,
4429
4698
  "detailsUrl": "http://spdx.org/licenses/Sendmail-8.23.json",
4430
- "referenceNumber": "182",
4699
+ "referenceNumber": "190",
4431
4700
  "name": "Sendmail License 8.23",
4432
4701
  "licenseId": "Sendmail-8.23",
4433
4702
  "seeAlso": [
@@ -4440,7 +4709,7 @@
4440
4709
  "reference": "./SimPL-2.0.html",
4441
4710
  "isDeprecatedLicenseId": false,
4442
4711
  "detailsUrl": "http://spdx.org/licenses/SimPL-2.0.json",
4443
- "referenceNumber": "259",
4712
+ "referenceNumber": "272",
4444
4713
  "name": "Simple Public License 2.0",
4445
4714
  "licenseId": "SimPL-2.0",
4446
4715
  "seeAlso": [
@@ -4453,7 +4722,7 @@
4453
4722
  "isDeprecatedLicenseId": false,
4454
4723
  "isFsfLibre": true,
4455
4724
  "detailsUrl": "http://spdx.org/licenses/Sleepycat.json",
4456
- "referenceNumber": "58",
4725
+ "referenceNumber": "62",
4457
4726
  "name": "Sleepycat License",
4458
4727
  "licenseId": "Sleepycat",
4459
4728
  "seeAlso": [
@@ -4465,7 +4734,7 @@
4465
4734
  "reference": "./Spencer-86.html",
4466
4735
  "isDeprecatedLicenseId": false,
4467
4736
  "detailsUrl": "http://spdx.org/licenses/Spencer-86.json",
4468
- "referenceNumber": "191",
4737
+ "referenceNumber": "200",
4469
4738
  "name": "Spencer License 86",
4470
4739
  "licenseId": "Spencer-86",
4471
4740
  "seeAlso": [
@@ -4477,7 +4746,7 @@
4477
4746
  "reference": "./Spencer-94.html",
4478
4747
  "isDeprecatedLicenseId": false,
4479
4748
  "detailsUrl": "http://spdx.org/licenses/Spencer-94.json",
4480
- "referenceNumber": "220",
4749
+ "referenceNumber": "231",
4481
4750
  "name": "Spencer License 94",
4482
4751
  "licenseId": "Spencer-94",
4483
4752
  "seeAlso": [
@@ -4489,7 +4758,7 @@
4489
4758
  "reference": "./Spencer-99.html",
4490
4759
  "isDeprecatedLicenseId": false,
4491
4760
  "detailsUrl": "http://spdx.org/licenses/Spencer-99.json",
4492
- "referenceNumber": "67",
4761
+ "referenceNumber": "71",
4493
4762
  "name": "Spencer License 99",
4494
4763
  "licenseId": "Spencer-99",
4495
4764
  "seeAlso": [
@@ -4502,7 +4771,7 @@
4502
4771
  "isDeprecatedLicenseId": true,
4503
4772
  "isFsfLibre": true,
4504
4773
  "detailsUrl": "http://spdx.org/licenses/StandardML-NJ.json",
4505
- "referenceNumber": "296",
4774
+ "referenceNumber": "311",
4506
4775
  "name": "Standard ML of New Jersey License",
4507
4776
  "licenseId": "StandardML-NJ",
4508
4777
  "seeAlso": [
@@ -4514,7 +4783,7 @@
4514
4783
  "reference": "./SugarCRM-1.1.3.html",
4515
4784
  "isDeprecatedLicenseId": false,
4516
4785
  "detailsUrl": "http://spdx.org/licenses/SugarCRM-1.1.3.json",
4517
- "referenceNumber": "353",
4786
+ "referenceNumber": "373",
4518
4787
  "name": "SugarCRM Public License v1.1.3",
4519
4788
  "licenseId": "SugarCRM-1.1.3",
4520
4789
  "seeAlso": [
@@ -4526,7 +4795,7 @@
4526
4795
  "reference": "./TAPR-OHL-1.0.html",
4527
4796
  "isDeprecatedLicenseId": false,
4528
4797
  "detailsUrl": "http://spdx.org/licenses/TAPR-OHL-1.0.json",
4529
- "referenceNumber": "9",
4798
+ "referenceNumber": "11",
4530
4799
  "name": "TAPR Open Hardware License v1.0",
4531
4800
  "licenseId": "TAPR-OHL-1.0",
4532
4801
  "seeAlso": [
@@ -4538,7 +4807,7 @@
4538
4807
  "reference": "./TCL.html",
4539
4808
  "isDeprecatedLicenseId": false,
4540
4809
  "detailsUrl": "http://spdx.org/licenses/TCL.json",
4541
- "referenceNumber": "56",
4810
+ "referenceNumber": "60",
4542
4811
  "name": "TCL/TK License",
4543
4812
  "licenseId": "TCL",
4544
4813
  "seeAlso": [
@@ -4551,7 +4820,7 @@
4551
4820
  "reference": "./TCP-wrappers.html",
4552
4821
  "isDeprecatedLicenseId": false,
4553
4822
  "detailsUrl": "http://spdx.org/licenses/TCP-wrappers.json",
4554
- "referenceNumber": "242",
4823
+ "referenceNumber": "254",
4555
4824
  "name": "TCP Wrappers License",
4556
4825
  "licenseId": "TCP-wrappers",
4557
4826
  "seeAlso": [
@@ -4563,7 +4832,7 @@
4563
4832
  "reference": "./TMate.html",
4564
4833
  "isDeprecatedLicenseId": false,
4565
4834
  "detailsUrl": "http://spdx.org/licenses/TMate.json",
4566
- "referenceNumber": "415",
4835
+ "referenceNumber": "437",
4567
4836
  "name": "TMate Open Source License",
4568
4837
  "licenseId": "TMate",
4569
4838
  "seeAlso": [
@@ -4575,7 +4844,7 @@
4575
4844
  "reference": "./TORQUE-1.1.html",
4576
4845
  "isDeprecatedLicenseId": false,
4577
4846
  "detailsUrl": "http://spdx.org/licenses/TORQUE-1.1.json",
4578
- "referenceNumber": "195",
4847
+ "referenceNumber": "204",
4579
4848
  "name": "TORQUE v2.5+ Software License v1.1",
4580
4849
  "licenseId": "TORQUE-1.1",
4581
4850
  "seeAlso": [
@@ -4587,7 +4856,7 @@
4587
4856
  "reference": "./TOSL.html",
4588
4857
  "isDeprecatedLicenseId": false,
4589
4858
  "detailsUrl": "http://spdx.org/licenses/TOSL.json",
4590
- "referenceNumber": "260",
4859
+ "referenceNumber": "273",
4591
4860
  "name": "Trusster Open Source License",
4592
4861
  "licenseId": "TOSL",
4593
4862
  "seeAlso": [
@@ -4599,7 +4868,7 @@
4599
4868
  "reference": "./TU-Berlin-1.0.html",
4600
4869
  "isDeprecatedLicenseId": false,
4601
4870
  "detailsUrl": "http://spdx.org/licenses/TU-Berlin-1.0.json",
4602
- "referenceNumber": "384",
4871
+ "referenceNumber": "405",
4603
4872
  "name": "Technische Universitaet Berlin License 1.0",
4604
4873
  "licenseId": "TU-Berlin-1.0",
4605
4874
  "seeAlso": [
@@ -4611,7 +4880,7 @@
4611
4880
  "reference": "./TU-Berlin-2.0.html",
4612
4881
  "isDeprecatedLicenseId": false,
4613
4882
  "detailsUrl": "http://spdx.org/licenses/TU-Berlin-2.0.json",
4614
- "referenceNumber": "405",
4883
+ "referenceNumber": "426",
4615
4884
  "name": "Technische Universitaet Berlin License 2.0",
4616
4885
  "licenseId": "TU-Berlin-2.0",
4617
4886
  "seeAlso": [
@@ -4623,7 +4892,7 @@
4623
4892
  "reference": "./UCL-1.0.html",
4624
4893
  "isDeprecatedLicenseId": false,
4625
4894
  "detailsUrl": "http://spdx.org/licenses/UCL-1.0.json",
4626
- "referenceNumber": "302",
4895
+ "referenceNumber": "317",
4627
4896
  "name": "Upstream Compatibility License v1.0",
4628
4897
  "licenseId": "UCL-1.0",
4629
4898
  "seeAlso": [
@@ -4636,7 +4905,7 @@
4636
4905
  "isDeprecatedLicenseId": false,
4637
4906
  "isFsfLibre": true,
4638
4907
  "detailsUrl": "http://spdx.org/licenses/UPL-1.0.json",
4639
- "referenceNumber": "149",
4908
+ "referenceNumber": "154",
4640
4909
  "name": "Universal Permissive License v1.0",
4641
4910
  "licenseId": "UPL-1.0",
4642
4911
  "seeAlso": [
@@ -4648,7 +4917,7 @@
4648
4917
  "reference": "./Unicode-DFS-2015.html",
4649
4918
  "isDeprecatedLicenseId": false,
4650
4919
  "detailsUrl": "http://spdx.org/licenses/Unicode-DFS-2015.json",
4651
- "referenceNumber": "270",
4920
+ "referenceNumber": "283",
4652
4921
  "name": "Unicode License Agreement - Data Files and Software (2015)",
4653
4922
  "licenseId": "Unicode-DFS-2015",
4654
4923
  "seeAlso": [
@@ -4660,19 +4929,19 @@
4660
4929
  "reference": "./Unicode-DFS-2016.html",
4661
4930
  "isDeprecatedLicenseId": false,
4662
4931
  "detailsUrl": "http://spdx.org/licenses/Unicode-DFS-2016.json",
4663
- "referenceNumber": "382",
4932
+ "referenceNumber": "403",
4664
4933
  "name": "Unicode License Agreement - Data Files and Software (2016)",
4665
4934
  "licenseId": "Unicode-DFS-2016",
4666
4935
  "seeAlso": [
4667
4936
  "http://www.unicode.org/copyright.html"
4668
4937
  ],
4669
- "isOsiApproved": false
4938
+ "isOsiApproved": true
4670
4939
  },
4671
4940
  {
4672
4941
  "reference": "./Unicode-TOU.html",
4673
4942
  "isDeprecatedLicenseId": false,
4674
4943
  "detailsUrl": "http://spdx.org/licenses/Unicode-TOU.json",
4675
- "referenceNumber": "16",
4944
+ "referenceNumber": "18",
4676
4945
  "name": "Unicode Terms of Use",
4677
4946
  "licenseId": "Unicode-TOU",
4678
4947
  "seeAlso": [
@@ -4685,19 +4954,19 @@
4685
4954
  "isDeprecatedLicenseId": false,
4686
4955
  "isFsfLibre": true,
4687
4956
  "detailsUrl": "http://spdx.org/licenses/Unlicense.json",
4688
- "referenceNumber": "179",
4957
+ "referenceNumber": "186",
4689
4958
  "name": "The Unlicense",
4690
4959
  "licenseId": "Unlicense",
4691
4960
  "seeAlso": [
4692
4961
  "https://unlicense.org/"
4693
4962
  ],
4694
- "isOsiApproved": false
4963
+ "isOsiApproved": true
4695
4964
  },
4696
4965
  {
4697
4966
  "reference": "./VOSTROM.html",
4698
4967
  "isDeprecatedLicenseId": false,
4699
4968
  "detailsUrl": "http://spdx.org/licenses/VOSTROM.json",
4700
- "referenceNumber": "363",
4969
+ "referenceNumber": "384",
4701
4970
  "name": "VOSTROM Public License for Open Source",
4702
4971
  "licenseId": "VOSTROM",
4703
4972
  "seeAlso": [
@@ -4709,7 +4978,7 @@
4709
4978
  "reference": "./VSL-1.0.html",
4710
4979
  "isDeprecatedLicenseId": false,
4711
4980
  "detailsUrl": "http://spdx.org/licenses/VSL-1.0.json",
4712
- "referenceNumber": "402",
4981
+ "referenceNumber": "423",
4713
4982
  "name": "Vovida Software License v1.0",
4714
4983
  "licenseId": "VSL-1.0",
4715
4984
  "seeAlso": [
@@ -4722,7 +4991,7 @@
4722
4991
  "isDeprecatedLicenseId": false,
4723
4992
  "isFsfLibre": true,
4724
4993
  "detailsUrl": "http://spdx.org/licenses/Vim.json",
4725
- "referenceNumber": "213",
4994
+ "referenceNumber": "224",
4726
4995
  "name": "Vim License",
4727
4996
  "licenseId": "Vim",
4728
4997
  "seeAlso": [
@@ -4735,7 +5004,7 @@
4735
5004
  "isDeprecatedLicenseId": false,
4736
5005
  "isFsfLibre": true,
4737
5006
  "detailsUrl": "http://spdx.org/licenses/W3C.json",
4738
- "referenceNumber": "111",
5007
+ "referenceNumber": "116",
4739
5008
  "name": "W3C Software Notice and License (2002-12-31)",
4740
5009
  "licenseId": "W3C",
4741
5010
  "seeAlso": [
@@ -4748,7 +5017,7 @@
4748
5017
  "reference": "./W3C-19980720.html",
4749
5018
  "isDeprecatedLicenseId": false,
4750
5019
  "detailsUrl": "http://spdx.org/licenses/W3C-19980720.json",
4751
- "referenceNumber": "276",
5020
+ "referenceNumber": "289",
4752
5021
  "name": "W3C Software Notice and License (1998-07-20)",
4753
5022
  "licenseId": "W3C-19980720",
4754
5023
  "seeAlso": [
@@ -4760,7 +5029,7 @@
4760
5029
  "reference": "./W3C-20150513.html",
4761
5030
  "isDeprecatedLicenseId": false,
4762
5031
  "detailsUrl": "http://spdx.org/licenses/W3C-20150513.json",
4763
- "referenceNumber": "115",
5032
+ "referenceNumber": "120",
4764
5033
  "name": "W3C Software Notice and Document License (2015-05-13)",
4765
5034
  "licenseId": "W3C-20150513",
4766
5035
  "seeAlso": [
@@ -4773,10 +5042,11 @@
4773
5042
  "isDeprecatedLicenseId": false,
4774
5043
  "isFsfLibre": true,
4775
5044
  "detailsUrl": "http://spdx.org/licenses/WTFPL.json",
4776
- "referenceNumber": "20",
5045
+ "referenceNumber": "22",
4777
5046
  "name": "Do What The F*ck You Want To Public License",
4778
5047
  "licenseId": "WTFPL",
4779
5048
  "seeAlso": [
5049
+ "http://www.wtfpl.net/about/",
4780
5050
  "http://sam.zoy.org/wtfpl/COPYING"
4781
5051
  ],
4782
5052
  "isOsiApproved": false
@@ -4785,7 +5055,7 @@
4785
5055
  "reference": "./Watcom-1.0.html",
4786
5056
  "isDeprecatedLicenseId": false,
4787
5057
  "detailsUrl": "http://spdx.org/licenses/Watcom-1.0.json",
4788
- "referenceNumber": "146",
5058
+ "referenceNumber": "151",
4789
5059
  "name": "Sybase Open Watcom Public License 1.0",
4790
5060
  "licenseId": "Watcom-1.0",
4791
5061
  "seeAlso": [
@@ -4797,7 +5067,7 @@
4797
5067
  "reference": "./Wsuipa.html",
4798
5068
  "isDeprecatedLicenseId": false,
4799
5069
  "detailsUrl": "http://spdx.org/licenses/Wsuipa.json",
4800
- "referenceNumber": "264",
5070
+ "referenceNumber": "277",
4801
5071
  "name": "Wsuipa License",
4802
5072
  "licenseId": "Wsuipa",
4803
5073
  "seeAlso": [
@@ -4810,7 +5080,7 @@
4810
5080
  "isDeprecatedLicenseId": false,
4811
5081
  "isFsfLibre": true,
4812
5082
  "detailsUrl": "http://spdx.org/licenses/X11.json",
4813
- "referenceNumber": "103",
5083
+ "referenceNumber": "108",
4814
5084
  "name": "X11 License",
4815
5085
  "licenseId": "X11",
4816
5086
  "seeAlso": [
@@ -4823,7 +5093,7 @@
4823
5093
  "isDeprecatedLicenseId": false,
4824
5094
  "isFsfLibre": true,
4825
5095
  "detailsUrl": "http://spdx.org/licenses/XFree86-1.1.json",
4826
- "referenceNumber": "161",
5096
+ "referenceNumber": "166",
4827
5097
  "name": "XFree86 License 1.1",
4828
5098
  "licenseId": "XFree86-1.1",
4829
5099
  "seeAlso": [
@@ -4835,7 +5105,7 @@
4835
5105
  "reference": "./XSkat.html",
4836
5106
  "isDeprecatedLicenseId": false,
4837
5107
  "detailsUrl": "http://spdx.org/licenses/XSkat.json",
4838
- "referenceNumber": "85",
5108
+ "referenceNumber": "90",
4839
5109
  "name": "XSkat License",
4840
5110
  "licenseId": "XSkat",
4841
5111
  "seeAlso": [
@@ -4847,7 +5117,7 @@
4847
5117
  "reference": "./Xerox.html",
4848
5118
  "isDeprecatedLicenseId": false,
4849
5119
  "detailsUrl": "http://spdx.org/licenses/Xerox.json",
4850
- "referenceNumber": "232",
5120
+ "referenceNumber": "244",
4851
5121
  "name": "Xerox License",
4852
5122
  "licenseId": "Xerox",
4853
5123
  "seeAlso": [
@@ -4859,7 +5129,7 @@
4859
5129
  "reference": "./Xnet.html",
4860
5130
  "isDeprecatedLicenseId": false,
4861
5131
  "detailsUrl": "http://spdx.org/licenses/Xnet.json",
4862
- "referenceNumber": "324",
5132
+ "referenceNumber": "343",
4863
5133
  "name": "X.Net License",
4864
5134
  "licenseId": "Xnet",
4865
5135
  "seeAlso": [
@@ -4871,7 +5141,7 @@
4871
5141
  "reference": "./YPL-1.0.html",
4872
5142
  "isDeprecatedLicenseId": false,
4873
5143
  "detailsUrl": "http://spdx.org/licenses/YPL-1.0.json",
4874
- "referenceNumber": "303",
5144
+ "referenceNumber": "318",
4875
5145
  "name": "Yahoo! Public License v1.0",
4876
5146
  "licenseId": "YPL-1.0",
4877
5147
  "seeAlso": [
@@ -4884,7 +5154,7 @@
4884
5154
  "isDeprecatedLicenseId": false,
4885
5155
  "isFsfLibre": true,
4886
5156
  "detailsUrl": "http://spdx.org/licenses/YPL-1.1.json",
4887
- "referenceNumber": "40",
5157
+ "referenceNumber": "43",
4888
5158
  "name": "Yahoo! Public License v1.1",
4889
5159
  "licenseId": "YPL-1.1",
4890
5160
  "seeAlso": [
@@ -4896,7 +5166,7 @@
4896
5166
  "reference": "./ZPL-1.1.html",
4897
5167
  "isDeprecatedLicenseId": false,
4898
5168
  "detailsUrl": "http://spdx.org/licenses/ZPL-1.1.json",
4899
- "referenceNumber": "89",
5169
+ "referenceNumber": "94",
4900
5170
  "name": "Zope Public License 1.1",
4901
5171
  "licenseId": "ZPL-1.1",
4902
5172
  "seeAlso": [
@@ -4909,7 +5179,7 @@
4909
5179
  "isDeprecatedLicenseId": false,
4910
5180
  "isFsfLibre": true,
4911
5181
  "detailsUrl": "http://spdx.org/licenses/ZPL-2.0.json",
4912
- "referenceNumber": "116",
5182
+ "referenceNumber": "121",
4913
5183
  "name": "Zope Public License 2.0",
4914
5184
  "licenseId": "ZPL-2.0",
4915
5185
  "seeAlso": [
@@ -4923,7 +5193,7 @@
4923
5193
  "isDeprecatedLicenseId": false,
4924
5194
  "isFsfLibre": true,
4925
5195
  "detailsUrl": "http://spdx.org/licenses/ZPL-2.1.json",
4926
- "referenceNumber": "380",
5196
+ "referenceNumber": "401",
4927
5197
  "name": "Zope Public License 2.1",
4928
5198
  "licenseId": "ZPL-2.1",
4929
5199
  "seeAlso": [
@@ -4935,7 +5205,7 @@
4935
5205
  "reference": "./Zed.html",
4936
5206
  "isDeprecatedLicenseId": false,
4937
5207
  "detailsUrl": "http://spdx.org/licenses/Zed.json",
4938
- "referenceNumber": "118",
5208
+ "referenceNumber": "123",
4939
5209
  "name": "Zed License",
4940
5210
  "licenseId": "Zed",
4941
5211
  "seeAlso": [
@@ -4948,7 +5218,7 @@
4948
5218
  "isDeprecatedLicenseId": false,
4949
5219
  "isFsfLibre": true,
4950
5220
  "detailsUrl": "http://spdx.org/licenses/Zend-2.0.json",
4951
- "referenceNumber": "385",
5221
+ "referenceNumber": "406",
4952
5222
  "name": "Zend License v2.0",
4953
5223
  "licenseId": "Zend-2.0",
4954
5224
  "seeAlso": [
@@ -4961,7 +5231,7 @@
4961
5231
  "isDeprecatedLicenseId": false,
4962
5232
  "isFsfLibre": true,
4963
5233
  "detailsUrl": "http://spdx.org/licenses/Zimbra-1.3.json",
4964
- "referenceNumber": "181",
5234
+ "referenceNumber": "189",
4965
5235
  "name": "Zimbra Public License v1.3",
4966
5236
  "licenseId": "Zimbra-1.3",
4967
5237
  "seeAlso": [
@@ -4973,7 +5243,7 @@
4973
5243
  "reference": "./Zimbra-1.4.html",
4974
5244
  "isDeprecatedLicenseId": false,
4975
5245
  "detailsUrl": "http://spdx.org/licenses/Zimbra-1.4.json",
4976
- "referenceNumber": "397",
5246
+ "referenceNumber": "418",
4977
5247
  "name": "Zimbra Public License v1.4",
4978
5248
  "licenseId": "Zimbra-1.4",
4979
5249
  "seeAlso": [
@@ -4986,7 +5256,7 @@
4986
5256
  "isDeprecatedLicenseId": false,
4987
5257
  "isFsfLibre": true,
4988
5258
  "detailsUrl": "http://spdx.org/licenses/Zlib.json",
4989
- "referenceNumber": "45",
5259
+ "referenceNumber": "48",
4990
5260
  "name": "zlib License",
4991
5261
  "licenseId": "Zlib",
4992
5262
  "seeAlso": [
@@ -4999,7 +5269,7 @@
4999
5269
  "reference": "./blessing.html",
5000
5270
  "isDeprecatedLicenseId": false,
5001
5271
  "detailsUrl": "http://spdx.org/licenses/blessing.json",
5002
- "referenceNumber": "312",
5272
+ "referenceNumber": "330",
5003
5273
  "name": "SQLite Blessing",
5004
5274
  "licenseId": "blessing",
5005
5275
  "seeAlso": [
@@ -5012,7 +5282,7 @@
5012
5282
  "reference": "./bzip2-1.0.5.html",
5013
5283
  "isDeprecatedLicenseId": false,
5014
5284
  "detailsUrl": "http://spdx.org/licenses/bzip2-1.0.5.json",
5015
- "referenceNumber": "193",
5285
+ "referenceNumber": "202",
5016
5286
  "name": "bzip2 and libbzip2 License v1.0.5",
5017
5287
  "licenseId": "bzip2-1.0.5",
5018
5288
  "seeAlso": [
@@ -5025,7 +5295,7 @@
5025
5295
  "reference": "./bzip2-1.0.6.html",
5026
5296
  "isDeprecatedLicenseId": false,
5027
5297
  "detailsUrl": "http://spdx.org/licenses/bzip2-1.0.6.json",
5028
- "referenceNumber": "72",
5298
+ "referenceNumber": "76",
5029
5299
  "name": "bzip2 and libbzip2 License v1.0.6",
5030
5300
  "licenseId": "bzip2-1.0.6",
5031
5301
  "seeAlso": [
@@ -5038,7 +5308,7 @@
5038
5308
  "reference": "./copyleft-next-0.3.0.html",
5039
5309
  "isDeprecatedLicenseId": false,
5040
5310
  "detailsUrl": "http://spdx.org/licenses/copyleft-next-0.3.0.json",
5041
- "referenceNumber": "323",
5311
+ "referenceNumber": "342",
5042
5312
  "name": "copyleft-next 0.3.0",
5043
5313
  "licenseId": "copyleft-next-0.3.0",
5044
5314
  "seeAlso": [
@@ -5050,7 +5320,7 @@
5050
5320
  "reference": "./copyleft-next-0.3.1.html",
5051
5321
  "isDeprecatedLicenseId": false,
5052
5322
  "detailsUrl": "http://spdx.org/licenses/copyleft-next-0.3.1.json",
5053
- "referenceNumber": "390",
5323
+ "referenceNumber": "411",
5054
5324
  "name": "copyleft-next 0.3.1",
5055
5325
  "licenseId": "copyleft-next-0.3.1",
5056
5326
  "seeAlso": [
@@ -5062,7 +5332,7 @@
5062
5332
  "reference": "./curl.html",
5063
5333
  "isDeprecatedLicenseId": false,
5064
5334
  "detailsUrl": "http://spdx.org/licenses/curl.json",
5065
- "referenceNumber": "325",
5335
+ "referenceNumber": "344",
5066
5336
  "name": "curl License",
5067
5337
  "licenseId": "curl",
5068
5338
  "seeAlso": [
@@ -5074,7 +5344,7 @@
5074
5344
  "reference": "./diffmark.html",
5075
5345
  "isDeprecatedLicenseId": false,
5076
5346
  "detailsUrl": "http://spdx.org/licenses/diffmark.json",
5077
- "referenceNumber": "410",
5347
+ "referenceNumber": "432",
5078
5348
  "name": "diffmark license",
5079
5349
  "licenseId": "diffmark",
5080
5350
  "seeAlso": [
@@ -5086,7 +5356,7 @@
5086
5356
  "reference": "./dvipdfm.html",
5087
5357
  "isDeprecatedLicenseId": false,
5088
5358
  "detailsUrl": "http://spdx.org/licenses/dvipdfm.json",
5089
- "referenceNumber": "19",
5359
+ "referenceNumber": "21",
5090
5360
  "name": "dvipdfm License",
5091
5361
  "licenseId": "dvipdfm",
5092
5362
  "seeAlso": [
@@ -5099,7 +5369,7 @@
5099
5369
  "isDeprecatedLicenseId": true,
5100
5370
  "isFsfLibre": true,
5101
5371
  "detailsUrl": "http://spdx.org/licenses/eCos-2.0.json",
5102
- "referenceNumber": "282",
5372
+ "referenceNumber": "296",
5103
5373
  "name": "eCos license version 2.0",
5104
5374
  "licenseId": "eCos-2.0",
5105
5375
  "seeAlso": [
@@ -5111,7 +5381,7 @@
5111
5381
  "reference": "./eGenix.html",
5112
5382
  "isDeprecatedLicenseId": false,
5113
5383
  "detailsUrl": "http://spdx.org/licenses/eGenix.json",
5114
- "referenceNumber": "221",
5384
+ "referenceNumber": "232",
5115
5385
  "name": "eGenix.com Public License 1.1.0",
5116
5386
  "licenseId": "eGenix",
5117
5387
  "seeAlso": [
@@ -5124,7 +5394,7 @@
5124
5394
  "reference": "./etalab-2.0.html",
5125
5395
  "isDeprecatedLicenseId": false,
5126
5396
  "detailsUrl": "http://spdx.org/licenses/etalab-2.0.json",
5127
- "referenceNumber": "269",
5397
+ "referenceNumber": "282",
5128
5398
  "name": "Etalab Open License 2.0",
5129
5399
  "licenseId": "etalab-2.0",
5130
5400
  "seeAlso": [
@@ -5137,7 +5407,7 @@
5137
5407
  "reference": "./gSOAP-1.3b.html",
5138
5408
  "isDeprecatedLicenseId": false,
5139
5409
  "detailsUrl": "http://spdx.org/licenses/gSOAP-1.3b.json",
5140
- "referenceNumber": "173",
5410
+ "referenceNumber": "179",
5141
5411
  "name": "gSOAP Public License v1.3b",
5142
5412
  "licenseId": "gSOAP-1.3b",
5143
5413
  "seeAlso": [
@@ -5150,7 +5420,7 @@
5150
5420
  "isDeprecatedLicenseId": false,
5151
5421
  "isFsfLibre": true,
5152
5422
  "detailsUrl": "http://spdx.org/licenses/gnuplot.json",
5153
- "referenceNumber": "395",
5423
+ "referenceNumber": "416",
5154
5424
  "name": "gnuplot License",
5155
5425
  "licenseId": "gnuplot",
5156
5426
  "seeAlso": [
@@ -5163,7 +5433,7 @@
5163
5433
  "isDeprecatedLicenseId": false,
5164
5434
  "isFsfLibre": true,
5165
5435
  "detailsUrl": "http://spdx.org/licenses/iMatix.json",
5166
- "referenceNumber": "183",
5436
+ "referenceNumber": "191",
5167
5437
  "name": "iMatix Standard Function Library Agreement",
5168
5438
  "licenseId": "iMatix",
5169
5439
  "seeAlso": [
@@ -5175,7 +5445,7 @@
5175
5445
  "reference": "./libpng-2.0.html",
5176
5446
  "isDeprecatedLicenseId": false,
5177
5447
  "detailsUrl": "http://spdx.org/licenses/libpng-2.0.json",
5178
- "referenceNumber": "107",
5448
+ "referenceNumber": "112",
5179
5449
  "name": "PNG Reference Library version 2",
5180
5450
  "licenseId": "libpng-2.0",
5181
5451
  "seeAlso": [
@@ -5187,7 +5457,7 @@
5187
5457
  "reference": "./libselinux-1.0.html",
5188
5458
  "isDeprecatedLicenseId": false,
5189
5459
  "detailsUrl": "http://spdx.org/licenses/libselinux-1.0.json",
5190
- "referenceNumber": "18",
5460
+ "referenceNumber": "20",
5191
5461
  "name": "libselinux public domain notice",
5192
5462
  "licenseId": "libselinux-1.0",
5193
5463
  "seeAlso": [
@@ -5199,7 +5469,7 @@
5199
5469
  "reference": "./libtiff.html",
5200
5470
  "isDeprecatedLicenseId": false,
5201
5471
  "detailsUrl": "http://spdx.org/licenses/libtiff.json",
5202
- "referenceNumber": "420",
5472
+ "referenceNumber": "442",
5203
5473
  "name": "libtiff License",
5204
5474
  "licenseId": "libtiff",
5205
5475
  "seeAlso": [
@@ -5211,7 +5481,7 @@
5211
5481
  "reference": "./mpich2.html",
5212
5482
  "isDeprecatedLicenseId": false,
5213
5483
  "detailsUrl": "http://spdx.org/licenses/mpich2.json",
5214
- "referenceNumber": "63",
5484
+ "referenceNumber": "67",
5215
5485
  "name": "mpich2 License",
5216
5486
  "licenseId": "mpich2",
5217
5487
  "seeAlso": [
@@ -5223,7 +5493,7 @@
5223
5493
  "reference": "./psfrag.html",
5224
5494
  "isDeprecatedLicenseId": false,
5225
5495
  "detailsUrl": "http://spdx.org/licenses/psfrag.json",
5226
- "referenceNumber": "421",
5496
+ "referenceNumber": "443",
5227
5497
  "name": "psfrag License",
5228
5498
  "licenseId": "psfrag",
5229
5499
  "seeAlso": [
@@ -5235,7 +5505,7 @@
5235
5505
  "reference": "./psutils.html",
5236
5506
  "isDeprecatedLicenseId": false,
5237
5507
  "detailsUrl": "http://spdx.org/licenses/psutils.json",
5238
- "referenceNumber": "287",
5508
+ "referenceNumber": "301",
5239
5509
  "name": "psutils License",
5240
5510
  "licenseId": "psutils",
5241
5511
  "seeAlso": [
@@ -5247,7 +5517,7 @@
5247
5517
  "reference": "./wxWindows.html",
5248
5518
  "isDeprecatedLicenseId": true,
5249
5519
  "detailsUrl": "http://spdx.org/licenses/wxWindows.json",
5250
- "referenceNumber": "252",
5520
+ "referenceNumber": "265",
5251
5521
  "name": "wxWindows Library License",
5252
5522
  "licenseId": "wxWindows",
5253
5523
  "seeAlso": [
@@ -5260,7 +5530,7 @@
5260
5530
  "isDeprecatedLicenseId": false,
5261
5531
  "isFsfLibre": true,
5262
5532
  "detailsUrl": "http://spdx.org/licenses/xinetd.json",
5263
- "referenceNumber": "412",
5533
+ "referenceNumber": "434",
5264
5534
  "name": "xinetd License",
5265
5535
  "licenseId": "xinetd",
5266
5536
  "seeAlso": [
@@ -5272,7 +5542,7 @@
5272
5542
  "reference": "./xpp.html",
5273
5543
  "isDeprecatedLicenseId": false,
5274
5544
  "detailsUrl": "http://spdx.org/licenses/xpp.json",
5275
- "referenceNumber": "100",
5545
+ "referenceNumber": "105",
5276
5546
  "name": "XPP License",
5277
5547
  "licenseId": "xpp",
5278
5548
  "seeAlso": [
@@ -5284,7 +5554,7 @@
5284
5554
  "reference": "./zlib-acknowledgement.html",
5285
5555
  "isDeprecatedLicenseId": false,
5286
5556
  "detailsUrl": "http://spdx.org/licenses/zlib-acknowledgement.json",
5287
- "referenceNumber": "254",
5557
+ "referenceNumber": "267",
5288
5558
  "name": "zlib/libpng License with Acknowledgement",
5289
5559
  "licenseId": "zlib-acknowledgement",
5290
5560
  "seeAlso": [
@@ -5293,5 +5563,5 @@
5293
5563
  "isOsiApproved": false
5294
5564
  }
5295
5565
  ],
5296
- "releaseDate": "2020-05-15"
5566
+ "releaseDate": "2020-11-05"
5297
5567
  }