nokogiri-backport 1.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (239) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +3 -0
  3. data/LICENSE-DEPENDENCIES.md +1682 -0
  4. data/LICENSE.md +9 -0
  5. data/README.md +272 -0
  6. data/bin/nokogiri +118 -0
  7. data/dependencies.yml +74 -0
  8. data/ext/java/nokogiri/EncodingHandler.java +124 -0
  9. data/ext/java/nokogiri/HtmlDocument.java +178 -0
  10. data/ext/java/nokogiri/HtmlElementDescription.java +148 -0
  11. data/ext/java/nokogiri/HtmlEntityLookup.java +79 -0
  12. data/ext/java/nokogiri/HtmlSaxParserContext.java +282 -0
  13. data/ext/java/nokogiri/HtmlSaxPushParser.java +222 -0
  14. data/ext/java/nokogiri/NokogiriService.java +597 -0
  15. data/ext/java/nokogiri/XmlAttr.java +162 -0
  16. data/ext/java/nokogiri/XmlAttributeDecl.java +129 -0
  17. data/ext/java/nokogiri/XmlCdata.java +82 -0
  18. data/ext/java/nokogiri/XmlComment.java +97 -0
  19. data/ext/java/nokogiri/XmlDocument.java +633 -0
  20. data/ext/java/nokogiri/XmlDocumentFragment.java +185 -0
  21. data/ext/java/nokogiri/XmlDtd.java +481 -0
  22. data/ext/java/nokogiri/XmlElement.java +68 -0
  23. data/ext/java/nokogiri/XmlElementContent.java +382 -0
  24. data/ext/java/nokogiri/XmlElementDecl.java +147 -0
  25. data/ext/java/nokogiri/XmlEntityDecl.java +157 -0
  26. data/ext/java/nokogiri/XmlEntityReference.java +101 -0
  27. data/ext/java/nokogiri/XmlNamespace.java +199 -0
  28. data/ext/java/nokogiri/XmlNode.java +1684 -0
  29. data/ext/java/nokogiri/XmlNodeSet.java +434 -0
  30. data/ext/java/nokogiri/XmlProcessingInstruction.java +100 -0
  31. data/ext/java/nokogiri/XmlReader.java +531 -0
  32. data/ext/java/nokogiri/XmlRelaxng.java +151 -0
  33. data/ext/java/nokogiri/XmlSaxParserContext.java +374 -0
  34. data/ext/java/nokogiri/XmlSaxPushParser.java +286 -0
  35. data/ext/java/nokogiri/XmlSchema.java +388 -0
  36. data/ext/java/nokogiri/XmlSyntaxError.java +138 -0
  37. data/ext/java/nokogiri/XmlText.java +110 -0
  38. data/ext/java/nokogiri/XmlXpathContext.java +301 -0
  39. data/ext/java/nokogiri/XsltStylesheet.java +347 -0
  40. data/ext/java/nokogiri/internals/ClosedStreamException.java +10 -0
  41. data/ext/java/nokogiri/internals/HtmlDomParserContext.java +252 -0
  42. data/ext/java/nokogiri/internals/IgnoreSchemaErrorsErrorHandler.java +20 -0
  43. data/ext/java/nokogiri/internals/NokogiriBlockingQueueInputStream.java +151 -0
  44. data/ext/java/nokogiri/internals/NokogiriDomParser.java +116 -0
  45. data/ext/java/nokogiri/internals/NokogiriEntityResolver.java +121 -0
  46. data/ext/java/nokogiri/internals/NokogiriErrorHandler.java +69 -0
  47. data/ext/java/nokogiri/internals/NokogiriHandler.java +327 -0
  48. data/ext/java/nokogiri/internals/NokogiriHelpers.java +734 -0
  49. data/ext/java/nokogiri/internals/NokogiriNamespaceCache.java +217 -0
  50. data/ext/java/nokogiri/internals/NokogiriNamespaceContext.java +127 -0
  51. data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler.java +100 -0
  52. data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler4NekoHtml.java +121 -0
  53. data/ext/java/nokogiri/internals/NokogiriStrictErrorHandler.java +78 -0
  54. data/ext/java/nokogiri/internals/NokogiriXPathFunction.java +180 -0
  55. data/ext/java/nokogiri/internals/NokogiriXPathFunctionResolver.java +72 -0
  56. data/ext/java/nokogiri/internals/NokogiriXPathVariableResolver.java +60 -0
  57. data/ext/java/nokogiri/internals/NokogiriXsltErrorListener.java +87 -0
  58. data/ext/java/nokogiri/internals/ParserContext.java +259 -0
  59. data/ext/java/nokogiri/internals/ReaderNode.java +488 -0
  60. data/ext/java/nokogiri/internals/SaveContextVisitor.java +778 -0
  61. data/ext/java/nokogiri/internals/SchemaErrorHandler.java +73 -0
  62. data/ext/java/nokogiri/internals/XalanDTMManagerPatch.java +168 -0
  63. data/ext/java/nokogiri/internals/XmlDeclHandler.java +42 -0
  64. data/ext/java/nokogiri/internals/XmlDomParserContext.java +274 -0
  65. data/ext/java/nokogiri/internals/XmlSaxParser.java +65 -0
  66. data/ext/java/nokogiri/internals/c14n/AttrCompare.java +119 -0
  67. data/ext/java/nokogiri/internals/c14n/C14nHelper.java +159 -0
  68. data/ext/java/nokogiri/internals/c14n/CanonicalFilter.java +37 -0
  69. data/ext/java/nokogiri/internals/c14n/CanonicalizationException.java +93 -0
  70. data/ext/java/nokogiri/internals/c14n/Canonicalizer.java +252 -0
  71. data/ext/java/nokogiri/internals/c14n/Canonicalizer11.java +639 -0
  72. data/ext/java/nokogiri/internals/c14n/Canonicalizer11_OmitComments.java +38 -0
  73. data/ext/java/nokogiri/internals/c14n/Canonicalizer11_WithComments.java +38 -0
  74. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315.java +367 -0
  75. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315Excl.java +295 -0
  76. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315ExclOmitComments.java +40 -0
  77. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315ExclWithComments.java +44 -0
  78. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315OmitComments.java +44 -0
  79. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315WithComments.java +43 -0
  80. data/ext/java/nokogiri/internals/c14n/CanonicalizerBase.java +630 -0
  81. data/ext/java/nokogiri/internals/c14n/CanonicalizerPhysical.java +173 -0
  82. data/ext/java/nokogiri/internals/c14n/CanonicalizerSpi.java +76 -0
  83. data/ext/java/nokogiri/internals/c14n/Constants.java +42 -0
  84. data/ext/java/nokogiri/internals/c14n/ElementProxy.java +293 -0
  85. data/ext/java/nokogiri/internals/c14n/HelperNodeList.java +93 -0
  86. data/ext/java/nokogiri/internals/c14n/IgnoreAllErrorHandler.java +79 -0
  87. data/ext/java/nokogiri/internals/c14n/InclusiveNamespaces.java +166 -0
  88. data/ext/java/nokogiri/internals/c14n/InvalidCanonicalizerException.java +76 -0
  89. data/ext/java/nokogiri/internals/c14n/NameSpaceSymbTable.java +402 -0
  90. data/ext/java/nokogiri/internals/c14n/NodeFilter.java +51 -0
  91. data/ext/java/nokogiri/internals/c14n/UtfHelpper.java +179 -0
  92. data/ext/java/nokogiri/internals/c14n/XMLUtils.java +507 -0
  93. data/ext/java/nokogiri/internals/dom2dtm/DOM2DTM.java +1745 -0
  94. data/ext/java/nokogiri/internals/dom2dtm/DOM2DTMdefaultNamespaceDeclarationNode.java +685 -0
  95. data/ext/nokogiri/depend +477 -0
  96. data/ext/nokogiri/extconf.rb +836 -0
  97. data/ext/nokogiri/html_document.c +171 -0
  98. data/ext/nokogiri/html_document.h +10 -0
  99. data/ext/nokogiri/html_element_description.c +279 -0
  100. data/ext/nokogiri/html_element_description.h +10 -0
  101. data/ext/nokogiri/html_entity_lookup.c +32 -0
  102. data/ext/nokogiri/html_entity_lookup.h +8 -0
  103. data/ext/nokogiri/html_sax_parser_context.c +116 -0
  104. data/ext/nokogiri/html_sax_parser_context.h +11 -0
  105. data/ext/nokogiri/html_sax_push_parser.c +87 -0
  106. data/ext/nokogiri/html_sax_push_parser.h +9 -0
  107. data/ext/nokogiri/nokogiri.c +135 -0
  108. data/ext/nokogiri/nokogiri.h +130 -0
  109. data/ext/nokogiri/xml_attr.c +103 -0
  110. data/ext/nokogiri/xml_attr.h +9 -0
  111. data/ext/nokogiri/xml_attribute_decl.c +70 -0
  112. data/ext/nokogiri/xml_attribute_decl.h +9 -0
  113. data/ext/nokogiri/xml_cdata.c +62 -0
  114. data/ext/nokogiri/xml_cdata.h +9 -0
  115. data/ext/nokogiri/xml_comment.c +69 -0
  116. data/ext/nokogiri/xml_comment.h +9 -0
  117. data/ext/nokogiri/xml_document.c +622 -0
  118. data/ext/nokogiri/xml_document.h +23 -0
  119. data/ext/nokogiri/xml_document_fragment.c +48 -0
  120. data/ext/nokogiri/xml_document_fragment.h +10 -0
  121. data/ext/nokogiri/xml_dtd.c +202 -0
  122. data/ext/nokogiri/xml_dtd.h +10 -0
  123. data/ext/nokogiri/xml_element_content.c +123 -0
  124. data/ext/nokogiri/xml_element_content.h +10 -0
  125. data/ext/nokogiri/xml_element_decl.c +69 -0
  126. data/ext/nokogiri/xml_element_decl.h +9 -0
  127. data/ext/nokogiri/xml_encoding_handler.c +79 -0
  128. data/ext/nokogiri/xml_encoding_handler.h +8 -0
  129. data/ext/nokogiri/xml_entity_decl.c +110 -0
  130. data/ext/nokogiri/xml_entity_decl.h +10 -0
  131. data/ext/nokogiri/xml_entity_reference.c +52 -0
  132. data/ext/nokogiri/xml_entity_reference.h +9 -0
  133. data/ext/nokogiri/xml_io.c +63 -0
  134. data/ext/nokogiri/xml_io.h +11 -0
  135. data/ext/nokogiri/xml_libxml2_hacks.c +112 -0
  136. data/ext/nokogiri/xml_libxml2_hacks.h +12 -0
  137. data/ext/nokogiri/xml_namespace.c +111 -0
  138. data/ext/nokogiri/xml_namespace.h +14 -0
  139. data/ext/nokogiri/xml_node.c +1773 -0
  140. data/ext/nokogiri/xml_node.h +13 -0
  141. data/ext/nokogiri/xml_node_set.c +486 -0
  142. data/ext/nokogiri/xml_node_set.h +12 -0
  143. data/ext/nokogiri/xml_processing_instruction.c +56 -0
  144. data/ext/nokogiri/xml_processing_instruction.h +9 -0
  145. data/ext/nokogiri/xml_reader.c +657 -0
  146. data/ext/nokogiri/xml_reader.h +10 -0
  147. data/ext/nokogiri/xml_relax_ng.c +179 -0
  148. data/ext/nokogiri/xml_relax_ng.h +9 -0
  149. data/ext/nokogiri/xml_sax_parser.c +305 -0
  150. data/ext/nokogiri/xml_sax_parser.h +39 -0
  151. data/ext/nokogiri/xml_sax_parser_context.c +262 -0
  152. data/ext/nokogiri/xml_sax_parser_context.h +10 -0
  153. data/ext/nokogiri/xml_sax_push_parser.c +159 -0
  154. data/ext/nokogiri/xml_sax_push_parser.h +9 -0
  155. data/ext/nokogiri/xml_schema.c +276 -0
  156. data/ext/nokogiri/xml_schema.h +9 -0
  157. data/ext/nokogiri/xml_syntax_error.c +64 -0
  158. data/ext/nokogiri/xml_syntax_error.h +13 -0
  159. data/ext/nokogiri/xml_text.c +52 -0
  160. data/ext/nokogiri/xml_text.h +9 -0
  161. data/ext/nokogiri/xml_xpath_context.c +374 -0
  162. data/ext/nokogiri/xml_xpath_context.h +10 -0
  163. data/ext/nokogiri/xslt_stylesheet.c +263 -0
  164. data/ext/nokogiri/xslt_stylesheet.h +14 -0
  165. data/lib/isorelax.jar +0 -0
  166. data/lib/jing.jar +0 -0
  167. data/lib/nekodtd.jar +0 -0
  168. data/lib/nekohtml.jar +0 -0
  169. data/lib/nokogiri/css/node.rb +53 -0
  170. data/lib/nokogiri/css/parser.rb +751 -0
  171. data/lib/nokogiri/css/parser.y +272 -0
  172. data/lib/nokogiri/css/parser_extras.rb +94 -0
  173. data/lib/nokogiri/css/syntax_error.rb +8 -0
  174. data/lib/nokogiri/css/tokenizer.rb +154 -0
  175. data/lib/nokogiri/css/tokenizer.rex +55 -0
  176. data/lib/nokogiri/css/xpath_visitor.rb +260 -0
  177. data/lib/nokogiri/css.rb +28 -0
  178. data/lib/nokogiri/decorators/slop.rb +43 -0
  179. data/lib/nokogiri/html/builder.rb +36 -0
  180. data/lib/nokogiri/html/document.rb +322 -0
  181. data/lib/nokogiri/html/document_fragment.rb +50 -0
  182. data/lib/nokogiri/html/element_description.rb +24 -0
  183. data/lib/nokogiri/html/element_description_defaults.rb +672 -0
  184. data/lib/nokogiri/html/entity_lookup.rb +14 -0
  185. data/lib/nokogiri/html/sax/parser.rb +63 -0
  186. data/lib/nokogiri/html/sax/parser_context.rb +17 -0
  187. data/lib/nokogiri/html/sax/push_parser.rb +37 -0
  188. data/lib/nokogiri/html.rb +38 -0
  189. data/lib/nokogiri/jruby/dependencies.rb +20 -0
  190. data/lib/nokogiri/syntax_error.rb +5 -0
  191. data/lib/nokogiri/version/constant.rb +5 -0
  192. data/lib/nokogiri/version/info.rb +182 -0
  193. data/lib/nokogiri/version.rb +3 -0
  194. data/lib/nokogiri/xml/attr.rb +15 -0
  195. data/lib/nokogiri/xml/attribute_decl.rb +19 -0
  196. data/lib/nokogiri/xml/builder.rb +447 -0
  197. data/lib/nokogiri/xml/cdata.rb +12 -0
  198. data/lib/nokogiri/xml/character_data.rb +8 -0
  199. data/lib/nokogiri/xml/document.rb +290 -0
  200. data/lib/nokogiri/xml/document_fragment.rb +159 -0
  201. data/lib/nokogiri/xml/dtd.rb +33 -0
  202. data/lib/nokogiri/xml/element_content.rb +37 -0
  203. data/lib/nokogiri/xml/element_decl.rb +14 -0
  204. data/lib/nokogiri/xml/entity_decl.rb +20 -0
  205. data/lib/nokogiri/xml/entity_reference.rb +19 -0
  206. data/lib/nokogiri/xml/namespace.rb +14 -0
  207. data/lib/nokogiri/xml/node/save_options.rb +62 -0
  208. data/lib/nokogiri/xml/node.rb +1240 -0
  209. data/lib/nokogiri/xml/node_set.rb +372 -0
  210. data/lib/nokogiri/xml/notation.rb +7 -0
  211. data/lib/nokogiri/xml/parse_options.rb +127 -0
  212. data/lib/nokogiri/xml/pp/character_data.rb +19 -0
  213. data/lib/nokogiri/xml/pp/node.rb +57 -0
  214. data/lib/nokogiri/xml/pp.rb +3 -0
  215. data/lib/nokogiri/xml/processing_instruction.rb +9 -0
  216. data/lib/nokogiri/xml/reader.rb +116 -0
  217. data/lib/nokogiri/xml/relax_ng.rb +37 -0
  218. data/lib/nokogiri/xml/sax/document.rb +172 -0
  219. data/lib/nokogiri/xml/sax/parser.rb +123 -0
  220. data/lib/nokogiri/xml/sax/parser_context.rb +17 -0
  221. data/lib/nokogiri/xml/sax/push_parser.rb +61 -0
  222. data/lib/nokogiri/xml/sax.rb +5 -0
  223. data/lib/nokogiri/xml/schema.rb +72 -0
  224. data/lib/nokogiri/xml/searchable.rb +239 -0
  225. data/lib/nokogiri/xml/syntax_error.rb +71 -0
  226. data/lib/nokogiri/xml/text.rb +10 -0
  227. data/lib/nokogiri/xml/xpath/syntax_error.rb +12 -0
  228. data/lib/nokogiri/xml/xpath.rb +11 -0
  229. data/lib/nokogiri/xml/xpath_context.rb +17 -0
  230. data/lib/nokogiri/xml.rb +76 -0
  231. data/lib/nokogiri/xslt/stylesheet.rb +26 -0
  232. data/lib/nokogiri/xslt.rb +57 -0
  233. data/lib/nokogiri.rb +144 -0
  234. data/lib/serializer.jar +0 -0
  235. data/lib/xalan.jar +0 -0
  236. data/lib/xercesImpl.jar +0 -0
  237. data/lib/xml-apis.jar +0 -0
  238. data/lib/xsd/xmlparser/nokogiri.rb +103 -0
  239. metadata +531 -0
