-
Notifications
You must be signed in to change notification settings - Fork 0
/
LICENSE.html
6787 lines (6553 loc) · 547 KB
/
LICENSE.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
<?xml version="1.0"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/>
<title id="title" xml:lang="en-US" lang="en-US">Licensing and Legal information</title>
</head>
<body>
<h1 style="text-align: center;">Licensing and Legal information</h1>
<p>This product is made available subject to the terms of the Mozilla Public License, v. 2.0. A copy of the MPL
Version 2 license can be found below.</p>
<p><a href="#a__MPL_version_2">Jump to MPL Version 2</a></p>
<p>Third Party Code Additional copyright notices and license terms applicable to portions of the Software can be
found <a href="#thirdparty">below</a> in this document.</p>
<p>All trademarks and registered trademarks mentioned herein are the property of their respective owners.</p>
<p>Copyright © 2000–2021 LibreOffice contributors. All rights reserved.</p>
<p>This product is based on OpenOffice.org. Portions of this software are copyright © 2000-2011, Oracle and/or its
affiliates.</p>
<p>This product has been created by The Document Foundation, incorporating many modifications from different
contributors, see <a href="http://www.libreoffice.org/">http://www.libreoffice.org/</a> for more details.</p>
<p><strong>Note:</strong> Do not translate or localize this document. Only English version is legally binding.</p>
<h2>Contents</h2>
<p><a href="#a__Libraries">Libraries</a></p>
<p><a href="#a__Extensions">Extensions</a></p>
<p><a href="#a__Fonts">Fonts</a></p>
<p><a href="#a__Dictionaries">Dictionaries</a></p>
<p><a href="#a__Artwork">Artwork</a></p>
<p><a href="#a__LGPL_version_3">GNU Lesser General Public License Version 3</a></p>
<p><a href="#a__LGPL_version_2_1">GNU Lesser General Public License Version 2.1</a></p>
<p><a href="#a__LGPL_version_2">GNU Library General Public License Version 2</a></p>
<p><a href="#a__GPL_version_3">GNU General Public License Version 3</a></p>
<p><a href="#a__GPL_version_2">GNU General Public License Version 2</a></p>
<p><a href="#a__CPL_version_1_0">Common Public License Version 1.0 (CPL)</a></p>
<p><a href="#a__MPL_version_1_1">Mozilla Public License Version 1.1</a></p>
<p><a href="#a__MPL_version_2">Mozilla Public License Version 2.0</a></p>
<p><a href="#a__SIL_Open_Font_License__version_1_1">SIL Open Font License Version 1.1</a></p>
<p><a href="#a__Apache_License_version_2_0">Apache License</a></p>
<p><a href="#a__LPPL">The LaTeX Project Public License</a></p>
<p><a href="#a__CC-BY-SA_3_0">Creative Commons Attribution-ShareAlike 3.0 Unported</a></p>
<p><a href="#a__CC-BY-SA_4_0">Creative Commons Attribution-ShareAlike 4.0 International</a></p>
<hr/>
<h1 style="text-align: center;"><a id="thirdparty" name="thirdparty">Third Party Code Additional Copyright
Notices and License Terms</a></h1>
<h1><a id="a__Libraries" name="a__Libraries">Libraries</a></h1>
<h2>Apache Commons</h2>
<p>The following software may be included in this product: Apache Commons (codec, httpclient, lang, logging).
Use of any of this software is governed by the terms of the license below:</p>
<p><a href="#a__Apache_License_version_2_0">Jump to Apache License Version 2.0</a></p>
<h2>beanshell</h2>
<p>The following software may be included in this product: beanshell. Use of any of this software is governed
by the terms of the license below:</p>
<p><a href="#a__Apache_License_version_2_0">Jump to Apache License Version 2.0</a></p>
<h2>C++ Boost Library</h2>
<p>The following software may be included in this product: C++ Boost Library. Use of any of this software is
governed by the terms of the license below:</p>
<p>Boost Software License - Version 1.0 - August 17th, 2003</p>
<p>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:</p>
<p>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.</p>
<p>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.</p>
<h2>Breakpad</h2>
<p>The following software may be included in this product: Google breakpad crash-reporting library. Use of any
of this software is governed by the terms of the license below:</p>
<p>Copyright (c) 2006, Google Inc.</p>
<p>All rights reserved.</p>
<p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that
the following conditions are met:</p>
<ul>
<li>Redistributions of source code must retain the above copyright notice, this list of conditions and the
following disclaimer.</li>
<li>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.</li>
<li>Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote
products derived from this software without specific prior written permission.</li>
</ul>
<p>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 OWNER 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.</p>
<hr/>
<p>Copyright 2001-2004 Unicode, Inc.</p>
<p>Disclaimer</p>
<p>This source code is provided as is by Unicode, Inc. No claims are made as to fitness for any particular
purpose. No warranties of any kind are expressed or implied. The recipient agrees to determine applicability of
information provided. If this file has been purchased on magnetic or optical media from Unicode, Inc., the sole
remedy for any claim will be exchange of defective media within 90 days of receipt.</p>
<p>Limitations on Rights to Redistribute This Code Unicode, Inc. hereby grants the right to freely use the
information supplied in this file in the creation of products supporting the Unicode Standard, and to make
copies of this file in any form for internal or external distribution as long as this notice remains
attached.</p>
<h2>CLEW</h2>
<p>The following software may be included in this product: CLEW (OpenCL Extension Wrangler). Use of any of
this software is governed by the terms of the license below:</p>
<p>Boost Software License - Version 1.0 - August 17th, 2003</p>
<p>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:</p>
<p>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.</p>
<p>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.</p>
<h2>CLucene</h2>
<p>The following software may be included in this product: CLucene. Use of any of this software is governed by
the terms of the license below:</p>
<p>CLucene is distributed under the GNU Lesser General Public License (LGPL) or the Apache License, Version
2.0</p>
<p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
<p><a href="#a__Apache_License_version_2_0">Jump to Apache License Version 2.0</a></p>
<h2>CoinMP</h2>
<p>The following software may be included in this product: CoinMP. Use of any of this software is governed by
the terms of the license below:</p>
<p><a href="#a__CPL_version_1_0">Jump to Common Public License Version 1.0 (CPL)</a></p>
<h2>Epoxy</h2>
<p>The following software may be included in this product: epoxy.</p>
<p>The libepoxy project code is covered by the MIT license:</p>
<blockquote>
<p>Copyright © 2013-2014 Intel Corporation</p>
<p>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:</p>
<p>The above copyright notice and this permission notice (including the next paragraph) shall be included
in all copies or substantial portions of the Software.</p>
<p>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.</p>
</blockquote>
<p>The generated code is derived from Khronos's xml files, which appear under the following license:</p>
<blockquote>
<p>Copyright (c) 2013 The Khronos Group Inc.</p>
<p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and/or
associated documentation files (the "Materials"), to deal in the Materials without restriction, including
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Materials, and to permit persons to whom the Materials are furnished to do so, subject to the
following conditions:</p>
<p>The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Materials.</p>
<p>THE MATERIALS ARE 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 MATERIALS OR
THE USE OR OTHER DEALINGS IN THE MATERIALS.</p>
</blockquote>
<h2>expat XML Parser Toolkit</h2>
<p>The following software may be included in this product: expat XML Parser Toolkit. Use of any of this
software is governed by the terms of the license below:</p>
<p>Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper</p>
<p>Copyright (c) 2001, 2002, 2003 Expat maintainers.</p>
<p>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:</p>
<p>The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Software.</p>
<p>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.</p>
<h2>Flute</h2>
<p>The following software may be included in this product: Flute. Use of any of this software is governed by the
terms of the license below:</p>
<h3>W3C IPR SOFTWARE NOTICE</h3>
<p>Copyright © 2002 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de
Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.</p>
<p><span class="T1">Note:</span> The original version of the W3C Software Copyright Notice and License could be
found at <a href="http://www.w3.org/Consortium/Legal/copyright-software-19980720">http://www.w3.org/Consortium/Legal/copyright-software-19980720</a></p>
<p>Copyright © 1994-2000 <a href="http://www.w3.org/">World Wide Web Consortium</a>, (<a href="http://www.lcs.mit.edu/">Massachusetts Institute of Technology</a>, <a href="http://www.inria.fr/">Institut
National de Recherche en Informatique et en Automatique</a>, <a href="http://www.keio.ac.jp/">Keio University</a>).
All Rights Reserved. <a href="http://www.w3.org/Consortium/Legal/">http://www.w3.org/Consortium/Legal/</a></p>
<p>This W3C work (including software, documents, or other related items) is being provided by the copyright holders
under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have
read, understood, and will comply with the following terms and conditions:</p>
<p>Permission to use, copy, and modify this software and its documentation, with or without modification, for any
purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the
software and documentation or portions thereof, including modifications, that you make:</p>
<ol>
<li>The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.</li>
<li>Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, a
short notice of the following form (hypertext is preferred, text is permitted) should be used within the body
of any redistributed or derivative code: "Copyright © 2002 <a href="http://www.w3.org/">World Wide Web
Consortium</a>, (<a href="http://www.lcs.mit.edu/">Massachusetts Institute of Technology</a>, <a href="http://www.inria.fr/">Institut National de Recherche en Informatique et en Automatique</a>, <a href="http://www.keio.ac.jp/">Keio University</a>). All Rights Reserved. <a href="http://www.w3.org/Consortium/Legal/">http://www.w3.org/Consortium/Legal/</a>" </li>
<li>Notice of any changes or modifications to the W3C files, including the date changes were made. (We
recommend you provide URIs to the location from which the code is derived.)</li>
</ol>
<p>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR
WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY
PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS,
COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</p>
<p>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF
ANY USE OF THE SOFTWARE OR DOCUMENTATION.</p>
<p>The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the
software without specific, written prior permission. Title to copyright in this software and any associated
documentation will at all times remain with copyright holders.</p>
<h2>Firebird</h2>
<p>The applicable and approved licenses for the source files of the Firebird RDBMS project are:</p>
<p>1) InterBase Public License (IPL), version 1.0</p>
<p>2) Initial Developer's Public License (IDPL), version 1.0</p>
<p>The IPL is copyright of Borland Corp., the other licenses are copyright by the source code authors and
contributors. Both are variants of the Mozilla Public License V.1.1 (MPL). See <a href="http://www.firebirdsql.org/en/licensing/">http://www.firebirdsql.org/en/licensing/</a></p>
<h2>GLM</h2>
<p>The following software may be included in this product: OpenGL Mathematics (GLM). Use of any of this
software is governed by the terms of the license below:</p>
<h3>The MIT License</h3>
<p>Copyright (c) 2005 - 2013 G-Truc Creation (www.g-truc.net)</p>
<p>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:</p>
<p>The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Software.</p>
<p>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.</p>
<h2>GPGME</h2>
<p>The following software may be included in this product: GnuPG Made Easy (GPGME). Use of any of this
software is governed by the terms of the license below:</p>
<p>Copyright 2001-2017 g10 Code GmbH</p>
<p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
<h2>Graphite2</h2>
<p>The following software may be included in this product: Graphite2. Use of any of this software is governed
by the terms of the license below:</p>
<p>Copyright 2010, SIL International All rights reserved.</p>
<p>This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser
General Public License as published by the Free Software Foundation; either version 2.1 of License, or (at your
option) any later version.</p>
<p>This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.</p>
<p>You should also have received a copy of the GNU Lesser General Public License along with this library in the
file named "LICENSE". If not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307, USA or visit their web page on the internet at <a href="http://www.fsf.org/licenses/lgpl.html">http://www.fsf.org/licenses/lgpl.html</a>.</p>
<p>Alternatively, you may use this library under the terms of the Mozilla Public License (<a href="http://mozilla.org/MPL">http://mozilla.org/MPL</a>) or under the GNU General Public License, as published by
the Free Software Foundation; either version 2 of the license or (at your option) any later version.</p>
<p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
<p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
<h2>HarfBuzz</h2>
<p>HarfBuzz is licensed under the so-called "Old MIT" license. Details follow. For parts of HarfBuzz that are
licensed under different licenses see individual files names COPYING in subdirectories where applicable.</p>
<p>Copyright © 2010,2011,2012 Google, Inc.<br/>
Copyright © 2012 Mozilla Foundation<br/>
Copyright © 2011 Codethink Limited<br/>
Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies)<br/>
Copyright © 2009 Keith Stribley<br/>
Copyright © 2009 Martin Hosken and SIL International<br/>
Copyright © 2007 Chris Wilson<br/>
Copyright © 2006 Behdad Esfahbod<br/>
Copyright © 2005 David Turner<br/>
Copyright © 2004,2007,2008,2009,2010 Red Hat, Inc.<br/>
Copyright © 1998-2004 David Turner and Werner Lemberg</p>
<p>For full copyright notices consult the individual files in the package.</p>
<p>Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy,
modify, and distribute this software and its documentation for any purpose, provided that the above copyright
notice and the following two paragraphs appear in all copies of this software.</p>
<p>IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE COPYRIGHT
HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</p>
<p>THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN
"AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
ENHANCEMENTS, OR MODIFICATIONS.</p>
<h2>HSQLDB</h2>
<p>The following software may be included in this product: HSQLDB. Use of any of this software is governed by
the terms of the license below:</p>
<h3>ORIGINAL LICENSE (a.k.a. "hypersonic_lic.txt")</h3>
<p>For content, code, and products originally developed by Thomas Mueller and the Hypersonic SQL Group:</p>
<p>Copyright (c) 1995-2000 by the Hypersonic SQL Group. All rights reserved. Redistribution and use in source
and binary forms, with or without modification, are permitted provided that the following conditions are
met:</p>
<p>Redistribution of source code must retain the above copyright notice, this list of conditions and the
following disclaimer.</p>
<p>Redistribution 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.</p>
<p>Neither the name of the Hypersonic SQL Group nor the names of its contributors may be used to endorse or
promote products derived from this software without specific prior written permission.</p>
<p>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 HYPERSONIC SQL GROUP, 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. This software consists of voluntary contributions made by many individuals on behalf of the Hypersonic
SQL Group.</p>
<h3>For work added by the HSQL Development Group (a.k.a. hsqldb_lic.txt)</h3>
<p>Copyright (c) 2001-2004, The HSQL Development Group All rights reserved.</p>
<p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that
the following conditions are met:</p>
<p>Redistribution of source code must retain the above copyright notice, this list of conditions and the
following disclaimer.</p>
<p>Redistribution 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.</p>
<p>Neither the name of the HSQL Development Group nor the names of its contributors may be used to endorse or
promote products derived from this software without specific prior written permission.</p>
<p>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 HSQL DEVELOPMENT GROUP, HSQLDB.ORG, 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.</p>
<h2>Hunspell</h2>
<p>The following software may be included in this product: Hunspell. Use of any of this software is governed by
the terms of the license below:</p>
<p>GPL 2.0/LGPL 2.1/MPL 1.1 tri-license</p>
<p>The contents of this software may be used under the terms of the GNU General Public License Version 2 or
later (the "GPL"), or the GNU Lesser General Public License Version 2.1 or later (the "LGPL") or (excepting the
LGPLed GNU gettext library in the intl/ directory) the Mozilla Public License Version 1.1 or later (the
"MPL").</p>
<p>Software distributed under these licenses is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND,
either express or implied. See the licenses for the specific language governing rights and limitations under
the licenses.</p>
<p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
<p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
<p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
<h2>Hyphen</h2>
<p>The following software may be included in this product: Hyphen. Use of any of this software is governed by
the terms of the license below:</p>
<p>GPL 2.0/LGPL 2.1/MPL 1.1 tri-license</p>
<p>The contents of this software may be used under the terms of the GNU General Public License Version 2 or
later (the "GPL"), or the GNU Lesser General Public License Version 2.1 or later (the "LGPL") or (excepting the
LGPLed GNU gettext library in the intl/ directory) the Mozilla Public License Version 1.1 or later (the
"MPL").</p>
<p>The Plain TeX hyphenation tables "hyphen.tex" by Donald E. Knuth has a non MPL/LGPL compatible license, but
freely redistributable: "Unlimited copying and redistribution of this file are permitted as long as this file
is not modified. Modifications are permitted, but only if the resulting file is not named hyphen.tex."</p>
<p>Software distributed under these licenses is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND,
either express or implied. See the licenses for the specific language governing rights and limitations under
the licenses.</p>
<p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
<p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
<p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
<h2>IAccessible2</h2>
<p>The following software may be included in this product: IAccessible2 API.</p>
<p>IAccessible2 IDL Specification</p>
<p>Copyright (c) 2007, 2013 Linux Foundation<br/>
Copyright (c) 2006 IBM Corporation<br/>
Copyright (c) 2000, 2006 Sun Microsystems, Inc.<br/>
All rights reserved.</p>
<p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
following conditions are met:</p>
<ol>
<li>Redistributions of source code must retain the above copyright notice, this list of conditions and the
following disclaimer.</li>
<li>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.</li>
<li>Neither the name of the Linux Foundation nor the names of its contributors may be used to endorse or
promote products derived from this software without specific prior written permission.</li>
</ol>
<p>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.</p>
<p>This BSD License conforms to the Open Source Initiative "Simplified BSD License" as published at: <a href="http://www.opensource.org/licenses/bsd-license.php">http://www.opensource.org/licenses/bsd-license.php</a></p>
<p>IAccessible2 is a trademark of the Linux Foundation. The IAccessible2 mark may be used in accordance with the
<a href="http://www.linuxfoundation.org/collaborate/workgroups/accessibility/trademark-policy">Linux Foundation
Trademark Policy</a> to indicate compliance with the IAccessible2 specification.</p>
<p>Find out more about IAccessible2 at <a href="http://accessibility.linuxfoundation.org/">http://accessibility.linuxfoundation.org/</a>.</p>
<h2>ICU</h2>
<p>The following software may be included in this product: ICU. Use of any of this software is governed by the
terms of the license below:</p>
<h3>ICU License - ICU 1.8.1 and later</h3>
<p>COPYRIGHT AND PERMISSION NOTICE</p>
<p>Copyright (c) 1995-2002 International Business Machines Corporation and others All rights reserved.</p>
<p>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, and/or sell copies of the Software, and to permit
persons to whom the Software is furnished to do so, provided that the above copyright notice(s) and this
permission notice appear in all copies of the Software and that both the above copyright notice(s) and this
permission notice appear in supporting documentation.</p>
<p>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 OF THIRD
PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY
CLAIM, OR ANY SPECIAL 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.</p>
<p>Except as contained in this notice, the name of a copyright holder shall not be used in advertising or
otherwise to promote the sale, use or other dealings in this Software without prior written authorization of
the copyright holder.</p>
<p>All trademarks and registered trademarks mentioned herein are the property of their respective owners.</p>
<h2>libabw</h2>
<p>The following software may be included in this product: libabw. Use of any of this software is governed
by the terms of the license below:</p>
<p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
<h2>Libassuan</h2>
<p>The following software may be included in this product: Libassuan. Use of any of this software is governed
by the terms of the license below:</p>
<p>Copyright (C) 2001-2013 Free Software Foundation, Inc.</p>
<p>Copyright (C) 2001-2017 g10 Code GmbH</p>
<p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
<h2>libcdr</h2>
<p>The following software may be included in this product: libcdr. Use of any of this software is governed by
the terms of the license below:</p>
<p>MPL 1.1 / LGPL v2+ / GPL v2+</p>
<p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
<p><a href="#a__LGPL_version_2">Jump to LGPL Version 2</a></p>
<p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
<h2>libcmis</h2>
<p>The following software may be included in this product: libcmis. Use of any of this software is governed by
the terms of the license below:</p>
<p>MPL 1.1 / LGPL v2+ / GPL v2+</p>
<p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
<p><a href="#a__LGPL_version_2">Jump to LGPL Version 2</a></p>
<p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
<h2>libcurl</h2>
<p>The following software may be included in this product: libcurl. Use of any of this software is governed by
the terms of the license below:</p>
<p>Copyright (c) 1996 - 2009, Daniel Stenberg, <daniel@haxx.se>.</p>
<p>All rights reserved.</p>
<p>Permission to use, copy, modify, and 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.</p>
<p>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 OF THIRD
PARTY RIGHTS. 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.</p>
<p>Except as contained in this notice, the name of a copyright holder shall not be used in advertising or
otherwise to promote the sale, use or other dealings in this Software without prior written authorization of
the copyright holder.</p>
<h2>libe-book</h2>
<p>The following software may be included in this product: libe-book. Use of any of this software is governed
by the terms of the license below:</p>
<p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
<h2>libepubgen</h2>
<p>The following software may be included in this product: libepubgen. Use of any of this software is governed
by the terms of the license below:</p>
<p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
<h2>libetonyek</h2>
<p>The following software may be included in this product: libetonyek. Use of any of this software is governed
by the terms of the license below:</p>
<p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
<h2>libfreehand</h2>
<p>The following software may be included in this product: libfreehand. Use of any of this software is governed
by the terms of the license below:</p>
<p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
<h2>Libgpg-error</h2>
<p>The following software may be included in this product: Libgpg-error. Use of any of this software is governed
by the terms of the license below:</p>
<p>Copyright (C) 2001-2017 g10 Code GmbH</p>
<p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
<h2>libjpeg-turbo</h2>
<p>The following software may be included in this product: libjpeg-turbo. libjpeg-turbo is covered by three
compatible BSD-style open source licenses:</p>
<ul>
<li>
<p>The IJG (Independent JPEG Group) License, which is listed <a href="#a__IJG_License">below</a></p>
<p>This license applies to the libjpeg API library and associated programs (any code inherited from
libjpeg, and any modifications to that code.)</p>
</li>
<li>
<p>The Modified (3-clause) BSD License, which is listed below</p>
<p>This license covers the TurboJPEG API library and associated programs, as well as the build
system.</p>
</li>
<li>
<p>The <a href="#a__Zlib_license">zlib License</a></p>
<p>This license is a subset of the other two, and it covers the libjpeg-turbo SIMD extensions.</p>
</li>
</ul>
<h3>Complying with the libjpeg-turbo Licenses</h3>
<p>This section provides a roll-up of the libjpeg-turbo licensing terms, to the best of our understanding.</p>
<ol>
<li>
<p>If you are distributing a modified version of the libjpeg-turbo source, then:</p>
<ol type="i">
<li>
<p>You cannot alter or remove any existing copyright or license notices from the source.</p>
<p><strong>Origin</strong></p>
<ul>
<li>Clause 1 of the IJG License</li>
<li>Clause 1 of the Modified BSD License</li>
<li>Clauses 1 and 3 of the zlib License</li>
</ul>
</li>
<li>
<p>You must add your own copyright notice to the header of each source file you modified, so
others can tell that you modified that file (if there is not an existing copyright header in
that file, then you can simply add a notice stating that you modified the file.)</p>
<p><strong>Origin</strong></p>
<ul>
<li>Clause 1 of the IJG License</li>
<li>Clause 2 of the zlib License</li>
</ul>
</li>
<li>
<p>You must include the IJG README file, and you must not alter any of the copyright or license
text in that file.</p>
<p><strong>Origin</strong></p>
<ul>
<li>Clause 1 of the IJG License</li>
</ul>
</li>
</ol>
</li>
<li>
<p>If you are distributing only libjpeg-turbo binaries without the source, or if you are distributing
an application that statically links with libjpeg-turbo, then:</p>
<ol type="i">
<li>
<p>Your product documentation must include a message stating:</p>
<p>This software is based in part on the work of the Independent JPEG Group.</p>
<p><strong>Origin</strong></p>
<ul>
<li>Clause 2 of the IJG license</li>
</ul>
</li>
<li>
<p>If your binary distribution includes or uses the TurboJPEG API, then your product
documentation must include the text of the Modified BSD License (see below.)</p>
<p><strong>Origin</strong></p>
<ul>
<li>Clause 2 of the Modified BSD License</li>
</ul>
</li>
</ol>
</li>
<li>
<p>You cannot use the name of the IJG or The libjpeg-turbo Project or the contributors thereof in
advertising, publicity, etc.</p>
<p><strong>Origin</strong></p>
<ul>
<li>IJG License</li>
<li>Clause 3 of the Modified BSD License</li>
</ul>
</li>
<li>
<p>The IJG and The libjpeg-turbo Project do not warrant libjpeg-turbo to be free of defects, nor do we
accept any liability for undesirable consequences resulting from your use of the software.</p>
<p><strong>Origin</strong></p>
<ul>
<li>IJG License</li>
<li>Modified BSD License</li>
<li>zlib License</li>
</ul>
</li>
</ol>
<h3>The Modified (3-clause) BSD License</h3>
<p>Copyright (C)2009-2019 D. R. Commander. All Rights Reserved. Copyright (C)2015 Viktor Szathmáry. All Rights
Reserved.</p>
<p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that
the following conditions are met:</p>
<ul>
<li>Redistributions of source code must retain the above copyright notice, this list of conditions and the
following disclaimer.</li>
<li>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.</li>
<li>Neither the name of the libjpeg-turbo Project nor the names of its contributors may be used to endorse
or promote products derived from this software without specific prior written permission.</li>
</ul>
<p>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 HOLDERS 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.</p>
<h3>Why Three Licenses?</h3>
<p>The zlib License could have been used instead of the Modified (3-clause) BSD License, and since the IJG
License effectively subsumes the distribution conditions of the zlib License, this would have effectively
placed libjpeg-turbo binary distributions under the IJG License. However, the IJG License specifically refers
to the Independent JPEG Group and does not extend attribution and endorsement protections to other entities.
Thus, it was desirable to choose a license that granted us the same protections for new code that were granted
to the IJG for code derived from their software.</p>
<h3><a name="a__IJG_License" id="a__IJG_License">IJG JPEG Library License</a></h3>
<p>In plain English:</p>
<ol>
<li>We don't promise that this software works. (But if you find any bugs, please let us know!) </li>
<li>You can use this software for whatever you want. You don't have to pay us.</li>
<li>You may not pretend that you wrote this software. If you use it in a program, you must acknowledge
somewhere in your documentation that you've used the IJG code.</li>
</ol>
<p>In legalese:</p>
<p>The authors make NO WARRANTY or representation, either express or implied, with respect to this software,
its quality, accuracy, merchantability, or fitness for a particular purpose. This software is provided "AS
IS", and you, its user, assume the entire risk as to its quality and accuracy.</p>
<p>This software is copyright (C) 1991-1998, Thomas G. Lane. All Rights Reserved except as specified below.</p>
<p>Permission is hereby granted to use, copy, modify, and distribute this software (or portions thereof) for
any purpose, without fee, subject to these conditions:</p>
<ol>
<li>If any part of the source code for this software is distributed, then this README file must be
included, with this copyright and no-warranty notice unaltered; and any additions, deletions, or changes to
the original files must be clearly indicated in accompanying documentation.</li>
<li>If only executable code is distributed, then the accompanying documentation must state that "this
software is based in part on the work of the Independent JPEG Group".</li>
<li>Permission for use of this software is granted only if the user accepts full responsibility for any
undesirable consequences; the authors accept NO LIABILITY for damages of any kind.</li>
</ol>
<p>These conditions apply to any software derived from or based on the IJG code, not just to the unmodified
library. If you use our work, you ought to acknowledge us.</p>
<p>Permission is NOT granted for the use of any IJG author's name or company name in advertising or publicity
relating to this software or products derived from it. This software may be referred to only as "the
Independent JPEG Group's software".</p>
<p>We specifically permit and encourage the use of this software as the basis of commercial products, provided
that all warranty or liability claims are assumed by the product vendor.</p>
<p>ansi2knr.c is included in this distribution by permission of L. Peter Deutsch, sole proprietor of its
copyright holder, Aladdin Enterprises of Menlo Park, CA. ansi2knr.c is NOT covered by the above copyright and
conditions, but instead by the usual distribution terms of the Free Software Foundation; principally, that you
must include source code if you redistribute it. (See the file ansi2knr.c for full details.) However, since
ansi2knr.c is not needed as part of any program generated from the IJG code, this does not limit you more than
the foregoing paragraphs do.</p>
<p>The Unix configuration script "configure" was produced with GNU Autoconf. It is copyright by the Free
Software Foundation but is freely distributable. The same holds for its supporting scripts (config.guess,
config.sub, ltconfig, ltmain.sh). Another support script, install-sh, is copyright by M.I.T. but is also
freely distributable.</p>
<p>It appears that the arithmetic coding option of the JPEG spec is covered by patents owned by IBM, AT&T,
and Mitsubishi. Hence arithmetic coding cannot legally be used without obtaining one or more licenses. For
this reason, support for arithmetic coding has been removed from the free JPEG software. (Since arithmetic
coding provides only a marginal gain over the unpatented Huffman mode, it is unlikely that very many
implementations will support it.) So far as we are aware, there are no patent restrictions on the remaining
code.</p>
<p>The IJG distribution formerly included code to read and write GIF files. To avoid entanglement with the
Unisys LZW patent, GIF reading support has been removed altogether, and the GIF writer has been simplified to
produce "uncompressed GIFs". This technique does not use the LZW algorithm; the resulting GIF files are
larger than usual, but are readable by all standard GIF decoders.</p>
<p>We are required to state that</p>
<blockquote>
"The Graphics Interchange Format(c) is the Copyright property of CompuServe Incorporated. GIF(sm) is a
Service Mark property of CompuServe Incorporated."
</blockquote>
<h3><a name="a__Zlib_license" id="a__Zlib_license">The zlib/libpng License (Zlib)</a></h3>
<p>This software is provided 'as-is', without any express or implied warranty. In no event will the authors be
held liable for any damages arising from the use of this software.</p>
<p>Permission is granted to anyone to use this software for any purpose, including commercial applications, and
to alter it and redistribute it freely, subject to the following restrictions:</p>
<ol>
<li>The origin of this software must not be misrepresented; you must not claim that you wrote the original
software. If you use this software in a product, an acknowledgment in the product documentation would be
appreciated but is not required.</li>
<li>Altered source versions must be plainly marked as such, and must not be misrepresented as being the
original software.</li>
<li>This notice may not be removed or altered from any source distribution.</li>
</ol>
<h2>liblangtag</h2>
<p>The following software may be included in this product: liblangtag. Use of any of this software is governed
by the terms of the license below:</p>
<p><a href="#a__LGPL_version_3">Jump to LGPL Version 3</a></p>
<p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
<h2>libmspub</h2>
<p>The following software may be included in this product: libmspub. Use of any of this software is governed by
the terms of the license below:</p>
<p>MPL 1.1 / LGPL v2+ / GPL v2+</p>
<p><a href="#a__GPL_version_2">Jump to GPL Version 2</a></p>
<p><a href="#a__LGPL_version_2">Jump to LGPL Version 2</a></p>
<p><a href="#a__MPL_version_1_1">Jump to MPL Version 1.1</a></p>
<h2>libmwaw</h2>
<p>The following software may be included in this product: libmwaw. Use of any of this software is governed by
the terms of the license below:</p>
<p>LGPL v2.1+ / MPL 2</p>
<p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
<p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
<h2>libnumbertext</h2>
<p>The following software may be included in this product: libnumbertext. Use of any of this software is
governed by the terms of the license below:</p>
<p>Copyright 2009–2019 László Németh et al.</p>
<p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that
the following conditions are met:</p>
<ol>
<li>Redistributions of source code must retain the above copyright notice, this list of conditions and the
following disclaimer.</li>
<li>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.</li>
<li>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.</li>
</ol>
<p>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.</p>
<h2>libodfgen</h2>
<p>The following software may be included in this product: libodfgen. Use of any of this software is governed
by the terms of the license below:</p>
<p>LGPL v2.1+ / MPL 2</p>
<p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
<p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
<h2>libpng</h2>
<p>The following software may be included in this product: libpng. Use of any of this software is governed by
the terms of the license below:</p>
<p>This copy of the libpng notices is provided for your convenience. In case of<br/>
any discrepancy between this copy and the notices in the file png.h that is<br/>
included in the libpng distribution, the latter shall prevail.<br/>
<br/>
COPYRIGHT NOTICE, DISCLAIMER, and LICENSE:<br/>
<br/>
If you modify libpng you may insert additional notices immediately following<br/>
this sentence.<br/>
<br/>
This code is released under the libpng license.<br/>
<br/>
libpng versions 1.2.6, August 15, 2004, through 1.5.1, February 3, 2011, are<br/>
Copyright (c) 2004, 2006-2011 Glenn Randers-Pehrson, and are<br/>
distributed according to the same disclaimer and license as libpng-1.2.5<br/>
with the following individual added to the list of Contributing Authors<br/>
<br/>
Cosmin Truta<br/>
<br/>
libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are<br/>
Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are<br/>
distributed according to the same disclaimer and license as libpng-1.0.6<br/>
with the following individuals added to the list of Contributing Authors<br/>
<br/>
Simon-Pierre Cadieux<br/>
Eric S. Raymond<br/>
Gilles Vollant<br/>
<br/>
and with the following additions to the disclaimer:<br/>
<br/>
There is no warranty against interference with your enjoyment of the<br/>
library or against infringement. There is no warranty that our<br/>
efforts or the library will fulfill any of your particular purposes<br/>
or needs. This library is provided with all faults, and the entire<br/>
risk of satisfactory quality, performance, accuracy, and effort is with<br/>
the user.<br/>
<br/>
libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are<br/>
Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are<br/>
distributed according to the same disclaimer and license as libpng-0.96,<br/>
with the following individuals added to the list of Contributing Authors:<br/>
<br/>
Tom Lane<br/>
Glenn Randers-Pehrson<br/>
Willem van Schaik<br/>
<br/>
libpng versions 0.89, June 1996, through 0.96, May 1997, are<br/>
Copyright (c) 1996, 1997 Andreas Dilger<br/>
Distributed according to the same disclaimer and license as libpng-0.88,<br/>
with the following individuals added to the list of Contributing Authors:<br/>
<br/>
John Bowler<br/>
Kevin Bracey<br/>
Sam Bushell<br/>
Magnus Holmgren<br/>
Greg Roelofs<br/>
Tom Tanner<br/>
<br/>
libpng versions 0.5, May 1995, through 0.88, January 1996, are<br/>
Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.<br/>
<br/>
For the purposes of this copyright and license, "Contributing Authors"<br/>
is defined as the following set of individuals:<br/>
<br/>
Andreas Dilger<br/>
Dave Martindale<br/>
Guy Eric Schalnat<br/>
Paul Schmidt<br/>
Tim Wegner<br/>
<br/>
The PNG Reference Library is supplied "AS IS". The Contributing Authors<br/>
and Group 42, Inc. disclaim all warranties, expressed or implied,<br/>
including, without limitation, the warranties of merchantability and of<br/>
fitness for any purpose. The Contributing Authors and Group 42, Inc.<br/>
assume no liability for direct, indirect, incidental, special, exemplary,<br/>
or consequential damages, which may result from the use of the PNG<br/>
Reference Library, even if advised of the possibility of such damage.<br/>
<br/>
Permission is hereby granted to use, copy, modify, and distribute this<br/>
source code, or portions hereof, for any purpose, without fee, subject<br/>
to the following restrictions:<br/>
<br/>
1. The origin of this source code must not be misrepresented.<br/>
<br/>
2. Altered versions must be plainly marked as such and must not<br/>
be misrepresented as being the original source.<br/>
<br/>
3. This Copyright notice may not be removed or altered from any<br/>
source or altered source distribution.<br/>
<br/>
The Contributing Authors and Group 42, Inc. specifically permit, without<br/>
fee, and encourage the use of this source code as a component to<br/>
supporting the PNG file format in commercial products. If you use this<br/>
source code in a product, acknowledgment is not required but would be<br/>
appreciated.<br/>
<br/>
<br/>
A "png_get_copyright" function is available, for convenient use in "about"<br/>
boxes and the like:<br/>
<br/>
printf("%s",png_get_copyright(NULL));<br/>
<br/>
Also, the PNG logo (in PNG format, of course) is supplied in the<br/>
files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31).<br/>
<br/>
Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a<br/>
certification mark of the Open Source Initiative.<br/>
<br/>
Glenn Randers-Pehrson<br/>
glennrp at users.sourceforge.net<br/>
February 3, 2011 </p>
<h2>libpagemaker</h2>
<p>The following software may be included in this product: libpagemaker. Use of any of this software is governed
by the terms of the license below:</p>
<p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
<h2>libqxp</h2>
<p>The following software may be included in this product: libqxp. Use of any of this software is governed
by the terms of the license below:</p>
<p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
<h2>librevenge</h2>
<p>The following software may be included in this product: librevenge. Use of any of this software is governed
by the terms of the license below:</p>
<p>LGPL v2.1+ / MPL 2</p>
<p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
<p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
<h2>libstaroffice</h2>
<p>The following software may be included in this product: libstaroffice. Use of any of this software
is governed by the terms of the license below:</p>
<p>LGPL v2.1+ / MPL 2</p>
<p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
<p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
<h2>LibTomMath</h2>
<p>The following software may be included in this product: LibTomMath. LibTomMath is public domain.</p>
<h2>libvisio</h2>
<p>The following software may be included in this product: libvisio. Use of any of this software is governed by
the terms of the license below:</p>
<p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
<h2>libwpd</h2>
<p>The following software may be included in this product: libwpd. Use of any of this software is governed by
the terms of the license below:</p>
<p>LGPL v2.1+ / MPL 2</p>
<p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
<p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
<h2>libwpg</h2>
<p>The following software may be included in this product: libwpg. Use of any of this software is governed by
the terms of the license below:</p>
<p>LGPL v2.1+ / MPL 2</p>
<p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
<p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
<h2>libwps</h2>
<p>The following software may be included in this product: libwps. Use of any of this software is governed by
the terms of the license below:</p>
<p>LGPL v2.1+ / MPL 2</p>
<p><a href="#a__LGPL_version_2_1">Jump to LGPL Version 2.1</a></p>
<p><a href="#a__MPL_version_2">Jump to MPL Version 2.0</a></p>
<h2>libxml2</h2>
<p>The following software may be included in this product: libxml2. Use of any of this software is governed by
the terms of the license below:</p>
<p>Except where otherwise noted in the source code (e.g. the files hash.c, list.c and the trio files, which are
covered by a similar license but with different Copyright notices) all the files are:</p>
<p>Copyright (C) 1998-2003 Daniel Veillard. All Rights Reserved.</p>
<p>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:</p>
<p>The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Software.</p>
<p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
EVENT SHALL THE DANIEL VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.</p>
<p>Except as contained in this notice, the name of Daniel Veillard shall not be used in advertising or
otherwise to promote the sale, use or other dealings in this Software without prior written authorization from
him.</p>
<h2>libxslt</h2>
<p>The following software may be included in this product: libxslt. Use of any of this software is governed by
the terms of the license below:</p>
<h3>License for libxslt except libexslt</h3>