venetian 0.1.0-aarch64-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (128) hide show
  1. checksums.yaml +7 -0
  2. data/CODE_OF_CONDUCT.md +10 -0
  3. data/LICENSE.txt +21 -0
  4. data/README.md +52 -0
  5. data/Rakefile +14 -0
  6. data/exe/aarch64-linux/LICENSE +2946 -0
  7. data/exe/aarch64-linux/node +0 -0
  8. data/exe/aarch64-linux/package/LICENSE +202 -0
  9. data/exe/aarch64-linux/package/NOTICE +5 -0
  10. data/exe/aarch64-linux/package/README.md +3 -0
  11. data/exe/aarch64-linux/package/ThirdPartyNotices.txt +13 -0
  12. data/exe/aarch64-linux/package/api.json +1 -0
  13. data/exe/aarch64-linux/package/bin/install_media_pack.ps1 +5 -0
  14. data/exe/aarch64-linux/package/bin/install_webkit_wsl.ps1 +33 -0
  15. data/exe/aarch64-linux/package/bin/reinstall_chrome_beta_linux.sh +42 -0
  16. data/exe/aarch64-linux/package/bin/reinstall_chrome_beta_mac.sh +13 -0
  17. data/exe/aarch64-linux/package/bin/reinstall_chrome_beta_win.ps1 +24 -0
  18. data/exe/aarch64-linux/package/bin/reinstall_chrome_stable_linux.sh +42 -0
  19. data/exe/aarch64-linux/package/bin/reinstall_chrome_stable_mac.sh +12 -0
  20. data/exe/aarch64-linux/package/bin/reinstall_chrome_stable_win.ps1 +24 -0
  21. data/exe/aarch64-linux/package/bin/reinstall_msedge_beta_linux.sh +48 -0
  22. data/exe/aarch64-linux/package/bin/reinstall_msedge_beta_mac.sh +11 -0
  23. data/exe/aarch64-linux/package/bin/reinstall_msedge_beta_win.ps1 +23 -0
  24. data/exe/aarch64-linux/package/bin/reinstall_msedge_dev_linux.sh +48 -0
  25. data/exe/aarch64-linux/package/bin/reinstall_msedge_dev_mac.sh +11 -0
  26. data/exe/aarch64-linux/package/bin/reinstall_msedge_dev_win.ps1 +23 -0
  27. data/exe/aarch64-linux/package/bin/reinstall_msedge_stable_linux.sh +48 -0
  28. data/exe/aarch64-linux/package/bin/reinstall_msedge_stable_mac.sh +11 -0
  29. data/exe/aarch64-linux/package/bin/reinstall_msedge_stable_win.ps1 +24 -0
  30. data/exe/aarch64-linux/package/browsers.json +81 -0
  31. data/exe/aarch64-linux/package/cli.js +21 -0
  32. data/exe/aarch64-linux/package/index.d.ts +17 -0
  33. data/exe/aarch64-linux/package/index.js +32 -0
  34. data/exe/aarch64-linux/package/index.mjs +28 -0
  35. data/exe/aarch64-linux/package/lib/bootstrap.js +77 -0
  36. data/exe/aarch64-linux/package/lib/coreBundle.js +69799 -0
  37. data/exe/aarch64-linux/package/lib/entry/cliDaemon.js +5 -0
  38. data/exe/aarch64-linux/package/lib/entry/dashboardApp.js +3 -0
  39. data/exe/aarch64-linux/package/lib/entry/mcp.js +10 -0
  40. data/exe/aarch64-linux/package/lib/entry/oopBrowserDownload.js +3 -0
  41. data/exe/aarch64-linux/package/lib/package.js +50 -0
  42. data/exe/aarch64-linux/package/lib/server/chromium/appIcon.png +0 -0
  43. data/exe/aarch64-linux/package/lib/server/deviceDescriptorsSource.json +1779 -0
  44. data/exe/aarch64-linux/package/lib/server/electron/loader.js +115 -0
  45. data/exe/aarch64-linux/package/lib/serverRegistry.js +7343 -0
  46. data/exe/aarch64-linux/package/lib/serverRegistry.js.LICENSE +354 -0
  47. data/exe/aarch64-linux/package/lib/tools/cli-client/channelSessions.js +141 -0
  48. data/exe/aarch64-linux/package/lib/tools/cli-client/cli.js +6 -0
  49. data/exe/aarch64-linux/package/lib/tools/cli-client/help.json +679 -0
  50. data/exe/aarch64-linux/package/lib/tools/cli-client/minimist.js +128 -0
  51. data/exe/aarch64-linux/package/lib/tools/cli-client/output.js +343 -0
  52. data/exe/aarch64-linux/package/lib/tools/cli-client/program.js +380 -0
  53. data/exe/aarch64-linux/package/lib/tools/cli-client/registry.js +176 -0
  54. data/exe/aarch64-linux/package/lib/tools/cli-client/session.js +265 -0
  55. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/SKILL.md +388 -0
  56. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/element-attributes.md +23 -0
  57. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/playwright-tests.md +39 -0
  58. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/request-mocking.md +87 -0
  59. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/running-code.md +241 -0
  60. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/session-management.md +225 -0
  61. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/spec-driven-testing.md +305 -0
  62. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/storage-state.md +275 -0
  63. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/test-generation.md +134 -0
  64. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/tracing.md +139 -0
  65. data/exe/aarch64-linux/package/lib/tools/cli-client/skill/references/video-recording.md +143 -0
  66. data/exe/aarch64-linux/package/lib/tools/dashboard/appIcon.png +0 -0
  67. data/exe/aarch64-linux/package/lib/tools/trace/SKILL.md +171 -0
  68. data/exe/aarch64-linux/package/lib/tools/utils/extension.js +78 -0
  69. data/exe/aarch64-linux/package/lib/tools/utils/socketConnection.js +108 -0
  70. data/exe/aarch64-linux/package/lib/utilsBundle.js +85418 -0
  71. data/exe/aarch64-linux/package/lib/utilsBundle.js.LICENSE +2002 -0
  72. data/exe/aarch64-linux/package/lib/vite/dashboard/assets/codicon-DCmgc-ay.ttf +0 -0
  73. data/exe/aarch64-linux/package/lib/vite/dashboard/assets/firefox-1bWoP6pv.svg +1 -0
  74. data/exe/aarch64-linux/package/lib/vite/dashboard/assets/firefox-beta-k3eOH_eK.svg +1 -0
  75. data/exe/aarch64-linux/package/lib/vite/dashboard/assets/firefox-nightly-Cp5nfeDT.svg +1 -0
  76. data/exe/aarch64-linux/package/lib/vite/dashboard/assets/index-BY2S1tHT.css +1 -0
  77. data/exe/aarch64-linux/package/lib/vite/dashboard/assets/index-DpEq2p62.js +52 -0
  78. data/exe/aarch64-linux/package/lib/vite/dashboard/assets/safari-na3_-uQk.svg +1 -0
  79. data/exe/aarch64-linux/package/lib/vite/dashboard/index.html +29 -0
  80. data/exe/aarch64-linux/package/lib/vite/dashboard/playwright-logo.svg +24 -0
  81. data/exe/aarch64-linux/package/lib/vite/htmlReport/index.html +16 -0
  82. data/exe/aarch64-linux/package/lib/vite/htmlReport/report.css +1 -0
  83. data/exe/aarch64-linux/package/lib/vite/htmlReport/report.js +72 -0
  84. data/exe/aarch64-linux/package/lib/vite/recorder/assets/codeMirrorModule-BHYmBp6h.js +32 -0
  85. data/exe/aarch64-linux/package/lib/vite/recorder/assets/codeMirrorModule-DYBRYzYX.css +1 -0
  86. data/exe/aarch64-linux/package/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
  87. data/exe/aarch64-linux/package/lib/vite/recorder/assets/index-4ZiSSCmn.css +1 -0
  88. data/exe/aarch64-linux/package/lib/vite/recorder/assets/index-DA10QRaq.js +193 -0
  89. data/exe/aarch64-linux/package/lib/vite/recorder/index.html +29 -0
  90. data/exe/aarch64-linux/package/lib/vite/recorder/playwright-logo.svg +9 -0
  91. data/exe/aarch64-linux/package/lib/vite/traceViewer/assets/codeMirrorModule-Ds_H_9Yq.js +32 -0
  92. data/exe/aarch64-linux/package/lib/vite/traceViewer/assets/defaultSettingsView-D31xz8zv.js +262 -0
  93. data/exe/aarch64-linux/package/lib/vite/traceViewer/assets/urlMatch-BYQrIQwR.js +1 -0
  94. data/exe/aarch64-linux/package/lib/vite/traceViewer/assets/xtermModule-CsJ4vdCR.js +9 -0
  95. data/exe/aarch64-linux/package/lib/vite/traceViewer/codeMirrorModule.DYBRYzYX.css +1 -0
  96. data/exe/aarch64-linux/package/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
  97. data/exe/aarch64-linux/package/lib/vite/traceViewer/defaultSettingsView.BDKsFU3c.css +1 -0
  98. data/exe/aarch64-linux/package/lib/vite/traceViewer/index.BCnMPevh.js +2 -0
  99. data/exe/aarch64-linux/package/lib/vite/traceViewer/index.CzXZzn5A.css +1 -0
  100. data/exe/aarch64-linux/package/lib/vite/traceViewer/index.html +44 -0
  101. data/exe/aarch64-linux/package/lib/vite/traceViewer/manifest.webmanifest +16 -0
  102. data/exe/aarch64-linux/package/lib/vite/traceViewer/playwright-logo.svg +9 -0
  103. data/exe/aarch64-linux/package/lib/vite/traceViewer/snapshot.html +10 -0
  104. data/exe/aarch64-linux/package/lib/vite/traceViewer/snapshot.v8KI4P3m.js +2 -0
  105. data/exe/aarch64-linux/package/lib/vite/traceViewer/sw.bundle.js +5 -0
  106. data/exe/aarch64-linux/package/lib/vite/traceViewer/uiMode.Btcz36p_.css +1 -0
  107. data/exe/aarch64-linux/package/lib/vite/traceViewer/uiMode.C2Efnu2P.js +6 -0
  108. data/exe/aarch64-linux/package/lib/vite/traceViewer/uiMode.html +18 -0
  109. data/exe/aarch64-linux/package/lib/vite/traceViewer/xtermModule.DYP7pi_n.css +32 -0
  110. data/exe/aarch64-linux/package/lib/xdg-open +1066 -0
  111. data/exe/aarch64-linux/package/package.json +34 -0
  112. data/exe/aarch64-linux/package/protocol.yml +4884 -0
  113. data/exe/aarch64-linux/package/types/protocol.d.ts +24565 -0
  114. data/exe/aarch64-linux/package/types/structs.d.ts +45 -0
  115. data/exe/aarch64-linux/package/types/types.d.ts +24518 -0
  116. data/exe/playwright +11 -0
  117. data/lib/tasks/venetian.rake +11 -0
  118. data/lib/venetian/browser_installer.rb +26 -0
  119. data/lib/venetian/browser_runner_extensions.rb +17 -0
  120. data/lib/venetian/executable.rb +154 -0
  121. data/lib/venetian/gemspec.rb +7 -0
  122. data/lib/venetian/playwright_create_extensions.rb +11 -0
  123. data/lib/venetian/railtie.rb +9 -0
  124. data/lib/venetian/tasks.rb +3 -0
  125. data/lib/venetian/upstream.rb +45 -0
  126. data/lib/venetian/version.rb +5 -0
  127. data/lib/venetian.rb +29 -0
  128. metadata +185 -0