@@ -0,0 +1,1682 @@
1
+ # Vendored Dependency Licenses
2
+
3
+ Nokogiri ships with some third party dependencies, which are listed here along with their licenses.
4
+
5
+ Note that this document is broken into multiple sections, each of which describes the dependencies of a different "platform release" of Nokogiri.
6
+
7
+ <!-- toc -->
8
+
9
+ - [Default platform release ("ruby")](#default-platform-release-ruby)
10
+ - [Native LinuxⓇ platform releases ("x86_64-linux" and "arm64-linux")](#native-linux-platform-releases-x86_64-linux-and-arm64-linux)
11
+ - [Native Darwin (macOSⓇ) platform releases ("x86_64-darwin" and "arm64-darwin")](#native-darwin-macos%E2%93%A1-platform-releases-x86_64-darwin-and-arm64-darwin)
12
+ - [Native WindowsⓇ platform releases ("x86-mingw32" and "x64-mingw32")](#native-windows%E2%93%A1-platform-releases-x86-mingw32-and-x64-mingw32)
13
+ - [JavaⓇ (JRuby) platform release ("java")](#java%E2%93%A1-jruby-platform-release-java)
14
+ - [Appendix: Dependencies' License Texts](#appendix-dependencies-license-texts)
15
+ * [libxml2](#libxml2)
16
+ * [libxslt](#libxslt)
17
+ * [zlib](#zlib)
18
+ * [libiconv](#libiconv)
19
+ * [isorelax](#isorelax)
20
+ * [jing](#jing)
21
+ * [nekodtd](#nekodtd)
22
+ * [nekohtml](#nekohtml)
23
+ * [xalan](#xalan)
24
+ * [xerces](#xerces)
25
+ * [xml-apis](#xml-apis)
26
+
27
+ <!-- tocstop -->
28
+
29
+ It's encouraged for anyone consuming this file via license-tracking software to understand which gem file you're downloading and using, so as not to misinterpret the contents of this file and the licenses of the software being distributed.
30
+
31
+ You can double-check the dependencies in your gem file by examining the output of `nokogiri -v` after installation, which will emit the complete set of libraries in use (for versions `>= 1.11.0.rc4`).
32
+
33
+ In particular, I'm sure somebody's lawyer, somewhere, is going to freak out that the LGPL appears in this file; and so I'd like to take special note that the dependency covered by LGPL, `libiconv`, is only being redistributed in the native Windows and native Darwin platform releases. It's not present in default, JavaⓇ, or native LinuxⓇ releases.
34
+
35
+
36
+ ## Default platform release ("ruby")
37
+
38
+ The default platform release distributes the following dependencies in source form:
39
+
40
+ - [libxml2](#libxml2)
41
+ - [libxslt](#libxslt)
42
+
43
+ This distribution can be identified by inspecting the included Gem::Specification, which will have the value "ruby" for its "platform" attribute.
44
+
45
+
46
+ ## Native LinuxⓇ platform releases ("x86_64-linux" and "arm64-linux")
47
+
48
+ The native LinuxⓇ platform release distributes the following dependencies in source form:
49
+
50
+ - [libxml2](#libxml2)
51
+ - [libxslt](#libxslt)
52
+ - [zlib](#zlib)
53
+
54
+ This distribution can be identified by inspecting the included Gem::Specification, which will have a value similar to "x86_64-linux" or "x86-linux" for its "platform.cpu" attribute.
55
+
56
+
57
+ ## Native Darwin (macOSⓇ) platform releases ("x86_64-darwin" and "arm64-darwin")
58
+
59
+ The native Darwin platform release distributes the following dependencies in source form:
60
+
61
+ - [libxml2](#libxml2)
62
+ - [libxslt](#libxslt)
63
+ - [zlib](#zlib)
64
+ - [libiconv](#libiconv)
65
+
66
+ This distribution can be identified by inspecting the included Gem::Specification, which will have a value similar to "x86_64-darwin" or "arm64-darwin" for its "platform.cpu" attribute. Darwin is also known more familiarly as "OSX" or "macOSⓇ" and is the operating system for many AppleⓇ computers.
67
+
68
+
69
+ ## Native WindowsⓇ platform releases ("x86-mingw32" and "x64-mingw32")
70
+
71
+ The native WindowsⓇ platform release distributes the following dependencies in source form:
72
+
73
+ - [libxml2](#libxml2)
74
+ - [libxslt](#libxslt)
75
+ - [zlib](#zlib)
76
+ - [libiconv](#libiconv)
77
+
78
+ This distribution can be identified by inspecting the included Gem::Specification, which will have a value similar to "x64-mingw32" or "x86-mingw32" for its "platform.cpu" attribute.
79
+
80
+
81
+ ## JavaⓇ (JRuby) platform release ("java")
82
+
83
+ The Java platform release distributes the following dependencies as compiled jar files:
84
+
85
+ - [isorelax](#isorelax)
86
+ - [jing](#jing)
87
+ - [nekodtd](#nekodtd)
88
+ - [nekohtml](#nekohtml)
89
+ - [xalan](#xalan)
90
+ - [xerces](#xerces)
91
+ - [xml-apis](#xml-apis)
92
+
93
+ This distribution can be identified by inspecting the included Gem::Specification, which will have the value "java" for its "platform.os" attribute.
94
+
95
+
96
+ ## Appendix: Dependencies' License Texts
97
+
98
+ This section contains a subsection for each potentially-distributed dependency, which includes the name of the license and the license text.
99
+
100
+ Please see previous sections to understand which of these potential dependencies is actually distributed in the gem file you're downloading and using.
101
+
102
+ ### libxml2
103
+
104
+ MIT
105
+
106
+ http://xmlsoft.org/
107
+
108
+ Except where otherwise noted in the source code (e.g. the files hash.c,
109
+ list.c and the trio files, which are covered by a similar licence but
110
+ with different Copyright notices) all the files are:
111
+
112
+ Copyright (C) 1998-2012 Daniel Veillard. All Rights Reserved.
113
+
114
+ Permission is hereby granted, free of charge, to any person obtaining a copy
115
+ of this software and associated documentation files (the "Software"), to deal
116
+ in the Software without restriction, including without limitation the rights
117
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
118
+ copies of the Software, and to permit persons to whom the Software is fur-
119
+ nished to do so, subject to the following conditions:
120
+
121
+ The above copyright notice and this permission notice shall be included in
122
+ all copies or substantial portions of the Software.
123
+
124
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
125
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
126
+ NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
127
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
128
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
129
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
130
+ THE SOFTWARE.
131
+
132
+
133
+ ### libxslt
134
+
135
+ MIT
136
+
137
+ http://xmlsoft.org/libxslt/
138
+
139
+ Licence for libxslt except libexslt
140
+ ----------------------------------------------------------------------
141
+ Copyright (C) 2001-2002 Daniel Veillard. All Rights Reserved.
142
+
143
+ Permission is hereby granted, free of charge, to any person obtaining a copy
144
+ of this software and associated documentation files (the "Software"), to deal
145
+ in the Software without restriction, including without limitation the rights
146
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
147
+ copies of the Software, and to permit persons to whom the Software is fur-
148
+ nished to do so, subject to the following conditions:
149
+
150
+ The above copyright notice and this permission notice shall be included in
151
+ all copies or substantial portions of the Software.
152
+
153
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
154
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
155
+ NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
156
+ DANIEL VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
157
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON-
158
+ NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
159
+
160
+ Except as contained in this notice, the name of Daniel Veillard shall not
161
+ be used in advertising or otherwise to promote the sale, use or other deal-
162
+ ings in this Software without prior written authorization from him.
163
+
164
+ ----------------------------------------------------------------------
165
+
166
+ Licence for libexslt
167
+ ----------------------------------------------------------------------
168
+ Copyright (C) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard.
169
+ All Rights Reserved.
170
+
171
+ Permission is hereby granted, free of charge, to any person obtaining a copy
172
+ of this software and associated documentation files (the "Software"), to deal
173
+ in the Software without restriction, including without limitation the rights
174
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
175
+ copies of the Software, and to permit persons to whom the Software is fur-
176
+ nished to do so, subject to the following conditions:
177
+
178
+ The above copyright notice and this permission notice shall be included in
179
+ all copies or substantial portions of the Software.
180
+
181
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
182
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
183
+ NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
184
+ AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
185
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON-
186
+ NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
187
+
188
+ Except as contained in this notice, the name of the authors shall not
189
+ be used in advertising or otherwise to promote the sale, use or other deal-
190
+ ings in this Software without prior written authorization from him.
191
+ ----------------------------------------------------------------------
192
+
193
+
194
+ ### zlib
195
+
196
+ zlib license
197
+
198
+ http://www.zlib.net/zlib_license.html
199
+
200
+ Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
201
+
202
+ This software is provided 'as-is', without any express or implied
203
+ warranty. In no event will the authors be held liable for any damages
204
+ arising from the use of this software.
205
+
206
+ Permission is granted to anyone to use this software for any purpose,
207
+ including commercial applications, and to alter it and redistribute it
208
+ freely, subject to the following restrictions:
209
+
210
+ 1. The origin of this software must not be misrepresented; you must not
211
+ claim that you wrote the original software. If you use this software
212
+ in a product, an acknowledgment in the product documentation would be
213
+ appreciated but is not required.
214
+ 2. Altered source versions must be plainly marked as such, and must not be
215
+ misrepresented as being the original software.
216
+ 3. This notice may not be removed or altered from any source distribution.
217
+
218
+ Jean-loup Gailly Mark Adler
219
+ jloup@gzip.org madler@alumni.caltech.edu
220
+
221
+
222
+ ### libiconv
223
+
224
+ LGPL
225
+
226
+ https://www.gnu.org/software/libiconv/
227
+
228
+ GNU LIBRARY GENERAL PUBLIC LICENSE
229
+ Version 2, June 1991
230
+
231
+ Copyright (C) 1991 Free Software Foundation, Inc.
232
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
233
+ Everyone is permitted to copy and distribute verbatim copies
234
+ of this license document, but changing it is not allowed.
235
+
236
+ [This is the first released version of the library GPL. It is
237
+ numbered 2 because it goes with version 2 of the ordinary GPL.]
238
+
239
+ Preamble
240
+
241
+ The licenses for most software are designed to take away your
242
+ freedom to share and change it. By contrast, the GNU General Public
243
+ Licenses are intended to guarantee your freedom to share and change
244
+ free software--to make sure the software is free for all its users.
245
+
246
+ This license, the Library General Public License, applies to some
247
+ specially designated Free Software Foundation software, and to any
248
+ other libraries whose authors decide to use it. You can use it for
249
+ your libraries, too.
250
+
251
+ When we speak of free software, we are referring to freedom, not
252
+ price. Our General Public Licenses are designed to make sure that you
253
+ have the freedom to distribute copies of free software (and charge for
254
+ this service if you wish), that you receive source code or can get it
255
+ if you want it, that you can change the software or use pieces of it
256
+ in new free programs; and that you know you can do these things.
257
+
258
+ To protect your rights, we need to make restrictions that forbid
259
+ anyone to deny you these rights or to ask you to surrender the rights.
260
+ These restrictions translate to certain responsibilities for you if
261
+ you distribute copies of the library, or if you modify it.
262
+
263
+ For example, if you distribute copies of the library, whether gratis
264
+ or for a fee, you must give the recipients all the rights that we gave
265
+ you. You must make sure that they, too, receive or can get the source
266
+ code. If you link a program with the library, you must provide
267
+ complete object files to the recipients so that they can relink them
268
+ with the library, after making changes to the library and recompiling
269
+ it. And you must show them these terms so they know their rights.
270
+
271
+ Our method of protecting your rights has two steps: (1) copyright
272
+ the library, and (2) offer you this license which gives you legal
273
+ permission to copy, distribute and/or modify the library.
274
+
275
+ Also, for each distributor's protection, we want to make certain
276
+ that everyone understands that there is no warranty for this free
277
+ library. If the library is modified by someone else and passed on, we
278
+ want its recipients to know that what they have is not the original
279
+ version, so that any problems introduced by others will not reflect on
280
+ the original authors' reputations.
281
+
282
+ Finally, any free program is threatened constantly by software
283
+ patents. We wish to avoid the danger that companies distributing free
284
+ software will individually obtain patent licenses, thus in effect
285
+ transforming the program into proprietary software. To prevent this,
286
+ we have made it clear that any patent must be licensed for everyone's
287
+ free use or not licensed at all.
288
+
289
+ Most GNU software, including some libraries, is covered by the ordinary
290
+ GNU General Public License, which was designed for utility programs. This
291
+ license, the GNU Library General Public License, applies to certain
292
+ designated libraries. This license is quite different from the ordinary
293
+ one; be sure to read it in full, and don't assume that anything in it is
294
+ the same as in the ordinary license.
295
+
296
+ The reason we have a separate public license for some libraries is that
297
+ they blur the distinction we usually make between modifying or adding to a
298
+ program and simply using it. Linking a program with a library, without
299
+ changing the library, is in some sense simply using the library, and is
300
+ analogous to running a utility program or application program. However, in
301
+ a textual and legal sense, the linked executable is a combined work, a
302
+ derivative of the original library, and the ordinary General Public License
303
+ treats it as such.
304
+
305
+ Because of this blurred distinction, using the ordinary General
306
+ Public License for libraries did not effectively promote software
307
+ sharing, because most developers did not use the libraries. We
308
+ concluded that weaker conditions might promote sharing better.
309
+
310
+ However, unrestricted linking of non-free programs would deprive the
311
+ users of those programs of all benefit from the free status of the
312
+ libraries themselves. This Library General Public License is intended to
313
+ permit developers of non-free programs to use free libraries, while
314
+ preserving your freedom as a user of such programs to change the free
315
+ libraries that are incorporated in them. (We have not seen how to achieve
316
+ this as regards changes in header files, but we have achieved it as regards
317
+ changes in the actual functions of the Library.) The hope is that this
318
+ will lead to faster development of free libraries.
319
+
320
+ The precise terms and conditions for copying, distribution and
321
+ modification follow. Pay close attention to the difference between a
322
+ "work based on the library" and a "work that uses the library". The
323
+ former contains code derived from the library, while the latter only
324
+ works together with the library.
325
+
326
+ Note that it is possible for a library to be covered by the ordinary
327
+ General Public License rather than by this special one.
328
+
329
+ GNU LIBRARY GENERAL PUBLIC LICENSE
330
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
331
+
332
+ 0. This License Agreement applies to any software library which
333
+ contains a notice placed by the copyright holder or other authorized
334
+ party saying it may be distributed under the terms of this Library
335
+ General Public License (also called "this License"). Each licensee is
336
+ addressed as "you".
337
+
338
+ A "library" means a collection of software functions and/or data
339
+ prepared so as to be conveniently linked with application programs
340
+ (which use some of those functions and data) to form executables.
341
+
342
+ The "Library", below, refers to any such software library or work
343
+ which has been distributed under these terms. A "work based on the
344
+ Library" means either the Library or any derivative work under
345
+ copyright law: that is to say, a work containing the Library or a
346
+ portion of it, either verbatim or with modifications and/or translated
347
+ straightforwardly into another language. (Hereinafter, translation is
348
+ included without limitation in the term "modification".)
349
+
350
+ "Source code" for a work means the preferred form of the work for
351
+ making modifications to it. For a library, complete source code means
352
+ all the source code for all modules it contains, plus any associated
353
+ interface definition files, plus the scripts used to control compilation
354
+ and installation of the library.
355
+
356
+ Activities other than copying, distribution and modification are not
357
+ covered by this License; they are outside its scope. The act of
358
+ running a program using the Library is not restricted, and output from
359
+ such a program is covered only if its contents constitute a work based
360
+ on the Library (independent of the use of the Library in a tool for
361
+ writing it). Whether that is true depends on what the Library does
362
+ and what the program that uses the Library does.
363
+
364
+ 1. You may copy and distribute verbatim copies of the Library's
365
+ complete source code as you receive it, in any medium, provided that
366
+ you conspicuously and appropriately publish on each copy an
367
+ appropriate copyright notice and disclaimer of warranty; keep intact
368
+ all the notices that refer to this License and to the absence of any
369
+ warranty; and distribute a copy of this License along with the
370
+ Library.
371
+
372
+ You may charge a fee for the physical act of transferring a copy,
373
+ and you may at your option offer warranty protection in exchange for a
374
+ fee.
375
+
376
+ 2. You may modify your copy or copies of the Library or any portion
377
+ of it, thus forming a work based on the Library, and copy and
378
+ distribute such modifications or work under the terms of Section 1
379
+ above, provided that you also meet all of these conditions:
380
+
381
+ a) The modified work must itself be a software library.
382
+
383
+ b) You must cause the files modified to carry prominent notices
384
+ stating that you changed the files and the date of any change.
385
+
386
+ c) You must cause the whole of the work to be licensed at no
387
+ charge to all third parties under the terms of this License.
388
+
389
+ d) If a facility in the modified Library refers to a function or a
390
+ table of data to be supplied by an application program that uses
391
+ the facility, other than as an argument passed when the facility
392
+ is invoked, then you must make a good faith effort to ensure that,
393
+ in the event an application does not supply such function or
394
+ table, the facility still operates, and performs whatever part of
395
+ its purpose remains meaningful.
396
+
397
+ (For example, a function in a library to compute square roots has
398
+ a purpose that is entirely well-defined independent of the
399
+ application. Therefore, Subsection 2d requires that any
400
+ application-supplied function or table used by this function must
401
+ be optional: if the application does not supply it, the square
402
+ root function must still compute square roots.)
403
+
404
+ These requirements apply to the modified work as a whole. If
405
+ identifiable sections of that work are not derived from the Library,
406
+ and can be reasonably considered independent and separate works in
407
+ themselves, then this License, and its terms, do not apply to those
408
+ sections when you distribute them as separate works. But when you
409
+ distribute the same sections as part of a whole which is a work based
410
+ on the Library, the distribution of the whole must be on the terms of
411
+ this License, whose permissions for other licensees extend to the
412
+ entire whole, and thus to each and every part regardless of who wrote
413
+ it.
414
+
415
+ Thus, it is not the intent of this section to claim rights or contest
416
+ your rights to work written entirely by you; rather, the intent is to
417
+ exercise the right to control the distribution of derivative or
418
+ collective works based on the Library.
419
+
420
+ In addition, mere aggregation of another work not based on the Library
421
+ with the Library (or with a work based on the Library) on a volume of
422
+ a storage or distribution medium does not bring the other work under
423
+ the scope of this License.
424
+
425
+ 3. You may opt to apply the terms of the ordinary GNU General Public
426
+ License instead of this License to a given copy of the Library. To do
427
+ this, you must alter all the notices that refer to this License, so
428
+ that they refer to the ordinary GNU General Public License, version 2,
429
+ instead of to this License. (If a newer version than version 2 of the
430
+ ordinary GNU General Public License has appeared, then you can specify
431
+ that version instead if you wish.) Do not make any other change in
432
+ these notices.
433
+
434
+ Once this change is made in a given copy, it is irreversible for
435
+ that copy, so the ordinary GNU General Public License applies to all
436
+ subsequent copies and derivative works made from that copy.
437
+
438
+ This option is useful when you wish to copy part of the code of
439
+ the Library into a program that is not a library.
440
+
441
+ 4. You may copy and distribute the Library (or a portion or
442
+ derivative of it, under Section 2) in object code or executable form
443
+ under the terms of Sections 1 and 2 above provided that you accompany
444
+ it with the complete corresponding machine-readable source code, which
445
+ must be distributed under the terms of Sections 1 and 2 above on a
446
+ medium customarily used for software interchange.
447
+
448
+ If distribution of object code is made by offering access to copy
449
+ from a designated place, then offering equivalent access to copy the
450
+ source code from the same place satisfies the requirement to
451
+ distribute the source code, even though third parties are not
452
+ compelled to copy the source along with the object code.
453
+
454
+ 5. A program that contains no derivative of any portion of the
455
+ Library, but is designed to work with the Library by being compiled or
456
+ linked with it, is called a "work that uses the Library". Such a
457
+ work, in isolation, is not a derivative work of the Library, and
458
+ therefore falls outside the scope of this License.
459
+
460
+ However, linking a "work that uses the Library" with the Library
461
+ creates an executable that is a derivative of the Library (because it
462
+ contains portions of the Library), rather than a "work that uses the
463
+ library". The executable is therefore covered by this License.
464
+ Section 6 states terms for distribution of such executables.
465
+
466
+ When a "work that uses the Library" uses material from a header file
467
+ that is part of the Library, the object code for the work may be a
468
+ derivative work of the Library even though the source code is not.
469
+ Whether this is true is especially significant if the work can be
470
+ linked without the Library, or if the work is itself a library. The
471
+ threshold for this to be true is not precisely defined by law.
472
+
473
+ If such an object file uses only numerical parameters, data
474
+ structure layouts and accessors, and small macros and small inline
475
+ functions (ten lines or less in length), then the use of the object
476
+ file is unrestricted, regardless of whether it is legally a derivative
477
+ work. (Executables containing this object code plus portions of the
478
+ Library will still fall under Section 6.)
479
+
480
+ Otherwise, if the work is a derivative of the Library, you may
481
+ distribute the object code for the work under the terms of Section 6.
482
+ Any executables containing that work also fall under Section 6,
483
+ whether or not they are linked directly with the Library itself.
484
+
485
+ 6. As an exception to the Sections above, you may also compile or
486
+ link a "work that uses the Library" with the Library to produce a
487
+ work containing portions of the Library, and distribute that work
488
+ under terms of your choice, provided that the terms permit
489
+ modification of the work for the customer's own use and reverse
490
+ engineering for debugging such modifications.
491
+
492
+ You must give prominent notice with each copy of the work that the
493
+ Library is used in it and that the Library and its use are covered by
494
+ this License. You must supply a copy of this License. If the work
495
+ during execution displays copyright notices, you must include the
496
+ copyright notice for the Library among them, as well as a reference
497
+ directing the user to the copy of this License. Also, you must do one
498
+ of these things:
499
+
500
+ a) Accompany the work with the complete corresponding
501
+ machine-readable source code for the Library including whatever
502
+ changes were used in the work (which must be distributed under
503
+ Sections 1 and 2 above); and, if the work is an executable linked
504
+ with the Library, with the complete machine-readable "work that
505
+ uses the Library", as object code and/or source code, so that the
506
+ user can modify the Library and then relink to produce a modified
507
+ executable containing the modified Library. (It is understood
508
+ that the user who changes the contents of definitions files in the
509
+ Library will not necessarily be able to recompile the application
510
+ to use the modified definitions.)
511
+
512
+ b) Accompany the work with a written offer, valid for at
513
+ least three years, to give the same user the materials
514
+ specified in Subsection 6a, above, for a charge no more
515
+ than the cost of performing this distribution.
516
+
517
+ c) If distribution of the work is made by offering access to copy
518
+ from a designated place, offer equivalent access to copy the above
519
+ specified materials from the same place.
520
+
521
+ d) Verify that the user has already received a copy of these
522
+ materials or that you have already sent this user a copy.
523
+
524
+ For an executable, the required form of the "work that uses the
525
+ Library" must include any data and utility programs needed for
526
+ reproducing the executable from it. However, as a special exception,
527
+ the source code distributed need not include anything that is normally
528
+ distributed (in either source or binary form) with the major
529
+ components (compiler, kernel, and so on) of the operating system on
530
+ which the executable runs, unless that component itself accompanies
531
+ the executable.
532
+
533
+ It may happen that this requirement contradicts the license
534
+ restrictions of other proprietary libraries that do not normally
535
+ accompany the operating system. Such a contradiction means you cannot
536
+ use both them and the Library together in an executable that you
537
+ distribute.
538
+
539
+ 7. You may place library facilities that are a work based on the
540
+ Library side-by-side in a single library together with other library
541
+ facilities not covered by this License, and distribute such a combined
542
+ library, provided that the separate distribution of the work based on
543
+ the Library and of the other library facilities is otherwise
544
+ permitted, and provided that you do these two things:
545
+
546
+ a) Accompany the combined library with a copy of the same work
547
+ based on the Library, uncombined with any other library
548
+ facilities. This must be distributed under the terms of the
549
+ Sections above.
550
+
551
+ b) Give prominent notice with the combined library of the fact
552
+ that part of it is a work based on the Library, and explaining
553
+ where to find the accompanying uncombined form of the same work.
554
+
555
+ 8. You may not copy, modify, sublicense, link with, or distribute
556
+ the Library except as expressly provided under this License. Any
557
+ attempt otherwise to copy, modify, sublicense, link with, or
558
+ distribute the Library is void, and will automatically terminate your
559
+ rights under this License. However, parties who have received copies,
560
+ or rights, from you under this License will not have their licenses
561
+ terminated so long as such parties remain in full compliance.
562
+
563
+ 9. You are not required to accept this License, since you have not
564
+ signed it. However, nothing else grants you permission to modify or
565
+ distribute the Library or its derivative works. These actions are
566
+ prohibited by law if you do not accept this License. Therefore, by
567
+ modifying or distributing the Library (or any work based on the
568
+ Library), you indicate your acceptance of this License to do so, and
569
+ all its terms and conditions for copying, distributing or modifying
570
+ the Library or works based on it.
571
+
572
+ 10. Each time you redistribute the Library (or any work based on the
573
+ Library), the recipient automatically receives a license from the
574
+ original licensor to copy, distribute, link with or modify the Library
575
+ subject to these terms and conditions. You may not impose any further
576
+ restrictions on the recipients' exercise of the rights granted herein.
577
+ You are not responsible for enforcing compliance by third parties to
578
+ this License.
579
+
580
+ 11. If, as a consequence of a court judgment or allegation of patent
581
+ infringement or for any other reason (not limited to patent issues),
582
+ conditions are imposed on you (whether by court order, agreement or
583
+ otherwise) that contradict the conditions of this License, they do not
584
+ excuse you from the conditions of this License. If you cannot
585
+ distribute so as to satisfy simultaneously your obligations under this
586
+ License and any other pertinent obligations, then as a consequence you
587
+ may not distribute the Library at all. For example, if a patent
588
+ license would not permit royalty-free redistribution of the Library by
589
+ all those who receive copies directly or indirectly through you, then
590
+ the only way you could satisfy both it and this License would be to
591
+ refrain entirely from distribution of the Library.
592
+
593
+ If any portion of this section is held invalid or unenforceable under any
594
+ particular circumstance, the balance of the section is intended to apply,
595
+ and the section as a whole is intended to apply in other circumstances.
596
+
597
+ It is not the purpose of this section to induce you to infringe any
598
+ patents or other property right claims or to contest validity of any
599
+ such claims; this section has the sole purpose of protecting the
600
+ integrity of the free software distribution system which is
601
+ implemented by public license practices. Many people have made
602
+ generous contributions to the wide range of software distributed
603
+ through that system in reliance on consistent application of that
604
+ system; it is up to the author/donor to decide if he or she is willing
605
+ to distribute software through any other system and a licensee cannot
606
+ impose that choice.
607
+
608
+ This section is intended to make thoroughly clear what is believed to
609
+ be a consequence of the rest of this License.
610
+
611
+ 12. If the distribution and/or use of the Library is restricted in
612
+ certain countries either by patents or by copyrighted interfaces, the
613
+ original copyright holder who places the Library under this License may add
614
+ an explicit geographical distribution limitation excluding those countries,
615
+ so that distribution is permitted only in or among countries not thus
616
+ excluded. In such case, this License incorporates the limitation as if
617
+ written in the body of this License.
618
+
619
+ 13. The Free Software Foundation may publish revised and/or new
620
+ versions of the Library General Public License from time to time.
621
+ Such new versions will be similar in spirit to the present version,
622
+ but may differ in detail to address new problems or concerns.
623
+
624
+ Each version is given a distinguishing version number. If the Library
625
+ specifies a version number of this License which applies to it and
626
+ "any later version", you have the option of following the terms and
627
+ conditions either of that version or of any later version published by
628
+ the Free Software Foundation. If the Library does not specify a
629
+ license version number, you may choose any version ever published by
630
+ the Free Software Foundation.
631
+
632
+ 14. If you wish to incorporate parts of the Library into other free
633
+ programs whose distribution conditions are incompatible with these,
634
+ write to the author to ask for permission. For software which is
635
+ copyrighted by the Free Software Foundation, write to the Free
636
+ Software Foundation; we sometimes make exceptions for this. Our
637
+ decision will be guided by the two goals of preserving the free status
638
+ of all derivatives of our free software and of promoting the sharing
639
+ and reuse of software generally.
640
+
641
+ NO WARRANTY
642
+
643
+ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
644
+ WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
645
+ EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
646
+ OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
647
+ KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
648
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
649
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
650
+ LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
651
+ THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
652
+
653
+ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
654
+ WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
655
+ AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
656
+ FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
657
+ CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
658
+ LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
659
+ RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
660
+ FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
661
+ SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
662
+ DAMAGES.
663
+
664
+ END OF TERMS AND CONDITIONS
665
+
666
+ Appendix: How to Apply These Terms to Your New Libraries
667
+
668
+ If you develop a new library, and you want it to be of the greatest
669
+ possible use to the public, we recommend making it free software that
670
+ everyone can redistribute and change. You can do so by permitting
671
+ redistribution under these terms (or, alternatively, under the terms of the
672
+ ordinary General Public License).
673
+
674
+ To apply these terms, attach the following notices to the library. It is
675
+ safest to attach them to the start of each source file to most effectively
676
+ convey the exclusion of warranty; and each file should have at least the
677
+ "copyright" line and a pointer to where the full notice is found.
678
+
679
+ <one line to give the library's name and a brief idea of what it does.>
680
+ Copyright (C) <year> <name of author>
681
+
682
+ This library is free software; you can redistribute it and/or
683
+ modify it under the terms of the GNU Library General Public
684
+ License as published by the Free Software Foundation; either
685
+ version 2 of the License, or (at your option) any later version.
686
+
687
+ This library is distributed in the hope that it will be useful,
688
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
689
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
690
+ Library General Public License for more details.
691
+
692
+ You should have received a copy of the GNU Library General Public
693
+ License along with this library; if not, write to the Free
694
+ Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
695
+ MA 02110-1301, USA
696
+
697
+ Also add information on how to contact you by electronic and paper mail.
698
+
699
+ You should also get your employer (if you work as a programmer) or your
700
+ school, if any, to sign a "copyright disclaimer" for the library, if
701
+ necessary. Here is a sample; alter the names:
702
+
703
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
704
+ library `Frob' (a library for tweaking knobs) written by James Random Hacker.
705
+
706
+ <signature of Ty Coon>, 1 April 1990
707
+ Ty Coon, President of Vice
708
+
709
+ That's all there is to it!
710
+
711
+
712
+ ### isorelax
713
+
714
+ MIT
715
+
716
+ http://iso-relax.sourceforge.net/
717
+
718
+ Copyright (c) 2001-2002, SourceForge ISO-RELAX Project (ASAMI
719
+ Tomoharu, Daisuke Okajima, Kohsuke Kawaguchi, and MURATA Makoto)
720
+
721
+ Permission is hereby granted, free of charge, to any person obtaining
722
+ a copy of this software and associated documentation files (the
723
+ "Software"), to deal in the Software without restriction, including
724
+ without limitation the rights to use, copy, modify, merge, publish,
725
+ distribute, sublicense, and/or sell copies of the Software, and to
726
+ permit persons to whom the Software is furnished to do so, subject to
727
+ the following conditions:
728
+
729
+ The above copyright notice and this permission notice shall be
730
+ included in all copies or substantial portions of the Software.
731
+
732
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
733
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
734
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
735
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
736
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
737
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
738
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
739
+
740
+
741
+ ### jing
742
+
743
+ BSD-3-Clause
744
+
745
+ http://www.thaiopensource.com/relaxng/jing.html
746
+
747
+ Copyright (c) 2001-2003 Thai Open Source Software Center Ltd
748
+ All rights reserved.
749
+
750
+ Redistribution and use in source and binary forms, with or without
751
+ modification, are permitted provided that the following conditions
752
+ are met:
753
+
754
+ * Redistributions of source code must retain the above copyright
755
+ notice, this list of conditions and the following disclaimer.
756
+
757
+ * Redistributions in binary form must reproduce the above
758
+ copyright notice, this list of conditions and the following
759
+ disclaimer in the documentation and/or other materials provided
760
+ with the distribution.
761
+
762
+ * Neither the name of the Thai Open Source Software Center Ltd nor
763
+ the names of its contributors may be used to endorse or promote
764
+ products derived from this software without specific prior
765
+ written permission.
766
+
767
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
768
+ CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
769
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
770
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
771
+ DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
772
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
773
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
774
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
775
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
776
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
777
+ TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
778
+ THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
779
+ SUCH DAMAGE.
780
+
781
+
782
+ ### nekodtd
783
+
784
+ Apache 1.0-derived
785
+
786
+ https://people.apache.org/~andyc/neko/doc/dtd/
787
+
788
+ The CyberNeko Software License, Version 1.0
789
+
790
+ (C) Copyright 2002-2005, Andy Clark. All rights reserved.
791
+
792
+ Redistribution and use in source and binary forms, with or without
793
+ modification, are permitted provided that the following conditions
794
+ are met:
795
+
796
+ 1. Redistributions of source code must retain the above copyright
797
+ notice, this list of conditions and the following disclaimer.
798
+
799
+ 2. Redistributions in binary form must reproduce the above copyright
800
+ notice, this list of conditions and the following disclaimer in
801
+ the documentation and/or other materials provided with the
802
+ distribution.
803
+
804
+ 3. The end-user documentation included with the redistribution,
805
+ if any, must include the following acknowledgment:
806
+ "This product includes software developed by Andy Clark."
807
+ Alternately, this acknowledgment may appear in the software itself,
808
+ if and wherever such third-party acknowledgments normally appear.
809
+
810
+ 4. The names "CyberNeko" and "NekoHTML" must not be used to endorse
811
+ or promote products derived from this software without prior
812
+ written permission. For written permission, please contact
813
+ andyc@cyberneko.net.
814
+
815
+ 5. Products derived from this software may not be called "CyberNeko",
816
+ nor may "CyberNeko" appear in their name, without prior written
817
+ permission of the author.
818
+
819
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
820
+ WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
821
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
822
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR OTHER CONTRIBUTORS
823
+ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
824
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
825
+ OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
826
+ BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
827
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
828
+ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
829
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
830
+
831
+ ====================================================================
832
+
833
+ This license is based on the Apache Software License, version 1.1.
834
+
835
+ ### nekohtml
836
+
837
+ Apache 2.0
838
+
839
+ http://nekohtml.sourceforge.net/
840
+
841
+
842
+ Apache License
843
+ Version 2.0, January 2004
844
+ http://www.apache.org/licenses/
845
+
846
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
847
+
848
+ 1. Definitions.
849
+
850
+ "License" shall mean the terms and conditions for use, reproduction,
851
+ and distribution as defined by Sections 1 through 9 of this document.
852
+
853
+ "Licensor" shall mean the copyright owner or entity authorized by
854
+ the copyright owner that is granting the License.
855
+
856
+ "Legal Entity" shall mean the union of the acting entity and all
857
+ other entities that control, are controlled by, or are under common
858
+ control with that entity. For the purposes of this definition,
859
+ "control" means (i) the power, direct or indirect, to cause the
860
+ direction or management of such entity, whether by contract or
861
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
862
+ outstanding shares, or (iii) beneficial ownership of such entity.
863
+
864
+ "You" (or "Your") shall mean an individual or Legal Entity
865
+ exercising permissions granted by this License.
866
+
867
+ "Source" form shall mean the preferred form for making modifications,
868
+ including but not limited to software source code, documentation
869
+ source, and configuration files.
870
+
871
+ "Object" form shall mean any form resulting from mechanical
872
+ transformation or translation of a Source form, including but
873
+ not limited to compiled object code, generated documentation,
874
+ and conversions to other media types.
875
+
876
+ "Work" shall mean the work of authorship, whether in Source or
877
+ Object form, made available under the License, as indicated by a
878
+ copyright notice that is included in or attached to the work
879
+ (an example is provided in the Appendix below).
880
+
881
+ "Derivative Works" shall mean any work, whether in Source or Object
882
+ form, that is based on (or derived from) the Work and for which the
883
+ editorial revisions, annotations, elaborations, or other modifications
884
+ represent, as a whole, an original work of authorship. For the purposes
885
+ of this License, Derivative Works shall not include works that remain
886
+ separable from, or merely link (or bind by name) to the interfaces of,
887
+ the Work and Derivative Works thereof.
888
+
889
+ "Contribution" shall mean any work of authorship, including
890
+ the original version of the Work and any modifications or additions
891
+ to that Work or Derivative Works thereof, that is intentionally
892
+ submitted to Licensor for inclusion in the Work by the copyright owner
893
+ or by an individual or Legal Entity authorized to submit on behalf of
894
+ the copyright owner. For the purposes of this definition, "submitted"
895
+ means any form of electronic, verbal, or written communication sent
896
+ to the Licensor or its representatives, including but not limited to
897
+ communication on electronic mailing lists, source code control systems,
898
+ and issue tracking systems that are managed by, or on behalf of, the
899
+ Licensor for the purpose of discussing and improving the Work, but
900
+ excluding communication that is conspicuously marked or otherwise
901
+ designated in writing by the copyright owner as "Not a Contribution."
902
+
903
+ "Contributor" shall mean Licensor and any individual or Legal Entity
904
+ on behalf of whom a Contribution has been received by Licensor and
905
+ subsequently incorporated within the Work.
906
+
907
+ 2. Grant of Copyright License. Subject to the terms and conditions of
908
+ this License, each Contributor hereby grants to You a perpetual,
909
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
910
+ copyright license to reproduce, prepare Derivative Works of,
911
+ publicly display, publicly perform, sublicense, and distribute the
912
+ Work and such Derivative Works in Source or Object form.
913
+
914
+ 3. Grant of Patent License. Subject to the terms and conditions of
915
+ this License, each Contributor hereby grants to You a perpetual,
916
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
917
+ (except as stated in this section) patent license to make, have made,
918
+ use, offer to sell, sell, import, and otherwise transfer the Work,
919
+ where such license applies only to those patent claims licensable
920
+ by such Contributor that are necessarily infringed by their
921
+ Contribution(s) alone or by combination of their Contribution(s)
922
+ with the Work to which such Contribution(s) was submitted. If You
923
+ institute patent litigation against any entity (including a
924
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
925
+ or a Contribution incorporated within the Work constitutes direct
926
+ or contributory patent infringement, then any patent licenses
927
+ granted to You under this License for that Work shall terminate
928
+ as of the date such litigation is filed.
929
+
930
+ 4. Redistribution. You may reproduce and distribute copies of the
931
+ Work or Derivative Works thereof in any medium, with or without
932
+ modifications, and in Source or Object form, provided that You
933
+ meet the following conditions:
934
+
935
+ (a) You must give any other recipients of the Work or
936
+ Derivative Works a copy of this License; and
937
+
938
+ (b) You must cause any modified files to carry prominent notices
939
+ stating that You changed the files; and
940
+
941
+ (c) You must retain, in the Source form of any Derivative Works
942
+ that You distribute, all copyright, patent, trademark, and
943
+ attribution notices from the Source form of the Work,
944
+ excluding those notices that do not pertain to any part of
945
+ the Derivative Works; and
946
+
947
+ (d) If the Work includes a "NOTICE" text file as part of its
948
+ distribution, then any Derivative Works that You distribute must
949
+ include a readable copy of the attribution notices contained
950
+ within such NOTICE file, excluding those notices that do not
951
+ pertain to any part of the Derivative Works, in at least one
952
+ of the following places: within a NOTICE text file distributed
953
+ as part of the Derivative Works; within the Source form or
954
+ documentation, if provided along with the Derivative Works; or,
955
+ within a display generated by the Derivative Works, if and
956
+ wherever such third-party notices normally appear. The contents
957
+ of the NOTICE file are for informational purposes only and
958
+ do not modify the License. You may add Your own attribution
959
+ notices within Derivative Works that You distribute, alongside
960
+ or as an addendum to the NOTICE text from the Work, provided
961
+ that such additional attribution notices cannot be construed
962
+ as modifying the License.
963
+
964
+ You may add Your own copyright statement to Your modifications and
965
+ may provide additional or different license terms and conditions
966
+ for use, reproduction, or distribution of Your modifications, or
967
+ for any such Derivative Works as a whole, provided Your use,
968
+ reproduction, and distribution of the Work otherwise complies with
969
+ the conditions stated in this License.
970
+
971
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
972
+ any Contribution intentionally submitted for inclusion in the Work
973
+ by You to the Licensor shall be under the terms and conditions of
974
+ this License, without any additional terms or conditions.
975
+ Notwithstanding the above, nothing herein shall supersede or modify
976
+ the terms of any separate license agreement you may have executed
977
+ with Licensor regarding such Contributions.
978
+
979
+ 6. Trademarks. This License does not grant permission to use the trade
980
+ names, trademarks, service marks, or product names of the Licensor,
981
+ except as required for reasonable and customary use in describing the
982
+ origin of the Work and reproducing the content of the NOTICE file.
983
+
984
+ 7. Disclaimer of Warranty. Unless required by applicable law or
985
+ agreed to in writing, Licensor provides the Work (and each
986
+ Contributor provides its Contributions) on an "AS IS" BASIS,
987
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
988
+ implied, including, without limitation, any warranties or conditions
989
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
990
+ PARTICULAR PURPOSE. You are solely responsible for determining the
991
+ appropriateness of using or redistributing the Work and assume any
992
+ risks associated with Your exercise of permissions under this License.
993
+
994
+ 8. Limitation of Liability. In no event and under no legal theory,
995
+ whether in tort (including negligence), contract, or otherwise,
996
+ unless required by applicable law (such as deliberate and grossly
997
+ negligent acts) or agreed to in writing, shall any Contributor be
998
+ liable to You for damages, including any direct, indirect, special,
999
+ incidental, or consequential damages of any character arising as a
1000
+ result of this License or out of the use or inability to use the
1001
+ Work (including but not limited to damages for loss of goodwill,
1002
+ work stoppage, computer failure or malfunction, or any and all
1003
+ other commercial damages or losses), even if such Contributor
1004
+ has been advised of the possibility of such damages.
1005
+
1006
+ 9. Accepting Warranty or Additional Liability. While redistributing
1007
+ the Work or Derivative Works thereof, You may choose to offer,
1008
+ and charge a fee for, acceptance of support, warranty, indemnity,
1009
+ or other liability obligations and/or rights consistent with this
1010
+ License. However, in accepting such obligations, You may act only
1011
+ on Your own behalf and on Your sole responsibility, not on behalf
1012
+ of any other Contributor, and only if You agree to indemnify,
1013
+ defend, and hold each Contributor harmless for any liability
1014
+ incurred by, or claims asserted against, such Contributor by reason
1015
+ of your accepting any such warranty or additional liability.
1016
+
1017
+ END OF TERMS AND CONDITIONS
1018
+
1019
+ APPENDIX: How to apply the Apache License to your work.
1020
+
1021
+ To apply the Apache License to your work, attach the following
1022
+ boilerplate notice, with the fields enclosed by brackets "[]"
1023
+ replaced with your own identifying information. (Don't include
1024
+ the brackets!) The text should be enclosed in the appropriate
1025
+ comment syntax for the file format. We also recommend that a
1026
+ file or class name and description of purpose be included on the
1027
+ same "printed page" as the copyright notice for easier
1028
+ identification within third-party archives.
1029
+
1030
+ Copyright [yyyy] [name of copyright owner]
1031
+
1032
+ Licensed under the Apache License, Version 2.0 (the "License");
1033
+ you may not use this file except in compliance with the License.
1034
+ You may obtain a copy of the License at
1035
+
1036
+ http://www.apache.org/licenses/LICENSE-2.0
1037
+
1038
+ Unless required by applicable law or agreed to in writing, software
1039
+ distributed under the License is distributed on an "AS IS" BASIS,
1040
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1041
+ See the License for the specific language governing permissions and
1042
+ limitations under the License.
1043
+
1044
+ ### xalan
1045
+
1046
+ Apache 2.0
1047
+
1048
+ https://xml.apache.org/xalan-j/
1049
+
1050
+ covers xalan.jar and serializer.jar
1051
+
1052
+ Apache License
1053
+ Version 2.0, January 2004
1054
+ http://www.apache.org/licenses/
1055
+
1056
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1057
+
1058
+ 1. Definitions.
1059
+
1060
+ "License" shall mean the terms and conditions for use, reproduction,
1061
+ and distribution as defined by Sections 1 through 9 of this document.
1062
+
1063
+ "Licensor" shall mean the copyright owner or entity authorized by
1064
+ the copyright owner that is granting the License.
1065
+
1066
+ "Legal Entity" shall mean the union of the acting entity and all
1067
+ other entities that control, are controlled by, or are under common
1068
+ control with that entity. For the purposes of this definition,
1069
+ "control" means (i) the power, direct or indirect, to cause the
1070
+ direction or management of such entity, whether by contract or
1071
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1072
+ outstanding shares, or (iii) beneficial ownership of such entity.
1073
+
1074
+ "You" (or "Your") shall mean an individual or Legal Entity
1075
+ exercising permissions granted by this License.
1076
+
1077
+ "Source" form shall mean the preferred form for making modifications,
1078
+ including but not limited to software source code, documentation
1079
+ source, and configuration files.
1080
+
1081
+ "Object" form shall mean any form resulting from mechanical
1082
+ transformation or translation of a Source form, including but
1083
+ not limited to compiled object code, generated documentation,
1084
+ and conversions to other media types.
1085
+
1086
+ "Work" shall mean the work of authorship, whether in Source or
1087
+ Object form, made available under the License, as indicated by a
1088
+ copyright notice that is included in or attached to the work
1089
+ (an example is provided in the Appendix below).
1090
+
1091
+ "Derivative Works" shall mean any work, whether in Source or Object
1092
+ form, that is based on (or derived from) the Work and for which the
1093
+ editorial revisions, annotations, elaborations, or other modifications
1094
+ represent, as a whole, an original work of authorship. For the purposes
1095
+ of this License, Derivative Works shall not include works that remain
1096
+ separable from, or merely link (or bind by name) to the interfaces of,
1097
+ the Work and Derivative Works thereof.
1098
+
1099
+ "Contribution" shall mean any work of authorship, including
1100
+ the original version of the Work and any modifications or additions
1101
+ to that Work or Derivative Works thereof, that is intentionally
1102
+ submitted to Licensor for inclusion in the Work by the copyright owner
1103
+ or by an individual or Legal Entity authorized to submit on behalf of
1104
+ the copyright owner. For the purposes of this definition, "submitted"
1105
+ means any form of electronic, verbal, or written communication sent
1106
+ to the Licensor or its representatives, including but not limited to
1107
+ communication on electronic mailing lists, source code control systems,
1108
+ and issue tracking systems that are managed by, or on behalf of, the
1109
+ Licensor for the purpose of discussing and improving the Work, but
1110
+ excluding communication that is conspicuously marked or otherwise
1111
+ designated in writing by the copyright owner as "Not a Contribution."
1112
+
1113
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1114
+ on behalf of whom a Contribution has been received by Licensor and
1115
+ subsequently incorporated within the Work.
1116
+
1117
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1118
+ this License, each Contributor hereby grants to You a perpetual,
1119
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1120
+ copyright license to reproduce, prepare Derivative Works of,
1121
+ publicly display, publicly perform, sublicense, and distribute the
1122
+ Work and such Derivative Works in Source or Object form.
1123
+
1124
+ 3. Grant of Patent License. Subject to the terms and conditions of
1125
+ this License, each Contributor hereby grants to You a perpetual,
1126
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1127
+ (except as stated in this section) patent license to make, have made,
1128
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1129
+ where such license applies only to those patent claims licensable
1130
+ by such Contributor that are necessarily infringed by their
1131
+ Contribution(s) alone or by combination of their Contribution(s)
1132
+ with the Work to which such Contribution(s) was submitted. If You
1133
+ institute patent litigation against any entity (including a
1134
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1135
+ or a Contribution incorporated within the Work constitutes direct
1136
+ or contributory patent infringement, then any patent licenses
1137
+ granted to You under this License for that Work shall terminate
1138
+ as of the date such litigation is filed.
1139
+
1140
+ 4. Redistribution. You may reproduce and distribute copies of the
1141
+ Work or Derivative Works thereof in any medium, with or without
1142
+ modifications, and in Source or Object form, provided that You
1143
+ meet the following conditions:
1144
+
1145
+ (a) You must give any other recipients of the Work or
1146
+ Derivative Works a copy of this License; and
1147
+
1148
+ (b) You must cause any modified files to carry prominent notices
1149
+ stating that You changed the files; and
1150
+
1151
+ (c) You must retain, in the Source form of any Derivative Works
1152
+ that You distribute, all copyright, patent, trademark, and
1153
+ attribution notices from the Source form of the Work,
1154
+ excluding those notices that do not pertain to any part of
1155
+ the Derivative Works; and
1156
+
1157
+ (d) If the Work includes a "NOTICE" text file as part of its
1158
+ distribution, then any Derivative Works that You distribute must
1159
+ include a readable copy of the attribution notices contained
1160
+ within such NOTICE file, excluding those notices that do not
1161
+ pertain to any part of the Derivative Works, in at least one
1162
+ of the following places: within a NOTICE text file distributed
1163
+ as part of the Derivative Works; within the Source form or
1164
+ documentation, if provided along with the Derivative Works; or,
1165
+ within a display generated by the Derivative Works, if and
1166
+ wherever such third-party notices normally appear. The contents
1167
+ of the NOTICE file are for informational purposes only and
1168
+ do not modify the License. You may add Your own attribution
1169
+ notices within Derivative Works that You distribute, alongside
1170
+ or as an addendum to the NOTICE text from the Work, provided
1171
+ that such additional attribution notices cannot be construed
1172
+ as modifying the License.
1173
+
1174
+ You may add Your own copyright statement to Your modifications and
1175
+ may provide additional or different license terms and conditions
1176
+ for use, reproduction, or distribution of Your modifications, or
1177
+ for any such Derivative Works as a whole, provided Your use,
1178
+ reproduction, and distribution of the Work otherwise complies with
1179
+ the conditions stated in this License.
1180
+
1181
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1182
+ any Contribution intentionally submitted for inclusion in the Work
1183
+ by You to the Licensor shall be under the terms and conditions of
1184
+ this License, without any additional terms or conditions.
1185
+ Notwithstanding the above, nothing herein shall supersede or modify
1186
+ the terms of any separate license agreement you may have executed
1187
+ with Licensor regarding such Contributions.
1188
+
1189
+ 6. Trademarks. This License does not grant permission to use the trade
1190
+ names, trademarks, service marks, or product names of the Licensor,
1191
+ except as required for reasonable and customary use in describing the
1192
+ origin of the Work and reproducing the content of the NOTICE file.
1193
+
1194
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1195
+ agreed to in writing, Licensor provides the Work (and each
1196
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1197
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1198
+ implied, including, without limitation, any warranties or conditions
1199
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1200
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1201
+ appropriateness of using or redistributing the Work and assume any
1202
+ risks associated with Your exercise of permissions under this License.
1203
+
1204
+ 8. Limitation of Liability. In no event and under no legal theory,
1205
+ whether in tort (including negligence), contract, or otherwise,
1206
+ unless required by applicable law (such as deliberate and grossly
1207
+ negligent acts) or agreed to in writing, shall any Contributor be
1208
+ liable to You for damages, including any direct, indirect, special,
1209
+ incidental, or consequential damages of any character arising as a
1210
+ result of this License or out of the use or inability to use the
1211
+ Work (including but not limited to damages for loss of goodwill,
1212
+ work stoppage, computer failure or malfunction, or any and all
1213
+ other commercial damages or losses), even if such Contributor
1214
+ has been advised of the possibility of such damages.
1215
+
1216
+ 9. Accepting Warranty or Additional Liability. While redistributing
1217
+ the Work or Derivative Works thereof, You may choose to offer,
1218
+ and charge a fee for, acceptance of support, warranty, indemnity,
1219
+ or other liability obligations and/or rights consistent with this
1220
+ License. However, in accepting such obligations, You may act only
1221
+ on Your own behalf and on Your sole responsibility, not on behalf
1222
+ of any other Contributor, and only if You agree to indemnify,
1223
+ defend, and hold each Contributor harmless for any liability
1224
+ incurred by, or claims asserted against, such Contributor by reason
1225
+ of your accepting any such warranty or additional liability.
1226
+
1227
+ END OF TERMS AND CONDITIONS
1228
+
1229
+ APPENDIX: How to apply the Apache License to your work.
1230
+
1231
+ To apply the Apache License to your work, attach the following
1232
+ boilerplate notice, with the fields enclosed by brackets "[]"
1233
+ replaced with your own identifying information. (Don't include
1234
+ the brackets!) The text should be enclosed in the appropriate
1235
+ comment syntax for the file format. We also recommend that a
1236
+ file or class name and description of purpose be included on the
1237
+ same "printed page" as the copyright notice for easier
1238
+ identification within third-party archives.
1239
+
1240
+ Copyright [yyyy] [name of copyright owner]
1241
+
1242
+ Licensed under the Apache License, Version 2.0 (the "License");
1243
+ you may not use this file except in compliance with the License.
1244
+ You may obtain a copy of the License at
1245
+
1246
+ http://www.apache.org/licenses/LICENSE-2.0
1247
+
1248
+ Unless required by applicable law or agreed to in writing, software
1249
+ distributed under the License is distributed on an "AS IS" BASIS,
1250
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1251
+ See the License for the specific language governing permissions and
1252
+ limitations under the License.
1253
+
1254
+
1255
+ ### xerces
1256
+
1257
+ Apache 2.0
1258
+
1259
+ https://xerces.apache.org/xerces2-j/
1260
+
1261
+
1262
+ Apache License
1263
+ Version 2.0, January 2004
1264
+ http://www.apache.org/licenses/
1265
+
1266
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1267
+
1268
+ 1. Definitions.
1269
+
1270
+ "License" shall mean the terms and conditions for use, reproduction,
1271
+ and distribution as defined by Sections 1 through 9 of this document.
1272
+
1273
+ "Licensor" shall mean the copyright owner or entity authorized by
1274
+ the copyright owner that is granting the License.
1275
+
1276
+ "Legal Entity" shall mean the union of the acting entity and all
1277
+ other entities that control, are controlled by, or are under common
1278
+ control with that entity. For the purposes of this definition,
1279
+ "control" means (i) the power, direct or indirect, to cause the
1280
+ direction or management of such entity, whether by contract or
1281
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1282
+ outstanding shares, or (iii) beneficial ownership of such entity.
1283
+
1284
+ "You" (or "Your") shall mean an individual or Legal Entity
1285
+ exercising permissions granted by this License.
1286
+
1287
+ "Source" form shall mean the preferred form for making modifications,
1288
+ including but not limited to software source code, documentation
1289
+ source, and configuration files.
1290
+
1291
+ "Object" form shall mean any form resulting from mechanical
1292
+ transformation or translation of a Source form, including but
1293
+ not limited to compiled object code, generated documentation,
1294
+ and conversions to other media types.
1295
+
1296
+ "Work" shall mean the work of authorship, whether in Source or
1297
+ Object form, made available under the License, as indicated by a
1298
+ copyright notice that is included in or attached to the work
1299
+ (an example is provided in the Appendix below).
1300
+
1301
+ "Derivative Works" shall mean any work, whether in Source or Object
1302
+ form, that is based on (or derived from) the Work and for which the
1303
+ editorial revisions, annotations, elaborations, or other modifications
1304
+ represent, as a whole, an original work of authorship. For the purposes
1305
+ of this License, Derivative Works shall not include works that remain
1306
+ separable from, or merely link (or bind by name) to the interfaces of,
1307
+ the Work and Derivative Works thereof.
1308
+
1309
+ "Contribution" shall mean any work of authorship, including
1310
+ the original version of the Work and any modifications or additions
1311
+ to that Work or Derivative Works thereof, that is intentionally
1312
+ submitted to Licensor for inclusion in the Work by the copyright owner
1313
+ or by an individual or Legal Entity authorized to submit on behalf of
1314
+ the copyright owner. For the purposes of this definition, "submitted"
1315
+ means any form of electronic, verbal, or written communication sent
1316
+ to the Licensor or its representatives, including but not limited to
1317
+ communication on electronic mailing lists, source code control systems,
1318
+ and issue tracking systems that are managed by, or on behalf of, the
1319
+ Licensor for the purpose of discussing and improving the Work, but
1320
+ excluding communication that is conspicuously marked or otherwise
1321
+ designated in writing by the copyright owner as "Not a Contribution."
1322
+
1323
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1324
+ on behalf of whom a Contribution has been received by Licensor and
1325
+ subsequently incorporated within the Work.
1326
+
1327
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1328
+ this License, each Contributor hereby grants to You a perpetual,
1329
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1330
+ copyright license to reproduce, prepare Derivative Works of,
1331
+ publicly display, publicly perform, sublicense, and distribute the
1332
+ Work and such Derivative Works in Source or Object form.
1333
+
1334
+ 3. Grant of Patent License. Subject to the terms and conditions of
1335
+ this License, each Contributor hereby grants to You a perpetual,
1336
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1337
+ (except as stated in this section) patent license to make, have made,
1338
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1339
+ where such license applies only to those patent claims licensable
1340
+ by such Contributor that are necessarily infringed by their
1341
+ Contribution(s) alone or by combination of their Contribution(s)
1342
+ with the Work to which such Contribution(s) was submitted. If You
1343
+ institute patent litigation against any entity (including a
1344
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1345
+ or a Contribution incorporated within the Work constitutes direct
1346
+ or contributory patent infringement, then any patent licenses
1347
+ granted to You under this License for that Work shall terminate
1348
+ as of the date such litigation is filed.
1349
+
1350
+ 4. Redistribution. You may reproduce and distribute copies of the
1351
+ Work or Derivative Works thereof in any medium, with or without
1352
+ modifications, and in Source or Object form, provided that You
1353
+ meet the following conditions:
1354
+
1355
+ (a) You must give any other recipients of the Work or
1356
+ Derivative Works a copy of this License; and
1357
+
1358
+ (b) You must cause any modified files to carry prominent notices
1359
+ stating that You changed the files; and
1360
+
1361
+ (c) You must retain, in the Source form of any Derivative Works
1362
+ that You distribute, all copyright, patent, trademark, and
1363
+ attribution notices from the Source form of the Work,
1364
+ excluding those notices that do not pertain to any part of
1365
+ the Derivative Works; and
1366
+
1367
+ (d) If the Work includes a "NOTICE" text file as part of its
1368
+ distribution, then any Derivative Works that You distribute must
1369
+ include a readable copy of the attribution notices contained
1370
+ within such NOTICE file, excluding those notices that do not
1371
+ pertain to any part of the Derivative Works, in at least one
1372
+ of the following places: within a NOTICE text file distributed
1373
+ as part of the Derivative Works; within the Source form or
1374
+ documentation, if provided along with the Derivative Works; or,
1375
+ within a display generated by the Derivative Works, if and
1376
+ wherever such third-party notices normally appear. The contents
1377
+ of the NOTICE file are for informational purposes only and
1378
+ do not modify the License. You may add Your own attribution
1379
+ notices within Derivative Works that You distribute, alongside
1380
+ or as an addendum to the NOTICE text from the Work, provided
1381
+ that such additional attribution notices cannot be construed
1382
+ as modifying the License.
1383
+
1384
+ You may add Your own copyright statement to Your modifications and
1385
+ may provide additional or different license terms and conditions
1386
+ for use, reproduction, or distribution of Your modifications, or
1387
+ for any such Derivative Works as a whole, provided Your use,
1388
+ reproduction, and distribution of the Work otherwise complies with
1389
+ the conditions stated in this License.
1390
+
1391
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1392
+ any Contribution intentionally submitted for inclusion in the Work
1393
+ by You to the Licensor shall be under the terms and conditions of
1394
+ this License, without any additional terms or conditions.
1395
+ Notwithstanding the above, nothing herein shall supersede or modify
1396
+ the terms of any separate license agreement you may have executed
1397
+ with Licensor regarding such Contributions.
1398
+
1399
+ 6. Trademarks. This License does not grant permission to use the trade
1400
+ names, trademarks, service marks, or product names of the Licensor,
1401
+ except as required for reasonable and customary use in describing the
1402
+ origin of the Work and reproducing the content of the NOTICE file.
1403
+
1404
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1405
+ agreed to in writing, Licensor provides the Work (and each
1406
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1407
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1408
+ implied, including, without limitation, any warranties or conditions
1409
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1410
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1411
+ appropriateness of using or redistributing the Work and assume any
1412
+ risks associated with Your exercise of permissions under this License.
1413
+
1414
+ 8. Limitation of Liability. In no event and under no legal theory,
1415
+ whether in tort (including negligence), contract, or otherwise,
1416
+ unless required by applicable law (such as deliberate and grossly
1417
+ negligent acts) or agreed to in writing, shall any Contributor be
1418
+ liable to You for damages, including any direct, indirect, special,
1419
+ incidental, or consequential damages of any character arising as a
1420
+ result of this License or out of the use or inability to use the
1421
+ Work (including but not limited to damages for loss of goodwill,
1422
+ work stoppage, computer failure or malfunction, or any and all
1423
+ other commercial damages or losses), even if such Contributor
1424
+ has been advised of the possibility of such damages.
1425
+
1426
+ 9. Accepting Warranty or Additional Liability. While redistributing
1427
+ the Work or Derivative Works thereof, You may choose to offer,
1428
+ and charge a fee for, acceptance of support, warranty, indemnity,
1429
+ or other liability obligations and/or rights consistent with this
1430
+ License. However, in accepting such obligations, You may act only
1431
+ on Your own behalf and on Your sole responsibility, not on behalf
1432
+ of any other Contributor, and only if You agree to indemnify,
1433
+ defend, and hold each Contributor harmless for any liability
1434
+ incurred by, or claims asserted against, such Contributor by reason
1435
+ of your accepting any such warranty or additional liability.
1436
+
1437
+ END OF TERMS AND CONDITIONS
1438
+
1439
+ APPENDIX: How to apply the Apache License to your work.
1440
+
1441
+ To apply the Apache License to your work, attach the following
1442
+ boilerplate notice, with the fields enclosed by brackets "[]"
1443
+ replaced with your own identifying information. (Don't include
1444
+ the brackets!) The text should be enclosed in the appropriate
1445
+ comment syntax for the file format. We also recommend that a
1446
+ file or class name and description of purpose be included on the
1447
+ same "printed page" as the copyright notice for easier
1448
+ identification within third-party archives.
1449
+
1450
+ Copyright [yyyy] [name of copyright owner]
1451
+
1452
+ Licensed under the Apache License, Version 2.0 (the "License");
1453
+ you may not use this file except in compliance with the License.
1454
+ You may obtain a copy of the License at
1455
+
1456
+ http://www.apache.org/licenses/LICENSE-2.0
1457
+
1458
+ Unless required by applicable law or agreed to in writing, software
1459
+ distributed under the License is distributed on an "AS IS" BASIS,
1460
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1461
+ See the License for the specific language governing permissions and
1462
+ limitations under the License.
1463
+
1464
+
1465
+ ### xml-apis
1466
+
1467
+ Apache 2.0
1468
+
1469
+ https://xerces.apache.org/xml-commons/
1470
+
1471
+ Unless otherwise noted all files in XML Commons are covered under the
1472
+ Apache License Version 2.0. Please read the LICENSE and NOTICE files.
1473
+
1474
+ XML Commons contains some software and documentation that is covered
1475
+ under a number of different licenses. This applies particularly to the
1476
+ xml-commons/java/external/ directory. Most files under
1477
+ xml-commons/java/external/ are covered under their respective
1478
+ LICENSE.*.txt files; see the matching README.*.txt files for
1479
+ descriptions.
1480
+
1481
+
1482
+ Apache License
1483
+ Version 2.0, January 2004
1484
+ http://www.apache.org/licenses/
1485
+
1486
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1487
+
1488
+ 1. Definitions.
1489
+
1490
+ "License" shall mean the terms and conditions for use, reproduction,
1491
+ and distribution as defined by Sections 1 through 9 of this document.
1492
+
1493
+ "Licensor" shall mean the copyright owner or entity authorized by
1494
+ the copyright owner that is granting the License.
1495
+
1496
+ "Legal Entity" shall mean the union of the acting entity and all
1497
+ other entities that control, are controlled by, or are under common
1498
+ control with that entity. For the purposes of this definition,
1499
+ "control" means (i) the power, direct or indirect, to cause the
1500
+ direction or management of such entity, whether by contract or
1501
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1502
+ outstanding shares, or (iii) beneficial ownership of such entity.
1503
+
1504
+ "You" (or "Your") shall mean an individual or Legal Entity
1505
+ exercising permissions granted by this License.
1506
+
1507
+ "Source" form shall mean the preferred form for making modifications,
1508
+ including but not limited to software source code, documentation
1509
+ source, and configuration files.
1510
+
1511
+ "Object" form shall mean any form resulting from mechanical
1512
+ transformation or translation of a Source form, including but
1513
+ not limited to compiled object code, generated documentation,
1514
+ and conversions to other media types.
1515
+
1516
+ "Work" shall mean the work of authorship, whether in Source or
1517
+ Object form, made available under the License, as indicated by a
1518
+ copyright notice that is included in or attached to the work
1519
+ (an example is provided in the Appendix below).
1520
+
1521
+ "Derivative Works" shall mean any work, whether in Source or Object
1522
+ form, that is based on (or derived from) the Work and for which the
1523
+ editorial revisions, annotations, elaborations, or other modifications
1524
+ represent, as a whole, an original work of authorship. For the purposes
1525
+ of this License, Derivative Works shall not include works that remain
1526
+ separable from, or merely link (or bind by name) to the interfaces of,
1527
+ the Work and Derivative Works thereof.
1528
+
1529
+ "Contribution" shall mean any work of authorship, including
1530
+ the original version of the Work and any modifications or additions
1531
+ to that Work or Derivative Works thereof, that is intentionally
1532
+ submitted to Licensor for inclusion in the Work by the copyright owner
1533
+ or by an individual or Legal Entity authorized to submit on behalf of
1534
+ the copyright owner. For the purposes of this definition, "submitted"
1535
+ means any form of electronic, verbal, or written communication sent
1536
+ to the Licensor or its representatives, including but not limited to
1537
+ communication on electronic mailing lists, source code control systems,
1538
+ and issue tracking systems that are managed by, or on behalf of, the
1539
+ Licensor for the purpose of discussing and improving the Work, but
1540
+ excluding communication that is conspicuously marked or otherwise
1541
+ designated in writing by the copyright owner as "Not a Contribution."
1542
+
1543
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1544
+ on behalf of whom a Contribution has been received by Licensor and
1545
+ subsequently incorporated within the Work.
1546
+
1547
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1548
+ this License, each Contributor hereby grants to You a perpetual,
1549
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1550
+ copyright license to reproduce, prepare Derivative Works of,
1551
+ publicly display, publicly perform, sublicense, and distribute the
1552
+ Work and such Derivative Works in Source or Object form.
1553
+
1554
+ 3. Grant of Patent License. Subject to the terms and conditions of
1555
+ this License, each Contributor hereby grants to You a perpetual,
1556
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1557
+ (except as stated in this section) patent license to make, have made,
1558
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1559
+ where such license applies only to those patent claims licensable
1560
+ by such Contributor that are necessarily infringed by their
1561
+ Contribution(s) alone or by combination of their Contribution(s)
1562
+ with the Work to which such Contribution(s) was submitted. If You
1563
+ institute patent litigation against any entity (including a
1564
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1565
+ or a Contribution incorporated within the Work constitutes direct
1566
+ or contributory patent infringement, then any patent licenses
1567
+ granted to You under this License for that Work shall terminate
1568
+ as of the date such litigation is filed.
1569
+
1570
+ 4. Redistribution. You may reproduce and distribute copies of the
1571
+ Work or Derivative Works thereof in any medium, with or without
1572
+ modifications, and in Source or Object form, provided that You
1573
+ meet the following conditions:
1574
+
1575
+ (a) You must give any other recipients of the Work or
1576
+ Derivative Works a copy of this License; and
1577
+
1578
+ (b) You must cause any modified files to carry prominent notices
1579
+ stating that You changed the files; and
1580
+
1581
+ (c) You must retain, in the Source form of any Derivative Works
1582
+ that You distribute, all copyright, patent, trademark, and
1583
+ attribution notices from the Source form of the Work,
1584
+ excluding those notices that do not pertain to any part of
1585
+ the Derivative Works; and
1586
+
1587
+ (d) If the Work includes a "NOTICE" text file as part of its
1588
+ distribution, then any Derivative Works that You distribute must
1589
+ include a readable copy of the attribution notices contained
1590
+ within such NOTICE file, excluding those notices that do not
1591
+ pertain to any part of the Derivative Works, in at least one
1592
+ of the following places: within a NOTICE text file distributed
1593
+ as part of the Derivative Works; within the Source form or
1594
+ documentation, if provided along with the Derivative Works; or,
1595
+ within a display generated by the Derivative Works, if and
1596
+ wherever such third-party notices normally appear. The contents
1597
+ of the NOTICE file are for informational purposes only and
1598
+ do not modify the License. You may add Your own attribution
1599
+ notices within Derivative Works that You distribute, alongside
1600
+ or as an addendum to the NOTICE text from the Work, provided
1601
+ that such additional attribution notices cannot be construed
1602
+ as modifying the License.
1603
+
1604
+ You may add Your own copyright statement to Your modifications and
1605
+ may provide additional or different license terms and conditions
1606
+ for use, reproduction, or distribution of Your modifications, or
1607
+ for any such Derivative Works as a whole, provided Your use,
1608
+ reproduction, and distribution of the Work otherwise complies with
1609
+ the conditions stated in this License.
1610
+
1611
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1612
+ any Contribution intentionally submitted for inclusion in the Work
1613
+ by You to the Licensor shall be under the terms and conditions of
1614
+ this License, without any additional terms or conditions.
1615
+ Notwithstanding the above, nothing herein shall supersede or modify
1616
+ the terms of any separate license agreement you may have executed
1617
+ with Licensor regarding such Contributions.
1618
+
1619
+ 6. Trademarks. This License does not grant permission to use the trade
1620
+ names, trademarks, service marks, or product names of the Licensor,
1621
+ except as required for reasonable and customary use in describing the
1622
+ origin of the Work and reproducing the content of the NOTICE file.
1623
+
1624
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1625
+ agreed to in writing, Licensor provides the Work (and each
1626
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1627
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1628
+ implied, including, without limitation, any warranties or conditions
1629
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1630
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1631
+ appropriateness of using or redistributing the Work and assume any
1632
+ risks associated with Your exercise of permissions under this License.
1633
+
1634
+ 8. Limitation of Liability. In no event and under no legal theory,
1635
+ whether in tort (including negligence), contract, or otherwise,
1636
+ unless required by applicable law (such as deliberate and grossly
1637
+ negligent acts) or agreed to in writing, shall any Contributor be
1638
+ liable to You for damages, including any direct, indirect, special,
1639
+ incidental, or consequential damages of any character arising as a
1640
+ result of this License or out of the use or inability to use the
1641
+ Work (including but not limited to damages for loss of goodwill,
1642
+ work stoppage, computer failure or malfunction, or any and all
1643
+ other commercial damages or losses), even if such Contributor
1644
+ has been advised of the possibility of such damages.
1645
+
1646
+ 9. Accepting Warranty or Additional Liability. While redistributing
1647
+ the Work or Derivative Works thereof, You may choose to offer,
1648
+ and charge a fee for, acceptance of support, warranty, indemnity,
1649
+ or other liability obligations and/or rights consistent with this
1650
+ License. However, in accepting such obligations, You may act only
1651
+ on Your own behalf and on Your sole responsibility, not on behalf
1652
+ of any other Contributor, and only if You agree to indemnify,
1653
+ defend, and hold each Contributor harmless for any liability
1654
+ incurred by, or claims asserted against, such Contributor by reason
1655
+ of your accepting any such warranty or additional liability.
1656
+
1657
+ END OF TERMS AND CONDITIONS
1658
+
1659
+ APPENDIX: How to apply the Apache License to your work.
1660
+
1661
+ To apply the Apache License to your work, attach the following
1662
+ boilerplate notice, with the fields enclosed by brackets "[]"
1663
+ replaced with your own identifying information. (Don't include
1664
+ the brackets!) The text should be enclosed in the appropriate
1665
+ comment syntax for the file format. We also recommend that a
1666
+ file or class name and description of purpose be included on the
1667
+ same "printed page" as the copyright notice for easier
1668
+ identification within third-party archives.
1669
+
1670
+ Copyright [yyyy] [name of copyright owner]
1671
+
1672
+ Licensed under the Apache License, Version 2.0 (the "License");
1673
+ you may not use this file except in compliance with the License.
1674
+ You may obtain a copy of the License at
1675
+
1676
+ http://www.apache.org/licenses/LICENSE-2.0
1677
+
1678
+ Unless required by applicable law or agreed to in writing, software
1679
+ distributed under the License is distributed on an "AS IS" BASIS,
1680
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1681
+ See the License for the specific language governing permissions and
1682
+ limitations under the License.