patchright 1.48.0__py3-none-win32.whl

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 (406) hide show
  1. patchright/__init__.py +5 -0
  2. patchright/__main__.py +18 -0
  3. patchright/_impl/__init__.py +0 -0
  4. patchright/_impl/__pyinstaller/__init__.py +20 -0
  5. patchright/_impl/__pyinstaller/hook-playwright.async_api.py +17 -0
  6. patchright/_impl/__pyinstaller/hook-playwright.sync_api.py +17 -0
  7. patchright/_impl/_accessibility.py +50 -0
  8. patchright/_impl/_api_structures.py +271 -0
  9. patchright/_impl/_artifact.py +45 -0
  10. patchright/_impl/_assertions.py +779 -0
  11. patchright/_impl/_async_base.py +92 -0
  12. patchright/_impl/_browser.py +243 -0
  13. patchright/_impl/_browser_context.py +724 -0
  14. patchright/_impl/_browser_type.py +264 -0
  15. patchright/_impl/_cdp_session.py +21 -0
  16. patchright/_impl/_clock.py +57 -0
  17. patchright/_impl/_connection.py +554 -0
  18. patchright/_impl/_console_message.py +45 -0
  19. patchright/_impl/_dialog.py +40 -0
  20. patchright/_impl/_download.py +50 -0
  21. patchright/_impl/_driver.py +26 -0
  22. patchright/_impl/_element_handle.py +376 -0
  23. patchright/_impl/_errors.py +44 -0
  24. patchright/_impl/_event_context_manager.py +20 -0
  25. patchright/_impl/_fetch.py +511 -0
  26. patchright/_impl/_file_chooser.py +43 -0
  27. patchright/_impl/_frame.py +755 -0
  28. patchright/_impl/_glob.py +51 -0
  29. patchright/_impl/_greenlets.py +39 -0
  30. patchright/_impl/_har_router.py +99 -0
  31. patchright/_impl/_helper.py +421 -0
  32. patchright/_impl/_impl_to_api_mapping.py +123 -0
  33. patchright/_impl/_input.py +71 -0
  34. patchright/_impl/_js_handle.py +234 -0
  35. patchright/_impl/_json_pipe.py +56 -0
  36. patchright/_impl/_local_utils.py +73 -0
  37. patchright/_impl/_locator.py +784 -0
  38. patchright/_impl/_map.py +19 -0
  39. patchright/_impl/_network.py +934 -0
  40. patchright/_impl/_object_factory.py +91 -0
  41. patchright/_impl/_page.py +1446 -0
  42. patchright/_impl/_path_utils.py +11 -0
  43. patchright/_impl/_playwright.py +51 -0
  44. patchright/_impl/_selectors.py +62 -0
  45. patchright/_impl/_set_input_files_helpers.py +135 -0
  46. patchright/_impl/_str_utils.py +57 -0
  47. patchright/_impl/_stream.py +32 -0
  48. patchright/_impl/_sync_base.py +134 -0
  49. patchright/_impl/_tracing.py +103 -0
  50. patchright/_impl/_transport.py +150 -0
  51. patchright/_impl/_video.py +57 -0
  52. patchright/_impl/_waiter.py +142 -0
  53. patchright/_impl/_web_error.py +22 -0
  54. patchright/_impl/_writable_stream.py +27 -0
  55. patchright/_repo_version.py +12 -0
  56. patchright/async_api/__init__.py +177 -0
  57. patchright/async_api/_context_manager.py +39 -0
  58. patchright/async_api/_generated.py +19960 -0
  59. patchright/driver/LICENSE +2174 -0
  60. patchright/driver/README.md +1 -0
  61. patchright/driver/node.exe +0 -0
  62. patchright/driver/package/README.md +3 -0
  63. patchright/driver/package/ThirdPartyNotices.txt +1548 -0
  64. patchright/driver/package/api.json +1 -0
  65. patchright/driver/package/bin/PrintDeps.exe +0 -0
  66. patchright/driver/package/bin/README.md +2 -0
  67. patchright/driver/package/bin/install_media_pack.ps1 +5 -0
  68. patchright/driver/package/bin/reinstall_chrome_beta_linux.sh +40 -0
  69. patchright/driver/package/bin/reinstall_chrome_beta_mac.sh +13 -0
  70. patchright/driver/package/bin/reinstall_chrome_beta_win.ps1 +24 -0
  71. patchright/driver/package/bin/reinstall_chrome_stable_linux.sh +40 -0
  72. patchright/driver/package/bin/reinstall_chrome_stable_mac.sh +12 -0
  73. patchright/driver/package/bin/reinstall_chrome_stable_win.ps1 +24 -0
  74. patchright/driver/package/bin/reinstall_msedge_beta_linux.sh +40 -0
  75. patchright/driver/package/bin/reinstall_msedge_beta_mac.sh +11 -0
  76. patchright/driver/package/bin/reinstall_msedge_beta_win.ps1 +23 -0
  77. patchright/driver/package/bin/reinstall_msedge_dev_linux.sh +40 -0
  78. patchright/driver/package/bin/reinstall_msedge_dev_mac.sh +11 -0
  79. patchright/driver/package/bin/reinstall_msedge_dev_win.ps1 +23 -0
  80. patchright/driver/package/bin/reinstall_msedge_stable_linux.sh +40 -0
  81. patchright/driver/package/bin/reinstall_msedge_stable_mac.sh +11 -0
  82. patchright/driver/package/bin/reinstall_msedge_stable_win.ps1 +24 -0
  83. patchright/driver/package/browsers.json +57 -0
  84. patchright/driver/package/cli.js +18 -0
  85. patchright/driver/package/index.d.ts +17 -0
  86. patchright/driver/package/index.js +33 -0
  87. patchright/driver/package/index.mjs +28 -0
  88. patchright/driver/package/lib/androidServerImpl.js +69 -0
  89. patchright/driver/package/lib/browserServerImpl.js +92 -0
  90. patchright/driver/package/lib/cli/driver.js +95 -0
  91. patchright/driver/package/lib/cli/program.js +587 -0
  92. patchright/driver/package/lib/cli/programWithTestStub.js +67 -0
  93. patchright/driver/package/lib/client/accessibility.js +50 -0
  94. patchright/driver/package/lib/client/android.js +473 -0
  95. patchright/driver/package/lib/client/api.js +285 -0
  96. patchright/driver/package/lib/client/artifact.js +79 -0
  97. patchright/driver/package/lib/client/browser.js +145 -0
  98. patchright/driver/package/lib/client/browserContext.js +559 -0
  99. patchright/driver/package/lib/client/browserType.js +241 -0
  100. patchright/driver/package/lib/client/cdpSession.js +53 -0
  101. patchright/driver/package/lib/client/channelOwner.js +235 -0
  102. patchright/driver/package/lib/client/clientHelper.js +57 -0
  103. patchright/driver/package/lib/client/clientInstrumentation.js +50 -0
  104. patchright/driver/package/lib/client/clock.js +68 -0
  105. patchright/driver/package/lib/client/connection.js +333 -0
  106. patchright/driver/package/lib/client/consoleMessage.js +55 -0
  107. patchright/driver/package/lib/client/coverage.js +41 -0
  108. patchright/driver/package/lib/client/dialog.js +57 -0
  109. patchright/driver/package/lib/client/download.js +62 -0
  110. patchright/driver/package/lib/client/electron.js +135 -0
  111. patchright/driver/package/lib/client/elementHandle.js +321 -0
  112. patchright/driver/package/lib/client/errors.js +77 -0
  113. patchright/driver/package/lib/client/eventEmitter.js +314 -0
  114. patchright/driver/package/lib/client/events.js +94 -0
  115. patchright/driver/package/lib/client/fetch.js +391 -0
  116. patchright/driver/package/lib/client/fileChooser.js +45 -0
  117. patchright/driver/package/lib/client/frame.js +504 -0
  118. patchright/driver/package/lib/client/harRouter.js +99 -0
  119. patchright/driver/package/lib/client/input.js +111 -0
  120. patchright/driver/package/lib/client/jsHandle.js +121 -0
  121. patchright/driver/package/lib/client/jsonPipe.js +35 -0
  122. patchright/driver/package/lib/client/localUtils.js +36 -0
  123. patchright/driver/package/lib/client/locator.js +441 -0
  124. patchright/driver/package/lib/client/network.js +762 -0
  125. patchright/driver/package/lib/client/page.js +746 -0
  126. patchright/driver/package/lib/client/playwright.js +80 -0
  127. patchright/driver/package/lib/client/selectors.js +67 -0
  128. patchright/driver/package/lib/client/stream.js +54 -0
  129. patchright/driver/package/lib/client/tracing.js +134 -0
  130. patchright/driver/package/lib/client/types.js +24 -0
  131. patchright/driver/package/lib/client/video.js +51 -0
  132. patchright/driver/package/lib/client/waiter.js +158 -0
  133. patchright/driver/package/lib/client/webError.js +37 -0
  134. patchright/driver/package/lib/client/worker.js +71 -0
  135. patchright/driver/package/lib/client/writableStream.js +54 -0
  136. patchright/driver/package/lib/common/socksProxy.js +569 -0
  137. patchright/driver/package/lib/common/timeoutSettings.js +73 -0
  138. patchright/driver/package/lib/common/types.js +5 -0
  139. patchright/driver/package/lib/generated/clockSource.js +7 -0
  140. patchright/driver/package/lib/generated/consoleApiSource.js +7 -0
  141. patchright/driver/package/lib/generated/injectedScriptSource.js +7 -0
  142. patchright/driver/package/lib/generated/pollingRecorderSource.js +7 -0
  143. patchright/driver/package/lib/generated/utilityScriptSource.js +7 -0
  144. patchright/driver/package/lib/generated/webSocketMockSource.js +7 -0
  145. patchright/driver/package/lib/image_tools/colorUtils.js +98 -0
  146. patchright/driver/package/lib/image_tools/compare.js +108 -0
  147. patchright/driver/package/lib/image_tools/imageChannel.js +70 -0
  148. patchright/driver/package/lib/image_tools/stats.js +102 -0
  149. patchright/driver/package/lib/inProcessFactory.js +54 -0
  150. patchright/driver/package/lib/inprocess.js +20 -0
  151. patchright/driver/package/lib/outofprocess.js +67 -0
  152. patchright/driver/package/lib/protocol/debug.js +27 -0
  153. patchright/driver/package/lib/protocol/serializers.js +173 -0
  154. patchright/driver/package/lib/protocol/transport.js +82 -0
  155. patchright/driver/package/lib/protocol/validator.js +2759 -0
  156. patchright/driver/package/lib/protocol/validatorPrimitives.js +139 -0
  157. patchright/driver/package/lib/remote/playwrightConnection.js +274 -0
  158. patchright/driver/package/lib/remote/playwrightServer.js +110 -0
  159. patchright/driver/package/lib/server/accessibility.js +62 -0
  160. patchright/driver/package/lib/server/android/android.js +441 -0
  161. patchright/driver/package/lib/server/android/backendAdb.js +172 -0
  162. patchright/driver/package/lib/server/artifact.js +104 -0
  163. patchright/driver/package/lib/server/bidi/bidiBrowser.js +311 -0
  164. patchright/driver/package/lib/server/bidi/bidiChromium.js +124 -0
  165. patchright/driver/package/lib/server/bidi/bidiConnection.js +206 -0
  166. patchright/driver/package/lib/server/bidi/bidiExecutionContext.js +159 -0
  167. patchright/driver/package/lib/server/bidi/bidiFirefox.js +104 -0
  168. patchright/driver/package/lib/server/bidi/bidiInput.js +158 -0
  169. patchright/driver/package/lib/server/bidi/bidiNetworkManager.js +338 -0
  170. patchright/driver/package/lib/server/bidi/bidiOverCdp.js +103 -0
  171. patchright/driver/package/lib/server/bidi/bidiPage.js +529 -0
  172. patchright/driver/package/lib/server/bidi/bidiPdf.js +140 -0
  173. patchright/driver/package/lib/server/bidi/third_party/bidiDeserializer.js +93 -0
  174. patchright/driver/package/lib/server/bidi/third_party/bidiKeyboard.js +238 -0
  175. patchright/driver/package/lib/server/bidi/third_party/bidiProtocol.js +139 -0
  176. patchright/driver/package/lib/server/bidi/third_party/bidiSerializer.js +144 -0
  177. patchright/driver/package/lib/server/bidi/third_party/firefoxPrefs.js +221 -0
  178. patchright/driver/package/lib/server/browser.js +148 -0
  179. patchright/driver/package/lib/server/browserContext.js +666 -0
  180. patchright/driver/package/lib/server/browserType.js +335 -0
  181. patchright/driver/package/lib/server/chromium/appIcon.png +0 -0
  182. patchright/driver/package/lib/server/chromium/chromium.js +350 -0
  183. patchright/driver/package/lib/server/chromium/chromiumSwitches.js +36 -0
  184. patchright/driver/package/lib/server/chromium/crAccessibility.js +237 -0
  185. patchright/driver/package/lib/server/chromium/crBrowser.js +522 -0
  186. patchright/driver/package/lib/server/chromium/crConnection.js +228 -0
  187. patchright/driver/package/lib/server/chromium/crCoverage.js +246 -0
  188. patchright/driver/package/lib/server/chromium/crDevTools.js +104 -0
  189. patchright/driver/package/lib/server/chromium/crDragDrop.js +143 -0
  190. patchright/driver/package/lib/server/chromium/crExecutionContext.js +149 -0
  191. patchright/driver/package/lib/server/chromium/crInput.js +171 -0
  192. patchright/driver/package/lib/server/chromium/crNetworkManager.js +809 -0
  193. patchright/driver/package/lib/server/chromium/crPage.js +1235 -0
  194. patchright/driver/package/lib/server/chromium/crPdf.js +153 -0
  195. patchright/driver/package/lib/server/chromium/crProtocolHelper.js +133 -0
  196. patchright/driver/package/lib/server/chromium/crServiceWorker.js +111 -0
  197. patchright/driver/package/lib/server/chromium/defaultFontFamilies.js +145 -0
  198. patchright/driver/package/lib/server/chromium/videoRecorder.js +155 -0
  199. patchright/driver/package/lib/server/clock.js +133 -0
  200. patchright/driver/package/lib/server/codegen/csharp.js +299 -0
  201. patchright/driver/package/lib/server/codegen/java.js +235 -0
  202. patchright/driver/package/lib/server/codegen/javascript.js +223 -0
  203. patchright/driver/package/lib/server/codegen/jsonl.js +47 -0
  204. patchright/driver/package/lib/server/codegen/language.js +88 -0
  205. patchright/driver/package/lib/server/codegen/languages.js +30 -0
  206. patchright/driver/package/lib/server/codegen/python.js +265 -0
  207. patchright/driver/package/lib/server/codegen/types.js +5 -0
  208. patchright/driver/package/lib/server/console.js +57 -0
  209. patchright/driver/package/lib/server/cookieStore.js +185 -0
  210. patchright/driver/package/lib/server/debugController.js +234 -0
  211. patchright/driver/package/lib/server/debugger.js +132 -0
  212. patchright/driver/package/lib/server/deviceDescriptors.js +26 -0
  213. patchright/driver/package/lib/server/deviceDescriptorsSource.json +1669 -0
  214. patchright/driver/package/lib/server/dialog.js +71 -0
  215. patchright/driver/package/lib/server/dispatchers/androidDispatcher.js +193 -0
  216. patchright/driver/package/lib/server/dispatchers/artifactDispatcher.js +118 -0
  217. patchright/driver/package/lib/server/dispatchers/browserContextDispatcher.js +368 -0
  218. patchright/driver/package/lib/server/dispatchers/browserDispatcher.js +170 -0
  219. patchright/driver/package/lib/server/dispatchers/browserTypeDispatcher.js +55 -0
  220. patchright/driver/package/lib/server/dispatchers/cdpSessionDispatcher.js +48 -0
  221. patchright/driver/package/lib/server/dispatchers/debugControllerDispatcher.js +103 -0
  222. patchright/driver/package/lib/server/dispatchers/dialogDispatcher.js +44 -0
  223. patchright/driver/package/lib/server/dispatchers/dispatcher.js +395 -0
  224. patchright/driver/package/lib/server/dispatchers/electronDispatcher.js +93 -0
  225. patchright/driver/package/lib/server/dispatchers/elementHandlerDispatcher.js +228 -0
  226. patchright/driver/package/lib/server/dispatchers/frameDispatcher.js +286 -0
  227. patchright/driver/package/lib/server/dispatchers/jsHandleDispatcher.js +97 -0
  228. patchright/driver/package/lib/server/dispatchers/jsonPipeDispatcher.js +59 -0
  229. patchright/driver/package/lib/server/dispatchers/localUtilsDispatcher.js +413 -0
  230. patchright/driver/package/lib/server/dispatchers/networkDispatchers.js +221 -0
  231. patchright/driver/package/lib/server/dispatchers/pageDispatcher.js +367 -0
  232. patchright/driver/package/lib/server/dispatchers/playwrightDispatcher.js +107 -0
  233. patchright/driver/package/lib/server/dispatchers/selectorsDispatcher.js +36 -0
  234. patchright/driver/package/lib/server/dispatchers/streamDispatcher.js +62 -0
  235. patchright/driver/package/lib/server/dispatchers/tracingDispatcher.js +54 -0
  236. patchright/driver/package/lib/server/dispatchers/webSocketRouteDispatcher.js +189 -0
  237. patchright/driver/package/lib/server/dispatchers/writableStreamDispatcher.js +58 -0
  238. patchright/driver/package/lib/server/dom.js +845 -0
  239. patchright/driver/package/lib/server/download.js +60 -0
  240. patchright/driver/package/lib/server/electron/electron.js +296 -0
  241. patchright/driver/package/lib/server/electron/loader.js +57 -0
  242. patchright/driver/package/lib/server/errors.js +68 -0
  243. patchright/driver/package/lib/server/fetch.js +656 -0
  244. patchright/driver/package/lib/server/fileChooser.js +42 -0
  245. patchright/driver/package/lib/server/fileUploadUtils.js +75 -0
  246. patchright/driver/package/lib/server/firefox/ffAccessibility.js +216 -0
  247. patchright/driver/package/lib/server/firefox/ffBrowser.js +460 -0
  248. patchright/driver/package/lib/server/firefox/ffConnection.js +168 -0
  249. patchright/driver/package/lib/server/firefox/ffExecutionContext.js +135 -0
  250. patchright/driver/package/lib/server/firefox/ffInput.js +150 -0
  251. patchright/driver/package/lib/server/firefox/ffNetworkManager.js +233 -0
  252. patchright/driver/package/lib/server/firefox/ffPage.js +559 -0
  253. patchright/driver/package/lib/server/firefox/firefox.js +99 -0
  254. patchright/driver/package/lib/server/formData.js +75 -0
  255. patchright/driver/package/lib/server/frameSelectors.js +171 -0
  256. patchright/driver/package/lib/server/frames.js +1808 -0
  257. patchright/driver/package/lib/server/har/harRecorder.js +139 -0
  258. patchright/driver/package/lib/server/har/harTracer.js +542 -0
  259. patchright/driver/package/lib/server/helper.js +103 -0
  260. patchright/driver/package/lib/server/index.js +114 -0
  261. patchright/driver/package/lib/server/input.js +310 -0
  262. patchright/driver/package/lib/server/instrumentation.js +70 -0
  263. patchright/driver/package/lib/server/isomorphic/utilityScriptSerializers.js +226 -0
  264. patchright/driver/package/lib/server/javascript.js +299 -0
  265. patchright/driver/package/lib/server/launchApp.js +91 -0
  266. patchright/driver/package/lib/server/macEditingCommands.js +139 -0
  267. patchright/driver/package/lib/server/network.js +617 -0
  268. patchright/driver/package/lib/server/page.js +819 -0
  269. patchright/driver/package/lib/server/pipeTransport.js +85 -0
  270. patchright/driver/package/lib/server/playwright.js +88 -0
  271. patchright/driver/package/lib/server/progress.js +102 -0
  272. patchright/driver/package/lib/server/protocolError.js +49 -0
  273. patchright/driver/package/lib/server/recorder/contextRecorder.js +299 -0
  274. patchright/driver/package/lib/server/recorder/recorderApp.js +196 -0
  275. patchright/driver/package/lib/server/recorder/recorderCollection.js +116 -0
  276. patchright/driver/package/lib/server/recorder/recorderFrontend.js +5 -0
  277. patchright/driver/package/lib/server/recorder/recorderInTraceViewer.js +144 -0
  278. patchright/driver/package/lib/server/recorder/recorderRunner.js +155 -0
  279. patchright/driver/package/lib/server/recorder/recorderUtils.js +112 -0
  280. patchright/driver/package/lib/server/recorder/throttledFile.js +46 -0
  281. patchright/driver/package/lib/server/recorder.js +327 -0
  282. patchright/driver/package/lib/server/registry/browserFetcher.js +168 -0
  283. patchright/driver/package/lib/server/registry/dependencies.js +322 -0
  284. patchright/driver/package/lib/server/registry/index.js +1005 -0
  285. patchright/driver/package/lib/server/registry/nativeDeps.js +490 -0
  286. patchright/driver/package/lib/server/registry/oopDownloadBrowserMain.js +138 -0
  287. patchright/driver/package/lib/server/screenshotter.js +348 -0
  288. patchright/driver/package/lib/server/selectors.js +73 -0
  289. patchright/driver/package/lib/server/socksClientCertificatesInterceptor.js +340 -0
  290. patchright/driver/package/lib/server/socksInterceptor.js +100 -0
  291. patchright/driver/package/lib/server/trace/recorder/snapshotter.js +172 -0
  292. patchright/driver/package/lib/server/trace/recorder/snapshotterInjected.js +493 -0
  293. patchright/driver/package/lib/server/trace/recorder/tracing.js +542 -0
  294. patchright/driver/package/lib/server/trace/test/inMemorySnapshotter.js +93 -0
  295. patchright/driver/package/lib/server/trace/viewer/traceViewer.js +213 -0
  296. patchright/driver/package/lib/server/transport.js +191 -0
  297. patchright/driver/package/lib/server/types.js +24 -0
  298. patchright/driver/package/lib/server/usKeyboardLayout.js +555 -0
  299. patchright/driver/package/lib/server/webkit/webkit.js +87 -0
  300. patchright/driver/package/lib/server/webkit/wkAccessibility.js +194 -0
  301. patchright/driver/package/lib/server/webkit/wkBrowser.js +329 -0
  302. patchright/driver/package/lib/server/webkit/wkConnection.js +173 -0
  303. patchright/driver/package/lib/server/webkit/wkExecutionContext.js +143 -0
  304. patchright/driver/package/lib/server/webkit/wkInput.js +169 -0
  305. patchright/driver/package/lib/server/webkit/wkInterceptableRequest.js +162 -0
  306. patchright/driver/package/lib/server/webkit/wkPage.js +1219 -0
  307. patchright/driver/package/lib/server/webkit/wkProvisionalPage.js +94 -0
  308. patchright/driver/package/lib/server/webkit/wkWorkers.js +104 -0
  309. patchright/driver/package/lib/third_party/diff_match_patch.js +2222 -0
  310. patchright/driver/package/lib/third_party/pixelmatch.js +255 -0
  311. patchright/driver/package/lib/utils/ascii.js +31 -0
  312. patchright/driver/package/lib/utils/comparators.js +171 -0
  313. patchright/driver/package/lib/utils/crypto.js +174 -0
  314. patchright/driver/package/lib/utils/debug.js +46 -0
  315. patchright/driver/package/lib/utils/debugLogger.js +91 -0
  316. patchright/driver/package/lib/utils/env.js +49 -0
  317. patchright/driver/package/lib/utils/eventsHelper.js +38 -0
  318. patchright/driver/package/lib/utils/expectUtils.js +33 -0
  319. patchright/driver/package/lib/utils/fileUtils.js +205 -0
  320. patchright/driver/package/lib/utils/happy-eyeballs.js +194 -0
  321. patchright/driver/package/lib/utils/headers.js +52 -0
  322. patchright/driver/package/lib/utils/hostPlatform.js +133 -0
  323. patchright/driver/package/lib/utils/httpServer.js +237 -0
  324. patchright/driver/package/lib/utils/index.js +368 -0
  325. patchright/driver/package/lib/utils/isomorphic/cssParser.js +250 -0
  326. patchright/driver/package/lib/utils/isomorphic/cssTokenizer.js +979 -0
  327. patchright/driver/package/lib/utils/isomorphic/locatorGenerators.js +642 -0
  328. patchright/driver/package/lib/utils/isomorphic/locatorParser.js +179 -0
  329. patchright/driver/package/lib/utils/isomorphic/locatorUtils.js +62 -0
  330. patchright/driver/package/lib/utils/isomorphic/mimeType.js +29 -0
  331. patchright/driver/package/lib/utils/isomorphic/recorderUtils.js +195 -0
  332. patchright/driver/package/lib/utils/isomorphic/selectorParser.js +397 -0
  333. patchright/driver/package/lib/utils/isomorphic/stringUtils.js +139 -0
  334. patchright/driver/package/lib/utils/isomorphic/traceUtils.js +39 -0
  335. patchright/driver/package/lib/utils/isomorphic/urlMatch.js +120 -0
  336. patchright/driver/package/lib/utils/linuxUtils.js +78 -0
  337. patchright/driver/package/lib/utils/manualPromise.js +109 -0
  338. patchright/driver/package/lib/utils/multimap.js +75 -0
  339. patchright/driver/package/lib/utils/network.js +160 -0
  340. patchright/driver/package/lib/utils/processLauncher.js +248 -0
  341. patchright/driver/package/lib/utils/profiler.js +53 -0
  342. patchright/driver/package/lib/utils/rtti.js +44 -0
  343. patchright/driver/package/lib/utils/semaphore.js +51 -0
  344. patchright/driver/package/lib/utils/spawnAsync.js +45 -0
  345. patchright/driver/package/lib/utils/stackTrace.js +121 -0
  346. patchright/driver/package/lib/utils/task.js +58 -0
  347. patchright/driver/package/lib/utils/time.js +37 -0
  348. patchright/driver/package/lib/utils/timeoutRunner.js +66 -0
  349. patchright/driver/package/lib/utils/traceUtils.js +44 -0
  350. patchright/driver/package/lib/utils/userAgent.js +105 -0
  351. patchright/driver/package/lib/utils/wsServer.js +127 -0
  352. patchright/driver/package/lib/utils/zipFile.js +75 -0
  353. patchright/driver/package/lib/utils/zones.js +62 -0
  354. patchright/driver/package/lib/utilsBundle.js +82 -0
  355. patchright/driver/package/lib/utilsBundleImpl/index.js +53 -0
  356. patchright/driver/package/lib/utilsBundleImpl/xdg-open +1066 -0
  357. patchright/driver/package/lib/vite/htmlReport/index.html +66 -0
  358. patchright/driver/package/lib/vite/recorder/assets/codeMirrorModule-d0KhC1qL.js +24 -0
  359. patchright/driver/package/lib/vite/recorder/assets/codeMirrorModule-ez37Vkbh.css +1 -0
  360. patchright/driver/package/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
  361. patchright/driver/package/lib/vite/recorder/assets/index-BW-aOBcL.css +1 -0
  362. patchright/driver/package/lib/vite/recorder/assets/index-Bxxcmxlu.js +42 -0
  363. patchright/driver/package/lib/vite/recorder/index.html +29 -0
  364. patchright/driver/package/lib/vite/recorder/playwright-logo.svg +9 -0
  365. patchright/driver/package/lib/vite/traceViewer/assets/codeMirrorModule-CZTtn9l8.js +24 -0
  366. patchright/driver/package/lib/vite/traceViewer/assets/inspectorTab-DTusvprx.js +64 -0
  367. patchright/driver/package/lib/vite/traceViewer/assets/testServerConnection-DeE2kSzz.js +1 -0
  368. patchright/driver/package/lib/vite/traceViewer/assets/workbench-DIEjrm3Z.js +9 -0
  369. patchright/driver/package/lib/vite/traceViewer/assets/xtermModule-BeNbaIVa.js +9 -0
  370. patchright/driver/package/lib/vite/traceViewer/codeMirrorModule.ez37Vkbh.css +1 -0
  371. patchright/driver/package/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
  372. patchright/driver/package/lib/vite/traceViewer/embedded.Do_J5Hgs.js +2 -0
  373. patchright/driver/package/lib/vite/traceViewer/embedded.html +18 -0
  374. patchright/driver/package/lib/vite/traceViewer/embedded.w7WN2u1R.css +1 -0
  375. patchright/driver/package/lib/vite/traceViewer/index.B21BXreT.js +2 -0
  376. patchright/driver/package/lib/vite/traceViewer/index.CrbWWHbf.css +1 -0
  377. patchright/driver/package/lib/vite/traceViewer/index.html +29 -0
  378. patchright/driver/package/lib/vite/traceViewer/inspectorTab.DLjBDrQR.css +1 -0
  379. patchright/driver/package/lib/vite/traceViewer/playwright-logo.svg +9 -0
  380. patchright/driver/package/lib/vite/traceViewer/recorder.B_SY1GJM.css +0 -0
  381. patchright/driver/package/lib/vite/traceViewer/recorder.Bfh_9UGt.js +2 -0
  382. patchright/driver/package/lib/vite/traceViewer/recorder.html +17 -0
  383. patchright/driver/package/lib/vite/traceViewer/snapshot.html +21 -0
  384. patchright/driver/package/lib/vite/traceViewer/sw.bundle.js +3 -0
  385. patchright/driver/package/lib/vite/traceViewer/uiMode.CAYqod-m.css +1 -0
  386. patchright/driver/package/lib/vite/traceViewer/uiMode.DloKQa-h.js +5 -0
  387. patchright/driver/package/lib/vite/traceViewer/uiMode.html +20 -0
  388. patchright/driver/package/lib/vite/traceViewer/workbench.D3JVcA9K.css +1 -0
  389. patchright/driver/package/lib/vite/traceViewer/xtermModule.DSXBckUd.css +32 -0
  390. patchright/driver/package/lib/zipBundle.js +25 -0
  391. patchright/driver/package/lib/zipBundleImpl.js +5 -0
  392. patchright/driver/package/package.json +44 -0
  393. patchright/driver/package/protocol.yml +3720 -0
  394. patchright/driver/package/types/protocol.d.ts +21571 -0
  395. patchright/driver/package/types/structs.d.ts +45 -0
  396. patchright/driver/package/types/types.d.ts +22519 -0
  397. patchright/py.typed +0 -0
  398. patchright/sync_api/__init__.py +177 -0
  399. patchright/sync_api/_context_manager.py +74 -0
  400. patchright/sync_api/_generated.py +20155 -0
  401. patchright-1.48.0.dist-info/LICENSE +202 -0
  402. patchright-1.48.0.dist-info/METADATA +83 -0
  403. patchright-1.48.0.dist-info/RECORD +406 -0
  404. patchright-1.48.0.dist-info/WHEEL +5 -0
  405. patchright-1.48.0.dist-info/entry_points.txt +5 -0
  406. patchright-1.48.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,2174 @@
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
+ - cjs-module-lexer, located at deps/cjs-module-lexer, is licensed as follows:
108
+ """
109
+ MIT License
110
+ -----------
111
+
112
+ Copyright (C) 2018-2020 Guy Bedford
113
+
114
+ 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:
115
+
116
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
117
+
118
+ 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.
119
+ """
120
+
121
+ - ittapi, located at deps/v8/third_party/ittapi, is licensed as follows:
122
+ """
123
+ Copyright (c) 2019 Intel Corporation. All rights reserved.
124
+
125
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
126
+
127
+ 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
128
+ 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.
129
+ 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.
130
+ 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.
131
+ """
132
+
133
+ - ICU, located at deps/icu-small, is licensed as follows:
134
+ """
135
+ UNICODE LICENSE V3
136
+
137
+ COPYRIGHT AND PERMISSION NOTICE
138
+
139
+ Copyright © 2016-2024 Unicode, Inc.
140
+
141
+ NOTICE TO USER: Carefully read the following legal agreement. BY
142
+ DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
143
+ SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
144
+ TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT
145
+ DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
146
+
147
+ Permission is hereby granted, free of charge, to any person obtaining a
148
+ copy of data files and any associated documentation (the "Data Files") or
149
+ software and any associated documentation (the "Software") to deal in the
150
+ Data Files or Software without restriction, including without limitation
151
+ the rights to use, copy, modify, merge, publish, distribute, and/or sell
152
+ copies of the Data Files or Software, and to permit persons to whom the
153
+ Data Files or Software are furnished to do so, provided that either (a)
154
+ this copyright and permission notice appear with all copies of the Data
155
+ Files or Software, or (b) this copyright and permission notice appear in
156
+ associated Documentation.
157
+
158
+ THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
159
+ KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
160
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
161
+ THIRD PARTY RIGHTS.
162
+
163
+ IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
164
+ BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
165
+ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
166
+ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
167
+ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA
168
+ FILES OR SOFTWARE.
169
+
170
+ Except as contained in this notice, the name of a copyright holder shall
171
+ not be used in advertising or otherwise to promote the sale, use or other
172
+ dealings in these Data Files or Software without prior written
173
+ authorization of the copyright holder.
174
+
175
+ SPDX-License-Identifier: Unicode-3.0
176
+
177
+ ----------------------------------------------------------------------
178
+
179
+ Third-Party Software Licenses
180
+
181
+ This section contains third-party software notices and/or additional
182
+ terms for licensed third-party software components included within ICU
183
+ libraries.
184
+
185
+ ----------------------------------------------------------------------
186
+
187
+ ICU License - ICU 1.8.1 to ICU 57.1
188
+
189
+ COPYRIGHT AND PERMISSION NOTICE
190
+
191
+ Copyright (c) 1995-2016 International Business Machines Corporation and others
192
+ All rights reserved.
193
+
194
+ Permission is hereby granted, free of charge, to any person obtaining
195
+ a copy of this software and associated documentation files (the
196
+ "Software"), to deal in the Software without restriction, including
197
+ without limitation the rights to use, copy, modify, merge, publish,
198
+ distribute, and/or sell copies of the Software, and to permit persons
199
+ to whom the Software is furnished to do so, provided that the above
200
+ copyright notice(s) and this permission notice appear in all copies of
201
+ the Software and that both the above copyright notice(s) and this
202
+ permission notice appear in supporting documentation.
203
+
204
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
205
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
206
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
207
+ OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
208
+ HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY
209
+ SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER
210
+ RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
211
+ CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
212
+ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
213
+
214
+ Except as contained in this notice, the name of a copyright holder
215
+ shall not be used in advertising or otherwise to promote the sale, use
216
+ or other dealings in this Software without prior written authorization
217
+ of the copyright holder.
218
+
219
+ All trademarks and registered trademarks mentioned herein are the
220
+ property of their respective owners.
221
+
222
+ ----------------------------------------------------------------------
223
+
224
+ Chinese/Japanese Word Break Dictionary Data (cjdict.txt)
225
+
226
+ # The Google Chrome software developed by Google is licensed under
227
+ # the BSD license. Other software included in this distribution is
228
+ # provided under other licenses, as set forth below.
229
+ #
230
+ # The BSD License
231
+ # http://opensource.org/licenses/bsd-license.php
232
+ # Copyright (C) 2006-2008, Google Inc.
233
+ #
234
+ # All rights reserved.
235
+ #
236
+ # Redistribution and use in source and binary forms, with or without
237
+ # modification, are permitted provided that the following conditions are met:
238
+ #
239
+ # Redistributions of source code must retain the above copyright notice,
240
+ # this list of conditions and the following disclaimer.
241
+ # Redistributions in binary form must reproduce the above
242
+ # copyright notice, this list of conditions and the following
243
+ # disclaimer in the documentation and/or other materials provided with
244
+ # the distribution.
245
+ # Neither the name of Google Inc. nor the names of its
246
+ # contributors may be used to endorse or promote products derived from
247
+ # this software without specific prior written permission.
248
+ #
249
+ #
250
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
251
+ # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
252
+ # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
253
+ # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
254
+ # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
255
+ # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
256
+ # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
257
+ # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
258
+ # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
259
+ # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
260
+ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
261
+ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
262
+ #
263
+ #
264
+ # The word list in cjdict.txt are generated by combining three word lists
265
+ # listed below with further processing for compound word breaking. The
266
+ # frequency is generated with an iterative training against Google web
267
+ # corpora.
268
+ #
269
+ # * Libtabe (Chinese)
270
+ # - https://sourceforge.net/project/?group_id=1519
271
+ # - Its license terms and conditions are shown below.
272
+ #
273
+ # * IPADIC (Japanese)
274
+ # - http://chasen.aist-nara.ac.jp/chasen/distribution.html
275
+ # - Its license terms and conditions are shown below.
276
+ #
277
+ # ---------COPYING.libtabe ---- BEGIN--------------------
278
+ #
279
+ # /*
280
+ # * Copyright (c) 1999 TaBE Project.
281
+ # * Copyright (c) 1999 Pai-Hsiang Hsiao.
282
+ # * All rights reserved.
283
+ # *
284
+ # * Redistribution and use in source and binary forms, with or without
285
+ # * modification, are permitted provided that the following conditions
286
+ # * are met:
287
+ # *
288
+ # * . Redistributions of source code must retain the above copyright
289
+ # * notice, this list of conditions and the following disclaimer.
290
+ # * . Redistributions in binary form must reproduce the above copyright
291
+ # * notice, this list of conditions and the following disclaimer in
292
+ # * the documentation and/or other materials provided with the
293
+ # * distribution.
294
+ # * . Neither the name of the TaBE Project nor the names of its
295
+ # * contributors may be used to endorse or promote products derived
296
+ # * from this software without specific prior written permission.
297
+ # *
298
+ # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
299
+ # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
300
+ # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
301
+ # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
302
+ # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
303
+ # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
304
+ # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
305
+ # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
306
+ # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
307
+ # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
308
+ # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
309
+ # * OF THE POSSIBILITY OF SUCH DAMAGE.
310
+ # */
311
+ #
312
+ # /*
313
+ # * Copyright (c) 1999 Computer Systems and Communication Lab,
314
+ # * Institute of Information Science, Academia
315
+ # * Sinica. All rights reserved.
316
+ # *
317
+ # * Redistribution and use in source and binary forms, with or without
318
+ # * modification, are permitted provided that the following conditions
319
+ # * are met:
320
+ # *
321
+ # * . Redistributions of source code must retain the above copyright
322
+ # * notice, this list of conditions and the following disclaimer.
323
+ # * . Redistributions in binary form must reproduce the above copyright
324
+ # * notice, this list of conditions and the following disclaimer in
325
+ # * the documentation and/or other materials provided with the
326
+ # * distribution.
327
+ # * . Neither the name of the Computer Systems and Communication Lab
328
+ # * nor the names of its contributors may be used to endorse or
329
+ # * promote products derived from this software without specific
330
+ # * prior written permission.
331
+ # *
332
+ # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
333
+ # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
334
+ # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
335
+ # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
336
+ # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
337
+ # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
338
+ # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
339
+ # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
340
+ # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
341
+ # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
342
+ # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
343
+ # * OF THE POSSIBILITY OF SUCH DAMAGE.
344
+ # */
345
+ #
346
+ # Copyright 1996 Chih-Hao Tsai @ Beckman Institute,
347
+ # University of Illinois
348
+ # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4
349
+ #
350
+ # ---------------COPYING.libtabe-----END--------------------------------
351
+ #
352
+ #
353
+ # ---------------COPYING.ipadic-----BEGIN-------------------------------
354
+ #
355
+ # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science
356
+ # and Technology. All Rights Reserved.
357
+ #
358
+ # Use, reproduction, and distribution of this software is permitted.
359
+ # Any copy of this software, whether in its original form or modified,
360
+ # must include both the above copyright notice and the following
361
+ # paragraphs.
362
+ #
363
+ # Nara Institute of Science and Technology (NAIST),
364
+ # the copyright holders, disclaims all warranties with regard to this
365
+ # software, including all implied warranties of merchantability and
366
+ # fitness, in no event shall NAIST be liable for
367
+ # any special, indirect or consequential damages or any damages
368
+ # whatsoever resulting from loss of use, data or profits, whether in an
369
+ # action of contract, negligence or other tortuous action, arising out
370
+ # of or in connection with the use or performance of this software.
371
+ #
372
+ # A large portion of the dictionary entries
373
+ # originate from ICOT Free Software. The following conditions for ICOT
374
+ # Free Software applies to the current dictionary as well.
375
+ #
376
+ # Each User may also freely distribute the Program, whether in its
377
+ # original form or modified, to any third party or parties, PROVIDED
378
+ # that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear
379
+ # on, or be attached to, the Program, which is distributed substantially
380
+ # in the same form as set out herein and that such intended
381
+ # distribution, if actually made, will neither violate or otherwise
382
+ # contravene any of the laws and regulations of the countries having
383
+ # jurisdiction over the User or the intended distribution itself.
384
+ #
385
+ # NO WARRANTY
386
+ #
387
+ # The program was produced on an experimental basis in the course of the
388
+ # research and development conducted during the project and is provided
389
+ # to users as so produced on an experimental basis. Accordingly, the
390
+ # program is provided without any warranty whatsoever, whether express,
391
+ # implied, statutory or otherwise. The term "warranty" used herein
392
+ # includes, but is not limited to, any warranty of the quality,
393
+ # performance, merchantability and fitness for a particular purpose of
394
+ # the program and the nonexistence of any infringement or violation of
395
+ # any right of any third party.
396
+ #
397
+ # Each user of the program will agree and understand, and be deemed to
398
+ # have agreed and understood, that there is no warranty whatsoever for
399
+ # the program and, accordingly, the entire risk arising from or
400
+ # otherwise connected with the program is assumed by the user.
401
+ #
402
+ # Therefore, neither ICOT, the copyright holder, or any other
403
+ # organization that participated in or was otherwise related to the
404
+ # development of the program and their respective officials, directors,
405
+ # officers and other employees shall be held liable for any and all
406
+ # damages, including, without limitation, general, special, incidental
407
+ # and consequential damages, arising out of or otherwise in connection
408
+ # with the use or inability to use the program or any product, material
409
+ # or result produced or otherwise obtained by using the program,
410
+ # regardless of whether they have been advised of, or otherwise had
411
+ # knowledge of, the possibility of such damages at any time during the
412
+ # project or thereafter. Each user will be deemed to have agreed to the
413
+ # foregoing by his or her commencement of use of the program. The term
414
+ # "use" as used herein includes, but is not limited to, the use,
415
+ # modification, copying and distribution of the program and the
416
+ # production of secondary products from the program.
417
+ #
418
+ # In the case where the program, whether in its original form or
419
+ # modified, was distributed or delivered to or received by a user from
420
+ # any person, organization or entity other than ICOT, unless it makes or
421
+ # grants independently of ICOT any specific warranty to the user in
422
+ # writing, such person, organization or entity, will also be exempted
423
+ # from and not be held liable to the user for any such damages as noted
424
+ # above as far as the program is concerned.
425
+ #
426
+ # ---------------COPYING.ipadic-----END----------------------------------
427
+
428
+ ----------------------------------------------------------------------
429
+
430
+ Lao Word Break Dictionary Data (laodict.txt)
431
+
432
+ # Copyright (C) 2016 and later: Unicode, Inc. and others.
433
+ # License & terms of use: http://www.unicode.org/copyright.html
434
+ # Copyright (c) 2015 International Business Machines Corporation
435
+ # and others. All Rights Reserved.
436
+ #
437
+ # Project: https://github.com/rober42539/lao-dictionary
438
+ # Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt
439
+ # License: https://github.com/rober42539/lao-dictionary/LICENSE.txt
440
+ # (copied below)
441
+ #
442
+ # This file is derived from the above dictionary version of Nov 22, 2020
443
+ # ----------------------------------------------------------------------
444
+ # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell.
445
+ # All rights reserved.
446
+ #
447
+ # Redistribution and use in source and binary forms, with or without
448
+ # modification, are permitted provided that the following conditions are met:
449
+ #
450
+ # Redistributions of source code must retain the above copyright notice, this
451
+ # list of conditions and the following disclaimer. Redistributions in binary
452
+ # form must reproduce the above copyright notice, this list of conditions and
453
+ # the following disclaimer in the documentation and/or other materials
454
+ # provided with the distribution.
455
+ #
456
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
457
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
458
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
459
+ # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
460
+ # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
461
+ # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
462
+ # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
463
+ # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
464
+ # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
465
+ # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
466
+ # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
467
+ # OF THE POSSIBILITY OF SUCH DAMAGE.
468
+ # --------------------------------------------------------------------------
469
+
470
+ ----------------------------------------------------------------------
471
+
472
+ Burmese Word Break Dictionary Data (burmesedict.txt)
473
+
474
+ # Copyright (c) 2014 International Business Machines Corporation
475
+ # and others. All Rights Reserved.
476
+ #
477
+ # This list is part of a project hosted at:
478
+ # github.com/kanyawtech/myanmar-karen-word-lists
479
+ #
480
+ # --------------------------------------------------------------------------
481
+ # Copyright (c) 2013, LeRoy Benjamin Sharon
482
+ # All rights reserved.
483
+ #
484
+ # Redistribution and use in source and binary forms, with or without
485
+ # modification, are permitted provided that the following conditions
486
+ # are met: Redistributions of source code must retain the above
487
+ # copyright notice, this list of conditions and the following
488
+ # disclaimer. Redistributions in binary form must reproduce the
489
+ # above copyright notice, this list of conditions and the following
490
+ # disclaimer in the documentation and/or other materials provided
491
+ # with the distribution.
492
+ #
493
+ # Neither the name Myanmar Karen Word Lists, nor the names of its
494
+ # contributors may be used to endorse or promote products derived
495
+ # from this software without specific prior written permission.
496
+ #
497
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
498
+ # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
499
+ # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
500
+ # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
501
+ # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
502
+ # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
503
+ # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
504
+ # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
505
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
506
+ # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
507
+ # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
508
+ # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
509
+ # SUCH DAMAGE.
510
+ # --------------------------------------------------------------------------
511
+
512
+ ----------------------------------------------------------------------
513
+
514
+ Time Zone Database
515
+
516
+ ICU uses the public domain data and code derived from Time Zone
517
+ Database for its time zone support. The ownership of the TZ database
518
+ is explained in BCP 175: Procedure for Maintaining the Time Zone
519
+ Database section 7.
520
+
521
+ # 7. Database Ownership
522
+ #
523
+ # The TZ database itself is not an IETF Contribution or an IETF
524
+ # document. Rather it is a pre-existing and regularly updated work
525
+ # that is in the public domain, and is intended to remain in the
526
+ # public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do
527
+ # not apply to the TZ Database or contributions that individuals make
528
+ # to it. Should any claims be made and substantiated against the TZ
529
+ # Database, the organization that is providing the IANA
530
+ # Considerations defined in this RFC, under the memorandum of
531
+ # understanding with the IETF, currently ICANN, may act in accordance
532
+ # with all competent court orders. No ownership claims will be made
533
+ # by ICANN or the IETF Trust on the database or the code. Any person
534
+ # making a contribution to the database or code waives all rights to
535
+ # future claims in that contribution or in the TZ Database.
536
+
537
+ ----------------------------------------------------------------------
538
+
539
+ Google double-conversion
540
+
541
+ Copyright 2006-2011, the V8 project authors. All rights reserved.
542
+ Redistribution and use in source and binary forms, with or without
543
+ modification, are permitted provided that the following conditions are
544
+ met:
545
+
546
+ * Redistributions of source code must retain the above copyright
547
+ notice, this list of conditions and the following disclaimer.
548
+ * Redistributions in binary form must reproduce the above
549
+ copyright notice, this list of conditions and the following
550
+ disclaimer in the documentation and/or other materials provided
551
+ with the distribution.
552
+ * Neither the name of Google Inc. nor the names of its
553
+ contributors may be used to endorse or promote products derived
554
+ from this software without specific prior written permission.
555
+
556
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
557
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
558
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
559
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
560
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
561
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
562
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
563
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
564
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
565
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
566
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
567
+
568
+ ----------------------------------------------------------------------
569
+
570
+ File: aclocal.m4 (only for ICU4C)
571
+ Section: pkg.m4 - Macros to locate and utilise pkg-config.
572
+
573
+ Copyright © 2004 Scott James Remnant .
574
+ Copyright © 2012-2015 Dan Nicholson
575
+
576
+ This program is free software; you can redistribute it and/or modify
577
+ it under the terms of the GNU General Public License as published by
578
+ the Free Software Foundation; either version 2 of the License, or
579
+ (at your option) any later version.
580
+
581
+ This program is distributed in the hope that it will be useful, but
582
+ WITHOUT ANY WARRANTY; without even the implied warranty of
583
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
584
+ General Public License for more details.
585
+
586
+ You should have received a copy of the GNU General Public License
587
+ along with this program; if not, write to the Free Software
588
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
589
+ 02111-1307, USA.
590
+
591
+ As a special exception to the GNU General Public License, if you
592
+ distribute this file as part of a program that contains a
593
+ configuration script generated by Autoconf, you may include it under
594
+ the same distribution terms that you use for the rest of that
595
+ program.
596
+
597
+ (The condition for the exception is fulfilled because
598
+ ICU4C includes a configuration script generated by Autoconf,
599
+ namely the `configure` script.)
600
+
601
+ ----------------------------------------------------------------------
602
+
603
+ File: config.guess (only for ICU4C)
604
+
605
+ This file is free software; you can redistribute it and/or modify it
606
+ under the terms of the GNU General Public License as published by
607
+ the Free Software Foundation; either version 3 of the License, or
608
+ (at your option) any later version.
609
+
610
+ This program is distributed in the hope that it will be useful, but
611
+ WITHOUT ANY WARRANTY; without even the implied warranty of
612
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
613
+ General Public License for more details.
614
+
615
+ You should have received a copy of the GNU General Public License
616
+ along with this program; if not, see .
617
+
618
+ As a special exception to the GNU General Public License, if you
619
+ distribute this file as part of a program that contains a
620
+ configuration script generated by Autoconf, you may include it under
621
+ the same distribution terms that you use for the rest of that
622
+ program. This Exception is an additional permission under section 7
623
+ of the GNU General Public License, version 3 ("GPLv3").
624
+
625
+ (The condition for the exception is fulfilled because
626
+ ICU4C includes a configuration script generated by Autoconf,
627
+ namely the `configure` script.)
628
+
629
+ ----------------------------------------------------------------------
630
+
631
+ File: install-sh (only for ICU4C)
632
+
633
+ Copyright 1991 by the Massachusetts Institute of Technology
634
+
635
+ Permission to use, copy, modify, distribute, and sell this software and its
636
+ documentation for any purpose is hereby granted without fee, provided that
637
+ the above copyright notice appear in all copies and that both that
638
+ copyright notice and this permission notice appear in supporting
639
+ documentation, and that the name of M.I.T. not be used in advertising or
640
+ publicity pertaining to distribution of the software without specific,
641
+ written prior permission. M.I.T. makes no representations about the
642
+ suitability of this software for any purpose. It is provided "as is"
643
+ without express or implied warranty.
644
+ """
645
+
646
+ - libuv, located at deps/uv, is licensed as follows:
647
+ """
648
+ Copyright (c) 2015-present libuv project contributors.
649
+
650
+ Permission is hereby granted, free of charge, to any person obtaining a copy
651
+ of this software and associated documentation files (the "Software"), to
652
+ deal in the Software without restriction, including without limitation the
653
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
654
+ sell copies of the Software, and to permit persons to whom the Software is
655
+ furnished to do so, subject to the following conditions:
656
+
657
+ The above copyright notice and this permission notice shall be included in
658
+ all copies or substantial portions of the Software.
659
+
660
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
661
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
662
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
663
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
664
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
665
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
666
+ IN THE SOFTWARE.
667
+ This license applies to parts of libuv originating from the
668
+ https://github.com/joyent/libuv repository:
669
+
670
+ ====
671
+
672
+ Copyright Joyent, Inc. and other Node contributors. All rights reserved.
673
+ Permission is hereby granted, free of charge, to any person obtaining a copy
674
+ of this software and associated documentation files (the "Software"), to
675
+ deal in the Software without restriction, including without limitation the
676
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
677
+ sell copies of the Software, and to permit persons to whom the Software is
678
+ furnished to do so, subject to the following conditions:
679
+
680
+ The above copyright notice and this permission notice shall be included in
681
+ all copies or substantial portions of the Software.
682
+
683
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
684
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
685
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
686
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
687
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
688
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
689
+ IN THE SOFTWARE.
690
+
691
+ ====
692
+
693
+ This license applies to all parts of libuv that are not externally
694
+ maintained libraries.
695
+
696
+ The externally maintained libraries used by libuv are:
697
+
698
+ - tree.h (from FreeBSD), copyright Niels Provos. Two clause BSD license.
699
+
700
+ - inet_pton and inet_ntop implementations, contained in src/inet.c, are
701
+ copyright the Internet Systems Consortium, Inc., and licensed under the ISC
702
+ license.
703
+ """
704
+
705
+ - llhttp, located at deps/llhttp, is licensed as follows:
706
+ """
707
+ This software is licensed under the MIT License.
708
+
709
+ Copyright Fedor Indutny, 2018.
710
+
711
+ Permission is hereby granted, free of charge, to any person obtaining a
712
+ copy of this software and associated documentation files (the
713
+ "Software"), to deal in the Software without restriction, including
714
+ without limitation the rights to use, copy, modify, merge, publish,
715
+ distribute, sublicense, and/or sell copies of the Software, and to permit
716
+ persons to whom the Software is furnished to do so, subject to the
717
+ following conditions:
718
+
719
+ The above copyright notice and this permission notice shall be included
720
+ in all copies or substantial portions of the Software.
721
+
722
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
723
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
724
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
725
+ NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
726
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
727
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
728
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
729
+ """
730
+
731
+ - corepack, located at deps/corepack, is licensed as follows:
732
+ """
733
+ **Copyright © Corepack contributors**
734
+
735
+ 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:
736
+
737
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
738
+
739
+ 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.
740
+ """
741
+
742
+ - undici, located at deps/undici, is licensed as follows:
743
+ """
744
+ MIT License
745
+
746
+ Copyright (c) Matteo Collina and Undici contributors
747
+
748
+ Permission is hereby granted, free of charge, to any person obtaining a copy
749
+ of this software and associated documentation files (the "Software"), to deal
750
+ in the Software without restriction, including without limitation the rights
751
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
752
+ copies of the Software, and to permit persons to whom the Software is
753
+ furnished to do so, subject to the following conditions:
754
+
755
+ The above copyright notice and this permission notice shall be included in all
756
+ copies or substantial portions of the Software.
757
+
758
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
759
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
760
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
761
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
762
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
763
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
764
+ SOFTWARE.
765
+ """
766
+
767
+ - postject, located at test/fixtures/postject-copy, is licensed as follows:
768
+ """
769
+ Postject is licensed for use as follows:
770
+
771
+ """
772
+ MIT License
773
+
774
+ Copyright (c) 2022 Postman, Inc
775
+
776
+ Permission is hereby granted, free of charge, to any person obtaining a copy
777
+ of this software and associated documentation files (the "Software"), to deal
778
+ in the Software without restriction, including without limitation the rights
779
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
780
+ copies of the Software, and to permit persons to whom the Software is
781
+ furnished to do so, subject to the following conditions:
782
+
783
+ The above copyright notice and this permission notice shall be included in all
784
+ copies or substantial portions of the Software.
785
+
786
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
787
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
788
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
789
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
790
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
791
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
792
+ SOFTWARE.
793
+ """
794
+
795
+ The Postject license applies to all parts of Postject that are not externally
796
+ maintained libraries.
797
+
798
+ The externally maintained libraries used by Postject are:
799
+
800
+ - LIEF, located at vendor/LIEF, is licensed as follows:
801
+ """
802
+ Apache License
803
+ Version 2.0, January 2004
804
+ http://www.apache.org/licenses/
805
+
806
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
807
+
808
+ 1. Definitions.
809
+
810
+ "License" shall mean the terms and conditions for use, reproduction,
811
+ and distribution as defined by Sections 1 through 9 of this document.
812
+
813
+ "Licensor" shall mean the copyright owner or entity authorized by
814
+ the copyright owner that is granting the License.
815
+
816
+ "Legal Entity" shall mean the union of the acting entity and all
817
+ other entities that control, are controlled by, or are under common
818
+ control with that entity. For the purposes of this definition,
819
+ "control" means (i) the power, direct or indirect, to cause the
820
+ direction or management of such entity, whether by contract or
821
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
822
+ outstanding shares, or (iii) beneficial ownership of such entity.
823
+
824
+ "You" (or "Your") shall mean an individual or Legal Entity
825
+ exercising permissions granted by this License.
826
+
827
+ "Source" form shall mean the preferred form for making modifications,
828
+ including but not limited to software source code, documentation
829
+ source, and configuration files.
830
+
831
+ "Object" form shall mean any form resulting from mechanical
832
+ transformation or translation of a Source form, including but
833
+ not limited to compiled object code, generated documentation,
834
+ and conversions to other media types.
835
+
836
+ "Work" shall mean the work of authorship, whether in Source or
837
+ Object form, made available under the License, as indicated by a
838
+ copyright notice that is included in or attached to the work
839
+ (an example is provided in the Appendix below).
840
+
841
+ "Derivative Works" shall mean any work, whether in Source or Object
842
+ form, that is based on (or derived from) the Work and for which the
843
+ editorial revisions, annotations, elaborations, or other modifications
844
+ represent, as a whole, an original work of authorship. For the purposes
845
+ of this License, Derivative Works shall not include works that remain
846
+ separable from, or merely link (or bind by name) to the interfaces of,
847
+ the Work and Derivative Works thereof.
848
+
849
+ "Contribution" shall mean any work of authorship, including
850
+ the original version of the Work and any modifications or additions
851
+ to that Work or Derivative Works thereof, that is intentionally
852
+ submitted to Licensor for inclusion in the Work by the copyright owner
853
+ or by an individual or Legal Entity authorized to submit on behalf of
854
+ the copyright owner. For the purposes of this definition, "submitted"
855
+ means any form of electronic, verbal, or written communication sent
856
+ to the Licensor or its representatives, including but not limited to
857
+ communication on electronic mailing lists, source code control systems,
858
+ and issue tracking systems that are managed by, or on behalf of, the
859
+ Licensor for the purpose of discussing and improving the Work, but
860
+ excluding communication that is conspicuously marked or otherwise
861
+ designated in writing by the copyright owner as "Not a Contribution."
862
+
863
+ "Contributor" shall mean Licensor and any individual or Legal Entity
864
+ on behalf of whom a Contribution has been received by Licensor and
865
+ subsequently incorporated within the Work.
866
+
867
+ 2. Grant of Copyright License. Subject to the terms and conditions of
868
+ this License, each Contributor hereby grants to You a perpetual,
869
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
870
+ copyright license to reproduce, prepare Derivative Works of,
871
+ publicly display, publicly perform, sublicense, and distribute the
872
+ Work and such Derivative Works in Source or Object form.
873
+
874
+ 3. Grant of Patent License. Subject to the terms and conditions of
875
+ this License, each Contributor hereby grants to You a perpetual,
876
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
877
+ (except as stated in this section) patent license to make, have made,
878
+ use, offer to sell, sell, import, and otherwise transfer the Work,
879
+ where such license applies only to those patent claims licensable
880
+ by such Contributor that are necessarily infringed by their
881
+ Contribution(s) alone or by combination of their Contribution(s)
882
+ with the Work to which such Contribution(s) was submitted. If You
883
+ institute patent litigation against any entity (including a
884
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
885
+ or a Contribution incorporated within the Work constitutes direct
886
+ or contributory patent infringement, then any patent licenses
887
+ granted to You under this License for that Work shall terminate
888
+ as of the date such litigation is filed.
889
+
890
+ 4. Redistribution. You may reproduce and distribute copies of the
891
+ Work or Derivative Works thereof in any medium, with or without
892
+ modifications, and in Source or Object form, provided that You
893
+ meet the following conditions:
894
+
895
+ (a) You must give any other recipients of the Work or
896
+ Derivative Works a copy of this License; and
897
+
898
+ (b) You must cause any modified files to carry prominent notices
899
+ stating that You changed the files; and
900
+
901
+ (c) You must retain, in the Source form of any Derivative Works
902
+ that You distribute, all copyright, patent, trademark, and
903
+ attribution notices from the Source form of the Work,
904
+ excluding those notices that do not pertain to any part of
905
+ the Derivative Works; and
906
+
907
+ (d) If the Work includes a "NOTICE" text file as part of its
908
+ distribution, then any Derivative Works that You distribute must
909
+ include a readable copy of the attribution notices contained
910
+ within such NOTICE file, excluding those notices that do not
911
+ pertain to any part of the Derivative Works, in at least one
912
+ of the following places: within a NOTICE text file distributed
913
+ as part of the Derivative Works; within the Source form or
914
+ documentation, if provided along with the Derivative Works; or,
915
+ within a display generated by the Derivative Works, if and
916
+ wherever such third-party notices normally appear. The contents
917
+ of the NOTICE file are for informational purposes only and
918
+ do not modify the License. You may add Your own attribution
919
+ notices within Derivative Works that You distribute, alongside
920
+ or as an addendum to the NOTICE text from the Work, provided
921
+ that such additional attribution notices cannot be construed
922
+ as modifying the License.
923
+
924
+ You may add Your own copyright statement to Your modifications and
925
+ may provide additional or different license terms and conditions
926
+ for use, reproduction, or distribution of Your modifications, or
927
+ for any such Derivative Works as a whole, provided Your use,
928
+ reproduction, and distribution of the Work otherwise complies with
929
+ the conditions stated in this License.
930
+
931
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
932
+ any Contribution intentionally submitted for inclusion in the Work
933
+ by You to the Licensor shall be under the terms and conditions of
934
+ this License, without any additional terms or conditions.
935
+ Notwithstanding the above, nothing herein shall supersede or modify
936
+ the terms of any separate license agreement you may have executed
937
+ with Licensor regarding such Contributions.
938
+
939
+ 6. Trademarks. This License does not grant permission to use the trade
940
+ names, trademarks, service marks, or product names of the Licensor,
941
+ except as required for reasonable and customary use in describing the
942
+ origin of the Work and reproducing the content of the NOTICE file.
943
+
944
+ 7. Disclaimer of Warranty. Unless required by applicable law or
945
+ agreed to in writing, Licensor provides the Work (and each
946
+ Contributor provides its Contributions) on an "AS IS" BASIS,
947
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
948
+ implied, including, without limitation, any warranties or conditions
949
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
950
+ PARTICULAR PURPOSE. You are solely responsible for determining the
951
+ appropriateness of using or redistributing the Work and assume any
952
+ risks associated with Your exercise of permissions under this License.
953
+
954
+ 8. Limitation of Liability. In no event and under no legal theory,
955
+ whether in tort (including negligence), contract, or otherwise,
956
+ unless required by applicable law (such as deliberate and grossly
957
+ negligent acts) or agreed to in writing, shall any Contributor be
958
+ liable to You for damages, including any direct, indirect, special,
959
+ incidental, or consequential damages of any character arising as a
960
+ result of this License or out of the use or inability to use the
961
+ Work (including but not limited to damages for loss of goodwill,
962
+ work stoppage, computer failure or malfunction, or any and all
963
+ other commercial damages or losses), even if such Contributor
964
+ has been advised of the possibility of such damages.
965
+
966
+ 9. Accepting Warranty or Additional Liability. While redistributing
967
+ the Work or Derivative Works thereof, You may choose to offer,
968
+ and charge a fee for, acceptance of support, warranty, indemnity,
969
+ or other liability obligations and/or rights consistent with this
970
+ License. However, in accepting such obligations, You may act only
971
+ on Your own behalf and on Your sole responsibility, not on behalf
972
+ of any other Contributor, and only if You agree to indemnify,
973
+ defend, and hold each Contributor harmless for any liability
974
+ incurred by, or claims asserted against, such Contributor by reason
975
+ of your accepting any such warranty or additional liability.
976
+
977
+ END OF TERMS AND CONDITIONS
978
+
979
+ APPENDIX: How to apply the Apache License to your work.
980
+
981
+ To apply the Apache License to your work, attach the following
982
+ boilerplate notice, with the fields enclosed by brackets "{}"
983
+ replaced with your own identifying information. (Don't include
984
+ the brackets!) The text should be enclosed in the appropriate
985
+ comment syntax for the file format. We also recommend that a
986
+ file or class name and description of purpose be included on the
987
+ same "printed page" as the copyright notice for easier
988
+ identification within third-party archives.
989
+
990
+ Copyright 2017 - 2022 R. Thomas
991
+ Copyright 2017 - 2022 Quarkslab
992
+
993
+ Licensed under the Apache License, Version 2.0 (the "License");
994
+ you may not use this file except in compliance with the License.
995
+ You may obtain a copy of the License at
996
+
997
+ http://www.apache.org/licenses/LICENSE-2.0
998
+
999
+ Unless required by applicable law or agreed to in writing, software
1000
+ distributed under the License is distributed on an "AS IS" BASIS,
1001
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1002
+ See the License for the specific language governing permissions and
1003
+ limitations under the License.
1004
+ """
1005
+ """
1006
+
1007
+ - OpenSSL, located at deps/openssl, is licensed as follows:
1008
+ """
1009
+ Apache License
1010
+ Version 2.0, January 2004
1011
+ https://www.apache.org/licenses/
1012
+
1013
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1014
+
1015
+ 1. Definitions.
1016
+
1017
+ "License" shall mean the terms and conditions for use, reproduction,
1018
+ and distribution as defined by Sections 1 through 9 of this document.
1019
+
1020
+ "Licensor" shall mean the copyright owner or entity authorized by
1021
+ the copyright owner that is granting the License.
1022
+
1023
+ "Legal Entity" shall mean the union of the acting entity and all
1024
+ other entities that control, are controlled by, or are under common
1025
+ control with that entity. For the purposes of this definition,
1026
+ "control" means (i) the power, direct or indirect, to cause the
1027
+ direction or management of such entity, whether by contract or
1028
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1029
+ outstanding shares, or (iii) beneficial ownership of such entity.
1030
+
1031
+ "You" (or "Your") shall mean an individual or Legal Entity
1032
+ exercising permissions granted by this License.
1033
+
1034
+ "Source" form shall mean the preferred form for making modifications,
1035
+ including but not limited to software source code, documentation
1036
+ source, and configuration files.
1037
+
1038
+ "Object" form shall mean any form resulting from mechanical
1039
+ transformation or translation of a Source form, including but
1040
+ not limited to compiled object code, generated documentation,
1041
+ and conversions to other media types.
1042
+
1043
+ "Work" shall mean the work of authorship, whether in Source or
1044
+ Object form, made available under the License, as indicated by a
1045
+ copyright notice that is included in or attached to the work
1046
+ (an example is provided in the Appendix below).
1047
+
1048
+ "Derivative Works" shall mean any work, whether in Source or Object
1049
+ form, that is based on (or derived from) the Work and for which the
1050
+ editorial revisions, annotations, elaborations, or other modifications
1051
+ represent, as a whole, an original work of authorship. For the purposes
1052
+ of this License, Derivative Works shall not include works that remain
1053
+ separable from, or merely link (or bind by name) to the interfaces of,
1054
+ the Work and Derivative Works thereof.
1055
+
1056
+ "Contribution" shall mean any work of authorship, including
1057
+ the original version of the Work and any modifications or additions
1058
+ to that Work or Derivative Works thereof, that is intentionally
1059
+ submitted to Licensor for inclusion in the Work by the copyright owner
1060
+ or by an individual or Legal Entity authorized to submit on behalf of
1061
+ the copyright owner. For the purposes of this definition, "submitted"
1062
+ means any form of electronic, verbal, or written communication sent
1063
+ to the Licensor or its representatives, including but not limited to
1064
+ communication on electronic mailing lists, source code control systems,
1065
+ and issue tracking systems that are managed by, or on behalf of, the
1066
+ Licensor for the purpose of discussing and improving the Work, but
1067
+ excluding communication that is conspicuously marked or otherwise
1068
+ designated in writing by the copyright owner as "Not a Contribution."
1069
+
1070
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1071
+ on behalf of whom a Contribution has been received by Licensor and
1072
+ subsequently incorporated within the Work.
1073
+
1074
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1075
+ this License, each Contributor hereby grants to You a perpetual,
1076
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1077
+ copyright license to reproduce, prepare Derivative Works of,
1078
+ publicly display, publicly perform, sublicense, and distribute the
1079
+ Work and such Derivative Works in Source or Object form.
1080
+
1081
+ 3. Grant of Patent License. Subject to the terms and conditions of
1082
+ this License, each Contributor hereby grants to You a perpetual,
1083
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1084
+ (except as stated in this section) patent license to make, have made,
1085
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1086
+ where such license applies only to those patent claims licensable
1087
+ by such Contributor that are necessarily infringed by their
1088
+ Contribution(s) alone or by combination of their Contribution(s)
1089
+ with the Work to which such Contribution(s) was submitted. If You
1090
+ institute patent litigation against any entity (including a
1091
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1092
+ or a Contribution incorporated within the Work constitutes direct
1093
+ or contributory patent infringement, then any patent licenses
1094
+ granted to You under this License for that Work shall terminate
1095
+ as of the date such litigation is filed.
1096
+
1097
+ 4. Redistribution. You may reproduce and distribute copies of the
1098
+ Work or Derivative Works thereof in any medium, with or without
1099
+ modifications, and in Source or Object form, provided that You
1100
+ meet the following conditions:
1101
+
1102
+ (a) You must give any other recipients of the Work or
1103
+ Derivative Works a copy of this License; and
1104
+
1105
+ (b) You must cause any modified files to carry prominent notices
1106
+ stating that You changed the files; and
1107
+
1108
+ (c) You must retain, in the Source form of any Derivative Works
1109
+ that You distribute, all copyright, patent, trademark, and
1110
+ attribution notices from the Source form of the Work,
1111
+ excluding those notices that do not pertain to any part of
1112
+ the Derivative Works; and
1113
+
1114
+ (d) If the Work includes a "NOTICE" text file as part of its
1115
+ distribution, then any Derivative Works that You distribute must
1116
+ include a readable copy of the attribution notices contained
1117
+ within such NOTICE file, excluding those notices that do not
1118
+ pertain to any part of the Derivative Works, in at least one
1119
+ of the following places: within a NOTICE text file distributed
1120
+ as part of the Derivative Works; within the Source form or
1121
+ documentation, if provided along with the Derivative Works; or,
1122
+ within a display generated by the Derivative Works, if and
1123
+ wherever such third-party notices normally appear. The contents
1124
+ of the NOTICE file are for informational purposes only and
1125
+ do not modify the License. You may add Your own attribution
1126
+ notices within Derivative Works that You distribute, alongside
1127
+ or as an addendum to the NOTICE text from the Work, provided
1128
+ that such additional attribution notices cannot be construed
1129
+ as modifying the License.
1130
+
1131
+ You may add Your own copyright statement to Your modifications and
1132
+ may provide additional or different license terms and conditions
1133
+ for use, reproduction, or distribution of Your modifications, or
1134
+ for any such Derivative Works as a whole, provided Your use,
1135
+ reproduction, and distribution of the Work otherwise complies with
1136
+ the conditions stated in this License.
1137
+
1138
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1139
+ any Contribution intentionally submitted for inclusion in the Work
1140
+ by You to the Licensor shall be under the terms and conditions of
1141
+ this License, without any additional terms or conditions.
1142
+ Notwithstanding the above, nothing herein shall supersede or modify
1143
+ the terms of any separate license agreement you may have executed
1144
+ with Licensor regarding such Contributions.
1145
+
1146
+ 6. Trademarks. This License does not grant permission to use the trade
1147
+ names, trademarks, service marks, or product names of the Licensor,
1148
+ except as required for reasonable and customary use in describing the
1149
+ origin of the Work and reproducing the content of the NOTICE file.
1150
+
1151
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1152
+ agreed to in writing, Licensor provides the Work (and each
1153
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1154
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1155
+ implied, including, without limitation, any warranties or conditions
1156
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1157
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1158
+ appropriateness of using or redistributing the Work and assume any
1159
+ risks associated with Your exercise of permissions under this License.
1160
+
1161
+ 8. Limitation of Liability. In no event and under no legal theory,
1162
+ whether in tort (including negligence), contract, or otherwise,
1163
+ unless required by applicable law (such as deliberate and grossly
1164
+ negligent acts) or agreed to in writing, shall any Contributor be
1165
+ liable to You for damages, including any direct, indirect, special,
1166
+ incidental, or consequential damages of any character arising as a
1167
+ result of this License or out of the use or inability to use the
1168
+ Work (including but not limited to damages for loss of goodwill,
1169
+ work stoppage, computer failure or malfunction, or any and all
1170
+ other commercial damages or losses), even if such Contributor
1171
+ has been advised of the possibility of such damages.
1172
+
1173
+ 9. Accepting Warranty or Additional Liability. While redistributing
1174
+ the Work or Derivative Works thereof, You may choose to offer,
1175
+ and charge a fee for, acceptance of support, warranty, indemnity,
1176
+ or other liability obligations and/or rights consistent with this
1177
+ License. However, in accepting such obligations, You may act only
1178
+ on Your own behalf and on Your sole responsibility, not on behalf
1179
+ of any other Contributor, and only if You agree to indemnify,
1180
+ defend, and hold each Contributor harmless for any liability
1181
+ incurred by, or claims asserted against, such Contributor by reason
1182
+ of your accepting any such warranty or additional liability.
1183
+
1184
+ END OF TERMS AND CONDITIONS
1185
+ """
1186
+
1187
+ - Punycode.js, located at lib/punycode.js, is licensed as follows:
1188
+ """
1189
+ Copyright Mathias Bynens <https://mathiasbynens.be/>
1190
+
1191
+ Permission is hereby granted, free of charge, to any person obtaining
1192
+ a copy of this software and associated documentation files (the
1193
+ "Software"), to deal in the Software without restriction, including
1194
+ without limitation the rights to use, copy, modify, merge, publish,
1195
+ distribute, sublicense, and/or sell copies of the Software, and to
1196
+ permit persons to whom the Software is furnished to do so, subject to
1197
+ the following conditions:
1198
+
1199
+ The above copyright notice and this permission notice shall be
1200
+ included in all copies or substantial portions of the Software.
1201
+
1202
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1203
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1204
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1205
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1206
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1207
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1208
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1209
+ """
1210
+
1211
+ - V8, located at deps/v8, is licensed as follows:
1212
+ """
1213
+ This license applies to all parts of V8 that are not externally
1214
+ maintained libraries. The externally maintained libraries used by V8
1215
+ are:
1216
+
1217
+ - PCRE test suite, located in
1218
+ test/mjsunit/third_party/regexp-pcre/regexp-pcre.js. This is based on the
1219
+ test suite from PCRE-7.3, which is copyrighted by the University
1220
+ of Cambridge and Google, Inc. The copyright notice and license
1221
+ are embedded in regexp-pcre.js.
1222
+
1223
+ - Layout tests, located in test/mjsunit/third_party/object-keys. These are
1224
+ based on layout tests from webkit.org which are copyrighted by
1225
+ Apple Computer, Inc. and released under a 3-clause BSD license.
1226
+
1227
+ - Strongtalk assembler, the basis of the files assembler-arm-inl.h,
1228
+ assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h,
1229
+ assembler-ia32.cc, assembler-ia32.h, assembler-x64-inl.h,
1230
+ assembler-x64.cc, assembler-x64.h, assembler.cc and assembler.h.
1231
+ This code is copyrighted by Sun Microsystems Inc. and released
1232
+ under a 3-clause BSD license.
1233
+
1234
+ - Valgrind client API header, located at src/third_party/valgrind/valgrind.h
1235
+ This is released under the BSD license.
1236
+
1237
+ - The Wasm C/C++ API headers, located at third_party/wasm-api/wasm.{h,hh}
1238
+ This is released under the Apache license. The API's upstream prototype
1239
+ implementation also formed the basis of V8's implementation in
1240
+ src/wasm/c-api.cc.
1241
+
1242
+ These libraries have their own licenses; we recommend you read them,
1243
+ as their terms may differ from the terms below.
1244
+
1245
+ Further license information can be found in LICENSE files located in
1246
+ sub-directories.
1247
+
1248
+ Copyright 2014, the V8 project authors. All rights reserved.
1249
+ Redistribution and use in source and binary forms, with or without
1250
+ modification, are permitted provided that the following conditions are
1251
+ met:
1252
+
1253
+ * Redistributions of source code must retain the above copyright
1254
+ notice, this list of conditions and the following disclaimer.
1255
+ * Redistributions in binary form must reproduce the above
1256
+ copyright notice, this list of conditions and the following
1257
+ disclaimer in the documentation and/or other materials provided
1258
+ with the distribution.
1259
+ * Neither the name of Google Inc. nor the names of its
1260
+ contributors may be used to endorse or promote products derived
1261
+ from this software without specific prior written permission.
1262
+
1263
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1264
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1265
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1266
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1267
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1268
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1269
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1270
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1271
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1272
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1273
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1274
+ """
1275
+
1276
+ - SipHash, located at deps/v8/src/third_party/siphash, is licensed as follows:
1277
+ """
1278
+ SipHash reference C implementation
1279
+
1280
+ Copyright (c) 2016 Jean-Philippe Aumasson <jeanphilippe.aumasson@gmail.com>
1281
+
1282
+ To the extent possible under law, the author(s) have dedicated all
1283
+ copyright and related and neighboring rights to this software to the public
1284
+ domain worldwide. This software is distributed without any warranty.
1285
+ """
1286
+
1287
+ - zlib, located at deps/zlib, is licensed as follows:
1288
+ """
1289
+ zlib.h -- interface of the 'zlib' general purpose compression library
1290
+ version 1.3.0.1, August xxth, 2023
1291
+
1292
+ Copyright (C) 1995-2023 Jean-loup Gailly and Mark Adler
1293
+
1294
+ This software is provided 'as-is', without any express or implied
1295
+ warranty. In no event will the authors be held liable for any damages
1296
+ arising from the use of this software.
1297
+
1298
+ Permission is granted to anyone to use this software for any purpose,
1299
+ including commercial applications, and to alter it and redistribute it
1300
+ freely, subject to the following restrictions:
1301
+
1302
+ 1. The origin of this software must not be misrepresented; you must not
1303
+ claim that you wrote the original software. If you use this software
1304
+ in a product, an acknowledgment in the product documentation would be
1305
+ appreciated but is not required.
1306
+ 2. Altered source versions must be plainly marked as such, and must not be
1307
+ misrepresented as being the original software.
1308
+ 3. This notice may not be removed or altered from any source distribution.
1309
+
1310
+ Jean-loup Gailly Mark Adler
1311
+ jloup@gzip.org madler@alumni.caltech.edu
1312
+ """
1313
+
1314
+ - simdutf, located at deps/simdutf, is licensed as follows:
1315
+ """
1316
+ Copyright 2021 The simdutf authors
1317
+
1318
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1319
+ this software and associated documentation files (the "Software"), to deal in
1320
+ the Software without restriction, including without limitation the rights to
1321
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1322
+ the Software, and to permit persons to whom the Software is furnished to do so,
1323
+ subject to the following conditions:
1324
+
1325
+ The above copyright notice and this permission notice shall be included in all
1326
+ copies or substantial portions of the Software.
1327
+
1328
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1329
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1330
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1331
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1332
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1333
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1334
+ """
1335
+
1336
+ - ada, located at deps/ada, is licensed as follows:
1337
+ """
1338
+ Copyright 2023 Yagiz Nizipli and Daniel Lemire
1339
+
1340
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1341
+ this software and associated documentation files (the "Software"), to deal in
1342
+ the Software without restriction, including without limitation the rights to
1343
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1344
+ the Software, and to permit persons to whom the Software is furnished to do so,
1345
+ subject to the following conditions:
1346
+
1347
+ The above copyright notice and this permission notice shall be included in all
1348
+ copies or substantial portions of the Software.
1349
+
1350
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1351
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1352
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1353
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1354
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1355
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1356
+ """
1357
+
1358
+ - minimatch, located at deps/minimatch, is licensed as follows:
1359
+ """
1360
+ The ISC License
1361
+
1362
+ Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors
1363
+
1364
+ Permission to use, copy, modify, and/or distribute this software for any
1365
+ purpose with or without fee is hereby granted, provided that the above
1366
+ copyright notice and this permission notice appear in all copies.
1367
+
1368
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1369
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1370
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1371
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1372
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1373
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1374
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1375
+ """
1376
+
1377
+ - npm, located at deps/npm, is licensed as follows:
1378
+ """
1379
+ The npm application
1380
+ Copyright (c) npm, Inc. and Contributors
1381
+ Licensed on the terms of The Artistic License 2.0
1382
+
1383
+ Node package dependencies of the npm application
1384
+ Copyright (c) their respective copyright owners
1385
+ Licensed on their respective license terms
1386
+
1387
+ The npm public registry at https://registry.npmjs.org
1388
+ and the npm website at https://www.npmjs.com
1389
+ Operated by npm, Inc.
1390
+ Use governed by terms published on https://www.npmjs.com
1391
+
1392
+ "Node.js"
1393
+ Trademark Joyent, Inc., https://joyent.com
1394
+ Neither npm nor npm, Inc. are affiliated with Joyent, Inc.
1395
+
1396
+ The Node.js application
1397
+ Project of Node Foundation, https://nodejs.org
1398
+
1399
+ The npm Logo
1400
+ Copyright (c) Mathias Pettersson and Brian Hammond
1401
+
1402
+ "Gubblebum Blocky" typeface
1403
+ Copyright (c) Tjarda Koster, https://jelloween.deviantart.com
1404
+ Used with permission
1405
+
1406
+ --------
1407
+
1408
+ The Artistic License 2.0
1409
+
1410
+ Copyright (c) 2000-2006, The Perl Foundation.
1411
+
1412
+ Everyone is permitted to copy and distribute verbatim copies
1413
+ of this license document, but changing it is not allowed.
1414
+
1415
+ Preamble
1416
+
1417
+ This license establishes the terms under which a given free software
1418
+ Package may be copied, modified, distributed, and/or redistributed.
1419
+ The intent is that the Copyright Holder maintains some artistic
1420
+ control over the development of that Package while still keeping the
1421
+ Package available as open source and free software.
1422
+
1423
+ You are always permitted to make arrangements wholly outside of this
1424
+ license directly with the Copyright Holder of a given Package. If the
1425
+ terms of this license do not permit the full use that you propose to
1426
+ make of the Package, you should contact the Copyright Holder and seek
1427
+ a different licensing arrangement.
1428
+
1429
+ Definitions
1430
+
1431
+ "Copyright Holder" means the individual(s) or organization(s)
1432
+ named in the copyright notice for the entire Package.
1433
+
1434
+ "Contributor" means any party that has contributed code or other
1435
+ material to the Package, in accordance with the Copyright Holder's
1436
+ procedures.
1437
+
1438
+ "You" and "your" means any person who would like to copy,
1439
+ distribute, or modify the Package.
1440
+
1441
+ "Package" means the collection of files distributed by the
1442
+ Copyright Holder, and derivatives of that collection and/or of
1443
+ those files. A given Package may consist of either the Standard
1444
+ Version, or a Modified Version.
1445
+
1446
+ "Distribute" means providing a copy of the Package or making it
1447
+ accessible to anyone else, or in the case of a company or
1448
+ organization, to others outside of your company or organization.
1449
+
1450
+ "Distributor Fee" means any fee that you charge for Distributing
1451
+ this Package or providing support for this Package to another
1452
+ party. It does not mean licensing fees.
1453
+
1454
+ "Standard Version" refers to the Package if it has not been
1455
+ modified, or has been modified only in ways explicitly requested
1456
+ by the Copyright Holder.
1457
+
1458
+ "Modified Version" means the Package, if it has been changed, and
1459
+ such changes were not explicitly requested by the Copyright
1460
+ Holder.
1461
+
1462
+ "Original License" means this Artistic License as Distributed with
1463
+ the Standard Version of the Package, in its current version or as
1464
+ it may be modified by The Perl Foundation in the future.
1465
+
1466
+ "Source" form means the source code, documentation source, and
1467
+ configuration files for the Package.
1468
+
1469
+ "Compiled" form means the compiled bytecode, object code, binary,
1470
+ or any other form resulting from mechanical transformation or
1471
+ translation of the Source form.
1472
+
1473
+ Permission for Use and Modification Without Distribution
1474
+
1475
+ (1) You are permitted to use the Standard Version and create and use
1476
+ Modified Versions for any purpose without restriction, provided that
1477
+ you do not Distribute the Modified Version.
1478
+
1479
+ Permissions for Redistribution of the Standard Version
1480
+
1481
+ (2) You may Distribute verbatim copies of the Source form of the
1482
+ Standard Version of this Package in any medium without restriction,
1483
+ either gratis or for a Distributor Fee, provided that you duplicate
1484
+ all of the original copyright notices and associated disclaimers. At
1485
+ your discretion, such verbatim copies may or may not include a
1486
+ Compiled form of the Package.
1487
+
1488
+ (3) You may apply any bug fixes, portability changes, and other
1489
+ modifications made available from the Copyright Holder. The resulting
1490
+ Package will still be considered the Standard Version, and as such
1491
+ will be subject to the Original License.
1492
+
1493
+ Distribution of Modified Versions of the Package as Source
1494
+
1495
+ (4) You may Distribute your Modified Version as Source (either gratis
1496
+ or for a Distributor Fee, and with or without a Compiled form of the
1497
+ Modified Version) provided that you clearly document how it differs
1498
+ from the Standard Version, including, but not limited to, documenting
1499
+ any non-standard features, executables, or modules, and provided that
1500
+ you do at least ONE of the following:
1501
+
1502
+ (a) make the Modified Version available to the Copyright Holder
1503
+ of the Standard Version, under the Original License, so that the
1504
+ Copyright Holder may include your modifications in the Standard
1505
+ Version.
1506
+
1507
+ (b) ensure that installation of your Modified Version does not
1508
+ prevent the user installing or running the Standard Version. In
1509
+ addition, the Modified Version must bear a name that is different
1510
+ from the name of the Standard Version.
1511
+
1512
+ (c) allow anyone who receives a copy of the Modified Version to
1513
+ make the Source form of the Modified Version available to others
1514
+ under
1515
+
1516
+ (i) the Original License or
1517
+
1518
+ (ii) a license that permits the licensee to freely copy,
1519
+ modify and redistribute the Modified Version using the same
1520
+ licensing terms that apply to the copy that the licensee
1521
+ received, and requires that the Source form of the Modified
1522
+ Version, and of any works derived from it, be made freely
1523
+ available in that license fees are prohibited but Distributor
1524
+ Fees are allowed.
1525
+
1526
+ Distribution of Compiled Forms of the Standard Version
1527
+ or Modified Versions without the Source
1528
+
1529
+ (5) You may Distribute Compiled forms of the Standard Version without
1530
+ the Source, provided that you include complete instructions on how to
1531
+ get the Source of the Standard Version. Such instructions must be
1532
+ valid at the time of your distribution. If these instructions, at any
1533
+ time while you are carrying out such distribution, become invalid, you
1534
+ must provide new instructions on demand or cease further distribution.
1535
+ If you provide valid instructions or cease distribution within thirty
1536
+ days after you become aware that the instructions are invalid, then
1537
+ you do not forfeit any of your rights under this license.
1538
+
1539
+ (6) You may Distribute a Modified Version in Compiled form without
1540
+ the Source, provided that you comply with Section 4 with respect to
1541
+ the Source of the Modified Version.
1542
+
1543
+ Aggregating or Linking the Package
1544
+
1545
+ (7) You may aggregate the Package (either the Standard Version or
1546
+ Modified Version) with other packages and Distribute the resulting
1547
+ aggregation provided that you do not charge a licensing fee for the
1548
+ Package. Distributor Fees are permitted, and licensing fees for other
1549
+ components in the aggregation are permitted. The terms of this license
1550
+ apply to the use and Distribution of the Standard or Modified Versions
1551
+ as included in the aggregation.
1552
+
1553
+ (8) You are permitted to link Modified and Standard Versions with
1554
+ other works, to embed the Package in a larger work of your own, or to
1555
+ build stand-alone binary or bytecode versions of applications that
1556
+ include the Package, and Distribute the result without restriction,
1557
+ provided the result does not expose a direct interface to the Package.
1558
+
1559
+ Items That are Not Considered Part of a Modified Version
1560
+
1561
+ (9) Works (including, but not limited to, modules and scripts) that
1562
+ merely extend or make use of the Package, do not, by themselves, cause
1563
+ the Package to be a Modified Version. In addition, such works are not
1564
+ considered parts of the Package itself, and are not subject to the
1565
+ terms of this license.
1566
+
1567
+ General Provisions
1568
+
1569
+ (10) Any use, modification, and distribution of the Standard or
1570
+ Modified Versions is governed by this Artistic License. By using,
1571
+ modifying or distributing the Package, you accept this license. Do not
1572
+ use, modify, or distribute the Package, if you do not accept this
1573
+ license.
1574
+
1575
+ (11) If your Modified Version has been derived from a Modified
1576
+ Version made by someone other than you, you are nevertheless required
1577
+ to ensure that your Modified Version complies with the requirements of
1578
+ this license.
1579
+
1580
+ (12) This license does not grant you the right to use any trademark,
1581
+ service mark, tradename, or logo of the Copyright Holder.
1582
+
1583
+ (13) This license includes the non-exclusive, worldwide,
1584
+ free-of-charge patent license to make, have made, use, offer to sell,
1585
+ sell, import and otherwise transfer the Package with respect to any
1586
+ patent claims licensable by the Copyright Holder that are necessarily
1587
+ infringed by the Package. If you institute patent litigation
1588
+ (including a cross-claim or counterclaim) against any party alleging
1589
+ that the Package constitutes direct or contributory patent
1590
+ infringement, then this Artistic License to you shall terminate on the
1591
+ date that such litigation is filed.
1592
+
1593
+ (14) Disclaimer of Warranty:
1594
+ THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS
1595
+ IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
1596
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
1597
+ NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL
1598
+ LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL
1599
+ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
1600
+ DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF
1601
+ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1602
+
1603
+ --------
1604
+ """
1605
+
1606
+ - GYP, located at tools/gyp, is licensed as follows:
1607
+ """
1608
+ Copyright (c) 2020 Node.js contributors. All rights reserved.
1609
+ Copyright (c) 2009 Google Inc. All rights reserved.
1610
+
1611
+ Redistribution and use in source and binary forms, with or without
1612
+ modification, are permitted provided that the following conditions are
1613
+ met:
1614
+
1615
+ * Redistributions of source code must retain the above copyright
1616
+ notice, this list of conditions and the following disclaimer.
1617
+ * Redistributions in binary form must reproduce the above
1618
+ copyright notice, this list of conditions and the following disclaimer
1619
+ in the documentation and/or other materials provided with the
1620
+ distribution.
1621
+ * Neither the name of Google Inc. nor the names of its
1622
+ contributors may be used to endorse or promote products derived from
1623
+ this software without specific prior written permission.
1624
+
1625
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1626
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1627
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1628
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1629
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1630
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1631
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1632
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1633
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1634
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1635
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1636
+ """
1637
+
1638
+ - inspector_protocol, located at tools/inspector_protocol, is licensed as follows:
1639
+ """
1640
+ // Copyright 2016 The Chromium Authors. All rights reserved.
1641
+ //
1642
+ // Redistribution and use in source and binary forms, with or without
1643
+ // modification, are permitted provided that the following conditions are
1644
+ // met:
1645
+ //
1646
+ // * Redistributions of source code must retain the above copyright
1647
+ // notice, this list of conditions and the following disclaimer.
1648
+ // * Redistributions in binary form must reproduce the above
1649
+ // copyright notice, this list of conditions and the following disclaimer
1650
+ // in the documentation and/or other materials provided with the
1651
+ // distribution.
1652
+ // * Neither the name of Google Inc. nor the names of its
1653
+ // contributors may be used to endorse or promote products derived from
1654
+ // this software without specific prior written permission.
1655
+ //
1656
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1657
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1658
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1659
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1660
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1661
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1662
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1663
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1664
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1665
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1666
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1667
+ """
1668
+
1669
+ - jinja2, located at tools/inspector_protocol/jinja2, is licensed as follows:
1670
+ """
1671
+ Copyright (c) 2009 by the Jinja Team, see AUTHORS for more details.
1672
+
1673
+ Some rights reserved.
1674
+
1675
+ Redistribution and use in source and binary forms, with or without
1676
+ modification, are permitted provided that the following conditions are
1677
+ met:
1678
+
1679
+ * Redistributions of source code must retain the above copyright
1680
+ notice, this list of conditions and the following disclaimer.
1681
+
1682
+ * Redistributions in binary form must reproduce the above
1683
+ copyright notice, this list of conditions and the following
1684
+ disclaimer in the documentation and/or other materials provided
1685
+ with the distribution.
1686
+
1687
+ * The names of the contributors may not be used to endorse or
1688
+ promote products derived from this software without specific
1689
+ prior written permission.
1690
+
1691
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1692
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1693
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1694
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1695
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1696
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1697
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1698
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1699
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1700
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1701
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1702
+ """
1703
+
1704
+ - markupsafe, located at tools/inspector_protocol/markupsafe, is licensed as follows:
1705
+ """
1706
+ Copyright (c) 2010 by Armin Ronacher and contributors. See AUTHORS
1707
+ for more details.
1708
+
1709
+ Some rights reserved.
1710
+
1711
+ Redistribution and use in source and binary forms of the software as well
1712
+ as documentation, with or without modification, are permitted provided
1713
+ that the following conditions are met:
1714
+
1715
+ * Redistributions of source code must retain the above copyright
1716
+ notice, this list of conditions and the following disclaimer.
1717
+
1718
+ * Redistributions in binary form must reproduce the above
1719
+ copyright notice, this list of conditions and the following
1720
+ disclaimer in the documentation and/or other materials provided
1721
+ with the distribution.
1722
+
1723
+ * The names of the contributors may not be used to endorse or
1724
+ promote products derived from this software without specific
1725
+ prior written permission.
1726
+
1727
+ THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND
1728
+ CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
1729
+ NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1730
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
1731
+ OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
1732
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
1733
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
1734
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
1735
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
1736
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1737
+ SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
1738
+ DAMAGE.
1739
+ """
1740
+
1741
+ - cpplint.py, located at tools/cpplint.py, is licensed as follows:
1742
+ """
1743
+ Copyright (c) 2009 Google Inc. All rights reserved.
1744
+
1745
+ Redistribution and use in source and binary forms, with or without
1746
+ modification, are permitted provided that the following conditions are
1747
+ met:
1748
+
1749
+ * Redistributions of source code must retain the above copyright
1750
+ notice, this list of conditions and the following disclaimer.
1751
+ * Redistributions in binary form must reproduce the above
1752
+ copyright notice, this list of conditions and the following disclaimer
1753
+ in the documentation and/or other materials provided with the
1754
+ distribution.
1755
+ * Neither the name of Google Inc. nor the names of its
1756
+ contributors may be used to endorse or promote products derived from
1757
+ this software without specific prior written permission.
1758
+
1759
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1760
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1761
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1762
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1763
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1764
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1765
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1766
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1767
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1768
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1769
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1770
+ """
1771
+
1772
+ - gypi_to_gn.py, located at tools/gypi_to_gn.py, is licensed as follows:
1773
+ """
1774
+ Redistribution and use in source and binary forms, with or without
1775
+ modification, are permitted provided that the following conditions are
1776
+ met:
1777
+
1778
+ * Redistributions of source code must retain the above copyright
1779
+ notice, this list of conditions and the following disclaimer.
1780
+ * Redistributions in binary form must reproduce the above
1781
+ copyright notice, this list of conditions and the following disclaimer
1782
+ in the documentation and/or other materials provided with the
1783
+ distribution.
1784
+ * Neither the name of Google LLC nor the names of its
1785
+ contributors may be used to endorse or promote products derived from
1786
+ this software without specific prior written permission.
1787
+
1788
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1789
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1790
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1791
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1792
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1793
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1794
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1795
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1796
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1797
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1798
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1799
+ """
1800
+
1801
+ - ESLint, located at tools/node_modules/eslint, is licensed as follows:
1802
+ """
1803
+ Copyright OpenJS Foundation and other contributors, <www.openjsf.org>
1804
+
1805
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1806
+ of this software and associated documentation files (the "Software"), to deal
1807
+ in the Software without restriction, including without limitation the rights
1808
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1809
+ copies of the Software, and to permit persons to whom the Software is
1810
+ furnished to do so, subject to the following conditions:
1811
+
1812
+ The above copyright notice and this permission notice shall be included in
1813
+ all copies or substantial portions of the Software.
1814
+
1815
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1816
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1817
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1819
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1820
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1821
+ THE SOFTWARE.
1822
+ """
1823
+
1824
+ - gtest, located at deps/googletest, is licensed as follows:
1825
+ """
1826
+ Copyright 2008, Google Inc.
1827
+ All rights reserved.
1828
+
1829
+ Redistribution and use in source and binary forms, with or without
1830
+ modification, are permitted provided that the following conditions are
1831
+ met:
1832
+
1833
+ * Redistributions of source code must retain the above copyright
1834
+ notice, this list of conditions and the following disclaimer.
1835
+ * Redistributions in binary form must reproduce the above
1836
+ copyright notice, this list of conditions and the following disclaimer
1837
+ in the documentation and/or other materials provided with the
1838
+ distribution.
1839
+ * Neither the name of Google Inc. nor the names of its
1840
+ contributors may be used to endorse or promote products derived from
1841
+ this software without specific prior written permission.
1842
+
1843
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1844
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1845
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1846
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1847
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1848
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1849
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1850
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1851
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1852
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1853
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1854
+ """
1855
+
1856
+ - nghttp2, located at deps/nghttp2, is licensed as follows:
1857
+ """
1858
+ The MIT License
1859
+
1860
+ Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa
1861
+ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors
1862
+
1863
+ Permission is hereby granted, free of charge, to any person obtaining
1864
+ a copy of this software and associated documentation files (the
1865
+ "Software"), to deal in the Software without restriction, including
1866
+ without limitation the rights to use, copy, modify, merge, publish,
1867
+ distribute, sublicense, and/or sell copies of the Software, and to
1868
+ permit persons to whom the Software is furnished to do so, subject to
1869
+ the following conditions:
1870
+
1871
+ The above copyright notice and this permission notice shall be
1872
+ included in all copies or substantial portions of the Software.
1873
+
1874
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1875
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1876
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1877
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1878
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1879
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1880
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1881
+ """
1882
+
1883
+ - large_pages, located at src/large_pages, is licensed as follows:
1884
+ """
1885
+ Copyright (C) 2018 Intel Corporation
1886
+
1887
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1888
+ of this software and associated documentation files (the "Software"),
1889
+ to deal in the Software without restriction, including without limitation
1890
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
1891
+ and/or sell copies of the Software, and to permit persons to whom
1892
+ the Software is furnished to do so, subject to the following conditions:
1893
+
1894
+ The above copyright notice and this permission notice shall be included
1895
+ in all copies or substantial portions of the Software.
1896
+
1897
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
1898
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1899
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
1900
+ THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES
1901
+ OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
1902
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
1903
+ OR OTHER DEALINGS IN THE SOFTWARE.
1904
+ """
1905
+
1906
+ - caja, located at lib/internal/freeze_intrinsics.js, is licensed as follows:
1907
+ """
1908
+ Adapted from SES/Caja - Copyright (C) 2011 Google Inc.
1909
+ Copyright (C) 2018 Agoric
1910
+
1911
+ Licensed under the Apache License, Version 2.0 (the "License");
1912
+ you may not use this file except in compliance with the License.
1913
+ You may obtain a copy of the License at
1914
+
1915
+ http://www.apache.org/licenses/LICENSE-2.0
1916
+
1917
+ Unless required by applicable law or agreed to in writing, software
1918
+ distributed under the License is distributed on an "AS IS" BASIS,
1919
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1920
+ See the License for the specific language governing permissions and
1921
+ limitations under the License.
1922
+ """
1923
+
1924
+ - brotli, located at deps/brotli, is licensed as follows:
1925
+ """
1926
+ Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.
1927
+
1928
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1929
+ of this software and associated documentation files (the "Software"), to deal
1930
+ in the Software without restriction, including without limitation the rights
1931
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1932
+ copies of the Software, and to permit persons to whom the Software is
1933
+ furnished to do so, subject to the following conditions:
1934
+
1935
+ The above copyright notice and this permission notice shall be included in
1936
+ all copies or substantial portions of the Software.
1937
+
1938
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1939
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1940
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1941
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1942
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1943
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1944
+ THE SOFTWARE.
1945
+ """
1946
+
1947
+ - HdrHistogram, located at deps/histogram, is licensed as follows:
1948
+ """
1949
+ The code in this repository code was Written by Gil Tene, Michael Barker,
1950
+ and Matt Warren, and released to the public domain, as explained at
1951
+ http://creativecommons.org/publicdomain/zero/1.0/
1952
+
1953
+ For users of this code who wish to consume it under the "BSD" license
1954
+ rather than under the public domain or CC0 contribution text mentioned
1955
+ above, the code found under this directory is *also* provided under the
1956
+ following license (commonly referred to as the BSD 2-Clause License). This
1957
+ license does not detract from the above stated release of the code into
1958
+ the public domain, and simply represents an additional license granted by
1959
+ the Author.
1960
+
1961
+ -----------------------------------------------------------------------------
1962
+ ** Beginning of "BSD 2-Clause License" text. **
1963
+
1964
+ Copyright (c) 2012, 2013, 2014 Gil Tene
1965
+ Copyright (c) 2014 Michael Barker
1966
+ Copyright (c) 2014 Matt Warren
1967
+ All rights reserved.
1968
+
1969
+ Redistribution and use in source and binary forms, with or without
1970
+ modification, are permitted provided that the following conditions are met:
1971
+
1972
+ 1. Redistributions of source code must retain the above copyright notice,
1973
+ this list of conditions and the following disclaimer.
1974
+
1975
+ 2. Redistributions in binary form must reproduce the above copyright notice,
1976
+ this list of conditions and the following disclaimer in the documentation
1977
+ and/or other materials provided with the distribution.
1978
+
1979
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1980
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1981
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1982
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
1983
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
1984
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
1985
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
1986
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
1987
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
1988
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
1989
+ THE POSSIBILITY OF SUCH DAMAGE.
1990
+ """
1991
+
1992
+ - node-heapdump, located at src/heap_utils.cc, is licensed as follows:
1993
+ """
1994
+ ISC License
1995
+
1996
+ Copyright (c) 2012, Ben Noordhuis <info@bnoordhuis.nl>
1997
+
1998
+ Permission to use, copy, modify, and/or distribute this software for any
1999
+ purpose with or without fee is hereby granted, provided that the above
2000
+ copyright notice and this permission notice appear in all copies.
2001
+
2002
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2003
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2004
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2005
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2006
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2007
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
2008
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2009
+
2010
+ === src/compat.h src/compat-inl.h ===
2011
+
2012
+ ISC License
2013
+
2014
+ Copyright (c) 2014, StrongLoop Inc.
2015
+
2016
+ Permission to use, copy, modify, and/or distribute this software for any
2017
+ purpose with or without fee is hereby granted, provided that the above
2018
+ copyright notice and this permission notice appear in all copies.
2019
+
2020
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2021
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2022
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2023
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2024
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2025
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
2026
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2027
+ """
2028
+
2029
+ - rimraf, located at lib/internal/fs/rimraf.js, is licensed as follows:
2030
+ """
2031
+ The ISC License
2032
+
2033
+ Copyright (c) Isaac Z. Schlueter and Contributors
2034
+
2035
+ Permission to use, copy, modify, and/or distribute this software for any
2036
+ purpose with or without fee is hereby granted, provided that the above
2037
+ copyright notice and this permission notice appear in all copies.
2038
+
2039
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2040
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2041
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2042
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2043
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2044
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
2045
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2046
+ """
2047
+
2048
+ - uvwasi, located at deps/uvwasi, is licensed as follows:
2049
+ """
2050
+ MIT License
2051
+
2052
+ Copyright (c) 2019 Colin Ihrig and Contributors
2053
+
2054
+ Permission is hereby granted, free of charge, to any person obtaining a copy
2055
+ of this software and associated documentation files (the "Software"), to deal
2056
+ in the Software without restriction, including without limitation the rights
2057
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2058
+ copies of the Software, and to permit persons to whom the Software is
2059
+ furnished to do so, subject to the following conditions:
2060
+
2061
+ The above copyright notice and this permission notice shall be included in all
2062
+ copies or substantial portions of the Software.
2063
+
2064
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2065
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2066
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2067
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2068
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2069
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2070
+ SOFTWARE.
2071
+ """
2072
+
2073
+ - ngtcp2, located at deps/ngtcp2/ngtcp2/, is licensed as follows:
2074
+ """
2075
+ The MIT License
2076
+
2077
+ Copyright (c) 2016 ngtcp2 contributors
2078
+
2079
+ Permission is hereby granted, free of charge, to any person obtaining
2080
+ a copy of this software and associated documentation files (the
2081
+ "Software"), to deal in the Software without restriction, including
2082
+ without limitation the rights to use, copy, modify, merge, publish,
2083
+ distribute, sublicense, and/or sell copies of the Software, and to
2084
+ permit persons to whom the Software is furnished to do so, subject to
2085
+ the following conditions:
2086
+
2087
+ The above copyright notice and this permission notice shall be
2088
+ included in all copies or substantial portions of the Software.
2089
+
2090
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2091
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2092
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2093
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2094
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2095
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2096
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2097
+ """
2098
+
2099
+ - nghttp3, located at deps/ngtcp2/nghttp3/, is licensed as follows:
2100
+ """
2101
+ The MIT License
2102
+
2103
+ Copyright (c) 2019 nghttp3 contributors
2104
+
2105
+ Permission is hereby granted, free of charge, to any person obtaining
2106
+ a copy of this software and associated documentation files (the
2107
+ "Software"), to deal in the Software without restriction, including
2108
+ without limitation the rights to use, copy, modify, merge, publish,
2109
+ distribute, sublicense, and/or sell copies of the Software, and to
2110
+ permit persons to whom the Software is furnished to do so, subject to
2111
+ the following conditions:
2112
+
2113
+ The above copyright notice and this permission notice shall be
2114
+ included in all copies or substantial portions of the Software.
2115
+
2116
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2117
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2118
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2119
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2120
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2121
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2122
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2123
+ """
2124
+
2125
+ - node-fs-extra, located at lib/internal/fs/cp, is licensed as follows:
2126
+ """
2127
+ (The MIT License)
2128
+
2129
+ Copyright (c) 2011-2017 JP Richardson
2130
+
2131
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
2132
+ (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,
2133
+ merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
2134
+ furnished to do so, subject to the following conditions:
2135
+
2136
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2137
+
2138
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
2139
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
2140
+ OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
2141
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2142
+ """
2143
+
2144
+ - base64, located at deps/base64/base64/, is licensed as follows:
2145
+ """
2146
+ Copyright (c) 2005-2007, Nick Galbreath
2147
+ Copyright (c) 2015-2018, Wojciech Muła
2148
+ Copyright (c) 2016-2017, Matthieu Darbois
2149
+ Copyright (c) 2013-2022, Alfred Klomp
2150
+ All rights reserved.
2151
+
2152
+ Redistribution and use in source and binary forms, with or without
2153
+ modification, are permitted provided that the following conditions are
2154
+ met:
2155
+
2156
+ - Redistributions of source code must retain the above copyright notice,
2157
+ this list of conditions and the following disclaimer.
2158
+
2159
+ - Redistributions in binary form must reproduce the above copyright
2160
+ notice, this list of conditions and the following disclaimer in the
2161
+ documentation and/or other materials provided with the distribution.
2162
+
2163
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
2164
+ IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2165
+ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
2166
+ PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2167
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2168
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
2169
+ TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
2170
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
2171
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
2172
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
2173
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2174
+ """