1# Copyright 2022 The Bazel Authors. All rights reserved. 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15"""license_kind()s for SPDX license identifiers.""" 16 17# This is a set of license_kind declarations based on the SPDX license 18# identifiers. See: https://spdx.org/licenses/ 19# 20# Open source projects using one of these well known licenses may reference 21# the license_kind targets here. For example, their BUILD file might contain: 22# 23# package(default_applicable_licenses = [":license"]) 24# 25# license( 26# name = "license", 27# license_kinds = ["@rules_license//licenses/spdx:MIT-0"], 28# license_text = "LICENSE.txt", 29# ) 30# 31# Organizations building custom compliance checks based on these licenses 32# declarations can take several approaches to align the the package author's 33# declaration that the package is under (let's say) an MIT-0 license with 34# the conditions that organization believes are required by MIT-0. 35# 36# One technique might be to: 37# 1. Vendor in @rules_license to your source code tree. 38# 2. Modify the targets here to add conditions for your particular needs. 39# 3. Add it as a local_repository() to your Bazel WORKSPACE. 40# 3. As the SPDX license list evolves, and your dependencies start using new 41# licenses, add new license_kind rules to this copy. 42# Another possible strategy might be to 43# 1. maintain a private list of these license_kind declarations somewhere 44# in your source tree. Let's say //compliance/licenses/spdx/BUILD. 45# 2. Automatically remap "@rules_license//licenses/spdx:" to 46# "//compliance/licenses/spdx:" when importing third party code. 47# 48# The choice of approach should be based on your individual philosoply of how 49# you should bring dependencies into your code. If you build from downloaded 50# packages then you might favor the first approach, because external deps 51# can simply refer to @rules_pkg, and they will pick up your local copy. 52# If you maintain your own third_party directory of all your dependences, 53# so that your WORKSPACE files are empty, you might favor the second. 54 55load("@rules_license//rules:license_kind.bzl", "license_kind") 56 57package( 58 default_applicable_licenses = ["//:license"], 59 default_visibility = ["//visibility:public"], 60) 61 62licenses(["notice"]) 63 64filegroup( 65 name = "standard_package", 66 srcs = ["BUILD"], 67) 68 69license_kind( 70 name = "0BSD", 71 conditions = [], 72 url = "https://spdx.org/licenses/0BSD.html", 73) 74 75license_kind( 76 name = "3D-Slicer-1.0", 77 conditions = [], 78 url = "https://spdx.org/licenses/3D-Slicer-1.0.html", 79) 80 81license_kind( 82 name = "AAL", 83 conditions = [], 84 url = "https://spdx.org/licenses/AAL.html", 85) 86 87license_kind( 88 name = "Abstyles", 89 conditions = [], 90 url = "https://spdx.org/licenses/Abstyles.html", 91) 92 93license_kind( 94 name = "AdaCore-doc", 95 conditions = [], 96 url = "https://spdx.org/licenses/AdaCore-doc.html", 97) 98 99license_kind( 100 name = "Adobe-2006", 101 conditions = [], 102 url = "https://spdx.org/licenses/Adobe-2006.html", 103) 104 105license_kind( 106 name = "Adobe-Display-PostScript", 107 conditions = [], 108 url = "https://spdx.org/licenses/Adobe-Display-PostScript.html", 109) 110 111license_kind( 112 name = "Adobe-Glyph", 113 conditions = [], 114 url = "https://spdx.org/licenses/Adobe-Glyph.html", 115) 116 117license_kind( 118 name = "Adobe-Utopia", 119 conditions = [], 120 url = "https://spdx.org/licenses/Adobe-Utopia.html", 121) 122 123license_kind( 124 name = "ADSL", 125 conditions = [], 126 url = "https://spdx.org/licenses/ADSL.html", 127) 128 129license_kind( 130 name = "AFL-1.1", 131 conditions = [], 132 url = "https://spdx.org/licenses/AFL-1.1.html", 133) 134 135license_kind( 136 name = "AFL-1.2", 137 conditions = [], 138 url = "https://spdx.org/licenses/AFL-1.2.html", 139) 140 141license_kind( 142 name = "AFL-2.0", 143 conditions = [], 144 url = "https://spdx.org/licenses/AFL-2.0.html", 145) 146 147license_kind( 148 name = "AFL-2.1", 149 conditions = [], 150 url = "https://spdx.org/licenses/AFL-2.1.html", 151) 152 153license_kind( 154 name = "AFL-3.0", 155 conditions = [], 156 url = "https://spdx.org/licenses/AFL-3.0.html", 157) 158 159license_kind( 160 name = "Afmparse", 161 conditions = [], 162 url = "https://spdx.org/licenses/Afmparse.html", 163) 164 165license_kind( 166 name = "AGPL-1.0", 167 conditions = [], 168 url = "https://spdx.org/licenses/AGPL-1.0.html", 169) 170 171license_kind( 172 name = "AGPL-1.0-only", 173 conditions = [], 174 url = "https://spdx.org/licenses/AGPL-1.0-only.html", 175) 176 177license_kind( 178 name = "AGPL-1.0-or-later", 179 conditions = [], 180 url = "https://spdx.org/licenses/AGPL-1.0-or-later.html", 181) 182 183license_kind( 184 name = "AGPL-3.0", 185 conditions = [], 186 url = "https://spdx.org/licenses/AGPL-3.0.html", 187) 188 189license_kind( 190 name = "AGPL-3.0-only", 191 conditions = [], 192 url = "https://spdx.org/licenses/AGPL-3.0-only.html", 193) 194 195license_kind( 196 name = "AGPL-3.0-or-later", 197 conditions = [], 198 url = "https://spdx.org/licenses/AGPL-3.0-or-later.html", 199) 200 201license_kind( 202 name = "Aladdin", 203 conditions = [], 204 url = "https://spdx.org/licenses/Aladdin.html", 205) 206 207license_kind( 208 name = "AMD-newlib", 209 conditions = [], 210 url = "https://spdx.org/licenses/AMD-newlib.html", 211) 212 213license_kind( 214 name = "AMDPLPA", 215 conditions = [], 216 url = "https://spdx.org/licenses/AMDPLPA.html", 217) 218 219license_kind( 220 name = "AML", 221 conditions = [], 222 url = "https://spdx.org/licenses/AML.html", 223) 224 225license_kind( 226 name = "AML-glslang", 227 conditions = [], 228 url = "https://spdx.org/licenses/AML-glslang.html", 229) 230 231license_kind( 232 name = "AMPAS", 233 conditions = [], 234 url = "https://spdx.org/licenses/AMPAS.html", 235) 236 237license_kind( 238 name = "ANTLR-PD", 239 conditions = [], 240 url = "https://spdx.org/licenses/ANTLR-PD.html", 241) 242 243license_kind( 244 name = "ANTLR-PD-fallback", 245 conditions = [], 246 url = "https://spdx.org/licenses/ANTLR-PD-fallback.html", 247) 248 249license_kind( 250 name = "any-OSI", 251 conditions = [], 252 url = "https://spdx.org/licenses/any-OSI.html", 253) 254 255license_kind( 256 name = "Apache-1.0", 257 conditions = [], 258 url = "https://spdx.org/licenses/Apache-1.0.html", 259) 260 261license_kind( 262 name = "Apache-1.1", 263 conditions = [], 264 url = "https://spdx.org/licenses/Apache-1.1.html", 265) 266 267license_kind( 268 name = "Apache-2.0", 269 conditions = [], 270 url = "https://spdx.org/licenses/Apache-2.0.html", 271) 272 273license_kind( 274 name = "APAFML", 275 conditions = [], 276 url = "https://spdx.org/licenses/APAFML.html", 277) 278 279license_kind( 280 name = "APL-1.0", 281 conditions = [], 282 url = "https://spdx.org/licenses/APL-1.0.html", 283) 284 285license_kind( 286 name = "App-s2p", 287 conditions = [], 288 url = "https://spdx.org/licenses/App-s2p.html", 289) 290 291license_kind( 292 name = "APSL-1.0", 293 conditions = [], 294 url = "https://spdx.org/licenses/APSL-1.0.html", 295) 296 297license_kind( 298 name = "APSL-1.1", 299 conditions = [], 300 url = "https://spdx.org/licenses/APSL-1.1.html", 301) 302 303license_kind( 304 name = "APSL-1.2", 305 conditions = [], 306 url = "https://spdx.org/licenses/APSL-1.2.html", 307) 308 309license_kind( 310 name = "APSL-2.0", 311 conditions = [], 312 url = "https://spdx.org/licenses/APSL-2.0.html", 313) 314 315license_kind( 316 name = "Arphic-1999", 317 conditions = [], 318 url = "https://spdx.org/licenses/Arphic-1999.html", 319) 320 321license_kind( 322 name = "Artistic-1.0", 323 conditions = [], 324 url = "https://spdx.org/licenses/Artistic-1.0.html", 325) 326 327license_kind( 328 name = "Artistic-1.0-cl8", 329 conditions = [], 330 url = "https://spdx.org/licenses/Artistic-1.0-cl8.html", 331) 332 333license_kind( 334 name = "Artistic-1.0-Perl", 335 conditions = [], 336 url = "https://spdx.org/licenses/Artistic-1.0-Perl.html", 337) 338 339license_kind( 340 name = "Artistic-2.0", 341 conditions = [], 342 url = "https://spdx.org/licenses/Artistic-2.0.html", 343) 344 345license_kind( 346 name = "ASWF-Digital-Assets-1.0", 347 conditions = [], 348 url = "https://spdx.org/licenses/ASWF-Digital-Assets-1.0.html", 349) 350 351license_kind( 352 name = "ASWF-Digital-Assets-1.1", 353 conditions = [], 354 url = "https://spdx.org/licenses/ASWF-Digital-Assets-1.1.html", 355) 356 357license_kind( 358 name = "Baekmuk", 359 conditions = [], 360 url = "https://spdx.org/licenses/Baekmuk.html", 361) 362 363license_kind( 364 name = "Bahyph", 365 conditions = [], 366 url = "https://spdx.org/licenses/Bahyph.html", 367) 368 369license_kind( 370 name = "Barr", 371 conditions = [], 372 url = "https://spdx.org/licenses/Barr.html", 373) 374 375license_kind( 376 name = "bcrypt-Solar-Designer", 377 conditions = [], 378 url = "https://spdx.org/licenses/bcrypt-Solar-Designer.html", 379) 380 381license_kind( 382 name = "Beerware", 383 conditions = [], 384 url = "https://spdx.org/licenses/Beerware.html", 385) 386 387license_kind( 388 name = "Bitstream-Charter", 389 conditions = [], 390 url = "https://spdx.org/licenses/Bitstream-Charter.html", 391) 392 393license_kind( 394 name = "Bitstream-Vera", 395 conditions = [], 396 url = "https://spdx.org/licenses/Bitstream-Vera.html", 397) 398 399license_kind( 400 name = "BitTorrent-1.0", 401 conditions = [], 402 url = "https://spdx.org/licenses/BitTorrent-1.0.html", 403) 404 405license_kind( 406 name = "BitTorrent-1.1", 407 conditions = [], 408 url = "https://spdx.org/licenses/BitTorrent-1.1.html", 409) 410 411license_kind( 412 name = "blessing", 413 conditions = [], 414 url = "https://spdx.org/licenses/blessing.html", 415) 416 417license_kind( 418 name = "BlueOak-1.0.0", 419 conditions = [], 420 url = "https://spdx.org/licenses/BlueOak-1.0.0.html", 421) 422 423license_kind( 424 name = "Boehm-GC", 425 conditions = [], 426 url = "https://spdx.org/licenses/Boehm-GC.html", 427) 428 429license_kind( 430 name = "Borceux", 431 conditions = [], 432 url = "https://spdx.org/licenses/Borceux.html", 433) 434 435license_kind( 436 name = "Brian-Gladman-2-Clause", 437 conditions = [], 438 url = "https://spdx.org/licenses/Brian-Gladman-2-Clause.html", 439) 440 441license_kind( 442 name = "Brian-Gladman-3-Clause", 443 conditions = [], 444 url = "https://spdx.org/licenses/Brian-Gladman-3-Clause.html", 445) 446 447license_kind( 448 name = "BSD-1-Clause", 449 conditions = [], 450 url = "https://spdx.org/licenses/BSD-1-Clause.html", 451) 452 453license_kind( 454 name = "BSD-2-Clause", 455 conditions = [], 456 url = "https://spdx.org/licenses/BSD-2-Clause.html", 457) 458 459license_kind( 460 name = "BSD-2-Clause-Darwin", 461 conditions = [], 462 url = "https://spdx.org/licenses/BSD-2-Clause-Darwin.html", 463) 464 465license_kind( 466 name = "BSD-2-Clause-first-lines", 467 conditions = [], 468 url = "https://spdx.org/licenses/BSD-2-Clause-first-lines.html", 469) 470 471license_kind( 472 name = "BSD-2-Clause-FreeBSD", 473 conditions = [], 474 url = "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.html", 475) 476 477license_kind( 478 name = "BSD-2-Clause-NetBSD", 479 conditions = [], 480 url = "https://spdx.org/licenses/BSD-2-Clause-NetBSD.html", 481) 482 483license_kind( 484 name = "BSD-2-Clause-Patent", 485 conditions = [], 486 url = "https://spdx.org/licenses/BSD-2-Clause-Patent.html", 487) 488 489license_kind( 490 name = "BSD-2-Clause-Views", 491 conditions = [], 492 url = "https://spdx.org/licenses/BSD-2-Clause-Views.html", 493) 494 495license_kind( 496 name = "BSD-3-Clause", 497 conditions = [], 498 url = "https://spdx.org/licenses/BSD-3-Clause.html", 499) 500 501license_kind( 502 name = "BSD-3-Clause-acpica", 503 conditions = [], 504 url = "https://spdx.org/licenses/BSD-3-Clause-acpica.html", 505) 506 507license_kind( 508 name = "BSD-3-Clause-Attribution", 509 conditions = [], 510 url = "https://spdx.org/licenses/BSD-3-Clause-Attribution.html", 511) 512 513license_kind( 514 name = "BSD-3-Clause-Clear", 515 conditions = [], 516 url = "https://spdx.org/licenses/BSD-3-Clause-Clear.html", 517) 518 519license_kind( 520 name = "BSD-3-Clause-flex", 521 conditions = [], 522 url = "https://spdx.org/licenses/BSD-3-Clause-flex.html", 523) 524 525license_kind( 526 name = "BSD-3-Clause-HP", 527 conditions = [], 528 url = "https://spdx.org/licenses/BSD-3-Clause-HP.html", 529) 530 531license_kind( 532 name = "BSD-3-Clause-LBNL", 533 conditions = [], 534 url = "https://spdx.org/licenses/BSD-3-Clause-LBNL.html", 535) 536 537license_kind( 538 name = "BSD-3-Clause-Modification", 539 conditions = [], 540 url = "https://spdx.org/licenses/BSD-3-Clause-Modification.html", 541) 542 543license_kind( 544 name = "BSD-3-Clause-No-Military-License", 545 conditions = [], 546 url = "https://spdx.org/licenses/BSD-3-Clause-No-Military-License.html", 547) 548 549license_kind( 550 name = "BSD-3-Clause-No-Nuclear-License", 551 conditions = [], 552 url = "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.html", 553) 554 555license_kind( 556 name = "BSD-3-Clause-No-Nuclear-License-2014", 557 conditions = [], 558 url = "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.html", 559) 560 561license_kind( 562 name = "BSD-3-Clause-No-Nuclear-Warranty", 563 conditions = [], 564 url = "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.html", 565) 566 567license_kind( 568 name = "BSD-3-Clause-Open-MPI", 569 conditions = [], 570 url = "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.html", 571) 572 573license_kind( 574 name = "BSD-3-Clause-Sun", 575 conditions = [], 576 url = "https://spdx.org/licenses/BSD-3-Clause-Sun.html", 577) 578 579license_kind( 580 name = "BSD-4-Clause", 581 conditions = [], 582 url = "https://spdx.org/licenses/BSD-4-Clause.html", 583) 584 585license_kind( 586 name = "BSD-4-Clause-Shortened", 587 conditions = [], 588 url = "https://spdx.org/licenses/BSD-4-Clause-Shortened.html", 589) 590 591license_kind( 592 name = "BSD-4-Clause-UC", 593 conditions = [], 594 url = "https://spdx.org/licenses/BSD-4-Clause-UC.html", 595) 596 597license_kind( 598 name = "BSD-4.3RENO", 599 conditions = [], 600 url = "https://spdx.org/licenses/BSD-4.3RENO.html", 601) 602 603license_kind( 604 name = "BSD-4.3TAHOE", 605 conditions = [], 606 url = "https://spdx.org/licenses/BSD-4.3TAHOE.html", 607) 608 609license_kind( 610 name = "BSD-Advertising-Acknowledgement", 611 conditions = [], 612 url = "https://spdx.org/licenses/BSD-Advertising-Acknowledgement.html", 613) 614 615license_kind( 616 name = "BSD-Attribution-HPND-disclaimer", 617 conditions = [], 618 url = "https://spdx.org/licenses/BSD-Attribution-HPND-disclaimer.html", 619) 620 621license_kind( 622 name = "BSD-Inferno-Nettverk", 623 conditions = [], 624 url = "https://spdx.org/licenses/BSD-Inferno-Nettverk.html", 625) 626 627license_kind( 628 name = "BSD-Protection", 629 conditions = [], 630 url = "https://spdx.org/licenses/BSD-Protection.html", 631) 632 633license_kind( 634 name = "BSD-Source-beginning-file", 635 conditions = [], 636 url = "https://spdx.org/licenses/BSD-Source-beginning-file.html", 637) 638 639license_kind( 640 name = "BSD-Source-Code", 641 conditions = [], 642 url = "https://spdx.org/licenses/BSD-Source-Code.html", 643) 644 645license_kind( 646 name = "BSD-Systemics", 647 conditions = [], 648 url = "https://spdx.org/licenses/BSD-Systemics.html", 649) 650 651license_kind( 652 name = "BSD-Systemics-W3Works", 653 conditions = [], 654 url = "https://spdx.org/licenses/BSD-Systemics-W3Works.html", 655) 656 657license_kind( 658 name = "BSL-1.0", 659 conditions = [], 660 url = "https://spdx.org/licenses/BSL-1.0.html", 661) 662 663license_kind( 664 name = "BUSL-1.1", 665 conditions = [], 666 url = "https://spdx.org/licenses/BUSL-1.1.html", 667) 668 669license_kind( 670 name = "bzip2-1.0.5", 671 conditions = [], 672 url = "https://spdx.org/licenses/bzip2-1.0.5.html", 673) 674 675license_kind( 676 name = "bzip2-1.0.6", 677 conditions = [], 678 url = "https://spdx.org/licenses/bzip2-1.0.6.html", 679) 680 681license_kind( 682 name = "C-UDA-1.0", 683 conditions = [], 684 url = "https://spdx.org/licenses/C-UDA-1.0.html", 685) 686 687license_kind( 688 name = "CAL-1.0", 689 conditions = [], 690 url = "https://spdx.org/licenses/CAL-1.0.html", 691) 692 693license_kind( 694 name = "CAL-1.0-Combined-Work-Exception", 695 conditions = [], 696 url = "https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.html", 697) 698 699license_kind( 700 name = "Caldera", 701 conditions = [], 702 url = "https://spdx.org/licenses/Caldera.html", 703) 704 705license_kind( 706 name = "Caldera-no-preamble", 707 conditions = [], 708 url = "https://spdx.org/licenses/Caldera-no-preamble.html", 709) 710 711license_kind( 712 name = "Catharon", 713 conditions = [], 714 url = "https://spdx.org/licenses/Catharon.html", 715) 716 717license_kind( 718 name = "CATOSL-1.1", 719 conditions = [], 720 url = "https://spdx.org/licenses/CATOSL-1.1.html", 721) 722 723license_kind( 724 name = "CC-BY-1.0", 725 conditions = [], 726 url = "https://spdx.org/licenses/CC-BY-1.0.html", 727) 728 729license_kind( 730 name = "CC-BY-2.0", 731 conditions = [], 732 url = "https://spdx.org/licenses/CC-BY-2.0.html", 733) 734 735license_kind( 736 name = "CC-BY-2.5", 737 conditions = [], 738 url = "https://spdx.org/licenses/CC-BY-2.5.html", 739) 740 741license_kind( 742 name = "CC-BY-2.5-AU", 743 conditions = [], 744 url = "https://spdx.org/licenses/CC-BY-2.5-AU.html", 745) 746 747license_kind( 748 name = "CC-BY-3.0", 749 conditions = [], 750 url = "https://spdx.org/licenses/CC-BY-3.0.html", 751) 752 753license_kind( 754 name = "CC-BY-3.0-AT", 755 conditions = [], 756 url = "https://spdx.org/licenses/CC-BY-3.0-AT.html", 757) 758 759license_kind( 760 name = "CC-BY-3.0-AU", 761 conditions = [], 762 url = "https://spdx.org/licenses/CC-BY-3.0-AU.html", 763) 764 765license_kind( 766 name = "CC-BY-3.0-DE", 767 conditions = [], 768 url = "https://spdx.org/licenses/CC-BY-3.0-DE.html", 769) 770 771license_kind( 772 name = "CC-BY-3.0-IGO", 773 conditions = [], 774 url = "https://spdx.org/licenses/CC-BY-3.0-IGO.html", 775) 776 777license_kind( 778 name = "CC-BY-3.0-NL", 779 conditions = [], 780 url = "https://spdx.org/licenses/CC-BY-3.0-NL.html", 781) 782 783license_kind( 784 name = "CC-BY-3.0-US", 785 conditions = [], 786 url = "https://spdx.org/licenses/CC-BY-3.0-US.html", 787) 788 789license_kind( 790 name = "CC-BY-4.0", 791 conditions = [], 792 url = "https://spdx.org/licenses/CC-BY-4.0.html", 793) 794 795license_kind( 796 name = "CC-BY-NC-1.0", 797 conditions = [], 798 url = "https://spdx.org/licenses/CC-BY-NC-1.0.html", 799) 800 801license_kind( 802 name = "CC-BY-NC-2.0", 803 conditions = [], 804 url = "https://spdx.org/licenses/CC-BY-NC-2.0.html", 805) 806 807license_kind( 808 name = "CC-BY-NC-2.5", 809 conditions = [], 810 url = "https://spdx.org/licenses/CC-BY-NC-2.5.html", 811) 812 813license_kind( 814 name = "CC-BY-NC-3.0", 815 conditions = [], 816 url = "https://spdx.org/licenses/CC-BY-NC-3.0.html", 817) 818 819license_kind( 820 name = "CC-BY-NC-3.0-DE", 821 conditions = [], 822 url = "https://spdx.org/licenses/CC-BY-NC-3.0-DE.html", 823) 824 825license_kind( 826 name = "CC-BY-NC-4.0", 827 conditions = [], 828 url = "https://spdx.org/licenses/CC-BY-NC-4.0.html", 829) 830 831license_kind( 832 name = "CC-BY-NC-ND-1.0", 833 conditions = [], 834 url = "https://spdx.org/licenses/CC-BY-NC-ND-1.0.html", 835) 836 837license_kind( 838 name = "CC-BY-NC-ND-2.0", 839 conditions = [], 840 url = "https://spdx.org/licenses/CC-BY-NC-ND-2.0.html", 841) 842 843license_kind( 844 name = "CC-BY-NC-ND-2.5", 845 conditions = [], 846 url = "https://spdx.org/licenses/CC-BY-NC-ND-2.5.html", 847) 848 849license_kind( 850 name = "CC-BY-NC-ND-3.0", 851 conditions = [], 852 url = "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html", 853) 854 855license_kind( 856 name = "CC-BY-NC-ND-3.0-DE", 857 conditions = [], 858 url = "https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE.html", 859) 860 861license_kind( 862 name = "CC-BY-NC-ND-3.0-IGO", 863 conditions = [], 864 url = "https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.html", 865) 866 867license_kind( 868 name = "CC-BY-NC-ND-4.0", 869 conditions = [], 870 url = "https://spdx.org/licenses/CC-BY-NC-ND-4.0.html", 871) 872 873license_kind( 874 name = "CC-BY-NC-SA-1.0", 875 conditions = [], 876 url = "https://spdx.org/licenses/CC-BY-NC-SA-1.0.html", 877) 878 879license_kind( 880 name = "CC-BY-NC-SA-2.0", 881 conditions = [], 882 url = "https://spdx.org/licenses/CC-BY-NC-SA-2.0.html", 883) 884 885license_kind( 886 name = "CC-BY-NC-SA-2.0-DE", 887 conditions = [], 888 url = "https://spdx.org/licenses/CC-BY-NC-SA-2.0-DE.html", 889) 890 891license_kind( 892 name = "CC-BY-NC-SA-2.0-FR", 893 conditions = [], 894 url = "https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.html", 895) 896 897license_kind( 898 name = "CC-BY-NC-SA-2.0-UK", 899 conditions = [], 900 url = "https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK.html", 901) 902 903license_kind( 904 name = "CC-BY-NC-SA-2.5", 905 conditions = [], 906 url = "https://spdx.org/licenses/CC-BY-NC-SA-2.5.html", 907) 908 909license_kind( 910 name = "CC-BY-NC-SA-3.0", 911 conditions = [], 912 url = "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html", 913) 914 915license_kind( 916 name = "CC-BY-NC-SA-3.0-DE", 917 conditions = [], 918 url = "https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE.html", 919) 920 921license_kind( 922 name = "CC-BY-NC-SA-3.0-IGO", 923 conditions = [], 924 url = "https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO.html", 925) 926 927license_kind( 928 name = "CC-BY-NC-SA-4.0", 929 conditions = [], 930 url = "https://spdx.org/licenses/CC-BY-NC-SA-4.0.html", 931) 932 933license_kind( 934 name = "CC-BY-ND-1.0", 935 conditions = [], 936 url = "https://spdx.org/licenses/CC-BY-ND-1.0.html", 937) 938 939license_kind( 940 name = "CC-BY-ND-2.0", 941 conditions = [], 942 url = "https://spdx.org/licenses/CC-BY-ND-2.0.html", 943) 944 945license_kind( 946 name = "CC-BY-ND-2.5", 947 conditions = [], 948 url = "https://spdx.org/licenses/CC-BY-ND-2.5.html", 949) 950 951license_kind( 952 name = "CC-BY-ND-3.0", 953 conditions = [], 954 url = "https://spdx.org/licenses/CC-BY-ND-3.0.html", 955) 956 957license_kind( 958 name = "CC-BY-ND-3.0-DE", 959 conditions = [], 960 url = "https://spdx.org/licenses/CC-BY-ND-3.0-DE.html", 961) 962 963license_kind( 964 name = "CC-BY-ND-4.0", 965 conditions = [], 966 url = "https://spdx.org/licenses/CC-BY-ND-4.0.html", 967) 968 969license_kind( 970 name = "CC-BY-SA-1.0", 971 conditions = [], 972 url = "https://spdx.org/licenses/CC-BY-SA-1.0.html", 973) 974 975license_kind( 976 name = "CC-BY-SA-2.0", 977 conditions = [], 978 url = "https://spdx.org/licenses/CC-BY-SA-2.0.html", 979) 980 981license_kind( 982 name = "CC-BY-SA-2.0-UK", 983 conditions = [], 984 url = "https://spdx.org/licenses/CC-BY-SA-2.0-UK.html", 985) 986 987license_kind( 988 name = "CC-BY-SA-2.1-JP", 989 conditions = [], 990 url = "https://spdx.org/licenses/CC-BY-SA-2.1-JP.html", 991) 992 993license_kind( 994 name = "CC-BY-SA-2.5", 995 conditions = [], 996 url = "https://spdx.org/licenses/CC-BY-SA-2.5.html", 997) 998 999license_kind( 1000 name = "CC-BY-SA-3.0", 1001 conditions = [], 1002 url = "https://spdx.org/licenses/CC-BY-SA-3.0.html", 1003) 1004 1005license_kind( 1006 name = "CC-BY-SA-3.0-AT", 1007 conditions = [], 1008 url = "https://spdx.org/licenses/CC-BY-SA-3.0-AT.html", 1009) 1010 1011license_kind( 1012 name = "CC-BY-SA-3.0-DE", 1013 conditions = [], 1014 url = "https://spdx.org/licenses/CC-BY-SA-3.0-DE.html", 1015) 1016 1017license_kind( 1018 name = "CC-BY-SA-3.0-IGO", 1019 conditions = [], 1020 url = "https://spdx.org/licenses/CC-BY-SA-3.0-IGO.html", 1021) 1022 1023license_kind( 1024 name = "CC-BY-SA-4.0", 1025 conditions = [], 1026 url = "https://spdx.org/licenses/CC-BY-SA-4.0.html", 1027) 1028 1029license_kind( 1030 name = "CC-PDDC", 1031 conditions = [], 1032 url = "https://spdx.org/licenses/CC-PDDC.html", 1033) 1034 1035license_kind( 1036 name = "CC0-1.0", 1037 conditions = [], 1038 url = "https://spdx.org/licenses/CC0-1.0.html", 1039) 1040 1041license_kind( 1042 name = "CDDL-1.0", 1043 conditions = [], 1044 url = "https://spdx.org/licenses/CDDL-1.0.html", 1045) 1046 1047license_kind( 1048 name = "CDDL-1.1", 1049 conditions = [], 1050 url = "https://spdx.org/licenses/CDDL-1.1.html", 1051) 1052 1053license_kind( 1054 name = "CDL-1.0", 1055 conditions = [], 1056 url = "https://spdx.org/licenses/CDL-1.0.html", 1057) 1058 1059license_kind( 1060 name = "CDLA-Permissive-1.0", 1061 conditions = [], 1062 url = "https://spdx.org/licenses/CDLA-Permissive-1.0.html", 1063) 1064 1065license_kind( 1066 name = "CDLA-Permissive-2.0", 1067 conditions = [], 1068 url = "https://spdx.org/licenses/CDLA-Permissive-2.0.html", 1069) 1070 1071license_kind( 1072 name = "CDLA-Sharing-1.0", 1073 conditions = [], 1074 url = "https://spdx.org/licenses/CDLA-Sharing-1.0.html", 1075) 1076 1077license_kind( 1078 name = "CECILL-1.0", 1079 conditions = [], 1080 url = "https://spdx.org/licenses/CECILL-1.0.html", 1081) 1082 1083license_kind( 1084 name = "CECILL-1.1", 1085 conditions = [], 1086 url = "https://spdx.org/licenses/CECILL-1.1.html", 1087) 1088 1089license_kind( 1090 name = "CECILL-2.0", 1091 conditions = [], 1092 url = "https://spdx.org/licenses/CECILL-2.0.html", 1093) 1094 1095license_kind( 1096 name = "CECILL-2.1", 1097 conditions = [], 1098 url = "https://spdx.org/licenses/CECILL-2.1.html", 1099) 1100 1101license_kind( 1102 name = "CECILL-B", 1103 conditions = [], 1104 url = "https://spdx.org/licenses/CECILL-B.html", 1105) 1106 1107license_kind( 1108 name = "CECILL-C", 1109 conditions = [], 1110 url = "https://spdx.org/licenses/CECILL-C.html", 1111) 1112 1113license_kind( 1114 name = "CERN-OHL-1.1", 1115 conditions = [], 1116 url = "https://spdx.org/licenses/CERN-OHL-1.1.html", 1117) 1118 1119license_kind( 1120 name = "CERN-OHL-1.2", 1121 conditions = [], 1122 url = "https://spdx.org/licenses/CERN-OHL-1.2.html", 1123) 1124 1125license_kind( 1126 name = "CERN-OHL-P-2.0", 1127 conditions = [], 1128 url = "https://spdx.org/licenses/CERN-OHL-P-2.0.html", 1129) 1130 1131license_kind( 1132 name = "CERN-OHL-S-2.0", 1133 conditions = [], 1134 url = "https://spdx.org/licenses/CERN-OHL-S-2.0.html", 1135) 1136 1137license_kind( 1138 name = "CERN-OHL-W-2.0", 1139 conditions = [], 1140 url = "https://spdx.org/licenses/CERN-OHL-W-2.0.html", 1141) 1142 1143license_kind( 1144 name = "CFITSIO", 1145 conditions = [], 1146 url = "https://spdx.org/licenses/CFITSIO.html", 1147) 1148 1149license_kind( 1150 name = "check-cvs", 1151 conditions = [], 1152 url = "https://spdx.org/licenses/check-cvs.html", 1153) 1154 1155license_kind( 1156 name = "checkmk", 1157 conditions = [], 1158 url = "https://spdx.org/licenses/checkmk.html", 1159) 1160 1161license_kind( 1162 name = "ClArtistic", 1163 conditions = [], 1164 url = "https://spdx.org/licenses/ClArtistic.html", 1165) 1166 1167license_kind( 1168 name = "Clips", 1169 conditions = [], 1170 url = "https://spdx.org/licenses/Clips.html", 1171) 1172 1173license_kind( 1174 name = "CMU-Mach", 1175 conditions = [], 1176 url = "https://spdx.org/licenses/CMU-Mach.html", 1177) 1178 1179license_kind( 1180 name = "CMU-Mach-nodoc", 1181 conditions = [], 1182 url = "https://spdx.org/licenses/CMU-Mach-nodoc.html", 1183) 1184 1185license_kind( 1186 name = "CNRI-Jython", 1187 conditions = [], 1188 url = "https://spdx.org/licenses/CNRI-Jython.html", 1189) 1190 1191license_kind( 1192 name = "CNRI-Python", 1193 conditions = [], 1194 url = "https://spdx.org/licenses/CNRI-Python.html", 1195) 1196 1197license_kind( 1198 name = "CNRI-Python-GPL-Compatible", 1199 conditions = [], 1200 url = "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.html", 1201) 1202 1203license_kind( 1204 name = "COIL-1.0", 1205 conditions = [], 1206 url = "https://spdx.org/licenses/COIL-1.0.html", 1207) 1208 1209license_kind( 1210 name = "Community-Spec-1.0", 1211 conditions = [], 1212 url = "https://spdx.org/licenses/Community-Spec-1.0.html", 1213) 1214 1215license_kind( 1216 name = "Condor-1.1", 1217 conditions = [], 1218 url = "https://spdx.org/licenses/Condor-1.1.html", 1219) 1220 1221license_kind( 1222 name = "copyleft-next-0.3.0", 1223 conditions = [], 1224 url = "https://spdx.org/licenses/copyleft-next-0.3.0.html", 1225) 1226 1227license_kind( 1228 name = "copyleft-next-0.3.1", 1229 conditions = [], 1230 url = "https://spdx.org/licenses/copyleft-next-0.3.1.html", 1231) 1232 1233license_kind( 1234 name = "Cornell-Lossless-JPEG", 1235 conditions = [], 1236 url = "https://spdx.org/licenses/Cornell-Lossless-JPEG.html", 1237) 1238 1239license_kind( 1240 name = "CPAL-1.0", 1241 conditions = [], 1242 url = "https://spdx.org/licenses/CPAL-1.0.html", 1243) 1244 1245license_kind( 1246 name = "CPL-1.0", 1247 conditions = [], 1248 url = "https://spdx.org/licenses/CPL-1.0.html", 1249) 1250 1251license_kind( 1252 name = "CPOL-1.02", 1253 conditions = [], 1254 url = "https://spdx.org/licenses/CPOL-1.02.html", 1255) 1256 1257license_kind( 1258 name = "Cronyx", 1259 conditions = [], 1260 url = "https://spdx.org/licenses/Cronyx.html", 1261) 1262 1263license_kind( 1264 name = "Crossword", 1265 conditions = [], 1266 url = "https://spdx.org/licenses/Crossword.html", 1267) 1268 1269license_kind( 1270 name = "CrystalStacker", 1271 conditions = [], 1272 url = "https://spdx.org/licenses/CrystalStacker.html", 1273) 1274 1275license_kind( 1276 name = "CUA-OPL-1.0", 1277 conditions = [], 1278 url = "https://spdx.org/licenses/CUA-OPL-1.0.html", 1279) 1280 1281license_kind( 1282 name = "Cube", 1283 conditions = [], 1284 url = "https://spdx.org/licenses/Cube.html", 1285) 1286 1287license_kind( 1288 name = "curl", 1289 conditions = [], 1290 url = "https://spdx.org/licenses/curl.html", 1291) 1292 1293license_kind( 1294 name = "cve-tou", 1295 conditions = [], 1296 url = "https://spdx.org/licenses/cve-tou.html", 1297) 1298 1299license_kind( 1300 name = "D-FSL-1.0", 1301 conditions = [], 1302 url = "https://spdx.org/licenses/D-FSL-1.0.html", 1303) 1304 1305license_kind( 1306 name = "DEC-3-Clause", 1307 conditions = [], 1308 url = "https://spdx.org/licenses/DEC-3-Clause.html", 1309) 1310 1311license_kind( 1312 name = "diffmark", 1313 conditions = [], 1314 url = "https://spdx.org/licenses/diffmark.html", 1315) 1316 1317license_kind( 1318 name = "DL-DE-BY-2.0", 1319 conditions = [], 1320 url = "https://spdx.org/licenses/DL-DE-BY-2.0.html", 1321) 1322 1323license_kind( 1324 name = "DL-DE-ZERO-2.0", 1325 conditions = [], 1326 url = "https://spdx.org/licenses/DL-DE-ZERO-2.0.html", 1327) 1328 1329license_kind( 1330 name = "DOC", 1331 conditions = [], 1332 url = "https://spdx.org/licenses/DOC.html", 1333) 1334 1335license_kind( 1336 name = "DocBook-Schema", 1337 conditions = [], 1338 url = "https://spdx.org/licenses/DocBook-Schema.html", 1339) 1340 1341license_kind( 1342 name = "DocBook-Stylesheet", 1343 conditions = [], 1344 url = "https://spdx.org/licenses/DocBook-Stylesheet.html", 1345) 1346 1347license_kind( 1348 name = "DocBook-XML", 1349 conditions = [], 1350 url = "https://spdx.org/licenses/DocBook-XML.html", 1351) 1352 1353license_kind( 1354 name = "Dotseqn", 1355 conditions = [], 1356 url = "https://spdx.org/licenses/Dotseqn.html", 1357) 1358 1359license_kind( 1360 name = "DRL-1.0", 1361 conditions = [], 1362 url = "https://spdx.org/licenses/DRL-1.0.html", 1363) 1364 1365license_kind( 1366 name = "DRL-1.1", 1367 conditions = [], 1368 url = "https://spdx.org/licenses/DRL-1.1.html", 1369) 1370 1371license_kind( 1372 name = "DSDP", 1373 conditions = [], 1374 url = "https://spdx.org/licenses/DSDP.html", 1375) 1376 1377license_kind( 1378 name = "dtoa", 1379 conditions = [], 1380 url = "https://spdx.org/licenses/dtoa.html", 1381) 1382 1383license_kind( 1384 name = "dvipdfm", 1385 conditions = [], 1386 url = "https://spdx.org/licenses/dvipdfm.html", 1387) 1388 1389license_kind( 1390 name = "ECL-1.0", 1391 conditions = [], 1392 url = "https://spdx.org/licenses/ECL-1.0.html", 1393) 1394 1395license_kind( 1396 name = "ECL-2.0", 1397 conditions = [], 1398 url = "https://spdx.org/licenses/ECL-2.0.html", 1399) 1400 1401license_kind( 1402 name = "eCos-2.0", 1403 conditions = [], 1404 url = "https://spdx.org/licenses/eCos-2.0.html", 1405) 1406 1407license_kind( 1408 name = "EFL-1.0", 1409 conditions = [], 1410 url = "https://spdx.org/licenses/EFL-1.0.html", 1411) 1412 1413license_kind( 1414 name = "EFL-2.0", 1415 conditions = [], 1416 url = "https://spdx.org/licenses/EFL-2.0.html", 1417) 1418 1419license_kind( 1420 name = "eGenix", 1421 conditions = [], 1422 url = "https://spdx.org/licenses/eGenix.html", 1423) 1424 1425license_kind( 1426 name = "Elastic-2.0", 1427 conditions = [], 1428 url = "https://spdx.org/licenses/Elastic-2.0.html", 1429) 1430 1431license_kind( 1432 name = "Entessa", 1433 conditions = [], 1434 url = "https://spdx.org/licenses/Entessa.html", 1435) 1436 1437license_kind( 1438 name = "EPICS", 1439 conditions = [], 1440 url = "https://spdx.org/licenses/EPICS.html", 1441) 1442 1443license_kind( 1444 name = "EPL-1.0", 1445 conditions = [], 1446 url = "https://spdx.org/licenses/EPL-1.0.html", 1447) 1448 1449license_kind( 1450 name = "EPL-2.0", 1451 conditions = [], 1452 url = "https://spdx.org/licenses/EPL-2.0.html", 1453) 1454 1455license_kind( 1456 name = "ErlPL-1.1", 1457 conditions = [], 1458 url = "https://spdx.org/licenses/ErlPL-1.1.html", 1459) 1460 1461license_kind( 1462 name = "etalab-2.0", 1463 conditions = [], 1464 url = "https://spdx.org/licenses/etalab-2.0.html", 1465) 1466 1467license_kind( 1468 name = "EUDatagrid", 1469 conditions = [], 1470 url = "https://spdx.org/licenses/EUDatagrid.html", 1471) 1472 1473license_kind( 1474 name = "EUPL-1.0", 1475 conditions = [], 1476 url = "https://spdx.org/licenses/EUPL-1.0.html", 1477) 1478 1479license_kind( 1480 name = "EUPL-1.1", 1481 conditions = [], 1482 url = "https://spdx.org/licenses/EUPL-1.1.html", 1483) 1484 1485license_kind( 1486 name = "EUPL-1.2", 1487 conditions = [], 1488 url = "https://spdx.org/licenses/EUPL-1.2.html", 1489) 1490 1491license_kind( 1492 name = "Eurosym", 1493 conditions = [], 1494 url = "https://spdx.org/licenses/Eurosym.html", 1495) 1496 1497license_kind( 1498 name = "Fair", 1499 conditions = [], 1500 url = "https://spdx.org/licenses/Fair.html", 1501) 1502 1503license_kind( 1504 name = "FBM", 1505 conditions = [], 1506 url = "https://spdx.org/licenses/FBM.html", 1507) 1508 1509license_kind( 1510 name = "FDK-AAC", 1511 conditions = [], 1512 url = "https://spdx.org/licenses/FDK-AAC.html", 1513) 1514 1515license_kind( 1516 name = "Ferguson-Twofish", 1517 conditions = [], 1518 url = "https://spdx.org/licenses/Ferguson-Twofish.html", 1519) 1520 1521license_kind( 1522 name = "Frameworx-1.0", 1523 conditions = [], 1524 url = "https://spdx.org/licenses/Frameworx-1.0.html", 1525) 1526 1527license_kind( 1528 name = "FreeBSD-DOC", 1529 conditions = [], 1530 url = "https://spdx.org/licenses/FreeBSD-DOC.html", 1531) 1532 1533license_kind( 1534 name = "FreeImage", 1535 conditions = [], 1536 url = "https://spdx.org/licenses/FreeImage.html", 1537) 1538 1539license_kind( 1540 name = "FSFAP", 1541 conditions = [], 1542 url = "https://spdx.org/licenses/FSFAP.html", 1543) 1544 1545license_kind( 1546 name = "FSFAP-no-warranty-disclaimer", 1547 conditions = [], 1548 url = "https://spdx.org/licenses/FSFAP-no-warranty-disclaimer.html", 1549) 1550 1551license_kind( 1552 name = "FSFUL", 1553 conditions = [], 1554 url = "https://spdx.org/licenses/FSFUL.html", 1555) 1556 1557license_kind( 1558 name = "FSFULLR", 1559 conditions = [], 1560 url = "https://spdx.org/licenses/FSFULLR.html", 1561) 1562 1563license_kind( 1564 name = "FSFULLRWD", 1565 conditions = [], 1566 url = "https://spdx.org/licenses/FSFULLRWD.html", 1567) 1568 1569license_kind( 1570 name = "FTL", 1571 conditions = [], 1572 url = "https://spdx.org/licenses/FTL.html", 1573) 1574 1575license_kind( 1576 name = "Furuseth", 1577 conditions = [], 1578 url = "https://spdx.org/licenses/Furuseth.html", 1579) 1580 1581license_kind( 1582 name = "fwlw", 1583 conditions = [], 1584 url = "https://spdx.org/licenses/fwlw.html", 1585) 1586 1587license_kind( 1588 name = "GCR-docs", 1589 conditions = [], 1590 url = "https://spdx.org/licenses/GCR-docs.html", 1591) 1592 1593license_kind( 1594 name = "GD", 1595 conditions = [], 1596 url = "https://spdx.org/licenses/GD.html", 1597) 1598 1599license_kind( 1600 name = "GFDL-1.1", 1601 conditions = [], 1602 url = "https://spdx.org/licenses/GFDL-1.1.html", 1603) 1604 1605license_kind( 1606 name = "GFDL-1.1-invariants-only", 1607 conditions = [], 1608 url = "https://spdx.org/licenses/GFDL-1.1-invariants-only.html", 1609) 1610 1611license_kind( 1612 name = "GFDL-1.1-invariants-or-later", 1613 conditions = [], 1614 url = "https://spdx.org/licenses/GFDL-1.1-invariants-or-later.html", 1615) 1616 1617license_kind( 1618 name = "GFDL-1.1-no-invariants-only", 1619 conditions = [], 1620 url = "https://spdx.org/licenses/GFDL-1.1-no-invariants-only.html", 1621) 1622 1623license_kind( 1624 name = "GFDL-1.1-no-invariants-or-later", 1625 conditions = [], 1626 url = "https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later.html", 1627) 1628 1629license_kind( 1630 name = "GFDL-1.1-only", 1631 conditions = [], 1632 url = "https://spdx.org/licenses/GFDL-1.1-only.html", 1633) 1634 1635license_kind( 1636 name = "GFDL-1.1-or-later", 1637 conditions = [], 1638 url = "https://spdx.org/licenses/GFDL-1.1-or-later.html", 1639) 1640 1641license_kind( 1642 name = "GFDL-1.2", 1643 conditions = [], 1644 url = "https://spdx.org/licenses/GFDL-1.2.html", 1645) 1646 1647license_kind( 1648 name = "GFDL-1.2-invariants-only", 1649 conditions = [], 1650 url = "https://spdx.org/licenses/GFDL-1.2-invariants-only.html", 1651) 1652 1653license_kind( 1654 name = "GFDL-1.2-invariants-or-later", 1655 conditions = [], 1656 url = "https://spdx.org/licenses/GFDL-1.2-invariants-or-later.html", 1657) 1658 1659license_kind( 1660 name = "GFDL-1.2-no-invariants-only", 1661 conditions = [], 1662 url = "https://spdx.org/licenses/GFDL-1.2-no-invariants-only.html", 1663) 1664 1665license_kind( 1666 name = "GFDL-1.2-no-invariants-or-later", 1667 conditions = [], 1668 url = "https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later.html", 1669) 1670 1671license_kind( 1672 name = "GFDL-1.2-only", 1673 conditions = [], 1674 url = "https://spdx.org/licenses/GFDL-1.2-only.html", 1675) 1676 1677license_kind( 1678 name = "GFDL-1.2-or-later", 1679 conditions = [], 1680 url = "https://spdx.org/licenses/GFDL-1.2-or-later.html", 1681) 1682 1683license_kind( 1684 name = "GFDL-1.3", 1685 conditions = [], 1686 url = "https://spdx.org/licenses/GFDL-1.3.html", 1687) 1688 1689license_kind( 1690 name = "GFDL-1.3-invariants-only", 1691 conditions = [], 1692 url = "https://spdx.org/licenses/GFDL-1.3-invariants-only.html", 1693) 1694 1695license_kind( 1696 name = "GFDL-1.3-invariants-or-later", 1697 conditions = [], 1698 url = "https://spdx.org/licenses/GFDL-1.3-invariants-or-later.html", 1699) 1700 1701license_kind( 1702 name = "GFDL-1.3-no-invariants-only", 1703 conditions = [], 1704 url = "https://spdx.org/licenses/GFDL-1.3-no-invariants-only.html", 1705) 1706 1707license_kind( 1708 name = "GFDL-1.3-no-invariants-or-later", 1709 conditions = [], 1710 url = "https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.html", 1711) 1712 1713license_kind( 1714 name = "GFDL-1.3-only", 1715 conditions = [], 1716 url = "https://spdx.org/licenses/GFDL-1.3-only.html", 1717) 1718 1719license_kind( 1720 name = "GFDL-1.3-or-later", 1721 conditions = [], 1722 url = "https://spdx.org/licenses/GFDL-1.3-or-later.html", 1723) 1724 1725license_kind( 1726 name = "Giftware", 1727 conditions = [], 1728 url = "https://spdx.org/licenses/Giftware.html", 1729) 1730 1731license_kind( 1732 name = "GL2PS", 1733 conditions = [], 1734 url = "https://spdx.org/licenses/GL2PS.html", 1735) 1736 1737license_kind( 1738 name = "Glide", 1739 conditions = [], 1740 url = "https://spdx.org/licenses/Glide.html", 1741) 1742 1743license_kind( 1744 name = "Glulxe", 1745 conditions = [], 1746 url = "https://spdx.org/licenses/Glulxe.html", 1747) 1748 1749license_kind( 1750 name = "GLWTPL", 1751 conditions = [], 1752 url = "https://spdx.org/licenses/GLWTPL.html", 1753) 1754 1755license_kind( 1756 name = "gnuplot", 1757 conditions = [], 1758 url = "https://spdx.org/licenses/gnuplot.html", 1759) 1760 1761license_kind( 1762 name = "GPL-1.0", 1763 conditions = [], 1764 url = "https://spdx.org/licenses/GPL-1.0.html", 1765) 1766 1767license_kind( 1768 name = "GPL-1.0+", 1769 conditions = [], 1770 url = "https://spdx.org/licenses/GPL-1.0+.html", 1771) 1772 1773license_kind( 1774 name = "GPL-1.0-only", 1775 conditions = [], 1776 url = "https://spdx.org/licenses/GPL-1.0-only.html", 1777) 1778 1779license_kind( 1780 name = "GPL-1.0-or-later", 1781 conditions = [], 1782 url = "https://spdx.org/licenses/GPL-1.0-or-later.html", 1783) 1784 1785license_kind( 1786 name = "GPL-2.0", 1787 conditions = [], 1788 url = "https://spdx.org/licenses/GPL-2.0.html", 1789) 1790 1791license_kind( 1792 name = "GPL-2.0+", 1793 conditions = [], 1794 url = "https://spdx.org/licenses/GPL-2.0+.html", 1795) 1796 1797license_kind( 1798 name = "GPL-2.0-only", 1799 conditions = [], 1800 url = "https://spdx.org/licenses/GPL-2.0-only.html", 1801) 1802 1803license_kind( 1804 name = "GPL-2.0-or-later", 1805 conditions = [], 1806 url = "https://spdx.org/licenses/GPL-2.0-or-later.html", 1807) 1808 1809license_kind( 1810 name = "GPL-2.0-with-autoconf-exception", 1811 conditions = [], 1812 url = "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.html", 1813) 1814 1815license_kind( 1816 name = "GPL-2.0-with-bison-exception", 1817 conditions = [], 1818 url = "https://spdx.org/licenses/GPL-2.0-with-bison-exception.html", 1819) 1820 1821license_kind( 1822 name = "GPL-2.0-with-classpath-exception", 1823 conditions = [], 1824 url = "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.html", 1825) 1826 1827license_kind( 1828 name = "GPL-2.0-with-font-exception", 1829 conditions = [], 1830 url = "https://spdx.org/licenses/GPL-2.0-with-font-exception.html", 1831) 1832 1833license_kind( 1834 name = "GPL-2.0-with-GCC-exception", 1835 conditions = [], 1836 url = "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html", 1837) 1838 1839license_kind( 1840 name = "GPL-3.0", 1841 conditions = [], 1842 url = "https://spdx.org/licenses/GPL-3.0.html", 1843) 1844 1845license_kind( 1846 name = "GPL-3.0+", 1847 conditions = [], 1848 url = "https://spdx.org/licenses/GPL-3.0+.html", 1849) 1850 1851license_kind( 1852 name = "GPL-3.0-only", 1853 conditions = [], 1854 url = "https://spdx.org/licenses/GPL-3.0-only.html", 1855) 1856 1857license_kind( 1858 name = "GPL-3.0-or-later", 1859 conditions = [], 1860 url = "https://spdx.org/licenses/GPL-3.0-or-later.html", 1861) 1862 1863license_kind( 1864 name = "GPL-3.0-with-autoconf-exception", 1865 conditions = [], 1866 url = "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.html", 1867) 1868 1869license_kind( 1870 name = "GPL-3.0-with-GCC-exception", 1871 conditions = [], 1872 url = "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.html", 1873) 1874 1875license_kind( 1876 name = "Graphics-Gems", 1877 conditions = [], 1878 url = "https://spdx.org/licenses/Graphics-Gems.html", 1879) 1880 1881license_kind( 1882 name = "gSOAP-1.3b", 1883 conditions = [], 1884 url = "https://spdx.org/licenses/gSOAP-1.3b.html", 1885) 1886 1887license_kind( 1888 name = "gtkbook", 1889 conditions = [], 1890 url = "https://spdx.org/licenses/gtkbook.html", 1891) 1892 1893license_kind( 1894 name = "Gutmann", 1895 conditions = [], 1896 url = "https://spdx.org/licenses/Gutmann.html", 1897) 1898 1899license_kind( 1900 name = "HaskellReport", 1901 conditions = [], 1902 url = "https://spdx.org/licenses/HaskellReport.html", 1903) 1904 1905license_kind( 1906 name = "hdparm", 1907 conditions = [], 1908 url = "https://spdx.org/licenses/hdparm.html", 1909) 1910 1911license_kind( 1912 name = "HIDAPI", 1913 conditions = [], 1914 url = "https://spdx.org/licenses/HIDAPI.html", 1915) 1916 1917license_kind( 1918 name = "Hippocratic-2.1", 1919 conditions = [], 1920 url = "https://spdx.org/licenses/Hippocratic-2.1.html", 1921) 1922 1923license_kind( 1924 name = "HP-1986", 1925 conditions = [], 1926 url = "https://spdx.org/licenses/HP-1986.html", 1927) 1928 1929license_kind( 1930 name = "HP-1989", 1931 conditions = [], 1932 url = "https://spdx.org/licenses/HP-1989.html", 1933) 1934 1935license_kind( 1936 name = "HPND", 1937 conditions = [], 1938 url = "https://spdx.org/licenses/HPND.html", 1939) 1940 1941license_kind( 1942 name = "HPND-DEC", 1943 conditions = [], 1944 url = "https://spdx.org/licenses/HPND-DEC.html", 1945) 1946 1947license_kind( 1948 name = "HPND-doc", 1949 conditions = [], 1950 url = "https://spdx.org/licenses/HPND-doc.html", 1951) 1952 1953license_kind( 1954 name = "HPND-doc-sell", 1955 conditions = [], 1956 url = "https://spdx.org/licenses/HPND-doc-sell.html", 1957) 1958 1959license_kind( 1960 name = "HPND-export-US", 1961 conditions = [], 1962 url = "https://spdx.org/licenses/HPND-export-US.html", 1963) 1964 1965license_kind( 1966 name = "HPND-export-US-acknowledgement", 1967 conditions = [], 1968 url = "https://spdx.org/licenses/HPND-export-US-acknowledgement.html", 1969) 1970 1971license_kind( 1972 name = "HPND-export-US-modify", 1973 conditions = [], 1974 url = "https://spdx.org/licenses/HPND-export-US-modify.html", 1975) 1976 1977license_kind( 1978 name = "HPND-export2-US", 1979 conditions = [], 1980 url = "https://spdx.org/licenses/HPND-export2-US.html", 1981) 1982 1983license_kind( 1984 name = "HPND-Fenneberg-Livingston", 1985 conditions = [], 1986 url = "https://spdx.org/licenses/HPND-Fenneberg-Livingston.html", 1987) 1988 1989license_kind( 1990 name = "HPND-INRIA-IMAG", 1991 conditions = [], 1992 url = "https://spdx.org/licenses/HPND-INRIA-IMAG.html", 1993) 1994 1995license_kind( 1996 name = "HPND-Intel", 1997 conditions = [], 1998 url = "https://spdx.org/licenses/HPND-Intel.html", 1999) 2000 2001license_kind( 2002 name = "HPND-Kevlin-Henney", 2003 conditions = [], 2004 url = "https://spdx.org/licenses/HPND-Kevlin-Henney.html", 2005) 2006 2007license_kind( 2008 name = "HPND-Markus-Kuhn", 2009 conditions = [], 2010 url = "https://spdx.org/licenses/HPND-Markus-Kuhn.html", 2011) 2012 2013license_kind( 2014 name = "HPND-merchantability-variant", 2015 conditions = [], 2016 url = "https://spdx.org/licenses/HPND-merchantability-variant.html", 2017) 2018 2019license_kind( 2020 name = "HPND-MIT-disclaimer", 2021 conditions = [], 2022 url = "https://spdx.org/licenses/HPND-MIT-disclaimer.html", 2023) 2024 2025license_kind( 2026 name = "HPND-Netrek", 2027 conditions = [], 2028 url = "https://spdx.org/licenses/HPND-Netrek.html", 2029) 2030 2031license_kind( 2032 name = "HPND-Pbmplus", 2033 conditions = [], 2034 url = "https://spdx.org/licenses/HPND-Pbmplus.html", 2035) 2036 2037license_kind( 2038 name = "HPND-sell-MIT-disclaimer-xserver", 2039 conditions = [], 2040 url = "https://spdx.org/licenses/HPND-sell-MIT-disclaimer-xserver.html", 2041) 2042 2043license_kind( 2044 name = "HPND-sell-regexpr", 2045 conditions = [], 2046 url = "https://spdx.org/licenses/HPND-sell-regexpr.html", 2047) 2048 2049license_kind( 2050 name = "HPND-sell-variant", 2051 conditions = [], 2052 url = "https://spdx.org/licenses/HPND-sell-variant.html", 2053) 2054 2055license_kind( 2056 name = "HPND-sell-variant-MIT-disclaimer", 2057 conditions = [], 2058 url = "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer.html", 2059) 2060 2061license_kind( 2062 name = "HPND-sell-variant-MIT-disclaimer-rev", 2063 conditions = [], 2064 url = "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer-rev.html", 2065) 2066 2067license_kind( 2068 name = "HPND-UC", 2069 conditions = [], 2070 url = "https://spdx.org/licenses/HPND-UC.html", 2071) 2072 2073license_kind( 2074 name = "HPND-UC-export-US", 2075 conditions = [], 2076 url = "https://spdx.org/licenses/HPND-UC-export-US.html", 2077) 2078 2079license_kind( 2080 name = "HTMLTIDY", 2081 conditions = [], 2082 url = "https://spdx.org/licenses/HTMLTIDY.html", 2083) 2084 2085license_kind( 2086 name = "IBM-pibs", 2087 conditions = [], 2088 url = "https://spdx.org/licenses/IBM-pibs.html", 2089) 2090 2091license_kind( 2092 name = "ICU", 2093 conditions = [], 2094 url = "https://spdx.org/licenses/ICU.html", 2095) 2096 2097license_kind( 2098 name = "IEC-Code-Components-EULA", 2099 conditions = [], 2100 url = "https://spdx.org/licenses/IEC-Code-Components-EULA.html", 2101) 2102 2103license_kind( 2104 name = "IJG", 2105 conditions = [], 2106 url = "https://spdx.org/licenses/IJG.html", 2107) 2108 2109license_kind( 2110 name = "IJG-short", 2111 conditions = [], 2112 url = "https://spdx.org/licenses/IJG-short.html", 2113) 2114 2115license_kind( 2116 name = "ImageMagick", 2117 conditions = [], 2118 url = "https://spdx.org/licenses/ImageMagick.html", 2119) 2120 2121license_kind( 2122 name = "iMatix", 2123 conditions = [], 2124 url = "https://spdx.org/licenses/iMatix.html", 2125) 2126 2127license_kind( 2128 name = "Imlib2", 2129 conditions = [], 2130 url = "https://spdx.org/licenses/Imlib2.html", 2131) 2132 2133license_kind( 2134 name = "Info-ZIP", 2135 conditions = [], 2136 url = "https://spdx.org/licenses/Info-ZIP.html", 2137) 2138 2139license_kind( 2140 name = "Inner-Net-2.0", 2141 conditions = [], 2142 url = "https://spdx.org/licenses/Inner-Net-2.0.html", 2143) 2144 2145license_kind( 2146 name = "Intel", 2147 conditions = [], 2148 url = "https://spdx.org/licenses/Intel.html", 2149) 2150 2151license_kind( 2152 name = "Intel-ACPI", 2153 conditions = [], 2154 url = "https://spdx.org/licenses/Intel-ACPI.html", 2155) 2156 2157license_kind( 2158 name = "Interbase-1.0", 2159 conditions = [], 2160 url = "https://spdx.org/licenses/Interbase-1.0.html", 2161) 2162 2163license_kind( 2164 name = "IPA", 2165 conditions = [], 2166 url = "https://spdx.org/licenses/IPA.html", 2167) 2168 2169license_kind( 2170 name = "IPL-1.0", 2171 conditions = [], 2172 url = "https://spdx.org/licenses/IPL-1.0.html", 2173) 2174 2175license_kind( 2176 name = "ISC", 2177 conditions = [], 2178 url = "https://spdx.org/licenses/ISC.html", 2179) 2180 2181license_kind( 2182 name = "ISC-Veillard", 2183 conditions = [], 2184 url = "https://spdx.org/licenses/ISC-Veillard.html", 2185) 2186 2187license_kind( 2188 name = "Jam", 2189 conditions = [], 2190 url = "https://spdx.org/licenses/Jam.html", 2191) 2192 2193license_kind( 2194 name = "JasPer-2.0", 2195 conditions = [], 2196 url = "https://spdx.org/licenses/JasPer-2.0.html", 2197) 2198 2199license_kind( 2200 name = "JPL-image", 2201 conditions = [], 2202 url = "https://spdx.org/licenses/JPL-image.html", 2203) 2204 2205license_kind( 2206 name = "JPNIC", 2207 conditions = [], 2208 url = "https://spdx.org/licenses/JPNIC.html", 2209) 2210 2211license_kind( 2212 name = "JSON", 2213 conditions = [], 2214 url = "https://spdx.org/licenses/JSON.html", 2215) 2216 2217license_kind( 2218 name = "Kastrup", 2219 conditions = [], 2220 url = "https://spdx.org/licenses/Kastrup.html", 2221) 2222 2223license_kind( 2224 name = "Kazlib", 2225 conditions = [], 2226 url = "https://spdx.org/licenses/Kazlib.html", 2227) 2228 2229license_kind( 2230 name = "KiCad-libraries-exception", 2231 conditions = [], 2232 url = "https://spdx.org/licenses/KiCad-libraries-exception.html", 2233) 2234 2235license_kind( 2236 name = "Knuth-CTAN", 2237 conditions = [], 2238 url = "https://spdx.org/licenses/Knuth-CTAN.html", 2239) 2240 2241license_kind( 2242 name = "LAL-1.2", 2243 conditions = [], 2244 url = "https://spdx.org/licenses/LAL-1.2.html", 2245) 2246 2247license_kind( 2248 name = "LAL-1.3", 2249 conditions = [], 2250 url = "https://spdx.org/licenses/LAL-1.3.html", 2251) 2252 2253license_kind( 2254 name = "Latex2e", 2255 conditions = [], 2256 url = "https://spdx.org/licenses/Latex2e.html", 2257) 2258 2259license_kind( 2260 name = "Latex2e-translated-notice", 2261 conditions = [], 2262 url = "https://spdx.org/licenses/Latex2e-translated-notice.html", 2263) 2264 2265license_kind( 2266 name = "Leptonica", 2267 conditions = [], 2268 url = "https://spdx.org/licenses/Leptonica.html", 2269) 2270 2271license_kind( 2272 name = "LGPL-2.0", 2273 conditions = [], 2274 url = "https://spdx.org/licenses/LGPL-2.0.html", 2275) 2276 2277license_kind( 2278 name = "LGPL-2.0+", 2279 conditions = [], 2280 url = "https://spdx.org/licenses/LGPL-2.0+.html", 2281) 2282 2283license_kind( 2284 name = "LGPL-2.0-only", 2285 conditions = [], 2286 url = "https://spdx.org/licenses/LGPL-2.0-only.html", 2287) 2288 2289license_kind( 2290 name = "LGPL-2.0-or-later", 2291 conditions = [], 2292 url = "https://spdx.org/licenses/LGPL-2.0-or-later.html", 2293) 2294 2295license_kind( 2296 name = "LGPL-2.1", 2297 conditions = [], 2298 url = "https://spdx.org/licenses/LGPL-2.1.html", 2299) 2300 2301license_kind( 2302 name = "LGPL-2.1+", 2303 conditions = [], 2304 url = "https://spdx.org/licenses/LGPL-2.1+.html", 2305) 2306 2307license_kind( 2308 name = "LGPL-2.1-only", 2309 conditions = [], 2310 url = "https://spdx.org/licenses/LGPL-2.1-only.html", 2311) 2312 2313license_kind( 2314 name = "LGPL-2.1-or-later", 2315 conditions = [], 2316 url = "https://spdx.org/licenses/LGPL-2.1-or-later.html", 2317) 2318 2319license_kind( 2320 name = "LGPL-3.0", 2321 conditions = [], 2322 url = "https://spdx.org/licenses/LGPL-3.0.html", 2323) 2324 2325license_kind( 2326 name = "LGPL-3.0+", 2327 conditions = [], 2328 url = "https://spdx.org/licenses/LGPL-3.0+.html", 2329) 2330 2331license_kind( 2332 name = "LGPL-3.0-only", 2333 conditions = [], 2334 url = "https://spdx.org/licenses/LGPL-3.0-only.html", 2335) 2336 2337license_kind( 2338 name = "LGPL-3.0-or-later", 2339 conditions = [], 2340 url = "https://spdx.org/licenses/LGPL-3.0-or-later.html", 2341) 2342 2343license_kind( 2344 name = "LGPLLR", 2345 conditions = [], 2346 url = "https://spdx.org/licenses/LGPLLR.html", 2347) 2348 2349license_kind( 2350 name = "Libpng", 2351 conditions = [], 2352 url = "https://spdx.org/licenses/Libpng.html", 2353) 2354 2355license_kind( 2356 name = "libpng-2.0", 2357 conditions = [], 2358 url = "https://spdx.org/licenses/libpng-2.0.html", 2359) 2360 2361license_kind( 2362 name = "libselinux-1.0", 2363 conditions = [], 2364 url = "https://spdx.org/licenses/libselinux-1.0.html", 2365) 2366 2367license_kind( 2368 name = "libtiff", 2369 conditions = [], 2370 url = "https://spdx.org/licenses/libtiff.html", 2371) 2372 2373license_kind( 2374 name = "libutil-David-Nugent", 2375 conditions = [], 2376 url = "https://spdx.org/licenses/libutil-David-Nugent.html", 2377) 2378 2379license_kind( 2380 name = "LiLiQ-P-1.1", 2381 conditions = [], 2382 url = "https://spdx.org/licenses/LiLiQ-P-1.1.html", 2383) 2384 2385license_kind( 2386 name = "LiLiQ-R-1.1", 2387 conditions = [], 2388 url = "https://spdx.org/licenses/LiLiQ-R-1.1.html", 2389) 2390 2391license_kind( 2392 name = "LiLiQ-Rplus-1.1", 2393 conditions = [], 2394 url = "https://spdx.org/licenses/LiLiQ-Rplus-1.1.html", 2395) 2396 2397license_kind( 2398 name = "Linux-man-pages-1-para", 2399 conditions = [], 2400 url = "https://spdx.org/licenses/Linux-man-pages-1-para.html", 2401) 2402 2403license_kind( 2404 name = "Linux-man-pages-copyleft", 2405 conditions = [], 2406 url = "https://spdx.org/licenses/Linux-man-pages-copyleft.html", 2407) 2408 2409license_kind( 2410 name = "Linux-man-pages-copyleft-2-para", 2411 conditions = [], 2412 url = "https://spdx.org/licenses/Linux-man-pages-copyleft-2-para.html", 2413) 2414 2415license_kind( 2416 name = "Linux-man-pages-copyleft-var", 2417 conditions = [], 2418 url = "https://spdx.org/licenses/Linux-man-pages-copyleft-var.html", 2419) 2420 2421license_kind( 2422 name = "Linux-OpenIB", 2423 conditions = [], 2424 url = "https://spdx.org/licenses/Linux-OpenIB.html", 2425) 2426 2427license_kind( 2428 name = "LOOP", 2429 conditions = [], 2430 url = "https://spdx.org/licenses/LOOP.html", 2431) 2432 2433license_kind( 2434 name = "LPD-document", 2435 conditions = [], 2436 url = "https://spdx.org/licenses/LPD-document.html", 2437) 2438 2439license_kind( 2440 name = "LPL-1.0", 2441 conditions = [], 2442 url = "https://spdx.org/licenses/LPL-1.0.html", 2443) 2444 2445license_kind( 2446 name = "LPL-1.02", 2447 conditions = [], 2448 url = "https://spdx.org/licenses/LPL-1.02.html", 2449) 2450 2451license_kind( 2452 name = "LPPL-1.0", 2453 conditions = [], 2454 url = "https://spdx.org/licenses/LPPL-1.0.html", 2455) 2456 2457license_kind( 2458 name = "LPPL-1.1", 2459 conditions = [], 2460 url = "https://spdx.org/licenses/LPPL-1.1.html", 2461) 2462 2463license_kind( 2464 name = "LPPL-1.2", 2465 conditions = [], 2466 url = "https://spdx.org/licenses/LPPL-1.2.html", 2467) 2468 2469license_kind( 2470 name = "LPPL-1.3a", 2471 conditions = [], 2472 url = "https://spdx.org/licenses/LPPL-1.3a.html", 2473) 2474 2475license_kind( 2476 name = "LPPL-1.3c", 2477 conditions = [], 2478 url = "https://spdx.org/licenses/LPPL-1.3c.html", 2479) 2480 2481license_kind( 2482 name = "lsof", 2483 conditions = [], 2484 url = "https://spdx.org/licenses/lsof.html", 2485) 2486 2487license_kind( 2488 name = "Lucida-Bitmap-Fonts", 2489 conditions = [], 2490 url = "https://spdx.org/licenses/Lucida-Bitmap-Fonts.html", 2491) 2492 2493license_kind( 2494 name = "LZMA-SDK-9.11-to-9.20", 2495 conditions = [], 2496 url = "https://spdx.org/licenses/LZMA-SDK-9.11-to-9.20.html", 2497) 2498 2499license_kind( 2500 name = "LZMA-SDK-9.22", 2501 conditions = [], 2502 url = "https://spdx.org/licenses/LZMA-SDK-9.22.html", 2503) 2504 2505license_kind( 2506 name = "Mackerras-3-Clause", 2507 conditions = [], 2508 url = "https://spdx.org/licenses/Mackerras-3-Clause.html", 2509) 2510 2511license_kind( 2512 name = "Mackerras-3-Clause-acknowledgment", 2513 conditions = [], 2514 url = "https://spdx.org/licenses/Mackerras-3-Clause-acknowledgment.html", 2515) 2516 2517license_kind( 2518 name = "magaz", 2519 conditions = [], 2520 url = "https://spdx.org/licenses/magaz.html", 2521) 2522 2523license_kind( 2524 name = "mailprio", 2525 conditions = [], 2526 url = "https://spdx.org/licenses/mailprio.html", 2527) 2528 2529license_kind( 2530 name = "MakeIndex", 2531 conditions = [], 2532 url = "https://spdx.org/licenses/MakeIndex.html", 2533) 2534 2535license_kind( 2536 name = "Martin-Birgmeier", 2537 conditions = [], 2538 url = "https://spdx.org/licenses/Martin-Birgmeier.html", 2539) 2540 2541license_kind( 2542 name = "McPhee-slideshow", 2543 conditions = [], 2544 url = "https://spdx.org/licenses/McPhee-slideshow.html", 2545) 2546 2547license_kind( 2548 name = "metamail", 2549 conditions = [], 2550 url = "https://spdx.org/licenses/metamail.html", 2551) 2552 2553license_kind( 2554 name = "Minpack", 2555 conditions = [], 2556 url = "https://spdx.org/licenses/Minpack.html", 2557) 2558 2559license_kind( 2560 name = "MirOS", 2561 conditions = [], 2562 url = "https://spdx.org/licenses/MirOS.html", 2563) 2564 2565license_kind( 2566 name = "MIT", 2567 conditions = [], 2568 url = "https://spdx.org/licenses/MIT.html", 2569) 2570 2571license_kind( 2572 name = "MIT-0", 2573 conditions = [], 2574 url = "https://spdx.org/licenses/MIT-0.html", 2575) 2576 2577license_kind( 2578 name = "MIT-advertising", 2579 conditions = [], 2580 url = "https://spdx.org/licenses/MIT-advertising.html", 2581) 2582 2583license_kind( 2584 name = "MIT-Click", 2585 conditions = [], 2586 url = "https://spdx.org/licenses/MIT-Click.html", 2587) 2588 2589license_kind( 2590 name = "MIT-CMU", 2591 conditions = [], 2592 url = "https://spdx.org/licenses/MIT-CMU.html", 2593) 2594 2595license_kind( 2596 name = "MIT-enna", 2597 conditions = [], 2598 url = "https://spdx.org/licenses/MIT-enna.html", 2599) 2600 2601license_kind( 2602 name = "MIT-feh", 2603 conditions = [], 2604 url = "https://spdx.org/licenses/MIT-feh.html", 2605) 2606 2607license_kind( 2608 name = "MIT-Festival", 2609 conditions = [], 2610 url = "https://spdx.org/licenses/MIT-Festival.html", 2611) 2612 2613license_kind( 2614 name = "MIT-Khronos-old", 2615 conditions = [], 2616 url = "https://spdx.org/licenses/MIT-Khronos-old.html", 2617) 2618 2619license_kind( 2620 name = "MIT-Modern-Variant", 2621 conditions = [], 2622 url = "https://spdx.org/licenses/MIT-Modern-Variant.html", 2623) 2624 2625license_kind( 2626 name = "MIT-open-group", 2627 conditions = [], 2628 url = "https://spdx.org/licenses/MIT-open-group.html", 2629) 2630 2631license_kind( 2632 name = "MIT-testregex", 2633 conditions = [], 2634 url = "https://spdx.org/licenses/MIT-testregex.html", 2635) 2636 2637license_kind( 2638 name = "MIT-Wu", 2639 conditions = [], 2640 url = "https://spdx.org/licenses/MIT-Wu.html", 2641) 2642 2643license_kind( 2644 name = "MITNFA", 2645 conditions = [], 2646 url = "https://spdx.org/licenses/MITNFA.html", 2647) 2648 2649license_kind( 2650 name = "MMIXware", 2651 conditions = [], 2652 url = "https://spdx.org/licenses/MMIXware.html", 2653) 2654 2655license_kind( 2656 name = "Motosoto", 2657 conditions = [], 2658 url = "https://spdx.org/licenses/Motosoto.html", 2659) 2660 2661license_kind( 2662 name = "MPEG-SSG", 2663 conditions = [], 2664 url = "https://spdx.org/licenses/MPEG-SSG.html", 2665) 2666 2667license_kind( 2668 name = "mpi-permissive", 2669 conditions = [], 2670 url = "https://spdx.org/licenses/mpi-permissive.html", 2671) 2672 2673license_kind( 2674 name = "mpich2", 2675 conditions = [], 2676 url = "https://spdx.org/licenses/mpich2.html", 2677) 2678 2679license_kind( 2680 name = "MPL-1.0", 2681 conditions = [], 2682 url = "https://spdx.org/licenses/MPL-1.0.html", 2683) 2684 2685license_kind( 2686 name = "MPL-1.1", 2687 conditions = [], 2688 url = "https://spdx.org/licenses/MPL-1.1.html", 2689) 2690 2691license_kind( 2692 name = "MPL-2.0", 2693 conditions = [], 2694 url = "https://spdx.org/licenses/MPL-2.0.html", 2695) 2696 2697license_kind( 2698 name = "MPL-2.0-no-copyleft-exception", 2699 conditions = [], 2700 url = "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html", 2701) 2702 2703license_kind( 2704 name = "mplus", 2705 conditions = [], 2706 url = "https://spdx.org/licenses/mplus.html", 2707) 2708 2709license_kind( 2710 name = "MS-LPL", 2711 conditions = [], 2712 url = "https://spdx.org/licenses/MS-LPL.html", 2713) 2714 2715license_kind( 2716 name = "MS-PL", 2717 conditions = [], 2718 url = "https://spdx.org/licenses/MS-PL.html", 2719) 2720 2721license_kind( 2722 name = "MS-RL", 2723 conditions = [], 2724 url = "https://spdx.org/licenses/MS-RL.html", 2725) 2726 2727license_kind( 2728 name = "MTLL", 2729 conditions = [], 2730 url = "https://spdx.org/licenses/MTLL.html", 2731) 2732 2733license_kind( 2734 name = "MulanPSL-1.0", 2735 conditions = [], 2736 url = "https://spdx.org/licenses/MulanPSL-1.0.html", 2737) 2738 2739license_kind( 2740 name = "MulanPSL-2.0", 2741 conditions = [], 2742 url = "https://spdx.org/licenses/MulanPSL-2.0.html", 2743) 2744 2745license_kind( 2746 name = "Multics", 2747 conditions = [], 2748 url = "https://spdx.org/licenses/Multics.html", 2749) 2750 2751license_kind( 2752 name = "Mup", 2753 conditions = [], 2754 url = "https://spdx.org/licenses/Mup.html", 2755) 2756 2757license_kind( 2758 name = "NAIST-2003", 2759 conditions = [], 2760 url = "https://spdx.org/licenses/NAIST-2003.html", 2761) 2762 2763license_kind( 2764 name = "NASA-1.3", 2765 conditions = [], 2766 url = "https://spdx.org/licenses/NASA-1.3.html", 2767) 2768 2769license_kind( 2770 name = "Naumen", 2771 conditions = [], 2772 url = "https://spdx.org/licenses/Naumen.html", 2773) 2774 2775license_kind( 2776 name = "NBPL-1.0", 2777 conditions = [], 2778 url = "https://spdx.org/licenses/NBPL-1.0.html", 2779) 2780 2781license_kind( 2782 name = "NCBI-PD", 2783 conditions = [], 2784 url = "https://spdx.org/licenses/NCBI-PD.html", 2785) 2786 2787license_kind( 2788 name = "NCGL-UK-2.0", 2789 conditions = [], 2790 url = "https://spdx.org/licenses/NCGL-UK-2.0.html", 2791) 2792 2793license_kind( 2794 name = "NCL", 2795 conditions = [], 2796 url = "https://spdx.org/licenses/NCL.html", 2797) 2798 2799license_kind( 2800 name = "NCSA", 2801 conditions = [], 2802 url = "https://spdx.org/licenses/NCSA.html", 2803) 2804 2805license_kind( 2806 name = "Net-SNMP", 2807 conditions = [], 2808 url = "https://spdx.org/licenses/Net-SNMP.html", 2809) 2810 2811license_kind( 2812 name = "NetCDF", 2813 conditions = [], 2814 url = "https://spdx.org/licenses/NetCDF.html", 2815) 2816 2817license_kind( 2818 name = "Newsletr", 2819 conditions = [], 2820 url = "https://spdx.org/licenses/Newsletr.html", 2821) 2822 2823license_kind( 2824 name = "NGPL", 2825 conditions = [], 2826 url = "https://spdx.org/licenses/NGPL.html", 2827) 2828 2829license_kind( 2830 name = "NICTA-1.0", 2831 conditions = [], 2832 url = "https://spdx.org/licenses/NICTA-1.0.html", 2833) 2834 2835license_kind( 2836 name = "NIST-PD", 2837 conditions = [], 2838 url = "https://spdx.org/licenses/NIST-PD.html", 2839) 2840 2841license_kind( 2842 name = "NIST-PD-fallback", 2843 conditions = [], 2844 url = "https://spdx.org/licenses/NIST-PD-fallback.html", 2845) 2846 2847license_kind( 2848 name = "NIST-Software", 2849 conditions = [], 2850 url = "https://spdx.org/licenses/NIST-Software.html", 2851) 2852 2853license_kind( 2854 name = "NLOD-1.0", 2855 conditions = [], 2856 url = "https://spdx.org/licenses/NLOD-1.0.html", 2857) 2858 2859license_kind( 2860 name = "NLOD-2.0", 2861 conditions = [], 2862 url = "https://spdx.org/licenses/NLOD-2.0.html", 2863) 2864 2865license_kind( 2866 name = "NLPL", 2867 conditions = [], 2868 url = "https://spdx.org/licenses/NLPL.html", 2869) 2870 2871license_kind( 2872 name = "Nokia", 2873 conditions = [], 2874 url = "https://spdx.org/licenses/Nokia.html", 2875) 2876 2877license_kind( 2878 name = "NOSL", 2879 conditions = [], 2880 url = "https://spdx.org/licenses/NOSL.html", 2881) 2882 2883license_kind( 2884 name = "Noweb", 2885 conditions = [], 2886 url = "https://spdx.org/licenses/Noweb.html", 2887) 2888 2889license_kind( 2890 name = "NPL-1.0", 2891 conditions = [], 2892 url = "https://spdx.org/licenses/NPL-1.0.html", 2893) 2894 2895license_kind( 2896 name = "NPL-1.1", 2897 conditions = [], 2898 url = "https://spdx.org/licenses/NPL-1.1.html", 2899) 2900 2901license_kind( 2902 name = "NPOSL-3.0", 2903 conditions = [], 2904 url = "https://spdx.org/licenses/NPOSL-3.0.html", 2905) 2906 2907license_kind( 2908 name = "NRL", 2909 conditions = [], 2910 url = "https://spdx.org/licenses/NRL.html", 2911) 2912 2913license_kind( 2914 name = "NTP", 2915 conditions = [], 2916 url = "https://spdx.org/licenses/NTP.html", 2917) 2918 2919license_kind( 2920 name = "NTP-0", 2921 conditions = [], 2922 url = "https://spdx.org/licenses/NTP-0.html", 2923) 2924 2925license_kind( 2926 name = "Nunit", 2927 conditions = [], 2928 url = "https://spdx.org/licenses/Nunit.html", 2929) 2930 2931license_kind( 2932 name = "O-UDA-1.0", 2933 conditions = [], 2934 url = "https://spdx.org/licenses/O-UDA-1.0.html", 2935) 2936 2937license_kind( 2938 name = "OAR", 2939 conditions = [], 2940 url = "https://spdx.org/licenses/OAR.html", 2941) 2942 2943license_kind( 2944 name = "OCCT-PL", 2945 conditions = [], 2946 url = "https://spdx.org/licenses/OCCT-PL.html", 2947) 2948 2949license_kind( 2950 name = "OCLC-2.0", 2951 conditions = [], 2952 url = "https://spdx.org/licenses/OCLC-2.0.html", 2953) 2954 2955license_kind( 2956 name = "ODbL-1.0", 2957 conditions = [], 2958 url = "https://spdx.org/licenses/ODbL-1.0.html", 2959) 2960 2961license_kind( 2962 name = "ODC-By-1.0", 2963 conditions = [], 2964 url = "https://spdx.org/licenses/ODC-By-1.0.html", 2965) 2966 2967license_kind( 2968 name = "OFFIS", 2969 conditions = [], 2970 url = "https://spdx.org/licenses/OFFIS.html", 2971) 2972 2973license_kind( 2974 name = "OFL-1.0", 2975 conditions = [], 2976 url = "https://spdx.org/licenses/OFL-1.0.html", 2977) 2978 2979license_kind( 2980 name = "OFL-1.0-no-RFN", 2981 conditions = [], 2982 url = "https://spdx.org/licenses/OFL-1.0-no-RFN.html", 2983) 2984 2985license_kind( 2986 name = "OFL-1.0-RFN", 2987 conditions = [], 2988 url = "https://spdx.org/licenses/OFL-1.0-RFN.html", 2989) 2990 2991license_kind( 2992 name = "OFL-1.1", 2993 conditions = [], 2994 url = "https://spdx.org/licenses/OFL-1.1.html", 2995) 2996 2997license_kind( 2998 name = "OFL-1.1-no-RFN", 2999 conditions = [], 3000 url = "https://spdx.org/licenses/OFL-1.1-no-RFN.html", 3001) 3002 3003license_kind( 3004 name = "OFL-1.1-RFN", 3005 conditions = [], 3006 url = "https://spdx.org/licenses/OFL-1.1-RFN.html", 3007) 3008 3009license_kind( 3010 name = "OGC-1.0", 3011 conditions = [], 3012 url = "https://spdx.org/licenses/OGC-1.0.html", 3013) 3014 3015license_kind( 3016 name = "OGDL-Taiwan-1.0", 3017 conditions = [], 3018 url = "https://spdx.org/licenses/OGDL-Taiwan-1.0.html", 3019) 3020 3021license_kind( 3022 name = "OGL-Canada-2.0", 3023 conditions = [], 3024 url = "https://spdx.org/licenses/OGL-Canada-2.0.html", 3025) 3026 3027license_kind( 3028 name = "OGL-UK-1.0", 3029 conditions = [], 3030 url = "https://spdx.org/licenses/OGL-UK-1.0.html", 3031) 3032 3033license_kind( 3034 name = "OGL-UK-2.0", 3035 conditions = [], 3036 url = "https://spdx.org/licenses/OGL-UK-2.0.html", 3037) 3038 3039license_kind( 3040 name = "OGL-UK-3.0", 3041 conditions = [], 3042 url = "https://spdx.org/licenses/OGL-UK-3.0.html", 3043) 3044 3045license_kind( 3046 name = "OGTSL", 3047 conditions = [], 3048 url = "https://spdx.org/licenses/OGTSL.html", 3049) 3050 3051license_kind( 3052 name = "OLDAP-1.1", 3053 conditions = [], 3054 url = "https://spdx.org/licenses/OLDAP-1.1.html", 3055) 3056 3057license_kind( 3058 name = "OLDAP-1.2", 3059 conditions = [], 3060 url = "https://spdx.org/licenses/OLDAP-1.2.html", 3061) 3062 3063license_kind( 3064 name = "OLDAP-1.3", 3065 conditions = [], 3066 url = "https://spdx.org/licenses/OLDAP-1.3.html", 3067) 3068 3069license_kind( 3070 name = "OLDAP-1.4", 3071 conditions = [], 3072 url = "https://spdx.org/licenses/OLDAP-1.4.html", 3073) 3074 3075license_kind( 3076 name = "OLDAP-2.0", 3077 conditions = [], 3078 url = "https://spdx.org/licenses/OLDAP-2.0.html", 3079) 3080 3081license_kind( 3082 name = "OLDAP-2.0.1", 3083 conditions = [], 3084 url = "https://spdx.org/licenses/OLDAP-2.0.1.html", 3085) 3086 3087license_kind( 3088 name = "OLDAP-2.1", 3089 conditions = [], 3090 url = "https://spdx.org/licenses/OLDAP-2.1.html", 3091) 3092 3093license_kind( 3094 name = "OLDAP-2.2", 3095 conditions = [], 3096 url = "https://spdx.org/licenses/OLDAP-2.2.html", 3097) 3098 3099license_kind( 3100 name = "OLDAP-2.2.1", 3101 conditions = [], 3102 url = "https://spdx.org/licenses/OLDAP-2.2.1.html", 3103) 3104 3105license_kind( 3106 name = "OLDAP-2.2.2", 3107 conditions = [], 3108 url = "https://spdx.org/licenses/OLDAP-2.2.2.html", 3109) 3110 3111license_kind( 3112 name = "OLDAP-2.3", 3113 conditions = [], 3114 url = "https://spdx.org/licenses/OLDAP-2.3.html", 3115) 3116 3117license_kind( 3118 name = "OLDAP-2.4", 3119 conditions = [], 3120 url = "https://spdx.org/licenses/OLDAP-2.4.html", 3121) 3122 3123license_kind( 3124 name = "OLDAP-2.5", 3125 conditions = [], 3126 url = "https://spdx.org/licenses/OLDAP-2.5.html", 3127) 3128 3129license_kind( 3130 name = "OLDAP-2.6", 3131 conditions = [], 3132 url = "https://spdx.org/licenses/OLDAP-2.6.html", 3133) 3134 3135license_kind( 3136 name = "OLDAP-2.7", 3137 conditions = [], 3138 url = "https://spdx.org/licenses/OLDAP-2.7.html", 3139) 3140 3141license_kind( 3142 name = "OLDAP-2.8", 3143 conditions = [], 3144 url = "https://spdx.org/licenses/OLDAP-2.8.html", 3145) 3146 3147license_kind( 3148 name = "OLFL-1.3", 3149 conditions = [], 3150 url = "https://spdx.org/licenses/OLFL-1.3.html", 3151) 3152 3153license_kind( 3154 name = "OML", 3155 conditions = [], 3156 url = "https://spdx.org/licenses/OML.html", 3157) 3158 3159license_kind( 3160 name = "OpenPBS-2.3", 3161 conditions = [], 3162 url = "https://spdx.org/licenses/OpenPBS-2.3.html", 3163) 3164 3165license_kind( 3166 name = "OpenSSL", 3167 conditions = [], 3168 url = "https://spdx.org/licenses/OpenSSL.html", 3169) 3170 3171license_kind( 3172 name = "OpenSSL-standalone", 3173 conditions = [], 3174 url = "https://spdx.org/licenses/OpenSSL-standalone.html", 3175) 3176 3177license_kind( 3178 name = "OpenVision", 3179 conditions = [], 3180 url = "https://spdx.org/licenses/OpenVision.html", 3181) 3182 3183license_kind( 3184 name = "OPL-1.0", 3185 conditions = [], 3186 url = "https://spdx.org/licenses/OPL-1.0.html", 3187) 3188 3189license_kind( 3190 name = "OPL-UK-3.0", 3191 conditions = [], 3192 url = "https://spdx.org/licenses/OPL-UK-3.0.html", 3193) 3194 3195license_kind( 3196 name = "OPUBL-1.0", 3197 conditions = [], 3198 url = "https://spdx.org/licenses/OPUBL-1.0.html", 3199) 3200 3201license_kind( 3202 name = "OSET-PL-2.1", 3203 conditions = [], 3204 url = "https://spdx.org/licenses/OSET-PL-2.1.html", 3205) 3206 3207license_kind( 3208 name = "OSL-1.0", 3209 conditions = [], 3210 url = "https://spdx.org/licenses/OSL-1.0.html", 3211) 3212 3213license_kind( 3214 name = "OSL-1.1", 3215 conditions = [], 3216 url = "https://spdx.org/licenses/OSL-1.1.html", 3217) 3218 3219license_kind( 3220 name = "OSL-2.0", 3221 conditions = [], 3222 url = "https://spdx.org/licenses/OSL-2.0.html", 3223) 3224 3225license_kind( 3226 name = "OSL-2.1", 3227 conditions = [], 3228 url = "https://spdx.org/licenses/OSL-2.1.html", 3229) 3230 3231license_kind( 3232 name = "OSL-3.0", 3233 conditions = [], 3234 url = "https://spdx.org/licenses/OSL-3.0.html", 3235) 3236 3237license_kind( 3238 name = "PADL", 3239 conditions = [], 3240 url = "https://spdx.org/licenses/PADL.html", 3241) 3242 3243license_kind( 3244 name = "Parity-6.0.0", 3245 conditions = [], 3246 url = "https://spdx.org/licenses/Parity-6.0.0.html", 3247) 3248 3249license_kind( 3250 name = "Parity-7.0.0", 3251 conditions = [], 3252 url = "https://spdx.org/licenses/Parity-7.0.0.html", 3253) 3254 3255license_kind( 3256 name = "PDDL-1.0", 3257 conditions = [], 3258 url = "https://spdx.org/licenses/PDDL-1.0.html", 3259) 3260 3261license_kind( 3262 name = "PHP-3.0", 3263 conditions = [], 3264 url = "https://spdx.org/licenses/PHP-3.0.html", 3265) 3266 3267license_kind( 3268 name = "PHP-3.01", 3269 conditions = [], 3270 url = "https://spdx.org/licenses/PHP-3.01.html", 3271) 3272 3273license_kind( 3274 name = "Pixar", 3275 conditions = [], 3276 url = "https://spdx.org/licenses/Pixar.html", 3277) 3278 3279license_kind( 3280 name = "pkgconf", 3281 conditions = [], 3282 url = "https://spdx.org/licenses/pkgconf.html", 3283) 3284 3285license_kind( 3286 name = "Plexus", 3287 conditions = [], 3288 url = "https://spdx.org/licenses/Plexus.html", 3289) 3290 3291license_kind( 3292 name = "pnmstitch", 3293 conditions = [], 3294 url = "https://spdx.org/licenses/pnmstitch.html", 3295) 3296 3297license_kind( 3298 name = "PolyForm-Noncommercial-1.0.0", 3299 conditions = [], 3300 url = "https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.html", 3301) 3302 3303license_kind( 3304 name = "PolyForm-Small-Business-1.0.0", 3305 conditions = [], 3306 url = "https://spdx.org/licenses/PolyForm-Small-Business-1.0.0.html", 3307) 3308 3309license_kind( 3310 name = "PostgreSQL", 3311 conditions = [], 3312 url = "https://spdx.org/licenses/PostgreSQL.html", 3313) 3314 3315license_kind( 3316 name = "PPL", 3317 conditions = [], 3318 url = "https://spdx.org/licenses/PPL.html", 3319) 3320 3321license_kind( 3322 name = "PSF-2.0", 3323 conditions = [], 3324 url = "https://spdx.org/licenses/PSF-2.0.html", 3325) 3326 3327license_kind( 3328 name = "psfrag", 3329 conditions = [], 3330 url = "https://spdx.org/licenses/psfrag.html", 3331) 3332 3333license_kind( 3334 name = "psutils", 3335 conditions = [], 3336 url = "https://spdx.org/licenses/psutils.html", 3337) 3338 3339license_kind( 3340 name = "Python-2.0", 3341 conditions = [], 3342 url = "https://spdx.org/licenses/Python-2.0.html", 3343) 3344 3345license_kind( 3346 name = "Python-2.0.1", 3347 conditions = [], 3348 url = "https://spdx.org/licenses/Python-2.0.1.html", 3349) 3350 3351license_kind( 3352 name = "python-ldap", 3353 conditions = [], 3354 url = "https://spdx.org/licenses/python-ldap.html", 3355) 3356 3357license_kind( 3358 name = "Qhull", 3359 conditions = [], 3360 url = "https://spdx.org/licenses/Qhull.html", 3361) 3362 3363license_kind( 3364 name = "QPL-1.0", 3365 conditions = [], 3366 url = "https://spdx.org/licenses/QPL-1.0.html", 3367) 3368 3369license_kind( 3370 name = "QPL-1.0-INRIA-2004", 3371 conditions = [], 3372 url = "https://spdx.org/licenses/QPL-1.0-INRIA-2004.html", 3373) 3374 3375license_kind( 3376 name = "radvd", 3377 conditions = [], 3378 url = "https://spdx.org/licenses/radvd.html", 3379) 3380 3381license_kind( 3382 name = "Rdisc", 3383 conditions = [], 3384 url = "https://spdx.org/licenses/Rdisc.html", 3385) 3386 3387license_kind( 3388 name = "RHeCos-1.1", 3389 conditions = [], 3390 url = "https://spdx.org/licenses/RHeCos-1.1.html", 3391) 3392 3393license_kind( 3394 name = "RPL-1.1", 3395 conditions = [], 3396 url = "https://spdx.org/licenses/RPL-1.1.html", 3397) 3398 3399license_kind( 3400 name = "RPL-1.5", 3401 conditions = [], 3402 url = "https://spdx.org/licenses/RPL-1.5.html", 3403) 3404 3405license_kind( 3406 name = "RPSL-1.0", 3407 conditions = [], 3408 url = "https://spdx.org/licenses/RPSL-1.0.html", 3409) 3410 3411license_kind( 3412 name = "RSA-MD", 3413 conditions = [], 3414 url = "https://spdx.org/licenses/RSA-MD.html", 3415) 3416 3417license_kind( 3418 name = "RSCPL", 3419 conditions = [], 3420 url = "https://spdx.org/licenses/RSCPL.html", 3421) 3422 3423license_kind( 3424 name = "Ruby", 3425 conditions = [], 3426 url = "https://spdx.org/licenses/Ruby.html", 3427) 3428 3429license_kind( 3430 name = "Ruby-pty", 3431 conditions = [], 3432 url = "https://spdx.org/licenses/Ruby-pty.html", 3433) 3434 3435license_kind( 3436 name = "SAX-PD", 3437 conditions = [], 3438 url = "https://spdx.org/licenses/SAX-PD.html", 3439) 3440 3441license_kind( 3442 name = "SAX-PD-2.0", 3443 conditions = [], 3444 url = "https://spdx.org/licenses/SAX-PD-2.0.html", 3445) 3446 3447license_kind( 3448 name = "Saxpath", 3449 conditions = [], 3450 url = "https://spdx.org/licenses/Saxpath.html", 3451) 3452 3453license_kind( 3454 name = "SCEA", 3455 conditions = [], 3456 url = "https://spdx.org/licenses/SCEA.html", 3457) 3458 3459license_kind( 3460 name = "SchemeReport", 3461 conditions = [], 3462 url = "https://spdx.org/licenses/SchemeReport.html", 3463) 3464 3465license_kind( 3466 name = "Sendmail", 3467 conditions = [], 3468 url = "https://spdx.org/licenses/Sendmail.html", 3469) 3470 3471license_kind( 3472 name = "Sendmail-8.23", 3473 conditions = [], 3474 url = "https://spdx.org/licenses/Sendmail-8.23.html", 3475) 3476 3477license_kind( 3478 name = "SGI-B-1.0", 3479 conditions = [], 3480 url = "https://spdx.org/licenses/SGI-B-1.0.html", 3481) 3482 3483license_kind( 3484 name = "SGI-B-1.1", 3485 conditions = [], 3486 url = "https://spdx.org/licenses/SGI-B-1.1.html", 3487) 3488 3489license_kind( 3490 name = "SGI-B-2.0", 3491 conditions = [], 3492 url = "https://spdx.org/licenses/SGI-B-2.0.html", 3493) 3494 3495license_kind( 3496 name = "SGI-OpenGL", 3497 conditions = [], 3498 url = "https://spdx.org/licenses/SGI-OpenGL.html", 3499) 3500 3501license_kind( 3502 name = "SGP4", 3503 conditions = [], 3504 url = "https://spdx.org/licenses/SGP4.html", 3505) 3506 3507license_kind( 3508 name = "SHL-0.5", 3509 conditions = [], 3510 url = "https://spdx.org/licenses/SHL-0.5.html", 3511) 3512 3513license_kind( 3514 name = "SHL-0.51", 3515 conditions = [], 3516 url = "https://spdx.org/licenses/SHL-0.51.html", 3517) 3518 3519license_kind( 3520 name = "SimPL-2.0", 3521 conditions = [], 3522 url = "https://spdx.org/licenses/SimPL-2.0.html", 3523) 3524 3525license_kind( 3526 name = "SISSL", 3527 conditions = [], 3528 url = "https://spdx.org/licenses/SISSL.html", 3529) 3530 3531license_kind( 3532 name = "SISSL-1.2", 3533 conditions = [], 3534 url = "https://spdx.org/licenses/SISSL-1.2.html", 3535) 3536 3537license_kind( 3538 name = "SL", 3539 conditions = [], 3540 url = "https://spdx.org/licenses/SL.html", 3541) 3542 3543license_kind( 3544 name = "Sleepycat", 3545 conditions = [], 3546 url = "https://spdx.org/licenses/Sleepycat.html", 3547) 3548 3549license_kind( 3550 name = "SMLNJ", 3551 conditions = [], 3552 url = "https://spdx.org/licenses/SMLNJ.html", 3553) 3554 3555license_kind( 3556 name = "SMPPL", 3557 conditions = [], 3558 url = "https://spdx.org/licenses/SMPPL.html", 3559) 3560 3561license_kind( 3562 name = "SNIA", 3563 conditions = [], 3564 url = "https://spdx.org/licenses/SNIA.html", 3565) 3566 3567license_kind( 3568 name = "snprintf", 3569 conditions = [], 3570 url = "https://spdx.org/licenses/snprintf.html", 3571) 3572 3573license_kind( 3574 name = "softSurfer", 3575 conditions = [], 3576 url = "https://spdx.org/licenses/softSurfer.html", 3577) 3578 3579license_kind( 3580 name = "Soundex", 3581 conditions = [], 3582 url = "https://spdx.org/licenses/Soundex.html", 3583) 3584 3585license_kind( 3586 name = "Spencer-86", 3587 conditions = [], 3588 url = "https://spdx.org/licenses/Spencer-86.html", 3589) 3590 3591license_kind( 3592 name = "Spencer-94", 3593 conditions = [], 3594 url = "https://spdx.org/licenses/Spencer-94.html", 3595) 3596 3597license_kind( 3598 name = "Spencer-99", 3599 conditions = [], 3600 url = "https://spdx.org/licenses/Spencer-99.html", 3601) 3602 3603license_kind( 3604 name = "SPL-1.0", 3605 conditions = [], 3606 url = "https://spdx.org/licenses/SPL-1.0.html", 3607) 3608 3609license_kind( 3610 name = "ssh-keyscan", 3611 conditions = [], 3612 url = "https://spdx.org/licenses/ssh-keyscan.html", 3613) 3614 3615license_kind( 3616 name = "SSH-OpenSSH", 3617 conditions = [], 3618 url = "https://spdx.org/licenses/SSH-OpenSSH.html", 3619) 3620 3621license_kind( 3622 name = "SSH-short", 3623 conditions = [], 3624 url = "https://spdx.org/licenses/SSH-short.html", 3625) 3626 3627license_kind( 3628 name = "SSLeay-standalone", 3629 conditions = [], 3630 url = "https://spdx.org/licenses/SSLeay-standalone.html", 3631) 3632 3633license_kind( 3634 name = "SSPL-1.0", 3635 conditions = [], 3636 url = "https://spdx.org/licenses/SSPL-1.0.html", 3637) 3638 3639license_kind( 3640 name = "StandardML-NJ", 3641 conditions = [], 3642 url = "https://spdx.org/licenses/StandardML-NJ.html", 3643) 3644 3645license_kind( 3646 name = "SugarCRM-1.1.3", 3647 conditions = [], 3648 url = "https://spdx.org/licenses/SugarCRM-1.1.3.html", 3649) 3650 3651license_kind( 3652 name = "Sun-PPP", 3653 conditions = [], 3654 url = "https://spdx.org/licenses/Sun-PPP.html", 3655) 3656 3657license_kind( 3658 name = "Sun-PPP-2000", 3659 conditions = [], 3660 url = "https://spdx.org/licenses/Sun-PPP-2000.html", 3661) 3662 3663license_kind( 3664 name = "SunPro", 3665 conditions = [], 3666 url = "https://spdx.org/licenses/SunPro.html", 3667) 3668 3669license_kind( 3670 name = "SWL", 3671 conditions = [], 3672 url = "https://spdx.org/licenses/SWL.html", 3673) 3674 3675license_kind( 3676 name = "swrule", 3677 conditions = [], 3678 url = "https://spdx.org/licenses/swrule.html", 3679) 3680 3681license_kind( 3682 name = "Symlinks", 3683 conditions = [], 3684 url = "https://spdx.org/licenses/Symlinks.html", 3685) 3686 3687license_kind( 3688 name = "TAPR-OHL-1.0", 3689 conditions = [], 3690 url = "https://spdx.org/licenses/TAPR-OHL-1.0.html", 3691) 3692 3693license_kind( 3694 name = "TCL", 3695 conditions = [], 3696 url = "https://spdx.org/licenses/TCL.html", 3697) 3698 3699license_kind( 3700 name = "TCP-wrappers", 3701 conditions = [], 3702 url = "https://spdx.org/licenses/TCP-wrappers.html", 3703) 3704 3705license_kind( 3706 name = "TermReadKey", 3707 conditions = [], 3708 url = "https://spdx.org/licenses/TermReadKey.html", 3709) 3710 3711license_kind( 3712 name = "TGPPL-1.0", 3713 conditions = [], 3714 url = "https://spdx.org/licenses/TGPPL-1.0.html", 3715) 3716 3717license_kind( 3718 name = "threeparttable", 3719 conditions = [], 3720 url = "https://spdx.org/licenses/threeparttable.html", 3721) 3722 3723license_kind( 3724 name = "TMate", 3725 conditions = [], 3726 url = "https://spdx.org/licenses/TMate.html", 3727) 3728 3729license_kind( 3730 name = "TORQUE-1.1", 3731 conditions = [], 3732 url = "https://spdx.org/licenses/TORQUE-1.1.html", 3733) 3734 3735license_kind( 3736 name = "TOSL", 3737 conditions = [], 3738 url = "https://spdx.org/licenses/TOSL.html", 3739) 3740 3741license_kind( 3742 name = "TPDL", 3743 conditions = [], 3744 url = "https://spdx.org/licenses/TPDL.html", 3745) 3746 3747license_kind( 3748 name = "TPL-1.0", 3749 conditions = [], 3750 url = "https://spdx.org/licenses/TPL-1.0.html", 3751) 3752 3753license_kind( 3754 name = "TrustedQSL", 3755 conditions = [], 3756 url = "https://spdx.org/licenses/TrustedQSL.html", 3757) 3758 3759license_kind( 3760 name = "TTWL", 3761 conditions = [], 3762 url = "https://spdx.org/licenses/TTWL.html", 3763) 3764 3765license_kind( 3766 name = "TTYP0", 3767 conditions = [], 3768 url = "https://spdx.org/licenses/TTYP0.html", 3769) 3770 3771license_kind( 3772 name = "TU-Berlin-1.0", 3773 conditions = [], 3774 url = "https://spdx.org/licenses/TU-Berlin-1.0.html", 3775) 3776 3777license_kind( 3778 name = "TU-Berlin-2.0", 3779 conditions = [], 3780 url = "https://spdx.org/licenses/TU-Berlin-2.0.html", 3781) 3782 3783license_kind( 3784 name = "Ubuntu-font-1.0", 3785 conditions = [], 3786 url = "https://spdx.org/licenses/Ubuntu-font-1.0.html", 3787) 3788 3789license_kind( 3790 name = "UCAR", 3791 conditions = [], 3792 url = "https://spdx.org/licenses/UCAR.html", 3793) 3794 3795license_kind( 3796 name = "UCL-1.0", 3797 conditions = [], 3798 url = "https://spdx.org/licenses/UCL-1.0.html", 3799) 3800 3801license_kind( 3802 name = "ulem", 3803 conditions = [], 3804 url = "https://spdx.org/licenses/ulem.html", 3805) 3806 3807license_kind( 3808 name = "UMich-Merit", 3809 conditions = [], 3810 url = "https://spdx.org/licenses/UMich-Merit.html", 3811) 3812 3813license_kind( 3814 name = "Unicode-3.0", 3815 conditions = [], 3816 url = "https://spdx.org/licenses/Unicode-3.0.html", 3817) 3818 3819license_kind( 3820 name = "Unicode-DFS-2015", 3821 conditions = [], 3822 url = "https://spdx.org/licenses/Unicode-DFS-2015.html", 3823) 3824 3825license_kind( 3826 name = "Unicode-DFS-2016", 3827 conditions = [], 3828 url = "https://spdx.org/licenses/Unicode-DFS-2016.html", 3829) 3830 3831license_kind( 3832 name = "Unicode-TOU", 3833 conditions = [], 3834 url = "https://spdx.org/licenses/Unicode-TOU.html", 3835) 3836 3837license_kind( 3838 name = "UnixCrypt", 3839 conditions = [], 3840 url = "https://spdx.org/licenses/UnixCrypt.html", 3841) 3842 3843license_kind( 3844 name = "Unlicense", 3845 conditions = [], 3846 url = "https://spdx.org/licenses/Unlicense.html", 3847) 3848 3849license_kind( 3850 name = "UPL-1.0", 3851 conditions = [], 3852 url = "https://spdx.org/licenses/UPL-1.0.html", 3853) 3854 3855license_kind( 3856 name = "URT-RLE", 3857 conditions = [], 3858 url = "https://spdx.org/licenses/URT-RLE.html", 3859) 3860 3861license_kind( 3862 name = "Vim", 3863 conditions = [], 3864 url = "https://spdx.org/licenses/Vim.html", 3865) 3866 3867license_kind( 3868 name = "VOSTROM", 3869 conditions = [], 3870 url = "https://spdx.org/licenses/VOSTROM.html", 3871) 3872 3873license_kind( 3874 name = "VSL-1.0", 3875 conditions = [], 3876 url = "https://spdx.org/licenses/VSL-1.0.html", 3877) 3878 3879license_kind( 3880 name = "W3C", 3881 conditions = [], 3882 url = "https://spdx.org/licenses/W3C.html", 3883) 3884 3885license_kind( 3886 name = "W3C-19980720", 3887 conditions = [], 3888 url = "https://spdx.org/licenses/W3C-19980720.html", 3889) 3890 3891license_kind( 3892 name = "W3C-20150513", 3893 conditions = [], 3894 url = "https://spdx.org/licenses/W3C-20150513.html", 3895) 3896 3897license_kind( 3898 name = "w3m", 3899 conditions = [], 3900 url = "https://spdx.org/licenses/w3m.html", 3901) 3902 3903license_kind( 3904 name = "Watcom-1.0", 3905 conditions = [], 3906 url = "https://spdx.org/licenses/Watcom-1.0.html", 3907) 3908 3909license_kind( 3910 name = "Widget-Workshop", 3911 conditions = [], 3912 url = "https://spdx.org/licenses/Widget-Workshop.html", 3913) 3914 3915license_kind( 3916 name = "Wsuipa", 3917 conditions = [], 3918 url = "https://spdx.org/licenses/Wsuipa.html", 3919) 3920 3921license_kind( 3922 name = "WTFPL", 3923 conditions = [], 3924 url = "https://spdx.org/licenses/WTFPL.html", 3925) 3926 3927license_kind( 3928 name = "wxWindows", 3929 conditions = [], 3930 url = "https://spdx.org/licenses/wxWindows.html", 3931) 3932 3933license_kind( 3934 name = "X11", 3935 conditions = [], 3936 url = "https://spdx.org/licenses/X11.html", 3937) 3938 3939license_kind( 3940 name = "X11-distribute-modifications-variant", 3941 conditions = [], 3942 url = "https://spdx.org/licenses/X11-distribute-modifications-variant.html", 3943) 3944 3945license_kind( 3946 name = "X11-swapped", 3947 conditions = [], 3948 url = "https://spdx.org/licenses/X11-swapped.html", 3949) 3950 3951license_kind( 3952 name = "Xdebug-1.03", 3953 conditions = [], 3954 url = "https://spdx.org/licenses/Xdebug-1.03.html", 3955) 3956 3957license_kind( 3958 name = "Xerox", 3959 conditions = [], 3960 url = "https://spdx.org/licenses/Xerox.html", 3961) 3962 3963license_kind( 3964 name = "Xfig", 3965 conditions = [], 3966 url = "https://spdx.org/licenses/Xfig.html", 3967) 3968 3969license_kind( 3970 name = "XFree86-1.1", 3971 conditions = [], 3972 url = "https://spdx.org/licenses/XFree86-1.1.html", 3973) 3974 3975license_kind( 3976 name = "xinetd", 3977 conditions = [], 3978 url = "https://spdx.org/licenses/xinetd.html", 3979) 3980 3981license_kind( 3982 name = "xkeyboard-config-Zinoviev", 3983 conditions = [], 3984 url = "https://spdx.org/licenses/xkeyboard-config-Zinoviev.html", 3985) 3986 3987license_kind( 3988 name = "xlock", 3989 conditions = [], 3990 url = "https://spdx.org/licenses/xlock.html", 3991) 3992 3993license_kind( 3994 name = "Xnet", 3995 conditions = [], 3996 url = "https://spdx.org/licenses/Xnet.html", 3997) 3998 3999license_kind( 4000 name = "xpp", 4001 conditions = [], 4002 url = "https://spdx.org/licenses/xpp.html", 4003) 4004 4005license_kind( 4006 name = "XSkat", 4007 conditions = [], 4008 url = "https://spdx.org/licenses/XSkat.html", 4009) 4010 4011license_kind( 4012 name = "xzoom", 4013 conditions = [], 4014 url = "https://spdx.org/licenses/xzoom.html", 4015) 4016 4017license_kind( 4018 name = "YPL-1.0", 4019 conditions = [], 4020 url = "https://spdx.org/licenses/YPL-1.0.html", 4021) 4022 4023license_kind( 4024 name = "YPL-1.1", 4025 conditions = [], 4026 url = "https://spdx.org/licenses/YPL-1.1.html", 4027) 4028 4029license_kind( 4030 name = "Zed", 4031 conditions = [], 4032 url = "https://spdx.org/licenses/Zed.html", 4033) 4034 4035license_kind( 4036 name = "Zeeff", 4037 conditions = [], 4038 url = "https://spdx.org/licenses/Zeeff.html", 4039) 4040 4041license_kind( 4042 name = "Zend-2.0", 4043 conditions = [], 4044 url = "https://spdx.org/licenses/Zend-2.0.html", 4045) 4046 4047license_kind( 4048 name = "Zimbra-1.3", 4049 conditions = [], 4050 url = "https://spdx.org/licenses/Zimbra-1.3.html", 4051) 4052 4053license_kind( 4054 name = "Zimbra-1.4", 4055 conditions = [], 4056 url = "https://spdx.org/licenses/Zimbra-1.4.html", 4057) 4058 4059license_kind( 4060 name = "Zlib", 4061 conditions = [], 4062 url = "https://spdx.org/licenses/Zlib.html", 4063) 4064 4065license_kind( 4066 name = "zlib-acknowledgement", 4067 conditions = [], 4068 url = "https://spdx.org/licenses/zlib-acknowledgement.html", 4069) 4070 4071license_kind( 4072 name = "ZPL-1.1", 4073 conditions = [], 4074 url = "https://spdx.org/licenses/ZPL-1.1.html", 4075) 4076 4077license_kind( 4078 name = "ZPL-2.0", 4079 conditions = [], 4080 url = "https://spdx.org/licenses/ZPL-2.0.html", 4081) 4082 4083license_kind( 4084 name = "ZPL-2.1", 4085 conditions = [], 4086 url = "https://spdx.org/licenses/ZPL-2.1.html", 4087) 4088