generated from burned-salmon/deploy-to-neocities-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject-attribution.html
3369 lines (2939 loc) · 510 KB
/
project-attribution.html
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
<html>
<head>
<style>
@font-face {
font-family: 'Open Sauce Two';
src:
url('/font/OpenSauceTwo-Regular.woff2') format('woff2'),
url('/font/OpenSauceTwo-Regular.woff') format('woff'),
url('/font/OpenSauceTwo-Regular.ttf') format('truetype'),
url('/font/OpenSauceTwo-Regular.svg#OpenSauceTwo-Regular') format('svg');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Open Sauce Two';
src:
url('/font/OpenSauceTwo-Bold.woff2') format('woff2'),
url('/font/OpenSauceTwo-Bold.woff') format('woff'),
url('/font/OpenSauceTwo-Bold.ttf') format('truetype'),
url('/font/OpenSauceTwo-Bold.svg#OpenSauceTwo-Bold') format('svg');
font-weight: 700;
font-style: normal;
font-display: swap;
}
.fossa-header-card {
background-color: #F3F3F5;
padding: 80px;
border-radius: 32px;
}
.fossa-header-card .project-title-and-org {
display: flex;
justify-content: space-between;
margin-bottom: 64px;
gap: 50px;
align-items: center;
}
.fossa-header-card .project-title-and-org .created-with {
display: flex;
flex-direction: column;
align-items: center;
gap: 5px;
color: #9BA1AB;
}
.fossa-header-card .report-title {
font-family: 'Open Sauce Two', 'Open Sauce', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 78px;
line-height: 78px;
word-wrap: break-word;
}
.fossa-header-card .report-title a {
color: #1F60E0;
}
.fossa-header-card .thanks {
font-family: 'Open Sauce Two', 'Open Sauce', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 400;
font-size: 24px;
margin-top: 16px;
}
.fossa-header-card footer {
display: flex;
gap: 300px;
margin-top: 32px
}
/* Main content */
.main-content-container {
display: flex;
gap: 32px;
}
.main-content-container .table-of-contents {
width: 250px;
flex-shrink: 0;
height: min-content;
position: sticky;
top: 25px;
}
.main-content-container .table-of-contents .table-of-contents__row {
padding: 12px 16px;
}
.highlight {
background-color: #E9F5F0;
border: 1px solid #E9F5F0;
border-radius: 8px;
}
.highlight a {
color: #289E6D !important;
}
.main-content-container .table-of-contents a {
font-family: 'Open Sauce Two', 'Open Sauce', 'Helvetica Neue', Helvetica, Arial, sans-serif;
color: #6A7181;
text-decoration: none;
}
.main-content-container .name-pill {
background: #F3F3F5;
border-radius: 113px;
font-size: 20px;
line-height: 32px;
padding: 12px 24px;
display: flex;
justify-content: space-between;
}
.main-content-container .name-pill a {
color: #06132D;
}
.main-content-container .content-container {
max-width: 100%;
}
.main-content-container .dependency-description {
font-size: 20px;
}
.main-content-container .dependency-info {
margin: 0 0 45px 25px;
}
.main-content-container .package-info {
margin: 18px 0;
}
.main-content-container .show-more {
display:flex;
align-items: flex-start;
justify-content: space-between;
max-height: 120px;
overflow: hidden;
border: 1px solid #CDD0D5;
border-radius: 8px;
}
.main-content-container .show-more.neutral-gray {
background-color: #F3F3F5;
border: 1px solid #F3F3F5;
}
.main-content-container .show-more.expanded {
max-height: 100%;
}
.main-content-container div.show-more-button {
float: right;
margin: 15px 24px;
padding: 12px 24px;
background-color: #F5F5FA;
border: 1px solid #CDD0D5;
border-radius: 8px;
font-size: 14px;
width: 100px;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
flex-shrink: 0;
}
.main-content-container div.show-more-button svg {
vertical-align: middle;
}
.main-content-container pre.content {
font-family: 'Open Sauce Two', 'Open Sauce', 'Helvetica Neue', Helvetica, Arial, sans-serif;
word-break: break-word;
word-wrap: break-word;
white-space: pre-line;
padding: 0 12px;
font-size: 14px;
}
.margin-top-lg {
margin-top: 80px;
}
.margin-bottom-xs {
margin-bottom: 8px;
}
.margin-bottom-md {
margin-bottom: 25px;
}
.margin-bottom-lg {
margin-bottom: 64px;
}
.margin-bottom-xl {
margin-bottom: 80px;
}
.no-margin {
margin: 0;
}
.bolded {
font-weight: 800;
}
.dep-locator {
font-size: 14px;
text-align: right;
color: #9BA1AB;
}
.main-content-container div.content-section:not(:last-child){
margin-bottom: 80px;
padding-bottom: 80px;
border-bottom: 1px solid #CDD0D5;
}
div.copyright {
border: 1px solid #CDD0D5;
border-radius: 8px;
}
div.copyright pre {
font-family: 'Open Sauce Two', 'Open Sauce', 'Helvetica Neue', Helvetica, Arial, sans-serif;
word-break: break-word;
white-space: pre-line;
padding: 0 12px;
font-size: 14px;
}
h1, h2, h3, h4, h5 {
font-family: 'Open Sauce Two', 'Open Sauce', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
h2 {
font-size: 32px;
font-weight: 500;
margin: 0 0 24px;
}
h4 {
font-size: 20px;
font-weight: 400;
margin: 0 0 16px;
}
li {
margin: 10px 0;
word-wrap: break-word;
}
/*
*Table
*/
.div-table {
border: 1px solid #CDD0D5;
border-radius: 8px;
width: 100%;
}
.ellipses-truncate {
overflow: hidden;
text-overflow: ellipsis;
}
.div-table div.row, div.header {
padding: 24px;
display: grid;
justify-content: space-between;
}
.div-table div.header {
font-weight: 600;
}
.div-table div.row a {
color: #06132D;
}
.div-table div:not(:last-child) {
border-bottom: 1px solid #CDD0D5;
}
/* First Party Licenses table */
.div-table.first-party-licenses div {
grid-template-columns: 1.5fr 1fr 3fr;
}
/* Dependencies Summary table */
.div-table.dependency-summary div {
grid-template-columns: 1fr 1fr;
}
body {
font-family: 'Open Sauce Two', 'Open Sauce', 'Helvetica Neue', Helvetica, Arial, sans-serif;
margin: 80px 32px;
background-color: white;
}
@media print {
.main-content-container .content-container {
max-width: 100%;
}
.main-content-container .show-more {
max-height: 100%;
}
.main-content-container div.show-more-button {
display: none;
}
/* Everything below here is for making PDF generation better. */
.fossa-header-card {
clear: both;
page-break-after: always;
background-color: initial;
padding: 0;
}
.fossa-header-card .thanks {
font-size: 14px;
line-height: 20px;
}
.fossa-header-card footer {
margin-top: 100px;
}
.main-content-container .content-container .content-section {
margin-bottom: 0;
padding-bottom: 0;
border: none;
clear: both;
page-break-after: always;
max-width: 100%;
}
.main-content-container div.content-section:not(:last-child){
border-bottom: none;
}
.main-content-container .table-of-contents {
display: none !important;
}
.fossa-header-card .report-title {
font-size: 60px;
line-height: 60px;
}
.main-content-container .name-pill,
.main-content-container .dependency-description,
.main-content-container pre.content,
h3, h4, h5,
ul li,
.div-table div.row,
div.header,
.main-content-container .copyright pre {
font-size: 10px;
}
.main-content-container .name-pill {
padding: 8px 12px;
line-height: 10px;
}
.div-table div.row, div.header {
padding: 12px;
}
.margin-bottom-xs {
margin-bottom: 8px;
}
.margin-bottom-md {
margin-bottom: 12px;
}
ul li {
margin: initial;
}
.dep-locator {
font-size: 8px;
}
h4 {
margin: 0 0 8px;
}
h2 {
font-size: 20px;
margin: 0 0 8px;
}
body {
-webkit-print-color-adjust: exact !important;
print-color-adjust: exact !important;
margin: 56px 45px;
}
}
</style>
<script>
function toggleMore(target, className) {
// toggle data-expand so we can replace the text
const elem = document.querySelector(`.show-more.${className}`)
if (elem) {
const isExpanded = elem.classList.contains('expanded')
if (isExpanded) {
elem.classList.remove('expanded');
target.innerHTML = `<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z"/></svg> Show More`;
} else {
elem.classList.add( 'expanded' );
target.innerHTML = `<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z"/></svg> Show less`;
}
}
}
function highlight(element) {
var tableOfContentsLinks = document.querySelectorAll(".table-of-contents__row");
for(var i=0; i< tableOfContentsLinks.length; i++) {
tableOfContentsLinks[i].classList.remove("highlight");
}
element.parentElement.classList.add("highlight");
}
</script>
</head>
<body>
<!-- Report Header -->
<div class="fossa-header-card margin-bottom-xl">
<div class="project-title-and-org">
<h2 class="no-margin">
neocities
</h2>
<div class="created-with">
<div>
Created with
<!-- The FOSSA logo. -->
<svg width="66" height="15" viewBox="0 0 66 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.03845 8.68936H3.21317V13.8801C3.21317 13.9694 3.17769 14.0551 3.11454 14.1182C3.05139 14.1814 2.96574 14.2169 2.87643 14.2169H0.769727C0.680417 14.2169 0.594765 14.1814 0.531613 14.1182C0.468462 14.0551 0.432983 13.9694 0.432983 13.8801V0.73893C0.435127 0.651052 0.47155 0.567495 0.534471 0.506109C0.597391 0.444723 0.681822 0.410374 0.769727 0.4104H9.47988C9.56919 0.4104 9.65484 0.445879 9.71799 0.50903C9.78114 0.572182 9.81662 0.657834 9.81662 0.747144V2.6403C9.81662 2.72961 9.78114 2.81526 9.71799 2.87841C9.65484 2.94156 9.56919 2.97704 9.47988 2.97704H3.21317V6.13093H8.03845C8.12776 6.13093 8.21341 6.16641 8.27657 6.22956C8.33972 6.29271 8.3752 6.37836 8.3752 6.46767V8.36083C8.37305 8.4487 8.33663 8.53226 8.27371 8.59365C8.21079 8.65503 8.12636 8.68938 8.03845 8.68936Z" fill="#9BA1AB"/>
<path d="M19.0381 0.17102C19.9631 0.157442 20.8825 0.317637 21.7484 0.643282C22.4767 0.909019 23.1442 1.31818 23.7114 1.84652C24.2098 2.34266 24.6257 2.91522 24.9434 3.54256C25.2605 4.13919 25.4954 4.77603 25.6415 5.43571C25.7719 6.04447 25.838 6.66524 25.8386 7.2878C25.8383 7.91988 25.7723 8.55022 25.6415 9.16863C25.4965 9.83125 25.2616 10.471 24.9434 11.07C24.6258 11.6974 24.2099 12.27 23.7114 12.766C23.1452 13.2928 22.4772 13.6981 21.7484 13.957C20.881 14.2763 19.9623 14.4336 19.0381 14.421C18.107 14.4348 17.1814 14.2775 16.3072 13.957C15.5784 13.6982 14.9103 13.2929 14.3442 12.766C13.8378 12.2701 13.4124 11.6978 13.0835 11.07C12.7586 10.4727 12.5194 9.83262 12.373 9.16863C12.2422 8.55023 12.1761 7.91989 12.1759 7.2878C12.1765 6.66523 12.2425 6.04445 12.373 5.43571C12.5205 4.77466 12.7597 4.13745 13.0835 3.54256C13.4138 2.91454 13.8406 2.34224 14.3483 1.84652C14.9155 1.31809 15.583 0.908919 16.3113 0.643282C17.1828 0.317118 18.1076 0.15694 19.0381 0.17102ZM19.0381 11.842C19.6357 11.8505 20.2273 11.7212 20.767 11.4642C21.2173 11.258 21.6148 10.9518 21.9291 10.569C22.2145 10.2029 22.4429 9.7959 22.6067 9.36164C22.7573 8.98215 22.8701 8.58875 22.9435 8.18715C22.9932 7.88714 23.0193 7.58369 23.0215 7.27959C23.0193 6.97549 22.9932 6.67203 22.9435 6.37202C22.8705 5.97431 22.7577 5.58496 22.6067 5.20985C22.4455 4.78407 22.2227 4.38422 21.9456 4.02303C21.6277 3.63902 21.2239 3.33517 20.767 3.136C20.2237 2.89333 19.6329 2.77546 19.0381 2.79105C18.4269 2.77932 17.8208 2.90418 17.264 3.15654C16.8117 3.35025 16.4109 3.64697 16.0936 4.02303C15.8168 4.38816 15.5929 4.79046 15.4283 5.21806C15.2713 5.59104 15.1583 5.98107 15.0916 6.38024C14.9995 6.98177 14.9995 7.59383 15.0916 8.19536C15.1591 8.59566 15.2721 8.98695 15.4283 9.36164C15.5928 9.79268 15.8182 10.1979 16.0977 10.5649C16.415 10.9498 16.817 11.2562 17.2722 11.4601C17.8254 11.7146 18.4293 11.8396 19.0381 11.8256V11.842Z" fill="#9BA1AB"/>
<path d="M31.2651 4.07266C31.2706 4.28311 31.3346 4.48788 31.4499 4.66401C31.612 4.87236 31.8218 5.03857 32.0618 5.14859C32.3492 5.29917 32.5929 5.41416 32.7928 5.49355C32.9926 5.57295 33.328 5.69067 33.7989 5.84672L34.7639 6.18346C34.9474 6.24917 35.2526 6.371 35.6797 6.54895C36.0085 6.67672 36.3247 6.83482 36.6242 7.02121C36.8268 7.1581 37.0801 7.34838 37.384 7.59204C37.6497 7.7938 37.8741 8.04474 38.0451 8.33123C38.2099 8.61998 38.3395 8.92743 38.4311 9.24701C38.5306 9.62306 38.5666 10.0131 38.5379 10.401C38.5108 10.9548 38.3626 11.496 38.1036 11.9863C37.8446 12.4766 37.4812 12.9041 37.039 13.2386C36.028 14.0151 34.777 14.4132 33.5032 14.3639C31.7463 14.3647 30.0151 13.9421 28.4562 13.1319C28.4174 13.1123 28.3834 13.0845 28.3565 13.0505C28.3295 13.0164 28.3103 12.977 28.3001 12.9348C28.2676 12.853 28.2676 12.7619 28.3001 12.6801L29.2077 10.9636C29.226 10.9231 29.2521 10.8867 29.2845 10.8564C29.3169 10.8261 29.355 10.8025 29.3966 10.787C29.4367 10.7693 29.48 10.7602 29.5239 10.7602C29.5677 10.7602 29.6111 10.7693 29.6512 10.787C30.7977 11.3782 32.0585 11.7144 33.3471 11.7726C33.8752 11.7924 34.3989 11.669 34.8625 11.4153C35.0428 11.3195 35.199 11.1839 35.3192 11.0189C35.4395 10.8538 35.5206 10.6636 35.5565 10.4626C35.5999 10.2481 35.5781 10.0255 35.4939 9.82355C35.4098 9.62156 35.2671 9.44937 35.0842 9.32914C34.5552 8.97316 33.971 8.70677 33.3554 8.54067C32.3808 8.27644 31.4313 7.92742 30.5177 7.49758C29.1488 6.76113 28.4644 5.66603 28.4644 4.21228C28.4379 3.66198 28.5348 3.11272 28.7479 2.60469C28.9611 2.09665 29.2851 1.6427 29.6964 1.27605C30.6019 0.526296 31.7538 0.139893 32.9283 0.191898C34.5702 0.230803 36.1858 0.612681 37.6714 1.31301C37.7149 1.32807 37.7544 1.35281 37.787 1.38536C37.8195 1.41792 37.8442 1.45744 37.8592 1.50095C37.8743 1.54445 37.8792 1.5908 37.8737 1.6365C37.8682 1.68219 37.8524 1.72604 37.8275 1.76474L37.0965 3.4813C37.0811 3.52492 37.057 3.56491 37.0255 3.59878C36.994 3.63265 36.9559 3.65967 36.9135 3.67816C36.8711 3.69666 36.8254 3.70622 36.7792 3.70627C36.7329 3.70631 36.6872 3.69683 36.6448 3.67842C35.5415 3.16609 34.3519 2.86521 33.1377 2.79139C31.9304 2.79139 31.3062 3.21848 31.2651 4.07266Z" fill="#9BA1AB"/>
<path d="M43.9205 4.07273C43.9296 4.28439 43.9979 4.48926 44.1176 4.66408C44.2797 4.87242 44.4895 5.03864 44.7295 5.14866C45.0169 5.29924 45.2606 5.41422 45.4605 5.49362C45.6603 5.57301 45.9957 5.69074 46.4666 5.84679L47.4316 6.18353C47.6151 6.24924 47.9203 6.37107 48.3474 6.54902C48.6763 6.67661 48.9925 6.83472 49.2919 7.02128C49.4945 7.15817 49.7478 7.34844 50.0517 7.5921C50.3175 7.79379 50.5419 8.04475 50.7128 8.3313C50.866 8.62166 50.9846 8.92903 51.066 9.24707C51.1656 9.62309 51.2017 10.0131 51.1728 10.401C51.1457 10.9549 50.9974 11.496 50.7384 11.9863C50.4795 12.4766 50.1161 12.9042 49.6739 13.2387C48.665 14.0134 47.4173 14.4114 46.1463 14.3639C44.3894 14.3648 42.6581 13.9422 41.0992 13.1319C41.0605 13.1123 41.0265 13.0846 40.9995 13.0505C40.9726 13.0165 40.9534 12.977 40.9432 12.9348C40.9107 12.8531 40.9107 12.762 40.9432 12.6802L41.8507 10.9636C41.8708 10.9239 41.8986 10.8886 41.9324 10.8597C41.9663 10.8308 42.0055 10.8089 42.0479 10.7953C42.088 10.7776 42.1313 10.7685 42.1752 10.7685C42.219 10.7685 42.2623 10.7776 42.3025 10.7953C43.449 11.3865 44.7098 11.7227 45.9984 11.7809C46.5234 11.8005 47.044 11.6785 47.5056 11.4277C47.6881 11.3311 47.846 11.1939 47.9671 11.0265C48.0881 10.8592 48.1691 10.6663 48.2037 10.4626C48.2465 10.2482 48.2244 10.0258 48.1403 9.82394C48.0562 9.62207 47.9138 9.44983 47.7314 9.32921C47.2048 8.97418 46.6235 8.70782 46.0107 8.54073C45.0362 8.27649 44.0867 7.92746 43.1731 7.49765C41.8042 6.7612 41.1198 5.6661 41.1198 4.21235C41.0933 3.66205 41.1902 3.11279 41.4033 2.60475C41.6165 2.09672 41.9405 1.64277 42.3517 1.27611C43.2571 0.526013 44.4091 0.139564 45.5837 0.191965C47.2298 0.229035 48.8498 0.61096 50.3391 1.31307C50.3826 1.32813 50.4221 1.35287 50.4547 1.38543C50.4872 1.41799 50.5119 1.45751 50.5269 1.50101C50.542 1.54452 50.5469 1.59087 50.5414 1.63656C50.5359 1.68226 50.5201 1.72611 50.4952 1.7648L49.7642 3.48137C49.7489 3.52499 49.7247 3.56498 49.6932 3.59885C49.6617 3.63271 49.6236 3.65974 49.5812 3.67823C49.5389 3.69672 49.4931 3.70629 49.4469 3.70633C49.4006 3.70638 49.3549 3.6969 49.3125 3.67849C48.2054 3.16466 47.0115 2.86375 45.7931 2.79146C44.583 2.79146 43.9588 3.21855 43.9205 4.07273Z" fill="#9BA1AB"/>
<path d="M59.9064 0.414918L65.976 13.8846C65.9924 13.9193 66.0009 13.9572 66.0009 13.9955C66.0009 14.0339 65.9924 14.0718 65.976 14.1064C65.9599 14.1405 65.9343 14.1692 65.9022 14.1889C65.8701 14.2086 65.8329 14.2185 65.7953 14.2173H63.3313C63.2291 14.2278 63.1264 14.2019 63.0415 14.144C62.9565 14.0861 62.8948 14.0001 62.8672 13.9011L61.6763 10.9854H57.3603L56.1816 13.8846C56.1499 13.9819 56.0866 14.0658 56.0018 14.1231C55.917 14.1804 55.8156 14.2077 55.7135 14.2009H53.2126C53.1749 14.202 53.1377 14.1921 53.1056 14.1724C53.0735 14.1527 53.0479 14.1241 53.0319 14.09C53.0123 14.056 53.0004 14.0183 52.9968 13.9793C52.9933 13.9403 52.9982 13.901 53.0113 13.8641L59.044 0.410812C59.0949 0.352551 59.1582 0.306444 59.2292 0.275885C59.3003 0.245325 59.3773 0.23109 59.4546 0.234227C59.5391 0.223489 59.6249 0.234444 59.7039 0.266058C59.7829 0.297673 59.8526 0.348904 59.9064 0.414918ZM59.4957 5.6755L58.2637 8.7719H60.7277L59.4957 5.6755Z" fill="#9BA1AB"/>
</svg>
</div>
</div>
</div>
<div class="report-title">
3rd-Party
</div>
<div class="report-title">
Software Report for
</div>
<div class="report-title">
<span class="bolded">neocities</span>
</div>
<div class="thanks">
The following 3rd-party software packages may be used by or distributed with <b>neocities</b>. Any information relevant to third-party vendors listed below are collected using common, reasonable means.
</div>
<footer>
<span>
<div class="bolded">
Generated
</div>
<div>
9/20/2024
</div>
</span>
<span>
<div class="bolded">
Revision
</div>
<div class="ellipses-truncate">
532d2a79bdeed8794fdde5a55ec884fccd563156
</div>
</span>
</footer>
</div>
<!-- Main Content! -->
<div class="main-content-container">
<!-- Table of Contents -->
<div class="table-of-contents">
<h4>
Table of Contents
</h4>
<div class="table-of-contents__row">
<a href="#first-party-licenses" onclick="highlight(this)">
First Party Licenses
</a>
</div>
<div class="table-of-contents__row">
<a href="#dependencies" onclick="highlight(this)">
Dependencies
</a>
</div>
<div class="table-of-contents__row">
<a href="#licenses" onclick="highlight(this)">
Licenses
</a>
</div>
<div class="table-of-contents__row">
<a href="#copyrights" onclick="highlight(this)">
Copyrights
</a>
</div>
</div>
<!-- Content container -->
<div class="content-container">
<!-- First Party Licenses section -->
<div class="content-section">
<a name="first-party-licenses">
<h2>
First Party Licenses
</h2>
</a>
<div class="div-table first-party-licenses">
<div class="header">
<span>License</span>
<span>File Count</span>
<span>Text</span>
</div>
<div class="row">
<span>
Creative Commons Attribution Non Commercial Share Alike 4.0
</span>
<span>
3
</span>
<div class="show-more margin-bottom-xs first-party-license-0 neutral-gray">
<pre class="content">
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Creative Commons Corporation ("Creative Commons") is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an "as-is" basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible.
Using Creative Commons Public Licenses
Creative Commons public licenses provide a standard set of terms and conditions that creators and other rights holders may use to share original works of authorship and other material subject to copyright and certain other rights specified in the public license below. The following considerations are for informational purposes only, are not exhaustive, and do not form part of our licenses.
Considerations for licensors: Our public licenses are intended for use by those authorized to give the public permission to use material in ways otherwise restricted by copyright and certain other rights. Our licenses are irrevocable. Licensors should read and understand the terms and conditions of the license they choose before applying it. Licensors should also secure all rights necessary before applying our licenses so that the public can reuse the material as expected. Licensors should clearly mark any material not subject to the license. This includes other CC-licensed material, or material used under an exception or limitation to copyright. More considerations for licensors : wiki.creativecommons.org/Considerations_for_licensors
Considerations for the public: By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor's permission is not necessary for any reason–for example, because of any applicable exception or limitation to copyright–then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. More considerations for the public : wiki.creativecommons.org/Considerations_for_licensees
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License
By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions.
Section 1 – Definitions.
a. Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image.
b. Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License.
c. BY-NC-SA Compatible License means a license listed at creativecommons.org/compatiblelicenses, approved by Creative Commons as essentially the equivalent of this Public License.
d. Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.
e. Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements.
f. Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material.
g. License Elements means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution, NonCommercial, and ShareAlike.
h. Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License.
i. Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license.
j. Licensor means the individual(s) or entity(ies) granting rights under this Public License.
k. NonCommercial means not primarily intended for or directed towards commercial advantage or monetary compensation. For purposes of this Public License, the exchange of the Licensed Material for other material subject to Copyright and Similar Rights by digital file-sharing or similar means is NonCommercial provided there is no payment of monetary compensation in connection with the exchange.
l. Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them.
m. Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.
n. You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning.
Section 2 – Scope.
a. License grant.
1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to:
A. reproduce and Share the Licensed Material, in whole or in part, for NonCommercial purposes only; and
B. produce, reproduce, and Share Adapted Material for NonCommercial purposes only.
2. Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions.
3. Term. The term of this Public License is specified in Section 6(a).
4. Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material.
5. Downstream recipients.
A. Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License.
B. Additional offer from the Licensor – Adapted Material. Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapter's License You apply.
C. No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material.
6. No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i).
b. Other rights.
1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise.
2. Patent and trademark rights are not licensed under this Public License.
3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties, including when the Licensed Material is used other than for NonCommercial purposes.
Section 3 – License Conditions.
Your exercise of the Licensed Rights is expressly made subject to the following conditions.
a. Attribution.
1. If You Share the Licensed Material (including in modified form), You must:
A. retain the following if it is supplied by the Licensor with the Licensed Material:
i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated);
ii. a copyright notice;
iii. a notice that refers to this Public License;
iv. a notice that refers to the disclaimer of warranties;
v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable;
B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and
C. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License.
2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information.
3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable.
b. ShareAlike.In addition to the conditions in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply.
1. The Adapter's License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-NC-SA Compatible License.
2. You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material.
3. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply.
Section 4 – Sui Generis Database Rights.
Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:
a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database for NonCommercial purposes only;
b. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section 3(b); and
c. You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database.
For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights.
Section 5 – Disclaimer of Warranties and Limitation of Liability.
a. Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.
b. To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.
c. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability.
Section 6 – Term and Termination.
a. This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically.
b. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates:
1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or
2. upon express reinstatement by the Licensor.
For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License.
c. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License.
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public License.
Section 7 – Other Terms and Conditions.
a. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed.
b. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License.
Section 8 – Interpretation.
a. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License.
b. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions.
c. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor.
d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.
Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the "Licensor." The text of the Creative Commons public licenses is dedicated to the public domain under the CC0 Public Domain Dedication. Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark "Creative Commons" or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses.
Creative Commons may be contacted at creativecommons.org.
</pre>
<div class="show-more-button" onclick="toggleMore(this, 'first-party-license-0')">
<svg xmlns="http://www.w3.org/2000/svg" height="1em"
viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z" />
</svg> Show More
</div>
</div>
</div>
<div class="row">
<span>
GNU General Public License v3.0 only
</span>
<span>
2
</span>
<div class="show-more margin-bottom-xs first-party-license-1 neutral-gray">
<pre class="content">
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright © 2007 Free Software Foundation, Inc. <http s ://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for software and other kinds of works.
The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.
When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.
Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.
Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based on the Program.
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), making available to the public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work.
A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.
The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.
The Corresponding Source for a work in source code form is that same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.
When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified it, and giving a relevant date.
b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices".
c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.
A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:
a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.
d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.
A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.
"Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.
If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).
The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or authors of the material; or
e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.
All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).
However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.
Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.
If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.
A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.
If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.
Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see <http s ://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <http s ://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <http s ://www.gnu.org/philosophy/why-not-lgpl.html>.
</pre>
<div class="show-more-button" onclick="toggleMore(this, 'first-party-license-1')">
<svg xmlns="http://www.w3.org/2000/svg" height="1em"
viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z" />
</svg> Show More
</div>
</div>
</div>
<div class="row">
<span>
MIT License
</span>
<span>
4
</span>
<div class="show-more margin-bottom-xs first-party-license-2 neutral-gray">
<pre class="content">
MIT License
Copyright (c) <year> <copyright holders>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
</pre>
<div class="show-more-button" onclick="toggleMore(this, 'first-party-license-2')">
<svg xmlns="http://www.w3.org/2000/svg" height="1em"
viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z" />
</svg> Show More
</div>
</div>
</div>
</div>
</div>
<div class="content-section">
<a name="dependencies">
<h2>
Dependencies
</h2>
</a>
<div class="name-pill margin-bottom-md" id="Jinja2">
<a href="https://pypi.org/project/Jinja2/"> Jinja2 (3.1.4)</a> <span class="dep-locator">pip+Jinja2</span>
</div>
<div class="dependency-info">
<h4 class="bolded">
Declared License(s)
</h4>
<h4>
BSD-3-Clause
</h4>
<div class="show-more margin-bottom-xs direct-attribution-notice-0-0 neutral-gray">
<pre class="content">
Copyright 2007 Pallets
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
</pre>
<div class="show-more-button" onclick="toggleMore(this, 'direct-attribution-notice-0-0')">
<svg xmlns="http://www.w3.org/2000/svg" height="1em"
viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z" />
</svg> Show More
</div>
</div>
</div>
<div class="name-pill margin-bottom-md" id="Nikola">
<a href="https://getnikola.com/"> Nikola (8.3.1)</a> <span class="dep-locator">pip+Nikola</span>
</div>
<div class="dependency-info">
<h4 class="bolded">
Declared License(s)
</h4>
<h4>
MIT
</h4>
<div class="show-more margin-bottom-xs direct-attribution-notice-1-0 neutral-gray">
<pre class="content">
Copyright © 2012-2024 Roberto Alsina and others.
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the
Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the
Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice
shall be included in all copies or substantial portions of
the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
</pre>
<div class="show-more-button" onclick="toggleMore(this, 'direct-attribution-notice-1-0')">
<svg xmlns="http://www.w3.org/2000/svg" height="1em"
viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path
d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z" />
</svg> Show More
</div>
</div>
<h4 class="bolded">
Other License(s)
</h4>
<h4>
BSD-3-Clause, BSD-2-Clause, CC-BY-3.0, CC-BY-NC-ND-3.0, CC-BY-NC-SA-4.0, CC0-1.0, GPL-2.0-or-later, GPL-2.0-only, public-domain, gutenberg-2020, ISC, MS-PL </h4>
<div class="show-more margin-bottom-xs direct-other-attribution-notice-1-0 neutral-gray">
<pre class="content">
Copyright (c) 2016-2024 Chris Warrick. . All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE