polars-df 0.4.0-x86_64-darwin → 0.5.0-x86_64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/Cargo.lock +272 -191
- data/Cargo.toml +0 -1
- data/LICENSE-THIRD-PARTY.txt +2043 -1202
- data/README.md +2 -2
- data/lib/polars/3.0/polars.bundle +0 -0
- data/lib/polars/3.1/polars.bundle +0 -0
- data/lib/polars/3.2/polars.bundle +0 -0
- data/lib/polars/convert.rb +2 -2
- data/lib/polars/data_frame.rb +201 -50
- data/lib/polars/data_types.rb +6 -4
- data/lib/polars/date_time_expr.rb +142 -2
- data/lib/polars/expr.rb +70 -10
- data/lib/polars/lazy_frame.rb +4 -3
- data/lib/polars/lazy_functions.rb +4 -1
- data/lib/polars/list_expr.rb +68 -19
- data/lib/polars/series.rb +181 -73
- data/lib/polars/string_expr.rb +149 -43
- data/lib/polars/string_name_space.rb +4 -4
- data/lib/polars/struct_name_space.rb +32 -0
- data/lib/polars/utils.rb +41 -7
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +2 -2
- metadata +2 -2
data/LICENSE-THIRD-PARTY.txt
CHANGED
@@ -14,7 +14,7 @@ ahash v0.8.3
|
|
14
14
|
https://github.com/tkaitchuck/ahash
|
15
15
|
MIT OR Apache-2.0
|
16
16
|
|
17
|
-
aho-corasick
|
17
|
+
aho-corasick v1.0.1
|
18
18
|
https://github.com/BurntSushi/aho-corasick
|
19
19
|
Unlicense OR MIT
|
20
20
|
|
@@ -26,6 +26,10 @@ alloc-stdlib v0.2.2
|
|
26
26
|
https://github.com/dropbox/rust-alloc-no-stdlib
|
27
27
|
BSD-3-Clause
|
28
28
|
|
29
|
+
argminmax v0.6.1
|
30
|
+
https://github.com/jvdd/argminmax
|
31
|
+
MIT
|
32
|
+
|
29
33
|
array-init-cursor v0.2.0
|
30
34
|
https://github.com/planus-org/planus
|
31
35
|
MIT/Apache-2.0
|
@@ -34,15 +38,15 @@ arrow-format v0.8.1
|
|
34
38
|
https://github.com/DataEngineeringLabs/arrow-format
|
35
39
|
Apache-2.0
|
36
40
|
|
37
|
-
arrow2 v0.17.
|
41
|
+
arrow2 v0.17.1
|
38
42
|
https://github.com/jorgecarleitao/arrow2
|
39
43
|
Apache-2.0
|
40
44
|
|
41
|
-
async-stream v0.3.
|
45
|
+
async-stream v0.3.5
|
42
46
|
https://github.com/tokio-rs/async-stream
|
43
47
|
MIT
|
44
48
|
|
45
|
-
async-stream-impl v0.3.
|
49
|
+
async-stream-impl v0.3.5
|
46
50
|
https://github.com/tokio-rs/async-stream
|
47
51
|
MIT
|
48
52
|
|
@@ -110,14 +114,14 @@ chrono v0.4.24
|
|
110
114
|
https://github.com/chronotope/chrono
|
111
115
|
MIT/Apache-2.0
|
112
116
|
|
113
|
-
chrono-tz v0.8.
|
117
|
+
chrono-tz v0.8.2
|
114
118
|
https://github.com/chronotope/chrono-tz
|
115
119
|
MIT OR Apache-2.0
|
116
120
|
|
117
121
|
chrono-tz-build v0.1.0
|
118
122
|
MIT OR Apache-2.0
|
119
123
|
|
120
|
-
clang-sys v1.6.
|
124
|
+
clang-sys v1.6.1
|
121
125
|
https://github.com/KyleMayes/clang-sys
|
122
126
|
Apache-2.0
|
123
127
|
|
@@ -125,7 +129,7 @@ comfy-table v6.1.4
|
|
125
129
|
https://github.com/nukesor/comfy-table
|
126
130
|
MIT
|
127
131
|
|
128
|
-
core-foundation-sys v0.8.
|
132
|
+
core-foundation-sys v0.8.4
|
129
133
|
https://github.com/servo/core-foundation-rs
|
130
134
|
MIT / Apache-2.0
|
131
135
|
|
@@ -141,7 +145,7 @@ crc32fast v1.3.2
|
|
141
145
|
https://github.com/srijs/rust-crc32fast
|
142
146
|
MIT OR Apache-2.0
|
143
147
|
|
144
|
-
crossbeam-channel v0.5.
|
148
|
+
crossbeam-channel v0.5.8
|
145
149
|
https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel
|
146
150
|
MIT OR Apache-2.0
|
147
151
|
|
@@ -153,6 +157,10 @@ crossbeam-epoch v0.9.14
|
|
153
157
|
https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch
|
154
158
|
MIT OR Apache-2.0
|
155
159
|
|
160
|
+
crossbeam-queue v0.3.8
|
161
|
+
https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue
|
162
|
+
MIT OR Apache-2.0
|
163
|
+
|
156
164
|
crossbeam-utils v0.8.15
|
157
165
|
https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils
|
158
166
|
MIT OR Apache-2.0
|
@@ -161,14 +169,6 @@ crossterm v0.25.0
|
|
161
169
|
https://github.com/crossterm-rs/crossterm
|
162
170
|
MIT
|
163
171
|
|
164
|
-
dirs v4.0.0
|
165
|
-
https://github.com/soc/dirs-rs
|
166
|
-
MIT OR Apache-2.0
|
167
|
-
|
168
|
-
dirs-sys v0.3.7
|
169
|
-
https://github.com/dirs-dev/dirs-sys-rs
|
170
|
-
MIT OR Apache-2.0
|
171
|
-
|
172
172
|
dyn-clone v1.0.11
|
173
173
|
https://github.com/dtolnay/dyn-clone
|
174
174
|
MIT OR Apache-2.0
|
@@ -193,7 +193,7 @@ fast-float v0.2.0
|
|
193
193
|
https://github.com/aldanor/fast-float-rust
|
194
194
|
MIT OR Apache-2.0
|
195
195
|
|
196
|
-
flate2 v1.0.
|
196
|
+
flate2 v1.0.26
|
197
197
|
https://github.com/rust-lang/flate2-rs
|
198
198
|
MIT OR Apache-2.0
|
199
199
|
|
@@ -205,43 +205,43 @@ foreign_vec v0.1.0
|
|
205
205
|
https://github.com/DataEngineeringLabs/foreign_vec
|
206
206
|
MIT
|
207
207
|
|
208
|
-
futures v0.3.
|
208
|
+
futures v0.3.28
|
209
209
|
https://rust-lang.github.io/futures-rs
|
210
210
|
MIT OR Apache-2.0
|
211
211
|
|
212
|
-
futures-channel v0.3.
|
212
|
+
futures-channel v0.3.28
|
213
213
|
https://rust-lang.github.io/futures-rs
|
214
214
|
MIT OR Apache-2.0
|
215
215
|
|
216
|
-
futures-core v0.3.
|
216
|
+
futures-core v0.3.28
|
217
217
|
https://rust-lang.github.io/futures-rs
|
218
218
|
MIT OR Apache-2.0
|
219
219
|
|
220
|
-
futures-executor v0.3.
|
220
|
+
futures-executor v0.3.28
|
221
221
|
https://rust-lang.github.io/futures-rs
|
222
222
|
MIT OR Apache-2.0
|
223
223
|
|
224
|
-
futures-io v0.3.
|
224
|
+
futures-io v0.3.28
|
225
225
|
https://rust-lang.github.io/futures-rs
|
226
226
|
MIT OR Apache-2.0
|
227
227
|
|
228
|
-
futures-macro v0.3.
|
228
|
+
futures-macro v0.3.28
|
229
229
|
https://rust-lang.github.io/futures-rs
|
230
230
|
MIT OR Apache-2.0
|
231
231
|
|
232
|
-
futures-sink v0.3.
|
232
|
+
futures-sink v0.3.28
|
233
233
|
https://rust-lang.github.io/futures-rs
|
234
234
|
MIT OR Apache-2.0
|
235
235
|
|
236
|
-
futures-task v0.3.
|
236
|
+
futures-task v0.3.28
|
237
237
|
https://rust-lang.github.io/futures-rs
|
238
238
|
MIT OR Apache-2.0
|
239
239
|
|
240
|
-
futures-util v0.3.
|
240
|
+
futures-util v0.3.28
|
241
241
|
https://rust-lang.github.io/futures-rs
|
242
242
|
MIT OR Apache-2.0
|
243
243
|
|
244
|
-
getrandom v0.2.
|
244
|
+
getrandom v0.2.9
|
245
245
|
https://github.com/rust-random/getrandom
|
246
246
|
MIT OR Apache-2.0
|
247
247
|
|
@@ -249,7 +249,7 @@ glob v0.3.1
|
|
249
249
|
https://github.com/rust-lang/glob
|
250
250
|
MIT OR Apache-2.0
|
251
251
|
|
252
|
-
halfbrown v0.1
|
252
|
+
halfbrown v0.2.1
|
253
253
|
https://github.com/Licenser/halfbrown
|
254
254
|
Apache-2.0/MIT
|
255
255
|
|
@@ -273,7 +273,11 @@ hex v0.4.3
|
|
273
273
|
https://github.com/KokaKiwi/rust-hex
|
274
274
|
MIT OR Apache-2.0
|
275
275
|
|
276
|
-
|
276
|
+
home v0.5.5
|
277
|
+
https://github.com/rust-lang/cargo
|
278
|
+
MIT OR Apache-2.0
|
279
|
+
|
280
|
+
iana-time-zone v0.1.56
|
277
281
|
https://github.com/strawlab/iana-time-zone
|
278
282
|
MIT OR Apache-2.0
|
279
283
|
|
@@ -337,7 +341,7 @@ lexical-write-integer v0.8.5
|
|
337
341
|
https://github.com/Alexhuszagh/rust-lexical
|
338
342
|
MIT/Apache-2.0
|
339
343
|
|
340
|
-
libc v0.2.
|
344
|
+
libc v0.2.144
|
341
345
|
https://github.com/rust-lang/libc
|
342
346
|
MIT OR Apache-2.0
|
343
347
|
|
@@ -357,7 +361,7 @@ libm v0.2.6
|
|
357
361
|
https://github.com/rust-lang/libm
|
358
362
|
MIT OR Apache-2.0
|
359
363
|
|
360
|
-
libmimalloc-sys v0.1.
|
364
|
+
libmimalloc-sys v0.1.33
|
361
365
|
https://github.com/purpleprotocol/mimalloc_rust/tree/master/libmimalloc-sys
|
362
366
|
MIT
|
363
367
|
|
@@ -377,7 +381,7 @@ lz4-sys v1.9.4
|
|
377
381
|
https://github.com/10xGenomics/lz4-rs
|
378
382
|
MIT
|
379
383
|
|
380
|
-
magnus v0.5.
|
384
|
+
magnus v0.5.3
|
381
385
|
https://github.com/matsadler/magnus
|
382
386
|
MIT
|
383
387
|
|
@@ -397,7 +401,7 @@ memoffset v0.8.0
|
|
397
401
|
https://github.com/Gilnaa/memoffset
|
398
402
|
MIT
|
399
403
|
|
400
|
-
mimalloc v0.1.
|
404
|
+
mimalloc v0.1.37
|
401
405
|
https://github.com/purpleprotocol/mimalloc_rust
|
402
406
|
MIT
|
403
407
|
|
@@ -405,7 +409,7 @@ minimal-lexical v0.2.1
|
|
405
409
|
https://github.com/Alexhuszagh/minimal-lexical
|
406
410
|
MIT/Apache-2.0
|
407
411
|
|
408
|
-
miniz_oxide v0.
|
412
|
+
miniz_oxide v0.7.1
|
409
413
|
https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide
|
410
414
|
MIT OR Zlib OR Apache-2.0
|
411
415
|
|
@@ -457,7 +461,7 @@ parquet-format-safe v0.2.4
|
|
457
461
|
https://github.com/jorgecarleitao/parquet-format-safe
|
458
462
|
MIT/Apache-2.0
|
459
463
|
|
460
|
-
parquet2 v0.17.
|
464
|
+
parquet2 v0.17.2
|
461
465
|
https://github.com/jorgecarleitao/parquet2
|
462
466
|
Apache-2.0
|
463
467
|
|
@@ -493,7 +497,7 @@ pin-utils v0.1.0
|
|
493
497
|
https://github.com/rust-lang-nursery/pin-utils
|
494
498
|
MIT OR Apache-2.0
|
495
499
|
|
496
|
-
pkg-config v0.3.
|
500
|
+
pkg-config v0.3.27
|
497
501
|
https://github.com/rust-lang/pkg-config-rs
|
498
502
|
MIT OR Apache-2.0
|
499
503
|
|
@@ -501,60 +505,64 @@ planus v0.3.1
|
|
501
505
|
https://github.com/planus-org/planus
|
502
506
|
MIT/Apache-2.0
|
503
507
|
|
504
|
-
polars v0.
|
508
|
+
polars v0.29.0
|
505
509
|
https://github.com/pola-rs/polars
|
506
510
|
MIT
|
507
511
|
|
508
|
-
polars-arrow v0.
|
512
|
+
polars-arrow v0.29.0
|
509
513
|
MIT
|
510
514
|
|
511
|
-
polars-core v0.
|
515
|
+
polars-core v0.29.0
|
512
516
|
https://github.com/pola-rs/polars
|
513
517
|
MIT
|
514
518
|
|
515
|
-
polars-error v0.
|
519
|
+
polars-error v0.29.0
|
516
520
|
https://github.com/pola-rs/polars
|
517
521
|
MIT
|
518
522
|
|
519
|
-
polars-io v0.
|
523
|
+
polars-io v0.29.0
|
520
524
|
https://github.com/pola-rs/polars
|
521
525
|
MIT
|
522
526
|
|
523
|
-
polars-lazy v0.
|
527
|
+
polars-lazy v0.29.0
|
524
528
|
https://github.com/pola-rs/polars
|
525
529
|
MIT
|
526
530
|
|
527
|
-
polars-ops v0.
|
531
|
+
polars-ops v0.29.0
|
528
532
|
https://github.com/pola-rs/polars
|
529
533
|
MIT
|
530
534
|
|
531
|
-
polars-pipe v0.
|
535
|
+
polars-pipe v0.29.0
|
532
536
|
https://github.com/pola-rs/polars
|
533
537
|
MIT
|
534
538
|
|
535
|
-
polars-plan v0.
|
539
|
+
polars-plan v0.29.0
|
536
540
|
https://github.com/pola-rs/polars
|
537
541
|
MIT
|
538
542
|
|
539
|
-
polars-row v0.
|
543
|
+
polars-row v0.29.0
|
540
544
|
https://github.com/pola-rs/polars
|
541
545
|
MIT
|
542
546
|
|
543
|
-
polars-
|
547
|
+
polars-sql v0.29.0
|
548
|
+
https://github.com/pola-rs/polars
|
544
549
|
MIT
|
545
550
|
|
546
|
-
polars-
|
551
|
+
polars-time v0.29.0
|
552
|
+
MIT
|
553
|
+
|
554
|
+
polars-utils v0.29.0
|
547
555
|
MIT
|
548
556
|
|
549
557
|
ppv-lite86 v0.2.17
|
550
558
|
https://github.com/cryptocorrosion/cryptocorrosion
|
551
559
|
MIT/Apache-2.0
|
552
560
|
|
553
|
-
proc-macro2 v1.0.
|
561
|
+
proc-macro2 v1.0.56
|
554
562
|
https://github.com/dtolnay/proc-macro2
|
555
563
|
MIT OR Apache-2.0
|
556
564
|
|
557
|
-
quote v1.0.
|
565
|
+
quote v1.0.27
|
558
566
|
https://github.com/dtolnay/quote
|
559
567
|
MIT OR Apache-2.0
|
560
568
|
|
@@ -582,11 +590,11 @@ rayon-core v1.11.0
|
|
582
590
|
https://github.com/rayon-rs/rayon
|
583
591
|
MIT OR Apache-2.0
|
584
592
|
|
585
|
-
rb-sys v0.9.
|
593
|
+
rb-sys v0.9.75
|
586
594
|
https://github.com/oxidize-rb/rb-sys
|
587
595
|
MIT OR Apache-2.0
|
588
596
|
|
589
|
-
rb-sys-build v0.9.
|
597
|
+
rb-sys-build v0.9.75
|
590
598
|
https://github.com/oxidize-rb/rb-sys
|
591
599
|
MIT OR Apache-2.0
|
592
600
|
|
@@ -594,7 +602,7 @@ rb-sys-env v0.1.2
|
|
594
602
|
https://github.com/oxidize-rb/rb-sys
|
595
603
|
MIT OR Apache-2.0
|
596
604
|
|
597
|
-
regex v1.
|
605
|
+
regex v1.8.1
|
598
606
|
https://github.com/rust-lang/regex
|
599
607
|
MIT OR Apache-2.0
|
600
608
|
|
@@ -602,6 +610,10 @@ regex-syntax v0.6.29
|
|
602
610
|
https://github.com/rust-lang/regex
|
603
611
|
MIT OR Apache-2.0
|
604
612
|
|
613
|
+
regex-syntax v0.7.1
|
614
|
+
https://github.com/rust-lang/regex
|
615
|
+
MIT OR Apache-2.0
|
616
|
+
|
605
617
|
rle-decode-fast v1.0.3
|
606
618
|
https://github.com/WanzenBug/rle-decode-helper
|
607
619
|
MIT OR Apache-2.0
|
@@ -634,15 +646,15 @@ seq-macro v0.3.3
|
|
634
646
|
https://github.com/dtolnay/seq-macro
|
635
647
|
MIT OR Apache-2.0
|
636
648
|
|
637
|
-
serde v1.0.
|
649
|
+
serde v1.0.162
|
638
650
|
https://serde.rs
|
639
651
|
MIT OR Apache-2.0
|
640
652
|
|
641
|
-
serde_derive v1.0.
|
653
|
+
serde_derive v1.0.162
|
642
654
|
https://serde.rs
|
643
655
|
MIT OR Apache-2.0
|
644
656
|
|
645
|
-
serde_json v1.0.
|
657
|
+
serde_json v1.0.96
|
646
658
|
https://github.com/serde-rs/json
|
647
659
|
MIT OR Apache-2.0
|
648
660
|
|
@@ -666,7 +678,7 @@ signal-hook-registry v1.4.1
|
|
666
678
|
https://github.com/vorner/signal-hook
|
667
679
|
Apache-2.0/MIT
|
668
680
|
|
669
|
-
simd-json v0.
|
681
|
+
simd-json v0.9.2
|
670
682
|
https://github.com/simd-lite/simd-json
|
671
683
|
Apache-2.0 OR MIT
|
672
684
|
|
@@ -698,6 +710,10 @@ socket2 v0.4.9
|
|
698
710
|
https://github.com/rust-lang/socket2
|
699
711
|
MIT OR Apache-2.0
|
700
712
|
|
713
|
+
sqlparser v0.30.0
|
714
|
+
https://github.com/sqlparser-rs/sqlparser-rs
|
715
|
+
Apache-2.0
|
716
|
+
|
701
717
|
static_assertions v1.1.0
|
702
718
|
https://github.com/nvzqz/static-assertions-rs
|
703
719
|
MIT OR Apache-2.0
|
@@ -726,7 +742,7 @@ syn v1.0.109
|
|
726
742
|
https://github.com/dtolnay/syn
|
727
743
|
MIT OR Apache-2.0
|
728
744
|
|
729
|
-
syn v2.0.
|
745
|
+
syn v2.0.15
|
730
746
|
https://github.com/dtolnay/syn
|
731
747
|
MIT OR Apache-2.0
|
732
748
|
|
@@ -750,7 +766,7 @@ time v0.1.45
|
|
750
766
|
https://github.com/time-rs/time
|
751
767
|
MIT/Apache-2.0
|
752
768
|
|
753
|
-
tokio v1.
|
769
|
+
tokio v1.28.0
|
754
770
|
https://tokio.rs
|
755
771
|
MIT
|
756
772
|
|
@@ -762,7 +778,7 @@ unicode-width v0.1.10
|
|
762
778
|
https://github.com/unicode-rs/unicode-width
|
763
779
|
MIT/Apache-2.0
|
764
780
|
|
765
|
-
value-trait v0.
|
781
|
+
value-trait v0.6.0
|
766
782
|
https://github.com/simd-lite/value-trait
|
767
783
|
Apache-2.0/MIT
|
768
784
|
|
@@ -774,23 +790,15 @@ xxhash-rust v0.8.6
|
|
774
790
|
https://github.com/DoumanAsh/xxhash-rust
|
775
791
|
BSL-1.0
|
776
792
|
|
777
|
-
zstd v0.11.2+zstd.1.5.2
|
778
|
-
https://github.com/gyscos/zstd-rs
|
779
|
-
MIT
|
780
|
-
|
781
793
|
zstd v0.12.3+zstd.1.5.2
|
782
794
|
https://github.com/gyscos/zstd-rs
|
783
795
|
MIT
|
784
796
|
|
785
|
-
zstd-safe
|
797
|
+
zstd-safe v6.0.5+zstd.1.5.4
|
786
798
|
https://github.com/gyscos/zstd-rs
|
787
799
|
MIT/Apache-2.0
|
788
800
|
|
789
|
-
zstd-
|
790
|
-
https://github.com/gyscos/zstd-rs
|
791
|
-
MIT/Apache-2.0
|
792
|
-
|
793
|
-
zstd-sys v2.0.7+zstd.1.5.4
|
801
|
+
zstd-sys v2.0.8+zstd.1.5.5
|
794
802
|
https://github.com/gyscos/zstd-rs
|
795
803
|
MIT/Apache-2.0
|
796
804
|
|
@@ -1426,6 +1434,59 @@ Redistribution and use in source and binary forms, with or without modification,
|
|
1426
1434
|
|
1427
1435
|
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.
|
1428
1436
|
|
1437
|
+
================================================================================
|
1438
|
+
argminmax LICENSE
|
1439
|
+
================================================================================
|
1440
|
+
|
1441
|
+
MIT License
|
1442
|
+
|
1443
|
+
Copyright (c) 2022 Jeroen Van Der Donckt
|
1444
|
+
|
1445
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
1446
|
+
of this software and associated documentation files (the "Software"), to deal
|
1447
|
+
in the Software without restriction, including without limitation the rights
|
1448
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1449
|
+
copies of the Software, and to permit persons to whom the Software is
|
1450
|
+
furnished to do so, subject to the following conditions:
|
1451
|
+
|
1452
|
+
The above copyright notice and this permission notice shall be included in all
|
1453
|
+
copies or substantial portions of the Software.
|
1454
|
+
|
1455
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
1456
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
1457
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
1458
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
1459
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
1460
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
1461
|
+
SOFTWARE.
|
1462
|
+
|
1463
|
+
================================================================================
|
1464
|
+
array-init-cursor LICENSE-MIT
|
1465
|
+
================================================================================
|
1466
|
+
|
1467
|
+
MIT License
|
1468
|
+
|
1469
|
+
Copyright (c) 2021 The Planus Project Developers
|
1470
|
+
|
1471
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
1472
|
+
of this software and associated documentation files (the "Software"), to deal
|
1473
|
+
in the Software without restriction, including without limitation the rights
|
1474
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1475
|
+
copies of the Software, and to permit persons to whom the Software is
|
1476
|
+
furnished to do so, subject to the following conditions:
|
1477
|
+
|
1478
|
+
The above copyright notice and this permission notice shall be included in all
|
1479
|
+
copies or substantial portions of the Software.
|
1480
|
+
|
1481
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
1482
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
1483
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
1484
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
1485
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
1486
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
1487
|
+
SOFTWARE.
|
1488
|
+
|
1489
|
+
|
1429
1490
|
================================================================================
|
1430
1491
|
array-init-cursor LICENSE-APACHE
|
1431
1492
|
================================================================================
|
@@ -1609,230 +1670,203 @@ END OF TERMS AND CONDITIONS
|
|
1609
1670
|
|
1610
1671
|
|
1611
1672
|
================================================================================
|
1612
|
-
|
1673
|
+
arrow-format LICENSE
|
1613
1674
|
================================================================================
|
1614
1675
|
|
1615
|
-
MIT License
|
1616
1676
|
|
1617
|
-
|
1677
|
+
Apache License
|
1678
|
+
Version 2.0, January 2004
|
1679
|
+
https://www.apache.org/licenses/
|
1618
1680
|
|
1619
|
-
|
1620
|
-
of this software and associated documentation files (the "Software"), to deal
|
1621
|
-
in the Software without restriction, including without limitation the rights
|
1622
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
1623
|
-
copies of the Software, and to permit persons to whom the Software is
|
1624
|
-
furnished to do so, subject to the following conditions:
|
1681
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
1625
1682
|
|
1626
|
-
|
1627
|
-
copies or substantial portions of the Software.
|
1683
|
+
1. Definitions.
|
1628
1684
|
|
1629
|
-
|
1630
|
-
|
1631
|
-
|
1632
|
-
|
1633
|
-
|
1634
|
-
|
1635
|
-
|
1685
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
1686
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
1687
|
+
|
1688
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
1689
|
+
the copyright owner that is granting the License.
|
1690
|
+
|
1691
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
1692
|
+
other entities that control, are controlled by, or are under common
|
1693
|
+
control with that entity. For the purposes of this definition,
|
1694
|
+
"control" means (i) the power, direct or indirect, to cause the
|
1695
|
+
direction or management of such entity, whether by contract or
|
1696
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
1697
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
1698
|
+
|
1699
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
1700
|
+
exercising permissions granted by this License.
|
1701
|
+
|
1702
|
+
"Source" form shall mean the preferred form for making modifications,
|
1703
|
+
including but not limited to software source code, documentation
|
1704
|
+
source, and configuration files.
|
1705
|
+
|
1706
|
+
"Object" form shall mean any form resulting from mechanical
|
1707
|
+
transformation or translation of a Source form, including but
|
1708
|
+
not limited to compiled object code, generated documentation,
|
1709
|
+
and conversions to other media types.
|
1710
|
+
|
1711
|
+
"Work" shall mean the work of authorship, whether in Source or
|
1712
|
+
Object form, made available under the License, as indicated by a
|
1713
|
+
copyright notice that is included in or attached to the work
|
1714
|
+
(an example is provided in the Appendix below).
|
1715
|
+
|
1716
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
1717
|
+
form, that is based on (or derived from) the Work and for which the
|
1718
|
+
editorial revisions, annotations, elaborations, or other modifications
|
1719
|
+
represent, as a whole, an original work of authorship. For the purposes
|
1720
|
+
of this License, Derivative Works shall not include works that remain
|
1721
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
1722
|
+
the Work and Derivative Works thereof.
|
1723
|
+
|
1724
|
+
"Contribution" shall mean any work of authorship, including
|
1725
|
+
the original version of the Work and any modifications or additions
|
1726
|
+
to that Work or Derivative Works thereof, that is intentionally
|
1727
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
1728
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
1729
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
1730
|
+
means any form of electronic, verbal, or written communication sent
|
1731
|
+
to the Licensor or its representatives, including but not limited to
|
1732
|
+
communication on electronic mailing lists, source code control systems,
|
1733
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
1734
|
+
Licensor for the purpose of discussing and improving the Work, but
|
1735
|
+
excluding communication that is conspicuously marked or otherwise
|
1736
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
1737
|
+
|
1738
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
1739
|
+
on behalf of whom a Contribution has been received by Licensor and
|
1740
|
+
subsequently incorporated within the Work.
|
1741
|
+
|
1742
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
1743
|
+
this License, each Contributor hereby grants to You a perpetual,
|
1744
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
1745
|
+
copyright license to reproduce, prepare Derivative Works of,
|
1746
|
+
publicly display, publicly perform, sublicense, and distribute the
|
1747
|
+
Work and such Derivative Works in Source or Object form.
|
1636
1748
|
|
1749
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
1750
|
+
this License, each Contributor hereby grants to You a perpetual,
|
1751
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
1752
|
+
(except as stated in this section) patent license to make, have made,
|
1753
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
1754
|
+
where such license applies only to those patent claims licensable
|
1755
|
+
by such Contributor that are necessarily infringed by their
|
1756
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
1757
|
+
with the Work to which such Contribution(s) was submitted. If You
|
1758
|
+
institute patent litigation against any entity (including a
|
1759
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
1760
|
+
or a Contribution incorporated within the Work constitutes direct
|
1761
|
+
or contributory patent infringement, then any patent licenses
|
1762
|
+
granted to You under this License for that Work shall terminate
|
1763
|
+
as of the date such litigation is filed.
|
1764
|
+
|
1765
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
1766
|
+
Work or Derivative Works thereof in any medium, with or without
|
1767
|
+
modifications, and in Source or Object form, provided that You
|
1768
|
+
meet the following conditions:
|
1769
|
+
|
1770
|
+
(a) You must give any other recipients of the Work or
|
1771
|
+
Derivative Works a copy of this License; and
|
1772
|
+
|
1773
|
+
(b) You must cause any modified files to carry prominent notices
|
1774
|
+
stating that You changed the files; and
|
1775
|
+
|
1776
|
+
(c) You must retain, in the Source form of any Derivative Works
|
1777
|
+
that You distribute, all copyright, patent, trademark, and
|
1778
|
+
attribution notices from the Source form of the Work,
|
1779
|
+
excluding those notices that do not pertain to any part of
|
1780
|
+
the Derivative Works; and
|
1781
|
+
|
1782
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
1783
|
+
distribution, then any Derivative Works that You distribute must
|
1784
|
+
include a readable copy of the attribution notices contained
|
1785
|
+
within such NOTICE file, excluding those notices that do not
|
1786
|
+
pertain to any part of the Derivative Works, in at least one
|
1787
|
+
of the following places: within a NOTICE text file distributed
|
1788
|
+
as part of the Derivative Works; within the Source form or
|
1789
|
+
documentation, if provided along with the Derivative Works; or,
|
1790
|
+
within a display generated by the Derivative Works, if and
|
1791
|
+
wherever such third-party notices normally appear. The contents
|
1792
|
+
of the NOTICE file are for informational purposes only and
|
1793
|
+
do not modify the License. You may add Your own attribution
|
1794
|
+
notices within Derivative Works that You distribute, alongside
|
1795
|
+
or as an addendum to the NOTICE text from the Work, provided
|
1796
|
+
that such additional attribution notices cannot be construed
|
1797
|
+
as modifying the License.
|
1798
|
+
|
1799
|
+
You may add Your own copyright statement to Your modifications and
|
1800
|
+
may provide additional or different license terms and conditions
|
1801
|
+
for use, reproduction, or distribution of Your modifications, or
|
1802
|
+
for any such Derivative Works as a whole, provided Your use,
|
1803
|
+
reproduction, and distribution of the Work otherwise complies with
|
1804
|
+
the conditions stated in this License.
|
1805
|
+
|
1806
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
1807
|
+
any Contribution intentionally submitted for inclusion in the Work
|
1808
|
+
by You to the Licensor shall be under the terms and conditions of
|
1809
|
+
this License, without any additional terms or conditions.
|
1810
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
1811
|
+
the terms of any separate license agreement you may have executed
|
1812
|
+
with Licensor regarding such Contributions.
|
1813
|
+
|
1814
|
+
6. Trademarks. This License does not grant permission to use the trade
|
1815
|
+
names, trademarks, service marks, or product names of the Licensor,
|
1816
|
+
except as required for reasonable and customary use in describing the
|
1817
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
1818
|
+
|
1819
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
1820
|
+
agreed to in writing, Licensor provides the Work (and each
|
1821
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
1822
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
1823
|
+
implied, including, without limitation, any warranties or conditions
|
1824
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
1825
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
1826
|
+
appropriateness of using or redistributing the Work and assume any
|
1827
|
+
risks associated with Your exercise of permissions under this License.
|
1828
|
+
|
1829
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
1830
|
+
whether in tort (including negligence), contract, or otherwise,
|
1831
|
+
unless required by applicable law (such as deliberate and grossly
|
1832
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
1833
|
+
liable to You for damages, including any direct, indirect, special,
|
1834
|
+
incidental, or consequential damages of any character arising as a
|
1835
|
+
result of this License or out of the use or inability to use the
|
1836
|
+
Work (including but not limited to damages for loss of goodwill,
|
1837
|
+
work stoppage, computer failure or malfunction, or any and all
|
1838
|
+
other commercial damages or losses), even if such Contributor
|
1839
|
+
has been advised of the possibility of such damages.
|
1840
|
+
|
1841
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
1842
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
1843
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
1844
|
+
or other liability obligations and/or rights consistent with this
|
1845
|
+
License. However, in accepting such obligations, You may act only
|
1846
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
1847
|
+
of any other Contributor, and only if You agree to indemnify,
|
1848
|
+
defend, and hold each Contributor harmless for any liability
|
1849
|
+
incurred by, or claims asserted against, such Contributor by reason
|
1850
|
+
of your accepting any such warranty or additional liability.
|
1851
|
+
|
1852
|
+
END OF TERMS AND CONDITIONS
|
1853
|
+
|
1854
|
+
Copyright 2020-2022 Jorge C. Leitão
|
1855
|
+
|
1856
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
1857
|
+
you may not use this file except in compliance with the License.
|
1858
|
+
You may obtain a copy of the License at
|
1859
|
+
|
1860
|
+
https://www.apache.org/licenses/LICENSE-2.0
|
1861
|
+
|
1862
|
+
Unless required by applicable law or agreed to in writing, software
|
1863
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
1864
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
1865
|
+
See the License for the specific language governing permissions and
|
1866
|
+
limitations under the License.
|
1637
1867
|
|
1638
1868
|
================================================================================
|
1639
|
-
|
1640
|
-
================================================================================
|
1641
|
-
|
1642
|
-
|
1643
|
-
Apache License
|
1644
|
-
Version 2.0, January 2004
|
1645
|
-
https://www.apache.org/licenses/
|
1646
|
-
|
1647
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
1648
|
-
|
1649
|
-
1. Definitions.
|
1650
|
-
|
1651
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
1652
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
1653
|
-
|
1654
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
1655
|
-
the copyright owner that is granting the License.
|
1656
|
-
|
1657
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
1658
|
-
other entities that control, are controlled by, or are under common
|
1659
|
-
control with that entity. For the purposes of this definition,
|
1660
|
-
"control" means (i) the power, direct or indirect, to cause the
|
1661
|
-
direction or management of such entity, whether by contract or
|
1662
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
1663
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
1664
|
-
|
1665
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
1666
|
-
exercising permissions granted by this License.
|
1667
|
-
|
1668
|
-
"Source" form shall mean the preferred form for making modifications,
|
1669
|
-
including but not limited to software source code, documentation
|
1670
|
-
source, and configuration files.
|
1671
|
-
|
1672
|
-
"Object" form shall mean any form resulting from mechanical
|
1673
|
-
transformation or translation of a Source form, including but
|
1674
|
-
not limited to compiled object code, generated documentation,
|
1675
|
-
and conversions to other media types.
|
1676
|
-
|
1677
|
-
"Work" shall mean the work of authorship, whether in Source or
|
1678
|
-
Object form, made available under the License, as indicated by a
|
1679
|
-
copyright notice that is included in or attached to the work
|
1680
|
-
(an example is provided in the Appendix below).
|
1681
|
-
|
1682
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
1683
|
-
form, that is based on (or derived from) the Work and for which the
|
1684
|
-
editorial revisions, annotations, elaborations, or other modifications
|
1685
|
-
represent, as a whole, an original work of authorship. For the purposes
|
1686
|
-
of this License, Derivative Works shall not include works that remain
|
1687
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
1688
|
-
the Work and Derivative Works thereof.
|
1689
|
-
|
1690
|
-
"Contribution" shall mean any work of authorship, including
|
1691
|
-
the original version of the Work and any modifications or additions
|
1692
|
-
to that Work or Derivative Works thereof, that is intentionally
|
1693
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
1694
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
1695
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
1696
|
-
means any form of electronic, verbal, or written communication sent
|
1697
|
-
to the Licensor or its representatives, including but not limited to
|
1698
|
-
communication on electronic mailing lists, source code control systems,
|
1699
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
1700
|
-
Licensor for the purpose of discussing and improving the Work, but
|
1701
|
-
excluding communication that is conspicuously marked or otherwise
|
1702
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
1703
|
-
|
1704
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
1705
|
-
on behalf of whom a Contribution has been received by Licensor and
|
1706
|
-
subsequently incorporated within the Work.
|
1707
|
-
|
1708
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
1709
|
-
this License, each Contributor hereby grants to You a perpetual,
|
1710
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
1711
|
-
copyright license to reproduce, prepare Derivative Works of,
|
1712
|
-
publicly display, publicly perform, sublicense, and distribute the
|
1713
|
-
Work and such Derivative Works in Source or Object form.
|
1714
|
-
|
1715
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
1716
|
-
this License, each Contributor hereby grants to You a perpetual,
|
1717
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
1718
|
-
(except as stated in this section) patent license to make, have made,
|
1719
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
1720
|
-
where such license applies only to those patent claims licensable
|
1721
|
-
by such Contributor that are necessarily infringed by their
|
1722
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
1723
|
-
with the Work to which such Contribution(s) was submitted. If You
|
1724
|
-
institute patent litigation against any entity (including a
|
1725
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
1726
|
-
or a Contribution incorporated within the Work constitutes direct
|
1727
|
-
or contributory patent infringement, then any patent licenses
|
1728
|
-
granted to You under this License for that Work shall terminate
|
1729
|
-
as of the date such litigation is filed.
|
1730
|
-
|
1731
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
1732
|
-
Work or Derivative Works thereof in any medium, with or without
|
1733
|
-
modifications, and in Source or Object form, provided that You
|
1734
|
-
meet the following conditions:
|
1735
|
-
|
1736
|
-
(a) You must give any other recipients of the Work or
|
1737
|
-
Derivative Works a copy of this License; and
|
1738
|
-
|
1739
|
-
(b) You must cause any modified files to carry prominent notices
|
1740
|
-
stating that You changed the files; and
|
1741
|
-
|
1742
|
-
(c) You must retain, in the Source form of any Derivative Works
|
1743
|
-
that You distribute, all copyright, patent, trademark, and
|
1744
|
-
attribution notices from the Source form of the Work,
|
1745
|
-
excluding those notices that do not pertain to any part of
|
1746
|
-
the Derivative Works; and
|
1747
|
-
|
1748
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
1749
|
-
distribution, then any Derivative Works that You distribute must
|
1750
|
-
include a readable copy of the attribution notices contained
|
1751
|
-
within such NOTICE file, excluding those notices that do not
|
1752
|
-
pertain to any part of the Derivative Works, in at least one
|
1753
|
-
of the following places: within a NOTICE text file distributed
|
1754
|
-
as part of the Derivative Works; within the Source form or
|
1755
|
-
documentation, if provided along with the Derivative Works; or,
|
1756
|
-
within a display generated by the Derivative Works, if and
|
1757
|
-
wherever such third-party notices normally appear. The contents
|
1758
|
-
of the NOTICE file are for informational purposes only and
|
1759
|
-
do not modify the License. You may add Your own attribution
|
1760
|
-
notices within Derivative Works that You distribute, alongside
|
1761
|
-
or as an addendum to the NOTICE text from the Work, provided
|
1762
|
-
that such additional attribution notices cannot be construed
|
1763
|
-
as modifying the License.
|
1764
|
-
|
1765
|
-
You may add Your own copyright statement to Your modifications and
|
1766
|
-
may provide additional or different license terms and conditions
|
1767
|
-
for use, reproduction, or distribution of Your modifications, or
|
1768
|
-
for any such Derivative Works as a whole, provided Your use,
|
1769
|
-
reproduction, and distribution of the Work otherwise complies with
|
1770
|
-
the conditions stated in this License.
|
1771
|
-
|
1772
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
1773
|
-
any Contribution intentionally submitted for inclusion in the Work
|
1774
|
-
by You to the Licensor shall be under the terms and conditions of
|
1775
|
-
this License, without any additional terms or conditions.
|
1776
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
1777
|
-
the terms of any separate license agreement you may have executed
|
1778
|
-
with Licensor regarding such Contributions.
|
1779
|
-
|
1780
|
-
6. Trademarks. This License does not grant permission to use the trade
|
1781
|
-
names, trademarks, service marks, or product names of the Licensor,
|
1782
|
-
except as required for reasonable and customary use in describing the
|
1783
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
1784
|
-
|
1785
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
1786
|
-
agreed to in writing, Licensor provides the Work (and each
|
1787
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
1788
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
1789
|
-
implied, including, without limitation, any warranties or conditions
|
1790
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
1791
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
1792
|
-
appropriateness of using or redistributing the Work and assume any
|
1793
|
-
risks associated with Your exercise of permissions under this License.
|
1794
|
-
|
1795
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
1796
|
-
whether in tort (including negligence), contract, or otherwise,
|
1797
|
-
unless required by applicable law (such as deliberate and grossly
|
1798
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
1799
|
-
liable to You for damages, including any direct, indirect, special,
|
1800
|
-
incidental, or consequential damages of any character arising as a
|
1801
|
-
result of this License or out of the use or inability to use the
|
1802
|
-
Work (including but not limited to damages for loss of goodwill,
|
1803
|
-
work stoppage, computer failure or malfunction, or any and all
|
1804
|
-
other commercial damages or losses), even if such Contributor
|
1805
|
-
has been advised of the possibility of such damages.
|
1806
|
-
|
1807
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
1808
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
1809
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
1810
|
-
or other liability obligations and/or rights consistent with this
|
1811
|
-
License. However, in accepting such obligations, You may act only
|
1812
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
1813
|
-
of any other Contributor, and only if You agree to indemnify,
|
1814
|
-
defend, and hold each Contributor harmless for any liability
|
1815
|
-
incurred by, or claims asserted against, such Contributor by reason
|
1816
|
-
of your accepting any such warranty or additional liability.
|
1817
|
-
|
1818
|
-
END OF TERMS AND CONDITIONS
|
1819
|
-
|
1820
|
-
Copyright 2020-2022 Jorge C. Leitão
|
1821
|
-
|
1822
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
1823
|
-
you may not use this file except in compliance with the License.
|
1824
|
-
You may obtain a copy of the License at
|
1825
|
-
|
1826
|
-
https://www.apache.org/licenses/LICENSE-2.0
|
1827
|
-
|
1828
|
-
Unless required by applicable law or agreed to in writing, software
|
1829
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
1830
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
1831
|
-
See the License for the specific language governing permissions and
|
1832
|
-
limitations under the License.
|
1833
|
-
|
1834
|
-
================================================================================
|
1835
|
-
arrow2 LICENSE
|
1869
|
+
arrow2 LICENSE
|
1836
1870
|
================================================================================
|
1837
1871
|
|
1838
1872
|
|
@@ -4544,6 +4578,238 @@ limitations under the License.
|
|
4544
4578
|
~~~~
|
4545
4579
|
|
4546
4580
|
|
4581
|
+
================================================================================
|
4582
|
+
chrono-tz LICENSE
|
4583
|
+
================================================================================
|
4584
|
+
|
4585
|
+
Chrono-TZ is dual-licensed under the MIT License and Apache 2.0 Licence.
|
4586
|
+
The licenses do not apply to files in the tzdb folder which are in the
|
4587
|
+
public domain.
|
4588
|
+
|
4589
|
+
Copyright (c) 2016 Djzin
|
4590
|
+
|
4591
|
+
The MIT License
|
4592
|
+
|
4593
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4594
|
+
of this software and associated documentation files (the "Software"), to deal
|
4595
|
+
in the Software without restriction, including without limitation the rights
|
4596
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
4597
|
+
copies of the Software, and to permit persons to whom the Software is
|
4598
|
+
furnished to do so, subject to the following conditions:
|
4599
|
+
|
4600
|
+
The above copyright notice and this permission notice shall be included in all
|
4601
|
+
copies or substantial portions of the Software.
|
4602
|
+
|
4603
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
4604
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
4605
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
4606
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
4607
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
4608
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
4609
|
+
SOFTWARE.
|
4610
|
+
|
4611
|
+
Apache License
|
4612
|
+
Version 2.0, January 2004
|
4613
|
+
http://www.apache.org/licenses/
|
4614
|
+
|
4615
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
4616
|
+
|
4617
|
+
1. Definitions.
|
4618
|
+
|
4619
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
4620
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
4621
|
+
|
4622
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
4623
|
+
the copyright owner that is granting the License.
|
4624
|
+
|
4625
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
4626
|
+
other entities that control, are controlled by, or are under common
|
4627
|
+
control with that entity. For the purposes of this definition,
|
4628
|
+
"control" means (i) the power, direct or indirect, to cause the
|
4629
|
+
direction or management of such entity, whether by contract or
|
4630
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
4631
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
4632
|
+
|
4633
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
4634
|
+
exercising permissions granted by this License.
|
4635
|
+
|
4636
|
+
"Source" form shall mean the preferred form for making modifications,
|
4637
|
+
including but not limited to software source code, documentation
|
4638
|
+
source, and configuration files.
|
4639
|
+
|
4640
|
+
"Object" form shall mean any form resulting from mechanical
|
4641
|
+
transformation or translation of a Source form, including but
|
4642
|
+
not limited to compiled object code, generated documentation,
|
4643
|
+
and conversions to other media types.
|
4644
|
+
|
4645
|
+
"Work" shall mean the work of authorship, whether in Source or
|
4646
|
+
Object form, made available under the License, as indicated by a
|
4647
|
+
copyright notice that is included in or attached to the work
|
4648
|
+
(an example is provided in the Appendix below).
|
4649
|
+
|
4650
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
4651
|
+
form, that is based on (or derived from) the Work and for which the
|
4652
|
+
editorial revisions, annotations, elaborations, or other modifications
|
4653
|
+
represent, as a whole, an original work of authorship. For the purposes
|
4654
|
+
of this License, Derivative Works shall not include works that remain
|
4655
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
4656
|
+
the Work and Derivative Works thereof.
|
4657
|
+
|
4658
|
+
"Contribution" shall mean any work of authorship, including
|
4659
|
+
the original version of the Work and any modifications or additions
|
4660
|
+
to that Work or Derivative Works thereof, that is intentionally
|
4661
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
4662
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
4663
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
4664
|
+
means any form of electronic, verbal, or written communication sent
|
4665
|
+
to the Licensor or its representatives, including but not limited to
|
4666
|
+
communication on electronic mailing lists, source code control systems,
|
4667
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
4668
|
+
Licensor for the purpose of discussing and improving the Work, but
|
4669
|
+
excluding communication that is conspicuously marked or otherwise
|
4670
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
4671
|
+
|
4672
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
4673
|
+
on behalf of whom a Contribution has been received by Licensor and
|
4674
|
+
subsequently incorporated within the Work.
|
4675
|
+
|
4676
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
4677
|
+
this License, each Contributor hereby grants to You a perpetual,
|
4678
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
4679
|
+
copyright license to reproduce, prepare Derivative Works of,
|
4680
|
+
publicly display, publicly perform, sublicense, and distribute the
|
4681
|
+
Work and such Derivative Works in Source or Object form.
|
4682
|
+
|
4683
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
4684
|
+
this License, each Contributor hereby grants to You a perpetual,
|
4685
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
4686
|
+
(except as stated in this section) patent license to make, have made,
|
4687
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
4688
|
+
where such license applies only to those patent claims licensable
|
4689
|
+
by such Contributor that are necessarily infringed by their
|
4690
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
4691
|
+
with the Work to which such Contribution(s) was submitted. If You
|
4692
|
+
institute patent litigation against any entity (including a
|
4693
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
4694
|
+
or a Contribution incorporated within the Work constitutes direct
|
4695
|
+
or contributory patent infringement, then any patent licenses
|
4696
|
+
granted to You under this License for that Work shall terminate
|
4697
|
+
as of the date such litigation is filed.
|
4698
|
+
|
4699
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
4700
|
+
Work or Derivative Works thereof in any medium, with or without
|
4701
|
+
modifications, and in Source or Object form, provided that You
|
4702
|
+
meet the following conditions:
|
4703
|
+
|
4704
|
+
(a) You must give any other recipients of the Work or
|
4705
|
+
Derivative Works a copy of this License; and
|
4706
|
+
|
4707
|
+
(b) You must cause any modified files to carry prominent notices
|
4708
|
+
stating that You changed the files; and
|
4709
|
+
|
4710
|
+
(c) You must retain, in the Source form of any Derivative Works
|
4711
|
+
that You distribute, all copyright, patent, trademark, and
|
4712
|
+
attribution notices from the Source form of the Work,
|
4713
|
+
excluding those notices that do not pertain to any part of
|
4714
|
+
the Derivative Works; and
|
4715
|
+
|
4716
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
4717
|
+
distribution, then any Derivative Works that You distribute must
|
4718
|
+
include a readable copy of the attribution notices contained
|
4719
|
+
within such NOTICE file, excluding those notices that do not
|
4720
|
+
pertain to any part of the Derivative Works, in at least one
|
4721
|
+
of the following places: within a NOTICE text file distributed
|
4722
|
+
as part of the Derivative Works; within the Source form or
|
4723
|
+
documentation, if provided along with the Derivative Works; or,
|
4724
|
+
within a display generated by the Derivative Works, if and
|
4725
|
+
wherever such third-party notices normally appear. The contents
|
4726
|
+
of the NOTICE file are for informational purposes only and
|
4727
|
+
do not modify the License. You may add Your own attribution
|
4728
|
+
notices within Derivative Works that You distribute, alongside
|
4729
|
+
or as an addendum to the NOTICE text from the Work, provided
|
4730
|
+
that such additional attribution notices cannot be construed
|
4731
|
+
as modifying the License.
|
4732
|
+
|
4733
|
+
You may add Your own copyright statement to Your modifications and
|
4734
|
+
may provide additional or different license terms and conditions
|
4735
|
+
for use, reproduction, or distribution of Your modifications, or
|
4736
|
+
for any such Derivative Works as a whole, provided Your use,
|
4737
|
+
reproduction, and distribution of the Work otherwise complies with
|
4738
|
+
the conditions stated in this License.
|
4739
|
+
|
4740
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
4741
|
+
any Contribution intentionally submitted for inclusion in the Work
|
4742
|
+
by You to the Licensor shall be under the terms and conditions of
|
4743
|
+
this License, without any additional terms or conditions.
|
4744
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
4745
|
+
the terms of any separate license agreement you may have executed
|
4746
|
+
with Licensor regarding such Contributions.
|
4747
|
+
|
4748
|
+
6. Trademarks. This License does not grant permission to use the trade
|
4749
|
+
names, trademarks, service marks, or product names of the Licensor,
|
4750
|
+
except as required for reasonable and customary use in describing the
|
4751
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
4752
|
+
|
4753
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
4754
|
+
agreed to in writing, Licensor provides the Work (and each
|
4755
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
4756
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
4757
|
+
implied, including, without limitation, any warranties or conditions
|
4758
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
4759
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
4760
|
+
appropriateness of using or redistributing the Work and assume any
|
4761
|
+
risks associated with Your exercise of permissions under this License.
|
4762
|
+
|
4763
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
4764
|
+
whether in tort (including negligence), contract, or otherwise,
|
4765
|
+
unless required by applicable law (such as deliberate and grossly
|
4766
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
4767
|
+
liable to You for damages, including any direct, indirect, special,
|
4768
|
+
incidental, or consequential damages of any character arising as a
|
4769
|
+
result of this License or out of the use or inability to use the
|
4770
|
+
Work (including but not limited to damages for loss of goodwill,
|
4771
|
+
work stoppage, computer failure or malfunction, or any and all
|
4772
|
+
other commercial damages or losses), even if such Contributor
|
4773
|
+
has been advised of the possibility of such damages.
|
4774
|
+
|
4775
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
4776
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
4777
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
4778
|
+
or other liability obligations and/or rights consistent with this
|
4779
|
+
License. However, in accepting such obligations, You may act only
|
4780
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
4781
|
+
of any other Contributor, and only if You agree to indemnify,
|
4782
|
+
defend, and hold each Contributor harmless for any liability
|
4783
|
+
incurred by, or claims asserted against, such Contributor by reason
|
4784
|
+
of your accepting any such warranty or additional liability.
|
4785
|
+
|
4786
|
+
END OF TERMS AND CONDITIONS
|
4787
|
+
|
4788
|
+
APPENDIX: How to apply the Apache License to your work.
|
4789
|
+
|
4790
|
+
To apply the Apache License to your work, attach the following
|
4791
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
4792
|
+
replaced with your own identifying information. (Don't include
|
4793
|
+
the brackets!) The text should be enclosed in the appropriate
|
4794
|
+
comment syntax for the file format. We also recommend that a
|
4795
|
+
file or class name and description of purpose be included on the
|
4796
|
+
same "printed page" as the copyright notice for easier
|
4797
|
+
identification within third-party archives.
|
4798
|
+
|
4799
|
+
Copyright 2016 Djzin
|
4800
|
+
|
4801
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
4802
|
+
you may not use this file except in compliance with the License.
|
4803
|
+
You may obtain a copy of the License at
|
4804
|
+
|
4805
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
4806
|
+
|
4807
|
+
Unless required by applicable law or agreed to in writing, software
|
4808
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
4809
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
4810
|
+
See the License for the specific language governing permissions and
|
4811
|
+
limitations under the License.
|
4812
|
+
|
4547
4813
|
================================================================================
|
4548
4814
|
chrono-tz tz/LICENSE
|
4549
4815
|
================================================================================
|
@@ -4790,208 +5056,208 @@ limitations under the License.
|
|
4790
5056
|
clang-sys LICENSE.txt
|
4791
5057
|
================================================================================
|
4792
5058
|
|
4793
|
-
|
4794
|
-
Apache License
|
4795
|
-
Version 2.0, January 2004
|
4796
|
-
http://www.apache.org/licenses/
|
4797
|
-
|
4798
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
4799
|
-
|
4800
|
-
1. Definitions.
|
4801
|
-
|
4802
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
4803
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
4804
|
-
|
4805
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
4806
|
-
the copyright owner that is granting the License.
|
4807
|
-
|
4808
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
4809
|
-
other entities that control, are controlled by, or are under common
|
4810
|
-
control with that entity. For the purposes of this definition,
|
4811
|
-
"control" means (i) the power, direct or indirect, to cause the
|
4812
|
-
direction or management of such entity, whether by contract or
|
4813
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
4814
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
4815
|
-
|
4816
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
4817
|
-
exercising permissions granted by this License.
|
4818
|
-
|
4819
|
-
"Source" form shall mean the preferred form for making modifications,
|
4820
|
-
including but not limited to software source code, documentation
|
4821
|
-
source, and configuration files.
|
4822
|
-
|
4823
|
-
"Object" form shall mean any form resulting from mechanical
|
4824
|
-
transformation or translation of a Source form, including but
|
4825
|
-
not limited to compiled object code, generated documentation,
|
4826
|
-
and conversions to other media types.
|
4827
|
-
|
4828
|
-
"Work" shall mean the work of authorship, whether in Source or
|
4829
|
-
Object form, made available under the License, as indicated by a
|
4830
|
-
copyright notice that is included in or attached to the work
|
4831
|
-
(an example is provided in the Appendix below).
|
4832
|
-
|
4833
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
4834
|
-
form, that is based on (or derived from) the Work and for which the
|
4835
|
-
editorial revisions, annotations, elaborations, or other modifications
|
4836
|
-
represent, as a whole, an original work of authorship. For the purposes
|
4837
|
-
of this License, Derivative Works shall not include works that remain
|
4838
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
4839
|
-
the Work and Derivative Works thereof.
|
4840
|
-
|
4841
|
-
"Contribution" shall mean any work of authorship, including
|
4842
|
-
the original version of the Work and any modifications or additions
|
4843
|
-
to that Work or Derivative Works thereof, that is intentionally
|
4844
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
4845
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
4846
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
4847
|
-
means any form of electronic, verbal, or written communication sent
|
4848
|
-
to the Licensor or its representatives, including but not limited to
|
4849
|
-
communication on electronic mailing lists, source code control systems,
|
4850
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
4851
|
-
Licensor for the purpose of discussing and improving the Work, but
|
4852
|
-
excluding communication that is conspicuously marked or otherwise
|
4853
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
4854
|
-
|
4855
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
4856
|
-
on behalf of whom a Contribution has been received by Licensor and
|
4857
|
-
subsequently incorporated within the Work.
|
4858
|
-
|
4859
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
4860
|
-
this License, each Contributor hereby grants to You a perpetual,
|
4861
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
4862
|
-
copyright license to reproduce, prepare Derivative Works of,
|
4863
|
-
publicly display, publicly perform, sublicense, and distribute the
|
4864
|
-
Work and such Derivative Works in Source or Object form.
|
4865
|
-
|
4866
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
4867
|
-
this License, each Contributor hereby grants to You a perpetual,
|
4868
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
4869
|
-
(except as stated in this section) patent license to make, have made,
|
4870
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
4871
|
-
where such license applies only to those patent claims licensable
|
4872
|
-
by such Contributor that are necessarily infringed by their
|
4873
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
4874
|
-
with the Work to which such Contribution(s) was submitted. If You
|
4875
|
-
institute patent litigation against any entity (including a
|
4876
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
4877
|
-
or a Contribution incorporated within the Work constitutes direct
|
4878
|
-
or contributory patent infringement, then any patent licenses
|
4879
|
-
granted to You under this License for that Work shall terminate
|
4880
|
-
as of the date such litigation is filed.
|
4881
|
-
|
4882
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
4883
|
-
Work or Derivative Works thereof in any medium, with or without
|
4884
|
-
modifications, and in Source or Object form, provided that You
|
4885
|
-
meet the following conditions:
|
4886
|
-
|
4887
|
-
(a) You must give any other recipients of the Work or
|
4888
|
-
Derivative Works a copy of this License; and
|
4889
|
-
|
4890
|
-
(b) You must cause any modified files to carry prominent notices
|
4891
|
-
stating that You changed the files; and
|
4892
|
-
|
4893
|
-
(c) You must retain, in the Source form of any Derivative Works
|
4894
|
-
that You distribute, all copyright, patent, trademark, and
|
4895
|
-
attribution notices from the Source form of the Work,
|
4896
|
-
excluding those notices that do not pertain to any part of
|
4897
|
-
the Derivative Works; and
|
4898
|
-
|
4899
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
4900
|
-
distribution, then any Derivative Works that You distribute must
|
4901
|
-
include a readable copy of the attribution notices contained
|
4902
|
-
within such NOTICE file, excluding those notices that do not
|
4903
|
-
pertain to any part of the Derivative Works, in at least one
|
4904
|
-
of the following places: within a NOTICE text file distributed
|
4905
|
-
as part of the Derivative Works; within the Source form or
|
4906
|
-
documentation, if provided along with the Derivative Works; or,
|
4907
|
-
within a display generated by the Derivative Works, if and
|
4908
|
-
wherever such third-party notices normally appear. The contents
|
4909
|
-
of the NOTICE file are for informational purposes only and
|
4910
|
-
do not modify the License. You may add Your own attribution
|
4911
|
-
notices within Derivative Works that You distribute, alongside
|
4912
|
-
or as an addendum to the NOTICE text from the Work, provided
|
4913
|
-
that such additional attribution notices cannot be construed
|
4914
|
-
as modifying the License.
|
4915
|
-
|
4916
|
-
You may add Your own copyright statement to Your modifications and
|
4917
|
-
may provide additional or different license terms and conditions
|
4918
|
-
for use, reproduction, or distribution of Your modifications, or
|
4919
|
-
for any such Derivative Works as a whole, provided Your use,
|
4920
|
-
reproduction, and distribution of the Work otherwise complies with
|
4921
|
-
the conditions stated in this License.
|
4922
|
-
|
4923
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
4924
|
-
any Contribution intentionally submitted for inclusion in the Work
|
4925
|
-
by You to the Licensor shall be under the terms and conditions of
|
4926
|
-
this License, without any additional terms or conditions.
|
4927
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
4928
|
-
the terms of any separate license agreement you may have executed
|
4929
|
-
with Licensor regarding such Contributions.
|
4930
|
-
|
4931
|
-
6. Trademarks. This License does not grant permission to use the trade
|
4932
|
-
names, trademarks, service marks, or product names of the Licensor,
|
4933
|
-
except as required for reasonable and customary use in describing the
|
4934
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
4935
|
-
|
4936
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
4937
|
-
agreed to in writing, Licensor provides the Work (and each
|
4938
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
4939
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
4940
|
-
implied, including, without limitation, any warranties or conditions
|
4941
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
4942
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
4943
|
-
appropriateness of using or redistributing the Work and assume any
|
4944
|
-
risks associated with Your exercise of permissions under this License.
|
4945
|
-
|
4946
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
4947
|
-
whether in tort (including negligence), contract, or otherwise,
|
4948
|
-
unless required by applicable law (such as deliberate and grossly
|
4949
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
4950
|
-
liable to You for damages, including any direct, indirect, special,
|
4951
|
-
incidental, or consequential damages of any character arising as a
|
4952
|
-
result of this License or out of the use or inability to use the
|
4953
|
-
Work (including but not limited to damages for loss of goodwill,
|
4954
|
-
work stoppage, computer failure or malfunction, or any and all
|
4955
|
-
other commercial damages or losses), even if such Contributor
|
4956
|
-
has been advised of the possibility of such damages.
|
4957
|
-
|
4958
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
4959
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
4960
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
4961
|
-
or other liability obligations and/or rights consistent with this
|
4962
|
-
License. However, in accepting such obligations, You may act only
|
4963
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
4964
|
-
of any other Contributor, and only if You agree to indemnify,
|
4965
|
-
defend, and hold each Contributor harmless for any liability
|
4966
|
-
incurred by, or claims asserted against, such Contributor by reason
|
4967
|
-
of your accepting any such warranty or additional liability.
|
4968
|
-
|
4969
|
-
END OF TERMS AND CONDITIONS
|
4970
|
-
|
4971
|
-
APPENDIX: How to apply the Apache License to your work.
|
4972
|
-
|
4973
|
-
To apply the Apache License to your work, attach the following
|
4974
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
4975
|
-
replaced with your own identifying information. (Don't include
|
4976
|
-
the brackets!) The text should be enclosed in the appropriate
|
4977
|
-
comment syntax for the file format. We also recommend that a
|
4978
|
-
file or class name and description of purpose be included on the
|
4979
|
-
same "printed page" as the copyright notice for easier
|
4980
|
-
identification within third-party archives.
|
4981
|
-
|
4982
|
-
Copyright [yyyy] [name of copyright owner]
|
4983
|
-
|
4984
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
4985
|
-
you may not use this file except in compliance with the License.
|
4986
|
-
You may obtain a copy of the License at
|
4987
|
-
|
4988
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
4989
|
-
|
4990
|
-
Unless required by applicable law or agreed to in writing, software
|
4991
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
4992
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
4993
|
-
See the License for the specific language governing permissions and
|
4994
|
-
limitations under the License.
|
5059
|
+
|
5060
|
+
Apache License
|
5061
|
+
Version 2.0, January 2004
|
5062
|
+
http://www.apache.org/licenses/
|
5063
|
+
|
5064
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
5065
|
+
|
5066
|
+
1. Definitions.
|
5067
|
+
|
5068
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
5069
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
5070
|
+
|
5071
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
5072
|
+
the copyright owner that is granting the License.
|
5073
|
+
|
5074
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
5075
|
+
other entities that control, are controlled by, or are under common
|
5076
|
+
control with that entity. For the purposes of this definition,
|
5077
|
+
"control" means (i) the power, direct or indirect, to cause the
|
5078
|
+
direction or management of such entity, whether by contract or
|
5079
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
5080
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
5081
|
+
|
5082
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
5083
|
+
exercising permissions granted by this License.
|
5084
|
+
|
5085
|
+
"Source" form shall mean the preferred form for making modifications,
|
5086
|
+
including but not limited to software source code, documentation
|
5087
|
+
source, and configuration files.
|
5088
|
+
|
5089
|
+
"Object" form shall mean any form resulting from mechanical
|
5090
|
+
transformation or translation of a Source form, including but
|
5091
|
+
not limited to compiled object code, generated documentation,
|
5092
|
+
and conversions to other media types.
|
5093
|
+
|
5094
|
+
"Work" shall mean the work of authorship, whether in Source or
|
5095
|
+
Object form, made available under the License, as indicated by a
|
5096
|
+
copyright notice that is included in or attached to the work
|
5097
|
+
(an example is provided in the Appendix below).
|
5098
|
+
|
5099
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
5100
|
+
form, that is based on (or derived from) the Work and for which the
|
5101
|
+
editorial revisions, annotations, elaborations, or other modifications
|
5102
|
+
represent, as a whole, an original work of authorship. For the purposes
|
5103
|
+
of this License, Derivative Works shall not include works that remain
|
5104
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
5105
|
+
the Work and Derivative Works thereof.
|
5106
|
+
|
5107
|
+
"Contribution" shall mean any work of authorship, including
|
5108
|
+
the original version of the Work and any modifications or additions
|
5109
|
+
to that Work or Derivative Works thereof, that is intentionally
|
5110
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
5111
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
5112
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
5113
|
+
means any form of electronic, verbal, or written communication sent
|
5114
|
+
to the Licensor or its representatives, including but not limited to
|
5115
|
+
communication on electronic mailing lists, source code control systems,
|
5116
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
5117
|
+
Licensor for the purpose of discussing and improving the Work, but
|
5118
|
+
excluding communication that is conspicuously marked or otherwise
|
5119
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
5120
|
+
|
5121
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
5122
|
+
on behalf of whom a Contribution has been received by Licensor and
|
5123
|
+
subsequently incorporated within the Work.
|
5124
|
+
|
5125
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
5126
|
+
this License, each Contributor hereby grants to You a perpetual,
|
5127
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
5128
|
+
copyright license to reproduce, prepare Derivative Works of,
|
5129
|
+
publicly display, publicly perform, sublicense, and distribute the
|
5130
|
+
Work and such Derivative Works in Source or Object form.
|
5131
|
+
|
5132
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
5133
|
+
this License, each Contributor hereby grants to You a perpetual,
|
5134
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
5135
|
+
(except as stated in this section) patent license to make, have made,
|
5136
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
5137
|
+
where such license applies only to those patent claims licensable
|
5138
|
+
by such Contributor that are necessarily infringed by their
|
5139
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
5140
|
+
with the Work to which such Contribution(s) was submitted. If You
|
5141
|
+
institute patent litigation against any entity (including a
|
5142
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
5143
|
+
or a Contribution incorporated within the Work constitutes direct
|
5144
|
+
or contributory patent infringement, then any patent licenses
|
5145
|
+
granted to You under this License for that Work shall terminate
|
5146
|
+
as of the date such litigation is filed.
|
5147
|
+
|
5148
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
5149
|
+
Work or Derivative Works thereof in any medium, with or without
|
5150
|
+
modifications, and in Source or Object form, provided that You
|
5151
|
+
meet the following conditions:
|
5152
|
+
|
5153
|
+
(a) You must give any other recipients of the Work or
|
5154
|
+
Derivative Works a copy of this License; and
|
5155
|
+
|
5156
|
+
(b) You must cause any modified files to carry prominent notices
|
5157
|
+
stating that You changed the files; and
|
5158
|
+
|
5159
|
+
(c) You must retain, in the Source form of any Derivative Works
|
5160
|
+
that You distribute, all copyright, patent, trademark, and
|
5161
|
+
attribution notices from the Source form of the Work,
|
5162
|
+
excluding those notices that do not pertain to any part of
|
5163
|
+
the Derivative Works; and
|
5164
|
+
|
5165
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
5166
|
+
distribution, then any Derivative Works that You distribute must
|
5167
|
+
include a readable copy of the attribution notices contained
|
5168
|
+
within such NOTICE file, excluding those notices that do not
|
5169
|
+
pertain to any part of the Derivative Works, in at least one
|
5170
|
+
of the following places: within a NOTICE text file distributed
|
5171
|
+
as part of the Derivative Works; within the Source form or
|
5172
|
+
documentation, if provided along with the Derivative Works; or,
|
5173
|
+
within a display generated by the Derivative Works, if and
|
5174
|
+
wherever such third-party notices normally appear. The contents
|
5175
|
+
of the NOTICE file are for informational purposes only and
|
5176
|
+
do not modify the License. You may add Your own attribution
|
5177
|
+
notices within Derivative Works that You distribute, alongside
|
5178
|
+
or as an addendum to the NOTICE text from the Work, provided
|
5179
|
+
that such additional attribution notices cannot be construed
|
5180
|
+
as modifying the License.
|
5181
|
+
|
5182
|
+
You may add Your own copyright statement to Your modifications and
|
5183
|
+
may provide additional or different license terms and conditions
|
5184
|
+
for use, reproduction, or distribution of Your modifications, or
|
5185
|
+
for any such Derivative Works as a whole, provided Your use,
|
5186
|
+
reproduction, and distribution of the Work otherwise complies with
|
5187
|
+
the conditions stated in this License.
|
5188
|
+
|
5189
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
5190
|
+
any Contribution intentionally submitted for inclusion in the Work
|
5191
|
+
by You to the Licensor shall be under the terms and conditions of
|
5192
|
+
this License, without any additional terms or conditions.
|
5193
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
5194
|
+
the terms of any separate license agreement you may have executed
|
5195
|
+
with Licensor regarding such Contributions.
|
5196
|
+
|
5197
|
+
6. Trademarks. This License does not grant permission to use the trade
|
5198
|
+
names, trademarks, service marks, or product names of the Licensor,
|
5199
|
+
except as required for reasonable and customary use in describing the
|
5200
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
5201
|
+
|
5202
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
5203
|
+
agreed to in writing, Licensor provides the Work (and each
|
5204
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
5205
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
5206
|
+
implied, including, without limitation, any warranties or conditions
|
5207
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
5208
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
5209
|
+
appropriateness of using or redistributing the Work and assume any
|
5210
|
+
risks associated with Your exercise of permissions under this License.
|
5211
|
+
|
5212
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
5213
|
+
whether in tort (including negligence), contract, or otherwise,
|
5214
|
+
unless required by applicable law (such as deliberate and grossly
|
5215
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
5216
|
+
liable to You for damages, including any direct, indirect, special,
|
5217
|
+
incidental, or consequential damages of any character arising as a
|
5218
|
+
result of this License or out of the use or inability to use the
|
5219
|
+
Work (including but not limited to damages for loss of goodwill,
|
5220
|
+
work stoppage, computer failure or malfunction, or any and all
|
5221
|
+
other commercial damages or losses), even if such Contributor
|
5222
|
+
has been advised of the possibility of such damages.
|
5223
|
+
|
5224
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
5225
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
5226
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
5227
|
+
or other liability obligations and/or rights consistent with this
|
5228
|
+
License. However, in accepting such obligations, You may act only
|
5229
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
5230
|
+
of any other Contributor, and only if You agree to indemnify,
|
5231
|
+
defend, and hold each Contributor harmless for any liability
|
5232
|
+
incurred by, or claims asserted against, such Contributor by reason
|
5233
|
+
of your accepting any such warranty or additional liability.
|
5234
|
+
|
5235
|
+
END OF TERMS AND CONDITIONS
|
5236
|
+
|
5237
|
+
APPENDIX: How to apply the Apache License to your work.
|
5238
|
+
|
5239
|
+
To apply the Apache License to your work, attach the following
|
5240
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
5241
|
+
replaced with your own identifying information. (Don't include
|
5242
|
+
the brackets!) The text should be enclosed in the appropriate
|
5243
|
+
comment syntax for the file format. We also recommend that a
|
5244
|
+
file or class name and description of purpose be included on the
|
5245
|
+
same "printed page" as the copyright notice for easier
|
5246
|
+
identification within third-party archives.
|
5247
|
+
|
5248
|
+
Copyright [yyyy] [name of copyright owner]
|
5249
|
+
|
5250
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
5251
|
+
you may not use this file except in compliance with the License.
|
5252
|
+
You may obtain a copy of the License at
|
5253
|
+
|
5254
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
5255
|
+
|
5256
|
+
Unless required by applicable law or agreed to in writing, software
|
5257
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
5258
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
5259
|
+
See the License for the specific language governing permissions and
|
5260
|
+
limitations under the License.
|
4995
5261
|
|
4996
5262
|
================================================================================
|
4997
5263
|
comfy-table LICENSE
|
@@ -7264,6 +7530,244 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
7264
7530
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
7265
7531
|
DEALINGS IN THE SOFTWARE.
|
7266
7532
|
|
7533
|
+
================================================================================
|
7534
|
+
crossbeam-queue LICENSE-APACHE
|
7535
|
+
================================================================================
|
7536
|
+
|
7537
|
+
Apache License
|
7538
|
+
Version 2.0, January 2004
|
7539
|
+
http://www.apache.org/licenses/
|
7540
|
+
|
7541
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7542
|
+
|
7543
|
+
1. Definitions.
|
7544
|
+
|
7545
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
7546
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
7547
|
+
|
7548
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
7549
|
+
the copyright owner that is granting the License.
|
7550
|
+
|
7551
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
7552
|
+
other entities that control, are controlled by, or are under common
|
7553
|
+
control with that entity. For the purposes of this definition,
|
7554
|
+
"control" means (i) the power, direct or indirect, to cause the
|
7555
|
+
direction or management of such entity, whether by contract or
|
7556
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
7557
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
7558
|
+
|
7559
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
7560
|
+
exercising permissions granted by this License.
|
7561
|
+
|
7562
|
+
"Source" form shall mean the preferred form for making modifications,
|
7563
|
+
including but not limited to software source code, documentation
|
7564
|
+
source, and configuration files.
|
7565
|
+
|
7566
|
+
"Object" form shall mean any form resulting from mechanical
|
7567
|
+
transformation or translation of a Source form, including but
|
7568
|
+
not limited to compiled object code, generated documentation,
|
7569
|
+
and conversions to other media types.
|
7570
|
+
|
7571
|
+
"Work" shall mean the work of authorship, whether in Source or
|
7572
|
+
Object form, made available under the License, as indicated by a
|
7573
|
+
copyright notice that is included in or attached to the work
|
7574
|
+
(an example is provided in the Appendix below).
|
7575
|
+
|
7576
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
7577
|
+
form, that is based on (or derived from) the Work and for which the
|
7578
|
+
editorial revisions, annotations, elaborations, or other modifications
|
7579
|
+
represent, as a whole, an original work of authorship. For the purposes
|
7580
|
+
of this License, Derivative Works shall not include works that remain
|
7581
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
7582
|
+
the Work and Derivative Works thereof.
|
7583
|
+
|
7584
|
+
"Contribution" shall mean any work of authorship, including
|
7585
|
+
the original version of the Work and any modifications or additions
|
7586
|
+
to that Work or Derivative Works thereof, that is intentionally
|
7587
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
7588
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
7589
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
7590
|
+
means any form of electronic, verbal, or written communication sent
|
7591
|
+
to the Licensor or its representatives, including but not limited to
|
7592
|
+
communication on electronic mailing lists, source code control systems,
|
7593
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
7594
|
+
Licensor for the purpose of discussing and improving the Work, but
|
7595
|
+
excluding communication that is conspicuously marked or otherwise
|
7596
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
7597
|
+
|
7598
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
7599
|
+
on behalf of whom a Contribution has been received by Licensor and
|
7600
|
+
subsequently incorporated within the Work.
|
7601
|
+
|
7602
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
7603
|
+
this License, each Contributor hereby grants to You a perpetual,
|
7604
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
7605
|
+
copyright license to reproduce, prepare Derivative Works of,
|
7606
|
+
publicly display, publicly perform, sublicense, and distribute the
|
7607
|
+
Work and such Derivative Works in Source or Object form.
|
7608
|
+
|
7609
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
7610
|
+
this License, each Contributor hereby grants to You a perpetual,
|
7611
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
7612
|
+
(except as stated in this section) patent license to make, have made,
|
7613
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
7614
|
+
where such license applies only to those patent claims licensable
|
7615
|
+
by such Contributor that are necessarily infringed by their
|
7616
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
7617
|
+
with the Work to which such Contribution(s) was submitted. If You
|
7618
|
+
institute patent litigation against any entity (including a
|
7619
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
7620
|
+
or a Contribution incorporated within the Work constitutes direct
|
7621
|
+
or contributory patent infringement, then any patent licenses
|
7622
|
+
granted to You under this License for that Work shall terminate
|
7623
|
+
as of the date such litigation is filed.
|
7624
|
+
|
7625
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
7626
|
+
Work or Derivative Works thereof in any medium, with or without
|
7627
|
+
modifications, and in Source or Object form, provided that You
|
7628
|
+
meet the following conditions:
|
7629
|
+
|
7630
|
+
(a) You must give any other recipients of the Work or
|
7631
|
+
Derivative Works a copy of this License; and
|
7632
|
+
|
7633
|
+
(b) You must cause any modified files to carry prominent notices
|
7634
|
+
stating that You changed the files; and
|
7635
|
+
|
7636
|
+
(c) You must retain, in the Source form of any Derivative Works
|
7637
|
+
that You distribute, all copyright, patent, trademark, and
|
7638
|
+
attribution notices from the Source form of the Work,
|
7639
|
+
excluding those notices that do not pertain to any part of
|
7640
|
+
the Derivative Works; and
|
7641
|
+
|
7642
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
7643
|
+
distribution, then any Derivative Works that You distribute must
|
7644
|
+
include a readable copy of the attribution notices contained
|
7645
|
+
within such NOTICE file, excluding those notices that do not
|
7646
|
+
pertain to any part of the Derivative Works, in at least one
|
7647
|
+
of the following places: within a NOTICE text file distributed
|
7648
|
+
as part of the Derivative Works; within the Source form or
|
7649
|
+
documentation, if provided along with the Derivative Works; or,
|
7650
|
+
within a display generated by the Derivative Works, if and
|
7651
|
+
wherever such third-party notices normally appear. The contents
|
7652
|
+
of the NOTICE file are for informational purposes only and
|
7653
|
+
do not modify the License. You may add Your own attribution
|
7654
|
+
notices within Derivative Works that You distribute, alongside
|
7655
|
+
or as an addendum to the NOTICE text from the Work, provided
|
7656
|
+
that such additional attribution notices cannot be construed
|
7657
|
+
as modifying the License.
|
7658
|
+
|
7659
|
+
You may add Your own copyright statement to Your modifications and
|
7660
|
+
may provide additional or different license terms and conditions
|
7661
|
+
for use, reproduction, or distribution of Your modifications, or
|
7662
|
+
for any such Derivative Works as a whole, provided Your use,
|
7663
|
+
reproduction, and distribution of the Work otherwise complies with
|
7664
|
+
the conditions stated in this License.
|
7665
|
+
|
7666
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
7667
|
+
any Contribution intentionally submitted for inclusion in the Work
|
7668
|
+
by You to the Licensor shall be under the terms and conditions of
|
7669
|
+
this License, without any additional terms or conditions.
|
7670
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
7671
|
+
the terms of any separate license agreement you may have executed
|
7672
|
+
with Licensor regarding such Contributions.
|
7673
|
+
|
7674
|
+
6. Trademarks. This License does not grant permission to use the trade
|
7675
|
+
names, trademarks, service marks, or product names of the Licensor,
|
7676
|
+
except as required for reasonable and customary use in describing the
|
7677
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
7678
|
+
|
7679
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
7680
|
+
agreed to in writing, Licensor provides the Work (and each
|
7681
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
7682
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
7683
|
+
implied, including, without limitation, any warranties or conditions
|
7684
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
7685
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
7686
|
+
appropriateness of using or redistributing the Work and assume any
|
7687
|
+
risks associated with Your exercise of permissions under this License.
|
7688
|
+
|
7689
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
7690
|
+
whether in tort (including negligence), contract, or otherwise,
|
7691
|
+
unless required by applicable law (such as deliberate and grossly
|
7692
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
7693
|
+
liable to You for damages, including any direct, indirect, special,
|
7694
|
+
incidental, or consequential damages of any character arising as a
|
7695
|
+
result of this License or out of the use or inability to use the
|
7696
|
+
Work (including but not limited to damages for loss of goodwill,
|
7697
|
+
work stoppage, computer failure or malfunction, or any and all
|
7698
|
+
other commercial damages or losses), even if such Contributor
|
7699
|
+
has been advised of the possibility of such damages.
|
7700
|
+
|
7701
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
7702
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
7703
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
7704
|
+
or other liability obligations and/or rights consistent with this
|
7705
|
+
License. However, in accepting such obligations, You may act only
|
7706
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
7707
|
+
of any other Contributor, and only if You agree to indemnify,
|
7708
|
+
defend, and hold each Contributor harmless for any liability
|
7709
|
+
incurred by, or claims asserted against, such Contributor by reason
|
7710
|
+
of your accepting any such warranty or additional liability.
|
7711
|
+
|
7712
|
+
END OF TERMS AND CONDITIONS
|
7713
|
+
|
7714
|
+
APPENDIX: How to apply the Apache License to your work.
|
7715
|
+
|
7716
|
+
To apply the Apache License to your work, attach the following
|
7717
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
7718
|
+
replaced with your own identifying information. (Don't include
|
7719
|
+
the brackets!) The text should be enclosed in the appropriate
|
7720
|
+
comment syntax for the file format. We also recommend that a
|
7721
|
+
file or class name and description of purpose be included on the
|
7722
|
+
same "printed page" as the copyright notice for easier
|
7723
|
+
identification within third-party archives.
|
7724
|
+
|
7725
|
+
Copyright [yyyy] [name of copyright owner]
|
7726
|
+
|
7727
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
7728
|
+
you may not use this file except in compliance with the License.
|
7729
|
+
You may obtain a copy of the License at
|
7730
|
+
|
7731
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
7732
|
+
|
7733
|
+
Unless required by applicable law or agreed to in writing, software
|
7734
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
7735
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
7736
|
+
See the License for the specific language governing permissions and
|
7737
|
+
limitations under the License.
|
7738
|
+
|
7739
|
+
================================================================================
|
7740
|
+
crossbeam-queue LICENSE-MIT
|
7741
|
+
================================================================================
|
7742
|
+
|
7743
|
+
The MIT License (MIT)
|
7744
|
+
|
7745
|
+
Copyright (c) 2019 The Crossbeam Project Developers
|
7746
|
+
|
7747
|
+
Permission is hereby granted, free of charge, to any
|
7748
|
+
person obtaining a copy of this software and associated
|
7749
|
+
documentation files (the "Software"), to deal in the
|
7750
|
+
Software without restriction, including without
|
7751
|
+
limitation the rights to use, copy, modify, merge,
|
7752
|
+
publish, distribute, sublicense, and/or sell copies of
|
7753
|
+
the Software, and to permit persons to whom the Software
|
7754
|
+
is furnished to do so, subject to the following
|
7755
|
+
conditions:
|
7756
|
+
|
7757
|
+
The above copyright notice and this permission notice
|
7758
|
+
shall be included in all copies or substantial portions
|
7759
|
+
of the Software.
|
7760
|
+
|
7761
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
7762
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
7763
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
7764
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
7765
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
7766
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
7767
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
7768
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
7769
|
+
DEALINGS IN THE SOFTWARE.
|
7770
|
+
|
7267
7771
|
================================================================================
|
7268
7772
|
crossbeam-utils LICENSE-APACHE
|
7269
7773
|
================================================================================
|
@@ -7529,7 +8033,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7529
8033
|
SOFTWARE.
|
7530
8034
|
|
7531
8035
|
================================================================================
|
7532
|
-
|
8036
|
+
dyn-clone LICENSE-APACHE
|
7533
8037
|
================================================================================
|
7534
8038
|
|
7535
8039
|
Apache License
|
@@ -7707,444 +8211,38 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7707
8211
|
incurred by, or claims asserted against, such Contributor by reason
|
7708
8212
|
of your accepting any such warranty or additional liability.
|
7709
8213
|
|
8214
|
+
END OF TERMS AND CONDITIONS
|
8215
|
+
|
7710
8216
|
================================================================================
|
7711
|
-
|
8217
|
+
dyn-clone LICENSE-MIT
|
7712
8218
|
================================================================================
|
7713
8219
|
|
7714
|
-
|
7715
|
-
|
7716
|
-
|
7717
|
-
|
7718
|
-
|
7719
|
-
|
7720
|
-
|
7721
|
-
furnished to do so, subject to the following
|
8220
|
+
Permission is hereby granted, free of charge, to any
|
8221
|
+
person obtaining a copy of this software and associated
|
8222
|
+
documentation files (the "Software"), to deal in the
|
8223
|
+
Software without restriction, including without
|
8224
|
+
limitation the rights to use, copy, modify, merge,
|
8225
|
+
publish, distribute, sublicense, and/or sell copies of
|
8226
|
+
the Software, and to permit persons to whom the Software
|
8227
|
+
is furnished to do so, subject to the following
|
8228
|
+
conditions:
|
7722
8229
|
|
7723
|
-
The above copyright notice and this permission notice
|
7724
|
-
copies or substantial portions
|
8230
|
+
The above copyright notice and this permission notice
|
8231
|
+
shall be included in all copies or substantial portions
|
8232
|
+
of the Software.
|
7725
8233
|
|
7726
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
7727
|
-
IMPLIED, INCLUDING BUT NOT LIMITED
|
7728
|
-
|
7729
|
-
|
7730
|
-
|
7731
|
-
|
7732
|
-
|
8234
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
8235
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
8236
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
8237
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
8238
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
8239
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
8240
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
8241
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
8242
|
+
DEALINGS IN THE SOFTWARE.
|
7733
8243
|
|
7734
8244
|
================================================================================
|
7735
|
-
|
7736
|
-
================================================================================
|
7737
|
-
|
7738
|
-
Apache License
|
7739
|
-
Version 2.0, January 2004
|
7740
|
-
http://www.apache.org/licenses/
|
7741
|
-
|
7742
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7743
|
-
|
7744
|
-
1. Definitions.
|
7745
|
-
|
7746
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
7747
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
7748
|
-
|
7749
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
7750
|
-
the copyright owner that is granting the License.
|
7751
|
-
|
7752
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
7753
|
-
other entities that control, are controlled by, or are under common
|
7754
|
-
control with that entity. For the purposes of this definition,
|
7755
|
-
"control" means (i) the power, direct or indirect, to cause the
|
7756
|
-
direction or management of such entity, whether by contract or
|
7757
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
7758
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
7759
|
-
|
7760
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
7761
|
-
exercising permissions granted by this License.
|
7762
|
-
|
7763
|
-
"Source" form shall mean the preferred form for making modifications,
|
7764
|
-
including but not limited to software source code, documentation
|
7765
|
-
source, and configuration files.
|
7766
|
-
|
7767
|
-
"Object" form shall mean any form resulting from mechanical
|
7768
|
-
transformation or translation of a Source form, including but
|
7769
|
-
not limited to compiled object code, generated documentation,
|
7770
|
-
and conversions to other media types.
|
7771
|
-
|
7772
|
-
"Work" shall mean the work of authorship, whether in Source or
|
7773
|
-
Object form, made available under the License, as indicated by a
|
7774
|
-
copyright notice that is included in or attached to the work
|
7775
|
-
(an example is provided in the Appendix below).
|
7776
|
-
|
7777
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
7778
|
-
form, that is based on (or derived from) the Work and for which the
|
7779
|
-
editorial revisions, annotations, elaborations, or other modifications
|
7780
|
-
represent, as a whole, an original work of authorship. For the purposes
|
7781
|
-
of this License, Derivative Works shall not include works that remain
|
7782
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
7783
|
-
the Work and Derivative Works thereof.
|
7784
|
-
|
7785
|
-
"Contribution" shall mean any work of authorship, including
|
7786
|
-
the original version of the Work and any modifications or additions
|
7787
|
-
to that Work or Derivative Works thereof, that is intentionally
|
7788
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
7789
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
7790
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
7791
|
-
means any form of electronic, verbal, or written communication sent
|
7792
|
-
to the Licensor or its representatives, including but not limited to
|
7793
|
-
communication on electronic mailing lists, source code control systems,
|
7794
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
7795
|
-
Licensor for the purpose of discussing and improving the Work, but
|
7796
|
-
excluding communication that is conspicuously marked or otherwise
|
7797
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
7798
|
-
|
7799
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
7800
|
-
on behalf of whom a Contribution has been received by Licensor and
|
7801
|
-
subsequently incorporated within the Work.
|
7802
|
-
|
7803
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
7804
|
-
this License, each Contributor hereby grants to You a perpetual,
|
7805
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
7806
|
-
copyright license to reproduce, prepare Derivative Works of,
|
7807
|
-
publicly display, publicly perform, sublicense, and distribute the
|
7808
|
-
Work and such Derivative Works in Source or Object form.
|
7809
|
-
|
7810
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
7811
|
-
this License, each Contributor hereby grants to You a perpetual,
|
7812
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
7813
|
-
(except as stated in this section) patent license to make, have made,
|
7814
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
7815
|
-
where such license applies only to those patent claims licensable
|
7816
|
-
by such Contributor that are necessarily infringed by their
|
7817
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
7818
|
-
with the Work to which such Contribution(s) was submitted. If You
|
7819
|
-
institute patent litigation against any entity (including a
|
7820
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
7821
|
-
or a Contribution incorporated within the Work constitutes direct
|
7822
|
-
or contributory patent infringement, then any patent licenses
|
7823
|
-
granted to You under this License for that Work shall terminate
|
7824
|
-
as of the date such litigation is filed.
|
7825
|
-
|
7826
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
7827
|
-
Work or Derivative Works thereof in any medium, with or without
|
7828
|
-
modifications, and in Source or Object form, provided that You
|
7829
|
-
meet the following conditions:
|
7830
|
-
|
7831
|
-
(a) You must give any other recipients of the Work or
|
7832
|
-
Derivative Works a copy of this License; and
|
7833
|
-
|
7834
|
-
(b) You must cause any modified files to carry prominent notices
|
7835
|
-
stating that You changed the files; and
|
7836
|
-
|
7837
|
-
(c) You must retain, in the Source form of any Derivative Works
|
7838
|
-
that You distribute, all copyright, patent, trademark, and
|
7839
|
-
attribution notices from the Source form of the Work,
|
7840
|
-
excluding those notices that do not pertain to any part of
|
7841
|
-
the Derivative Works; and
|
7842
|
-
|
7843
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
7844
|
-
distribution, then any Derivative Works that You distribute must
|
7845
|
-
include a readable copy of the attribution notices contained
|
7846
|
-
within such NOTICE file, excluding those notices that do not
|
7847
|
-
pertain to any part of the Derivative Works, in at least one
|
7848
|
-
of the following places: within a NOTICE text file distributed
|
7849
|
-
as part of the Derivative Works; within the Source form or
|
7850
|
-
documentation, if provided along with the Derivative Works; or,
|
7851
|
-
within a display generated by the Derivative Works, if and
|
7852
|
-
wherever such third-party notices normally appear. The contents
|
7853
|
-
of the NOTICE file are for informational purposes only and
|
7854
|
-
do not modify the License. You may add Your own attribution
|
7855
|
-
notices within Derivative Works that You distribute, alongside
|
7856
|
-
or as an addendum to the NOTICE text from the Work, provided
|
7857
|
-
that such additional attribution notices cannot be construed
|
7858
|
-
as modifying the License.
|
7859
|
-
|
7860
|
-
You may add Your own copyright statement to Your modifications and
|
7861
|
-
may provide additional or different license terms and conditions
|
7862
|
-
for use, reproduction, or distribution of Your modifications, or
|
7863
|
-
for any such Derivative Works as a whole, provided Your use,
|
7864
|
-
reproduction, and distribution of the Work otherwise complies with
|
7865
|
-
the conditions stated in this License.
|
7866
|
-
|
7867
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
7868
|
-
any Contribution intentionally submitted for inclusion in the Work
|
7869
|
-
by You to the Licensor shall be under the terms and conditions of
|
7870
|
-
this License, without any additional terms or conditions.
|
7871
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
7872
|
-
the terms of any separate license agreement you may have executed
|
7873
|
-
with Licensor regarding such Contributions.
|
7874
|
-
|
7875
|
-
6. Trademarks. This License does not grant permission to use the trade
|
7876
|
-
names, trademarks, service marks, or product names of the Licensor,
|
7877
|
-
except as required for reasonable and customary use in describing the
|
7878
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
7879
|
-
|
7880
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
7881
|
-
agreed to in writing, Licensor provides the Work (and each
|
7882
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
7883
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
7884
|
-
implied, including, without limitation, any warranties or conditions
|
7885
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
7886
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
7887
|
-
appropriateness of using or redistributing the Work and assume any
|
7888
|
-
risks associated with Your exercise of permissions under this License.
|
7889
|
-
|
7890
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
7891
|
-
whether in tort (including negligence), contract, or otherwise,
|
7892
|
-
unless required by applicable law (such as deliberate and grossly
|
7893
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
7894
|
-
liable to You for damages, including any direct, indirect, special,
|
7895
|
-
incidental, or consequential damages of any character arising as a
|
7896
|
-
result of this License or out of the use or inability to use the
|
7897
|
-
Work (including but not limited to damages for loss of goodwill,
|
7898
|
-
work stoppage, computer failure or malfunction, or any and all
|
7899
|
-
other commercial damages or losses), even if such Contributor
|
7900
|
-
has been advised of the possibility of such damages.
|
7901
|
-
|
7902
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
7903
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
7904
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
7905
|
-
or other liability obligations and/or rights consistent with this
|
7906
|
-
License. However, in accepting such obligations, You may act only
|
7907
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
7908
|
-
of any other Contributor, and only if You agree to indemnify,
|
7909
|
-
defend, and hold each Contributor harmless for any liability
|
7910
|
-
incurred by, or claims asserted against, such Contributor by reason
|
7911
|
-
of your accepting any such warranty or additional liability.
|
7912
|
-
|
7913
|
-
================================================================================
|
7914
|
-
dirs-sys LICENSE-MIT
|
7915
|
-
================================================================================
|
7916
|
-
|
7917
|
-
Copyright (c) 2018-2019 dirs-rs contributors
|
7918
|
-
|
7919
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
7920
|
-
of this software and associated documentation files (the "Software"), to deal
|
7921
|
-
in the Software without restriction, including without limitation the rights
|
7922
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7923
|
-
copies of the Software, and to permit persons to whom the Software is
|
7924
|
-
furnished to do so, subject to the following conditions:
|
7925
|
-
|
7926
|
-
The above copyright notice and this permission notice shall be included in all
|
7927
|
-
copies or substantial portions of the Software.
|
7928
|
-
|
7929
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
7930
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
7931
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
7932
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
7933
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
7934
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
7935
|
-
SOFTWARE.
|
7936
|
-
|
7937
|
-
================================================================================
|
7938
|
-
dyn-clone LICENSE-APACHE
|
7939
|
-
================================================================================
|
7940
|
-
|
7941
|
-
Apache License
|
7942
|
-
Version 2.0, January 2004
|
7943
|
-
http://www.apache.org/licenses/
|
7944
|
-
|
7945
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7946
|
-
|
7947
|
-
1. Definitions.
|
7948
|
-
|
7949
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
7950
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
7951
|
-
|
7952
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
7953
|
-
the copyright owner that is granting the License.
|
7954
|
-
|
7955
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
7956
|
-
other entities that control, are controlled by, or are under common
|
7957
|
-
control with that entity. For the purposes of this definition,
|
7958
|
-
"control" means (i) the power, direct or indirect, to cause the
|
7959
|
-
direction or management of such entity, whether by contract or
|
7960
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
7961
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
7962
|
-
|
7963
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
7964
|
-
exercising permissions granted by this License.
|
7965
|
-
|
7966
|
-
"Source" form shall mean the preferred form for making modifications,
|
7967
|
-
including but not limited to software source code, documentation
|
7968
|
-
source, and configuration files.
|
7969
|
-
|
7970
|
-
"Object" form shall mean any form resulting from mechanical
|
7971
|
-
transformation or translation of a Source form, including but
|
7972
|
-
not limited to compiled object code, generated documentation,
|
7973
|
-
and conversions to other media types.
|
7974
|
-
|
7975
|
-
"Work" shall mean the work of authorship, whether in Source or
|
7976
|
-
Object form, made available under the License, as indicated by a
|
7977
|
-
copyright notice that is included in or attached to the work
|
7978
|
-
(an example is provided in the Appendix below).
|
7979
|
-
|
7980
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
7981
|
-
form, that is based on (or derived from) the Work and for which the
|
7982
|
-
editorial revisions, annotations, elaborations, or other modifications
|
7983
|
-
represent, as a whole, an original work of authorship. For the purposes
|
7984
|
-
of this License, Derivative Works shall not include works that remain
|
7985
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
7986
|
-
the Work and Derivative Works thereof.
|
7987
|
-
|
7988
|
-
"Contribution" shall mean any work of authorship, including
|
7989
|
-
the original version of the Work and any modifications or additions
|
7990
|
-
to that Work or Derivative Works thereof, that is intentionally
|
7991
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
7992
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
7993
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
7994
|
-
means any form of electronic, verbal, or written communication sent
|
7995
|
-
to the Licensor or its representatives, including but not limited to
|
7996
|
-
communication on electronic mailing lists, source code control systems,
|
7997
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
7998
|
-
Licensor for the purpose of discussing and improving the Work, but
|
7999
|
-
excluding communication that is conspicuously marked or otherwise
|
8000
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
8001
|
-
|
8002
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
8003
|
-
on behalf of whom a Contribution has been received by Licensor and
|
8004
|
-
subsequently incorporated within the Work.
|
8005
|
-
|
8006
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
8007
|
-
this License, each Contributor hereby grants to You a perpetual,
|
8008
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
8009
|
-
copyright license to reproduce, prepare Derivative Works of,
|
8010
|
-
publicly display, publicly perform, sublicense, and distribute the
|
8011
|
-
Work and such Derivative Works in Source or Object form.
|
8012
|
-
|
8013
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
8014
|
-
this License, each Contributor hereby grants to You a perpetual,
|
8015
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
8016
|
-
(except as stated in this section) patent license to make, have made,
|
8017
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
8018
|
-
where such license applies only to those patent claims licensable
|
8019
|
-
by such Contributor that are necessarily infringed by their
|
8020
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
8021
|
-
with the Work to which such Contribution(s) was submitted. If You
|
8022
|
-
institute patent litigation against any entity (including a
|
8023
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
8024
|
-
or a Contribution incorporated within the Work constitutes direct
|
8025
|
-
or contributory patent infringement, then any patent licenses
|
8026
|
-
granted to You under this License for that Work shall terminate
|
8027
|
-
as of the date such litigation is filed.
|
8028
|
-
|
8029
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
8030
|
-
Work or Derivative Works thereof in any medium, with or without
|
8031
|
-
modifications, and in Source or Object form, provided that You
|
8032
|
-
meet the following conditions:
|
8033
|
-
|
8034
|
-
(a) You must give any other recipients of the Work or
|
8035
|
-
Derivative Works a copy of this License; and
|
8036
|
-
|
8037
|
-
(b) You must cause any modified files to carry prominent notices
|
8038
|
-
stating that You changed the files; and
|
8039
|
-
|
8040
|
-
(c) You must retain, in the Source form of any Derivative Works
|
8041
|
-
that You distribute, all copyright, patent, trademark, and
|
8042
|
-
attribution notices from the Source form of the Work,
|
8043
|
-
excluding those notices that do not pertain to any part of
|
8044
|
-
the Derivative Works; and
|
8045
|
-
|
8046
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
8047
|
-
distribution, then any Derivative Works that You distribute must
|
8048
|
-
include a readable copy of the attribution notices contained
|
8049
|
-
within such NOTICE file, excluding those notices that do not
|
8050
|
-
pertain to any part of the Derivative Works, in at least one
|
8051
|
-
of the following places: within a NOTICE text file distributed
|
8052
|
-
as part of the Derivative Works; within the Source form or
|
8053
|
-
documentation, if provided along with the Derivative Works; or,
|
8054
|
-
within a display generated by the Derivative Works, if and
|
8055
|
-
wherever such third-party notices normally appear. The contents
|
8056
|
-
of the NOTICE file are for informational purposes only and
|
8057
|
-
do not modify the License. You may add Your own attribution
|
8058
|
-
notices within Derivative Works that You distribute, alongside
|
8059
|
-
or as an addendum to the NOTICE text from the Work, provided
|
8060
|
-
that such additional attribution notices cannot be construed
|
8061
|
-
as modifying the License.
|
8062
|
-
|
8063
|
-
You may add Your own copyright statement to Your modifications and
|
8064
|
-
may provide additional or different license terms and conditions
|
8065
|
-
for use, reproduction, or distribution of Your modifications, or
|
8066
|
-
for any such Derivative Works as a whole, provided Your use,
|
8067
|
-
reproduction, and distribution of the Work otherwise complies with
|
8068
|
-
the conditions stated in this License.
|
8069
|
-
|
8070
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
8071
|
-
any Contribution intentionally submitted for inclusion in the Work
|
8072
|
-
by You to the Licensor shall be under the terms and conditions of
|
8073
|
-
this License, without any additional terms or conditions.
|
8074
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
8075
|
-
the terms of any separate license agreement you may have executed
|
8076
|
-
with Licensor regarding such Contributions.
|
8077
|
-
|
8078
|
-
6. Trademarks. This License does not grant permission to use the trade
|
8079
|
-
names, trademarks, service marks, or product names of the Licensor,
|
8080
|
-
except as required for reasonable and customary use in describing the
|
8081
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
8082
|
-
|
8083
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
8084
|
-
agreed to in writing, Licensor provides the Work (and each
|
8085
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
8086
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
8087
|
-
implied, including, without limitation, any warranties or conditions
|
8088
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
8089
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
8090
|
-
appropriateness of using or redistributing the Work and assume any
|
8091
|
-
risks associated with Your exercise of permissions under this License.
|
8092
|
-
|
8093
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
8094
|
-
whether in tort (including negligence), contract, or otherwise,
|
8095
|
-
unless required by applicable law (such as deliberate and grossly
|
8096
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
8097
|
-
liable to You for damages, including any direct, indirect, special,
|
8098
|
-
incidental, or consequential damages of any character arising as a
|
8099
|
-
result of this License or out of the use or inability to use the
|
8100
|
-
Work (including but not limited to damages for loss of goodwill,
|
8101
|
-
work stoppage, computer failure or malfunction, or any and all
|
8102
|
-
other commercial damages or losses), even if such Contributor
|
8103
|
-
has been advised of the possibility of such damages.
|
8104
|
-
|
8105
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
8106
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
8107
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
8108
|
-
or other liability obligations and/or rights consistent with this
|
8109
|
-
License. However, in accepting such obligations, You may act only
|
8110
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
8111
|
-
of any other Contributor, and only if You agree to indemnify,
|
8112
|
-
defend, and hold each Contributor harmless for any liability
|
8113
|
-
incurred by, or claims asserted against, such Contributor by reason
|
8114
|
-
of your accepting any such warranty or additional liability.
|
8115
|
-
|
8116
|
-
END OF TERMS AND CONDITIONS
|
8117
|
-
|
8118
|
-
================================================================================
|
8119
|
-
dyn-clone LICENSE-MIT
|
8120
|
-
================================================================================
|
8121
|
-
|
8122
|
-
Permission is hereby granted, free of charge, to any
|
8123
|
-
person obtaining a copy of this software and associated
|
8124
|
-
documentation files (the "Software"), to deal in the
|
8125
|
-
Software without restriction, including without
|
8126
|
-
limitation the rights to use, copy, modify, merge,
|
8127
|
-
publish, distribute, sublicense, and/or sell copies of
|
8128
|
-
the Software, and to permit persons to whom the Software
|
8129
|
-
is furnished to do so, subject to the following
|
8130
|
-
conditions:
|
8131
|
-
|
8132
|
-
The above copyright notice and this permission notice
|
8133
|
-
shall be included in all copies or substantial portions
|
8134
|
-
of the Software.
|
8135
|
-
|
8136
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
8137
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
8138
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
8139
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
8140
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
8141
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
8142
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
8143
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
8144
|
-
DEALINGS IN THE SOFTWARE.
|
8145
|
-
|
8146
|
-
================================================================================
|
8147
|
-
either LICENSE-APACHE
|
8245
|
+
either LICENSE-APACHE
|
8148
8246
|
================================================================================
|
8149
8247
|
|
8150
8248
|
Apache License
|
@@ -13385,6 +13483,240 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
13385
13483
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
13386
13484
|
SOFTWARE.
|
13387
13485
|
|
13486
|
+
================================================================================
|
13487
|
+
home LICENSE-APACHE
|
13488
|
+
================================================================================
|
13489
|
+
|
13490
|
+
Apache License
|
13491
|
+
Version 2.0, January 2004
|
13492
|
+
https://www.apache.org/licenses/LICENSE-2.0
|
13493
|
+
|
13494
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
13495
|
+
|
13496
|
+
1. Definitions.
|
13497
|
+
|
13498
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
13499
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
13500
|
+
|
13501
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13502
|
+
the copyright owner that is granting the License.
|
13503
|
+
|
13504
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
13505
|
+
other entities that control, are controlled by, or are under common
|
13506
|
+
control with that entity. For the purposes of this definition,
|
13507
|
+
"control" means (i) the power, direct or indirect, to cause the
|
13508
|
+
direction or management of such entity, whether by contract or
|
13509
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
13510
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
13511
|
+
|
13512
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
13513
|
+
exercising permissions granted by this License.
|
13514
|
+
|
13515
|
+
"Source" form shall mean the preferred form for making modifications,
|
13516
|
+
including but not limited to software source code, documentation
|
13517
|
+
source, and configuration files.
|
13518
|
+
|
13519
|
+
"Object" form shall mean any form resulting from mechanical
|
13520
|
+
transformation or translation of a Source form, including but
|
13521
|
+
not limited to compiled object code, generated documentation,
|
13522
|
+
and conversions to other media types.
|
13523
|
+
|
13524
|
+
"Work" shall mean the work of authorship, whether in Source or
|
13525
|
+
Object form, made available under the License, as indicated by a
|
13526
|
+
copyright notice that is included in or attached to the work
|
13527
|
+
(an example is provided in the Appendix below).
|
13528
|
+
|
13529
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
13530
|
+
form, that is based on (or derived from) the Work and for which the
|
13531
|
+
editorial revisions, annotations, elaborations, or other modifications
|
13532
|
+
represent, as a whole, an original work of authorship. For the purposes
|
13533
|
+
of this License, Derivative Works shall not include works that remain
|
13534
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
13535
|
+
the Work and Derivative Works thereof.
|
13536
|
+
|
13537
|
+
"Contribution" shall mean any work of authorship, including
|
13538
|
+
the original version of the Work and any modifications or additions
|
13539
|
+
to that Work or Derivative Works thereof, that is intentionally
|
13540
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
13541
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
13542
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
13543
|
+
means any form of electronic, verbal, or written communication sent
|
13544
|
+
to the Licensor or its representatives, including but not limited to
|
13545
|
+
communication on electronic mailing lists, source code control systems,
|
13546
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
13547
|
+
Licensor for the purpose of discussing and improving the Work, but
|
13548
|
+
excluding communication that is conspicuously marked or otherwise
|
13549
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
13550
|
+
|
13551
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
13552
|
+
on behalf of whom a Contribution has been received by Licensor and
|
13553
|
+
subsequently incorporated within the Work.
|
13554
|
+
|
13555
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
13556
|
+
this License, each Contributor hereby grants to You a perpetual,
|
13557
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
13558
|
+
copyright license to reproduce, prepare Derivative Works of,
|
13559
|
+
publicly display, publicly perform, sublicense, and distribute the
|
13560
|
+
Work and such Derivative Works in Source or Object form.
|
13561
|
+
|
13562
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
13563
|
+
this License, each Contributor hereby grants to You a perpetual,
|
13564
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
13565
|
+
(except as stated in this section) patent license to make, have made,
|
13566
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
13567
|
+
where such license applies only to those patent claims licensable
|
13568
|
+
by such Contributor that are necessarily infringed by their
|
13569
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
13570
|
+
with the Work to which such Contribution(s) was submitted. If You
|
13571
|
+
institute patent litigation against any entity (including a
|
13572
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
13573
|
+
or a Contribution incorporated within the Work constitutes direct
|
13574
|
+
or contributory patent infringement, then any patent licenses
|
13575
|
+
granted to You under this License for that Work shall terminate
|
13576
|
+
as of the date such litigation is filed.
|
13577
|
+
|
13578
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
13579
|
+
Work or Derivative Works thereof in any medium, with or without
|
13580
|
+
modifications, and in Source or Object form, provided that You
|
13581
|
+
meet the following conditions:
|
13582
|
+
|
13583
|
+
(a) You must give any other recipients of the Work or
|
13584
|
+
Derivative Works a copy of this License; and
|
13585
|
+
|
13586
|
+
(b) You must cause any modified files to carry prominent notices
|
13587
|
+
stating that You changed the files; and
|
13588
|
+
|
13589
|
+
(c) You must retain, in the Source form of any Derivative Works
|
13590
|
+
that You distribute, all copyright, patent, trademark, and
|
13591
|
+
attribution notices from the Source form of the Work,
|
13592
|
+
excluding those notices that do not pertain to any part of
|
13593
|
+
the Derivative Works; and
|
13594
|
+
|
13595
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
13596
|
+
distribution, then any Derivative Works that You distribute must
|
13597
|
+
include a readable copy of the attribution notices contained
|
13598
|
+
within such NOTICE file, excluding those notices that do not
|
13599
|
+
pertain to any part of the Derivative Works, in at least one
|
13600
|
+
of the following places: within a NOTICE text file distributed
|
13601
|
+
as part of the Derivative Works; within the Source form or
|
13602
|
+
documentation, if provided along with the Derivative Works; or,
|
13603
|
+
within a display generated by the Derivative Works, if and
|
13604
|
+
wherever such third-party notices normally appear. The contents
|
13605
|
+
of the NOTICE file are for informational purposes only and
|
13606
|
+
do not modify the License. You may add Your own attribution
|
13607
|
+
notices within Derivative Works that You distribute, alongside
|
13608
|
+
or as an addendum to the NOTICE text from the Work, provided
|
13609
|
+
that such additional attribution notices cannot be construed
|
13610
|
+
as modifying the License.
|
13611
|
+
|
13612
|
+
You may add Your own copyright statement to Your modifications and
|
13613
|
+
may provide additional or different license terms and conditions
|
13614
|
+
for use, reproduction, or distribution of Your modifications, or
|
13615
|
+
for any such Derivative Works as a whole, provided Your use,
|
13616
|
+
reproduction, and distribution of the Work otherwise complies with
|
13617
|
+
the conditions stated in this License.
|
13618
|
+
|
13619
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
13620
|
+
any Contribution intentionally submitted for inclusion in the Work
|
13621
|
+
by You to the Licensor shall be under the terms and conditions of
|
13622
|
+
this License, without any additional terms or conditions.
|
13623
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
13624
|
+
the terms of any separate license agreement you may have executed
|
13625
|
+
with Licensor regarding such Contributions.
|
13626
|
+
|
13627
|
+
6. Trademarks. This License does not grant permission to use the trade
|
13628
|
+
names, trademarks, service marks, or product names of the Licensor,
|
13629
|
+
except as required for reasonable and customary use in describing the
|
13630
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
13631
|
+
|
13632
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
13633
|
+
agreed to in writing, Licensor provides the Work (and each
|
13634
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
13635
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
13636
|
+
implied, including, without limitation, any warranties or conditions
|
13637
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
13638
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
13639
|
+
appropriateness of using or redistributing the Work and assume any
|
13640
|
+
risks associated with Your exercise of permissions under this License.
|
13641
|
+
|
13642
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
13643
|
+
whether in tort (including negligence), contract, or otherwise,
|
13644
|
+
unless required by applicable law (such as deliberate and grossly
|
13645
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
13646
|
+
liable to You for damages, including any direct, indirect, special,
|
13647
|
+
incidental, or consequential damages of any character arising as a
|
13648
|
+
result of this License or out of the use or inability to use the
|
13649
|
+
Work (including but not limited to damages for loss of goodwill,
|
13650
|
+
work stoppage, computer failure or malfunction, or any and all
|
13651
|
+
other commercial damages or losses), even if such Contributor
|
13652
|
+
has been advised of the possibility of such damages.
|
13653
|
+
|
13654
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
13655
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
13656
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
13657
|
+
or other liability obligations and/or rights consistent with this
|
13658
|
+
License. However, in accepting such obligations, You may act only
|
13659
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
13660
|
+
of any other Contributor, and only if You agree to indemnify,
|
13661
|
+
defend, and hold each Contributor harmless for any liability
|
13662
|
+
incurred by, or claims asserted against, such Contributor by reason
|
13663
|
+
of your accepting any such warranty or additional liability.
|
13664
|
+
|
13665
|
+
END OF TERMS AND CONDITIONS
|
13666
|
+
|
13667
|
+
APPENDIX: How to apply the Apache License to your work.
|
13668
|
+
|
13669
|
+
To apply the Apache License to your work, attach the following
|
13670
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
13671
|
+
replaced with your own identifying information. (Don't include
|
13672
|
+
the brackets!) The text should be enclosed in the appropriate
|
13673
|
+
comment syntax for the file format. We also recommend that a
|
13674
|
+
file or class name and description of purpose be included on the
|
13675
|
+
same "printed page" as the copyright notice for easier
|
13676
|
+
identification within third-party archives.
|
13677
|
+
|
13678
|
+
Copyright [yyyy] [name of copyright owner]
|
13679
|
+
|
13680
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
13681
|
+
you may not use this file except in compliance with the License.
|
13682
|
+
You may obtain a copy of the License at
|
13683
|
+
|
13684
|
+
https://www.apache.org/licenses/LICENSE-2.0
|
13685
|
+
|
13686
|
+
Unless required by applicable law or agreed to in writing, software
|
13687
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
13688
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13689
|
+
See the License for the specific language governing permissions and
|
13690
|
+
limitations under the License.
|
13691
|
+
|
13692
|
+
================================================================================
|
13693
|
+
home LICENSE-MIT
|
13694
|
+
================================================================================
|
13695
|
+
|
13696
|
+
Permission is hereby granted, free of charge, to any
|
13697
|
+
person obtaining a copy of this software and associated
|
13698
|
+
documentation files (the "Software"), to deal in the
|
13699
|
+
Software without restriction, including without
|
13700
|
+
limitation the rights to use, copy, modify, merge,
|
13701
|
+
publish, distribute, sublicense, and/or sell copies of
|
13702
|
+
the Software, and to permit persons to whom the Software
|
13703
|
+
is furnished to do so, subject to the following
|
13704
|
+
conditions:
|
13705
|
+
|
13706
|
+
The above copyright notice and this permission notice
|
13707
|
+
shall be included in all copies or substantial portions
|
13708
|
+
of the Software.
|
13709
|
+
|
13710
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
13711
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
13712
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
13713
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
13714
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
13715
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
13716
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
13717
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
13718
|
+
DEALINGS IN THE SOFTWARE.
|
13719
|
+
|
13388
13720
|
================================================================================
|
13389
13721
|
iana-time-zone LICENSE-APACHE
|
13390
13722
|
================================================================================
|
@@ -24987,243 +25319,7 @@ APPENDIX: How to apply the Apache License to your work.
|
|
24987
25319
|
same "printed page" as the copyright notice for easier
|
24988
25320
|
identification within third-party archives.
|
24989
25321
|
|
24990
|
-
Copyright 2018 The pin-utils authors
|
24991
|
-
|
24992
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
24993
|
-
you may not use this file except in compliance with the License.
|
24994
|
-
You may obtain a copy of the License at
|
24995
|
-
|
24996
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
24997
|
-
|
24998
|
-
Unless required by applicable law or agreed to in writing, software
|
24999
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
25000
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
25001
|
-
See the License for the specific language governing permissions and
|
25002
|
-
limitations under the License.
|
25003
|
-
|
25004
|
-
================================================================================
|
25005
|
-
pin-utils LICENSE-MIT
|
25006
|
-
================================================================================
|
25007
|
-
|
25008
|
-
Copyright (c) 2018 The pin-utils authors
|
25009
|
-
|
25010
|
-
Permission is hereby granted, free of charge, to any
|
25011
|
-
person obtaining a copy of this software and associated
|
25012
|
-
documentation files (the "Software"), to deal in the
|
25013
|
-
Software without restriction, including without
|
25014
|
-
limitation the rights to use, copy, modify, merge,
|
25015
|
-
publish, distribute, sublicense, and/or sell copies of
|
25016
|
-
the Software, and to permit persons to whom the Software
|
25017
|
-
is furnished to do so, subject to the following
|
25018
|
-
conditions:
|
25019
|
-
|
25020
|
-
The above copyright notice and this permission notice
|
25021
|
-
shall be included in all copies or substantial portions
|
25022
|
-
of the Software.
|
25023
|
-
|
25024
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
25025
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
25026
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
25027
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
25028
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
25029
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
25030
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
25031
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
25032
|
-
DEALINGS IN THE SOFTWARE.
|
25033
|
-
|
25034
|
-
================================================================================
|
25035
|
-
pkg-config LICENSE-APACHE
|
25036
|
-
================================================================================
|
25037
|
-
|
25038
|
-
Apache License
|
25039
|
-
Version 2.0, January 2004
|
25040
|
-
http://www.apache.org/licenses/
|
25041
|
-
|
25042
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
25043
|
-
|
25044
|
-
1. Definitions.
|
25045
|
-
|
25046
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
25047
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
25048
|
-
|
25049
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
25050
|
-
the copyright owner that is granting the License.
|
25051
|
-
|
25052
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
25053
|
-
other entities that control, are controlled by, or are under common
|
25054
|
-
control with that entity. For the purposes of this definition,
|
25055
|
-
"control" means (i) the power, direct or indirect, to cause the
|
25056
|
-
direction or management of such entity, whether by contract or
|
25057
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
25058
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
25059
|
-
|
25060
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
25061
|
-
exercising permissions granted by this License.
|
25062
|
-
|
25063
|
-
"Source" form shall mean the preferred form for making modifications,
|
25064
|
-
including but not limited to software source code, documentation
|
25065
|
-
source, and configuration files.
|
25066
|
-
|
25067
|
-
"Object" form shall mean any form resulting from mechanical
|
25068
|
-
transformation or translation of a Source form, including but
|
25069
|
-
not limited to compiled object code, generated documentation,
|
25070
|
-
and conversions to other media types.
|
25071
|
-
|
25072
|
-
"Work" shall mean the work of authorship, whether in Source or
|
25073
|
-
Object form, made available under the License, as indicated by a
|
25074
|
-
copyright notice that is included in or attached to the work
|
25075
|
-
(an example is provided in the Appendix below).
|
25076
|
-
|
25077
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
25078
|
-
form, that is based on (or derived from) the Work and for which the
|
25079
|
-
editorial revisions, annotations, elaborations, or other modifications
|
25080
|
-
represent, as a whole, an original work of authorship. For the purposes
|
25081
|
-
of this License, Derivative Works shall not include works that remain
|
25082
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
25083
|
-
the Work and Derivative Works thereof.
|
25084
|
-
|
25085
|
-
"Contribution" shall mean any work of authorship, including
|
25086
|
-
the original version of the Work and any modifications or additions
|
25087
|
-
to that Work or Derivative Works thereof, that is intentionally
|
25088
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
25089
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
25090
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
25091
|
-
means any form of electronic, verbal, or written communication sent
|
25092
|
-
to the Licensor or its representatives, including but not limited to
|
25093
|
-
communication on electronic mailing lists, source code control systems,
|
25094
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
25095
|
-
Licensor for the purpose of discussing and improving the Work, but
|
25096
|
-
excluding communication that is conspicuously marked or otherwise
|
25097
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
25098
|
-
|
25099
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
25100
|
-
on behalf of whom a Contribution has been received by Licensor and
|
25101
|
-
subsequently incorporated within the Work.
|
25102
|
-
|
25103
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
25104
|
-
this License, each Contributor hereby grants to You a perpetual,
|
25105
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
25106
|
-
copyright license to reproduce, prepare Derivative Works of,
|
25107
|
-
publicly display, publicly perform, sublicense, and distribute the
|
25108
|
-
Work and such Derivative Works in Source or Object form.
|
25109
|
-
|
25110
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
25111
|
-
this License, each Contributor hereby grants to You a perpetual,
|
25112
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
25113
|
-
(except as stated in this section) patent license to make, have made,
|
25114
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
25115
|
-
where such license applies only to those patent claims licensable
|
25116
|
-
by such Contributor that are necessarily infringed by their
|
25117
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
25118
|
-
with the Work to which such Contribution(s) was submitted. If You
|
25119
|
-
institute patent litigation against any entity (including a
|
25120
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
25121
|
-
or a Contribution incorporated within the Work constitutes direct
|
25122
|
-
or contributory patent infringement, then any patent licenses
|
25123
|
-
granted to You under this License for that Work shall terminate
|
25124
|
-
as of the date such litigation is filed.
|
25125
|
-
|
25126
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
25127
|
-
Work or Derivative Works thereof in any medium, with or without
|
25128
|
-
modifications, and in Source or Object form, provided that You
|
25129
|
-
meet the following conditions:
|
25130
|
-
|
25131
|
-
(a) You must give any other recipients of the Work or
|
25132
|
-
Derivative Works a copy of this License; and
|
25133
|
-
|
25134
|
-
(b) You must cause any modified files to carry prominent notices
|
25135
|
-
stating that You changed the files; and
|
25136
|
-
|
25137
|
-
(c) You must retain, in the Source form of any Derivative Works
|
25138
|
-
that You distribute, all copyright, patent, trademark, and
|
25139
|
-
attribution notices from the Source form of the Work,
|
25140
|
-
excluding those notices that do not pertain to any part of
|
25141
|
-
the Derivative Works; and
|
25142
|
-
|
25143
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
25144
|
-
distribution, then any Derivative Works that You distribute must
|
25145
|
-
include a readable copy of the attribution notices contained
|
25146
|
-
within such NOTICE file, excluding those notices that do not
|
25147
|
-
pertain to any part of the Derivative Works, in at least one
|
25148
|
-
of the following places: within a NOTICE text file distributed
|
25149
|
-
as part of the Derivative Works; within the Source form or
|
25150
|
-
documentation, if provided along with the Derivative Works; or,
|
25151
|
-
within a display generated by the Derivative Works, if and
|
25152
|
-
wherever such third-party notices normally appear. The contents
|
25153
|
-
of the NOTICE file are for informational purposes only and
|
25154
|
-
do not modify the License. You may add Your own attribution
|
25155
|
-
notices within Derivative Works that You distribute, alongside
|
25156
|
-
or as an addendum to the NOTICE text from the Work, provided
|
25157
|
-
that such additional attribution notices cannot be construed
|
25158
|
-
as modifying the License.
|
25159
|
-
|
25160
|
-
You may add Your own copyright statement to Your modifications and
|
25161
|
-
may provide additional or different license terms and conditions
|
25162
|
-
for use, reproduction, or distribution of Your modifications, or
|
25163
|
-
for any such Derivative Works as a whole, provided Your use,
|
25164
|
-
reproduction, and distribution of the Work otherwise complies with
|
25165
|
-
the conditions stated in this License.
|
25166
|
-
|
25167
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
25168
|
-
any Contribution intentionally submitted for inclusion in the Work
|
25169
|
-
by You to the Licensor shall be under the terms and conditions of
|
25170
|
-
this License, without any additional terms or conditions.
|
25171
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
25172
|
-
the terms of any separate license agreement you may have executed
|
25173
|
-
with Licensor regarding such Contributions.
|
25174
|
-
|
25175
|
-
6. Trademarks. This License does not grant permission to use the trade
|
25176
|
-
names, trademarks, service marks, or product names of the Licensor,
|
25177
|
-
except as required for reasonable and customary use in describing the
|
25178
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
25179
|
-
|
25180
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
25181
|
-
agreed to in writing, Licensor provides the Work (and each
|
25182
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
25183
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
25184
|
-
implied, including, without limitation, any warranties or conditions
|
25185
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
25186
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
25187
|
-
appropriateness of using or redistributing the Work and assume any
|
25188
|
-
risks associated with Your exercise of permissions under this License.
|
25189
|
-
|
25190
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
25191
|
-
whether in tort (including negligence), contract, or otherwise,
|
25192
|
-
unless required by applicable law (such as deliberate and grossly
|
25193
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
25194
|
-
liable to You for damages, including any direct, indirect, special,
|
25195
|
-
incidental, or consequential damages of any character arising as a
|
25196
|
-
result of this License or out of the use or inability to use the
|
25197
|
-
Work (including but not limited to damages for loss of goodwill,
|
25198
|
-
work stoppage, computer failure or malfunction, or any and all
|
25199
|
-
other commercial damages or losses), even if such Contributor
|
25200
|
-
has been advised of the possibility of such damages.
|
25201
|
-
|
25202
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
25203
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
25204
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
25205
|
-
or other liability obligations and/or rights consistent with this
|
25206
|
-
License. However, in accepting such obligations, You may act only
|
25207
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
25208
|
-
of any other Contributor, and only if You agree to indemnify,
|
25209
|
-
defend, and hold each Contributor harmless for any liability
|
25210
|
-
incurred by, or claims asserted against, such Contributor by reason
|
25211
|
-
of your accepting any such warranty or additional liability.
|
25212
|
-
|
25213
|
-
END OF TERMS AND CONDITIONS
|
25214
|
-
|
25215
|
-
APPENDIX: How to apply the Apache License to your work.
|
25216
|
-
|
25217
|
-
To apply the Apache License to your work, attach the following
|
25218
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
25219
|
-
replaced with your own identifying information. (Don't include
|
25220
|
-
the brackets!) The text should be enclosed in the appropriate
|
25221
|
-
comment syntax for the file format. We also recommend that a
|
25222
|
-
file or class name and description of purpose be included on the
|
25223
|
-
same "printed page" as the copyright notice for easier
|
25224
|
-
identification within third-party archives.
|
25225
|
-
|
25226
|
-
Copyright [yyyy] [name of copyright owner]
|
25322
|
+
Copyright 2018 The pin-utils authors
|
25227
25323
|
|
25228
25324
|
Licensed under the Apache License, Version 2.0 (the "License");
|
25229
25325
|
you may not use this file except in compliance with the License.
|
@@ -25238,10 +25334,10 @@ See the License for the specific language governing permissions and
|
|
25238
25334
|
limitations under the License.
|
25239
25335
|
|
25240
25336
|
================================================================================
|
25241
|
-
|
25337
|
+
pin-utils LICENSE-MIT
|
25242
25338
|
================================================================================
|
25243
25339
|
|
25244
|
-
Copyright (c)
|
25340
|
+
Copyright (c) 2018 The pin-utils authors
|
25245
25341
|
|
25246
25342
|
Permission is hereby granted, free of charge, to any
|
25247
25343
|
person obtaining a copy of this software and associated
|
@@ -25268,7 +25364,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
25268
25364
|
DEALINGS IN THE SOFTWARE.
|
25269
25365
|
|
25270
25366
|
================================================================================
|
25271
|
-
|
25367
|
+
pkg-config LICENSE-APACHE
|
25272
25368
|
================================================================================
|
25273
25369
|
|
25274
25370
|
Apache License
|
@@ -25448,6 +25544,60 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
25448
25544
|
|
25449
25545
|
END OF TERMS AND CONDITIONS
|
25450
25546
|
|
25547
|
+
APPENDIX: How to apply the Apache License to your work.
|
25548
|
+
|
25549
|
+
To apply the Apache License to your work, attach the following
|
25550
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
25551
|
+
replaced with your own identifying information. (Don't include
|
25552
|
+
the brackets!) The text should be enclosed in the appropriate
|
25553
|
+
comment syntax for the file format. We also recommend that a
|
25554
|
+
file or class name and description of purpose be included on the
|
25555
|
+
same "printed page" as the copyright notice for easier
|
25556
|
+
identification within third-party archives.
|
25557
|
+
|
25558
|
+
Copyright [yyyy] [name of copyright owner]
|
25559
|
+
|
25560
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
25561
|
+
you may not use this file except in compliance with the License.
|
25562
|
+
You may obtain a copy of the License at
|
25563
|
+
|
25564
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
25565
|
+
|
25566
|
+
Unless required by applicable law or agreed to in writing, software
|
25567
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
25568
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
25569
|
+
See the License for the specific language governing permissions and
|
25570
|
+
limitations under the License.
|
25571
|
+
|
25572
|
+
================================================================================
|
25573
|
+
pkg-config LICENSE-MIT
|
25574
|
+
================================================================================
|
25575
|
+
|
25576
|
+
Copyright (c) 2014 Alex Crichton
|
25577
|
+
|
25578
|
+
Permission is hereby granted, free of charge, to any
|
25579
|
+
person obtaining a copy of this software and associated
|
25580
|
+
documentation files (the "Software"), to deal in the
|
25581
|
+
Software without restriction, including without
|
25582
|
+
limitation the rights to use, copy, modify, merge,
|
25583
|
+
publish, distribute, sublicense, and/or sell copies of
|
25584
|
+
the Software, and to permit persons to whom the Software
|
25585
|
+
is furnished to do so, subject to the following
|
25586
|
+
conditions:
|
25587
|
+
|
25588
|
+
The above copyright notice and this permission notice
|
25589
|
+
shall be included in all copies or substantial portions
|
25590
|
+
of the Software.
|
25591
|
+
|
25592
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
25593
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
25594
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
25595
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
25596
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
25597
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
25598
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
25599
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
25600
|
+
DEALINGS IN THE SOFTWARE.
|
25451
25601
|
|
25452
25602
|
================================================================================
|
25453
25603
|
planus LICENSE-MIT
|
@@ -25476,6 +25626,188 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
25476
25626
|
SOFTWARE.
|
25477
25627
|
|
25478
25628
|
|
25629
|
+
================================================================================
|
25630
|
+
planus LICENSE-APACHE
|
25631
|
+
================================================================================
|
25632
|
+
|
25633
|
+
Apache License
|
25634
|
+
Version 2.0, January 2004
|
25635
|
+
http://www.apache.org/licenses/
|
25636
|
+
|
25637
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
25638
|
+
|
25639
|
+
1. Definitions.
|
25640
|
+
|
25641
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
25642
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
25643
|
+
|
25644
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
25645
|
+
the copyright owner that is granting the License.
|
25646
|
+
|
25647
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
25648
|
+
other entities that control, are controlled by, or are under common
|
25649
|
+
control with that entity. For the purposes of this definition,
|
25650
|
+
"control" means (i) the power, direct or indirect, to cause the
|
25651
|
+
direction or management of such entity, whether by contract or
|
25652
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
25653
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
25654
|
+
|
25655
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25656
|
+
exercising permissions granted by this License.
|
25657
|
+
|
25658
|
+
"Source" form shall mean the preferred form for making modifications,
|
25659
|
+
including but not limited to software source code, documentation
|
25660
|
+
source, and configuration files.
|
25661
|
+
|
25662
|
+
"Object" form shall mean any form resulting from mechanical
|
25663
|
+
transformation or translation of a Source form, including but
|
25664
|
+
not limited to compiled object code, generated documentation,
|
25665
|
+
and conversions to other media types.
|
25666
|
+
|
25667
|
+
"Work" shall mean the work of authorship, whether in Source or
|
25668
|
+
Object form, made available under the License, as indicated by a
|
25669
|
+
copyright notice that is included in or attached to the work
|
25670
|
+
(an example is provided in the Appendix below).
|
25671
|
+
|
25672
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
25673
|
+
form, that is based on (or derived from) the Work and for which the
|
25674
|
+
editorial revisions, annotations, elaborations, or other modifications
|
25675
|
+
represent, as a whole, an original work of authorship. For the purposes
|
25676
|
+
of this License, Derivative Works shall not include works that remain
|
25677
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
25678
|
+
the Work and Derivative Works thereof.
|
25679
|
+
|
25680
|
+
"Contribution" shall mean any work of authorship, including
|
25681
|
+
the original version of the Work and any modifications or additions
|
25682
|
+
to that Work or Derivative Works thereof, that is intentionally
|
25683
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
25684
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
25685
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
25686
|
+
means any form of electronic, verbal, or written communication sent
|
25687
|
+
to the Licensor or its representatives, including but not limited to
|
25688
|
+
communication on electronic mailing lists, source code control systems,
|
25689
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
25690
|
+
Licensor for the purpose of discussing and improving the Work, but
|
25691
|
+
excluding communication that is conspicuously marked or otherwise
|
25692
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
25693
|
+
|
25694
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
25695
|
+
on behalf of whom a Contribution has been received by Licensor and
|
25696
|
+
subsequently incorporated within the Work.
|
25697
|
+
|
25698
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
25699
|
+
this License, each Contributor hereby grants to You a perpetual,
|
25700
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
25701
|
+
copyright license to reproduce, prepare Derivative Works of,
|
25702
|
+
publicly display, publicly perform, sublicense, and distribute the
|
25703
|
+
Work and such Derivative Works in Source or Object form.
|
25704
|
+
|
25705
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
25706
|
+
this License, each Contributor hereby grants to You a perpetual,
|
25707
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
25708
|
+
(except as stated in this section) patent license to make, have made,
|
25709
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
25710
|
+
where such license applies only to those patent claims licensable
|
25711
|
+
by such Contributor that are necessarily infringed by their
|
25712
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
25713
|
+
with the Work to which such Contribution(s) was submitted. If You
|
25714
|
+
institute patent litigation against any entity (including a
|
25715
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
25716
|
+
or a Contribution incorporated within the Work constitutes direct
|
25717
|
+
or contributory patent infringement, then any patent licenses
|
25718
|
+
granted to You under this License for that Work shall terminate
|
25719
|
+
as of the date such litigation is filed.
|
25720
|
+
|
25721
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
25722
|
+
Work or Derivative Works thereof in any medium, with or without
|
25723
|
+
modifications, and in Source or Object form, provided that You
|
25724
|
+
meet the following conditions:
|
25725
|
+
|
25726
|
+
(a) You must give any other recipients of the Work or
|
25727
|
+
Derivative Works a copy of this License; and
|
25728
|
+
|
25729
|
+
(b) You must cause any modified files to carry prominent notices
|
25730
|
+
stating that You changed the files; and
|
25731
|
+
|
25732
|
+
(c) You must retain, in the Source form of any Derivative Works
|
25733
|
+
that You distribute, all copyright, patent, trademark, and
|
25734
|
+
attribution notices from the Source form of the Work,
|
25735
|
+
excluding those notices that do not pertain to any part of
|
25736
|
+
the Derivative Works; and
|
25737
|
+
|
25738
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
25739
|
+
distribution, then any Derivative Works that You distribute must
|
25740
|
+
include a readable copy of the attribution notices contained
|
25741
|
+
within such NOTICE file, excluding those notices that do not
|
25742
|
+
pertain to any part of the Derivative Works, in at least one
|
25743
|
+
of the following places: within a NOTICE text file distributed
|
25744
|
+
as part of the Derivative Works; within the Source form or
|
25745
|
+
documentation, if provided along with the Derivative Works; or,
|
25746
|
+
within a display generated by the Derivative Works, if and
|
25747
|
+
wherever such third-party notices normally appear. The contents
|
25748
|
+
of the NOTICE file are for informational purposes only and
|
25749
|
+
do not modify the License. You may add Your own attribution
|
25750
|
+
notices within Derivative Works that You distribute, alongside
|
25751
|
+
or as an addendum to the NOTICE text from the Work, provided
|
25752
|
+
that such additional attribution notices cannot be construed
|
25753
|
+
as modifying the License.
|
25754
|
+
|
25755
|
+
You may add Your own copyright statement to Your modifications and
|
25756
|
+
may provide additional or different license terms and conditions
|
25757
|
+
for use, reproduction, or distribution of Your modifications, or
|
25758
|
+
for any such Derivative Works as a whole, provided Your use,
|
25759
|
+
reproduction, and distribution of the Work otherwise complies with
|
25760
|
+
the conditions stated in this License.
|
25761
|
+
|
25762
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
25763
|
+
any Contribution intentionally submitted for inclusion in the Work
|
25764
|
+
by You to the Licensor shall be under the terms and conditions of
|
25765
|
+
this License, without any additional terms or conditions.
|
25766
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
25767
|
+
the terms of any separate license agreement you may have executed
|
25768
|
+
with Licensor regarding such Contributions.
|
25769
|
+
|
25770
|
+
6. Trademarks. This License does not grant permission to use the trade
|
25771
|
+
names, trademarks, service marks, or product names of the Licensor,
|
25772
|
+
except as required for reasonable and customary use in describing the
|
25773
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
25774
|
+
|
25775
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
25776
|
+
agreed to in writing, Licensor provides the Work (and each
|
25777
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
25778
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
25779
|
+
implied, including, without limitation, any warranties or conditions
|
25780
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
25781
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
25782
|
+
appropriateness of using or redistributing the Work and assume any
|
25783
|
+
risks associated with Your exercise of permissions under this License.
|
25784
|
+
|
25785
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
25786
|
+
whether in tort (including negligence), contract, or otherwise,
|
25787
|
+
unless required by applicable law (such as deliberate and grossly
|
25788
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
25789
|
+
liable to You for damages, including any direct, indirect, special,
|
25790
|
+
incidental, or consequential damages of any character arising as a
|
25791
|
+
result of this License or out of the use or inability to use the
|
25792
|
+
Work (including but not limited to damages for loss of goodwill,
|
25793
|
+
work stoppage, computer failure or malfunction, or any and all
|
25794
|
+
other commercial damages or losses), even if such Contributor
|
25795
|
+
has been advised of the possibility of such damages.
|
25796
|
+
|
25797
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
25798
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
25799
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
25800
|
+
or other liability obligations and/or rights consistent with this
|
25801
|
+
License. However, in accepting such obligations, You may act only
|
25802
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
25803
|
+
of any other Contributor, and only if You agree to indemnify,
|
25804
|
+
defend, and hold each Contributor harmless for any liability
|
25805
|
+
incurred by, or claims asserted against, such Contributor by reason
|
25806
|
+
of your accepting any such warranty or additional liability.
|
25807
|
+
|
25808
|
+
END OF TERMS AND CONDITIONS
|
25809
|
+
|
25810
|
+
|
25479
25811
|
================================================================================
|
25480
25812
|
polars LICENSE
|
25481
25813
|
================================================================================
|
@@ -25716,6 +26048,30 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25716
26048
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
25717
26049
|
SOFTWARE.
|
25718
26050
|
|
26051
|
+
================================================================================
|
26052
|
+
polars-sql LICENSE
|
26053
|
+
================================================================================
|
26054
|
+
|
26055
|
+
Copyright (c) 2020 Ritchie Vink
|
26056
|
+
|
26057
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
26058
|
+
of this software and associated documentation files (the "Software"), to deal
|
26059
|
+
in the Software without restriction, including without limitation the rights
|
26060
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
26061
|
+
copies of the Software, and to permit persons to whom the Software is
|
26062
|
+
furnished to do so, subject to the following conditions:
|
26063
|
+
|
26064
|
+
The above copyright notice and this permission notice shall be included in all
|
26065
|
+
copies or substantial portions of the Software.
|
26066
|
+
|
26067
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
26068
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
26069
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
26070
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
26071
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
26072
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
26073
|
+
SOFTWARE.
|
26074
|
+
|
25719
26075
|
================================================================================
|
25720
26076
|
polars-time LICENSE
|
25721
26077
|
================================================================================
|
@@ -28684,31 +29040,329 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
28684
29040
|
DEALINGS IN THE SOFTWARE.
|
28685
29041
|
|
28686
29042
|
================================================================================
|
28687
|
-
regex src/testdata/LICENSE
|
29043
|
+
regex src/testdata/LICENSE
|
29044
|
+
================================================================================
|
29045
|
+
|
29046
|
+
The following license covers testregex.c and all associated test data.
|
29047
|
+
|
29048
|
+
Permission is hereby granted, free of charge, to any person obtaining a
|
29049
|
+
copy of THIS SOFTWARE FILE (the "Software"), to deal in the Software
|
29050
|
+
without restriction, including without limitation the rights to use,
|
29051
|
+
copy, modify, merge, publish, distribute, and/or sell copies of the
|
29052
|
+
Software, and to permit persons to whom the Software is furnished to do
|
29053
|
+
so, subject to the following disclaimer:
|
29054
|
+
|
29055
|
+
THIS SOFTWARE IS PROVIDED BY AT&T ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
29056
|
+
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
29057
|
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
29058
|
+
IN NO EVENT SHALL AT&T BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
29059
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
29060
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
29061
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
29062
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
29063
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
29064
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
29065
|
+
|
29066
|
+
================================================================================
|
29067
|
+
regex-syntax v0.6.29 LICENSE-APACHE
|
29068
|
+
================================================================================
|
29069
|
+
|
29070
|
+
Apache License
|
29071
|
+
Version 2.0, January 2004
|
29072
|
+
http://www.apache.org/licenses/
|
29073
|
+
|
29074
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
29075
|
+
|
29076
|
+
1. Definitions.
|
29077
|
+
|
29078
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
29079
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
29080
|
+
|
29081
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
29082
|
+
the copyright owner that is granting the License.
|
29083
|
+
|
29084
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
29085
|
+
other entities that control, are controlled by, or are under common
|
29086
|
+
control with that entity. For the purposes of this definition,
|
29087
|
+
"control" means (i) the power, direct or indirect, to cause the
|
29088
|
+
direction or management of such entity, whether by contract or
|
29089
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
29090
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
29091
|
+
|
29092
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
29093
|
+
exercising permissions granted by this License.
|
29094
|
+
|
29095
|
+
"Source" form shall mean the preferred form for making modifications,
|
29096
|
+
including but not limited to software source code, documentation
|
29097
|
+
source, and configuration files.
|
29098
|
+
|
29099
|
+
"Object" form shall mean any form resulting from mechanical
|
29100
|
+
transformation or translation of a Source form, including but
|
29101
|
+
not limited to compiled object code, generated documentation,
|
29102
|
+
and conversions to other media types.
|
29103
|
+
|
29104
|
+
"Work" shall mean the work of authorship, whether in Source or
|
29105
|
+
Object form, made available under the License, as indicated by a
|
29106
|
+
copyright notice that is included in or attached to the work
|
29107
|
+
(an example is provided in the Appendix below).
|
29108
|
+
|
29109
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
29110
|
+
form, that is based on (or derived from) the Work and for which the
|
29111
|
+
editorial revisions, annotations, elaborations, or other modifications
|
29112
|
+
represent, as a whole, an original work of authorship. For the purposes
|
29113
|
+
of this License, Derivative Works shall not include works that remain
|
29114
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
29115
|
+
the Work and Derivative Works thereof.
|
29116
|
+
|
29117
|
+
"Contribution" shall mean any work of authorship, including
|
29118
|
+
the original version of the Work and any modifications or additions
|
29119
|
+
to that Work or Derivative Works thereof, that is intentionally
|
29120
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
29121
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
29122
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
29123
|
+
means any form of electronic, verbal, or written communication sent
|
29124
|
+
to the Licensor or its representatives, including but not limited to
|
29125
|
+
communication on electronic mailing lists, source code control systems,
|
29126
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
29127
|
+
Licensor for the purpose of discussing and improving the Work, but
|
29128
|
+
excluding communication that is conspicuously marked or otherwise
|
29129
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
29130
|
+
|
29131
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
29132
|
+
on behalf of whom a Contribution has been received by Licensor and
|
29133
|
+
subsequently incorporated within the Work.
|
29134
|
+
|
29135
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
29136
|
+
this License, each Contributor hereby grants to You a perpetual,
|
29137
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
29138
|
+
copyright license to reproduce, prepare Derivative Works of,
|
29139
|
+
publicly display, publicly perform, sublicense, and distribute the
|
29140
|
+
Work and such Derivative Works in Source or Object form.
|
29141
|
+
|
29142
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
29143
|
+
this License, each Contributor hereby grants to You a perpetual,
|
29144
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
29145
|
+
(except as stated in this section) patent license to make, have made,
|
29146
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
29147
|
+
where such license applies only to those patent claims licensable
|
29148
|
+
by such Contributor that are necessarily infringed by their
|
29149
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
29150
|
+
with the Work to which such Contribution(s) was submitted. If You
|
29151
|
+
institute patent litigation against any entity (including a
|
29152
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
29153
|
+
or a Contribution incorporated within the Work constitutes direct
|
29154
|
+
or contributory patent infringement, then any patent licenses
|
29155
|
+
granted to You under this License for that Work shall terminate
|
29156
|
+
as of the date such litigation is filed.
|
29157
|
+
|
29158
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
29159
|
+
Work or Derivative Works thereof in any medium, with or without
|
29160
|
+
modifications, and in Source or Object form, provided that You
|
29161
|
+
meet the following conditions:
|
29162
|
+
|
29163
|
+
(a) You must give any other recipients of the Work or
|
29164
|
+
Derivative Works a copy of this License; and
|
29165
|
+
|
29166
|
+
(b) You must cause any modified files to carry prominent notices
|
29167
|
+
stating that You changed the files; and
|
29168
|
+
|
29169
|
+
(c) You must retain, in the Source form of any Derivative Works
|
29170
|
+
that You distribute, all copyright, patent, trademark, and
|
29171
|
+
attribution notices from the Source form of the Work,
|
29172
|
+
excluding those notices that do not pertain to any part of
|
29173
|
+
the Derivative Works; and
|
29174
|
+
|
29175
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
29176
|
+
distribution, then any Derivative Works that You distribute must
|
29177
|
+
include a readable copy of the attribution notices contained
|
29178
|
+
within such NOTICE file, excluding those notices that do not
|
29179
|
+
pertain to any part of the Derivative Works, in at least one
|
29180
|
+
of the following places: within a NOTICE text file distributed
|
29181
|
+
as part of the Derivative Works; within the Source form or
|
29182
|
+
documentation, if provided along with the Derivative Works; or,
|
29183
|
+
within a display generated by the Derivative Works, if and
|
29184
|
+
wherever such third-party notices normally appear. The contents
|
29185
|
+
of the NOTICE file are for informational purposes only and
|
29186
|
+
do not modify the License. You may add Your own attribution
|
29187
|
+
notices within Derivative Works that You distribute, alongside
|
29188
|
+
or as an addendum to the NOTICE text from the Work, provided
|
29189
|
+
that such additional attribution notices cannot be construed
|
29190
|
+
as modifying the License.
|
29191
|
+
|
29192
|
+
You may add Your own copyright statement to Your modifications and
|
29193
|
+
may provide additional or different license terms and conditions
|
29194
|
+
for use, reproduction, or distribution of Your modifications, or
|
29195
|
+
for any such Derivative Works as a whole, provided Your use,
|
29196
|
+
reproduction, and distribution of the Work otherwise complies with
|
29197
|
+
the conditions stated in this License.
|
29198
|
+
|
29199
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
29200
|
+
any Contribution intentionally submitted for inclusion in the Work
|
29201
|
+
by You to the Licensor shall be under the terms and conditions of
|
29202
|
+
this License, without any additional terms or conditions.
|
29203
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
29204
|
+
the terms of any separate license agreement you may have executed
|
29205
|
+
with Licensor regarding such Contributions.
|
29206
|
+
|
29207
|
+
6. Trademarks. This License does not grant permission to use the trade
|
29208
|
+
names, trademarks, service marks, or product names of the Licensor,
|
29209
|
+
except as required for reasonable and customary use in describing the
|
29210
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
29211
|
+
|
29212
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
29213
|
+
agreed to in writing, Licensor provides the Work (and each
|
29214
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
29215
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
29216
|
+
implied, including, without limitation, any warranties or conditions
|
29217
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
29218
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
29219
|
+
appropriateness of using or redistributing the Work and assume any
|
29220
|
+
risks associated with Your exercise of permissions under this License.
|
29221
|
+
|
29222
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
29223
|
+
whether in tort (including negligence), contract, or otherwise,
|
29224
|
+
unless required by applicable law (such as deliberate and grossly
|
29225
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
29226
|
+
liable to You for damages, including any direct, indirect, special,
|
29227
|
+
incidental, or consequential damages of any character arising as a
|
29228
|
+
result of this License or out of the use or inability to use the
|
29229
|
+
Work (including but not limited to damages for loss of goodwill,
|
29230
|
+
work stoppage, computer failure or malfunction, or any and all
|
29231
|
+
other commercial damages or losses), even if such Contributor
|
29232
|
+
has been advised of the possibility of such damages.
|
29233
|
+
|
29234
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
29235
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
29236
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
29237
|
+
or other liability obligations and/or rights consistent with this
|
29238
|
+
License. However, in accepting such obligations, You may act only
|
29239
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
29240
|
+
of any other Contributor, and only if You agree to indemnify,
|
29241
|
+
defend, and hold each Contributor harmless for any liability
|
29242
|
+
incurred by, or claims asserted against, such Contributor by reason
|
29243
|
+
of your accepting any such warranty or additional liability.
|
29244
|
+
|
29245
|
+
END OF TERMS AND CONDITIONS
|
29246
|
+
|
29247
|
+
APPENDIX: How to apply the Apache License to your work.
|
29248
|
+
|
29249
|
+
To apply the Apache License to your work, attach the following
|
29250
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
29251
|
+
replaced with your own identifying information. (Don't include
|
29252
|
+
the brackets!) The text should be enclosed in the appropriate
|
29253
|
+
comment syntax for the file format. We also recommend that a
|
29254
|
+
file or class name and description of purpose be included on the
|
29255
|
+
same "printed page" as the copyright notice for easier
|
29256
|
+
identification within third-party archives.
|
29257
|
+
|
29258
|
+
Copyright [yyyy] [name of copyright owner]
|
29259
|
+
|
29260
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
29261
|
+
you may not use this file except in compliance with the License.
|
29262
|
+
You may obtain a copy of the License at
|
29263
|
+
|
29264
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
29265
|
+
|
29266
|
+
Unless required by applicable law or agreed to in writing, software
|
29267
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
29268
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
29269
|
+
See the License for the specific language governing permissions and
|
29270
|
+
limitations under the License.
|
29271
|
+
|
29272
|
+
================================================================================
|
29273
|
+
regex-syntax v0.6.29 LICENSE-MIT
|
29274
|
+
================================================================================
|
29275
|
+
|
29276
|
+
Copyright (c) 2014 The Rust Project Developers
|
29277
|
+
|
29278
|
+
Permission is hereby granted, free of charge, to any
|
29279
|
+
person obtaining a copy of this software and associated
|
29280
|
+
documentation files (the "Software"), to deal in the
|
29281
|
+
Software without restriction, including without
|
29282
|
+
limitation the rights to use, copy, modify, merge,
|
29283
|
+
publish, distribute, sublicense, and/or sell copies of
|
29284
|
+
the Software, and to permit persons to whom the Software
|
29285
|
+
is furnished to do so, subject to the following
|
29286
|
+
conditions:
|
29287
|
+
|
29288
|
+
The above copyright notice and this permission notice
|
29289
|
+
shall be included in all copies or substantial portions
|
29290
|
+
of the Software.
|
29291
|
+
|
29292
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
29293
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
29294
|
+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
29295
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
29296
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
29297
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
29298
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
29299
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
29300
|
+
DEALINGS IN THE SOFTWARE.
|
29301
|
+
|
29302
|
+
================================================================================
|
29303
|
+
regex-syntax v0.6.29 src/unicode_tables/LICENSE-UNICODE
|
28688
29304
|
================================================================================
|
28689
29305
|
|
28690
|
-
|
29306
|
+
UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
|
28691
29307
|
|
28692
|
-
|
28693
|
-
|
29308
|
+
Unicode Data Files include all data files under the directories
|
29309
|
+
http://www.unicode.org/Public/, http://www.unicode.org/reports/,
|
29310
|
+
http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and
|
29311
|
+
http://www.unicode.org/utility/trac/browser/.
|
29312
|
+
|
29313
|
+
Unicode Data Files do not include PDF online code charts under the
|
29314
|
+
directory http://www.unicode.org/Public/.
|
29315
|
+
|
29316
|
+
Software includes any source code published in the Unicode Standard
|
29317
|
+
or under the directories
|
29318
|
+
http://www.unicode.org/Public/, http://www.unicode.org/reports/,
|
29319
|
+
http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and
|
29320
|
+
http://www.unicode.org/utility/trac/browser/.
|
29321
|
+
|
29322
|
+
NOTICE TO USER: Carefully read the following legal agreement.
|
29323
|
+
BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S
|
29324
|
+
DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"),
|
29325
|
+
YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
|
29326
|
+
TERMS AND CONDITIONS OF THIS AGREEMENT.
|
29327
|
+
IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE
|
29328
|
+
THE DATA FILES OR SOFTWARE.
|
29329
|
+
|
29330
|
+
COPYRIGHT AND PERMISSION NOTICE
|
29331
|
+
|
29332
|
+
Copyright © 1991-2018 Unicode, Inc. All rights reserved.
|
29333
|
+
Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
|
29334
|
+
|
29335
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
29336
|
+
a copy of the Unicode data files and any associated documentation
|
29337
|
+
(the "Data Files") or Unicode software and any associated documentation
|
29338
|
+
(the "Software") to deal in the Data Files or Software
|
28694
29339
|
without restriction, including without limitation the rights to use,
|
28695
|
-
copy, modify, merge, publish, distribute, and/or sell copies of
|
28696
|
-
Software, and to permit persons to whom the
|
28697
|
-
|
29340
|
+
copy, modify, merge, publish, distribute, and/or sell copies of
|
29341
|
+
the Data Files or Software, and to permit persons to whom the Data Files
|
29342
|
+
or Software are furnished to do so, provided that either
|
29343
|
+
(a) this copyright and permission notice appear with all copies
|
29344
|
+
of the Data Files or Software, or
|
29345
|
+
(b) this copyright and permission notice appear in associated
|
29346
|
+
Documentation.
|
28698
29347
|
|
28699
|
-
|
28700
|
-
|
28701
|
-
MERCHANTABILITY
|
28702
|
-
|
28703
|
-
|
28704
|
-
|
28705
|
-
|
28706
|
-
|
28707
|
-
|
28708
|
-
|
29348
|
+
THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
|
29349
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
29350
|
+
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
29351
|
+
NONINFRINGEMENT OF THIRD PARTY RIGHTS.
|
29352
|
+
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
|
29353
|
+
NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
|
29354
|
+
DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
29355
|
+
DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
29356
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
29357
|
+
PERFORMANCE OF THE DATA FILES OR SOFTWARE.
|
29358
|
+
|
29359
|
+
Except as contained in this notice, the name of a copyright holder
|
29360
|
+
shall not be used in advertising or otherwise to promote the sale,
|
29361
|
+
use or other dealings in these Data Files or Software without prior
|
29362
|
+
written authorization of the copyright holder.
|
28709
29363
|
|
28710
29364
|
================================================================================
|
28711
|
-
regex-syntax LICENSE-APACHE
|
29365
|
+
regex-syntax v0.7.1 LICENSE-APACHE
|
28712
29366
|
================================================================================
|
28713
29367
|
|
28714
29368
|
Apache License
|
@@ -28914,7 +29568,7 @@ See the License for the specific language governing permissions and
|
|
28914
29568
|
limitations under the License.
|
28915
29569
|
|
28916
29570
|
================================================================================
|
28917
|
-
regex-syntax LICENSE-MIT
|
29571
|
+
regex-syntax v0.7.1 LICENSE-MIT
|
28918
29572
|
================================================================================
|
28919
29573
|
|
28920
29574
|
Copyright (c) 2014 The Rust Project Developers
|
@@ -28944,7 +29598,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
28944
29598
|
DEALINGS IN THE SOFTWARE.
|
28945
29599
|
|
28946
29600
|
================================================================================
|
28947
|
-
regex-syntax src/unicode_tables/LICENSE-UNICODE
|
29601
|
+
regex-syntax v0.7.1 src/unicode_tables/LICENSE-UNICODE
|
28948
29602
|
================================================================================
|
28949
29603
|
|
28950
29604
|
UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
|
@@ -33549,6 +34203,212 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
33549
34203
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
33550
34204
|
DEALINGS IN THE SOFTWARE.
|
33551
34205
|
|
34206
|
+
================================================================================
|
34207
|
+
sqlparser LICENSE.TXT
|
34208
|
+
================================================================================
|
34209
|
+
|
34210
|
+
Apache License
|
34211
|
+
Version 2.0, January 2004
|
34212
|
+
http://www.apache.org/licenses/
|
34213
|
+
|
34214
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
34215
|
+
|
34216
|
+
1. Definitions.
|
34217
|
+
|
34218
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
34219
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
34220
|
+
|
34221
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
34222
|
+
the copyright owner that is granting the License.
|
34223
|
+
|
34224
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
34225
|
+
other entities that control, are controlled by, or are under common
|
34226
|
+
control with that entity. For the purposes of this definition,
|
34227
|
+
"control" means (i) the power, direct or indirect, to cause the
|
34228
|
+
direction or management of such entity, whether by contract or
|
34229
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
34230
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
34231
|
+
|
34232
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
34233
|
+
exercising permissions granted by this License.
|
34234
|
+
|
34235
|
+
"Source" form shall mean the preferred form for making modifications,
|
34236
|
+
including but not limited to software source code, documentation
|
34237
|
+
source, and configuration files.
|
34238
|
+
|
34239
|
+
"Object" form shall mean any form resulting from mechanical
|
34240
|
+
transformation or translation of a Source form, including but
|
34241
|
+
not limited to compiled object code, generated documentation,
|
34242
|
+
and conversions to other media types.
|
34243
|
+
|
34244
|
+
"Work" shall mean the work of authorship, whether in Source or
|
34245
|
+
Object form, made available under the License, as indicated by a
|
34246
|
+
copyright notice that is included in or attached to the work
|
34247
|
+
(an example is provided in the Appendix below).
|
34248
|
+
|
34249
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
34250
|
+
form, that is based on (or derived from) the Work and for which the
|
34251
|
+
editorial revisions, annotations, elaborations, or other modifications
|
34252
|
+
represent, as a whole, an original work of authorship. For the purposes
|
34253
|
+
of this License, Derivative Works shall not include works that remain
|
34254
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
34255
|
+
the Work and Derivative Works thereof.
|
34256
|
+
|
34257
|
+
"Contribution" shall mean any work of authorship, including
|
34258
|
+
the original version of the Work and any modifications or additions
|
34259
|
+
to that Work or Derivative Works thereof, that is intentionally
|
34260
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
34261
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
34262
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
34263
|
+
means any form of electronic, verbal, or written communication sent
|
34264
|
+
to the Licensor or its representatives, including but not limited to
|
34265
|
+
communication on electronic mailing lists, source code control systems,
|
34266
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
34267
|
+
Licensor for the purpose of discussing and improving the Work, but
|
34268
|
+
excluding communication that is conspicuously marked or otherwise
|
34269
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
34270
|
+
|
34271
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
34272
|
+
on behalf of whom a Contribution has been received by Licensor and
|
34273
|
+
subsequently incorporated within the Work.
|
34274
|
+
|
34275
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
34276
|
+
this License, each Contributor hereby grants to You a perpetual,
|
34277
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
34278
|
+
copyright license to reproduce, prepare Derivative Works of,
|
34279
|
+
publicly display, publicly perform, sublicense, and distribute the
|
34280
|
+
Work and such Derivative Works in Source or Object form.
|
34281
|
+
|
34282
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
34283
|
+
this License, each Contributor hereby grants to You a perpetual,
|
34284
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
34285
|
+
(except as stated in this section) patent license to make, have made,
|
34286
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
34287
|
+
where such license applies only to those patent claims licensable
|
34288
|
+
by such Contributor that are necessarily infringed by their
|
34289
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
34290
|
+
with the Work to which such Contribution(s) was submitted. If You
|
34291
|
+
institute patent litigation against any entity (including a
|
34292
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
34293
|
+
or a Contribution incorporated within the Work constitutes direct
|
34294
|
+
or contributory patent infringement, then any patent licenses
|
34295
|
+
granted to You under this License for that Work shall terminate
|
34296
|
+
as of the date such litigation is filed.
|
34297
|
+
|
34298
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
34299
|
+
Work or Derivative Works thereof in any medium, with or without
|
34300
|
+
modifications, and in Source or Object form, provided that You
|
34301
|
+
meet the following conditions:
|
34302
|
+
|
34303
|
+
(a) You must give any other recipients of the Work or
|
34304
|
+
Derivative Works a copy of this License; and
|
34305
|
+
|
34306
|
+
(b) You must cause any modified files to carry prominent notices
|
34307
|
+
stating that You changed the files; and
|
34308
|
+
|
34309
|
+
(c) You must retain, in the Source form of any Derivative Works
|
34310
|
+
that You distribute, all copyright, patent, trademark, and
|
34311
|
+
attribution notices from the Source form of the Work,
|
34312
|
+
excluding those notices that do not pertain to any part of
|
34313
|
+
the Derivative Works; and
|
34314
|
+
|
34315
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
34316
|
+
distribution, then any Derivative Works that You distribute must
|
34317
|
+
include a readable copy of the attribution notices contained
|
34318
|
+
within such NOTICE file, excluding those notices that do not
|
34319
|
+
pertain to any part of the Derivative Works, in at least one
|
34320
|
+
of the following places: within a NOTICE text file distributed
|
34321
|
+
as part of the Derivative Works; within the Source form or
|
34322
|
+
documentation, if provided along with the Derivative Works; or,
|
34323
|
+
within a display generated by the Derivative Works, if and
|
34324
|
+
wherever such third-party notices normally appear. The contents
|
34325
|
+
of the NOTICE file are for informational purposes only and
|
34326
|
+
do not modify the License. You may add Your own attribution
|
34327
|
+
notices within Derivative Works that You distribute, alongside
|
34328
|
+
or as an addendum to the NOTICE text from the Work, provided
|
34329
|
+
that such additional attribution notices cannot be construed
|
34330
|
+
as modifying the License.
|
34331
|
+
|
34332
|
+
You may add Your own copyright statement to Your modifications and
|
34333
|
+
may provide additional or different license terms and conditions
|
34334
|
+
for use, reproduction, or distribution of Your modifications, or
|
34335
|
+
for any such Derivative Works as a whole, provided Your use,
|
34336
|
+
reproduction, and distribution of the Work otherwise complies with
|
34337
|
+
the conditions stated in this License.
|
34338
|
+
|
34339
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
34340
|
+
any Contribution intentionally submitted for inclusion in the Work
|
34341
|
+
by You to the Licensor shall be under the terms and conditions of
|
34342
|
+
this License, without any additional terms or conditions.
|
34343
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
34344
|
+
the terms of any separate license agreement you may have executed
|
34345
|
+
with Licensor regarding such Contributions.
|
34346
|
+
|
34347
|
+
6. Trademarks. This License does not grant permission to use the trade
|
34348
|
+
names, trademarks, service marks, or product names of the Licensor,
|
34349
|
+
except as required for reasonable and customary use in describing the
|
34350
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
34351
|
+
|
34352
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
34353
|
+
agreed to in writing, Licensor provides the Work (and each
|
34354
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
34355
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
34356
|
+
implied, including, without limitation, any warranties or conditions
|
34357
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
34358
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
34359
|
+
appropriateness of using or redistributing the Work and assume any
|
34360
|
+
risks associated with Your exercise of permissions under this License.
|
34361
|
+
|
34362
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
34363
|
+
whether in tort (including negligence), contract, or otherwise,
|
34364
|
+
unless required by applicable law (such as deliberate and grossly
|
34365
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
34366
|
+
liable to You for damages, including any direct, indirect, special,
|
34367
|
+
incidental, or consequential damages of any character arising as a
|
34368
|
+
result of this License or out of the use or inability to use the
|
34369
|
+
Work (including but not limited to damages for loss of goodwill,
|
34370
|
+
work stoppage, computer failure or malfunction, or any and all
|
34371
|
+
other commercial damages or losses), even if such Contributor
|
34372
|
+
has been advised of the possibility of such damages.
|
34373
|
+
|
34374
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
34375
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
34376
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
34377
|
+
or other liability obligations and/or rights consistent with this
|
34378
|
+
License. However, in accepting such obligations, You may act only
|
34379
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
34380
|
+
of any other Contributor, and only if You agree to indemnify,
|
34381
|
+
defend, and hold each Contributor harmless for any liability
|
34382
|
+
incurred by, or claims asserted against, such Contributor by reason
|
34383
|
+
of your accepting any such warranty or additional liability.
|
34384
|
+
|
34385
|
+
END OF TERMS AND CONDITIONS
|
34386
|
+
|
34387
|
+
APPENDIX: How to apply the Apache License to your work.
|
34388
|
+
|
34389
|
+
To apply the Apache License to your work, attach the following
|
34390
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
34391
|
+
replaced with your own identifying information. (Don't include
|
34392
|
+
the brackets!) The text should be enclosed in the appropriate
|
34393
|
+
comment syntax for the file format. We also recommend that a
|
34394
|
+
file or class name and description of purpose be included on the
|
34395
|
+
same "printed page" as the copyright notice for easier
|
34396
|
+
identification within third-party archives.
|
34397
|
+
|
34398
|
+
Copyright [yyyy] [name of copyright owner]
|
34399
|
+
|
34400
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
34401
|
+
you may not use this file except in compliance with the License.
|
34402
|
+
You may obtain a copy of the License at
|
34403
|
+
|
34404
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
34405
|
+
|
34406
|
+
Unless required by applicable law or agreed to in writing, software
|
34407
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
34408
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
34409
|
+
See the License for the specific language governing permissions and
|
34410
|
+
limitations under the License.
|
34411
|
+
|
33552
34412
|
================================================================================
|
33553
34413
|
static_assertions LICENSE-APACHE
|
33554
34414
|
================================================================================
|
@@ -34754,7 +35614,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
34754
35614
|
DEALINGS IN THE SOFTWARE.
|
34755
35615
|
|
34756
35616
|
================================================================================
|
34757
|
-
syn v2.0.
|
35617
|
+
syn v2.0.15 LICENSE-APACHE
|
34758
35618
|
================================================================================
|
34759
35619
|
|
34760
35620
|
Apache License
|
@@ -34935,7 +35795,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
34935
35795
|
END OF TERMS AND CONDITIONS
|
34936
35796
|
|
34937
35797
|
================================================================================
|
34938
|
-
syn v2.0.
|
35798
|
+
syn v2.0.15 LICENSE-MIT
|
34939
35799
|
================================================================================
|
34940
35800
|
|
34941
35801
|
Permission is hereby granted, free of charge, to any
|
@@ -36880,20 +37740,7 @@ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
36880
37740
|
DEALINGS IN THE SOFTWARE.
|
36881
37741
|
|
36882
37742
|
================================================================================
|
36883
|
-
zstd
|
36884
|
-
================================================================================
|
36885
|
-
|
36886
|
-
The MIT License (MIT)
|
36887
|
-
Copyright (c) 2016 Alexandre Bury
|
36888
|
-
|
36889
|
-
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:
|
36890
|
-
|
36891
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
36892
|
-
|
36893
|
-
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.
|
36894
|
-
|
36895
|
-
================================================================================
|
36896
|
-
zstd v0.12.3+zstd.1.5.2 LICENSE
|
37743
|
+
zstd LICENSE
|
36897
37744
|
================================================================================
|
36898
37745
|
|
36899
37746
|
The MIT License (MIT)
|
@@ -36906,13 +37753,7 @@ The above copyright notice and this permission notice shall be included in all c
|
|
36906
37753
|
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.
|
36907
37754
|
|
36908
37755
|
================================================================================
|
36909
|
-
zstd-safe
|
36910
|
-
================================================================================
|
36911
|
-
|
36912
|
-
MIT or Apache-2.0
|
36913
|
-
|
36914
|
-
================================================================================
|
36915
|
-
zstd-safe v6.0.4+zstd.1.5.4 LICENSE
|
37756
|
+
zstd-safe LICENSE
|
36916
37757
|
================================================================================
|
36917
37758
|
|
36918
37759
|
MIT or Apache-2.0
|