-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnon_ibm_license
1901 lines (1552 loc) · 105 KB
/
non_ibm_license
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
TERMS AND CONDITIONS FOR SEPARATELY LICENSED CODE
IBM Cloud Pak for Business Automation 22.0.2
The IBM license agreement and any applicable information on the web
download page for IBM products refers Licensee to this file for details
concerning terms and conditions applicable to code identified as
Separately Licensed Code below and included in the products listed
above ("the Program").
The Separately Licensed Code is provided to Licensee under terms
and conditions that are different from the IBM license agreement.
Licensee's use of such components or portions thereof is subject to the
terms of the associated license agreement provided or referenced in this
section and not the terms of the IBM license agreement.
Please note: This NON_IBM_LICENSE file may identify Separately Licensed
Code and its related agreements that are not used by, or that were not
shipped with, the Program as Licensee installed it.
The following are Separately Licensed Code:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
NON-IBM-LICENSE INFORMATION FOR EXCLUDED COMPONENTS
IBM Cloud Pak for Business Automation 22.0.2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TABLE OF CONTENTS
THIS NON-IBM-LICENSE FILE CONSISTS OF THE FOLLOWING SECTIONS:
AGPL V3
CC-BY-1.0
CC-BY-2.0
CC-BY-2.5
CC-BY-3.0
CC-BY-4.0
CC-BY-SA-1.0
CC-BY-SA-2.0
CC-BY-SA-2.5
CC-BY-SA-3.0
CC-BY-SA-4.0
GPL V2
GPL V3
REDHAT UNIVERSAL BASE IMAGE v 7.6 and 8.3, 8.4 ootpa and 8.6
SIL OPEN FONT LICENSE 1.1
UBUNTU FONT LICENSE
UNIQUE
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
GNU AFFERO GENERAL PUBLIC LICENSE, VERSION 3
The Program includes some or all of the following licensed to you as
Separately Licensed Code under the GNU Affero General Public License.
For copies of the source code for this software, send an email to
<email address> identifying the IBM product and the AGPL-licensed
program for which you are requesting the source code.
@PM2/AGENT, PM2, ITEXT, HTML2PDF
END OF GNU AFFERO GENERAL PUBLIC LICENSE,VERSION 3 NON-IBM-LICENSE INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
CREATIVE COMMONS ATTRIBUTION 1.0 GENERIC
The Program includes some or all of the following works licensed under
the Creative Commons.
The url to the license is https://creativecommons.org/licenses/by/1.0/legalcode
PAPER-100K.PDF [MongoDB] (https://github.com/mongodb/mongo/tree/r4.2.12)
ENCYCLOPEDIA OF GRAPHICS FILE FORMATS [pillow]
(https://files.pythonhosted.org/packages/2b/06/93bf1626ef36815010e971a5ce90f49919d84ab5d2fa310329f843a74bc1/Pillow-8.0.1.tar.gz)
END OF CREATIVE COMMONS ATTRIBUTION 1.0 GENERIC NON-IBM-LICENSE INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
CREATIVE COMMONS ATTRIBUTION 2.0 GENERIC
The Program includes some or all of the following works licensed under
the Creative Commons.
The url to the license is https://creativecommons.org/licenses/by/2.0/legalcode
CHINA.JPG [scikit-learn]
(https://files.pythonhosted.org/packages/f4/7b/d415b0c89babf23dcd8ee631015f043e2d76795edd9c7359d6e63257464b/scikit-learn-0.24.1.tar.gz),
ICON-THEMES [LibreOffice]
(https://alpine.pkgs.org/3.11/alpine-community-x86/libreoffice-math-6.3.2.2-r3.apk.html)
SEAM.JPG [wand] (http://www.pinksherbet.com/), ICON-THEMES [LibreOffice]
(https://alpine.pkgs.org/3.11/alpine-community-x86/libreoffice-math-6.3.2.2-r3.apk.html),
COMPOSITE-CHANNEL.JPG [wand] (http://saturatedhigh.tumblr.com/)
VENDOR/GITHUB.COM/MOBY/TERM/README.MD - DOCS [kubernetes] (GITHUB.COM/MOBY)
(Not Found), VENDOR/GITHUB.COM/MOBY/IPVS/README.MD - DOCS [kubernetes]
(GITHUB.COM/MOBY), ICON-THEMES [LibreOffice] (No copyright
found)
(https://downloadarchive.documentfoundation.org/libreoffice/old/7.0.6.2/)
END OF CREATIVE COMMONS ATTRIBUTION 2.0 GENERIC NON-IBM-LICENSE INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
CREATIVE COMMONS ATTRIBUTION 2.5 GENERIC
The Program includes some or all of the following works licensed under
the Creative Commons.
The url to the license is https://creativecommons.org/licenses/by/2.5/legalcode
FAMFAMFAM-SILK-ICONS [groovy-all-minimal]
(http://www.famfamfam.com/lab/icons/silk/), CONCURRENT [JSR305]
(https://search.maven.org/remotecontent?filepath=com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2-sources.jar),
ANNOTATIONS [Mongo-java-driver]
(https://repo1.maven.org/maven2/org/mongodb/mongo-java-driver/3.12.1/),
LC_DECREMENTLEVEL.PNG [LibreOffice]
(https://alpine.pkgs.org/3.11/alpine-community-x86/libreoffice-math-6.3.2.2-r3.apk.html)
LC_FIRSTPAGE LC_ZOOMTOOLBOX.PNG [LibreOffice]
(https://downloadarchive.documentfoundation.org/libreoffice/old/5.2.7.1/),
LC_FIRSTPAGE LC_ZOOMTOOLBOX.PNG [LibreOffice] (Copyright 2005 by Lapo
Calamandrei, Jakub Steiner) (v), LC_DECREMENTLEVEL.PNG [LibreOffice]
(Copyright 2004-2006 by Canonical Ltd)
(https://downloadarchive.documentfoundation.org/libreoffice/old/7.0.6.2/)
JCIP [findbugs-annotations] (No Copyright)
THREADSAFE.JAVA [findbugs-annotations] (No Copyright)
GUARDEDBY.JAVA [findbugs-annotations] (No Copyright)
IMMUTABLE.JAVA [findbugs-annotations] (No Copyright)
NOTTHREADSAFE.JAVA [findbugs-annotations] (No Copyright)
(https://search.maven.org/remotecontent?filepath=com/google/code/findbugs/findbugs-annotations/3.0.1/findbugs-annotations-3.0.1-sources.jar),
IMMUTABLE (Copyright (c) 2005 Brian Goetz and Tim Peierls)
(http://www.jcip.net)
END OF CREATIVE COMMONS ATTRIBUTION 2.5 GENERIC NON-IBM-LICENSE INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
CREATIVE COMMONS ATTRIBUTION 3.0
The Program includes some or all of the following works licensed under
the Creative Commons.
The url to the license is https://creativecommons.org/licenses/by/3.0/legalcode
GEONAMES.SMD [dojox], BASEPROVIDER [faker],
SPDX-EXCEPTIONS [npm]
(http://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz),
SPDX STANDARD [spdx-expression-parse]
(https://github.com/spdx/spdx-spec), CONTENT [ITK]
(https://github.com/InsightSoftwareConsortium/ITK/releases/download/v5.1.1/InsightToolkit-5.1.1.tar.gz),
JQ DOCS [libjq1], FIREWORKS.JPEG [MongoDB]
(https://github.com/mongodb/mongo/tree/r4.2.12), STAMEN DESIGN [GDaL]
(http://creativecommons.org/licenses/by/3.0), NLTK DOCUMENTATION [nltk]
, EFF WORDSETS [passlib]
(https://pypi.io/packages/source/p/passlib/passlib-1.7.4.tar.gz), ATOB
DOCUMENTATION [oracledb]
(http://registry.npmjs.org/oracledb/-/oracledb-4.2.0.tgz),
HTTP://WIKI.OPENOFFICE.ORG/WIKI/TEMPLATE:MATH_COMMANDS_REFERENCE
[LibreOffice]
(https://alpine.pkgs.org/3.11/alpine-community-x86/libreoffice-math-6.3.2.2-r3.apk.html),
DUTCH DICTIONARY [LibreOffice]
(https://alpine.pkgs.org/3.11/alpine-community-x86/libreoffice-math-6.3.2.2-r3.apk.html),
JQ.1 [libjq1], FONT AWESOME PICTOGRAMS [twython]
(https://pypi.io/packages/source/t/twython/twython-3.8.2.tar.gz),
TORNADO-DOCUMENTATION [Tornado]
(https://files.pythonhosted.org/packages/cf/44/cc9590db23758ee7906d40cacff06c02a21c2a6166602e095a56cbf2f6f6/tornado-6.1.tar.gz)
VIDEOIO [opencv-python-headless]
(https://github.com/opencv/opencv-python/archive/44.zip)
SILK ICON [Werkzeug]
(https://pypi.io/packages/source/W/Werkzeug/Werkzeug-2.0.1.tar.gz),
INSIGHT [SimpleITK]
(https://github.com/SimpleITK/SimpleITK/archive/v2.0.0.zip), STAMEN
DESIGN [GDaL] (http://creativecommons.org/licenses/by/3.0), NLTK
DOCUMENTATION [nltk]
(https://files.pythonhosted.org/packages/fe/a5/b7931f2c2c3204c304e0a3a6396d7adeb15335b8d2ab46e5ca48666c9186/nltk-3.6.2.zip),
GD2000IT-DOWNLOAD [proj-datumgrid] (Creative Commons Attribution 3.0 New
Zealand](https://creativecommons.org/licenses/by/3.0/nz/)),
HTTP://WIKI.OPENOFFICE.ORG/WIKI/TEMPLATE:MATH_COMMANDS_REFERENCE
[LibreOffice]
(https://alpine.pkgs.org/3.11/alpine-community-x86/libreoffice-math-6.3.2.2-r3.apk.html),
SEMVER [pbr]
(https://files.pythonhosted.org/packages/39/e9/937d7777eca2670c6d04279c243359c4a97652e728e1d19021890193ea58/pbr-0.11.0.tar.gz),
DUTCH DICTIONARY [LibreOffice]
(https://alpine.pkgs.org/3.11/alpine-community-x86/libreoffice-math-6.3.2.2-r3.apk.html),
INSIGHT.STY [SimpleITK]
(https://github.com/SimpleITK/SimpleITK/archive/v2.0.0.zip), ICELANDIC
DICTIONARY [LibreOffice]
(https://downloadarchive.documentfoundation.org/libreoffice/old/5.2.7.1/),
CONTENT [SimpleITK]
(https://github.com/SimpleITK/SimpleITK/archive/v2.0.0.zip),
IVY MASCOT (By Renee French) (https://reneefrench.blogspot.com/'), DUTCH
DICTIONARY [LibreOffice] (© 2006-2010 OpenTaal, © 2001-2005 Simon
Brouwer e.a., © 1996 Nederlandstalige T)
(https://downloadarchive.documentfoundation.org/libreoffice/old/7.0.6.2/),
FAVICON.ICO (No Copyright Statement found)
(http://static.php.net/www.php.net/styles/site.css), DIR.TMPL (No
Copyright Statement found)
(https://developers.google.com/site-policies#restrictions), ICELANDIC
DICTIONARY [LibreOffice] (No copyright found)
(https://downloadarchive.documentfoundation.org/libreoffice/old/7.0.6.2/),
DOCS [jq] (copyright (C) 2012 Stephen Dolan)
(http://stedolan.github.io/jq/), ATOB - DOCS [Atob] (Copyright 2012-2018
AJ ONeal) (http://registry.npmjs.org/atob/-/atob-2.1.2.tgz),
SPDX-EXCEPTIONS (Copyright 2010-2015 Linux Foundation and its Contributors)
(http://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz),
SPDX STANDARD [spdx-expression-parse] (Copyright (c) The Linux
Foundation and its contributors)
(http://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz),
DOCS [github.com/opencontainers/runc] (Copyright 2012-2015 Docker, Inc.)
(https://proxy.golang.org/github.com/opencontainers/runc/@v/v0.1.1.zip),
ATOB (DOCS) [Atob] (Copyright 2012-2018 AJ ONeal)
(https://registry.npmjs.org/atob/-/atob-2.1.1.tgz)
END OF CREATIVE COMMONS ATTRIBUTION 3.0 NON-IBM-LICENSE INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
CREATIVE COMMONS ATTRIBUTION 4.0
The Program includes some or all of the following works licensed under
the Creative Commons.
The url to the license is https://creativecommons.org/licenses/by/4.0/legalcode
COMPATIBLE-IDIOMS [Future], FA-BRANDS.MIN.CSS [Django]
(https://pypi.io/packages/source/D/Django/Django-3.1.2.tar.gz), FONT
AWESOME ICONS [Django] (https://fontawesome.com/), LIBUV DOCS [uvloop]
(https://github.com/libuv), DOC [gevent], FONT AWESOME SVGS
[matplotlib], WRITING PYTHON 2-3 COMPATIBLE CODE.IPYNB
[Future], GONVML [kubernetes]
(/Source-0/vendor/github.com/mindprince/gonvml/nvml.h), SWAGGER
[z-schema] (No download location), THE SPEECH COMMANDS DATASET.
[tensorflow]
(https://github.com/tensorflow/tensorflow/archive/v2.4.0.zip)
THE SPEECH COMMANDS DATASET. [tensorflow]
(https://github.com/tensorflow/tensorflow/archive/v2.0.0.zip)
MSPIMAGEPLUGIN.PY [pillow]
(https://files.pythonhosted.org/packages/73/59/3192bb3bc554ccbd678bdb32993928cb566dccf32f65dac65ac7e89eb311/Pillow-8.1.0.tar.gz),
SWAGGER [z-schema]
(http://registry.npmjs.org/z-schema/-/z-schema-4.2.3.tgz)
LIBUV DOCS [NodeJS] (nodejs.org) (https://github.com/libuv/libuv),
CASCADINGSCHEMES.YAML [go-openapi/loads] (No Copyright Information
found)
(https://proxy.golang.org/github.com/go-openapi/loads/@v/v0.19.4.zip),
DATA.GO [go-openapi/runtime] (github.com/go-openapi/runtime)
(https://github.com/go-openapi/runtime/tree/v0.19.4), SWAGGER PETSTORE
[go-openapi/spec] (No Copyright found)
(https://github.com/go-openapi/spec/archive/v0.19.7.zip),
EXPANDER_TEST.GO [go-openapi/spec] (No Copyright found)
(https://github.com/go-openapi/spec/tree/v0.19.4), DEMO PETSTORE/SWAGGER
[go-openapi/loads] (github.com/go-openapi/loads)
(https://github.com/go-openapi/loads/tree/v0.19.5), KUYBERNETES-LOGO
[kubernetes] (No Copyright) (github.com/k8s.io/api)
CANIUSE-LITE (Copyright (c) Ben Briggs <beneb.info@gmail.com>)
(http://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001255.tgz),
SWAGGER [z-schema] (Copyright (c) wordnik api team)
(http://registry.npmjs.org/z-schema/-/z-schema-4.2.3.tgz),
LIBCONTAINER-DOCUMENTATION [opencontainers/runc] (Copyright 2014 Docker, inc)
(https://proxy.golang.org/github.com/opencontainers/runc/@v/v0.0.0-20190115041553-12f6a991201f.zip),
SWAGGER (Copyright (c) wordnik api team) (http://developer.wordnik.com),
MOCHAJS DOCS [mocha] (No Copyright Statement found)
(https://github.com/mochajs/mocha/archive/refs/tags/v3.5.3.zip)
END OF CREATIVE COMMONS ATTRIBUTION 4.0 NON-IBM-LICENSE INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
CREATIVE COMMONS ATTRIBUTION SHARE ALIKE 1.0 GENERIC
The Program includes some or all of the following works licensed under
the Creative Commons.
The url to the license is https://creativecommons.org/licenses/by-sa/1.0/legalcode
LASS MSPDECODER-IMAGEFILE.PYDECODER [pillow]
(https://pypi.io/packages/source/P/Pillow/Pillow-8.1.0.tar.gz), EGFF.HTM
[pillow] (https://pypi.io/packages/source/P/Pillow/Pillow-8.2.0.tar.gz)
END OF CREATIVE COMMONS ATTRIBUTION SHARE ALIKE 1.0 GENERIC NON-IBM-LICENSE INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
CREATIVE COMMONS ATTRIBUTION SHARE ALIKE 2.0 GENERIC
The Program includes some or all of the following works licensed under
the Creative Commons.
The url to the license is https://creativecommons.org/licenses/by-sa/2.0/legalcode
CONTRIBUTOR-MODEL [eslint] (no copyright)
(https://github.com/eslint/eslint)
END OF CREATIVE COMMONS ATTRIBUTION SHARE ALIKE 2.0 GENERIC NON-IBM-LICENSE INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
CREATIVE COMMONS ATTRIBUTION SHARE ALIKE 2.5 GENERIC
The Program includes some or all of the following works licensed under
the Creative Commons.
The url to the license is https://creativecommons.org/licenses/by-sa/2.5/legalcode
RNN COLORBOT [tensorflow]
(https://github.com/tensorflow/tensorflow/tree/v1.14.0)
BUG-EYED FISH AND VJ FUGU [libtheora-devel] (http://www.theora.org),
SINICA TREEBANK CORPUS SAMPLE (CC-BY-NC-SA-2.5) [nltk]
(https://files.pythonhosted.org/packages/fe/a5/b7931f2c2c3204c304e0a3a6396d7adeb15335b8d2ab46e5ca48666c9186/nltk-3.6.2.zip)
TEMPLATE-CSSDATA [postcss-reduce-initial] (Copyright (c) Mozilla and
individual contributors)
(http://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz)
END OF CREATIVE COMMONS ATTRIBUTION SHARE ALIKE 2.5 GENERIC NON-IBM-LICENSE INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
CREATIVE COMMONS ATTRIBUTION SHARE ALIKE 3.0 GENERIC
The Program includes some or all of the following works licensed under
the Creative Commons.
The url to the license is https://creativecommons.org/licenses/by-sa/3.0/legalcode
RAWSPEED_XMLDATA.CPP [LibRaw]
(https://github.com/LibRaw/LibRaw/tree/0.19.5), USER-DISABLED.PNG
[matrix-auth]
(https://github.com/jenkinsci/matrix-auth-plugin/releases), THE PHOTO OF
TROLLIS FLOWER [trollius]
(https://pypi.io/packages/source/t/trollius/trollius-2.2.post1.tar.gz),
HTML-PY-EVER [setuptools-rust]
(https://pypi.io/packages/source/s/setuptools-rust/setuptools-rust-0.11.6.tar.gz),
NPM-DISPUTES [npm] (http://registry.npmjs.org/npm/-/npm-6.14.8.tgz),
HOPCROFT--KARP ALGORITHM [networkx]
(https://en.wikipedia.org/wiki/Hopcroft%E2%80%93Karp_algorithm), MNIST
DATASET [tensorflow]
(https://github.com/tensorflow/tensorflow/archive/v2.4.0.zip),
BLUEPRINT_PLANS [LibreOffice]
(https://alpine.pkgs.org/3.11/alpine-community-x86/libreoffice-math-6.3.2.2-r3.apk.html),
NPM-DOCS [npm] (https://registry.npmjs.org/npm/-/npm-7.6.0.tgz), TANGO
[LibreOffice]
(https://alpine.pkgs.org/3.11/alpine-community-x86/libreoffice-math-6.3.2.2-r3.apk.html),
JSONSELECT SITE [Jsonselect]
(http://registry.npmjs.org/JSONSelect/-/JSONSelect-0.4.0.tgz),
CODE_OF_CONDUCT [ansible]
(https://github.com/ansible/ansible/releases/tag/v2.9.11)
MNIST DATASET [tensorflow]
(https://github.com/tensorflow/tensorflow/archive/v2.0.0.zip),
HOWTO.DIVINETOMARK [chardet] (http://howto.diveintomark.org)
NEP-0012-MISSING-DATA.RST [NumPy] (No download location), VINTAGE
[LibreOffice] , DOXYGEN-FOOTER.HTML [libbluray]
(http://vault.centos.org/8.3.2011/AppStream/Source/SPackages/libbluray-1.0.2-3.el8.src.rpm),
BLUEPRINT_PLANS [LibreOffice]
(https://alpine.pkgs.org/3.11/alpine-community-x86/libreoffice-math-6.3.2.2-r3.apk.html),
TANGO [LibreOffice]
(https://alpine.pkgs.org/3.11/alpine-community-x86/libreoffice-math-6.3.2.2-r3.apk.html),
TANGO ICONS [LibreOffice] , LENSFUN DATABASE [lensfun]
(https://download-ib01.fedoraproject.org/pub/epel/7/SRPMS/Packages/l/lensfun-0.3.2-20.el7.src.rpm),
VINTAGE [LibreOffice] (No copyright found)
(https://downloadarchive.documentfoundation.org/libreoffice/old/7.0.6.2/),
BLUEPRINT_PLANS [LibreOffice] (No copyright found)
(https://downloadarchive.documentfoundation.org/libreoffice/old/7.0.6.2/),
NPM-DOCS [npm] (No Copyright)
(https://registry.npmjs.org/npm/-/npm-7.10.0.tgz), TANGO ICONS
[LibreOffice] (No copyright found)
(https://downloadarchive.documentfoundation.org/libreoffice/old/7.0.6.2/)
SPEED.SVG [performancecopilot/speed] (No Copyright found)
(https://proxy.golang.org/github.com/performancecopilot/speed/@v/v3.0.0+incompatible.zip),
WIKIMEDIA FOUNDATION'S CODE OF CONDUCT DRAFT
[github.com/lyft/protoc-gen-validate] (Copyright (c) Wikimedia Foundation)
(https://proxy.golang.org/github.com/lyft/protoc-gen-validate/@v/v0.0.13.zip),
REGULAR_EXPRESSIONS [posix-character-classes] (No copyright found)
(https://en.wikibooks.org/wiki/Regular_Expressions/POSIX_Basic_Regular_Expressions),
CODE OF CONDUCT [pem] (No copyright found)
(http://registry.npmjs.org/pem/-/pem-1.14.4.tgz),
END OF CREATIVE COMMONS ATTRIBUTION SHARE ALIKE 3.0 GENERIC NON-IBM-LICENSE INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
CREATIVE COMMONS ATTRIBUTION SHARE ALIKE 4.0 GENERIC
The Program includes some or all of the following works licensed under
the Creative Commons.
The url to the license is https://creativecommons.org/licenses/by-sa/4.0/legalcode
UNIVERSAL DEPENDENCIES ENGLISH WEB TREEBANK [Torchtext],
LC_OPEN.PNG, LC_SCRIPTORGANIZER.PNG [LibreOffice]
(https://alpine.pkgs.org/3.11/alpine-community-x86/libreoffice-math-6.3.2.2-r3.apk.html),
GLOB [npm] (http://registry.npmjs.org/npm/-/npm-6.14.8.tgz),
SC_OPEN.PNG, SC_SCRIPTORGANIZER.PNG [LibreOffice]
(https://alpine.pkgs.org/3.11/alpine-community-x86/libreoffice-math-6.3.2.2-r3.apk.html),
SCREENSHOTS [shortid] (No download location),
OPENCONTAINERS/GO-DIGEST.DOCS [kubernetes] (gihub.com/open-containers)
(github.com/opencontainers/go-digest/), GLOB(LOGO) [Glob] (no copyright)
(https://registry.npmjs.org/glob/-/glob-7.2.0.tgz), LC_OPEN.PNG,
LC_SCRIPTORGANIZER.PNG [LibreOffice] (No copyright found) (Not
Required), SIFR [LibreOffice] (libreoffice.org)
(https://downloadarchive.documentfoundation.org/libreoffice/old/7.0.6.2/),
SC_OPEN.PNG, SC_SCRIPTORGANIZER.PNG [LibreOffice] (No copyright found)
(https://downloadarchive.documentfoundation.org/libreoffice/old/7.0.6.2/)
KIMBIE.DARK.SCSS [highlight.js] (Copyright (c) Jan T. Sott)
(http://registry.npmjs.org/highlight.js/-/highlight.js-10.7.2.tgz),
POLICIES (No Copyright Found)
(http://registry.npmjs.org/policies/-/policies-1.0.0.tgz),
GLOB LOGO [Glob] (no copyright)
(http://registry.npmjs.org/glob/-/glob-7.1.5.tgz), GLOB [npm] (No
Copyright Statement found)
(http://registry.npmjs.org/npm/-/npm-6.14.13.tgz)
END OF CREATIVE COMMONS ATTRIBUTION SHARE ALIKE 4.0 GENERIC NON-IBM-LICENSE INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
GNU GENERAL PUBLIC LICENSE, VERSION 2
The Program includes some or all of the following licensed to you as
Separately Licensed Code under the GNU General Public License. For copies
of the source code for this software, send an email to <emailaddress>
identifying the IBM product and the GPL-licensed program for which you
are requesting the source code
ID.XML [iText], PYINSTALLER-HOOKS [pyinstaller-hooks-contrib], GNU
LIBTOOL [astropy], MINDTERM [JZlib], LZ4CLI.C - LZ4 COMMAND LINE
INTERFACE [LZ4], AR-LIB [libjq1], GNU BISON [astropy], MD5
MESSAGE-DIGEST ALGORITHM [geoipupdate], BOOT-9.SCM [pygments], FORMAT.ML
[pygments], LIBTOOL.M4 [Erlang/OTP], COMPILE [libjq1], TYPES.H
[geoipupdate], RWEB [pygments], ACLOCALM4 [Erlang/OTP], FUZZYWUZZY,
RSYNTH [atari-py], ANSIGENERATOR.CPP [pygments], FRAMETEST - TEST TOOL
FOR LZ4FRAME [LZ4], MD5.C - MD5 MESSAGE-DIGEST ALGORITHM [geoipupdate],
VALGRIND.H [Torch], CONFIG.GUESS [libjq1], BSPF [atari-py],
OPT.SYSLOG-NG.SBIN.SYSLOG-NG [syslog-ng], TEST.JAVA AND TEST.EH
[pygments], BUILD/CONFIG SCRIPTS [node-expat], DCRAW.C [LibRaw],
ATARI-PY, DICTIONARY [linguistico], PYTHON3-RPM-GENERATORS, SK.XML
[iText], TEST-DRIVER [libjq1], AX_CFLAGS_SUN_OPTION (AUTOCONF)
[syslog-ng], CALLGRIND.H [Torch], GNUPG [geoipupdate],
IMX6Q-DHCOM-SOM.DTS [pygments], ADD-CONTEXTUAL-DATA-TEMPLATE-SELECTOR.H
[syslog-ng], GEOIPUPDATE, BENGALI DICTIONARY BULGARIAN DICTIONARY,
HYPHENATION PATTERNS, THESAURUS, CATALAN DICTIONARY, [LibreOffice],
DEPCOMP [geoipupdate], INOTIFY-TOOLS, CS.XML [iText], ZH_LATN.XML
[iText], LIBONIG4, CONFIGURE, CONFIGURE.HELP, BDFTOPSF.PL [blessed],
LTMAIN.SH [pygments], EXAMPLE.COB [pygments], PHPMYADMIN [pygments],
XMLWF MAN PAGE (GFDL V1.1) [node-expat], EXAMPLE.LUA [pygments],
SCHOOLTOOL [lxml], MISSING [libjq1], R VERSION 2.9.2 [pygments],
IMAGE_CROP.SVG. NSSRENAM.H, TANGO, HWPFILTER, M4, BREEZE ICON THEME, GNU
ISO C++ LIBRARY, ISO C++ 14882, LIBATOMIC-OPS, LPSOLVE, POPPLER, MYSQL
CONNECTOR/C++, LINUX LIBERTINE G AND LINUX BIOLINUM G [LibreOffice],
M6052 [atari-py], PYINSTALLER, LIBJQ1, GERMAIN DICTIONARY FRENCH
DICTIONARY GALICIAN DICTIONARY GUJARATI DICTIONARY NORWEGIAN DICTIONARY
ROMANIAN DICTIONARY SERBIAN DICTIONARY SLOVAK DICTIONARY SLOVENIAN
DICTIONARY VIETNAMESE DICTIONARY ENGLISH (AUSTRALIA) DICTIONARY
[LibreOffice], CONFIG.SUB [libjq1], EVAL.RS [pygments], CONFIGURE
[Erlang/OTP], FFTW [ITK], LC_TOGGLEOBJECTROTATEMODE.PNG,
LC_ALIGNCENTER.PNG, LC_FREELINE_UNFILLED.PNG, [LibreOffice], ZSTANDARD
[MongoDB], HEBREW DICTIONARY HINDI DICTIONARY OCCITAN DICTIONARY TELUGU
DICTIONARY UKRAINIAN DICTIONARY ZULU DICTIONARY , ELEMENTARY THEME FOR
LIBREOFFICE, HUMANITY-ICON-THEME, LC_TOGGLEOBJECTROTATEMODE.PNG,
LC_ALIGNCENTER.PNG, LC_FREELINE_UNFILLED.PNG, [LibreOffice], LIBTOOL
[libjq1], JAVAX.JSON-API, ACLOCAL.M4 [Libtirpc], YLWRAP [libjq1],
ASBEAUTIFIER.CPP [pygments], PKG.M4 [xcb-util], ADA/ZLIB.ADS [Zlib],
CYCNUS.YTOOLS 1.0.3 [pygments], Ubuntu 18.04
PYINSTALLER, VALGRIND.H [Torch], PYINSTALLER_HOOKS
[pyinstaller-hooks-contrib], RAWDEFLATE.JS [Adm-zip], NEON, AC;OCAL.M4
(LIBTOOL) [redland], CONFIGURE [pypy], CONFIGURE (LIBTOOL) [libwps],
M4_DEFINE (LIBTOOL) [rasqal], EIGEN [Torch], JINJA.EL [Jinja2],
WPG2SVGBATCH.PL -H [libwpg], ACLOCAL (AUTOCONF) [libzmf], CONFIGURE
(AUTOCONF) [libwpg], AUTOMAKE [libvisual], ADOPTOPENJDK BINARIES FOR
ECLIPSE OPENJ9, LIBTOOL [pakchois], ANSIDECL.H [pypy], CALLGRIND.H
[Torch], LP_RLP.C (BISON) [lpsolve], AR-LIB (AUTOCONF) [libwps], UBUNTU
(MAIN), AR-LIB (AUTCONF) [libwpg], WPD2SXWBATCH.PL [libwpg]
BDJ_TEST.C [libbluray], CONFIGUIRE (LIBTOOL) [libcdio], LIBPOSTPROC
[ffmpeg], MM-COMMON [libsigc++20], GNU LIBTOOL [astropy],
VLGOTHIC-P-FONTS, CODEC2-DEBIAN [codec2], GNU BISON [astropy], EEDI3
[vapoursynth-libs], INPUT_BLURAY [libbluray], PO/MAKEFILE [zvbi],
COMPILE [NetCDF], GETOPT [lensfun], DVCONT [libavc1394], CONTROL POINTS
[libspatialite], MMX CBP [XvidCore], BITMASK [numactl-libs],
LWIN_ENCODED_POLYLINE.C [libspatialite], COVERITY [ffmpeg],
ZVBI-TTXFILTER -- TELETEXT FILTER [zvbi], CLOSED CAPTION AND XDS DECODER
[zvbi], LIBTOOL.M4 (LIBTOOL) [Faac], CONFIG.GUESS [libsamplerate],
LIBZVBI TEST [zvbi], AVILIB.C [libtheora-devel], SNOW.TXT [ffmpeg],
COMPLIE - AUTOCONF [Proj], CPU.CC [davs2], POPPLER-CONFIG.PATCH.1
[LibreOffice], XVID VFW [XvidCore], ACX_PTHREAD.M4 (AUTOCONF)
[intel-mediasdk], XVIDCORE, VIRTUALDUB [vapoursynth-libs], XSL
TRANSFORMATION [libsigc++20], AX_CREATE_STDINT_H.M4 (AUTOCONF)
[gstreamer/orc], MULTIBOOT.H [libcaca], LIBAVFILTER [ffmpeg], /BIN/SH
[zvbi], ATTRIBUTES.M4 (AUTOCONF) [libbluray], COMPAT [ffmpeg],
XAVS2-LIBS, BENGALI DICTIONARY BULGARIAN DICTIONARY, HYPHENATION
PATTERNS, THESAURUS, CATALAN DICTIONARY, [LibreOffice], DEPCOMP [Lame],
JACK SERVER [jack-audio-connection-kit], NOTE [ffmpeg], AVISYNTH
[vapoursynth-libs], MAKEHRTF.C [openal-soft], CONFIG.GUESS (AUTOCONF)
[libcaca], PLUGCTL.1 [libiec61883], CFGMR.C [SuperLu], CONFIGURE
(LIBTOOL) [mpg123-libs], X264-LIBS, MAC [Lame], GETOPT FOR GNU [Faac],
COMPILE (AUTOCONF) [Faac], PKG.M4 (AUTOCONF) [gstreamer/orc],
CODEC2-UNITTEST [codec2], AX_CHECK_COMPILE_FLAG [GEOS], TEST.PY [lxml],
LIBRTMP.3 [librtmp], DSHOW [XvidCore], DAVS2, ENCODEDV [libdv],
SCHOOLTOOL [lxml], ACLOCAL [libodfgen], IMAGE_CROP.SVG. NSSRENAM.H,
TANGO, HWPFILTER, M4, BREEZE ICON THEME, GNU ISO C++ LIBRARY, ISO C++
14882, LIBATOMIC-OPS, LPSOLVE, POPPLER, MYSQL CONNECTOR/C++, LINUX
LIBERTINE G AND LINUX BIOLINUM G [LibreOffice], EPEL-RELEASE, X265-LIBS,
AVC_VCR.C [libavc1394], COREAUDIO.C [mpg123-libs], FFT.C [Lame],
VID.STAB, WIN32THREAD.C [davs2], GERMAIN DICTIONARY FRENCH DICTIONARY
GALICIAN DICTIONARY GUJARATI DICTIONARY NORWEGIAN DICTIONARY ROMANIAN
DICTIONARY SERBIAN DICTIONARY SLOVAK DICTIONARY SLOVENIAN DICTIONARY
VIETNAMESE DICTIONARY ENGLISH (AUSTRALIA) DICTIONARY [LibreOffice],
SLANG, GETOPT.H [x264-libs], IA64 [XvidCore], M4 [zvbi], LTMAIN.SH
(LIBTOOL) [libbluray], GZIP [CFITSIO], CONFIGURE [Proj],
LC_TOGGLEOBJECTROTATEMODE.PNG, LC_ALIGNCENTER.PNG,
LC_FREELINE_UNFILLED.PNG, [LibreOffice], ODGI-CONFIG.IN [ogdi],
XMMS-WAVPACK [wavpack], HEBREW DICTIONARY HINDI DICTIONARY OCCITAN
DICTIONARY TELUGU DICTIONARY UKRAINIAN DICTIONARY ZULU DICTIONARY ,
ELEMENTARY THEME FOR LIBREOFFICE, HUMANITY-ICON-THEME,
LC_TOGGLEOBJECTROTATEMODE.PNG, LC_ALIGNCENTER.PNG,
LC_FREELINE_UNFILLED.PNG, [LibreOffice], BUILD-AUX (AUTOCONF)
[libbluray], LIBTOOL [libconfig], PKG.M4 (AUTOCONF EXCEPTION) [Speex],
DVB-APPS [libv4l], ACLOCAL.M4 [Lame], ACLOCAL.M4 (AUTOCONF) [libbs2b],
PKG.M4 [libdap], RUBBERBAND, GNU LIBTOOL 2.4 [libdap], BOOTSTRAPPER
[ocl-icd], TEXI2POD.PL [ffmpeg],
EMAIL FOR USERS & PROGRAMMERS
<HTTP://RAND-MH.SOURCEFORGE.NET/BOOK/> [Python], LTMAIN.SH [Python], GNU
READLINE [Python], OPENJDK [elasticsearch], DYNSECTIONS [YAML], COMPILE
[YAML], BISON PARSER [Tcl/Tk], IMAGE_CROP.SVG. NSSRENAM.H, TANGO,
HWPFILTER, M4, BREEZE ICON THEME, GNU ISO C++ LIBRARY, ISO C++ 14882,
LIBATOMIC-OPS, LPSOLVE, POPPLER, MYSQL CONNECTOR/C++, LINUX LIBERTINE G
AND LINUX BIOLINUM G [LibreOffice], INFO/LICENSES/COPYING
[ld_impl_linux-64], LIBFFI.TEXI [Python], LIBTOOL-LDFLAGS [Python],
GERMAIN DICTIONARY FRENCH DICTIONARY GALICIAN DICTIONARY GUJARATI
DICTIONARY NORWEGIAN DICTIONARY ROMANIAN DICTIONARY SERBIAN DICTIONARY
SLOVAK DICTIONARY SLOVENIAN DICTIONARY VIETNAMESE DICTIONARY ENGLISH
(AUSTRALIA) DICTIONARY [LibreOffice], JBIG, M4_DEFINE [YAML], DOXYGEN
[YAML], LBTOOL [Xz], POPPLER-CONFIG.PATCH.1 [LibreOffice],
LC_TOGGLEOBJECTROTATEMODE.PNG, LC_ALIGNCENTER.PNG,
LC_FREELINE_UNFILLED.PNG, [LibreOffice], HEBREW DICTIONARY HINDI
DICTIONARY OCCITAN DICTIONARY TELUGU DICTIONARY UKRAINIAN DICTIONARY
ZULU DICTIONARY , ELEMENTARY THEME FOR LIBREOFFICE, HUMANITY-ICON-THEME,
LC_TOGGLEOBJECTROTATEMODE.PNG, LC_ALIGNCENTER.PNG,
LC_FREELINE_UNFILLED.PNG, [LibreOffice], ACLOCAL.M4 [Python], FREETYPE,
PKG.M4 [freetype], ZLIB.ADS (WITH EXCEPTION) [Tcl/Tk], BENGALI
DICTIONARY BULGARIAN DICTIONARY, HYPHENATION PATTERNS, THESAURUS,
CATALAN DICTIONARY, [LibreOffice], LIBFFI.INFO [Python],
GNU LIBTOOL (GPL WITH LIBTOOL EXCEPTION) [Protobuf-c], ASM-GENERIC
[modernc.org/cc], JSON-DECYCLE, GHOSTSCRIPT-6.52 [modernc.org/cc],
AX_PROG_XSLTPROC.M4 (GPL V2 WITH AUTOCONF EXCEPTION) [fstrm], AR-LIB
[jq], PKG.M4 (GPL WITH AUTOCONF EXCEPTION) [Protobuf-c], BUILD-AUX (GPL
WITH AUTOCONF EXCEPTION) [Protobuf-c], PKG.M4 (GPL V2 WITH AUTOCONF
EXCEPTION) [fstrm], PYINSTALLER, GNU LIBTOOL [node-expat], LIBTOOL [node-expat],
LTMAIN.SH (LIBTOOL) [node-expat], ATOM1.XML [dojox], AUTOCONF [node-expat],
CONFIGURE [node-expat], LIBCONFIG [collectd], LTMAIN.SH [node-expat],
FIX_DUP_NIC_MACS.PY [ovirt-engine-sdk-python], COLLECTD-MODULES
[collectd], SCANELF, APK-TOOLS, ORG.OPENJFX:JAVAFX-BASE, ORG.OPENJFX:JAVAFX-GRAPHICS,
ORG.OPENJFX:JAVAFX-CONTROLS
END OF GNU GENERAL PUBLIC LICENSE, VERSION 2 NON-IBM-LICENSE INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
GNU GENERAL PUBLIC LICENSE, VERSION 3
The Program includes some or all of the following licensed to you as
Separately Licensed Code under the GNU General Public License. For copies
of the source code for this software, send an email to <emailaddress>
identifying the IBM product and the GPL-licensed program for which you
are requesting the source code
AWX_DISPLAY.PY [ansible-runner], ZIPPED_EGG [PyInstaller], C10 [Torch],
LINGUISTICO, WCSLIB [astropy], SCREEN, LTMAIN.SH [geoipupdate], SUBR.EL
AND HYBRIS_FILE.HY [pygments], ANSIBLE, BIN_LIBRARY_INFO.SH
CONCAT-DEPS.C, BOOST, ITALIAN DICTIONARY SINHALA DICTIONARY
[LibreOffice], SHOBJ-CONF [pre-commit], ISPELL-NORSK [iText],
PIP-MANPAGE.RST [python3-pip], H5LTPARSE.C WITH BISON EXCEPTION [ITK],
ALEINTERFACE [atari-py], ELEMENTARYICONS [LibreOffice], CONFIG.GUESS
[astropy], M4 [libraqm], CISCO IOS-XE [ansible], WIREDTIGER [MongoDB],
ERT-BUFFER [docutils], CONFIG.SUB [astropy], EMACS [docutils], EIGEN
[tensorflow], BY BARRY WARSAW [python3-pip], CALCULATE_MULTIPART_ETAG
[ansible], AX_PTHREAD.M4 [gevent], RST.EL [docutils], AX_OPENMP.M4
(AUTOCONF) [LibRaw], SR_CYRL.XML [iText], AX_CHECK_COMPILER_FLAGS
[xcb-util], HTML2PDF, BISON [libjq1],ZIPPED_EGG [PyInstaller], C10 [Torch],
SHELL-SCRIPT [libwpg],
CONFIG.GUESS (AUTOCONF) [mythes], TOOLCHAINS/CLANG6 [tensorflow],
SETUP.PY [python-daemon], CONFIG.SUB [pypy], LTMAIN.SH [libvisio],
PARSEDATE.C (BISON) [raptor], BENCH/BTL [tensorflow], DWARF3 [pypy],
PG_QUERY [readme-renderer], SPARQL_PARSER (BISON) [rasqal], SWIG
[tensorflow], CONFIG [libwpd]
CHECK_SIZEOF.C [libcdio], CONFIG.GUESS (AUTOCONF) [davs2], USAGE
[libodfgen], FDL.TEXI (GFDL) [libcdio], GNU BISON [CFITSIO],
EXPAT/DOC/XMLWF (GNU FREE DOCUMENTATION LICENSE [astropy],
BIN_LIBRARY_INFO.SH CONCAT-DEPS.C, BOOST, ITALIAN DICTIONARY SINHALA
DICTIONARY [LibreOffice], TM-STM [codec2], AC.PY [lensfun],
AX_CHECK_COMPILE_FLAG.M4 - AUTOCONF [Proj], AX_CHECK_COMPILE_FLAG.M4
[zimg], AX_BLAS.M4 (AUTOCONF) [arpack-ng], SHOBJ-CONF [pre-commit],
CONFIG.GUESS (AUTOCONF EXCEPTION) [Slang], AX_CHECK_COMPILE_FLAG (GPL V3
WITH AUTOCONF EXCEPTION) [numactl-libs], FREEMONO.TFF [pillow],
SHELL-SCRIPT [libgta], LIBKML, ELEMENTARYICONS [LibreOffice],
LIBCDIO-PARANOIA, ITMAIN [Lame], CONFIG - AUTOCONF [Proj], CONFIG.GUESS
[astropy], CONFIG.SUB [astropy], AUTO_EPSG_EXT [libspatialite], TEXINFO
[libconfig], LIBCDIO, MP4 [Faac], LIBZMQ [ZeroMQ], BISON [libconfig],
ITMAIN.SH [Proj], AX_CHECK_COMPILE_FLAG.M4 (AUTOCONF) [kvazaar-libs]
TARGET-LIBPATH.EXP [Python], ELEMENTARYICONS [LibreOffice], CONFIG.GUESS
[LibreOffice], WRAPPER.EXP [Python], LD_IMPL_LINUX-64, CALL.EXP
[Python], A PORTABLE, PLUGGABLE OPTION PARSER FOR BOURNE SHELL. [YAML],
CONFIG.SUB [Python], LTMAIN.SH [Python], BIN_LIBRARY_INFO.SH
CONCAT-DEPS.C, BOOST, ITALIAN DICTIONARY SINHALA DICTIONARY
[LibreOffice], LCMS2_FAST_FLOAT.H [lcms2], TEXINFO.TEX [Python],
LIBFFI.EXP [Python], READLINE,
DEBIAN/RULES [mikefarah/yq/v2], V2/HEADERS [modernc.org/cc],
AX_CHECK_COMPLE_FLAG.M4 (GPL WITH AUTOCONF MACRO EXCEPTION)
[Protobuf-c], AX_PTHREAD.M4 (GPL V3 WITH AUTOCONF EXCEPTION) [fstrm],
TESTDATA/GCC [modernc.org/cc], A PORTABLE, PLUGGABLE OPTION PARSER FOR BOURNE SHELL [node-expat], XMLWF
- GNU FREE DOCUMENTAION LICENSE [node-expat], GITWEB [node-expat],
GITWEB (AUTOCONF) [node-expat], YAMLLINT, CONFIG.GUESS [node-expat],
CONFIG.SUB [node-expat], AX_COMPILER_VENDOR [collectd], CONFIG
[node-expat], READLINE, ANSIBLE-BASE, PQCHECKER, LIBGOMP, LIBGCC-NG,
UBUNTU Main 20.04 packages
END OF GNU GENERAL PUBLIC LICENSE, VERSION 3 NON-IBM-LICENSE INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
REDHAT UNIVERSAL BASE IMAGE v 7.6 and 8.3, 8.4 ootpa, 8.6
RedHAT UBI v7 and v8 has been taken under EULA > https://www.redhat.com/licenses/eulas
RedHat UBI v8.4 ootpa and 8.6 has been taken under EULA > https://www.redhat.com/licenses/eulas
The Program maybe provided with third party software programs subject to their own
license terms. The license terms either accompany the third party software programs or,
in some instances, maybe viewed at : https://access.redhat.com/containers/
END OF REDHAT UBI LICENSE NOTICES AND INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
SIL OPEN FONT LICENSE 1.1
The Program includes some or all of the following works licensed under
the SIL OPEN FONT LICENSE 1.1
FONT AWESOME - FONT [mkdocs][Flink][MongoDB][Django], STIX FONT [matplotlib], CARLITO
[LibreOffice], FONTS [Keras], LATO FONTS [sphinx-rtd-theme],
FA-BRANDS.MIN.CSS 1 [Django] , THEME.CSS [lxml], FONTS/AMARANTH
[iText], GENTIUM [LibreOffice], LATO [sphinx-rtd-theme], CARLITO [LibreOffice],
STATIC/CSS/THEME.CSS [sphinx-rtd-theme], FONT AWESOME
[sphinx-rtd-theme], LIBERATION [LibreOffice], THEME.CSS [lxml],
NOTO-CJK, SOURCE CODE PRO - SOURCE SANS PRO [LibreOffice], TERMINUS FONT
[vapoursynth-libs], PT SERIF [LibreOffice], FONTS [pillow], FONT AWESOME
(FONT) [lxml], CMTI10 [CFITSIO], FONT AWESOME FONT [sphinx-rtd-theme],
FONT [pillow], CARLITO [LibreOffice], IBM PLEX TYPEFACE [carbon-components],
FONTAWESONE-FONT [mikefarah/yq/v2], GLOBALS-FONT [carbon-components],
FONT AWESOME - FONT [ansible-base], IBM PLEX TYPEFACE
[carbon-components]
Permission is hereby granted, free of charge, to any person obtaining a copy of the font software, to use, study, copy, merge, embed,
modify, redistribute, and sell modified and unmodified copies of the font software, subject to the following conditions:
1) Neither the font software nor any of its individual components, in original or modified versions, may be sold by itself.
2) Original or modified versions of the font software may be bundled, redistributed and/or sold with any software, provided that each
copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers
or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.
3) No modified version of the font software may use the Reserved Name(s) or combinations of Reserved Names with other words unless explicit
written permission is granted by the ParaType. This restriction only applies to the primary font name as presented to the users.
4) The name of ParaType or the author(s) of the font software shall not be used to promote, endorse or advertise any modified version, except
to acknowledge the contribution(s) of ParaType and the author(s) or with explicit written permission of ParaType.
5) The font software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed
under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.
TERMINATION & TERRITORY
This license has no limits on time and territory, but it becomes null and void if any of the above conditions are not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL
PARATYPE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS
IN THE FONT SOFTWARE.
END OF SIL OPEN FONT LICENSE 1.1 NON-IBM-LICENSE INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
UBUNTU FONT LICENCE Version 1.0
-------------------------------
PREAMBLE
This licence allows the licensed fonts to be used, studied, modified and redistributed freely. The fonts, including any derivative works, can be bundled, embedded, and redistributed provided the terms of this licence are met. The fonts and derivatives, however, cannot be released under any other licence. The requirement for fonts to remain under this licence does not require any document created using the fonts or their derivatives to be published under this licence, as long as the primary purpose of the document is not to be a vehicle for the distribution of the fonts.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright Holder(s) under this licence and clearly marked as such. This may include source files, build scripts and documentation.
"Original Version" refers to the collection of Font Software components as received under this licence.
"Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.
"Copyright Holder(s)" refers to all individuals and companies who have a copyright ownership of the Font Software.
"Substantially Changed" refers to Modified Versions which can be easily identified as dissimilar to the Font Software by users of the Font Software comparing the Original Version with the Modified Version.
To "Propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification and with or without charging a redistribution fee), making available to the public, and in some countries other activities as well.
PERMISSION & CONDITIONS
This licence does not grant any rights under trademark law and all such rights are reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to propagate the Font Software, subject to the below conditions:
1) Each copy of the Font Software must contain the above copyright notice and this licence. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine- readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.
2) The font name complies with the following:
(a) The Original Version must retain its name, unmodified.
(b) Modified Versions which are Substantially Changed must be renamed to avoid use of the name of the Original Version or similar names entirely.
(c) Modified Versions which are not Substantially Changed must be renamed to both (i) retain the name of the Original Version and (ii) add additional naming elements to distinguish the Modified Version from the Original Version. The name of such Modified Versions must be the name of the Original Version, with "derivative X" where X represents the name of the new work, appended to that name.
3) The name(s) of the Copyright Holder(s) and any contributor to the Font Software shall not be used to promote, endorse or advertise any Modified Version, except (i) as required by this licence, (ii) to acknowledge the contribution(s) of the Copyright Holder(s) or (iii) with their explicit written permission.
4) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this licence, and must not be distributed under any other licence. The requirement for fonts to remain under this licence does not affect any document created using the Font Software, except any version of the Font Software extracted from a document created using the Font Software may only be distributed under this licence.
TERMINATION
This licence becomes null and void if any of the above conditions are not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
FONT_LICENSE [Werkzeug], FONT [Werkzeug]
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
UNIQUE (SLC REQD)
OCB, OCB mode [pycryptodomex], OCBBlockCipher [bcprov-jdk15on]
Copyright (c) 2014 IETF Trust and the persons identified as the
document authors. All rights reserved
This repository relates to activities in the Internet Engineering Task Force (IETF). All material in this repository is considered Contributions to the IETF Standards Process, as defined in the intellectual property policies of IETF currently designated as BCP 78, BCP 79 and the IETF Trust Legal Provisions (TLP) Relating to IETF Documents.
Any edit, commit, pull request, issue, comment or other change made to this repository constitutes Contributions to the IETF Standards Process (https://www.ietf.org/).
You agree to comply with all applicable IETF policies and procedures, including, BCP 78, 79, the TLP, and the TLP rules regarding code components (e.g. being subject to a Simplified BSD License) in Contributions.
Other Resources
Discussion of this work occurs on the {WG_NAME} working group mailing list (subscribe). In addition to contributions in GitHub, you are encouraged to participate in discussions there.
Note: Some working groups adopt a policy whereby substantive discussion of technical issues needs to occur on the mailing list.
You might also like to familiarize yourself with other working group documents..
xmlwf man page
GNU Free Documentation License
Version 1.3, 3 November 2008
Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
<https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
0. PREAMBLE
The purpose of this License is to make a manual, textbook, or other
functional and useful document "free" in the sense of freedom: to
assure everyone the effective freedom to copy and redistribute it,
with or without modifying it, either commercially or noncommercially.
Secondarily, this License preserves for the author and publisher a way
to get credit for their work, while not being considered responsible
for modifications made by others.
This License is a kind of "copyleft", which means that derivative
works of the document must themselves be free in the same sense. It
complements the GNU General Public License, which is a copyleft
license designed for free software.
We have designed this License in order to use it for manuals for free
software, because free software needs free documentation: a free
program should come with manuals providing the same freedoms that the
software does. But this License is not limited to software manuals;
it can be used for any textual work, regardless of subject matter or
whether it is published as a printed book. We recommend this License
principally for works whose purpose is instruction or reference.
1. APPLICABILITY AND DEFINITIONS
This License applies to any manual or other work, in any medium, that
contains a notice placed by the copyright holder saying it can be
distributed under the terms of this License. Such a notice grants a
world-wide, royalty-free license, unlimited in duration, to use that
work under the conditions stated herein. The "Document", below,
refers to any such manual or work. Any member of the public is a
licensee, and is addressed as "you". You accept the license if you
copy, modify or distribute the work in a way requiring permission
under copyright law.
A "Modified Version" of the Document means any work containing the
Document or a portion of it, either copied verbatim, or with
modifications and/or translated into another language.
A "Secondary Section" is a named appendix or a front-matter section of
the Document that deals exclusively with the relationship of the
publishers or authors of the Document to the Document's overall
subject (or to related matters) and contains nothing that could fall
directly within that overall subject. (Thus, if the Document is in
part a textbook of mathematics, a Secondary Section may not explain
any mathematics.) The relationship could be a matter of historical
connection with the subject or with related matters, or of legal,
commercial, philosophical, ethical or political position regarding
them.
The "Invariant Sections" are certain Secondary Sections whose titles
are designated, as being those of Invariant Sections, in the notice
that says that the Document is released under this License. If a
section does not fit the above definition of Secondary then it is not
allowed to be designated as Invariant. The Document may contain zero
Invariant Sections. If the Document does not identify any Invariant
Sections then there are none.
The "Cover Texts" are certain short passages of text that are listed,
as Front-Cover Texts or Back-Cover Texts, in the notice that says that
the Document is released under this License. A Front-Cover Text may
be at most 5 words, and a Back-Cover Text may be at most 25 words.
A "Transparent" copy of the Document means a machine-readable copy,
represented in a format whose specification is available to the
general public, that is suitable for revising the document
straightforwardly with generic text editors or (for images composed of
pixels) generic paint programs or (for drawings) some widely available
drawing editor, and that is suitable for input to text formatters or
for automatic translation to a variety of formats suitable for input
to text formatters. A copy made in an otherwise Transparent file
format whose markup, or absence of markup, has been arranged to thwart
or discourage subsequent modification by readers is not Transparent.
An image format is not Transparent if used for any substantial amount
of text. A copy that is not "Transparent" is called "Opaque".
Examples of suitable formats for Transparent copies include plain
ASCII without markup, Texinfo input format, LaTeX input format, SGML
or XML using a publicly available DTD, and standard-conforming simple
HTML, PostScript or PDF designed for human modification. Examples of
transparent image formats include PNG, XCF and JPG. Opaque formats
include proprietary formats that can be read and edited only by
proprietary word processors, SGML or XML for which the DTD and/or
processing tools are not generally available, and the
machine-generated HTML, PostScript or PDF produced by some word
processors for output purposes only.
The "Title Page" means, for a printed book, the title page itself,
plus such following pages as are needed to hold, legibly, the material
this License requires to appear in the title page. For works in
formats which do not have any title page as such, "Title Page" means
the text near the most prominent appearance of the work's title,
preceding the beginning of the body of the text.
The "publisher" means any person or entity that distributes copies of
the Document to the public.
A section "Entitled XYZ" means a named subunit of the Document whose
title either is precisely XYZ or contains XYZ in parentheses following
text that translates XYZ in another language. (Here XYZ stands for a
specific section name mentioned below, such as "Acknowledgements",
"Dedications", "Endorsements", or "History".) To "Preserve the Title"
of such a section when you modify the Document means that it remains a
section "Entitled XYZ" according to this definition.
The Document may include Warranty Disclaimers next to the notice which
states that this License applies to the Document. These Warranty
Disclaimers are considered to be included by reference in this
License, but only as regards disclaiming warranties: any other
implication that these Warranty Disclaimers may have is void and has
no effect on the meaning of this License.
2. VERBATIM COPYING
You may copy and distribute the Document in any medium, either
commercially or noncommercially, provided that this License, the
copyright notices, and the license notice saying this License applies
to the Document are reproduced in all copies, and that you add no
other conditions whatsoever to those of this License. You may not use
technical measures to obstruct or control the reading or further
copying of the copies you make or distribute. However, you may accept
compensation in exchange for copies. If you distribute a large enough
number of copies you must also follow the conditions in section 3.
You may also lend copies, under the same conditions stated above, and
you may publicly display copies.
3. COPYING IN QUANTITY
If you publish printed copies (or copies in media that commonly have
printed covers) of the Document, numbering more than 100, and the
Document's license notice requires Cover Texts, you must enclose the
copies in covers that carry, clearly and legibly, all these Cover
Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
the back cover. Both covers must also clearly and legibly identify
you as the publisher of these copies. The front cover must present
the full title with all words of the title equally prominent and
visible. You may add other material on the covers in addition.
Copying with changes limited to the covers, as long as they preserve
the title of the Document and satisfy these conditions, can be treated
as verbatim copying in other respects.
If the required texts for either cover are too voluminous to fit
legibly, you should put the first ones listed (as many as fit
reasonably) on the actual cover, and continue the rest onto adjacent
pages.
If you publish or distribute Opaque copies of the Document numbering
more than 100, you must either include a machine-readable Transparent
copy along with each Opaque copy, or state in or with each Opaque copy
a computer-network location from which the general network-using
public has access to download using public-standard network protocols
a complete Transparent copy of the Document, free of added material.
If you use the latter option, you must take reasonably prudent steps,
when you begin distribution of Opaque copies in quantity, to ensure
that this Transparent copy will remain thus accessible at the stated
location until at least one year after the last time you distribute an
Opaque copy (directly or through your agents or retailers) of that
edition to the public.
It is requested, but not required, that you contact the authors of the
Document well before redistributing any large number of copies, to
give them a chance to provide you with an updated version of the
Document.
4. MODIFICATIONS
You may copy and distribute a Modified Version of the Document under
the conditions of sections 2 and 3 above, provided that you release
the Modified Version under precisely this License, with the Modified
Version filling the role of the Document, thus licensing distribution
and modification of the Modified Version to whoever possesses a copy
of it. In addition, you must do these things in the Modified Version:
A. Use in the Title Page (and on the covers, if any) a title distinct
from that of the Document, and from those of previous versions
(which should, if there were any, be listed in the History section
of the Document). You may use the same title as a previous version
if the original publisher of that version gives permission.
B. List on the Title Page, as authors, one or more persons or entities
responsible for authorship of the modifications in the Modified
Version, together with at least five of the principal authors of the
Document (all of its principal authors, if it has fewer than five),
unless they release you from this requirement.
C. State on the Title page the name of the publisher of the
Modified Version, as the publisher.
D. Preserve all the copyright notices of the Document.
E. Add an appropriate copyright notice for your modifications
adjacent to the other copyright notices.
F. Include, immediately after the copyright notices, a license notice
giving the public permission to use the Modified Version under the
terms of this License, in the form shown in the Addendum below.
G. Preserve in that license notice the full lists of Invariant Sections
and required Cover Texts given in the Document's license notice.
H. Include an unaltered copy of this License.
I. Preserve the section Entitled "History", Preserve its Title, and add
to it an item stating at least the title, year, new authors, and
publisher of the Modified Version as given on the Title Page. If
there is no section Entitled "History" in the Document, create one
stating the title, year, authors, and publisher of the Document as
given on its Title Page, then add an item describing the Modified
Version as stated in the previous sentence.
J. Preserve the network location, if any, given in the Document for
public access to a Transparent copy of the Document, and likewise
the network locations given in the Document for previous versions
it was based on. These may be placed in the "History" section.
You may omit a network location for a work that was published at
least four years before the Document itself, or if the original
publisher of the version it refers to gives permission.
K. For any section Entitled "Acknowledgements" or "Dedications",
Preserve the Title of the section, and preserve in the section all
the substance and tone of each of the contributor acknowledgements
and/or dedications given therein.
L. Preserve all the Invariant Sections of the Document,
unaltered in their text and in their titles. Section numbers
or the equivalent are not considered part of the section titles.
M. Delete any section Entitled "Endorsements". Such a section
may not be included in the Modified Version.
N. Do not retitle any existing section to be Entitled "Endorsements"
or to conflict in title with any Invariant Section.
O. Preserve any Warranty Disclaimers.
If the Modified Version includes new front-matter sections or
appendices that qualify as Secondary Sections and contain no material
copied from the Document, you may at your option designate some or all
of these sections as invariant. To do this, add their titles to the
list of Invariant Sections in the Modified Version's license notice.
These titles must be distinct from any other section titles.
You may add a section Entitled "Endorsements", provided it contains
nothing but endorsements of your Modified Version by various
parties--for example, statements of peer review or that the text has
been approved by an organization as the authoritative definition of a
standard.
You may add a passage of up to five words as a Front-Cover Text, and a
passage of up to 25 words as a Back-Cover Text, to the end of the list
of Cover Texts in the Modified Version. Only one passage of
Front-Cover Text and one of Back-Cover Text may be added by (or
through arrangements made by) any one entity. If the Document already
includes a cover text for the same cover, previously added by you or
by arrangement made by the same entity you are acting on behalf of,
you may not add another; but you may replace the old one, on explicit
permission from the previous publisher that added the old one.
The author(s) and publisher(s) of the Document do not by this License
give permission to use their names for publicity for or to assert or
imply endorsement of any Modified Version.