-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathnotices.html
1318 lines (1318 loc) · 161 KB
/
notices.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<title></title>
<meta name="Generator" content="Cocoa HTML Writer">
<meta name="CocoaVersion" content="2487.7">
<style type="text/css">
p.p2 {margin: 0.0px 0.0px 24.0px 0.0px; font: 14.0px Helvetica; -webkit-text-stroke: #000000}
p.p4 {margin: 0.0px 0.0px 16.0px 0.0px; font: 14.0px Helvetica; -webkit-text-stroke: #000000}
p.p6 {margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Courier; -webkit-text-stroke: #000000; background-color: #ffffff}
p.p7 {margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Courier; -webkit-text-stroke: #000000; background-color: #ffffff; min-height: 17.0px}
p.p8 {margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Courier; -webkit-text-stroke: #000000}
p.p9 {margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Helvetica; -webkit-text-stroke: #000000; background-color: #ffffff}
p.p10 {margin: 0.0px 0.0px 0.0px 36.0px; text-indent: -36.0px; font: 14.0px Helvetica; -webkit-text-stroke: #000000}
p.p11 {margin: 0.0px 0.0px 0.0px 0.0px; font: 24.0px Helvetica; -webkit-text-stroke: #000000; background-color: #ffffff}
li.li5 {margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Helvetica; -webkit-text-stroke: #000000}
li.li9 {margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Helvetica; -webkit-text-stroke: #000000; background-color: #ffffff}
span.s1 {font-kerning: none; background-color: #ffffff}
span.s2 {background-color: #ffffff; -webkit-text-stroke: 0px #000000}
span.s3 {font-kerning: none}
span.s4 {-webkit-text-stroke: 0px #000000}
span.s5 {font: 14.0px Courier; font-kerning: none}
span.Apple-tab-span {white-space:pre}
ul.ul1 {list-style-type: disc}
</style>
</head>
<body>
<h1 style="margin: 0.0px 0.0px 16.0px 0.0px; text-align: center; font: 28.0px Helvetica; -webkit-text-stroke: #000000"><span class="s1"><b>Third Party Notices</b></span></h1>
<p class="p2"><span class="s1">THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THIS PRODUCT.</span></p>
<h1 style="margin: 0.0px 0.0px 16.0px 0.0px; font: 24.0px Helvetica; -webkit-text-stroke: #000000"><span class="s1"><b>Apache License 2.0</b></span></h1>
<p class="p4"><span class="s1">The following components are licensed under Apache License 2.0 reproduced below:</span></p>
<ul class="ul1">
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>AOSP</b> <i>, Copyright (C) 2020 The Android Open Source Project</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>KTX-Software 4.0.0</b> <i>, Copyright 2013-2020 Mark Callow</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>MoltenVK 1.3.236</b> <i>, Copyright (c) 2015-2024 The Brenwill Workshop Ltd.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>SoLoader</b> <i>, Copyright (c) Meta Platforms, Inc. and affiliates.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>Vulkan-Headers 1.3.210</b> <i>, Copyright 2015-2022 The Khronos Group Inc.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>accompanist 0.34.0</b> <i>, Copyright 2020 The Android Open Source Project</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>acra 4.2.3</b> <i>, Copyright 2010 Emmanuel Astier & Kevin Gaudin</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>androidx 1.9.0</b> <i>, Copyright 2018 The Android Open Source Project</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>buck</b> <i>, © Copyright Facebook, 2013 - 2020</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>coil 2.1.0</b> <i>, Copyright 2022 Coil Contributors</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>commons-cli 1.3.1</b> <i>, Copyright 2001-2015 The Apache Software Foundation</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>cpu_features</b> <i>, Copyright 2017 Google LLC</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>error-prone 2.26.1</b> <i>, Copyright 2011 The Error Prone Authors.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>fbjni</b> <i>, Copyright (c) Facebook, Inc. and its affiliates.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>flatbuffers 1.12.0</b> <i>, Copyright 2014 Google Inc.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>folly</b> <i>, Copyright (c) Meta Platforms, Inc. and affiliates</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>gradle</b> <i>, © Gradle Inc. 2024</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>gson 2.10.1</b> <i>, Copyright 2008 Google Inc.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>guava 33.2.0-jre</b> <i>, Copyright (c) 2009 The Guava Authors</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>j2objc 3.0.0</b> <i>, Copyright 2011 Google Inc. All Rights Reserved.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>jackson-core 2.2.3</b> <i>, Copyright (c) 2007- Tatu Saloranta, tatu.saloranta@iki.fi</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>jarjar 1.4.1</b> <i>, Copyright 2007 Google Inc</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>java-annotations 13.0</b> <i>, Copyright 2000-2016 JetBrains s.r.o.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>javapoet 1.13.0</b> <i>, Copyright © 2015 Square, Inc.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>javax-inject 1</b> <i>, Copyright (C) 2009 The JSR-330 Expert Group</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>kotlin 2.0.0</b> <i>, Copyright 2010-2024 JetBrains s.r.o and respective authors and developers</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>kotlinpoet 1.16.0</b> <i>, Copyright 2017 Square, Inc.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>kotlinx.collections.immutable 0.3.7</b> <i>, Copyright 2016-2021 JetBrains s.r.o.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>kotlinx.coroutines 1.8.0</b> <i>, Copyright 2000-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>kotlinx.serialization 1.7.1</b> <i>, Copyright 2017-2019 JetBrains s.r.o and respective authors and developers</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>ksp 2.0.0-1.0.24</b> <i>, Copyright 2000-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>mbedtls 3.4.1</b> <i>, Copyright The Mbed TLS Contributors</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>moshi 1.6.0</b> <i>, Copyright 2015 Square, Inc.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>mustache.java 0.9.13</b> <i>, Copyright 2010 RightTime, Inc.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>okhttp 3.14.9</b> <i>, Copyright 2019 Square, Inc.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>okio 1.17.4</b> <i>, Copyright 2013 Square, Inc.</i></span></li>
</ul>
<p class="p6"><span class="s3"><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>Apache License</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Version 2.0, January 2004</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>http://www.apache.org/licenses/</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>1. Definitions.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"License" shall mean the terms and conditions for use, reproduction,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>and distribution as defined by Sections 1 through 9 of this document.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Licensor" shall mean the copyright owner or entity authorized by</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the copyright owner that is granting the License.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Legal Entity" shall mean the union of the acting entity and all</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>other entities that control, are controlled by, or are under common</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>control with that entity. For the purposes of this definition,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"control" means (i) the power, direct or indirect, to cause the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>direction or management of such entity, whether by contract or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>otherwise, or (ii) ownership of fifty percent (50%) or more of the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>outstanding shares, or (iii) beneficial ownership of such entity.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"You" (or "Your") shall mean an individual or Legal Entity</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>exercising permissions granted by this License.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Source" form shall mean the preferred form for making modifications,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>including but not limited to software source code, documentation</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>source, and configuration files.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Object" form shall mean any form resulting from mechanical</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>transformation or translation of a Source form, including but</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>not limited to compiled object code, generated documentation,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>and conversions to other media types.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Work" shall mean the work of authorship, whether in Source or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Object form, made available under the License, as indicated by a</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>copyright notice that is included in or attached to the work</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>(an example is provided in the Appendix below).</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Derivative Works" shall mean any work, whether in Source or Object</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>form, that is based on (or derived from) the Work and for which the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>editorial revisions, annotations, elaborations, or other modifications</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>represent, as a whole, an original work of authorship. For the purposes</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>of this License, Derivative Works shall not include works that remain</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>separable from, or merely link (or bind by name) to the interfaces of,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the Work and Derivative Works thereof.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Contribution" shall mean any work of authorship, including</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the original version of the Work and any modifications or additions</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>to that Work or Derivative Works thereof, that is intentionally</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>submitted to Licensor for inclusion in the Work by the copyright owner</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>or by an individual or Legal Entity authorized to submit on behalf of</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the copyright owner. For the purposes of this definition, "submitted"</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>means any form of electronic, verbal, or written communication sent</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>to the Licensor or its representatives, including but not limited to</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>communication on electronic mailing lists, source code control systems,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>and issue tracking systems that are managed by, or on behalf of, the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Licensor for the purpose of discussing and improving the Work, but</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>excluding communication that is conspicuously marked or otherwise</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>designated in writing by the copyright owner as "Not a Contribution."</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Contributor" shall mean Licensor and any individual or Legal Entity</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>on behalf of whom a Contribution has been received by Licensor and</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>subsequently incorporated within the Work.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>2. Grant of Copyright License. Subject to the terms and conditions of</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>this License, each Contributor hereby grants to You a perpetual,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>worldwide, non-exclusive, no-charge, royalty-free, irrevocable</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>copyright license to reproduce, prepare Derivative Works of,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>publicly display, publicly perform, sublicense, and distribute the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Work and such Derivative Works in Source or Object form.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>3. Grant of Patent License. Subject to the terms and conditions of</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>this License, each Contributor hereby grants to You a perpetual,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>worldwide, non-exclusive, no-charge, royalty-free, irrevocable</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>(except as stated in this section) patent license to make, have made,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>use, offer to sell, sell, import, and otherwise transfer the Work,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>where such license applies only to those patent claims licensable</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>by such Contributor that are necessarily infringed by their</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Contribution(s) alone or by combination of their Contribution(s)</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>with the Work to which such Contribution(s) was submitted. If You</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>institute patent litigation against any entity (including a</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>cross-claim or counterclaim in a lawsuit) alleging that the Work</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>or a Contribution incorporated within the Work constitutes direct</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>or contributory patent infringement, then any patent licenses</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>granted to You under this License for that Work shall terminate</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>as of the date such litigation is filed.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>4. Redistribution. You may reproduce and distribute copies of the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Work or Derivative Works thereof in any medium, with or without</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>modifications, and in Source or Object form, provided that You</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>meet the following conditions:</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>(a) You must give any other recipients of the Work or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Derivative Works a copy of this License; and</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>(b) You must cause any modified files to carry prominent notices</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>stating that You changed the files; and</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>(c) You must retain, in the Source form of any Derivative Works</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>that You distribute, all copyright, patent, trademark, and</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>attribution notices from the Source form of the Work,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>excluding those notices that do not pertain to any part of</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the Derivative Works; and</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>(d) If the Work includes a "NOTICE" text file as part of its</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>distribution, then any Derivative Works that You distribute must</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>include a readable copy of the attribution notices contained</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>within such NOTICE file, excluding those notices that do not</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>pertain to any part of the Derivative Works, in at least one</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>of the following places: within a NOTICE text file distributed</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>as part of the Derivative Works; within the Source form or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>documentation, if provided along with the Derivative Works; or,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>within a display generated by the Derivative Works, if and</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>wherever such third-party notices normally appear. The contents</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>of the NOTICE file are for informational purposes only and</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>do not modify the License. You may add Your own attribution</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>notices within Derivative Works that You distribute, alongside</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>or as an addendum to the NOTICE text from the Work, provided</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>that such additional attribution notices cannot be construed</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>as modifying the License.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>You may add Your own copyright statement to Your modifications and</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>may provide additional or different license terms and conditions</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>for use, reproduction, or distribution of Your modifications, or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>for any such Derivative Works as a whole, provided Your use,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>reproduction, and distribution of the Work otherwise complies with</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the conditions stated in this License.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>5. Submission of Contributions. Unless You explicitly state otherwise,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>any Contribution intentionally submitted for inclusion in the Work</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>by You to the Licensor shall be under the terms and conditions of</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>this License, without any additional terms or conditions.</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Notwithstanding the above, nothing herein shall supersede or modify</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the terms of any separate license agreement you may have executed</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>with Licensor regarding such Contributions.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>6. Trademarks. This License does not grant permission to use the trade</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>names, trademarks, service marks, or product names of the Licensor,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>except as required for reasonable and customary use in describing the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>origin of the Work and reproducing the content of the NOTICE file.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>7. Disclaimer of Warranty. Unless required by applicable law or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>agreed to in writing, Licensor provides the Work (and each</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Contributor provides its Contributions) on an "AS IS" BASIS,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>implied, including, without limitation, any warranties or conditions</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>PARTICULAR PURPOSE. You are solely responsible for determining the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>appropriateness of using or redistributing the Work and assume any</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>risks associated with Your exercise of permissions under this License.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>8. Limitation of Liability. In no event and under no legal theory,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>whether in tort (including negligence), contract, or otherwise,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>unless required by applicable law (such as deliberate and grossly</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>negligent acts) or agreed to in writing, shall any Contributor be</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>liable to You for damages, including any direct, indirect, special,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>incidental, or consequential damages of any character arising as a</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>result of this License or out of the use or inability to use the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Work (including but not limited to damages for loss of goodwill,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>work stoppage, computer failure or malfunction, or any and all</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>other commercial damages or losses), even if such Contributor</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>has been advised of the possibility of such damages.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>9. Accepting Warranty or Additional Liability. While redistributing</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the Work or Derivative Works thereof, You may choose to offer,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>and charge a fee for, acceptance of support, warranty, indemnity,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>or other liability obligations and/or rights consistent with this</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>License. However, in accepting such obligations, You may act only</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>on Your own behalf and on Your sole responsibility, not on behalf</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>of any other Contributor, and only if You agree to indemnify,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>defend, and hold each Contributor harmless for any liability</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>incurred by, or claims asserted against, such Contributor by reason</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>of your accepting any such warranty or additional liability.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>END OF TERMS AND CONDITIONS</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>APPENDIX: How to apply the Apache License to your work.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>To apply the Apache License to your work, attach the following</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>boilerplate notice, with the fields enclosed by brackets "[]"</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>replaced with your own identifying information. (Don't include</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the brackets!)<span class="Apple-converted-space"> </span>The text should be enclosed in the appropriate</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>comment syntax for the file format. We also recommend that a</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>file or class name and description of purpose be included on the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>same "printed page" as the copyright notice for easier</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>identification within third-party archives.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Copyright [yyyy] [name of copyright owner]</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Licensed under the Apache License, Version 2.0 (the "License");</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>you may not use this file except in compliance with the License.</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>You may obtain a copy of the License at</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>http://www.apache.org/licenses/LICENSE-2.0</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Unless required by applicable law or agreed to in writing, software</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>distributed under the License is distributed on an "AS IS" BASIS,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>See the License for the specific language governing permissions and</span></p>
<p class="p8"><span class="s1"><span class="Apple-converted-space"> </span>limitations under the License.</span></p>
<h1 style="margin: 0.0px 0.0px 16.0px 0.0px; font: 24.0px Helvetica; -webkit-text-stroke: #000000"><span class="s1"><b>Apache-2.0 or MIT</b></span></h1>
<p class="p4"><span class="s1">The following component is licensed under Apache-2.0 or MIT reproduced below:</span></p>
<ul class="ul1">
<li class="li9"><span class="s4"><b></b></span><span class="s3"><b>buck2</b> <i>, Copyright (c) Meta Platforms, Inc. and affiliates.</i></span></li>
</ul>
<p class="p10"><span class="s1"><b><span class="Apple-tab-span"> </span>•<span class="Apple-tab-span"> </span>OpenXR-SDK 1.0.34</b> <i>, Copyright 2017-2024, The Khronos Group Inc.</i></span></p>
<p class="p6"><span class="s3">MIT License</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">Permission is hereby granted, free of charge, to any person obtaining a copy</span></p>
<p class="p6"><span class="s3">of this software and associated documentation files (the "Software"), to deal</span></p>
<p class="p6"><span class="s3">in the Software without restriction, including without limitation the rights</span></p>
<p class="p6"><span class="s3">to use, copy, modify, merge, publish, distribute, sublicense, and/or sell</span></p>
<p class="p6"><span class="s3">copies of the Software, and to permit persons to whom the Software is</span></p>
<p class="p6"><span class="s3">furnished to do so, subject to the following conditions:</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">The above copyright notice and this permission notice shall be included in all</span></p>
<p class="p6"><span class="s3">copies or substantial portions of the Software.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR</span></p>
<p class="p6"><span class="s3">IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,</span></p>
<p class="p6"><span class="s3">FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE</span></p>
<p class="p6"><span class="s3">AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER</span></p>
<p class="p6"><span class="s3">LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,</span></p>
<p class="p6"><span class="s3">OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE</span></p>
<p class="p8"><span class="s1">SOFTWARE.</span></p>
<h1 style="margin: 0.0px 0.0px 16.0px 0.0px; font: 24.0px Helvetica; -webkit-text-stroke: #000000"><span class="s1"><b>Apache-2.0 or MIT or BSL-1.0</b></span></h1>
<p class="p4"><span class="s1">The following component is licensed under Apache-2.0 or MIT or BSL-1.0 reproduced below:</span></p>
<ul class="ul1">
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>fast_float 6.1.4</b> <i>, Copyright 2020 The fast_float authors</i></span></li>
</ul>
<p class="p6"><span class="s3">MIT</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">Permission is hereby granted, free of charge, to any</span></p>
<p class="p6"><span class="s3">person obtaining a copy of this software and associated</span></p>
<p class="p6"><span class="s3">documentation files (the "Software"), to deal in the</span></p>
<p class="p6"><span class="s3">Software without restriction, including without</span></p>
<p class="p6"><span class="s3">limitation the rights to use, copy, modify, merge,</span></p>
<p class="p6"><span class="s3">publish, distribute, sublicense, and/or sell copies of</span></p>
<p class="p6"><span class="s3">the Software, and to permit persons to whom the Software</span></p>
<p class="p6"><span class="s3">is furnished to do so, subject to the following</span></p>
<p class="p6"><span class="s3">conditions:</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">The above copyright notice and this permission notice</span></p>
<p class="p6"><span class="s3">shall be included in all copies or substantial portions</span></p>
<p class="p6"><span class="s3">of the Software.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF</span></p>
<p class="p6"><span class="s3">ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED</span></p>
<p class="p6"><span class="s3">TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A</span></p>
<p class="p6"><span class="s3">PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT</span></p>
<p class="p6"><span class="s3">SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY</span></p>
<p class="p6"><span class="s3">CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION</span></p>
<p class="p6"><span class="s3">OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR</span></p>
<p class="p6"><span class="s3">IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER</span></p>
<p class="p6"><span class="s3">DEALINGS IN THE SOFTWARE.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">Boost Software License - Version 1.0 - August 17th, 2003</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">Permission is hereby granted, free of charge, to any person or organization</span></p>
<p class="p6"><span class="s3">obtaining a copy of the software and accompanying documentation covered by</span></p>
<p class="p6"><span class="s3">this license (the "Software") to use, reproduce, display, distribute,</span></p>
<p class="p6"><span class="s3">execute, and transmit the Software, and to prepare derivative works of the</span></p>
<p class="p6"><span class="s3">Software, and to permit third-parties to whom the Software is furnished to</span></p>
<p class="p6"><span class="s3">do so, all subject to the following:</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">The copyright notices in the Software and this entire statement, including</span></p>
<p class="p6"><span class="s3">the above license grant, this restriction and the following disclaimer,</span></p>
<p class="p6"><span class="s3">must be included in all copies of the Software, in whole or in part, and</span></p>
<p class="p6"><span class="s3">all derivative works of the Software, unless such copies or derivative</span></p>
<p class="p6"><span class="s3">works are solely in the form of machine-executable object code generated by</span></p>
<p class="p6"><span class="s3">a source language processor.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR</span></p>
<p class="p6"><span class="s3">IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,</span></p>
<p class="p6"><span class="s3">FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT</span></p>
<p class="p6"><span class="s3">SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE</span></p>
<p class="p6"><span class="s3">FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,</span></p>
<p class="p6"><span class="s3">ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER</span></p>
<p class="p8"><span class="s1">DEALINGS IN THE SOFTWARE.</span></p>
<h1 style="margin: 0.0px 0.0px 16.0px 0.0px; font: 24.0px Helvetica; -webkit-text-stroke: #000000"><span class="s1"><b>Apache-2.0 with LLVM Exceptions</b></span></h1>
<p class="p4"><span class="s1">The following component is licensed under Apache-2.0 with LLVM Exceptions reproduced below:</span></p>
<ul class="ul1">
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>llvm-project 18.x</b></span></li>
</ul>
<p class="p6"><span class="s3">==============================================================================</span></p>
<p class="p6"><span class="s3">The LLVM Project is under the Apache License v2.0 with LLVM Exceptions:</span></p>
<p class="p6"><span class="s3">==============================================================================</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Apache License</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Version 2.0, January 2004</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>http://www.apache.org/licenses/</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>1. Definitions.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"License" shall mean the terms and conditions for use, reproduction,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>and distribution as defined by Sections 1 through 9 of this document.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Licensor" shall mean the copyright owner or entity authorized by</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the copyright owner that is granting the License.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Legal Entity" shall mean the union of the acting entity and all</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>other entities that control, are controlled by, or are under common</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>control with that entity. For the purposes of this definition,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"control" means (i) the power, direct or indirect, to cause the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>direction or management of such entity, whether by contract or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>otherwise, or (ii) ownership of fifty percent (50%) or more of the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>outstanding shares, or (iii) beneficial ownership of such entity.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"You" (or "Your") shall mean an individual or Legal Entity</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>exercising permissions granted by this License.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Source" form shall mean the preferred form for making modifications,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>including but not limited to software source code, documentation</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>source, and configuration files.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Object" form shall mean any form resulting from mechanical</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>transformation or translation of a Source form, including but</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>not limited to compiled object code, generated documentation,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>and conversions to other media types.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Work" shall mean the work of authorship, whether in Source or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Object form, made available under the License, as indicated by a</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>copyright notice that is included in or attached to the work</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>(an example is provided in the Appendix below).</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Derivative Works" shall mean any work, whether in Source or Object</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>form, that is based on (or derived from) the Work and for which the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>editorial revisions, annotations, elaborations, or other modifications</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>represent, as a whole, an original work of authorship. For the purposes</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>of this License, Derivative Works shall not include works that remain</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>separable from, or merely link (or bind by name) to the interfaces of,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the Work and Derivative Works thereof.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Contribution" shall mean any work of authorship, including</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the original version of the Work and any modifications or additions</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>to that Work or Derivative Works thereof, that is intentionally</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>submitted to Licensor for inclusion in the Work by the copyright owner</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>or by an individual or Legal Entity authorized to submit on behalf of</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the copyright owner. For the purposes of this definition, "submitted"</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>means any form of electronic, verbal, or written communication sent</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>to the Licensor or its representatives, including but not limited to</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>communication on electronic mailing lists, source code control systems,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>and issue tracking systems that are managed by, or on behalf of, the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Licensor for the purpose of discussing and improving the Work, but</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>excluding communication that is conspicuously marked or otherwise</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>designated in writing by the copyright owner as "Not a Contribution."</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Contributor" shall mean Licensor and any individual or Legal Entity</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>on behalf of whom a Contribution has been received by Licensor and</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>subsequently incorporated within the Work.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>2. Grant of Copyright License. Subject to the terms and conditions of</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>this License, each Contributor hereby grants to You a perpetual,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>worldwide, non-exclusive, no-charge, royalty-free, irrevocable</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>copyright license to reproduce, prepare Derivative Works of,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>publicly display, publicly perform, sublicense, and distribute the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Work and such Derivative Works in Source or Object form.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>3. Grant of Patent License. Subject to the terms and conditions of</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>this License, each Contributor hereby grants to You a perpetual,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>worldwide, non-exclusive, no-charge, royalty-free, irrevocable</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>(except as stated in this section) patent license to make, have made,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>use, offer to sell, sell, import, and otherwise transfer the Work,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>where such license applies only to those patent claims licensable</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>by such Contributor that are necessarily infringed by their</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Contribution(s) alone or by combination of their Contribution(s)</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>with the Work to which such Contribution(s) was submitted. If You</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>institute patent litigation against any entity (including a</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>cross-claim or counterclaim in a lawsuit) alleging that the Work</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>or a Contribution incorporated within the Work constitutes direct</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>or contributory patent infringement, then any patent licenses</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>granted to You under this License for that Work shall terminate</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>as of the date such litigation is filed.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>4. Redistribution. You may reproduce and distribute copies of the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Work or Derivative Works thereof in any medium, with or without</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>modifications, and in Source or Object form, provided that You</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>meet the following conditions:</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>(a) You must give any other recipients of the Work or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Derivative Works a copy of this License; and</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>(b) You must cause any modified files to carry prominent notices</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>stating that You changed the files; and</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>(c) You must retain, in the Source form of any Derivative Works</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>that You distribute, all copyright, patent, trademark, and</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>attribution notices from the Source form of the Work,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>excluding those notices that do not pertain to any part of</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the Derivative Works; and</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>(d) If the Work includes a "NOTICE" text file as part of its</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>distribution, then any Derivative Works that You distribute must</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>include a readable copy of the attribution notices contained</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>within such NOTICE file, excluding those notices that do not</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>pertain to any part of the Derivative Works, in at least one</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>of the following places: within a NOTICE text file distributed</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>as part of the Derivative Works; within the Source form or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>documentation, if provided along with the Derivative Works; or,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>within a display generated by the Derivative Works, if and</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>wherever such third-party notices normally appear. The contents</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>of the NOTICE file are for informational purposes only and</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>do not modify the License. You may add Your own attribution</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>notices within Derivative Works that You distribute, alongside</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>or as an addendum to the NOTICE text from the Work, provided</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>that such additional attribution notices cannot be construed</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>as modifying the License.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>You may add Your own copyright statement to Your modifications and</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>may provide additional or different license terms and conditions</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>for use, reproduction, or distribution of Your modifications, or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>for any such Derivative Works as a whole, provided Your use,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>reproduction, and distribution of the Work otherwise complies with</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the conditions stated in this License.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>5. Submission of Contributions. Unless You explicitly state otherwise,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>any Contribution intentionally submitted for inclusion in the Work</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>by You to the Licensor shall be under the terms and conditions of</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>this License, without any additional terms or conditions.</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Notwithstanding the above, nothing herein shall supersede or modify</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the terms of any separate license agreement you may have executed</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>with Licensor regarding such Contributions.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>6. Trademarks. This License does not grant permission to use the trade</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>names, trademarks, service marks, or product names of the Licensor,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>except as required for reasonable and customary use in describing the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>origin of the Work and reproducing the content of the NOTICE file.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>7. Disclaimer of Warranty. Unless required by applicable law or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>agreed to in writing, Licensor provides the Work (and each</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Contributor provides its Contributions) on an "AS IS" BASIS,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>implied, including, without limitation, any warranties or conditions</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>PARTICULAR PURPOSE. You are solely responsible for determining the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>appropriateness of using or redistributing the Work and assume any</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>risks associated with Your exercise of permissions under this License.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>8. Limitation of Liability. In no event and under no legal theory,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>whether in tort (including negligence), contract, or otherwise,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>unless required by applicable law (such as deliberate and grossly</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>negligent acts) or agreed to in writing, shall any Contributor be</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>liable to You for damages, including any direct, indirect, special,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>incidental, or consequential damages of any character arising as a</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>result of this License or out of the use or inability to use the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Work (including but not limited to damages for loss of goodwill,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>work stoppage, computer failure or malfunction, or any and all</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>other commercial damages or losses), even if such Contributor</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>has been advised of the possibility of such damages.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>9. Accepting Warranty or Additional Liability. While redistributing</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the Work or Derivative Works thereof, You may choose to offer,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>and charge a fee for, acceptance of support, warranty, indemnity,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>or other liability obligations and/or rights consistent with this</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>License. However, in accepting such obligations, You may act only</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>on Your own behalf and on Your sole responsibility, not on behalf</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>of any other Contributor, and only if You agree to indemnify,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>defend, and hold each Contributor harmless for any liability</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>incurred by, or claims asserted against, such Contributor by reason</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>of your accepting any such warranty or additional liability.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>END OF TERMS AND CONDITIONS</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>APPENDIX: How to apply the Apache License to your work.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>To apply the Apache License to your work, attach the following</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>boilerplate notice, with the fields enclosed by brackets "[]"</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>replaced with your own identifying information. (Don't include</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the brackets!)<span class="Apple-converted-space"> </span>The text should be enclosed in the appropriate</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>comment syntax for the file format. We also recommend that a</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>file or class name and description of purpose be included on the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>same "printed page" as the copyright notice for easier</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>identification within third-party archives.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Copyright [yyyy] [name of copyright owner]</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Licensed under the Apache License, Version 2.0 (the "License");</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>you may not use this file except in compliance with the License.</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>You may obtain a copy of the License at</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>http://www.apache.org/licenses/LICENSE-2.0</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Unless required by applicable law or agreed to in writing, software</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>distributed under the License is distributed on an "AS IS" BASIS,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>See the License for the specific language governing permissions and</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>limitations under the License.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">---- LLVM Exceptions to the Apache 2.0 License ----</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">As an exception, if, as a result of your compiling your source code, portions</span></p>
<p class="p6"><span class="s3">of this Software are embedded into an Object form of such source code, you</span></p>
<p class="p6"><span class="s3">may redistribute such embedded portions in such Object form without complying</span></p>
<p class="p6"><span class="s3">with the conditions of Sections 4(a), 4(b) and 4(d) of the License.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">In addition, if you combine or link compiled forms of this Software with</span></p>
<p class="p6"><span class="s3">software that is licensed under the GPLv2 ("Combined Software") and if a</span></p>
<p class="p6"><span class="s3">court of competent jurisdiction determines that the patent provision (Section</span></p>
<p class="p6"><span class="s3">3), the indemnity provision (Section 9) or other Section of the License</span></p>
<p class="p6"><span class="s3">conflicts with the conditions of the GPLv2, you may retroactively and</span></p>
<p class="p6"><span class="s3">prospectively choose to deem waived or otherwise exclude such Section(s) of</span></p>
<p class="p6"><span class="s3">the License, but only in their entirety and only with respect to the Combined</span></p>
<p class="p6"><span class="s3">Software.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">==============================================================================</span></p>
<p class="p6"><span class="s3">Software from third parties included in the LLVM Project:</span></p>
<p class="p6"><span class="s3">==============================================================================</span></p>
<p class="p6"><span class="s3">The LLVM Project contains third party software which is under different license</span></p>
<p class="p6"><span class="s3">terms. All such code will be identified clearly using at least one of two</span></p>
<p class="p6"><span class="s3">mechanisms:</span></p>
<p class="p6"><span class="s3">1) It will be in a separate directory tree with its own `LICENSE.txt` or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>`LICENSE` file at the top containing the specific license and restrictions</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>which apply to that software, or</span></p>
<p class="p6"><span class="s3">2) It will contain specific license and restriction terms at the top of every</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>file.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">==============================================================================</span></p>
<p class="p6"><span class="s3">Legacy LLVM License (https://llvm.org/docs/DeveloperPolicy.html#legacy):</span></p>
<p class="p6"><span class="s3">==============================================================================</span></p>
<p class="p6"><span class="s3">University of Illinois/NCSA</span></p>
<p class="p6"><span class="s3">Open Source License</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">Copyright (c) 2003-2019 University of Illinois at Urbana-Champaign.</span></p>
<p class="p6"><span class="s3">All rights reserved.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">Developed by:</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>LLVM Team</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>University of Illinois at Urbana-Champaign</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>http://llvm.org</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">Permission is hereby granted, free of charge, to any person obtaining a copy of</span></p>
<p class="p6"><span class="s3">this software and associated documentation files (the "Software"), to deal with</span></p>
<p class="p6"><span class="s3">the Software without restriction, including without limitation the rights to</span></p>
<p class="p6"><span class="s3">use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies</span></p>
<p class="p6"><span class="s3">of the Software, and to permit persons to whom the Software is furnished to do</span></p>
<p class="p6"><span class="s3">so, subject to the following conditions:</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>* Redistributions of source code must retain the above copyright notice,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>this list of conditions and the following disclaimers.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>* Redistributions in binary form must reproduce the above copyright notice,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>this list of conditions and the following disclaimers in the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>documentation and/or other materials provided with the distribution.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>* Neither the names of the LLVM Team, University of Illinois at</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Urbana-Champaign, nor the names of its contributors may be used to</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>endorse or promote products derived from this Software without specific</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>prior written permission.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR</span></p>
<p class="p6"><span class="s3">IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS</span></p>
<p class="p6"><span class="s3">FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.<span class="Apple-converted-space"> </span>IN NO EVENT SHALL THE</span></p>
<p class="p6"><span class="s3">CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER</span></p>
<p class="p6"><span class="s3">LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,</span></p>
<p class="p6"><span class="s3">OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE</span></p>
<p class="p8"><span class="s1">SOFTWARE.</span></p>
<h1 style="margin: 0.0px 0.0px 16.0px 0.0px; font: 24.0px Helvetica; -webkit-text-stroke: #000000"><span class="s1"><b>BSD 2-Clause "Simplified" License</b></span></h1>
<p class="p4"><span class="s1">The following component is licensed under BSD 2-Clause "Simplified" License reproduced below:</span></p>
<ul class="ul1">
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>lz4 1.9.4</b> <i>, Copyright (c) 2011-2020, Yann Collet, All rights reserved.</i></span></li>
</ul>
<p class="p6"><span class="s3">Copyright (c) <year> <owner>. All rights reserved.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">Redistribution and use in source and binary forms, with or without modification,</span></p>
<p class="p6"><span class="s3">are permitted provided that the following conditions are met:</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">1. Redistributions of source code must retain the above copyright notice,</span></p>
<p class="p6"><span class="s3">this list of conditions and the following disclaimer.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">2. Redistributions in binary form must reproduce the above copyright notice,</span></p>
<p class="p6"><span class="s3">this list of conditions and the following disclaimer in the documentation</span></p>
<p class="p6"><span class="s3">and/or other materials provided with the distribution.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span></p>
<p class="p6"><span class="s3">AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE</span></p>
<p class="p6"><span class="s3">IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span></p>
<p class="p6"><span class="s3">ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE</span></p>
<p class="p6"><span class="s3">LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL</span></p>
<p class="p6"><span class="s3">DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR</span></p>
<p class="p6"><span class="s3">SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER</span></p>
<p class="p6"><span class="s3">CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,</span></p>
<p class="p6"><span class="s3">OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE</span></p>
<p class="p8"><span class="s1">USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span></p>
<h1 style="margin: 0.0px 0.0px 16.0px 0.0px; font: 24.0px Helvetica; -webkit-text-stroke: #000000"><span class="s1"><b>BSD 3-Clause "New" or "Revised" License</b></span></h1>
<p class="p4"><span class="s1">The following components are licensed under BSD 3-Clause "New" or "Revised" License reproduced below:</span></p>
<ul class="ul1">
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>asm 9.7</b> <i>, Copyright (c) 2000-2011 INRIA, France Telecom. All rights reserved.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>double-conversion 3.1.4</b> <i>, Copyright 2006-2011, the V8 project authors. All rights reserved.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>glog 0.3.4</b> <i>, Copyright (c) 2008, Google Inc., All rights reserved.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>jsr-305 3.0.2</b> <i>, Copyright (c) 2007-2009, JSR305 expert group All rights reserved.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>libevent 1.4.14b-stable</b> <i>, Copyright (c) 2000-2007 Niels Provos <provos@citi.umich.edu>, Copyright (c) 2007-2012 Niels Provos and Nick Mathewson</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>tinyexr 1.0.7</b> <i>, Copyright (c) 2014 - 2021, Syoyo Fujita and many contributors., All rights reserved.</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>yojimbo 02/27/2023</b> <i>, Copyright © 2016 - 2024, Mas Bandwidth LLC.</i></span></li>
</ul>
<p class="p6"><span class="s3">Copyright (c) <year> <owner>. All rights reserved.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">Redistribution and use in source and binary forms, with or without modification,</span></p>
<p class="p6"><span class="s3">are permitted provided that the following conditions are met:</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">1. Redistributions of source code must retain the above copyright notice,</span></p>
<p class="p6"><span class="s3">this list of conditions and the following disclaimer.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">2. Redistributions in binary form must reproduce the above copyright notice,</span></p>
<p class="p6"><span class="s3">this list of conditions and the following disclaimer in the documentation</span></p>
<p class="p6"><span class="s3">and/or other materials provided with the distribution.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">3. Neither the name of the copyright holder nor the names of its contributors</span></p>
<p class="p6"><span class="s3">may be used to endorse or promote products derived from this software without</span></p>
<p class="p6"><span class="s3">specific prior written permission.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span></p>
<p class="p6"><span class="s3">AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE</span></p>
<p class="p6"><span class="s3">IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span></p>
<p class="p6"><span class="s3">ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE</span></p>
<p class="p6"><span class="s3">LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL</span></p>
<p class="p6"><span class="s3">DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR</span></p>
<p class="p6"><span class="s3">SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER</span></p>
<p class="p6"><span class="s3">CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,</span></p>
<p class="p6"><span class="s3">OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE</span></p>
<p class="p8"><span class="s1">USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span></p>
<h1 style="margin: 0.0px 0.0px 16.0px 0.0px; font: 24.0px Helvetica; -webkit-text-stroke: #000000"><span class="s1"><b>BSD-2-Clause or GPL-2.0</b></span></h1>
<p class="p4"><span class="s1">The following component is licensed under BSD-2-Clause or GPL-2.0 reproduced below:</span></p>
<ul class="ul1">
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>FiniteStateEntropy</b> <i>, Copyright (c) 2013, Yann Collet All rights reserved.</i></span></li>
</ul>
<p class="p6"><span class="s3">Redistribution and use in source and binary forms, with or without modification,</span></p>
<p class="p6"><span class="s3">are permitted provided that the following conditions are met:</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">* Redistributions of source code must retain the above copyright notice, this</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>list of conditions and the following disclaimer.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">* Redistributions in binary form must reproduce the above copyright notice, this</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>list of conditions and the following disclaimer in the documentation and/or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>other materials provided with the distribution.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND</span></p>
<p class="p6"><span class="s3">ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED</span></p>
<p class="p6"><span class="s3">WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE</span></p>
<p class="p6"><span class="s3">DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR</span></p>
<p class="p6"><span class="s3">ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span></p>
<p class="p6"><span class="s3">(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span></p>
<p class="p6"><span class="s3">LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON</span></p>
<p class="p6"><span class="s3">ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span></p>
<p class="p6"><span class="s3">(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS</span></p>
<p class="p8"><span class="s1">SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span></p>
<h1 style="margin: 0.0px 0.0px 16.0px 0.0px; font: 24.0px Helvetica; -webkit-text-stroke: #000000"><span class="s1"><b>Boost Software License 1.0</b></span></h1>
<p class="p4"><span class="s1">The following component is licensed under Boost Software License 1.0 reproduced below:</span></p>
<ul class="ul1">
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>boost 1.77.0</b> <i>, Copyright (c) Boost contributors</i></span></li>
</ul>
<p class="p6"><span class="s3">Boost Software License - Version 1.0 - August 17th, 2003</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following:</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p8"><span class="s1">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, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</span></p>
<h1 style="margin: 0.0px 0.0px 16.0px 0.0px; font: 24.0px Helvetica; -webkit-text-stroke: #000000"><span class="s1"><b>FFTPACK License 2004</b></span></h1>
<p class="p4"><span class="s1">The following component is licensed under FFTPACK License 2004 reproduced below:</span></p>
<ul class="ul1">
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>pffft</b> <i>, Copyright (c) 2013 Julien Pommier ( pommier@modartt.com )</i></span></li>
</ul>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>As confirmed by the NCAR fftpack software curators, the following</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>FFTPACKv5 license applies to FFTPACKv4 sources. My changes are</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>released under the same terms.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>FFTPACK license:</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>http://www.cisl.ucar.edu/css/software/fftpack5/ftpk.html</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Copyright (c) 2004 the University Corporation for Atmospheric</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Research ("UCAR"). All rights reserved. Developed by NCAR's</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Computational and Information Systems Laboratory, UCAR,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>www.cisl.ucar.edu.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Redistribution and use of the Software in source and binary forms,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>with or without modification, is permitted provided that the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>following conditions are met:</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>- Neither the names of NCAR's Computational and Information Systems</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Laboratory, the University Corporation for Atmospheric Research,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>nor the names of its sponsors or contributors may be used to</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>endorse or promote products derived from this Software without</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>specific prior written permission. <span class="Apple-converted-space"> </span></span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>- Redistributions of source code must retain the above copyright</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>notices, this list of conditions, and the disclaimer below.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>- Redistributions in binary form must reproduce the above copyright</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>notice, this list of conditions, and the disclaimer below in the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>documentation and/or other materials provided with the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>distribution.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE WARRANTIES OF</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>HOLDERS BE LIABLE FOR ANY CLAIM, INDIRECT, INCIDENTAL, SPECIAL,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>EXEMPLARY, OR CONSEQUENTIAL DAMAGES OR OTHER LIABILITY, WHETHER IN AN</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE</span></p>
<p class="p8"><span class="s1"><span class="Apple-converted-space"> </span>SOFTWARE.</span></p>
<h1 style="margin: 0.0px 0.0px 16.0px 0.0px; font: 24.0px Helvetica; -webkit-text-stroke: #000000"><span class="s1"><b>GPL-2.0 or BSD-3-Clause</b></span></h1>
<p class="p4"><span class="s1">The following component is licensed under GPL-2.0 or BSD-3-Clause reproduced below:</span></p>
<ul class="ul1">
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>zstd 1.5.5</b> <i>, Copyright (c) Meta Platforms, Inc. and affiliates. All rights reserved.</i></span></li>
</ul>
<p class="p6"><span class="s3">* This source code is licensed under both the BSD-style license (found in the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>* LICENSE file in the root directory of this source tree) and the GPLv2 (found</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>* in the COPYING file in the root directory of this source tree).</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>* You may select, at your option, one of the above-listed licenses.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p8"><span class="s1">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.</span></p>
<h1 style="margin: 0.0px 0.0px 16.0px 0.0px; font: 24.0px Helvetica; -webkit-text-stroke: #000000"><span class="s1"><b>ISC License</b></span></h1>
<p class="p4"><span class="s1">The following components are licensed under ISC License reproduced below:</span></p>
<ul class="ul1">
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>earcut.hpp 2.2.2</b> <i>, Copyright (c) 2015, Mapbox</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>libsodium 1.0.18</b> <i>, Copyright (c) 2013-2019 Frank Denis <j at pureftpd dot org></i></span></li>
</ul>
<p class="p6"><span class="s3">ISC License:</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">Copyright (c) 2004-2010 by Internet Systems Consortium, Inc. ("ISC")</span></p>
<p class="p6"><span class="s3">Copyright (c) 1995-2003 by Internet Software Consortium</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p8"><span class="s1">THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.</span></p>
<h1 style="margin: 0.0px 0.0px 16.0px 0.0px; font: 24.0px Helvetica; -webkit-text-stroke: #000000"><span class="s1"><b>JSON License</b></span></h1>
<p class="p4"><span class="s1">The following component is licensed under JSON License reproduced below:</span></p>
<ul class="ul1">
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>JSON-java 20110504</b> <i>, Copyright (c) 2002 JSON.org</i></span></li>
</ul>
<p class="p6"><span class="s3">JSON License</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">Copyright (c) 2002 JSON.org</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">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:</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3">The Software shall be used for Good, not Evil.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p8"><span class="s1">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.</span></p>
<h1 style="margin: 0.0px 0.0px 16.0px 0.0px; font: 24.0px Helvetica; -webkit-text-stroke: #000000"><span class="s1"><b>LGPL-2.1-or-later or Apache-2.0</b></span></h1>
<p class="p4"><span class="s1">The following component is licensed under LGPL-2.1-or-later or Apache-2.0 reproduced below:</span></p>
<ul class="ul1">
<li class="li9"><span class="s4"><b></b></span><span class="s3"><b>dsiutils</b> <i>, Copyright (C) 2022 Sebastiano Vigna</i></span></li>
<li class="li5"><span class="s2"><b></b></span><span class="s1"><b>jna</b></span></li>
</ul>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Apache License</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Version 2.0, January 2004</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>http://www.apache.org/licenses/</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>1. Definitions.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"License" shall mean the terms and conditions for use, reproduction,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>and distribution as defined by Sections 1 through 9 of this document.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Licensor" shall mean the copyright owner or entity authorized by</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the copyright owner that is granting the License.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Legal Entity" shall mean the union of the acting entity and all</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>other entities that control, are controlled by, or are under common</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>control with that entity. For the purposes of this definition,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"control" means (i) the power, direct or indirect, to cause the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>direction or management of such entity, whether by contract or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>otherwise, or (ii) ownership of fifty percent (50%) or more of the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>outstanding shares, or (iii) beneficial ownership of such entity.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"You" (or "Your") shall mean an individual or Legal Entity</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>exercising permissions granted by this License.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Source" form shall mean the preferred form for making modifications,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>including but not limited to software source code, documentation</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>source, and configuration files.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Object" form shall mean any form resulting from mechanical</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>transformation or translation of a Source form, including but</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>not limited to compiled object code, generated documentation,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>and conversions to other media types.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Work" shall mean the work of authorship, whether in Source or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Object form, made available under the License, as indicated by a</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>copyright notice that is included in or attached to the work</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>(an example is provided in the Appendix below).</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Derivative Works" shall mean any work, whether in Source or Object</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>form, that is based on (or derived from) the Work and for which the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>editorial revisions, annotations, elaborations, or other modifications</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>represent, as a whole, an original work of authorship. For the purposes</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>of this License, Derivative Works shall not include works that remain</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>separable from, or merely link (or bind by name) to the interfaces of,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the Work and Derivative Works thereof.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Contribution" shall mean any work of authorship, including</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the original version of the Work and any modifications or additions</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>to that Work or Derivative Works thereof, that is intentionally</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>submitted to Licensor for inclusion in the Work by the copyright owner</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>or by an individual or Legal Entity authorized to submit on behalf of</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the copyright owner. For the purposes of this definition, "submitted"</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>means any form of electronic, verbal, or written communication sent</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>to the Licensor or its representatives, including but not limited to</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>communication on electronic mailing lists, source code control systems,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>and issue tracking systems that are managed by, or on behalf of, the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Licensor for the purpose of discussing and improving the Work, but</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>excluding communication that is conspicuously marked or otherwise</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>designated in writing by the copyright owner as "Not a Contribution."</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>"Contributor" shall mean Licensor and any individual or Legal Entity</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>on behalf of whom a Contribution has been received by Licensor and</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>subsequently incorporated within the Work.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>2. Grant of Copyright License. Subject to the terms and conditions of</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>this License, each Contributor hereby grants to You a perpetual,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>worldwide, non-exclusive, no-charge, royalty-free, irrevocable</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>copyright license to reproduce, prepare Derivative Works of,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>publicly display, publicly perform, sublicense, and distribute the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Work and such Derivative Works in Source or Object form.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>3. Grant of Patent License. Subject to the terms and conditions of</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>this License, each Contributor hereby grants to You a perpetual,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>worldwide, non-exclusive, no-charge, royalty-free, irrevocable</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>(except as stated in this section) patent license to make, have made,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>use, offer to sell, sell, import, and otherwise transfer the Work,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>where such license applies only to those patent claims licensable</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>by such Contributor that are necessarily infringed by their</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Contribution(s) alone or by combination of their Contribution(s)</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>with the Work to which such Contribution(s) was submitted. If You</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>institute patent litigation against any entity (including a</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>cross-claim or counterclaim in a lawsuit) alleging that the Work</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>or a Contribution incorporated within the Work constitutes direct</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>or contributory patent infringement, then any patent licenses</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>granted to You under this License for that Work shall terminate</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>as of the date such litigation is filed.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>4. Redistribution. You may reproduce and distribute copies of the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Work or Derivative Works thereof in any medium, with or without</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>modifications, and in Source or Object form, provided that You</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>meet the following conditions:</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>(a) You must give any other recipients of the Work or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Derivative Works a copy of this License; and</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>(b) You must cause any modified files to carry prominent notices</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>stating that You changed the files; and</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>(c) You must retain, in the Source form of any Derivative Works</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>that You distribute, all copyright, patent, trademark, and</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>attribution notices from the Source form of the Work,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>excluding those notices that do not pertain to any part of</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the Derivative Works; and</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>(d) If the Work includes a "NOTICE" text file as part of its</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>distribution, then any Derivative Works that You distribute must</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>include a readable copy of the attribution notices contained</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>within such NOTICE file, excluding those notices that do not</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>pertain to any part of the Derivative Works, in at least one</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>of the following places: within a NOTICE text file distributed</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>as part of the Derivative Works; within the Source form or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>documentation, if provided along with the Derivative Works; or,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>within a display generated by the Derivative Works, if and</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>wherever such third-party notices normally appear. The contents</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>of the NOTICE file are for informational purposes only and</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>do not modify the License. You may add Your own attribution</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>notices within Derivative Works that You distribute, alongside</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>or as an addendum to the NOTICE text from the Work, provided</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>that such additional attribution notices cannot be construed</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>as modifying the License.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>You may add Your own copyright statement to Your modifications and</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>may provide additional or different license terms and conditions</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>for use, reproduction, or distribution of Your modifications, or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>for any such Derivative Works as a whole, provided Your use,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>reproduction, and distribution of the Work otherwise complies with</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the conditions stated in this License.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>5. Submission of Contributions. Unless You explicitly state otherwise,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>any Contribution intentionally submitted for inclusion in the Work</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>by You to the Licensor shall be under the terms and conditions of</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>this License, without any additional terms or conditions.</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Notwithstanding the above, nothing herein shall supersede or modify</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>the terms of any separate license agreement you may have executed</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>with Licensor regarding such Contributions.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>6. Trademarks. This License does not grant permission to use the trade</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>names, trademarks, service marks, or product names of the Licensor,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>except as required for reasonable and customary use in describing the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>origin of the Work and reproducing the content of the NOTICE file.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>7. Disclaimer of Warranty. Unless required by applicable law or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>agreed to in writing, Licensor provides the Work (and each</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Contributor provides its Contributions) on an "AS IS" BASIS,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>implied, including, without limitation, any warranties or conditions</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>PARTICULAR PURPOSE. You are solely responsible for determining the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>appropriateness of using or redistributing the Work and assume any</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>risks associated with Your exercise of permissions under this License.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>8. Limitation of Liability. In no event and under no legal theory,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>whether in tort (including negligence), contract, or otherwise,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>unless required by applicable law (such as deliberate and grossly</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>negligent acts) or agreed to in writing, shall any Contributor be</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>liable to You for damages, including any direct, indirect, special,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>incidental, or consequential damages of any character arising as a</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>result of this License or out of the use or inability to use the</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>Work (including but not limited to damages for loss of goodwill,</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>work stoppage, computer failure or malfunction, or any and all</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>other commercial damages or losses), even if such Contributor</span></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>has been advised of the possibility of such damages.</span></p>
<p class="p7"><span class="s3"></span><br></p>
<p class="p6"><span class="s3"><span class="Apple-converted-space"> </span>9. Accepting Warranty or Additional Liability. While redistributing</span></p>