@@ -0,0 +1,2946 @@
1
+ Node.js is licensed for use as follows:
2
+
3
+ """
4
+ Copyright Node.js contributors. All rights reserved.
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to
8
+ deal in the Software without restriction, including without limitation the
9
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10
+ sell copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in
14
+ all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22
+ IN THE SOFTWARE.
23
+ """
24
+
25
+ This license applies to parts of Node.js originating from the
26
+ https://github.com/joyent/node repository:
27
+
28
+ """
29
+ Copyright Joyent, Inc. and other Node contributors. All rights reserved.
30
+ Permission is hereby granted, free of charge, to any person obtaining a copy
31
+ of this software and associated documentation files (the "Software"), to
32
+ deal in the Software without restriction, including without limitation the
33
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
34
+ sell copies of the Software, and to permit persons to whom the Software is
35
+ furnished to do so, subject to the following conditions:
36
+
37
+ The above copyright notice and this permission notice shall be included in
38
+ all copies or substantial portions of the Software.
39
+
40
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
41
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
42
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
43
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
44
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
45
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
46
+ IN THE SOFTWARE.
47
+ """
48
+
49
+ The Node.js license applies to all parts of Node.js that are not externally
50
+ maintained libraries.
51
+
52
+ The externally maintained libraries used by Node.js are:
53
+
54
+ - Acorn, located at deps/acorn, is licensed as follows:
55
+ """
56
+ MIT License
57
+
58
+ Copyright (C) 2012-2022 by various contributors (see AUTHORS)
59
+
60
+ Permission is hereby granted, free of charge, to any person obtaining a copy
61
+ of this software and associated documentation files (the "Software"), to deal
62
+ in the Software without restriction, including without limitation the rights
63
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
64
+ copies of the Software, and to permit persons to whom the Software is
65
+ furnished to do so, subject to the following conditions:
66
+
67
+ The above copyright notice and this permission notice shall be included in
68
+ all copies or substantial portions of the Software.
69
+
70
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
71
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
72
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
73
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
74
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
75
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
76
+ THE SOFTWARE.
77
+ """
78
+
79
+ - c-ares, located at deps/cares, is licensed as follows:
80
+ """
81
+ MIT License
82
+
83
+ Copyright (c) 1998 Massachusetts Institute of Technology
84
+ Copyright (c) 2007 - 2023 Daniel Stenberg with many contributors, see AUTHORS
85
+ file.
86
+
87
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
88
+ this software and associated documentation files (the "Software"), to deal in
89
+ the Software without restriction, including without limitation the rights to
90
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
91
+ the Software, and to permit persons to whom the Software is furnished to do so,
92
+ subject to the following conditions:
93
+
94
+ The above copyright notice and this permission notice (including the next
95
+ paragraph) shall be included in all copies or substantial portions of the
96
+ Software.
97
+
98
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
99
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
100
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
101
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
102
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
103
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
104
+ SOFTWARE.
105
+ """
106
+
107
+ - merve, located at deps/merve, is licensed as follows:
108
+ """
109
+ Copyright 2026 Yagiz Nizipli
110
+
111
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
112
+ this software and associated documentation files (the "Software"), to deal in
113
+ the Software without restriction, including without limitation the rights to
114
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
115
+ the Software, and to permit persons to whom the Software is furnished to do so,
116
+ subject to the following conditions:
117
+
118
+ The above copyright notice and this permission notice shall be included in all
119
+ copies or substantial portions of the Software.
120
+
121
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
122
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
123
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
124
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
125
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
126
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
127
+ """
128
+
129
+ - ittapi, located at deps/v8/third_party/ittapi, is licensed as follows:
130
+ """
131
+ Copyright (c) 2019 Intel Corporation. All rights reserved.
132
+
133
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
134
+
135
+ 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
136
+ 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
137
+ 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
138
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
139
+ """
140
+
141
+ - amaro, located at deps/amaro, is licensed as follows:
142
+ """
143
+ MIT License
144
+
145
+ Copyright (c) Marco Ippolito and Amaro contributors
146
+
147
+ Permission is hereby granted, free of charge, to any person obtaining a copy
148
+ of this software and associated documentation files (the "Software"), to deal
149
+ in the Software without restriction, including without limitation the rights
150
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
151
+ copies of the Software, and to permit persons to whom the Software is
152
+ furnished to do so, subject to the following conditions:
153
+
154
+ The above copyright notice and this permission notice shall be included in all
155
+ copies or substantial portions of the Software.
156
+
157
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
158
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
159
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
160
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
161
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
162
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
163
+ SOFTWARE.
164
+ """
165
+
166
+ - swc, located at deps/amaro/dist, is licensed as follows:
167
+ """
168
+ Apache License
169
+ Version 2.0, January 2004
170
+ http://www.apache.org/licenses/
171
+
172
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
173
+
174
+ 1. Definitions.
175
+
176
+ "License" shall mean the terms and conditions for use, reproduction,
177
+ and distribution as defined by Sections 1 through 9 of this document.
178
+
179
+ "Licensor" shall mean the copyright owner or entity authorized by
180
+ the copyright owner that is granting the License.
181
+
182
+ "Legal Entity" shall mean the union of the acting entity and all
183
+ other entities that control, are controlled by, or are under common
184
+ control with that entity. For the purposes of this definition,
185
+ "control" means (i) the power, direct or indirect, to cause the
186
+ direction or management of such entity, whether by contract or
187
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
188
+ outstanding shares, or (iii) beneficial ownership of such entity.
189
+
190
+ "You" (or "Your") shall mean an individual or Legal Entity
191
+ exercising permissions granted by this License.
192
+
193
+ "Source" form shall mean the preferred form for making modifications,
194
+ including but not limited to software source code, documentation
195
+ source, and configuration files.
196
+
197
+ "Object" form shall mean any form resulting from mechanical
198
+ transformation or translation of a Source form, including but
199
+ not limited to compiled object code, generated documentation,
200
+ and conversions to other media types.
201
+
202
+ "Work" shall mean the work of authorship, whether in Source or
203
+ Object form, made available under the License, as indicated by a
204
+ copyright notice that is included in or attached to the work
205
+ (an example is provided in the Appendix below).
206
+
207
+ "Derivative Works" shall mean any work, whether in Source or Object
208
+ form, that is based on (or derived from) the Work and for which the
209
+ editorial revisions, annotations, elaborations, or other modifications
210
+ represent, as a whole, an original work of authorship. For the purposes
211
+ of this License, Derivative Works shall not include works that remain
212
+ separable from, or merely link (or bind by name) to the interfaces of,
213
+ the Work and Derivative Works thereof.
214
+
215
+ "Contribution" shall mean any work of authorship, including
216
+ the original version of the Work and any modifications or additions
217
+ to that Work or Derivative Works thereof, that is intentionally
218
+ submitted to Licensor for inclusion in the Work by the copyright owner
219
+ or by an individual or Legal Entity authorized to submit on behalf of
220
+ the copyright owner. For the purposes of this definition, "submitted"
221
+ means any form of electronic, verbal, or written communication sent
222
+ to the Licensor or its representatives, including but not limited to
223
+ communication on electronic mailing lists, source code control systems,
224
+ and issue tracking systems that are managed by, or on behalf of, the
225
+ Licensor for the purpose of discussing and improving the Work, but
226
+ excluding communication that is conspicuously marked or otherwise
227
+ designated in writing by the copyright owner as "Not a Contribution."
228
+
229
+ "Contributor" shall mean Licensor and any individual or Legal Entity
230
+ on behalf of whom a Contribution has been received by Licensor and
231
+ subsequently incorporated within the Work.
232
+
233
+ 2. Grant of Copyright License. Subject to the terms and conditions of
234
+ this License, each Contributor hereby grants to You a perpetual,
235
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
236
+ copyright license to reproduce, prepare Derivative Works of,
237
+ publicly display, publicly perform, sublicense, and distribute the
238
+ Work and such Derivative Works in Source or Object form.
239
+
240
+ 3. Grant of Patent License. Subject to the terms and conditions of
241
+ this License, each Contributor hereby grants to You a perpetual,
242
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
243
+ (except as stated in this section) patent license to make, have made,
244
+ use, offer to sell, sell, import, and otherwise transfer the Work,
245
+ where such license applies only to those patent claims licensable
246
+ by such Contributor that are necessarily infringed by their
247
+ Contribution(s) alone or by combination of their Contribution(s)
248
+ with the Work to which such Contribution(s) was submitted. If You
249
+ institute patent litigation against any entity (including a
250
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
251
+ or a Contribution incorporated within the Work constitutes direct
252
+ or contributory patent infringement, then any patent licenses
253
+ granted to You under this License for that Work shall terminate
254
+ as of the date such litigation is filed.
255
+
256
+ 4. Redistribution. You may reproduce and distribute copies of the
257
+ Work or Derivative Works thereof in any medium, with or without
258
+ modifications, and in Source or Object form, provided that You
259
+ meet the following conditions:
260
+
261
+ (a) You must give any other recipients of the Work or
262
+ Derivative Works a copy of this License; and
263
+
264
+ (b) You must cause any modified files to carry prominent notices
265
+ stating that You changed the files; and
266
+
267
+ (c) You must retain, in the Source form of any Derivative Works
268
+ that You distribute, all copyright, patent, trademark, and
269
+ attribution notices from the Source form of the Work,
270
+ excluding those notices that do not pertain to any part of
271
+ the Derivative Works; and
272
+
273
+ (d) If the Work includes a "NOTICE" text file as part of its
274
+ distribution, then any Derivative Works that You distribute must
275
+ include a readable copy of the attribution notices contained
276
+ within such NOTICE file, excluding those notices that do not
277
+ pertain to any part of the Derivative Works, in at least one
278
+ of the following places: within a NOTICE text file distributed
279
+ as part of the Derivative Works; within the Source form or
280
+ documentation, if provided along with the Derivative Works; or,
281
+ within a display generated by the Derivative Works, if and
282
+ wherever such third-party notices normally appear. The contents
283
+ of the NOTICE file are for informational purposes only and
284
+ do not modify the License. You may add Your own attribution
285
+ notices within Derivative Works that You distribute, alongside
286
+ or as an addendum to the NOTICE text from the Work, provided
287
+ that such additional attribution notices cannot be construed
288
+ as modifying the License.
289
+
290
+ You may add Your own copyright statement to Your modifications and
291
+ may provide additional or different license terms and conditions
292
+ for use, reproduction, or distribution of Your modifications, or
293
+ for any such Derivative Works as a whole, provided Your use,
294
+ reproduction, and distribution of the Work otherwise complies with
295
+ the conditions stated in this License.
296
+
297
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
298
+ any Contribution intentionally submitted for inclusion in the Work
299
+ by You to the Licensor shall be under the terms and conditions of
300
+ this License, without any additional terms or conditions.
301
+ Notwithstanding the above, nothing herein shall supersede or modify
302
+ the terms of any separate license agreement you may have executed
303
+ with Licensor regarding such Contributions.
304
+
305
+ 6. Trademarks. This License does not grant permission to use the trade
306
+ names, trademarks, service marks, or product names of the Licensor,
307
+ except as required for reasonable and customary use in describing the
308
+ origin of the Work and reproducing the content of the NOTICE file.
309
+
310
+ 7. Disclaimer of Warranty. Unless required by applicable law or
311
+ agreed to in writing, Licensor provides the Work (and each
312
+ Contributor provides its Contributions) on an "AS IS" BASIS,
313
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
314
+ implied, including, without limitation, any warranties or conditions
315
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
316
+ PARTICULAR PURPOSE. You are solely responsible for determining the
317
+ appropriateness of using or redistributing the Work and assume any
318
+ risks associated with Your exercise of permissions under this License.
319
+
320
+ 8. Limitation of Liability. In no event and under no legal theory,
321
+ whether in tort (including negligence), contract, or otherwise,
322
+ unless required by applicable law (such as deliberate and grossly
323
+ negligent acts) or agreed to in writing, shall any Contributor be
324
+ liable to You for damages, including any direct, indirect, special,
325
+ incidental, or consequential damages of any character arising as a
326
+ result of this License or out of the use or inability to use the
327
+ Work (including but not limited to damages for loss of goodwill,
328
+ work stoppage, computer failure or malfunction, or any and all
329
+ other commercial damages or losses), even if such Contributor
330
+ has been advised of the possibility of such damages.
331
+
332
+ 9. Accepting Warranty or Additional Liability. While redistributing
333
+ the Work or Derivative Works thereof, You may choose to offer,
334
+ and charge a fee for, acceptance of support, warranty, indemnity,
335
+ or other liability obligations and/or rights consistent with this
336
+ License. However, in accepting such obligations, You may act only
337
+ on Your own behalf and on Your sole responsibility, not on behalf
338
+ of any other Contributor, and only if You agree to indemnify,
339
+ defend, and hold each Contributor harmless for any liability
340
+ incurred by, or claims asserted against, such Contributor by reason
341
+ of your accepting any such warranty or additional liability.
342
+
343
+ END OF TERMS AND CONDITIONS
344
+
345
+ APPENDIX: How to apply the Apache License to your work.
346
+
347
+ To apply the Apache License to your work, attach the following
348
+ boilerplate notice, with the fields enclosed by brackets "[]"
349
+ replaced with your own identifying information. (Don't include
350
+ the brackets!) The text should be enclosed in the appropriate
351
+ comment syntax for the file format. We also recommend that a
352
+ file or class name and description of purpose be included on the
353
+ same "printed page" as the copyright notice for easier
354
+ identification within third-party archives.
355
+
356
+ Copyright 2024 SWC contributors.
357
+
358
+ Licensed under the Apache License, Version 2.0 (the "License");
359
+ you may not use this file except in compliance with the License.
360
+ You may obtain a copy of the License at
361
+
362
+ http://www.apache.org/licenses/LICENSE-2.0
363
+
364
+ Unless required by applicable law or agreed to in writing, software
365
+ distributed under the License is distributed on an "AS IS" BASIS,
366
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
367
+ See the License for the specific language governing permissions and
368
+ limitations under the License.
369
+ """
370
+
371
+ - ICU, located at deps/icu-small, is licensed as follows:
372
+ """
373
+ UNICODE LICENSE V3
374
+
375
+ COPYRIGHT AND PERMISSION NOTICE
376
+
377
+ Copyright © 2016-2025 Unicode, Inc.
378
+
379
+ NOTICE TO USER: Carefully read the following legal agreement. BY
380
+ DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
381
+ SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
382
+ TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT
383
+ DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
384
+
385
+ Permission is hereby granted, free of charge, to any person obtaining a
386
+ copy of data files and any associated documentation (the "Data Files") or
387
+ software and any associated documentation (the "Software") to deal in the
388
+ Data Files or Software without restriction, including without limitation
389
+ the rights to use, copy, modify, merge, publish, distribute, and/or sell
390
+ copies of the Data Files or Software, and to permit persons to whom the
391
+ Data Files or Software are furnished to do so, provided that either (a)
392
+ this copyright and permission notice appear with all copies of the Data
393
+ Files or Software, or (b) this copyright and permission notice appear in
394
+ associated Documentation.
395
+
396
+ THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
397
+ KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
398
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
399
+ THIRD PARTY RIGHTS.
400
+
401
+ IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
402
+ BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
403
+ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
404
+ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
405
+ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA
406
+ FILES OR SOFTWARE.
407
+
408
+ Except as contained in this notice, the name of a copyright holder shall
409
+ not be used in advertising or otherwise to promote the sale, use or other
410
+ dealings in these Data Files or Software without prior written
411
+ authorization of the copyright holder.
412
+
413
+ SPDX-License-Identifier: Unicode-3.0
414
+
415
+ ----------------------------------------------------------------------
416
+
417
+ Third-Party Software Licenses
418
+
419
+ This section contains third-party software notices and/or additional
420
+ terms for licensed third-party software components included within ICU
421
+ libraries.
422
+
423
+ ----------------------------------------------------------------------
424
+
425
+ ICU License - ICU 1.8.1 to ICU 57.1
426
+
427
+ COPYRIGHT AND PERMISSION NOTICE
428
+
429
+ Copyright (c) 1995-2016 International Business Machines Corporation and others
430
+ All rights reserved.
431
+
432
+ Permission is hereby granted, free of charge, to any person obtaining
433
+ a copy of this software and associated documentation files (the
434
+ "Software"), to deal in the Software without restriction, including
435
+ without limitation the rights to use, copy, modify, merge, publish,
436
+ distribute, and/or sell copies of the Software, and to permit persons
437
+ to whom the Software is furnished to do so, provided that the above
438
+ copyright notice(s) and this permission notice appear in all copies of
439
+ the Software and that both the above copyright notice(s) and this
440
+ permission notice appear in supporting documentation.
441
+
442
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
443
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
444
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
445
+ OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
446
+ HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY
447
+ SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER
448
+ RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
449
+ CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
450
+ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
451
+
452
+ Except as contained in this notice, the name of a copyright holder
453
+ shall not be used in advertising or otherwise to promote the sale, use
454
+ or other dealings in this Software without prior written authorization
455
+ of the copyright holder.
456
+
457
+ All trademarks and registered trademarks mentioned herein are the
458
+ property of their respective owners.
459
+
460
+ ----------------------------------------------------------------------
461
+
462
+ Chinese/Japanese Word Break Dictionary Data (cjdict.txt)
463
+
464
+ # The Google Chrome software developed by Google is licensed under
465
+ # the BSD license. Other software included in this distribution is
466
+ # provided under other licenses, as set forth below.
467
+ #
468
+ # The BSD License
469
+ # http://opensource.org/licenses/bsd-license.php
470
+ # Copyright (C) 2006-2008, Google Inc.
471
+ #
472
+ # All rights reserved.
473
+ #
474
+ # Redistribution and use in source and binary forms, with or without
475
+ # modification, are permitted provided that the following conditions are met:
476
+ #
477
+ # Redistributions of source code must retain the above copyright notice,
478
+ # this list of conditions and the following disclaimer.
479
+ # Redistributions in binary form must reproduce the above
480
+ # copyright notice, this list of conditions and the following
481
+ # disclaimer in the documentation and/or other materials provided with
482
+ # the distribution.
483
+ # Neither the name of Google Inc. nor the names of its
484
+ # contributors may be used to endorse or promote products derived from
485
+ # this software without specific prior written permission.
486
+ #
487
+ #
488
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
489
+ # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
490
+ # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
491
+ # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
492
+ # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
493
+ # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
494
+ # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
495
+ # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
496
+ # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
497
+ # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
498
+ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
499
+ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
500
+ #
501
+ #
502
+ # The word list in cjdict.txt are generated by combining three word lists
503
+ # listed below with further processing for compound word breaking. The
504
+ # frequency is generated with an iterative training against Google web
505
+ # corpora.
506
+ #
507
+ # * Libtabe (Chinese)
508
+ # - https://sourceforge.net/project/?group_id=1519
509
+ # - Its license terms and conditions are shown below.
510
+ #
511
+ # * IPADIC (Japanese)
512
+ # - http://chasen.aist-nara.ac.jp/chasen/distribution.html
513
+ # - Its license terms and conditions are shown below.
514
+ #
515
+ # ---------COPYING.libtabe ---- BEGIN--------------------
516
+ #
517
+ # /*
518
+ # * Copyright (c) 1999 TaBE Project.
519
+ # * Copyright (c) 1999 Pai-Hsiang Hsiao.
520
+ # * All rights reserved.
521
+ # *
522
+ # * Redistribution and use in source and binary forms, with or without
523
+ # * modification, are permitted provided that the following conditions
524
+ # * are met:
525
+ # *
526
+ # * . Redistributions of source code must retain the above copyright
527
+ # * notice, this list of conditions and the following disclaimer.
528
+ # * . Redistributions in binary form must reproduce the above copyright
529
+ # * notice, this list of conditions and the following disclaimer in
530
+ # * the documentation and/or other materials provided with the
531
+ # * distribution.
532
+ # * . Neither the name of the TaBE Project nor the names of its
533
+ # * contributors may be used to endorse or promote products derived
534
+ # * from this software without specific prior written permission.
535
+ # *
536
+ # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
537
+ # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
538
+ # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
539
+ # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
540
+ # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
541
+ # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
542
+ # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
543
+ # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
544
+ # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
545
+ # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
546
+ # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
547
+ # * OF THE POSSIBILITY OF SUCH DAMAGE.
548
+ # */
549
+ #
550
+ # /*
551
+ # * Copyright (c) 1999 Computer Systems and Communication Lab,
552
+ # * Institute of Information Science, Academia
553
+ # * Sinica. All rights reserved.
554
+ # *
555
+ # * Redistribution and use in source and binary forms, with or without
556
+ # * modification, are permitted provided that the following conditions
557
+ # * are met:
558
+ # *
559
+ # * . Redistributions of source code must retain the above copyright
560
+ # * notice, this list of conditions and the following disclaimer.
561
+ # * . Redistributions in binary form must reproduce the above copyright
562
+ # * notice, this list of conditions and the following disclaimer in
563
+ # * the documentation and/or other materials provided with the
564
+ # * distribution.
565
+ # * . Neither the name of the Computer Systems and Communication Lab
566
+ # * nor the names of its contributors may be used to endorse or
567
+ # * promote products derived from this software without specific
568
+ # * prior written permission.
569
+ # *
570
+ # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
571
+ # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
572
+ # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
573
+ # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
574
+ # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
575
+ # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
576
+ # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
577
+ # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
578
+ # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
579
+ # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
580
+ # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
581
+ # * OF THE POSSIBILITY OF SUCH DAMAGE.
582
+ # */
583
+ #
584
+ # Copyright 1996 Chih-Hao Tsai @ Beckman Institute,
585
+ # University of Illinois
586
+ # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4
587
+ #
588
+ # ---------------COPYING.libtabe-----END--------------------------------
589
+ #
590
+ #
591
+ # ---------------COPYING.ipadic-----BEGIN-------------------------------
592
+ #
593
+ # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science
594
+ # and Technology. All Rights Reserved.
595
+ #
596
+ # Use, reproduction, and distribution of this software is permitted.
597
+ # Any copy of this software, whether in its original form or modified,
598
+ # must include both the above copyright notice and the following
599
+ # paragraphs.
600
+ #
601
+ # Nara Institute of Science and Technology (NAIST),
602
+ # the copyright holders, disclaims all warranties with regard to this
603
+ # software, including all implied warranties of merchantability and
604
+ # fitness, in no event shall NAIST be liable for
605
+ # any special, indirect or consequential damages or any damages
606
+ # whatsoever resulting from loss of use, data or profits, whether in an
607
+ # action of contract, negligence or other tortuous action, arising out
608
+ # of or in connection with the use or performance of this software.
609
+ #
610
+ # A large portion of the dictionary entries
611
+ # originate from ICOT Free Software. The following conditions for ICOT
612
+ # Free Software applies to the current dictionary as well.
613
+ #
614
+ # Each User may also freely distribute the Program, whether in its
615
+ # original form or modified, to any third party or parties, PROVIDED
616
+ # that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear
617
+ # on, or be attached to, the Program, which is distributed substantially
618
+ # in the same form as set out herein and that such intended
619
+ # distribution, if actually made, will neither violate or otherwise
620
+ # contravene any of the laws and regulations of the countries having
621
+ # jurisdiction over the User or the intended distribution itself.
622
+ #
623
+ # NO WARRANTY
624
+ #
625
+ # The program was produced on an experimental basis in the course of the
626
+ # research and development conducted during the project and is provided
627
+ # to users as so produced on an experimental basis. Accordingly, the
628
+ # program is provided without any warranty whatsoever, whether express,
629
+ # implied, statutory or otherwise. The term "warranty" used herein
630
+ # includes, but is not limited to, any warranty of the quality,
631
+ # performance, merchantability and fitness for a particular purpose of
632
+ # the program and the nonexistence of any infringement or violation of
633
+ # any right of any third party.
634
+ #
635
+ # Each user of the program will agree and understand, and be deemed to
636
+ # have agreed and understood, that there is no warranty whatsoever for
637
+ # the program and, accordingly, the entire risk arising from or
638
+ # otherwise connected with the program is assumed by the user.
639
+ #
640
+ # Therefore, neither ICOT, the copyright holder, or any other
641
+ # organization that participated in or was otherwise related to the
642
+ # development of the program and their respective officials, directors,
643
+ # officers and other employees shall be held liable for any and all
644
+ # damages, including, without limitation, general, special, incidental
645
+ # and consequential damages, arising out of or otherwise in connection
646
+ # with the use or inability to use the program or any product, material
647
+ # or result produced or otherwise obtained by using the program,
648
+ # regardless of whether they have been advised of, or otherwise had
649
+ # knowledge of, the possibility of such damages at any time during the
650
+ # project or thereafter. Each user will be deemed to have agreed to the
651
+ # foregoing by his or her commencement of use of the program. The term
652
+ # "use" as used herein includes, but is not limited to, the use,
653
+ # modification, copying and distribution of the program and the
654
+ # production of secondary products from the program.
655
+ #
656
+ # In the case where the program, whether in its original form or
657
+ # modified, was distributed or delivered to or received by a user from
658
+ # any person, organization or entity other than ICOT, unless it makes or
659
+ # grants independently of ICOT any specific warranty to the user in
660
+ # writing, such person, organization or entity, will also be exempted
661
+ # from and not be held liable to the user for any such damages as noted
662
+ # above as far as the program is concerned.
663
+ #
664
+ # ---------------COPYING.ipadic-----END----------------------------------
665
+
666
+ ----------------------------------------------------------------------
667
+
668
+ Lao Word Break Dictionary Data (laodict.txt)
669
+
670
+ # Copyright (C) 2016 and later: Unicode, Inc. and others.
671
+ # License & terms of use: http://www.unicode.org/copyright.html
672
+ # Copyright (c) 2015 International Business Machines Corporation
673
+ # and others. All Rights Reserved.
674
+ #
675
+ # Project: https://github.com/rober42539/lao-dictionary
676
+ # Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt
677
+ # License: https://github.com/rober42539/lao-dictionary/LICENSE.txt
678
+ # (copied below)
679
+ #
680
+ # This file is derived from the above dictionary version of Nov 22, 2020
681
+ # ----------------------------------------------------------------------
682
+ # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell.
683
+ # All rights reserved.
684
+ #
685
+ # Redistribution and use in source and binary forms, with or without
686
+ # modification, are permitted provided that the following conditions are met:
687
+ #
688
+ # Redistributions of source code must retain the above copyright notice, this
689
+ # list of conditions and the following disclaimer. Redistributions in binary
690
+ # form must reproduce the above copyright notice, this list of conditions and
691
+ # the following disclaimer in the documentation and/or other materials
692
+ # provided with the distribution.
693
+ #
694
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
695
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
696
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
697
+ # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
698
+ # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
699
+ # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
700
+ # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
701
+ # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
702
+ # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
703
+ # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
704
+ # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
705
+ # OF THE POSSIBILITY OF SUCH DAMAGE.
706
+ # --------------------------------------------------------------------------
707
+
708
+ ----------------------------------------------------------------------
709
+
710
+ Burmese Word Break Dictionary Data (burmesedict.txt)
711
+
712
+ # Copyright (c) 2014 International Business Machines Corporation
713
+ # and others. All Rights Reserved.
714
+ #
715
+ # This list is part of a project hosted at:
716
+ # github.com/kanyawtech/myanmar-karen-word-lists
717
+ #
718
+ # --------------------------------------------------------------------------
719
+ # Copyright (c) 2013, LeRoy Benjamin Sharon
720
+ # All rights reserved.
721
+ #
722
+ # Redistribution and use in source and binary forms, with or without
723
+ # modification, are permitted provided that the following conditions
724
+ # are met: Redistributions of source code must retain the above
725
+ # copyright notice, this list of conditions and the following
726
+ # disclaimer. Redistributions in binary form must reproduce the
727
+ # above copyright notice, this list of conditions and the following
728
+ # disclaimer in the documentation and/or other materials provided
729
+ # with the distribution.
730
+ #
731
+ # Neither the name Myanmar Karen Word Lists, nor the names of its
732
+ # contributors may be used to endorse or promote products derived
733
+ # from this software without specific prior written permission.
734
+ #
735
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
736
+ # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
737
+ # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
738
+ # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
739
+ # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
740
+ # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
741
+ # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
742
+ # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
743
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
744
+ # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
745
+ # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
746
+ # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
747
+ # SUCH DAMAGE.
748
+ # --------------------------------------------------------------------------
749
+
750
+ ----------------------------------------------------------------------
751
+
752
+ Time Zone Database
753
+
754
+ ICU uses the public domain data and code derived from Time Zone
755
+ Database for its time zone support. The ownership of the TZ database
756
+ is explained in BCP 175: Procedure for Maintaining the Time Zone
757
+ Database section 7.
758
+
759
+ # 7. Database Ownership
760
+ #
761
+ # The TZ database itself is not an IETF Contribution or an IETF
762
+ # document. Rather it is a pre-existing and regularly updated work
763
+ # that is in the public domain, and is intended to remain in the
764
+ # public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do
765
+ # not apply to the TZ Database or contributions that individuals make
766
+ # to it. Should any claims be made and substantiated against the TZ
767
+ # Database, the organization that is providing the IANA
768
+ # Considerations defined in this RFC, under the memorandum of
769
+ # understanding with the IETF, currently ICANN, may act in accordance
770
+ # with all competent court orders. No ownership claims will be made
771
+ # by ICANN or the IETF Trust on the database or the code. Any person
772
+ # making a contribution to the database or code waives all rights to
773
+ # future claims in that contribution or in the TZ Database.
774
+
775
+ ----------------------------------------------------------------------
776
+
777
+ Google double-conversion
778
+
779
+ Copyright 2006-2011, the V8 project authors. All rights reserved.
780
+ Redistribution and use in source and binary forms, with or without
781
+ modification, are permitted provided that the following conditions are
782
+ met:
783
+
784
+ * Redistributions of source code must retain the above copyright
785
+ notice, this list of conditions and the following disclaimer.
786
+ * Redistributions in binary form must reproduce the above
787
+ copyright notice, this list of conditions and the following
788
+ disclaimer in the documentation and/or other materials provided
789
+ with the distribution.
790
+ * Neither the name of Google Inc. nor the names of its
791
+ contributors may be used to endorse or promote products derived
792
+ from this software without specific prior written permission.
793
+
794
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
795
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
796
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
797
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
798
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
799
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
800
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
801
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
802
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
803
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
804
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
805
+
806
+ ----------------------------------------------------------------------
807
+
808
+ JSON parsing library (nlohmann/json)
809
+
810
+ File: vendor/json/upstream/single_include/nlohmann/json.hpp (only for ICU4C)
811
+
812
+ MIT License
813
+
814
+ Copyright (c) 2013-2022 Niels Lohmann
815
+
816
+ Permission is hereby granted, free of charge, to any person obtaining a copy
817
+ of this software and associated documentation files (the "Software"), to deal
818
+ in the Software without restriction, including without limitation the rights
819
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
820
+ copies of the Software, and to permit persons to whom the Software is
821
+ furnished to do so, subject to the following conditions:
822
+
823
+ The above copyright notice and this permission notice shall be included in all
824
+ copies or substantial portions of the Software.
825
+
826
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
827
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
828
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
829
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
830
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
831
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
832
+ SOFTWARE.
833
+
834
+ ----------------------------------------------------------------------
835
+
836
+ File: aclocal.m4 (only for ICU4C)
837
+ Section: pkg.m4 - Macros to locate and utilise pkg-config.
838
+
839
+ Copyright © 2004 Scott James Remnant .
840
+ Copyright © 2012-2015 Dan Nicholson
841
+
842
+ This program is free software; you can redistribute it and/or modify
843
+ it under the terms of the GNU General Public License as published by
844
+ the Free Software Foundation; either version 2 of the License, or
845
+ (at your option) any later version.
846
+
847
+ This program is distributed in the hope that it will be useful, but
848
+ WITHOUT ANY WARRANTY; without even the implied warranty of
849
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
850
+ General Public License for more details.
851
+
852
+ You should have received a copy of the GNU General Public License
853
+ along with this program; if not, write to the Free Software
854
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
855
+ 02111-1307, USA.
856
+
857
+ As a special exception to the GNU General Public License, if you
858
+ distribute this file as part of a program that contains a
859
+ configuration script generated by Autoconf, you may include it under
860
+ the same distribution terms that you use for the rest of that
861
+ program.
862
+
863
+ (The condition for the exception is fulfilled because
864
+ ICU4C includes a configuration script generated by Autoconf,
865
+ namely the `configure` script.)
866
+
867
+ ----------------------------------------------------------------------
868
+
869
+ File: config.guess (only for ICU4C)
870
+
871
+ This file is free software; you can redistribute it and/or modify it
872
+ under the terms of the GNU General Public License as published by
873
+ the Free Software Foundation, either version 3 of the License, or
874
+ (at your option) any later version.
875
+
876
+ This program is distributed in the hope that it will be useful, but
877
+ WITHOUT ANY WARRANTY; without even the implied warranty of
878
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
879
+ General Public License for more details.
880
+
881
+ You should have received a copy of the GNU General Public License
882
+ along with this program; if not, see .
883
+
884
+ As a special exception to the GNU General Public License, if you
885
+ distribute this file as part of a program that contains a
886
+ configuration script generated by Autoconf, you may include it under
887
+ the same distribution terms that you use for the rest of that
888
+ program. This Exception is an additional permission under section 7
889
+ of the GNU General Public License, version 3 ("GPLv3").
890
+
891
+ (The condition for the exception is fulfilled because
892
+ ICU4C includes a configuration script generated by Autoconf,
893
+ namely the `configure` script.)
894
+
895
+ ----------------------------------------------------------------------
896
+
897
+ File: install-sh (only for ICU4C)
898
+
899
+ Copyright 1991 by the Massachusetts Institute of Technology
900
+
901
+ Permission to use, copy, modify, distribute, and sell this software and its
902
+ documentation for any purpose is hereby granted without fee, provided that
903
+ the above copyright notice appear in all copies and that both that
904
+ copyright notice and this permission notice appear in supporting
905
+ documentation, and that the name of M.I.T. not be used in advertising or
906
+ publicity pertaining to distribution of the software without specific,
907
+ written prior permission. M.I.T. makes no representations about the
908
+ suitability of this software for any purpose. It is provided "as is"
909
+ without express or implied warranty.
910
+
911
+ ----------------------------------------------------------------------
912
+
913
+ File: sorttable.js (only for ICU4J)
914
+
915
+ The MIT Licence, for code from kryogenix.org
916
+
917
+ Code downloaded from the Browser Experiments section of kryogenix.org is
918
+ licenced under the so-called MIT licence. The licence is below.
919
+
920
+ Copyright (c) 1997-date Stuart Langridge
921
+
922
+ Permission is hereby granted, free of charge, to any person obtaining a
923
+ copy of this software and associated documentation files (the "Software"),
924
+ to deal in the Software without restriction, including without limitation
925
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
926
+ and/or sell copies of the Software, and to permit persons to whom the
927
+ Software is furnished to do so, subject to the following conditions:
928
+
929
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
930
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
931
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
932
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
933
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
934
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
935
+ SOFTWARE.
936
+ """
937
+
938
+ - libuv, located at deps/uv, is licensed as follows:
939
+ """
940
+ Copyright (c) 2015-present libuv project contributors.
941
+
942
+ Permission is hereby granted, free of charge, to any person obtaining a copy
943
+ of this software and associated documentation files (the "Software"), to
944
+ deal in the Software without restriction, including without limitation the
945
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
946
+ sell copies of the Software, and to permit persons to whom the Software is
947
+ furnished to do so, subject to the following conditions:
948
+
949
+ The above copyright notice and this permission notice shall be included in
950
+ all copies or substantial portions of the Software.
951
+
952
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
953
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
954
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
955
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
956
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
957
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
958
+ IN THE SOFTWARE.
959
+ This license applies to parts of libuv originating from the
960
+ https://github.com/joyent/libuv repository:
961
+
962
+ ====
963
+
964
+ Copyright Joyent, Inc. and other Node contributors. All rights reserved.
965
+ Permission is hereby granted, free of charge, to any person obtaining a copy
966
+ of this software and associated documentation files (the "Software"), to
967
+ deal in the Software without restriction, including without limitation the
968
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
969
+ sell copies of the Software, and to permit persons to whom the Software is
970
+ furnished to do so, subject to the following conditions:
971
+
972
+ The above copyright notice and this permission notice shall be included in
973
+ all copies or substantial portions of the Software.
974
+
975
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
976
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
977
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
978
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
979
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
980
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
981
+ IN THE SOFTWARE.
982
+
983
+ ====
984
+
985
+ This license applies to all parts of libuv that are not externally
986
+ maintained libraries.
987
+
988
+ The externally maintained libraries used by libuv are:
989
+
990
+ - tree.h (from FreeBSD), copyright Niels Provos. Two clause BSD license.
991
+
992
+ - inet_pton and inet_ntop implementations, contained in src/inet.c, are
993
+ copyright the Internet Systems Consortium, Inc., and licensed under the ISC
994
+ license.
995
+ """
996
+
997
+ - LIEF, located at deps/LIEF, is licensed as follows:
998
+ """
999
+ Apache License
1000
+ Version 2.0, January 2004
1001
+ http://www.apache.org/licenses/
1002
+
1003
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1004
+
1005
+ 1. Definitions.
1006
+
1007
+ "License" shall mean the terms and conditions for use, reproduction,
1008
+ and distribution as defined by Sections 1 through 9 of this document.
1009
+
1010
+ "Licensor" shall mean the copyright owner or entity authorized by
1011
+ the copyright owner that is granting the License.
1012
+
1013
+ "Legal Entity" shall mean the union of the acting entity and all
1014
+ other entities that control, are controlled by, or are under common
1015
+ control with that entity. For the purposes of this definition,
1016
+ "control" means (i) the power, direct or indirect, to cause the
1017
+ direction or management of such entity, whether by contract or
1018
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1019
+ outstanding shares, or (iii) beneficial ownership of such entity.
1020
+
1021
+ "You" (or "Your") shall mean an individual or Legal Entity
1022
+ exercising permissions granted by this License.
1023
+
1024
+ "Source" form shall mean the preferred form for making modifications,
1025
+ including but not limited to software source code, documentation
1026
+ source, and configuration files.
1027
+
1028
+ "Object" form shall mean any form resulting from mechanical
1029
+ transformation or translation of a Source form, including but
1030
+ not limited to compiled object code, generated documentation,
1031
+ and conversions to other media types.
1032
+
1033
+ "Work" shall mean the work of authorship, whether in Source or
1034
+ Object form, made available under the License, as indicated by a
1035
+ copyright notice that is included in or attached to the work
1036
+ (an example is provided in the Appendix below).
1037
+
1038
+ "Derivative Works" shall mean any work, whether in Source or Object
1039
+ form, that is based on (or derived from) the Work and for which the
1040
+ editorial revisions, annotations, elaborations, or other modifications
1041
+ represent, as a whole, an original work of authorship. For the purposes
1042
+ of this License, Derivative Works shall not include works that remain
1043
+ separable from, or merely link (or bind by name) to the interfaces of,
1044
+ the Work and Derivative Works thereof.
1045
+
1046
+ "Contribution" shall mean any work of authorship, including
1047
+ the original version of the Work and any modifications or additions
1048
+ to that Work or Derivative Works thereof, that is intentionally
1049
+ submitted to Licensor for inclusion in the Work by the copyright owner
1050
+ or by an individual or Legal Entity authorized to submit on behalf of
1051
+ the copyright owner. For the purposes of this definition, "submitted"
1052
+ means any form of electronic, verbal, or written communication sent
1053
+ to the Licensor or its representatives, including but not limited to
1054
+ communication on electronic mailing lists, source code control systems,
1055
+ and issue tracking systems that are managed by, or on behalf of, the
1056
+ Licensor for the purpose of discussing and improving the Work, but
1057
+ excluding communication that is conspicuously marked or otherwise
1058
+ designated in writing by the copyright owner as "Not a Contribution."
1059
+
1060
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1061
+ on behalf of whom a Contribution has been received by Licensor and
1062
+ subsequently incorporated within the Work.
1063
+
1064
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1065
+ this License, each Contributor hereby grants to You a perpetual,
1066
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1067
+ copyright license to reproduce, prepare Derivative Works of,
1068
+ publicly display, publicly perform, sublicense, and distribute the
1069
+ Work and such Derivative Works in Source or Object form.
1070
+
1071
+ 3. Grant of Patent License. Subject to the terms and conditions of
1072
+ this License, each Contributor hereby grants to You a perpetual,
1073
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1074
+ (except as stated in this section) patent license to make, have made,
1075
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1076
+ where such license applies only to those patent claims licensable
1077
+ by such Contributor that are necessarily infringed by their
1078
+ Contribution(s) alone or by combination of their Contribution(s)
1079
+ with the Work to which such Contribution(s) was submitted. If You
1080
+ institute patent litigation against any entity (including a
1081
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1082
+ or a Contribution incorporated within the Work constitutes direct
1083
+ or contributory patent infringement, then any patent licenses
1084
+ granted to You under this License for that Work shall terminate
1085
+ as of the date such litigation is filed.
1086
+
1087
+ 4. Redistribution. You may reproduce and distribute copies of the
1088
+ Work or Derivative Works thereof in any medium, with or without
1089
+ modifications, and in Source or Object form, provided that You
1090
+ meet the following conditions:
1091
+
1092
+ (a) You must give any other recipients of the Work or
1093
+ Derivative Works a copy of this License; and
1094
+
1095
+ (b) You must cause any modified files to carry prominent notices
1096
+ stating that You changed the files; and
1097
+
1098
+ (c) You must retain, in the Source form of any Derivative Works
1099
+ that You distribute, all copyright, patent, trademark, and
1100
+ attribution notices from the Source form of the Work,
1101
+ excluding those notices that do not pertain to any part of
1102
+ the Derivative Works; and
1103
+
1104
+ (d) If the Work includes a "NOTICE" text file as part of its
1105
+ distribution, then any Derivative Works that You distribute must
1106
+ include a readable copy of the attribution notices contained
1107
+ within such NOTICE file, excluding those notices that do not
1108
+ pertain to any part of the Derivative Works, in at least one
1109
+ of the following places: within a NOTICE text file distributed
1110
+ as part of the Derivative Works; within the Source form or
1111
+ documentation, if provided along with the Derivative Works; or,
1112
+ within a display generated by the Derivative Works, if and
1113
+ wherever such third-party notices normally appear. The contents
1114
+ of the NOTICE file are for informational purposes only and
1115
+ do not modify the License. You may add Your own attribution
1116
+ notices within Derivative Works that You distribute, alongside
1117
+ or as an addendum to the NOTICE text from the Work, provided
1118
+ that such additional attribution notices cannot be construed
1119
+ as modifying the License.
1120
+
1121
+ You may add Your own copyright statement to Your modifications and
1122
+ may provide additional or different license terms and conditions
1123
+ for use, reproduction, or distribution of Your modifications, or
1124
+ for any such Derivative Works as a whole, provided Your use,
1125
+ reproduction, and distribution of the Work otherwise complies with
1126
+ the conditions stated in this License.
1127
+
1128
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1129
+ any Contribution intentionally submitted for inclusion in the Work
1130
+ by You to the Licensor shall be under the terms and conditions of
1131
+ this License, without any additional terms or conditions.
1132
+ Notwithstanding the above, nothing herein shall supersede or modify
1133
+ the terms of any separate license agreement you may have executed
1134
+ with Licensor regarding such Contributions.
1135
+
1136
+ 6. Trademarks. This License does not grant permission to use the trade
1137
+ names, trademarks, service marks, or product names of the Licensor,
1138
+ except as required for reasonable and customary use in describing the
1139
+ origin of the Work and reproducing the content of the NOTICE file.
1140
+
1141
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1142
+ agreed to in writing, Licensor provides the Work (and each
1143
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1144
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1145
+ implied, including, without limitation, any warranties or conditions
1146
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1147
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1148
+ appropriateness of using or redistributing the Work and assume any
1149
+ risks associated with Your exercise of permissions under this License.
1150
+
1151
+ 8. Limitation of Liability. In no event and under no legal theory,
1152
+ whether in tort (including negligence), contract, or otherwise,
1153
+ unless required by applicable law (such as deliberate and grossly
1154
+ negligent acts) or agreed to in writing, shall any Contributor be
1155
+ liable to You for damages, including any direct, indirect, special,
1156
+ incidental, or consequential damages of any character arising as a
1157
+ result of this License or out of the use or inability to use the
1158
+ Work (including but not limited to damages for loss of goodwill,
1159
+ work stoppage, computer failure or malfunction, or any and all
1160
+ other commercial damages or losses), even if such Contributor
1161
+ has been advised of the possibility of such damages.
1162
+
1163
+ 9. Accepting Warranty or Additional Liability. While redistributing
1164
+ the Work or Derivative Works thereof, You may choose to offer,
1165
+ and charge a fee for, acceptance of support, warranty, indemnity,
1166
+ or other liability obligations and/or rights consistent with this
1167
+ License. However, in accepting such obligations, You may act only
1168
+ on Your own behalf and on Your sole responsibility, not on behalf
1169
+ of any other Contributor, and only if You agree to indemnify,
1170
+ defend, and hold each Contributor harmless for any liability
1171
+ incurred by, or claims asserted against, such Contributor by reason
1172
+ of your accepting any such warranty or additional liability.
1173
+
1174
+ END OF TERMS AND CONDITIONS
1175
+
1176
+ APPENDIX: How to apply the Apache License to your work.
1177
+
1178
+ To apply the Apache License to your work, attach the following
1179
+ boilerplate notice, with the fields enclosed by brackets "{}"
1180
+ replaced with your own identifying information. (Don't include
1181
+ the brackets!) The text should be enclosed in the appropriate
1182
+ comment syntax for the file format. We also recommend that a
1183
+ file or class name and description of purpose be included on the
1184
+ same "printed page" as the copyright notice for easier
1185
+ identification within third-party archives.
1186
+
1187
+ Copyright 2017 - 2025 R. Thomas
1188
+ Copyright 2017 - 2025 Quarkslab
1189
+
1190
+ Licensed under the Apache License, Version 2.0 (the "License");
1191
+ you may not use this file except in compliance with the License.
1192
+ You may obtain a copy of the License at
1193
+
1194
+ http://www.apache.org/licenses/LICENSE-2.0
1195
+
1196
+ Unless required by applicable law or agreed to in writing, software
1197
+ distributed under the License is distributed on an "AS IS" BASIS,
1198
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1199
+ See the License for the specific language governing permissions and
1200
+ limitations under the License.
1201
+ """
1202
+
1203
+ - llhttp, located at deps/llhttp, is licensed as follows:
1204
+ """
1205
+ This software is licensed under the MIT License.
1206
+
1207
+ Copyright Fedor Indutny, 2018.
1208
+
1209
+ Permission is hereby granted, free of charge, to any person obtaining a
1210
+ copy of this software and associated documentation files (the
1211
+ "Software"), to deal in the Software without restriction, including
1212
+ without limitation the rights to use, copy, modify, merge, publish,
1213
+ distribute, sublicense, and/or sell copies of the Software, and to permit
1214
+ persons to whom the Software is furnished to do so, subject to the
1215
+ following conditions:
1216
+
1217
+ The above copyright notice and this permission notice shall be included
1218
+ in all copies or substantial portions of the Software.
1219
+
1220
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
1221
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1222
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
1223
+ NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
1224
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
1225
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
1226
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
1227
+ """
1228
+
1229
+ - corepack, located at deps/corepack, is licensed as follows:
1230
+ """
1231
+ **Copyright © Corepack contributors**
1232
+
1233
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1234
+
1235
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1236
+
1237
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1238
+ """
1239
+
1240
+ - undici, located at deps/undici, is licensed as follows:
1241
+ """
1242
+ MIT License
1243
+
1244
+ Copyright (c) Matteo Collina and Undici contributors
1245
+
1246
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1247
+ of this software and associated documentation files (the "Software"), to deal
1248
+ in the Software without restriction, including without limitation the rights
1249
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1250
+ copies of the Software, and to permit persons to whom the Software is
1251
+ furnished to do so, subject to the following conditions:
1252
+
1253
+ The above copyright notice and this permission notice shall be included in all
1254
+ copies or substantial portions of the Software.
1255
+
1256
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1257
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1258
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1259
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1260
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1261
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1262
+ SOFTWARE.
1263
+ """
1264
+
1265
+ - postject, located at test/fixtures/postject-copy, is licensed as follows:
1266
+ """
1267
+ Postject is licensed for use as follows:
1268
+
1269
+ """
1270
+ MIT License
1271
+
1272
+ Copyright (c) 2022 Postman, Inc
1273
+
1274
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1275
+ of this software and associated documentation files (the "Software"), to deal
1276
+ in the Software without restriction, including without limitation the rights
1277
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1278
+ copies of the Software, and to permit persons to whom the Software is
1279
+ furnished to do so, subject to the following conditions:
1280
+
1281
+ The above copyright notice and this permission notice shall be included in all
1282
+ copies or substantial portions of the Software.
1283
+
1284
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1285
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1286
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1287
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1288
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1289
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1290
+ SOFTWARE.
1291
+ """
1292
+
1293
+ The Postject license applies to all parts of Postject that are not externally
1294
+ maintained libraries.
1295
+
1296
+ The externally maintained libraries used by Postject are:
1297
+
1298
+ - LIEF, located at vendor/LIEF, is licensed as follows:
1299
+ """
1300
+ Apache License
1301
+ Version 2.0, January 2004
1302
+ http://www.apache.org/licenses/
1303
+
1304
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1305
+
1306
+ 1. Definitions.
1307
+
1308
+ "License" shall mean the terms and conditions for use, reproduction,
1309
+ and distribution as defined by Sections 1 through 9 of this document.
1310
+
1311
+ "Licensor" shall mean the copyright owner or entity authorized by
1312
+ the copyright owner that is granting the License.
1313
+
1314
+ "Legal Entity" shall mean the union of the acting entity and all
1315
+ other entities that control, are controlled by, or are under common
1316
+ control with that entity. For the purposes of this definition,
1317
+ "control" means (i) the power, direct or indirect, to cause the
1318
+ direction or management of such entity, whether by contract or
1319
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1320
+ outstanding shares, or (iii) beneficial ownership of such entity.
1321
+
1322
+ "You" (or "Your") shall mean an individual or Legal Entity
1323
+ exercising permissions granted by this License.
1324
+
1325
+ "Source" form shall mean the preferred form for making modifications,
1326
+ including but not limited to software source code, documentation
1327
+ source, and configuration files.
1328
+
1329
+ "Object" form shall mean any form resulting from mechanical
1330
+ transformation or translation of a Source form, including but
1331
+ not limited to compiled object code, generated documentation,
1332
+ and conversions to other media types.
1333
+
1334
+ "Work" shall mean the work of authorship, whether in Source or
1335
+ Object form, made available under the License, as indicated by a
1336
+ copyright notice that is included in or attached to the work
1337
+ (an example is provided in the Appendix below).
1338
+
1339
+ "Derivative Works" shall mean any work, whether in Source or Object
1340
+ form, that is based on (or derived from) the Work and for which the
1341
+ editorial revisions, annotations, elaborations, or other modifications
1342
+ represent, as a whole, an original work of authorship. For the purposes
1343
+ of this License, Derivative Works shall not include works that remain
1344
+ separable from, or merely link (or bind by name) to the interfaces of,
1345
+ the Work and Derivative Works thereof.
1346
+
1347
+ "Contribution" shall mean any work of authorship, including
1348
+ the original version of the Work and any modifications or additions
1349
+ to that Work or Derivative Works thereof, that is intentionally
1350
+ submitted to Licensor for inclusion in the Work by the copyright owner
1351
+ or by an individual or Legal Entity authorized to submit on behalf of
1352
+ the copyright owner. For the purposes of this definition, "submitted"
1353
+ means any form of electronic, verbal, or written communication sent
1354
+ to the Licensor or its representatives, including but not limited to
1355
+ communication on electronic mailing lists, source code control systems,
1356
+ and issue tracking systems that are managed by, or on behalf of, the
1357
+ Licensor for the purpose of discussing and improving the Work, but
1358
+ excluding communication that is conspicuously marked or otherwise
1359
+ designated in writing by the copyright owner as "Not a Contribution."
1360
+
1361
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1362
+ on behalf of whom a Contribution has been received by Licensor and
1363
+ subsequently incorporated within the Work.
1364
+
1365
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1366
+ this License, each Contributor hereby grants to You a perpetual,
1367
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1368
+ copyright license to reproduce, prepare Derivative Works of,
1369
+ publicly display, publicly perform, sublicense, and distribute the
1370
+ Work and such Derivative Works in Source or Object form.
1371
+
1372
+ 3. Grant of Patent License. Subject to the terms and conditions of
1373
+ this License, each Contributor hereby grants to You a perpetual,
1374
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1375
+ (except as stated in this section) patent license to make, have made,
1376
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1377
+ where such license applies only to those patent claims licensable
1378
+ by such Contributor that are necessarily infringed by their
1379
+ Contribution(s) alone or by combination of their Contribution(s)
1380
+ with the Work to which such Contribution(s) was submitted. If You
1381
+ institute patent litigation against any entity (including a
1382
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1383
+ or a Contribution incorporated within the Work constitutes direct
1384
+ or contributory patent infringement, then any patent licenses
1385
+ granted to You under this License for that Work shall terminate
1386
+ as of the date such litigation is filed.
1387
+
1388
+ 4. Redistribution. You may reproduce and distribute copies of the
1389
+ Work or Derivative Works thereof in any medium, with or without
1390
+ modifications, and in Source or Object form, provided that You
1391
+ meet the following conditions:
1392
+
1393
+ (a) You must give any other recipients of the Work or
1394
+ Derivative Works a copy of this License; and
1395
+
1396
+ (b) You must cause any modified files to carry prominent notices
1397
+ stating that You changed the files; and
1398
+
1399
+ (c) You must retain, in the Source form of any Derivative Works
1400
+ that You distribute, all copyright, patent, trademark, and
1401
+ attribution notices from the Source form of the Work,
1402
+ excluding those notices that do not pertain to any part of
1403
+ the Derivative Works; and
1404
+
1405
+ (d) If the Work includes a "NOTICE" text file as part of its
1406
+ distribution, then any Derivative Works that You distribute must
1407
+ include a readable copy of the attribution notices contained
1408
+ within such NOTICE file, excluding those notices that do not
1409
+ pertain to any part of the Derivative Works, in at least one
1410
+ of the following places: within a NOTICE text file distributed
1411
+ as part of the Derivative Works; within the Source form or
1412
+ documentation, if provided along with the Derivative Works; or,
1413
+ within a display generated by the Derivative Works, if and
1414
+ wherever such third-party notices normally appear. The contents
1415
+ of the NOTICE file are for informational purposes only and
1416
+ do not modify the License. You may add Your own attribution
1417
+ notices within Derivative Works that You distribute, alongside
1418
+ or as an addendum to the NOTICE text from the Work, provided
1419
+ that such additional attribution notices cannot be construed
1420
+ as modifying the License.
1421
+
1422
+ You may add Your own copyright statement to Your modifications and
1423
+ may provide additional or different license terms and conditions
1424
+ for use, reproduction, or distribution of Your modifications, or
1425
+ for any such Derivative Works as a whole, provided Your use,
1426
+ reproduction, and distribution of the Work otherwise complies with
1427
+ the conditions stated in this License.
1428
+
1429
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1430
+ any Contribution intentionally submitted for inclusion in the Work
1431
+ by You to the Licensor shall be under the terms and conditions of
1432
+ this License, without any additional terms or conditions.
1433
+ Notwithstanding the above, nothing herein shall supersede or modify
1434
+ the terms of any separate license agreement you may have executed
1435
+ with Licensor regarding such Contributions.
1436
+
1437
+ 6. Trademarks. This License does not grant permission to use the trade
1438
+ names, trademarks, service marks, or product names of the Licensor,
1439
+ except as required for reasonable and customary use in describing the
1440
+ origin of the Work and reproducing the content of the NOTICE file.
1441
+
1442
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1443
+ agreed to in writing, Licensor provides the Work (and each
1444
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1445
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1446
+ implied, including, without limitation, any warranties or conditions
1447
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1448
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1449
+ appropriateness of using or redistributing the Work and assume any
1450
+ risks associated with Your exercise of permissions under this License.
1451
+
1452
+ 8. Limitation of Liability. In no event and under no legal theory,
1453
+ whether in tort (including negligence), contract, or otherwise,
1454
+ unless required by applicable law (such as deliberate and grossly
1455
+ negligent acts) or agreed to in writing, shall any Contributor be
1456
+ liable to You for damages, including any direct, indirect, special,
1457
+ incidental, or consequential damages of any character arising as a
1458
+ result of this License or out of the use or inability to use the
1459
+ Work (including but not limited to damages for loss of goodwill,
1460
+ work stoppage, computer failure or malfunction, or any and all
1461
+ other commercial damages or losses), even if such Contributor
1462
+ has been advised of the possibility of such damages.
1463
+
1464
+ 9. Accepting Warranty or Additional Liability. While redistributing
1465
+ the Work or Derivative Works thereof, You may choose to offer,
1466
+ and charge a fee for, acceptance of support, warranty, indemnity,
1467
+ or other liability obligations and/or rights consistent with this
1468
+ License. However, in accepting such obligations, You may act only
1469
+ on Your own behalf and on Your sole responsibility, not on behalf
1470
+ of any other Contributor, and only if You agree to indemnify,
1471
+ defend, and hold each Contributor harmless for any liability
1472
+ incurred by, or claims asserted against, such Contributor by reason
1473
+ of your accepting any such warranty or additional liability.
1474
+
1475
+ END OF TERMS AND CONDITIONS
1476
+
1477
+ APPENDIX: How to apply the Apache License to your work.
1478
+
1479
+ To apply the Apache License to your work, attach the following
1480
+ boilerplate notice, with the fields enclosed by brackets "{}"
1481
+ replaced with your own identifying information. (Don't include
1482
+ the brackets!) The text should be enclosed in the appropriate
1483
+ comment syntax for the file format. We also recommend that a
1484
+ file or class name and description of purpose be included on the
1485
+ same "printed page" as the copyright notice for easier
1486
+ identification within third-party archives.
1487
+
1488
+ Copyright 2017 - 2022 R. Thomas
1489
+ Copyright 2017 - 2022 Quarkslab
1490
+
1491
+ Licensed under the Apache License, Version 2.0 (the "License");
1492
+ you may not use this file except in compliance with the License.
1493
+ You may obtain a copy of the License at
1494
+
1495
+ http://www.apache.org/licenses/LICENSE-2.0
1496
+
1497
+ Unless required by applicable law or agreed to in writing, software
1498
+ distributed under the License is distributed on an "AS IS" BASIS,
1499
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1500
+ See the License for the specific language governing permissions and
1501
+ limitations under the License.
1502
+ """
1503
+ """
1504
+
1505
+ - OpenSSL, located at deps/openssl, is licensed as follows:
1506
+ """
1507
+ Apache License
1508
+ Version 2.0, January 2004
1509
+ https://www.apache.org/licenses/
1510
+
1511
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1512
+
1513
+ 1. Definitions.
1514
+
1515
+ "License" shall mean the terms and conditions for use, reproduction,
1516
+ and distribution as defined by Sections 1 through 9 of this document.
1517
+
1518
+ "Licensor" shall mean the copyright owner or entity authorized by
1519
+ the copyright owner that is granting the License.
1520
+
1521
+ "Legal Entity" shall mean the union of the acting entity and all
1522
+ other entities that control, are controlled by, or are under common
1523
+ control with that entity. For the purposes of this definition,
1524
+ "control" means (i) the power, direct or indirect, to cause the
1525
+ direction or management of such entity, whether by contract or
1526
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1527
+ outstanding shares, or (iii) beneficial ownership of such entity.
1528
+
1529
+ "You" (or "Your") shall mean an individual or Legal Entity
1530
+ exercising permissions granted by this License.
1531
+
1532
+ "Source" form shall mean the preferred form for making modifications,
1533
+ including but not limited to software source code, documentation
1534
+ source, and configuration files.
1535
+
1536
+ "Object" form shall mean any form resulting from mechanical
1537
+ transformation or translation of a Source form, including but
1538
+ not limited to compiled object code, generated documentation,
1539
+ and conversions to other media types.
1540
+
1541
+ "Work" shall mean the work of authorship, whether in Source or
1542
+ Object form, made available under the License, as indicated by a
1543
+ copyright notice that is included in or attached to the work
1544
+ (an example is provided in the Appendix below).
1545
+
1546
+ "Derivative Works" shall mean any work, whether in Source or Object
1547
+ form, that is based on (or derived from) the Work and for which the
1548
+ editorial revisions, annotations, elaborations, or other modifications
1549
+ represent, as a whole, an original work of authorship. For the purposes
1550
+ of this License, Derivative Works shall not include works that remain
1551
+ separable from, or merely link (or bind by name) to the interfaces of,
1552
+ the Work and Derivative Works thereof.
1553
+
1554
+ "Contribution" shall mean any work of authorship, including
1555
+ the original version of the Work and any modifications or additions
1556
+ to that Work or Derivative Works thereof, that is intentionally
1557
+ submitted to Licensor for inclusion in the Work by the copyright owner
1558
+ or by an individual or Legal Entity authorized to submit on behalf of
1559
+ the copyright owner. For the purposes of this definition, "submitted"
1560
+ means any form of electronic, verbal, or written communication sent
1561
+ to the Licensor or its representatives, including but not limited to
1562
+ communication on electronic mailing lists, source code control systems,
1563
+ and issue tracking systems that are managed by, or on behalf of, the
1564
+ Licensor for the purpose of discussing and improving the Work, but
1565
+ excluding communication that is conspicuously marked or otherwise
1566
+ designated in writing by the copyright owner as "Not a Contribution."
1567
+
1568
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1569
+ on behalf of whom a Contribution has been received by Licensor and
1570
+ subsequently incorporated within the Work.
1571
+
1572
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1573
+ this License, each Contributor hereby grants to You a perpetual,
1574
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1575
+ copyright license to reproduce, prepare Derivative Works of,
1576
+ publicly display, publicly perform, sublicense, and distribute the
1577
+ Work and such Derivative Works in Source or Object form.
1578
+
1579
+ 3. Grant of Patent License. Subject to the terms and conditions of
1580
+ this License, each Contributor hereby grants to You a perpetual,
1581
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1582
+ (except as stated in this section) patent license to make, have made,
1583
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1584
+ where such license applies only to those patent claims licensable
1585
+ by such Contributor that are necessarily infringed by their
1586
+ Contribution(s) alone or by combination of their Contribution(s)
1587
+ with the Work to which such Contribution(s) was submitted. If You
1588
+ institute patent litigation against any entity (including a
1589
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1590
+ or a Contribution incorporated within the Work constitutes direct
1591
+ or contributory patent infringement, then any patent licenses
1592
+ granted to You under this License for that Work shall terminate
1593
+ as of the date such litigation is filed.
1594
+
1595
+ 4. Redistribution. You may reproduce and distribute copies of the
1596
+ Work or Derivative Works thereof in any medium, with or without
1597
+ modifications, and in Source or Object form, provided that You
1598
+ meet the following conditions:
1599
+
1600
+ (a) You must give any other recipients of the Work or
1601
+ Derivative Works a copy of this License; and
1602
+
1603
+ (b) You must cause any modified files to carry prominent notices
1604
+ stating that You changed the files; and
1605
+
1606
+ (c) You must retain, in the Source form of any Derivative Works
1607
+ that You distribute, all copyright, patent, trademark, and
1608
+ attribution notices from the Source form of the Work,
1609
+ excluding those notices that do not pertain to any part of
1610
+ the Derivative Works; and
1611
+
1612
+ (d) If the Work includes a "NOTICE" text file as part of its
1613
+ distribution, then any Derivative Works that You distribute must
1614
+ include a readable copy of the attribution notices contained
1615
+ within such NOTICE file, excluding those notices that do not
1616
+ pertain to any part of the Derivative Works, in at least one
1617
+ of the following places: within a NOTICE text file distributed
1618
+ as part of the Derivative Works; within the Source form or
1619
+ documentation, if provided along with the Derivative Works; or,
1620
+ within a display generated by the Derivative Works, if and
1621
+ wherever such third-party notices normally appear. The contents
1622
+ of the NOTICE file are for informational purposes only and
1623
+ do not modify the License. You may add Your own attribution
1624
+ notices within Derivative Works that You distribute, alongside
1625
+ or as an addendum to the NOTICE text from the Work, provided
1626
+ that such additional attribution notices cannot be construed
1627
+ as modifying the License.
1628
+
1629
+ You may add Your own copyright statement to Your modifications and
1630
+ may provide additional or different license terms and conditions
1631
+ for use, reproduction, or distribution of Your modifications, or
1632
+ for any such Derivative Works as a whole, provided Your use,
1633
+ reproduction, and distribution of the Work otherwise complies with
1634
+ the conditions stated in this License.
1635
+
1636
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1637
+ any Contribution intentionally submitted for inclusion in the Work
1638
+ by You to the Licensor shall be under the terms and conditions of
1639
+ this License, without any additional terms or conditions.
1640
+ Notwithstanding the above, nothing herein shall supersede or modify
1641
+ the terms of any separate license agreement you may have executed
1642
+ with Licensor regarding such Contributions.
1643
+
1644
+ 6. Trademarks. This License does not grant permission to use the trade
1645
+ names, trademarks, service marks, or product names of the Licensor,
1646
+ except as required for reasonable and customary use in describing the
1647
+ origin of the Work and reproducing the content of the NOTICE file.
1648
+
1649
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1650
+ agreed to in writing, Licensor provides the Work (and each
1651
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1652
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1653
+ implied, including, without limitation, any warranties or conditions
1654
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1655
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1656
+ appropriateness of using or redistributing the Work and assume any
1657
+ risks associated with Your exercise of permissions under this License.
1658
+
1659
+ 8. Limitation of Liability. In no event and under no legal theory,
1660
+ whether in tort (including negligence), contract, or otherwise,
1661
+ unless required by applicable law (such as deliberate and grossly
1662
+ negligent acts) or agreed to in writing, shall any Contributor be
1663
+ liable to You for damages, including any direct, indirect, special,
1664
+ incidental, or consequential damages of any character arising as a
1665
+ result of this License or out of the use or inability to use the
1666
+ Work (including but not limited to damages for loss of goodwill,
1667
+ work stoppage, computer failure or malfunction, or any and all
1668
+ other commercial damages or losses), even if such Contributor
1669
+ has been advised of the possibility of such damages.
1670
+
1671
+ 9. Accepting Warranty or Additional Liability. While redistributing
1672
+ the Work or Derivative Works thereof, You may choose to offer,
1673
+ and charge a fee for, acceptance of support, warranty, indemnity,
1674
+ or other liability obligations and/or rights consistent with this
1675
+ License. However, in accepting such obligations, You may act only
1676
+ on Your own behalf and on Your sole responsibility, not on behalf
1677
+ of any other Contributor, and only if You agree to indemnify,
1678
+ defend, and hold each Contributor harmless for any liability
1679
+ incurred by, or claims asserted against, such Contributor by reason
1680
+ of your accepting any such warranty or additional liability.
1681
+
1682
+ END OF TERMS AND CONDITIONS
1683
+ """
1684
+
1685
+ - Punycode.js, located at lib/punycode.js, is licensed as follows:
1686
+ """
1687
+ Copyright Mathias Bynens <https://mathiasbynens.be/>
1688
+
1689
+ Permission is hereby granted, free of charge, to any person obtaining
1690
+ a copy of this software and associated documentation files (the
1691
+ "Software"), to deal in the Software without restriction, including
1692
+ without limitation the rights to use, copy, modify, merge, publish,
1693
+ distribute, sublicense, and/or sell copies of the Software, and to
1694
+ permit persons to whom the Software is furnished to do so, subject to
1695
+ the following conditions:
1696
+
1697
+ The above copyright notice and this permission notice shall be
1698
+ included in all copies or substantial portions of the Software.
1699
+
1700
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1701
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1702
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1703
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1704
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1705
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1706
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1707
+ """
1708
+
1709
+ - V8, located at deps/v8, is licensed as follows:
1710
+ """
1711
+ This license applies to all parts of V8 that are not externally
1712
+ maintained libraries. The externally maintained libraries used by V8
1713
+ are:
1714
+
1715
+ - PCRE test suite, located in
1716
+ test/mjsunit/third_party/regexp-pcre/regexp-pcre.js. This is based on the
1717
+ test suite from PCRE-7.3, which is copyrighted by the University
1718
+ of Cambridge and Google, Inc. The copyright notice and license
1719
+ are embedded in regexp-pcre.js.
1720
+
1721
+ - Layout tests, located in test/mjsunit/third_party/object-keys. These are
1722
+ based on layout tests from webkit.org which are copyrighted by
1723
+ Apple Computer, Inc. and released under a 3-clause BSD license.
1724
+
1725
+ - Strongtalk assembler, the basis of the files assembler-arm-inl.h,
1726
+ assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h,
1727
+ assembler-ia32.cc, assembler-ia32.h, assembler-x64-inl.h,
1728
+ assembler-x64.cc, assembler-x64.h, assembler.cc and assembler.h.
1729
+ This code is copyrighted by Sun Microsystems Inc. and released
1730
+ under a 3-clause BSD license.
1731
+
1732
+ - Valgrind client API header, located at third_party/valgrind/valgrind.h
1733
+ This is released under the BSD license.
1734
+
1735
+ - The Wasm C/C++ API headers, located at third_party/wasm-api/wasm.{h,hh}
1736
+ This is released under the Apache license. The API's upstream prototype
1737
+ implementation also formed the basis of V8's implementation in
1738
+ src/wasm/c-api.cc.
1739
+
1740
+ These libraries have their own licenses; we recommend you read them,
1741
+ as their terms may differ from the terms below.
1742
+
1743
+ Further license information can be found in LICENSE files located in
1744
+ sub-directories.
1745
+
1746
+ Copyright 2014, the V8 project authors. All rights reserved.
1747
+ Redistribution and use in source and binary forms, with or without
1748
+ modification, are permitted provided that the following conditions are
1749
+ met:
1750
+
1751
+ * Redistributions of source code must retain the above copyright
1752
+ notice, this list of conditions and the following disclaimer.
1753
+ * Redistributions in binary form must reproduce the above
1754
+ copyright notice, this list of conditions and the following
1755
+ disclaimer in the documentation and/or other materials provided
1756
+ with the distribution.
1757
+ * Neither the name of Google Inc. nor the names of its
1758
+ contributors may be used to endorse or promote products derived
1759
+ from this software without specific prior written permission.
1760
+
1761
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1762
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1763
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1764
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1765
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1766
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1767
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1768
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1769
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1770
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1771
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1772
+ """
1773
+
1774
+ - SipHash, located at deps/v8/src/third_party/siphash, is licensed as follows:
1775
+ """
1776
+ SipHash reference C implementation
1777
+
1778
+ Copyright (c) 2016 Jean-Philippe Aumasson <jeanphilippe.aumasson@gmail.com>
1779
+
1780
+ To the extent possible under law, the author(s) have dedicated all
1781
+ copyright and related and neighboring rights to this software to the public
1782
+ domain worldwide. This software is distributed without any warranty.
1783
+ """
1784
+
1785
+ - zlib, located at deps/zlib, is licensed as follows:
1786
+ """
1787
+ zlib.h -- interface of the 'zlib' general purpose compression library
1788
+ version 1.3.1, January 22nd, 2024
1789
+
1790
+ Copyright (C) 1995-2024 Jean-loup Gailly and Mark Adler
1791
+
1792
+ This software is provided 'as-is', without any express or implied
1793
+ warranty. In no event will the authors be held liable for any damages
1794
+ arising from the use of this software.
1795
+
1796
+ Permission is granted to anyone to use this software for any purpose,
1797
+ including commercial applications, and to alter it and redistribute it
1798
+ freely, subject to the following restrictions:
1799
+
1800
+ 1. The origin of this software must not be misrepresented; you must not
1801
+ claim that you wrote the original software. If you use this software
1802
+ in a product, an acknowledgment in the product documentation would be
1803
+ appreciated but is not required.
1804
+ 2. Altered source versions must be plainly marked as such, and must not be
1805
+ misrepresented as being the original software.
1806
+ 3. This notice may not be removed or altered from any source distribution.
1807
+
1808
+ Jean-loup Gailly Mark Adler
1809
+ jloup@gzip.org madler@alumni.caltech.edu
1810
+ """
1811
+
1812
+ - simdjson, located at deps/simdjson, is licensed as follows:
1813
+ """
1814
+ Apache License
1815
+ Version 2.0, January 2004
1816
+ http://www.apache.org/licenses/
1817
+
1818
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1819
+
1820
+ 1. Definitions.
1821
+
1822
+ "License" shall mean the terms and conditions for use, reproduction,
1823
+ and distribution as defined by Sections 1 through 9 of this document.
1824
+
1825
+ "Licensor" shall mean the copyright owner or entity authorized by
1826
+ the copyright owner that is granting the License.
1827
+
1828
+ "Legal Entity" shall mean the union of the acting entity and all
1829
+ other entities that control, are controlled by, or are under common
1830
+ control with that entity. For the purposes of this definition,
1831
+ "control" means (i) the power, direct or indirect, to cause the
1832
+ direction or management of such entity, whether by contract or
1833
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1834
+ outstanding shares, or (iii) beneficial ownership of such entity.
1835
+
1836
+ "You" (or "Your") shall mean an individual or Legal Entity
1837
+ exercising permissions granted by this License.
1838
+
1839
+ "Source" form shall mean the preferred form for making modifications,
1840
+ including but not limited to software source code, documentation
1841
+ source, and configuration files.
1842
+
1843
+ "Object" form shall mean any form resulting from mechanical
1844
+ transformation or translation of a Source form, including but
1845
+ not limited to compiled object code, generated documentation,
1846
+ and conversions to other media types.
1847
+
1848
+ "Work" shall mean the work of authorship, whether in Source or
1849
+ Object form, made available under the License, as indicated by a
1850
+ copyright notice that is included in or attached to the work
1851
+ (an example is provided in the Appendix below).
1852
+
1853
+ "Derivative Works" shall mean any work, whether in Source or Object
1854
+ form, that is based on (or derived from) the Work and for which the
1855
+ editorial revisions, annotations, elaborations, or other modifications
1856
+ represent, as a whole, an original work of authorship. For the purposes
1857
+ of this License, Derivative Works shall not include works that remain
1858
+ separable from, or merely link (or bind by name) to the interfaces of,
1859
+ the Work and Derivative Works thereof.
1860
+
1861
+ "Contribution" shall mean any work of authorship, including
1862
+ the original version of the Work and any modifications or additions
1863
+ to that Work or Derivative Works thereof, that is intentionally
1864
+ submitted to Licensor for inclusion in the Work by the copyright owner
1865
+ or by an individual or Legal Entity authorized to submit on behalf of
1866
+ the copyright owner. For the purposes of this definition, "submitted"
1867
+ means any form of electronic, verbal, or written communication sent
1868
+ to the Licensor or its representatives, including but not limited to
1869
+ communication on electronic mailing lists, source code control systems,
1870
+ and issue tracking systems that are managed by, or on behalf of, the
1871
+ Licensor for the purpose of discussing and improving the Work, but
1872
+ excluding communication that is conspicuously marked or otherwise
1873
+ designated in writing by the copyright owner as "Not a Contribution."
1874
+
1875
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1876
+ on behalf of whom a Contribution has been received by Licensor and
1877
+ subsequently incorporated within the Work.
1878
+
1879
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1880
+ this License, each Contributor hereby grants to You a perpetual,
1881
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1882
+ copyright license to reproduce, prepare Derivative Works of,
1883
+ publicly display, publicly perform, sublicense, and distribute the
1884
+ Work and such Derivative Works in Source or Object form.
1885
+
1886
+ 3. Grant of Patent License. Subject to the terms and conditions of
1887
+ this License, each Contributor hereby grants to You a perpetual,
1888
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1889
+ (except as stated in this section) patent license to make, have made,
1890
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1891
+ where such license applies only to those patent claims licensable
1892
+ by such Contributor that are necessarily infringed by their
1893
+ Contribution(s) alone or by combination of their Contribution(s)
1894
+ with the Work to which such Contribution(s) was submitted. If You
1895
+ institute patent litigation against any entity (including a
1896
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1897
+ or a Contribution incorporated within the Work constitutes direct
1898
+ or contributory patent infringement, then any patent licenses
1899
+ granted to You under this License for that Work shall terminate
1900
+ as of the date such litigation is filed.
1901
+
1902
+ 4. Redistribution. You may reproduce and distribute copies of the
1903
+ Work or Derivative Works thereof in any medium, with or without
1904
+ modifications, and in Source or Object form, provided that You
1905
+ meet the following conditions:
1906
+
1907
+ (a) You must give any other recipients of the Work or
1908
+ Derivative Works a copy of this License; and
1909
+
1910
+ (b) You must cause any modified files to carry prominent notices
1911
+ stating that You changed the files; and
1912
+
1913
+ (c) You must retain, in the Source form of any Derivative Works
1914
+ that You distribute, all copyright, patent, trademark, and
1915
+ attribution notices from the Source form of the Work,
1916
+ excluding those notices that do not pertain to any part of
1917
+ the Derivative Works; and
1918
+
1919
+ (d) If the Work includes a "NOTICE" text file as part of its
1920
+ distribution, then any Derivative Works that You distribute must
1921
+ include a readable copy of the attribution notices contained
1922
+ within such NOTICE file, excluding those notices that do not
1923
+ pertain to any part of the Derivative Works, in at least one
1924
+ of the following places: within a NOTICE text file distributed
1925
+ as part of the Derivative Works; within the Source form or
1926
+ documentation, if provided along with the Derivative Works; or,
1927
+ within a display generated by the Derivative Works, if and
1928
+ wherever such third-party notices normally appear. The contents
1929
+ of the NOTICE file are for informational purposes only and
1930
+ do not modify the License. You may add Your own attribution
1931
+ notices within Derivative Works that You distribute, alongside
1932
+ or as an addendum to the NOTICE text from the Work, provided
1933
+ that such additional attribution notices cannot be construed
1934
+ as modifying the License.
1935
+
1936
+ You may add Your own copyright statement to Your modifications and
1937
+ may provide additional or different license terms and conditions
1938
+ for use, reproduction, or distribution of Your modifications, or
1939
+ for any such Derivative Works as a whole, provided Your use,
1940
+ reproduction, and distribution of the Work otherwise complies with
1941
+ the conditions stated in this License.
1942
+
1943
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1944
+ any Contribution intentionally submitted for inclusion in the Work
1945
+ by You to the Licensor shall be under the terms and conditions of
1946
+ this License, without any additional terms or conditions.
1947
+ Notwithstanding the above, nothing herein shall supersede or modify
1948
+ the terms of any separate license agreement you may have executed
1949
+ with Licensor regarding such Contributions.
1950
+
1951
+ 6. Trademarks. This License does not grant permission to use the trade
1952
+ names, trademarks, service marks, or product names of the Licensor,
1953
+ except as required for reasonable and customary use in describing the
1954
+ origin of the Work and reproducing the content of the NOTICE file.
1955
+
1956
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1957
+ agreed to in writing, Licensor provides the Work (and each
1958
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1959
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1960
+ implied, including, without limitation, any warranties or conditions
1961
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1962
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1963
+ appropriateness of using or redistributing the Work and assume any
1964
+ risks associated with Your exercise of permissions under this License.
1965
+
1966
+ 8. Limitation of Liability. In no event and under no legal theory,
1967
+ whether in tort (including negligence), contract, or otherwise,
1968
+ unless required by applicable law (such as deliberate and grossly
1969
+ negligent acts) or agreed to in writing, shall any Contributor be
1970
+ liable to You for damages, including any direct, indirect, special,
1971
+ incidental, or consequential damages of any character arising as a
1972
+ result of this License or out of the use or inability to use the
1973
+ Work (including but not limited to damages for loss of goodwill,
1974
+ work stoppage, computer failure or malfunction, or any and all
1975
+ other commercial damages or losses), even if such Contributor
1976
+ has been advised of the possibility of such damages.
1977
+
1978
+ 9. Accepting Warranty or Additional Liability. While redistributing
1979
+ the Work or Derivative Works thereof, You may choose to offer,
1980
+ and charge a fee for, acceptance of support, warranty, indemnity,
1981
+ or other liability obligations and/or rights consistent with this
1982
+ License. However, in accepting such obligations, You may act only
1983
+ on Your own behalf and on Your sole responsibility, not on behalf
1984
+ of any other Contributor, and only if You agree to indemnify,
1985
+ defend, and hold each Contributor harmless for any liability
1986
+ incurred by, or claims asserted against, such Contributor by reason
1987
+ of your accepting any such warranty or additional liability.
1988
+
1989
+ END OF TERMS AND CONDITIONS
1990
+
1991
+ APPENDIX: How to apply the Apache License to your work.
1992
+
1993
+ To apply the Apache License to your work, attach the following
1994
+ boilerplate notice, with the fields enclosed by brackets "{}"
1995
+ replaced with your own identifying information. (Don't include
1996
+ the brackets!) The text should be enclosed in the appropriate
1997
+ comment syntax for the file format. We also recommend that a
1998
+ file or class name and description of purpose be included on the
1999
+ same "printed page" as the copyright notice for easier
2000
+ identification within third-party archives.
2001
+
2002
+ Copyright 2018-2025 The simdjson authors
2003
+
2004
+ Licensed under the Apache License, Version 2.0 (the "License");
2005
+ you may not use this file except in compliance with the License.
2006
+ You may obtain a copy of the License at
2007
+
2008
+ http://www.apache.org/licenses/LICENSE-2.0
2009
+
2010
+ Unless required by applicable law or agreed to in writing, software
2011
+ distributed under the License is distributed on an "AS IS" BASIS,
2012
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2013
+ See the License for the specific language governing permissions and
2014
+ limitations under the License.
2015
+ """
2016
+
2017
+ - simdutf, located at deps/v8/third_party/simdutf, is licensed as follows:
2018
+ """
2019
+ Copyright 2021 The simdutf authors
2020
+
2021
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
2022
+ this software and associated documentation files (the "Software"), to deal in
2023
+ the Software without restriction, including without limitation the rights to
2024
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2025
+ the Software, and to permit persons to whom the Software is furnished to do so,
2026
+ subject to the following conditions:
2027
+
2028
+ The above copyright notice and this permission notice shall be included in all
2029
+ copies or substantial portions of the Software.
2030
+
2031
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2032
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2033
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2034
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2035
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2036
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2037
+ """
2038
+
2039
+ - ada, located at deps/ada, is licensed as follows:
2040
+ """
2041
+ Copyright 2023 Yagiz Nizipli and Daniel Lemire
2042
+
2043
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
2044
+ this software and associated documentation files (the "Software"), to deal in
2045
+ the Software without restriction, including without limitation the rights to
2046
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2047
+ the Software, and to permit persons to whom the Software is furnished to do so,
2048
+ subject to the following conditions:
2049
+
2050
+ The above copyright notice and this permission notice shall be included in all
2051
+ copies or substantial portions of the Software.
2052
+
2053
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2054
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2055
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2056
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2057
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2058
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2059
+ """
2060
+
2061
+ - minimatch, located at deps/minimatch, is licensed as follows:
2062
+ """
2063
+ # Blue Oak Model License
2064
+
2065
+ Version 1.0.0
2066
+
2067
+ ## Purpose
2068
+
2069
+ This license gives everyone as much permission to work with
2070
+ this software as possible, while protecting contributors
2071
+ from liability.
2072
+
2073
+ ## Acceptance
2074
+
2075
+ In order to receive this license, you must agree to its
2076
+ rules. The rules of this license are both obligations
2077
+ under that agreement and conditions to your license.
2078
+ You must not do anything with this software that triggers
2079
+ a rule that you cannot or will not follow.
2080
+
2081
+ ## Copyright
2082
+
2083
+ Each contributor licenses you to do everything with this
2084
+ software that would otherwise infringe that contributor's
2085
+ copyright in it.
2086
+
2087
+ ## Notices
2088
+
2089
+ You must ensure that everyone who gets a copy of
2090
+ any part of this software from you, with or without
2091
+ changes, also gets the text of this license or a link to
2092
+ <https://blueoakcouncil.org/license/1.0.0>.
2093
+
2094
+ ## Excuse
2095
+
2096
+ If anyone notifies you in writing that you have not
2097
+ complied with [Notices](#notices), you can keep your
2098
+ license by taking all practical steps to comply within 30
2099
+ days after the notice. If you do not do so, your license
2100
+ ends immediately.
2101
+
2102
+ ## Patent
2103
+
2104
+ Each contributor licenses you to do everything with this
2105
+ software that would otherwise infringe any patent claims
2106
+ they can license or become able to license.
2107
+
2108
+ ## Reliability
2109
+
2110
+ No contributor can revoke this license.
2111
+
2112
+ ## No Liability
2113
+
2114
+ **_As far as the law allows, this software comes as is,
2115
+ without any warranty or condition, and no contributor
2116
+ will be liable to anyone for any damages related to this
2117
+ software or this license, under any kind of legal claim._**
2118
+ """
2119
+
2120
+ - npm, located at deps/npm, is licensed as follows:
2121
+ """
2122
+ The npm application
2123
+ Copyright (c) npm, Inc. and Contributors
2124
+ Licensed on the terms of The Artistic License 2.0
2125
+
2126
+ Node package dependencies of the npm application
2127
+ Copyright (c) their respective copyright owners
2128
+ Licensed on their respective license terms
2129
+
2130
+ The npm public registry at https://registry.npmjs.org
2131
+ and the npm website at https://www.npmjs.com
2132
+ Operated by npm, Inc.
2133
+ Use governed by terms published on https://www.npmjs.com
2134
+
2135
+ "Node.js"
2136
+ Trademark Joyent, Inc., https://joyent.com
2137
+ Neither npm nor npm, Inc. are affiliated with Joyent, Inc.
2138
+
2139
+ The Node.js application
2140
+ Project of Node Foundation, https://nodejs.org
2141
+
2142
+ The npm Logo
2143
+ Copyright (c) Mathias Pettersson and Brian Hammond
2144
+
2145
+ "Gubblebum Blocky" typeface
2146
+ Copyright (c) Tjarda Koster, https://jelloween.deviantart.com
2147
+ Used with permission
2148
+
2149
+ --------
2150
+
2151
+ The Artistic License 2.0
2152
+
2153
+ Copyright (c) 2000-2006, The Perl Foundation.
2154
+
2155
+ Everyone is permitted to copy and distribute verbatim copies
2156
+ of this license document, but changing it is not allowed.
2157
+
2158
+ Preamble
2159
+
2160
+ This license establishes the terms under which a given free software
2161
+ Package may be copied, modified, distributed, and/or redistributed.
2162
+ The intent is that the Copyright Holder maintains some artistic
2163
+ control over the development of that Package while still keeping the
2164
+ Package available as open source and free software.
2165
+
2166
+ You are always permitted to make arrangements wholly outside of this
2167
+ license directly with the Copyright Holder of a given Package. If the
2168
+ terms of this license do not permit the full use that you propose to
2169
+ make of the Package, you should contact the Copyright Holder and seek
2170
+ a different licensing arrangement.
2171
+
2172
+ Definitions
2173
+
2174
+ "Copyright Holder" means the individual(s) or organization(s)
2175
+ named in the copyright notice for the entire Package.
2176
+
2177
+ "Contributor" means any party that has contributed code or other
2178
+ material to the Package, in accordance with the Copyright Holder's
2179
+ procedures.
2180
+
2181
+ "You" and "your" means any person who would like to copy,
2182
+ distribute, or modify the Package.
2183
+
2184
+ "Package" means the collection of files distributed by the
2185
+ Copyright Holder, and derivatives of that collection and/or of
2186
+ those files. A given Package may consist of either the Standard
2187
+ Version, or a Modified Version.
2188
+
2189
+ "Distribute" means providing a copy of the Package or making it
2190
+ accessible to anyone else, or in the case of a company or
2191
+ organization, to others outside of your company or organization.
2192
+
2193
+ "Distributor Fee" means any fee that you charge for Distributing
2194
+ this Package or providing support for this Package to another
2195
+ party. It does not mean licensing fees.
2196
+
2197
+ "Standard Version" refers to the Package if it has not been
2198
+ modified, or has been modified only in ways explicitly requested
2199
+ by the Copyright Holder.
2200
+
2201
+ "Modified Version" means the Package, if it has been changed, and
2202
+ such changes were not explicitly requested by the Copyright
2203
+ Holder.
2204
+
2205
+ "Original License" means this Artistic License as Distributed with
2206
+ the Standard Version of the Package, in its current version or as
2207
+ it may be modified by The Perl Foundation in the future.
2208
+
2209
+ "Source" form means the source code, documentation source, and
2210
+ configuration files for the Package.
2211
+
2212
+ "Compiled" form means the compiled bytecode, object code, binary,
2213
+ or any other form resulting from mechanical transformation or
2214
+ translation of the Source form.
2215
+
2216
+ Permission for Use and Modification Without Distribution
2217
+
2218
+ (1) You are permitted to use the Standard Version and create and use
2219
+ Modified Versions for any purpose without restriction, provided that
2220
+ you do not Distribute the Modified Version.
2221
+
2222
+ Permissions for Redistribution of the Standard Version
2223
+
2224
+ (2) You may Distribute verbatim copies of the Source form of the
2225
+ Standard Version of this Package in any medium without restriction,
2226
+ either gratis or for a Distributor Fee, provided that you duplicate
2227
+ all of the original copyright notices and associated disclaimers. At
2228
+ your discretion, such verbatim copies may or may not include a
2229
+ Compiled form of the Package.
2230
+
2231
+ (3) You may apply any bug fixes, portability changes, and other
2232
+ modifications made available from the Copyright Holder. The resulting
2233
+ Package will still be considered the Standard Version, and as such
2234
+ will be subject to the Original License.
2235
+
2236
+ Distribution of Modified Versions of the Package as Source
2237
+
2238
+ (4) You may Distribute your Modified Version as Source (either gratis
2239
+ or for a Distributor Fee, and with or without a Compiled form of the
2240
+ Modified Version) provided that you clearly document how it differs
2241
+ from the Standard Version, including, but not limited to, documenting
2242
+ any non-standard features, executables, or modules, and provided that
2243
+ you do at least ONE of the following:
2244
+
2245
+ (a) make the Modified Version available to the Copyright Holder
2246
+ of the Standard Version, under the Original License, so that the
2247
+ Copyright Holder may include your modifications in the Standard
2248
+ Version.
2249
+
2250
+ (b) ensure that installation of your Modified Version does not
2251
+ prevent the user installing or running the Standard Version. In
2252
+ addition, the Modified Version must bear a name that is different
2253
+ from the name of the Standard Version.
2254
+
2255
+ (c) allow anyone who receives a copy of the Modified Version to
2256
+ make the Source form of the Modified Version available to others
2257
+ under
2258
+
2259
+ (i) the Original License or
2260
+
2261
+ (ii) a license that permits the licensee to freely copy,
2262
+ modify and redistribute the Modified Version using the same
2263
+ licensing terms that apply to the copy that the licensee
2264
+ received, and requires that the Source form of the Modified
2265
+ Version, and of any works derived from it, be made freely
2266
+ available in that license fees are prohibited but Distributor
2267
+ Fees are allowed.
2268
+
2269
+ Distribution of Compiled Forms of the Standard Version
2270
+ or Modified Versions without the Source
2271
+
2272
+ (5) You may Distribute Compiled forms of the Standard Version without
2273
+ the Source, provided that you include complete instructions on how to
2274
+ get the Source of the Standard Version. Such instructions must be
2275
+ valid at the time of your distribution. If these instructions, at any
2276
+ time while you are carrying out such distribution, become invalid, you
2277
+ must provide new instructions on demand or cease further distribution.
2278
+ If you provide valid instructions or cease distribution within thirty
2279
+ days after you become aware that the instructions are invalid, then
2280
+ you do not forfeit any of your rights under this license.
2281
+
2282
+ (6) You may Distribute a Modified Version in Compiled form without
2283
+ the Source, provided that you comply with Section 4 with respect to
2284
+ the Source of the Modified Version.
2285
+
2286
+ Aggregating or Linking the Package
2287
+
2288
+ (7) You may aggregate the Package (either the Standard Version or
2289
+ Modified Version) with other packages and Distribute the resulting
2290
+ aggregation provided that you do not charge a licensing fee for the
2291
+ Package. Distributor Fees are permitted, and licensing fees for other
2292
+ components in the aggregation are permitted. The terms of this license
2293
+ apply to the use and Distribution of the Standard or Modified Versions
2294
+ as included in the aggregation.
2295
+
2296
+ (8) You are permitted to link Modified and Standard Versions with
2297
+ other works, to embed the Package in a larger work of your own, or to
2298
+ build stand-alone binary or bytecode versions of applications that
2299
+ include the Package, and Distribute the result without restriction,
2300
+ provided the result does not expose a direct interface to the Package.
2301
+
2302
+ Items That are Not Considered Part of a Modified Version
2303
+
2304
+ (9) Works (including, but not limited to, modules and scripts) that
2305
+ merely extend or make use of the Package, do not, by themselves, cause
2306
+ the Package to be a Modified Version. In addition, such works are not
2307
+ considered parts of the Package itself, and are not subject to the
2308
+ terms of this license.
2309
+
2310
+ General Provisions
2311
+
2312
+ (10) Any use, modification, and distribution of the Standard or
2313
+ Modified Versions is governed by this Artistic License. By using,
2314
+ modifying or distributing the Package, you accept this license. Do not
2315
+ use, modify, or distribute the Package, if you do not accept this
2316
+ license.
2317
+
2318
+ (11) If your Modified Version has been derived from a Modified
2319
+ Version made by someone other than you, you are nevertheless required
2320
+ to ensure that your Modified Version complies with the requirements of
2321
+ this license.
2322
+
2323
+ (12) This license does not grant you the right to use any trademark,
2324
+ service mark, tradename, or logo of the Copyright Holder.
2325
+
2326
+ (13) This license includes the non-exclusive, worldwide,
2327
+ free-of-charge patent license to make, have made, use, offer to sell,
2328
+ sell, import and otherwise transfer the Package with respect to any
2329
+ patent claims licensable by the Copyright Holder that are necessarily
2330
+ infringed by the Package. If you institute patent litigation
2331
+ (including a cross-claim or counterclaim) against any party alleging
2332
+ that the Package constitutes direct or contributory patent
2333
+ infringement, then this Artistic License to you shall terminate on the
2334
+ date that such litigation is filed.
2335
+
2336
+ (14) Disclaimer of Warranty:
2337
+ THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS
2338
+ IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
2339
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
2340
+ NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL
2341
+ LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL
2342
+ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
2343
+ DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF
2344
+ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2345
+
2346
+ --------
2347
+ """
2348
+
2349
+ - GYP, located at tools/gyp, is licensed as follows:
2350
+ """
2351
+ Copyright (c) 2020 Node.js contributors. All rights reserved.
2352
+ Copyright (c) 2009 Google Inc. All rights reserved.
2353
+
2354
+ Redistribution and use in source and binary forms, with or without
2355
+ modification, are permitted provided that the following conditions are
2356
+ met:
2357
+
2358
+ * Redistributions of source code must retain the above copyright
2359
+ notice, this list of conditions and the following disclaimer.
2360
+ * Redistributions in binary form must reproduce the above
2361
+ copyright notice, this list of conditions and the following disclaimer
2362
+ in the documentation and/or other materials provided with the
2363
+ distribution.
2364
+ * Neither the name of Google Inc. nor the names of its
2365
+ contributors may be used to endorse or promote products derived from
2366
+ this software without specific prior written permission.
2367
+
2368
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2369
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2370
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2371
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2372
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2373
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2374
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2375
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2376
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2377
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2378
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2379
+ """
2380
+
2381
+ - inspector_protocol, located at deps/inspector_protocol, is licensed as follows:
2382
+ """
2383
+ // Copyright 2016 The Chromium Authors.
2384
+ //
2385
+ // Redistribution and use in source and binary forms, with or without
2386
+ // modification, are permitted provided that the following conditions are
2387
+ // met:
2388
+ //
2389
+ // * Redistributions of source code must retain the above copyright
2390
+ // notice, this list of conditions and the following disclaimer.
2391
+ // * Redistributions in binary form must reproduce the above
2392
+ // copyright notice, this list of conditions and the following disclaimer
2393
+ // in the documentation and/or other materials provided with the
2394
+ // distribution.
2395
+ // * Neither the name of Google Inc. nor the names of its
2396
+ // contributors may be used to endorse or promote products derived from
2397
+ // this software without specific prior written permission.
2398
+ //
2399
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2400
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2401
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2402
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2403
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2404
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2405
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2406
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2407
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2408
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2409
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2410
+ """
2411
+
2412
+ - jinja2, located at tools/inspector_protocol/jinja2, is licensed as follows:
2413
+ """
2414
+ Copyright (c) 2009 by the Jinja Team, see AUTHORS for more details.
2415
+
2416
+ Some rights reserved.
2417
+
2418
+ Redistribution and use in source and binary forms, with or without
2419
+ modification, are permitted provided that the following conditions are
2420
+ met:
2421
+
2422
+ * Redistributions of source code must retain the above copyright
2423
+ notice, this list of conditions and the following disclaimer.
2424
+
2425
+ * Redistributions in binary form must reproduce the above
2426
+ copyright notice, this list of conditions and the following
2427
+ disclaimer in the documentation and/or other materials provided
2428
+ with the distribution.
2429
+
2430
+ * The names of the contributors may not be used to endorse or
2431
+ promote products derived from this software without specific
2432
+ prior written permission.
2433
+
2434
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2435
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2436
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2437
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2438
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2439
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2440
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2441
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2442
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2443
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2444
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2445
+ """
2446
+
2447
+ - markupsafe, located at tools/inspector_protocol/markupsafe, is licensed as follows:
2448
+ """
2449
+ Copyright (c) 2010 by Armin Ronacher and contributors. See AUTHORS
2450
+ for more details.
2451
+
2452
+ Some rights reserved.
2453
+
2454
+ Redistribution and use in source and binary forms of the software as well
2455
+ as documentation, with or without modification, are permitted provided
2456
+ that the following conditions are met:
2457
+
2458
+ * Redistributions of source code must retain the above copyright
2459
+ notice, this list of conditions and the following disclaimer.
2460
+
2461
+ * Redistributions in binary form must reproduce the above
2462
+ copyright notice, this list of conditions and the following
2463
+ disclaimer in the documentation and/or other materials provided
2464
+ with the distribution.
2465
+
2466
+ * The names of the contributors may not be used to endorse or
2467
+ promote products derived from this software without specific
2468
+ prior written permission.
2469
+
2470
+ THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND
2471
+ CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
2472
+ NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2473
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
2474
+ OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
2475
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
2476
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
2477
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
2478
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
2479
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
2480
+ SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
2481
+ DAMAGE.
2482
+ """
2483
+
2484
+ - cpplint.py, located at tools/cpplint.py, is licensed as follows:
2485
+ """
2486
+ Copyright (c) 2009 Google Inc. All rights reserved.
2487
+
2488
+ Redistribution and use in source and binary forms, with or without
2489
+ modification, are permitted provided that the following conditions are
2490
+ met:
2491
+
2492
+ * Redistributions of source code must retain the above copyright
2493
+ notice, this list of conditions and the following disclaimer.
2494
+ * Redistributions in binary form must reproduce the above
2495
+ copyright notice, this list of conditions and the following disclaimer
2496
+ in the documentation and/or other materials provided with the
2497
+ distribution.
2498
+ * Neither the name of Google Inc. nor the names of its
2499
+ contributors may be used to endorse or promote products derived from
2500
+ this software without specific prior written permission.
2501
+
2502
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2503
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2504
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2505
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2506
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2507
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2508
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2509
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2510
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2511
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2512
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2513
+ """
2514
+
2515
+ - gypi_to_gn.py, located at tools/gypi_to_gn.py, is licensed as follows:
2516
+ """
2517
+ Redistribution and use in source and binary forms, with or without
2518
+ modification, are permitted provided that the following conditions are
2519
+ met:
2520
+
2521
+ * Redistributions of source code must retain the above copyright
2522
+ notice, this list of conditions and the following disclaimer.
2523
+ * Redistributions in binary form must reproduce the above
2524
+ copyright notice, this list of conditions and the following disclaimer
2525
+ in the documentation and/or other materials provided with the
2526
+ distribution.
2527
+ * Neither the name of Google LLC nor the names of its
2528
+ contributors may be used to endorse or promote products derived from
2529
+ this software without specific prior written permission.
2530
+
2531
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2532
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2533
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2534
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2535
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2536
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2537
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2538
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2539
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2540
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2541
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2542
+ """
2543
+
2544
+ - gtest, located at deps/googletest, is licensed as follows:
2545
+ """
2546
+ Copyright 2008, Google Inc.
2547
+ All rights reserved.
2548
+
2549
+ Redistribution and use in source and binary forms, with or without
2550
+ modification, are permitted provided that the following conditions are
2551
+ met:
2552
+
2553
+ * Redistributions of source code must retain the above copyright
2554
+ notice, this list of conditions and the following disclaimer.
2555
+ * Redistributions in binary form must reproduce the above
2556
+ copyright notice, this list of conditions and the following disclaimer
2557
+ in the documentation and/or other materials provided with the
2558
+ distribution.
2559
+ * Neither the name of Google Inc. nor the names of its
2560
+ contributors may be used to endorse or promote products derived from
2561
+ this software without specific prior written permission.
2562
+
2563
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2564
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2565
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2566
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2567
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2568
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2569
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2570
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2571
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2572
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2573
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2574
+ """
2575
+
2576
+ - nghttp2, located at deps/nghttp2, is licensed as follows:
2577
+ """
2578
+ The MIT License
2579
+
2580
+ Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa
2581
+ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors
2582
+
2583
+ Permission is hereby granted, free of charge, to any person obtaining
2584
+ a copy of this software and associated documentation files (the
2585
+ "Software"), to deal in the Software without restriction, including
2586
+ without limitation the rights to use, copy, modify, merge, publish,
2587
+ distribute, sublicense, and/or sell copies of the Software, and to
2588
+ permit persons to whom the Software is furnished to do so, subject to
2589
+ the following conditions:
2590
+
2591
+ The above copyright notice and this permission notice shall be
2592
+ included in all copies or substantial portions of the Software.
2593
+
2594
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2595
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2596
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2597
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2598
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2599
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2600
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2601
+ """
2602
+
2603
+ - large_pages, located at src/large_pages, is licensed as follows:
2604
+ """
2605
+ Copyright (C) 2018 Intel Corporation
2606
+
2607
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2608
+ of this software and associated documentation files (the "Software"),
2609
+ to deal in the Software without restriction, including without limitation
2610
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
2611
+ and/or sell copies of the Software, and to permit persons to whom
2612
+ the Software is furnished to do so, subject to the following conditions:
2613
+
2614
+ The above copyright notice and this permission notice shall be included
2615
+ in all copies or substantial portions of the Software.
2616
+
2617
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
2618
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2619
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
2620
+ THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES
2621
+ OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
2622
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
2623
+ OR OTHER DEALINGS IN THE SOFTWARE.
2624
+ """
2625
+
2626
+ - caja, located at lib/internal/freeze_intrinsics.js, is licensed as follows:
2627
+ """
2628
+ Adapted from SES/Caja - Copyright (C) 2011 Google Inc.
2629
+ Copyright (C) 2018 Agoric
2630
+
2631
+ Licensed under the Apache License, Version 2.0 (the "License");
2632
+ you may not use this file except in compliance with the License.
2633
+ You may obtain a copy of the License at
2634
+
2635
+ http://www.apache.org/licenses/LICENSE-2.0
2636
+
2637
+ Unless required by applicable law or agreed to in writing, software
2638
+ distributed under the License is distributed on an "AS IS" BASIS,
2639
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2640
+ See the License for the specific language governing permissions and
2641
+ limitations under the License.
2642
+ """
2643
+
2644
+ - brotli, located at deps/brotli, is licensed as follows:
2645
+ """
2646
+ Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.
2647
+
2648
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2649
+ of this software and associated documentation files (the "Software"), to deal
2650
+ in the Software without restriction, including without limitation the rights
2651
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2652
+ copies of the Software, and to permit persons to whom the Software is
2653
+ furnished to do so, subject to the following conditions:
2654
+
2655
+ The above copyright notice and this permission notice shall be included in
2656
+ all copies or substantial portions of the Software.
2657
+
2658
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2659
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2660
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2661
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2662
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2663
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2664
+ THE SOFTWARE.
2665
+ """
2666
+
2667
+ - zstd, located at deps/zstd, is licensed as follows:
2668
+ """
2669
+ BSD License
2670
+
2671
+ For Zstandard software
2672
+
2673
+ Copyright (c) Meta Platforms, Inc. and affiliates. All rights reserved.
2674
+
2675
+ Redistribution and use in source and binary forms, with or without modification,
2676
+ are permitted provided that the following conditions are met:
2677
+
2678
+ * Redistributions of source code must retain the above copyright notice, this
2679
+ list of conditions and the following disclaimer.
2680
+
2681
+ * Redistributions in binary form must reproduce the above copyright notice,
2682
+ this list of conditions and the following disclaimer in the documentation
2683
+ and/or other materials provided with the distribution.
2684
+
2685
+ * Neither the name Facebook, nor Meta, nor the names of its contributors may
2686
+ be used to endorse or promote products derived from this software without
2687
+ specific prior written permission.
2688
+
2689
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
2690
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
2691
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
2692
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
2693
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
2694
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
2695
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
2696
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2697
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
2698
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2699
+ """
2700
+
2701
+ - HdrHistogram, located at deps/histogram, is licensed as follows:
2702
+ """
2703
+ The code in this repository code was Written by Gil Tene, Michael Barker,
2704
+ and Matt Warren, and released to the public domain, as explained at
2705
+ http://creativecommons.org/publicdomain/zero/1.0/
2706
+
2707
+ For users of this code who wish to consume it under the "BSD" license
2708
+ rather than under the public domain or CC0 contribution text mentioned
2709
+ above, the code found under this directory is *also* provided under the
2710
+ following license (commonly referred to as the BSD 2-Clause License). This
2711
+ license does not detract from the above stated release of the code into
2712
+ the public domain, and simply represents an additional license granted by
2713
+ the Author.
2714
+
2715
+ -----------------------------------------------------------------------------
2716
+ ** Beginning of "BSD 2-Clause License" text. **
2717
+
2718
+ Copyright (c) 2012, 2013, 2014 Gil Tene
2719
+ Copyright (c) 2014 Michael Barker
2720
+ Copyright (c) 2014 Matt Warren
2721
+ All rights reserved.
2722
+
2723
+ Redistribution and use in source and binary forms, with or without
2724
+ modification, are permitted provided that the following conditions are met:
2725
+
2726
+ 1. Redistributions of source code must retain the above copyright notice,
2727
+ this list of conditions and the following disclaimer.
2728
+
2729
+ 2. Redistributions in binary form must reproduce the above copyright notice,
2730
+ this list of conditions and the following disclaimer in the documentation
2731
+ and/or other materials provided with the distribution.
2732
+
2733
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
2734
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2735
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2736
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
2737
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2738
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2739
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2740
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2741
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2742
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
2743
+ THE POSSIBILITY OF SUCH DAMAGE.
2744
+ """
2745
+
2746
+ - node-heapdump, located at src/heap_utils.cc, is licensed as follows:
2747
+ """
2748
+ ISC License
2749
+
2750
+ Copyright (c) 2012, Ben Noordhuis <info@bnoordhuis.nl>
2751
+
2752
+ Permission to use, copy, modify, and/or distribute this software for any
2753
+ purpose with or without fee is hereby granted, provided that the above
2754
+ copyright notice and this permission notice appear in all copies.
2755
+
2756
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2757
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2758
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2759
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2760
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2761
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
2762
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2763
+
2764
+ === src/compat.h src/compat-inl.h ===
2765
+
2766
+ ISC License
2767
+
2768
+ Copyright (c) 2014, StrongLoop Inc.
2769
+
2770
+ Permission to use, copy, modify, and/or distribute this software for any
2771
+ purpose with or without fee is hereby granted, provided that the above
2772
+ copyright notice and this permission notice appear in all copies.
2773
+
2774
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2775
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2776
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2777
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2778
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2779
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
2780
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2781
+ """
2782
+
2783
+ - rimraf, located at lib/internal/fs/rimraf.js, is licensed as follows:
2784
+ """
2785
+ The ISC License
2786
+
2787
+ Copyright (c) Isaac Z. Schlueter and Contributors
2788
+
2789
+ Permission to use, copy, modify, and/or distribute this software for any
2790
+ purpose with or without fee is hereby granted, provided that the above
2791
+ copyright notice and this permission notice appear in all copies.
2792
+
2793
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2794
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2795
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2796
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2797
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2798
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
2799
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2800
+ """
2801
+
2802
+ - uvwasi, located at deps/uvwasi, is licensed as follows:
2803
+ """
2804
+ MIT License
2805
+
2806
+ Copyright (c) 2019 Colin Ihrig and Contributors
2807
+
2808
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2809
+ of this software and associated documentation files (the "Software"), to deal
2810
+ in the Software without restriction, including without limitation the rights
2811
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2812
+ copies of the Software, and to permit persons to whom the Software is
2813
+ furnished to do so, subject to the following conditions:
2814
+
2815
+ The above copyright notice and this permission notice shall be included in all
2816
+ copies or substantial portions of the Software.
2817
+
2818
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2819
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2820
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2821
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2822
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2823
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2824
+ SOFTWARE.
2825
+ """
2826
+
2827
+ - ngtcp2, located at deps/ngtcp2/ngtcp2/, is licensed as follows:
2828
+ """
2829
+ The MIT License
2830
+
2831
+ Copyright (c) 2016 ngtcp2 contributors
2832
+
2833
+ Permission is hereby granted, free of charge, to any person obtaining
2834
+ a copy of this software and associated documentation files (the
2835
+ "Software"), to deal in the Software without restriction, including
2836
+ without limitation the rights to use, copy, modify, merge, publish,
2837
+ distribute, sublicense, and/or sell copies of the Software, and to
2838
+ permit persons to whom the Software is furnished to do so, subject to
2839
+ the following conditions:
2840
+
2841
+ The above copyright notice and this permission notice shall be
2842
+ included in all copies or substantial portions of the Software.
2843
+
2844
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2845
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2846
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2847
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2848
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2849
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2850
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2851
+ """
2852
+
2853
+ - nghttp3, located at deps/ngtcp2/nghttp3/, is licensed as follows:
2854
+ """
2855
+ The MIT License
2856
+
2857
+ Copyright (c) 2019 nghttp3 contributors
2858
+
2859
+ Permission is hereby granted, free of charge, to any person obtaining
2860
+ a copy of this software and associated documentation files (the
2861
+ "Software"), to deal in the Software without restriction, including
2862
+ without limitation the rights to use, copy, modify, merge, publish,
2863
+ distribute, sublicense, and/or sell copies of the Software, and to
2864
+ permit persons to whom the Software is furnished to do so, subject to
2865
+ the following conditions:
2866
+
2867
+ The above copyright notice and this permission notice shall be
2868
+ included in all copies or substantial portions of the Software.
2869
+
2870
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2871
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2872
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2873
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2874
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2875
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2876
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2877
+ """
2878
+
2879
+ - node-fs-extra, located at lib/internal/fs/cp, is licensed as follows:
2880
+ """
2881
+ (The MIT License)
2882
+
2883
+ Copyright (c) 2011-2017 JP Richardson
2884
+
2885
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
2886
+ (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,
2887
+ merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
2888
+ furnished to do so, subject to the following conditions:
2889
+
2890
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2891
+
2892
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
2893
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
2894
+ OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
2895
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2896
+ """
2897
+
2898
+ - on-exit-leak-free, located at lib/internal/process/finalization, is licensed as follows:
2899
+ """
2900
+ MIT License
2901
+
2902
+ Copyright (c) 2021 Matteo Collina
2903
+
2904
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2905
+ of this software and associated documentation files (the "Software"), to deal
2906
+ in the Software without restriction, including without limitation the rights
2907
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2908
+ copies of the Software, and to permit persons to whom the Software is
2909
+ furnished to do so, subject to the following conditions:
2910
+
2911
+ The above copyright notice and this permission notice shall be included in all
2912
+ copies or substantial portions of the Software.
2913
+
2914
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2915
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2916
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2917
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2918
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2919
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2920
+ SOFTWARE.
2921
+ """
2922
+
2923
+ - sonic-boom, located at lib/internal/streams/fast-utf8-stream.js, is licensed as follows:
2924
+ """
2925
+ MIT License
2926
+
2927
+ Copyright (c) 2017 Matteo Collina
2928
+
2929
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2930
+ of this software and associated documentation files (the "Software"), to deal
2931
+ in the Software without restriction, including without limitation the rights
2932
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2933
+ copies of the Software, and to permit persons to whom the Software is
2934
+ furnished to do so, subject to the following conditions:
2935
+
2936
+ The above copyright notice and this permission notice shall be included in all
2937
+ copies or substantial portions of the Software.
2938
+
2939
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2940
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2941
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2942
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2943
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2944
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2945
+ SOFTWARE.
2946
+ """