LICENSE 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617
  1. The Python Imaging Library (PIL) is
  2. Copyright © 1997-2011 by Secret Labs AB
  3. Copyright © 1995-2011 by Fredrik Lundh and contributors
  4. Pillow is the friendly PIL fork. It is
  5. Copyright © 2010 by Jeffrey A. Clark and contributors
  6. Like PIL, Pillow is licensed under the open source MIT-CMU License:
  7. By obtaining, using, and/or copying this software and/or its associated
  8. documentation, you agree that you have read, understood, and will comply
  9. with the following terms and conditions:
  10. Permission to use, copy, modify and distribute this software and its
  11. documentation for any purpose and without fee is hereby granted,
  12. provided that the above copyright notice appears in all copies, and that
  13. both that copyright notice and this permission notice appear in supporting
  14. documentation, and that the name of Secret Labs AB or the author not be
  15. used in advertising or publicity pertaining to distribution of the software
  16. without specific, written prior permission.
  17. SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
  18. SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
  19. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR BE LIABLE FOR ANY SPECIAL,
  20. INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  21. LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  22. OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  23. PERFORMANCE OF THIS SOFTWARE.
  24. ===== brotli-1.2.0 =====
  25. Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.
  26. Permission is hereby granted, free of charge, to any person obtaining a copy
  27. of this software and associated documentation files (the "Software"), to deal
  28. in the Software without restriction, including without limitation the rights
  29. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  30. copies of the Software, and to permit persons to whom the Software is
  31. furnished to do so, subject to the following conditions:
  32. The above copyright notice and this permission notice shall be included in
  33. all copies or substantial portions of the Software.
  34. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  35. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  36. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  37. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  38. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  39. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  40. THE SOFTWARE.
  41. ===== freetype-2.14.1 =====
  42. FREETYPE LICENSES
  43. -----------------
  44. The FreeType 2 font engine is copyrighted work and cannot be used
  45. legally without a software license. In order to make this project
  46. usable to a vast majority of developers, we distribute it under two
  47. mutually exclusive open-source licenses.
  48. This means that *you* must choose *one* of the two licenses described
  49. below, then obey all its terms and conditions when using FreeType 2 in
  50. any of your projects or products.
  51. - The FreeType License, found in the file `docs/FTL.TXT`, which is
  52. similar to the original BSD license *with* an advertising clause
  53. that forces you to explicitly cite the FreeType project in your
  54. product's documentation. All details are in the license file.
  55. This license is suited to products which don't use the GNU General
  56. Public License.
  57. Note that this license is compatible to the GNU General Public
  58. License version 3, but not version 2.
  59. - The GNU General Public License version 2, found in
  60. `docs/GPLv2.TXT` (any later version can be used also), for
  61. programs which already use the GPL. Note that the FTL is
  62. incompatible with GPLv2 due to its advertisement clause.
  63. The contributed BDF and PCF drivers come with a license similar to
  64. that of the X Window System. It is compatible to the above two
  65. licenses (see files `src/bdf/README` and `src/pcf/README`). The same
  66. holds for the source code files `src/base/fthash.c` and
  67. `include/freetype/internal/fthash.h`; they were part of the BDF driver
  68. in earlier FreeType versions.
  69. The gzip module uses the zlib license (see `src/gzip/zlib.h`) which
  70. too is compatible to the above two licenses.
  71. The files `src/autofit/ft-hb-ft.c`, `src/autofit/ft-hb-decls.h`,
  72. `src/autofit/ft-hb-types.h`, and `src/autofit/hb-script-list.h`
  73. contain code taken (almost) verbatim from the HarfBuzz library, which
  74. uses the 'Old MIT' license compatible to the above two licenses.
  75. The MD5 checksum support (only used for debugging in development
  76. builds) is in the public domain.
  77. --- end of LICENSE.TXT ---
  78. The FreeType Project LICENSE
  79. ----------------------------
  80. 2006-Jan-27
  81. Copyright 1996-2002, 2006 by
  82. David Turner, Robert Wilhelm, and Werner Lemberg
  83. Introduction
  84. ============
  85. The FreeType Project is distributed in several archive packages;
  86. some of them may contain, in addition to the FreeType font engine,
  87. various tools and contributions which rely on, or relate to, the
  88. FreeType Project.
  89. This license applies to all files found in such packages, and
  90. which do not fall under their own explicit license. The license
  91. affects thus the FreeType font engine, the test programs,
  92. documentation and makefiles, at the very least.
  93. This license was inspired by the BSD, Artistic, and IJG
  94. (Independent JPEG Group) licenses, which all encourage inclusion
  95. and use of free software in commercial and freeware products
  96. alike. As a consequence, its main points are that:
  97. o We don't promise that this software works. However, we will be
  98. interested in any kind of bug reports. (`as is' distribution)
  99. o You can use this software for whatever you want, in parts or
  100. full form, without having to pay us. (`royalty-free' usage)
  101. o You may not pretend that you wrote this software. If you use
  102. it, or only parts of it, in a program, you must acknowledge
  103. somewhere in your documentation that you have used the
  104. FreeType code. (`credits')
  105. We specifically permit and encourage the inclusion of this
  106. software, with or without modifications, in commercial products.
  107. We disclaim all warranties covering The FreeType Project and
  108. assume no liability related to The FreeType Project.
  109. Finally, many people asked us for a preferred form for a
  110. credit/disclaimer to use in compliance with this license. We thus
  111. encourage you to use the following text:
  112. """
  113. Portions of this software are copyright © <year> The FreeType
  114. Project (https://freetype.org). All rights reserved.
  115. """
  116. Please replace <year> with the value from the FreeType version you
  117. actually use.
  118. Legal Terms
  119. ===========
  120. 0. Definitions
  121. --------------
  122. Throughout this license, the terms `package', `FreeType Project',
  123. and `FreeType archive' refer to the set of files originally
  124. distributed by the authors (David Turner, Robert Wilhelm, and
  125. Werner Lemberg) as the `FreeType Project', be they named as alpha,
  126. beta or final release.
  127. `You' refers to the licensee, or person using the project, where
  128. `using' is a generic term including compiling the project's source
  129. code as well as linking it to form a `program' or `executable'.
  130. This program is referred to as `a program using the FreeType
  131. engine'.
  132. This license applies to all files distributed in the original
  133. FreeType Project, including all source code, binaries and
  134. documentation, unless otherwise stated in the file in its
  135. original, unmodified form as distributed in the original archive.
  136. If you are unsure whether or not a particular file is covered by
  137. this license, you must contact us to verify this.
  138. The FreeType Project is copyright (C) 1996-2000 by David Turner,
  139. Robert Wilhelm, and Werner Lemberg. All rights reserved except as
  140. specified below.
  141. 1. No Warranty
  142. --------------
  143. THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY
  144. KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
  145. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  146. PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS
  147. BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO
  148. USE, OF THE FREETYPE PROJECT.
  149. 2. Redistribution
  150. -----------------
  151. This license grants a worldwide, royalty-free, perpetual and
  152. irrevocable right and license to use, execute, perform, compile,
  153. display, copy, create derivative works of, distribute and
  154. sublicense the FreeType Project (in both source and object code
  155. forms) and derivative works thereof for any purpose; and to
  156. authorize others to exercise some or all of the rights granted
  157. herein, subject to the following conditions:
  158. o Redistribution of source code must retain this license file
  159. (`FTL.TXT') unaltered; any additions, deletions or changes to
  160. the original files must be clearly indicated in accompanying
  161. documentation. The copyright notices of the unaltered,
  162. original files must be preserved in all copies of source
  163. files.
  164. o Redistribution in binary form must provide a disclaimer that
  165. states that the software is based in part of the work of the
  166. FreeType Team, in the distribution documentation. We also
  167. encourage you to put an URL to the FreeType web page in your
  168. documentation, though this isn't mandatory.
  169. These conditions apply to any software derived from or based on
  170. the FreeType Project, not just the unmodified files. If you use
  171. our work, you must acknowledge us. However, no fee need be paid
  172. to us.
  173. 3. Advertising
  174. --------------
  175. Neither the FreeType authors and contributors nor you shall use
  176. the name of the other for commercial, advertising, or promotional
  177. purposes without specific prior written permission.
  178. We suggest, but do not require, that you use one or more of the
  179. following phrases to refer to this software in your documentation
  180. or advertising materials: `FreeType Project', `FreeType Engine',
  181. `FreeType library', or `FreeType Distribution'.
  182. As you have not signed this license, you are not required to
  183. accept it. However, as the FreeType Project is copyrighted
  184. material, only this license, or another one contracted with the
  185. authors, grants you the right to use, distribute, and modify it.
  186. Therefore, by using, distributing, or modifying the FreeType
  187. Project, you indicate that you understand and accept all the terms
  188. of this license.
  189. 4. Contacts
  190. -----------
  191. There are two mailing lists related to FreeType:
  192. o freetype@nongnu.org
  193. Discusses general use and applications of FreeType, as well as
  194. future and wanted additions to the library and distribution.
  195. If you are looking for support, start in this list if you
  196. haven't found anything to help you in the documentation.
  197. o freetype-devel@nongnu.org
  198. Discusses bugs, as well as engine internals, design issues,
  199. specific licenses, porting, etc.
  200. Our home page can be found at
  201. https://freetype.org
  202. --- end of FTL.TXT ---
  203. GNU GENERAL PUBLIC LICENSE
  204. Version 2, June 1991
  205. Copyright (C) 1989, 1991 Free Software Foundation, Inc.
  206. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  207. Everyone is permitted to copy and distribute verbatim copies
  208. of this license document, but changing it is not allowed.
  209. Preamble
  210. The licenses for most software are designed to take away your
  211. freedom to share and change it. By contrast, the GNU General Public
  212. License is intended to guarantee your freedom to share and change free
  213. software--to make sure the software is free for all its users. This
  214. General Public License applies to most of the Free Software
  215. Foundation's software and to any other program whose authors commit to
  216. using it. (Some other Free Software Foundation software is covered by
  217. the GNU Library General Public License instead.) You can apply it to
  218. your programs, too.
  219. When we speak of free software, we are referring to freedom, not
  220. price. Our General Public Licenses are designed to make sure that you
  221. have the freedom to distribute copies of free software (and charge for
  222. this service if you wish), that you receive source code or can get it
  223. if you want it, that you can change the software or use pieces of it
  224. in new free programs; and that you know you can do these things.
  225. To protect your rights, we need to make restrictions that forbid
  226. anyone to deny you these rights or to ask you to surrender the rights.
  227. These restrictions translate to certain responsibilities for you if you
  228. distribute copies of the software, or if you modify it.
  229. For example, if you distribute copies of such a program, whether
  230. gratis or for a fee, you must give the recipients all the rights that
  231. you have. You must make sure that they, too, receive or can get the
  232. source code. And you must show them these terms so they know their
  233. rights.
  234. We protect your rights with two steps: (1) copyright the software, and
  235. (2) offer you this license which gives you legal permission to copy,
  236. distribute and/or modify the software.
  237. Also, for each author's protection and ours, we want to make certain
  238. that everyone understands that there is no warranty for this free
  239. software. If the software is modified by someone else and passed on, we
  240. want its recipients to know that what they have is not the original, so
  241. that any problems introduced by others will not reflect on the original
  242. authors' reputations.
  243. Finally, any free program is threatened constantly by software
  244. patents. We wish to avoid the danger that redistributors of a free
  245. program will individually obtain patent licenses, in effect making the
  246. program proprietary. To prevent this, we have made it clear that any
  247. patent must be licensed for everyone's free use or not licensed at all.
  248. The precise terms and conditions for copying, distribution and
  249. modification follow.
  250. GNU GENERAL PUBLIC LICENSE
  251. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  252. 0. This License applies to any program or other work which contains
  253. a notice placed by the copyright holder saying it may be distributed
  254. under the terms of this General Public License. The "Program", below,
  255. refers to any such program or work, and a "work based on the Program"
  256. means either the Program or any derivative work under copyright law:
  257. that is to say, a work containing the Program or a portion of it,
  258. either verbatim or with modifications and/or translated into another
  259. language. (Hereinafter, translation is included without limitation in
  260. the term "modification".) Each licensee is addressed as "you".
  261. Activities other than copying, distribution and modification are not
  262. covered by this License; they are outside its scope. The act of
  263. running the Program is not restricted, and the output from the Program
  264. is covered only if its contents constitute a work based on the
  265. Program (independent of having been made by running the Program).
  266. Whether that is true depends on what the Program does.
  267. 1. You may copy and distribute verbatim copies of the Program's
  268. source code as you receive it, in any medium, provided that you
  269. conspicuously and appropriately publish on each copy an appropriate
  270. copyright notice and disclaimer of warranty; keep intact all the
  271. notices that refer to this License and to the absence of any warranty;
  272. and give any other recipients of the Program a copy of this License
  273. along with the Program.
  274. You may charge a fee for the physical act of transferring a copy, and
  275. you may at your option offer warranty protection in exchange for a fee.
  276. 2. You may modify your copy or copies of the Program or any portion
  277. of it, thus forming a work based on the Program, and copy and
  278. distribute such modifications or work under the terms of Section 1
  279. above, provided that you also meet all of these conditions:
  280. a) You must cause the modified files to carry prominent notices
  281. stating that you changed the files and the date of any change.
  282. b) You must cause any work that you distribute or publish, that in
  283. whole or in part contains or is derived from the Program or any
  284. part thereof, to be licensed as a whole at no charge to all third
  285. parties under the terms of this License.
  286. c) If the modified program normally reads commands interactively
  287. when run, you must cause it, when started running for such
  288. interactive use in the most ordinary way, to print or display an
  289. announcement including an appropriate copyright notice and a
  290. notice that there is no warranty (or else, saying that you provide
  291. a warranty) and that users may redistribute the program under
  292. these conditions, and telling the user how to view a copy of this
  293. License. (Exception: if the Program itself is interactive but
  294. does not normally print such an announcement, your work based on
  295. the Program is not required to print an announcement.)
  296. These requirements apply to the modified work as a whole. If
  297. identifiable sections of that work are not derived from the Program,
  298. and can be reasonably considered independent and separate works in
  299. themselves, then this License, and its terms, do not apply to those
  300. sections when you distribute them as separate works. But when you
  301. distribute the same sections as part of a whole which is a work based
  302. on the Program, the distribution of the whole must be on the terms of
  303. this License, whose permissions for other licensees extend to the
  304. entire whole, and thus to each and every part regardless of who wrote it.
  305. Thus, it is not the intent of this section to claim rights or contest
  306. your rights to work written entirely by you; rather, the intent is to
  307. exercise the right to control the distribution of derivative or
  308. collective works based on the Program.
  309. In addition, mere aggregation of another work not based on the Program
  310. with the Program (or with a work based on the Program) on a volume of
  311. a storage or distribution medium does not bring the other work under
  312. the scope of this License.
  313. 3. You may copy and distribute the Program (or a work based on it,
  314. under Section 2) in object code or executable form under the terms of
  315. Sections 1 and 2 above provided that you also do one of the following:
  316. a) Accompany it with the complete corresponding machine-readable
  317. source code, which must be distributed under the terms of Sections
  318. 1 and 2 above on a medium customarily used for software interchange; or,
  319. b) Accompany it with a written offer, valid for at least three
  320. years, to give any third party, for a charge no more than your
  321. cost of physically performing source distribution, a complete
  322. machine-readable copy of the corresponding source code, to be
  323. distributed under the terms of Sections 1 and 2 above on a medium
  324. customarily used for software interchange; or,
  325. c) Accompany it with the information you received as to the offer
  326. to distribute corresponding source code. (This alternative is
  327. allowed only for noncommercial distribution and only if you
  328. received the program in object code or executable form with such
  329. an offer, in accord with Subsection b above.)
  330. The source code for a work means the preferred form of the work for
  331. making modifications to it. For an executable work, complete source
  332. code means all the source code for all modules it contains, plus any
  333. associated interface definition files, plus the scripts used to
  334. control compilation and installation of the executable. However, as a
  335. special exception, the source code distributed need not include
  336. anything that is normally distributed (in either source or binary
  337. form) with the major components (compiler, kernel, and so on) of the
  338. operating system on which the executable runs, unless that component
  339. itself accompanies the executable.
  340. If distribution of executable or object code is made by offering
  341. access to copy from a designated place, then offering equivalent
  342. access to copy the source code from the same place counts as
  343. distribution of the source code, even though third parties are not
  344. compelled to copy the source along with the object code.
  345. 4. You may not copy, modify, sublicense, or distribute the Program
  346. except as expressly provided under this License. Any attempt
  347. otherwise to copy, modify, sublicense or distribute the Program is
  348. void, and will automatically terminate your rights under this License.
  349. However, parties who have received copies, or rights, from you under
  350. this License will not have their licenses terminated so long as such
  351. parties remain in full compliance.
  352. 5. You are not required to accept this License, since you have not
  353. signed it. However, nothing else grants you permission to modify or
  354. distribute the Program or its derivative works. These actions are
  355. prohibited by law if you do not accept this License. Therefore, by
  356. modifying or distributing the Program (or any work based on the
  357. Program), you indicate your acceptance of this License to do so, and
  358. all its terms and conditions for copying, distributing or modifying
  359. the Program or works based on it.
  360. 6. Each time you redistribute the Program (or any work based on the
  361. Program), the recipient automatically receives a license from the
  362. original licensor to copy, distribute or modify the Program subject to
  363. these terms and conditions. You may not impose any further
  364. restrictions on the recipients' exercise of the rights granted herein.
  365. You are not responsible for enforcing compliance by third parties to
  366. this License.
  367. 7. If, as a consequence of a court judgment or allegation of patent
  368. infringement or for any other reason (not limited to patent issues),
  369. conditions are imposed on you (whether by court order, agreement or
  370. otherwise) that contradict the conditions of this License, they do not
  371. excuse you from the conditions of this License. If you cannot
  372. distribute so as to satisfy simultaneously your obligations under this
  373. License and any other pertinent obligations, then as a consequence you
  374. may not distribute the Program at all. For example, if a patent
  375. license would not permit royalty-free redistribution of the Program by
  376. all those who receive copies directly or indirectly through you, then
  377. the only way you could satisfy both it and this License would be to
  378. refrain entirely from distribution of the Program.
  379. If any portion of this section is held invalid or unenforceable under
  380. any particular circumstance, the balance of the section is intended to
  381. apply and the section as a whole is intended to apply in other
  382. circumstances.
  383. It is not the purpose of this section to induce you to infringe any
  384. patents or other property right claims or to contest validity of any
  385. such claims; this section has the sole purpose of protecting the
  386. integrity of the free software distribution system, which is
  387. implemented by public license practices. Many people have made
  388. generous contributions to the wide range of software distributed
  389. through that system in reliance on consistent application of that
  390. system; it is up to the author/donor to decide if he or she is willing
  391. to distribute software through any other system and a licensee cannot
  392. impose that choice.
  393. This section is intended to make thoroughly clear what is believed to
  394. be a consequence of the rest of this License.
  395. 8. If the distribution and/or use of the Program is restricted in
  396. certain countries either by patents or by copyrighted interfaces, the
  397. original copyright holder who places the Program under this License
  398. may add an explicit geographical distribution limitation excluding
  399. those countries, so that distribution is permitted only in or among
  400. countries not thus excluded. In such case, this License incorporates
  401. the limitation as if written in the body of this License.
  402. 9. The Free Software Foundation may publish revised and/or new versions
  403. of the General Public License from time to time. Such new versions will
  404. be similar in spirit to the present version, but may differ in detail to
  405. address new problems or concerns.
  406. Each version is given a distinguishing version number. If the Program
  407. specifies a version number of this License which applies to it and "any
  408. later version", you have the option of following the terms and conditions
  409. either of that version or of any later version published by the Free
  410. Software Foundation. If the Program does not specify a version number of
  411. this License, you may choose any version ever published by the Free Software
  412. Foundation.
  413. 10. If you wish to incorporate parts of the Program into other free
  414. programs whose distribution conditions are different, write to the author
  415. to ask for permission. For software which is copyrighted by the Free
  416. Software Foundation, write to the Free Software Foundation; we sometimes
  417. make exceptions for this. Our decision will be guided by the two goals
  418. of preserving the free status of all derivatives of our free software and
  419. of promoting the sharing and reuse of software generally.
  420. NO WARRANTY
  421. 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
  422. FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
  423. OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
  424. PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
  425. OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  426. MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
  427. TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
  428. PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
  429. REPAIR OR CORRECTION.
  430. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
  431. WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
  432. REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
  433. INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
  434. OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
  435. TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
  436. YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
  437. PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
  438. POSSIBILITY OF SUCH DAMAGES.
  439. END OF TERMS AND CONDITIONS
  440. How to Apply These Terms to Your New Programs
  441. If you develop a new program, and you want it to be of the greatest
  442. possible use to the public, the best way to achieve this is to make it
  443. free software which everyone can redistribute and change under these terms.
  444. To do so, attach the following notices to the program. It is safest
  445. to attach them to the start of each source file to most effectively
  446. convey the exclusion of warranty; and each file should have at least
  447. the "copyright" line and a pointer to where the full notice is found.
  448. <one line to give the program's name and a brief idea of what it does.>
  449. Copyright (C) <year> <name of author>
  450. This program is free software; you can redistribute it and/or modify
  451. it under the terms of the GNU General Public License as published by
  452. the Free Software Foundation; either version 2 of the License, or
  453. (at your option) any later version.
  454. This program is distributed in the hope that it will be useful,
  455. but WITHOUT ANY WARRANTY; without even the implied warranty of
  456. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  457. GNU General Public License for more details.
  458. You should have received a copy of the GNU General Public License
  459. along with this program; if not, write to the Free Software
  460. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  461. Also add information on how to contact you by electronic and paper mail.
  462. If the program is interactive, make it output a short notice like this
  463. when it starts in an interactive mode:
  464. Gnomovision version 69, Copyright (C) year name of author
  465. Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
  466. This is free software, and you are welcome to redistribute it
  467. under certain conditions; type `show c' for details.
  468. The hypothetical commands `show w' and `show c' should show the appropriate
  469. parts of the General Public License. Of course, the commands you use may
  470. be called something other than `show w' and `show c'; they could even be
  471. mouse-clicks or menu items--whatever suits your program.
  472. You should also get your employer (if you work as a programmer) or your
  473. school, if any, to sign a "copyright disclaimer" for the program, if
  474. necessary. Here is a sample; alter the names:
  475. Yoyodyne, Inc., hereby disclaims all copyright interest in the program
  476. `Gnomovision' (which makes passes at compilers) written by James Hacker.
  477. <signature of Ty Coon>, 1 April 1989
  478. Ty Coon, President of Vice
  479. This General Public License does not permit incorporating your program into
  480. proprietary programs. If your program is a subroutine library, you may
  481. consider it more useful to permit linking proprietary applications with the
  482. library. If this is what you want to do, use the GNU Library General
  483. Public License instead of this License.
  484. ===== harfbuzz-12.3.0 =====
  485. HarfBuzz is licensed under the so-called "Old MIT" license. Details follow.
  486. For parts of HarfBuzz that are licensed under different licenses see individual
  487. files names COPYING in subdirectories where applicable.
  488. Copyright © 2010-2022 Google, Inc.
  489. Copyright © 2015-2020 Ebrahim Byagowi
  490. Copyright © 2019,2020 Facebook, Inc.
  491. Copyright © 2012,2015 Mozilla Foundation
  492. Copyright © 2011 Codethink Limited
  493. Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies)
  494. Copyright © 2009 Keith Stribley
  495. Copyright © 2011 Martin Hosken and SIL International
  496. Copyright © 2007 Chris Wilson
  497. Copyright © 2005,2006,2020,2021,2022,2023 Behdad Esfahbod
  498. Copyright © 2004,2007,2008,2009,2010,2013,2021,2022,2023 Red Hat, Inc.
  499. Copyright © 1998-2005 David Turner and Werner Lemberg
  500. Copyright © 2016 Igalia S.L.
  501. Copyright © 2022 Matthias Clasen
  502. Copyright © 2018,2021 Khaled Hosny
  503. Copyright © 2018,2019,2020 Adobe, Inc
  504. Copyright © 2013-2015 Alexei Podtelezhnikov
  505. For full copyright notices consult the individual files in the package.
  506. Permission is hereby granted, without written agreement and without
  507. license or royalty fees, to use, copy, modify, and distribute this
  508. software and its documentation for any purpose, provided that the
  509. above copyright notice and the following two paragraphs appear in
  510. all copies of this software.
  511. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
  512. DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
  513. ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
  514. IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  515. DAMAGE.
  516. THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
  517. BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  518. FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
  519. ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
  520. PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  521. ===== lcms2-2.17 =====
  522. MIT License
  523. Copyright (c) 2023 Marti Maria Saguer
  524. Permission is hereby granted, free of charge, to any person obtaining
  525. a copy of this software and associated documentation files (the
  526. "Software"), to deal in the Software without restriction, including
  527. without limitation the rights to use, copy, modify, merge, publish,
  528. distribute, sublicense, and/or sell copies of the Software, and to
  529. permit persons to whom the Software is furnished to do so, subject
  530. to the following conditions:
  531. The above copyright notice and this permission notice shall be
  532. included in all copies or substantial portions of the Software.
  533. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  534. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  535. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  536. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  537. CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  538. TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  539. SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  540. ===== libavif-1.3.0 =====
  541. Copyright 2019 Joe Drago. All rights reserved.
  542. Redistribution and use in source and binary forms, with or without
  543. modification, are permitted provided that the following conditions are met:
  544. 1. Redistributions of source code must retain the above copyright notice, this
  545. list of conditions and the following disclaimer.
  546. 2. Redistributions in binary form must reproduce the above copyright notice,
  547. this list of conditions and the following disclaimer in the documentation
  548. and/or other materials provided with the distribution.
  549. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  550. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  551. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  552. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  553. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  554. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  555. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  556. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  557. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  558. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  559. ------------------------------------------------------------------------------
  560. Files: src/obu.c
  561. Copyright © 2018-2019, VideoLAN and dav1d authors
  562. All rights reserved.
  563. Redistribution and use in source and binary forms, with or without
  564. modification, are permitted provided that the following conditions are met:
  565. 1. Redistributions of source code must retain the above copyright notice, this
  566. list of conditions and the following disclaimer.
  567. 2. Redistributions in binary form must reproduce the above copyright notice,
  568. this list of conditions and the following disclaimer in the documentation
  569. and/or other materials provided with the distribution.
  570. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  571. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  572. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  573. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
  574. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  575. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  576. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  577. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  578. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  579. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  580. ------------------------------------------------------------------------------
  581. Files: third_party/iccjpeg/*
  582. In plain English:
  583. 1. We don't promise that this software works. (But if you find any bugs,
  584. please let us know!)
  585. 2. You can use this software for whatever you want. You don't have to pay us.
  586. 3. You may not pretend that you wrote this software. If you use it in a
  587. program, you must acknowledge somewhere in your documentation that
  588. you've used the IJG code.
  589. In legalese:
  590. The authors make NO WARRANTY or representation, either express or implied,
  591. with respect to this software, its quality, accuracy, merchantability, or
  592. fitness for a particular purpose. This software is provided "AS IS", and you,
  593. its user, assume the entire risk as to its quality and accuracy.
  594. This software is copyright (C) 1991-2013, Thomas G. Lane, Guido Vollbeding.
  595. All Rights Reserved except as specified below.
  596. Permission is hereby granted to use, copy, modify, and distribute this
  597. software (or portions thereof) for any purpose, without fee, subject to these
  598. conditions:
  599. (1) If any part of the source code for this software is distributed, then this
  600. README file must be included, with this copyright and no-warranty notice
  601. unaltered; and any additions, deletions, or changes to the original files
  602. must be clearly indicated in accompanying documentation.
  603. (2) If only executable code is distributed, then the accompanying
  604. documentation must state that "this software is based in part on the work of
  605. the Independent JPEG Group".
  606. (3) Permission for use of this software is granted only if the user accepts
  607. full responsibility for any undesirable consequences; the authors accept
  608. NO LIABILITY for damages of any kind.
  609. These conditions apply to any software derived from or based on the IJG code,
  610. not just to the unmodified library. If you use our work, you ought to
  611. acknowledge us.
  612. Permission is NOT granted for the use of any IJG author's name or company name
  613. in advertising or publicity relating to this software or products derived from
  614. it. This software may be referred to only as "the Independent JPEG Group's
  615. software".
  616. We specifically permit and encourage the use of this software as the basis of
  617. commercial products, provided that all warranty or liability claims are
  618. assumed by the product vendor.
  619. The Unix configuration script "configure" was produced with GNU Autoconf.
  620. It is copyright by the Free Software Foundation but is freely distributable.
  621. The same holds for its supporting scripts (config.guess, config.sub,
  622. ltmain.sh). Another support script, install-sh, is copyright by X Consortium
  623. but is also freely distributable.
  624. The IJG distribution formerly included code to read and write GIF files.
  625. To avoid entanglement with the Unisys LZW patent, GIF reading support has
  626. been removed altogether, and the GIF writer has been simplified to produce
  627. "uncompressed GIFs". This technique does not use the LZW algorithm; the
  628. resulting GIF files are larger than usual, but are readable by all standard
  629. GIF decoders.
  630. We are required to state that
  631. "The Graphics Interchange Format(c) is the Copyright property of
  632. CompuServe Incorporated. GIF(sm) is a Service Mark property of
  633. CompuServe Incorporated."
  634. ------------------------------------------------------------------------------
  635. Files: contrib/gdk-pixbuf/*
  636. Copyright 2020 Emmanuel Gil Peyrot. All rights reserved.
  637. Redistribution and use in source and binary forms, with or without
  638. modification, are permitted provided that the following conditions are met:
  639. 1. Redistributions of source code must retain the above copyright notice, this
  640. list of conditions and the following disclaimer.
  641. 2. Redistributions in binary form must reproduce the above copyright notice,
  642. this list of conditions and the following disclaimer in the documentation
  643. and/or other materials provided with the distribution.
  644. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  645. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  646. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  647. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  648. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  649. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  650. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  651. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  652. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  653. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  654. ------------------------------------------------------------------------------
  655. Files: android_jni/gradlew*
  656. Apache License
  657. Version 2.0, January 2004
  658. http://www.apache.org/licenses/
  659. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  660. 1. Definitions.
  661. "License" shall mean the terms and conditions for use, reproduction,
  662. and distribution as defined by Sections 1 through 9 of this document.
  663. "Licensor" shall mean the copyright owner or entity authorized by
  664. the copyright owner that is granting the License.
  665. "Legal Entity" shall mean the union of the acting entity and all
  666. other entities that control, are controlled by, or are under common
  667. control with that entity. For the purposes of this definition,
  668. "control" means (i) the power, direct or indirect, to cause the
  669. direction or management of such entity, whether by contract or
  670. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  671. outstanding shares, or (iii) beneficial ownership of such entity.
  672. "You" (or "Your") shall mean an individual or Legal Entity
  673. exercising permissions granted by this License.
  674. "Source" form shall mean the preferred form for making modifications,
  675. including but not limited to software source code, documentation
  676. source, and configuration files.
  677. "Object" form shall mean any form resulting from mechanical
  678. transformation or translation of a Source form, including but
  679. not limited to compiled object code, generated documentation,
  680. and conversions to other media types.
  681. "Work" shall mean the work of authorship, whether in Source or
  682. Object form, made available under the License, as indicated by a
  683. copyright notice that is included in or attached to the work
  684. (an example is provided in the Appendix below).
  685. "Derivative Works" shall mean any work, whether in Source or Object
  686. form, that is based on (or derived from) the Work and for which the
  687. editorial revisions, annotations, elaborations, or other modifications
  688. represent, as a whole, an original work of authorship. For the purposes
  689. of this License, Derivative Works shall not include works that remain
  690. separable from, or merely link (or bind by name) to the interfaces of,
  691. the Work and Derivative Works thereof.
  692. "Contribution" shall mean any work of authorship, including
  693. the original version of the Work and any modifications or additions
  694. to that Work or Derivative Works thereof, that is intentionally
  695. submitted to Licensor for inclusion in the Work by the copyright owner
  696. or by an individual or Legal Entity authorized to submit on behalf of
  697. the copyright owner. For the purposes of this definition, "submitted"
  698. means any form of electronic, verbal, or written communication sent
  699. to the Licensor or its representatives, including but not limited to
  700. communication on electronic mailing lists, source code control systems,
  701. and issue tracking systems that are managed by, or on behalf of, the
  702. Licensor for the purpose of discussing and improving the Work, but
  703. excluding communication that is conspicuously marked or otherwise
  704. designated in writing by the copyright owner as "Not a Contribution."
  705. "Contributor" shall mean Licensor and any individual or Legal Entity
  706. on behalf of whom a Contribution has been received by Licensor and
  707. subsequently incorporated within the Work.
  708. 2. Grant of Copyright License. Subject to the terms and conditions of
  709. this License, each Contributor hereby grants to You a perpetual,
  710. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  711. copyright license to reproduce, prepare Derivative Works of,
  712. publicly display, publicly perform, sublicense, and distribute the
  713. Work and such Derivative Works in Source or Object form.
  714. 3. Grant of Patent License. Subject to the terms and conditions of
  715. this License, each Contributor hereby grants to You a perpetual,
  716. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  717. (except as stated in this section) patent license to make, have made,
  718. use, offer to sell, sell, import, and otherwise transfer the Work,
  719. where such license applies only to those patent claims licensable
  720. by such Contributor that are necessarily infringed by their
  721. Contribution(s) alone or by combination of their Contribution(s)
  722. with the Work to which such Contribution(s) was submitted. If You
  723. institute patent litigation against any entity (including a
  724. cross-claim or counterclaim in a lawsuit) alleging that the Work
  725. or a Contribution incorporated within the Work constitutes direct
  726. or contributory patent infringement, then any patent licenses
  727. granted to You under this License for that Work shall terminate
  728. as of the date such litigation is filed.
  729. 4. Redistribution. You may reproduce and distribute copies of the
  730. Work or Derivative Works thereof in any medium, with or without
  731. modifications, and in Source or Object form, provided that You
  732. meet the following conditions:
  733. (a) You must give any other recipients of the Work or
  734. Derivative Works a copy of this License; and
  735. (b) You must cause any modified files to carry prominent notices
  736. stating that You changed the files; and
  737. (c) You must retain, in the Source form of any Derivative Works
  738. that You distribute, all copyright, patent, trademark, and
  739. attribution notices from the Source form of the Work,
  740. excluding those notices that do not pertain to any part of
  741. the Derivative Works; and
  742. (d) If the Work includes a "NOTICE" text file as part of its
  743. distribution, then any Derivative Works that You distribute must
  744. include a readable copy of the attribution notices contained
  745. within such NOTICE file, excluding those notices that do not
  746. pertain to any part of the Derivative Works, in at least one
  747. of the following places: within a NOTICE text file distributed
  748. as part of the Derivative Works; within the Source form or
  749. documentation, if provided along with the Derivative Works; or,
  750. within a display generated by the Derivative Works, if and
  751. wherever such third-party notices normally appear. The contents
  752. of the NOTICE file are for informational purposes only and
  753. do not modify the License. You may add Your own attribution
  754. notices within Derivative Works that You distribute, alongside
  755. or as an addendum to the NOTICE text from the Work, provided
  756. that such additional attribution notices cannot be construed
  757. as modifying the License.
  758. You may add Your own copyright statement to Your modifications and
  759. may provide additional or different license terms and conditions
  760. for use, reproduction, or distribution of Your modifications, or
  761. for any such Derivative Works as a whole, provided Your use,
  762. reproduction, and distribution of the Work otherwise complies with
  763. the conditions stated in this License.
  764. 5. Submission of Contributions. Unless You explicitly state otherwise,
  765. any Contribution intentionally submitted for inclusion in the Work
  766. by You to the Licensor shall be under the terms and conditions of
  767. this License, without any additional terms or conditions.
  768. Notwithstanding the above, nothing herein shall supersede or modify
  769. the terms of any separate license agreement you may have executed
  770. with Licensor regarding such Contributions.
  771. 6. Trademarks. This License does not grant permission to use the trade
  772. names, trademarks, service marks, or product names of the Licensor,
  773. except as required for reasonable and customary use in describing the
  774. origin of the Work and reproducing the content of the NOTICE file.
  775. 7. Disclaimer of Warranty. Unless required by applicable law or
  776. agreed to in writing, Licensor provides the Work (and each
  777. Contributor provides its Contributions) on an "AS IS" BASIS,
  778. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  779. implied, including, without limitation, any warranties or conditions
  780. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  781. PARTICULAR PURPOSE. You are solely responsible for determining the
  782. appropriateness of using or redistributing the Work and assume any
  783. risks associated with Your exercise of permissions under this License.
  784. 8. Limitation of Liability. In no event and under no legal theory,
  785. whether in tort (including negligence), contract, or otherwise,
  786. unless required by applicable law (such as deliberate and grossly
  787. negligent acts) or agreed to in writing, shall any Contributor be
  788. liable to You for damages, including any direct, indirect, special,
  789. incidental, or consequential damages of any character arising as a
  790. result of this License or out of the use or inability to use the
  791. Work (including but not limited to damages for loss of goodwill,
  792. work stoppage, computer failure or malfunction, or any and all
  793. other commercial damages or losses), even if such Contributor
  794. has been advised of the possibility of such damages.
  795. 9. Accepting Warranty or Additional Liability. While redistributing
  796. the Work or Derivative Works thereof, You may choose to offer,
  797. and charge a fee for, acceptance of support, warranty, indemnity,
  798. or other liability obligations and/or rights consistent with this
  799. License. However, in accepting such obligations, You may act only
  800. on Your own behalf and on Your sole responsibility, not on behalf
  801. of any other Contributor, and only if You agree to indemnify,
  802. defend, and hold each Contributor harmless for any liability
  803. incurred by, or claims asserted against, such Contributor by reason
  804. of your accepting any such warranty or additional liability.
  805. END OF TERMS AND CONDITIONS
  806. APPENDIX: How to apply the Apache License to your work.
  807. To apply the Apache License to your work, attach the following
  808. boilerplate notice, with the fields enclosed by brackets "[]"
  809. replaced with your own identifying information. (Don't include
  810. the brackets!) The text should be enclosed in the appropriate
  811. comment syntax for the file format. We also recommend that a
  812. file or class name and description of purpose be included on the
  813. same "printed page" as the copyright notice for easier
  814. identification within third-party archives.
  815. Copyright [yyyy] [name of copyright owner]
  816. Licensed under the Apache License, Version 2.0 (the "License");
  817. you may not use this file except in compliance with the License.
  818. You may obtain a copy of the License at
  819. http://www.apache.org/licenses/LICENSE-2.0
  820. Unless required by applicable law or agreed to in writing, software
  821. distributed under the License is distributed on an "AS IS" BASIS,
  822. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  823. See the License for the specific language governing permissions and
  824. limitations under the License.
  825. ------------------------------------------------------------------------------
  826. Files: third_party/libyuv/*
  827. Copyright 2011 The LibYuv Project Authors. All rights reserved.
  828. Redistribution and use in source and binary forms, with or without
  829. modification, are permitted provided that the following conditions are
  830. met:
  831. * Redistributions of source code must retain the above copyright
  832. notice, this list of conditions and the following disclaimer.
  833. * Redistributions in binary form must reproduce the above copyright
  834. notice, this list of conditions and the following disclaimer in
  835. the documentation and/or other materials provided with the
  836. distribution.
  837. * Neither the name of Google nor the names of its contributors may
  838. be used to endorse or promote products derived from this software
  839. without specific prior written permission.
  840. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  841. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  842. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  843. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  844. HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  845. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  846. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  847. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  848. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  849. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  850. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  851. ===== libjpeg-turbo-3.1.3 =====
  852. LEGAL ISSUES
  853. ============
  854. In plain English:
  855. 1. We don't promise that this software works. (But if you find any bugs,
  856. please let us know!)
  857. 2. You can use this software for whatever you want. You don't have to pay us.
  858. 3. You may not pretend that you wrote this software. If you use it in a
  859. program, you must acknowledge somewhere in your documentation that
  860. you've used the IJG code.
  861. In legalese:
  862. The authors make NO WARRANTY or representation, either express or implied,
  863. with respect to this software, its quality, accuracy, merchantability, or
  864. fitness for a particular purpose. This software is provided "AS IS", and you,
  865. its user, assume the entire risk as to its quality and accuracy.
  866. This software is copyright (C) 1991-2020, Thomas G. Lane, Guido Vollbeding.
  867. All Rights Reserved except as specified below.
  868. Permission is hereby granted to use, copy, modify, and distribute this
  869. software (or portions thereof) for any purpose, without fee, subject to these
  870. conditions:
  871. (1) If any part of the source code for this software is distributed, then this
  872. README file must be included, with this copyright and no-warranty notice
  873. unaltered; and any additions, deletions, or changes to the original files
  874. must be clearly indicated in accompanying documentation.
  875. (2) If only executable code is distributed, then the accompanying
  876. documentation must state that "this software is based in part on the work of
  877. the Independent JPEG Group".
  878. (3) Permission for use of this software is granted only if the user accepts
  879. full responsibility for any undesirable consequences; the authors accept
  880. NO LIABILITY for damages of any kind.
  881. These conditions apply to any software derived from or based on the IJG code,
  882. not just to the unmodified library. If you use our work, you ought to
  883. acknowledge us.
  884. Permission is NOT granted for the use of any IJG author's name or company name
  885. in advertising or publicity relating to this software or products derived from
  886. it. This software may be referred to only as "the Independent JPEG Group's
  887. software".
  888. We specifically permit and encourage the use of this software as the basis of
  889. commercial products, provided that all warranty or liability claims are
  890. assumed by the product vendor.
  891. libjpeg-turbo Licenses
  892. ======================
  893. libjpeg-turbo is covered by two compatible BSD-style open source licenses:
  894. - The IJG (Independent JPEG Group) License, which is listed in
  895. [README.ijg](README.ijg)
  896. This license applies to the libjpeg API library and associated programs,
  897. including any code inherited from libjpeg and any modifications to that
  898. code. Note that the libjpeg-turbo SIMD source code bears the
  899. [zlib License](https://opensource.org/licenses/Zlib), but in the context of
  900. the overall libjpeg API library, the terms of the zlib License are subsumed
  901. by the terms of the IJG License.
  902. - The Modified (3-clause) BSD License, which is listed below
  903. This license applies to the TurboJPEG API library and associated programs, as
  904. well as the build system. Note that the TurboJPEG API library wraps the
  905. libjpeg API library, so in the context of the overall TurboJPEG API library,
  906. both the terms of the IJG License and the terms of the Modified (3-clause)
  907. BSD License apply.
  908. Complying with the libjpeg-turbo Licenses
  909. =========================================
  910. This section provides a roll-up of the libjpeg-turbo licensing terms, to the
  911. best of our understanding. This is not a license in and of itself. It is
  912. intended solely for clarification.
  913. 1. If you are distributing a modified version of the libjpeg-turbo source,
  914. then:
  915. 1. You cannot alter or remove any existing copyright or license notices
  916. from the source.
  917. **Origin**
  918. - Clause 1 of the IJG License
  919. - Clause 1 of the Modified BSD License
  920. - Clauses 1 and 3 of the zlib License
  921. 2. You must add your own copyright notice to the header of each source
  922. file you modified, so others can tell that you modified that file. (If
  923. there is not an existing copyright header in that file, then you can
  924. simply add a notice stating that you modified the file.)
  925. **Origin**
  926. - Clause 1 of the IJG License
  927. - Clause 2 of the zlib License
  928. 3. You must include the IJG README file, and you must not alter any of the
  929. copyright or license text in that file.
  930. **Origin**
  931. - Clause 1 of the IJG License
  932. 2. If you are distributing only libjpeg-turbo binaries without the source, or
  933. if you are distributing an application that statically links with
  934. libjpeg-turbo, then:
  935. 1. Your product documentation must include a message stating:
  936. This software is based in part on the work of the Independent JPEG
  937. Group.
  938. **Origin**
  939. - Clause 2 of the IJG license
  940. 2. If your binary distribution includes or uses the TurboJPEG API, then
  941. your product documentation must include the text of the Modified BSD
  942. License (see below.)
  943. **Origin**
  944. - Clause 2 of the Modified BSD License
  945. 3. You cannot use the name of the IJG or The libjpeg-turbo Project or the
  946. contributors thereof in advertising, publicity, etc.
  947. **Origin**
  948. - IJG License
  949. - Clause 3 of the Modified BSD License
  950. 4. The IJG and The libjpeg-turbo Project do not warrant libjpeg-turbo to be
  951. free of defects, nor do we accept any liability for undesirable
  952. consequences resulting from your use of the software.
  953. **Origin**
  954. - IJG License
  955. - Modified BSD License
  956. - zlib License
  957. The Modified (3-clause) BSD License
  958. ===================================
  959. Copyright (C)2009-2025 D. R. Commander. All Rights Reserved.<br>
  960. Copyright (C)2015 Viktor Szathmáry. All Rights Reserved.
  961. Redistribution and use in source and binary forms, with or without
  962. modification, are permitted provided that the following conditions are met:
  963. - Redistributions of source code must retain the above copyright notice,
  964. this list of conditions and the following disclaimer.
  965. - Redistributions in binary form must reproduce the above copyright notice,
  966. this list of conditions and the following disclaimer in the documentation
  967. and/or other materials provided with the distribution.
  968. - Neither the name of the libjpeg-turbo Project nor the names of its
  969. contributors may be used to endorse or promote products derived from this
  970. software without specific prior written permission.
  971. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS",
  972. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  973. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  974. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
  975. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  976. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  977. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  978. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  979. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  980. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  981. POSSIBILITY OF SUCH DAMAGE.
  982. Why Two Licenses?
  983. =================
  984. The zlib License could have been used instead of the Modified (3-clause) BSD
  985. License, and since the IJG License effectively subsumes the distribution
  986. conditions of the zlib License, this would have effectively placed
  987. libjpeg-turbo binary distributions under the IJG License. However, the IJG
  988. License specifically refers to the Independent JPEG Group and does not extend
  989. attribution and endorsement protections to other entities. Thus, it was
  990. desirable to choose a license that granted us the same protections for new code
  991. that were granted to the IJG for code derived from their software.
  992. ===== libpng-1.6.53 =====
  993. COPYRIGHT NOTICE, DISCLAIMER, and LICENSE
  994. =========================================
  995. PNG Reference Library License version 2
  996. ---------------------------------------
  997. * Copyright (c) 1995-2025 The PNG Reference Library Authors.
  998. * Copyright (c) 2018-2025 Cosmin Truta.
  999. * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson.
  1000. * Copyright (c) 1996-1997 Andreas Dilger.
  1001. * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
  1002. The software is supplied "as is", without warranty of any kind,
  1003. express or implied, including, without limitation, the warranties
  1004. of merchantability, fitness for a particular purpose, title, and
  1005. non-infringement. In no event shall the Copyright owners, or
  1006. anyone distributing the software, be liable for any damages or
  1007. other liability, whether in contract, tort or otherwise, arising
  1008. from, out of, or in connection with the software, or the use or
  1009. other dealings in the software, even if advised of the possibility
  1010. of such damage.
  1011. Permission is hereby granted to use, copy, modify, and distribute
  1012. this software, or portions hereof, for any purpose, without fee,
  1013. subject to the following restrictions:
  1014. 1. The origin of this software must not be misrepresented; you
  1015. must not claim that you wrote the original software. If you
  1016. use this software in a product, an acknowledgment in the product
  1017. documentation would be appreciated, but is not required.
  1018. 2. Altered source versions must be plainly marked as such, and must
  1019. not be misrepresented as being the original software.
  1020. 3. This Copyright notice may not be removed or altered from any
  1021. source or altered source distribution.
  1022. PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35)
  1023. -----------------------------------------------------------------------
  1024. libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are
  1025. Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are
  1026. derived from libpng-1.0.6, and are distributed according to the same
  1027. disclaimer and license as libpng-1.0.6 with the following individuals
  1028. added to the list of Contributing Authors:
  1029. Simon-Pierre Cadieux
  1030. Eric S. Raymond
  1031. Mans Rullgard
  1032. Cosmin Truta
  1033. Gilles Vollant
  1034. James Yu
  1035. Mandar Sahastrabuddhe
  1036. Google Inc.
  1037. Vadim Barkov
  1038. and with the following additions to the disclaimer:
  1039. There is no warranty against interference with your enjoyment of
  1040. the library or against infringement. There is no warranty that our
  1041. efforts or the library will fulfill any of your particular purposes
  1042. or needs. This library is provided with all faults, and the entire
  1043. risk of satisfactory quality, performance, accuracy, and effort is
  1044. with the user.
  1045. Some files in the "contrib" directory and some configure-generated
  1046. files that are distributed with libpng have other copyright owners, and
  1047. are released under other open source licenses.
  1048. libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
  1049. Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from
  1050. libpng-0.96, and are distributed according to the same disclaimer and
  1051. license as libpng-0.96, with the following individuals added to the
  1052. list of Contributing Authors:
  1053. Tom Lane
  1054. Glenn Randers-Pehrson
  1055. Willem van Schaik
  1056. libpng versions 0.89, June 1996, through 0.96, May 1997, are
  1057. Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88,
  1058. and are distributed according to the same disclaimer and license as
  1059. libpng-0.88, with the following individuals added to the list of
  1060. Contributing Authors:
  1061. John Bowler
  1062. Kevin Bracey
  1063. Sam Bushell
  1064. Magnus Holmgren
  1065. Greg Roelofs
  1066. Tom Tanner
  1067. Some files in the "scripts" directory have other copyright owners,
  1068. but are released under this license.
  1069. libpng versions 0.5, May 1995, through 0.88, January 1996, are
  1070. Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
  1071. For the purposes of this copyright and license, "Contributing Authors"
  1072. is defined as the following set of individuals:
  1073. Andreas Dilger
  1074. Dave Martindale
  1075. Guy Eric Schalnat
  1076. Paul Schmidt
  1077. Tim Wegner
  1078. The PNG Reference Library is supplied "AS IS". The Contributing
  1079. Authors and Group 42, Inc. disclaim all warranties, expressed or
  1080. implied, including, without limitation, the warranties of
  1081. merchantability and of fitness for any purpose. The Contributing
  1082. Authors and Group 42, Inc. assume no liability for direct, indirect,
  1083. incidental, special, exemplary, or consequential damages, which may
  1084. result from the use of the PNG Reference Library, even if advised of
  1085. the possibility of such damage.
  1086. Permission is hereby granted to use, copy, modify, and distribute this
  1087. source code, or portions hereof, for any purpose, without fee, subject
  1088. to the following restrictions:
  1089. 1. The origin of this source code must not be misrepresented.
  1090. 2. Altered versions must be plainly marked as such and must not
  1091. be misrepresented as being the original source.
  1092. 3. This Copyright notice may not be removed or altered from any
  1093. source or altered source distribution.
  1094. The Contributing Authors and Group 42, Inc. specifically permit,
  1095. without fee, and encourage the use of this source code as a component
  1096. to supporting the PNG file format in commercial products. If you use
  1097. this source code in a product, acknowledgment is not required but would
  1098. be appreciated.
  1099. ===== libwebp-1.6.0 =====
  1100. Copyright (c) 2010, Google Inc. All rights reserved.
  1101. Redistribution and use in source and binary forms, with or without
  1102. modification, are permitted provided that the following conditions are
  1103. met:
  1104. * Redistributions of source code must retain the above copyright
  1105. notice, this list of conditions and the following disclaimer.
  1106. * Redistributions in binary form must reproduce the above copyright
  1107. notice, this list of conditions and the following disclaimer in
  1108. the documentation and/or other materials provided with the
  1109. distribution.
  1110. * Neither the name of Google nor the names of its contributors may
  1111. be used to endorse or promote products derived from this software
  1112. without specific prior written permission.
  1113. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1114. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1115. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  1116. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  1117. HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  1118. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  1119. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  1120. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  1121. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1122. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1123. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1124. ===== openjpeg-2.5.4 =====
  1125. /*
  1126. * The copyright in this software is being made available under the 2-clauses
  1127. * BSD License, included below. This software may be subject to other third
  1128. * party and contributor rights, including patent rights, and no such rights
  1129. * are granted under this license.
  1130. *
  1131. * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium
  1132. * Copyright (c) 2002-2014, Professor Benoit Macq
  1133. * Copyright (c) 2003-2014, Antonin Descampe
  1134. * Copyright (c) 2003-2009, Francois-Olivier Devaux
  1135. * Copyright (c) 2005, Herve Drolon, FreeImage Team
  1136. * Copyright (c) 2002-2003, Yannick Verschueren
  1137. * Copyright (c) 2001-2003, David Janssens
  1138. * Copyright (c) 2011-2012, Centre National d'Etudes Spatiales (CNES), France
  1139. * Copyright (c) 2012, CS Systemes d'Information, France
  1140. *
  1141. * All rights reserved.
  1142. *
  1143. * Redistribution and use in source and binary forms, with or without
  1144. * modification, are permitted provided that the following conditions
  1145. * are met:
  1146. * 1. Redistributions of source code must retain the above copyright
  1147. * notice, this list of conditions and the following disclaimer.
  1148. * 2. Redistributions in binary form must reproduce the above copyright
  1149. * notice, this list of conditions and the following disclaimer in the
  1150. * documentation and/or other materials provided with the distribution.
  1151. *
  1152. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
  1153. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  1154. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  1155. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  1156. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  1157. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  1158. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  1159. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  1160. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  1161. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  1162. * POSSIBILITY OF SUCH DAMAGE.
  1163. */
  1164. ===== tiff-4.7.1 =====
  1165. # LibTIFF license
  1166. Copyright © 1988-1997 Sam Leffler\
  1167. Copyright © 1991-1997 Silicon Graphics, Inc.
  1168. Permission to use, copy, modify, distribute, and sell this software and
  1169. its documentation for any purpose is hereby granted without fee, provided
  1170. that (i) the above copyright notices and this permission notice appear in
  1171. all copies of the software and related documentation, and (ii) the names of
  1172. Sam Leffler and Silicon Graphics may not be used in any advertising or
  1173. publicity relating to the software without the specific, prior written
  1174. permission of Sam Leffler and Silicon Graphics.
  1175. THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
  1176. EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
  1177. WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
  1178. IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  1179. ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  1180. OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  1181. WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
  1182. LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  1183. OF THIS SOFTWARE.
  1184. # Lempel-Ziv & Welch Compression (tif_lzw.c) license
  1185. The code of tif_lzw.c is derived from the compress program whose code is
  1186. derived from software contributed to Berkeley by James A. Woods,
  1187. derived from original work by Spencer Thomas and Joseph Orost.
  1188. The original Berkeley copyright notice appears below in its entirety:
  1189. Copyright (c) 1985, 1986 The Regents of the University of California.
  1190. All rights reserved.
  1191. This code is derived from software contributed to Berkeley by
  1192. James A. Woods, derived from original work by Spencer Thomas
  1193. and Joseph Orost.
  1194. Redistribution and use in source and binary forms are permitted
  1195. provided that the above copyright notice and this paragraph are
  1196. duplicated in all such forms and that any documentation,
  1197. advertising materials, and other materials related to such
  1198. distribution and use acknowledge that the software was developed
  1199. by the University of California, Berkeley. The name of the
  1200. University may not be used to endorse or promote products derived
  1201. from this software without specific prior written permission.
  1202. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  1203. IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  1204. WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  1205. ===== xz-5.8.2 =====
  1206. XZ Utils Licensing
  1207. ==================
  1208. Different licenses apply to different files in this package. Here
  1209. is a summary of which licenses apply to which parts of this package:
  1210. - liblzma is under the BSD Zero Clause License (0BSD).
  1211. - The command line tools xz, xzdec, lzmadec, and lzmainfo are
  1212. under 0BSD except that, on systems that don't have a usable
  1213. getopt_long, GNU getopt_long is compiled and linked in from the
  1214. 'lib' directory. The getopt_long code is under GNU LGPLv2.1+.
  1215. - The scripts to grep, diff, and view compressed files have been
  1216. adapted from GNU gzip. These scripts (xzgrep, xzdiff, xzless,
  1217. and xzmore) are under GNU GPLv2+. The man pages of the scripts
  1218. are under 0BSD; they aren't based on the man pages of GNU gzip.
  1219. - Most of the XZ Utils specific documentation that is in
  1220. plain text files (like README, INSTALL, PACKAGERS, NEWS,
  1221. and ChangeLog) are under 0BSD unless stated otherwise in
  1222. the file itself. The files xz-file-format.txt and
  1223. lzma-file-format.xt are in the public domain but may
  1224. be distributed under the terms of 0BSD too.
  1225. - Translated messages and man pages are under 0BSD except that
  1226. some old translations are in the public domain.
  1227. - Test files and test code in the 'tests' directory, and
  1228. debugging utilities in the 'debug' directory are under
  1229. the BSD Zero Clause License (0BSD).
  1230. - The GNU Autotools based build system contains files that are
  1231. under GNU GPLv2+, GNU GPLv3+, and a few permissive licenses.
  1232. These files don't affect the licensing of the binaries being
  1233. built.
  1234. - The 'extra' directory contains files that are under various
  1235. free software licenses. These aren't built or installed as
  1236. part of XZ Utils.
  1237. The following command may be helpful in finding per-file license
  1238. information. It works on xz.git and on a clean file tree extracted
  1239. from a release tarball.
  1240. sh build-aux/license-check.sh -v
  1241. For the files under the BSD Zero Clause License (0BSD), if
  1242. a copyright notice is needed, the following is sufficient:
  1243. Copyright (C) The XZ Utils authors and contributors
  1244. If you copy significant amounts of 0BSD-licensed code from XZ Utils
  1245. into your project, acknowledging this somewhere in your software is
  1246. polite (especially if it is proprietary, non-free software), but
  1247. it is not legally required by the license terms. Here is an example
  1248. of a good notice to put into "about box" or into documentation:
  1249. This software includes code from XZ Utils <https://tukaani.org/xz/>.
  1250. The following license texts are included in the following files:
  1251. - COPYING.0BSD: BSD Zero Clause License
  1252. - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1
  1253. - COPYING.GPLv2: GNU General Public License version 2
  1254. - COPYING.GPLv3: GNU General Public License version 3
  1255. If you have questions, don't hesitate to ask for more information.
  1256. The contact information is in the README file.
  1257. ===== zlib-ng-2.3.2 =====
  1258. (C) 1995-2024 Jean-loup Gailly and Mark Adler
  1259. This software is provided 'as-is', without any express or implied
  1260. warranty. In no event will the authors be held liable for any damages
  1261. arising from the use of this software.
  1262. Permission is granted to anyone to use this software for any purpose,
  1263. including commercial applications, and to alter it and redistribute it
  1264. freely, subject to the following restrictions:
  1265. 1. The origin of this software must not be misrepresented; you must not
  1266. claim that you wrote the original software. If you use this software
  1267. in a product, an acknowledgment in the product documentation would be
  1268. appreciated but is not required.
  1269. 2. Altered source versions must be plainly marked as such, and must not be
  1270. misrepresented as being the original software.
  1271. 3. This notice may not be removed or altered from any source distribution.