Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

1723 lignes
84 KiB

il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
  1. GitLens
  2. THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
  3. This project incorporates components from the projects listed below.
  4. 1. @microsoft/fast-element version 1.11.0 (https://github.com/Microsoft/fast)
  5. 2. @microsoft/fast-react-wrapper version 0.3.16-0 (https://github.com/Microsoft/fast)
  6. 3. @octokit/core version 4.2.0 (https://github.com/octokit/core.js)
  7. 4. @opentelemetry/api version 1.4.1 (https://github.com/open-telemetry/opentelemetry-js)
  8. 5. @opentelemetry/exporter-trace-otlp-http version 0.36.0 (https://github.com/open-telemetry/opentelemetry-js)
  9. 6. @opentelemetry/sdk-trace-base version 1.10.0 (https://github.com/open-telemetry/opentelemetry-js)
  10. 7. @vscode/codicons version 0.0.32 (https://github.com/microsoft/vscode-codicons)
  11. 8. @vscode/webview-ui-toolkit version 1.2.2 (https://github.com/microsoft/vscode-webview-ui-toolkit)
  12. 9. ansi-regex version 6.0.1 (https://github.com/chalk/ansi-regex)
  13. 10. billboard.js version 3.7.4 (https://github.com/naver/billboard.js)
  14. 11. https-proxy-agent version 5.0.1 (https://github.com/TooTallNate/node-https-proxy-agent)
  15. 12. iconv-lite version 0.6.3 (https://github.com/ashtuchkin/iconv-lite)
  16. 13. lit version 2.6.1 (https://github.com/lit/lit)
  17. 14. lodash-es version 4.17.21 (https://github.com/lodash/lodash)
  18. 15. microsoft/vscode (https://github.com/microsoft/vscode)
  19. 16. node-fetch version 2.6.9 (https://github.com/bitinn/node-fetch)
  20. 17. os-browserify version 0.3.0 (https://github.com/CoderPuppy/os-browserify)
  21. 18. path-browserify version 1.0.1 (https://github.com/browserify/path-browserify)
  22. 19. react-dom version 16.8.4 (https://github.com/facebook/react)
  23. 20. react version 16.8.4 (https://github.com/facebook/react)
  24. 21. sindresorhus/is-fullwidth-code-point (https://github.com/sindresorhus/is-fullwidth-code-point)
  25. 22. sindresorhus/string-width (https://github.com/sindresorhus/string-width)
  26. 23. sortablejs version 1.15.0 (https://github.com/SortableJS/Sortable)
  27. %% @microsoft/fast-element NOTICES AND INFORMATION BEGIN HERE
  28. =========================================
  29. # FAST Element
  30. [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
  31. [![npm version](https://badge.fury.io/js/%40microsoft%2Ffast-element.svg)](https://badge.fury.io/js/%40microsoft%2Ffast-element)
  32. The `fast-element` library is a lightweight means to easily build performant, memory-efficient, standards-compliant Web Components. FAST Elements work in every major browser and can be used in combination with any front-end framework or even without a framework.
  33. ## Installation
  34. ### From NPM
  35. To install the `fast-element` library, use either `npm` or `yarn` as follows:
  36. ```shell
  37. npm install --save @microsoft/fast-element
  38. ```
  39. ```shell
  40. yarn add @microsoft/fast-element
  41. ```
  42. Within your JavaScript or TypeScript code, you can then import library APIs like this:
  43. ```ts
  44. import { FASTElement } from '@microsoft/fast-element';
  45. ```
  46. :::tip
  47. Looking for a setup that integrates with a particular front-end framework or bundler? Check out [our integration docs](../integrations/introduction.md).
  48. :::
  49. ### From CDN
  50. A pre-bundled script that contains all APIs needed to build web components with FAST Element is available on CDN. You can use this script by adding [`type="module"`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) to the script element and then importing from the CDN.
  51. ```html
  52. <!DOCTYPE html>
  53. <html lang="en">
  54. <head>
  55. <script type="module">
  56. import { FASTElement } from "https://cdn.jsdelivr.net/npm/@microsoft/fast-element/dist/fast-element.min.js";
  57. // your code here
  58. </script>
  59. </head>
  60. <!-- ... -->
  61. </html>
  62. ```
  63. The markup above always references the latest release. When deploying to production, you will want to ship with a specific version. Here's an example of the markup for that:
  64. ```html
  65. <script type="module" src="https://cdn.jsdelivr.net/npm/@microsoft/fast-element@1.6.2/dist/fast-element.min.js"></script>
  66. ```
  67. :::note
  68. For simplicity, examples throughout the documentation will assume the library has been installed from NPM, but you can always replace the import location with the CDN URL.
  69. :::
  70. :::tip
  71. Looking for a quick guide on building components? Check out [our Cheat Sheet](../resources/cheat-sheet.md#building-components).
  72. :::
  73. =========================================
  74. END OF @microsoft/fast-element NOTICES AND INFORMATION
  75. %% @microsoft/fast-react-wrapper NOTICES AND INFORMATION BEGIN HERE
  76. =========================================
  77. # FAST React Wrapper
  78. [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
  79. [![npm version](https://badge.fury.io/js/%40microsoft%2Ffast-react-wrapper.svg)](https://badge.fury.io/js/%40microsoft%2Ffast-react-wrapper)
  80. The `fast-react-wrapper` package contains a utility that enables automatically wrapping Web Components in a React component for ease of integration into React projects.
  81. ## Installation
  82. ### From NPM
  83. To install the `fast-react-wrapper` library, use either `npm` or `yarn` as follows:
  84. ```shell
  85. npm install --save @microsoft/fast-react-wrapper
  86. ```
  87. ```shell
  88. yarn add @microsoft/fast-react-wrapper
  89. ```
  90. Within your JavaScript or TypeScript code, you can then and use the wrapper like this:
  91. ```ts
  92. import React from 'react';
  93. import { provideReactWrapper } from '@microsoft/fast-react-wrapper';
  94. const { wrap } = provideReactWrapper(React);
  95. const MyComponent = wrap(MyComponent);
  96. ```
  97. For additional wrapper settings and more information on integrating with Design Systems, see [our integration docs](https://fast.design/docs/integrations/react).
  98. =========================================
  99. END OF @microsoft/fast-react-wrapper NOTICES AND INFORMATION
  100. %% @octokit/core NOTICES AND INFORMATION BEGIN HERE
  101. =========================================
  102. The MIT License
  103. Copyright (c) 2019 Octokit contributors
  104. Permission is hereby granted, free of charge, to any person obtaining a copy
  105. of this software and associated documentation files (the "Software"), to deal
  106. in the Software without restriction, including without limitation the rights
  107. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  108. copies of the Software, and to permit persons to whom the Software is
  109. furnished to do so, subject to the following conditions:
  110. The above copyright notice and this permission notice shall be included in
  111. all copies or substantial portions of the Software.
  112. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  113. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  114. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  115. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  116. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  117. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  118. THE SOFTWARE.
  119. =========================================
  120. END OF @octokit/core NOTICES AND INFORMATION
  121. %% @opentelemetry/api NOTICES AND INFORMATION BEGIN HERE
  122. =========================================
  123. Apache License
  124. Version 2.0, January 2004
  125. http://www.apache.org/licenses/
  126. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  127. 1. Definitions.
  128. "License" shall mean the terms and conditions for use, reproduction,
  129. and distribution as defined by Sections 1 through 9 of this document.
  130. "Licensor" shall mean the copyright owner or entity authorized by
  131. the copyright owner that is granting the License.
  132. "Legal Entity" shall mean the union of the acting entity and all
  133. other entities that control, are controlled by, or are under common
  134. control with that entity. For the purposes of this definition,
  135. "control" means (i) the power, direct or indirect, to cause the
  136. direction or management of such entity, whether by contract or
  137. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  138. outstanding shares, or (iii) beneficial ownership of such entity.
  139. "You" (or "Your") shall mean an individual or Legal Entity
  140. exercising permissions granted by this License.
  141. "Source" form shall mean the preferred form for making modifications,
  142. including but not limited to software source code, documentation
  143. source, and configuration files.
  144. "Object" form shall mean any form resulting from mechanical
  145. transformation or translation of a Source form, including but
  146. not limited to compiled object code, generated documentation,
  147. and conversions to other media types.
  148. "Work" shall mean the work of authorship, whether in Source or
  149. Object form, made available under the License, as indicated by a
  150. copyright notice that is included in or attached to the work
  151. (an example is provided in the Appendix below).
  152. "Derivative Works" shall mean any work, whether in Source or Object
  153. form, that is based on (or derived from) the Work and for which the
  154. editorial revisions, annotations, elaborations, or other modifications
  155. represent, as a whole, an original work of authorship. For the purposes
  156. of this License, Derivative Works shall not include works that remain
  157. separable from, or merely link (or bind by name) to the interfaces of,
  158. the Work and Derivative Works thereof.
  159. "Contribution" shall mean any work of authorship, including
  160. the original version of the Work and any modifications or additions
  161. to that Work or Derivative Works thereof, that is intentionally
  162. submitted to Licensor for inclusion in the Work by the copyright owner
  163. or by an individual or Legal Entity authorized to submit on behalf of
  164. the copyright owner. For the purposes of this definition, "submitted"
  165. means any form of electronic, verbal, or written communication sent
  166. to the Licensor or its representatives, including but not limited to
  167. communication on electronic mailing lists, source code control systems,
  168. and issue tracking systems that are managed by, or on behalf of, the
  169. Licensor for the purpose of discussing and improving the Work, but
  170. excluding communication that is conspicuously marked or otherwise
  171. designated in writing by the copyright owner as "Not a Contribution."
  172. "Contributor" shall mean Licensor and any individual or Legal Entity
  173. on behalf of whom a Contribution has been received by Licensor and
  174. subsequently incorporated within the Work.
  175. 2. Grant of Copyright License. Subject to the terms and conditions of
  176. this License, each Contributor hereby grants to You a perpetual,
  177. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  178. copyright license to reproduce, prepare Derivative Works of,
  179. publicly display, publicly perform, sublicense, and distribute the
  180. Work and such Derivative Works in Source or Object form.
  181. 3. Grant of Patent License. Subject to the terms and conditions of
  182. this License, each Contributor hereby grants to You a perpetual,
  183. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  184. (except as stated in this section) patent license to make, have made,
  185. use, offer to sell, sell, import, and otherwise transfer the Work,
  186. where such license applies only to those patent claims licensable
  187. by such Contributor that are necessarily infringed by their
  188. Contribution(s) alone or by combination of their Contribution(s)
  189. with the Work to which such Contribution(s) was submitted. If You
  190. institute patent litigation against any entity (including a
  191. cross-claim or counterclaim in a lawsuit) alleging that the Work
  192. or a Contribution incorporated within the Work constitutes direct
  193. or contributory patent infringement, then any patent licenses
  194. granted to You under this License for that Work shall terminate
  195. as of the date such litigation is filed.
  196. 4. Redistribution. You may reproduce and distribute copies of the
  197. Work or Derivative Works thereof in any medium, with or without
  198. modifications, and in Source or Object form, provided that You
  199. meet the following conditions:
  200. (a) You must give any other recipients of the Work or
  201. Derivative Works a copy of this License; and
  202. (b) You must cause any modified files to carry prominent notices
  203. stating that You changed the files; and
  204. (c) You must retain, in the Source form of any Derivative Works
  205. that You distribute, all copyright, patent, trademark, and
  206. attribution notices from the Source form of the Work,
  207. excluding those notices that do not pertain to any part of
  208. the Derivative Works; and
  209. (d) If the Work includes a "NOTICE" text file as part of its
  210. distribution, then any Derivative Works that You distribute must
  211. include a readable copy of the attribution notices contained
  212. within such NOTICE file, excluding those notices that do not
  213. pertain to any part of the Derivative Works, in at least one
  214. of the following places: within a NOTICE text file distributed
  215. as part of the Derivative Works; within the Source form or
  216. documentation, if provided along with the Derivative Works; or,
  217. within a display generated by the Derivative Works, if and
  218. wherever such third-party notices normally appear. The contents
  219. of the NOTICE file are for informational purposes only and
  220. do not modify the License. You may add Your own attribution
  221. notices within Derivative Works that You distribute, alongside
  222. or as an addendum to the NOTICE text from the Work, provided
  223. that such additional attribution notices cannot be construed
  224. as modifying the License.
  225. You may add Your own copyright statement to Your modifications and
  226. may provide additional or different license terms and conditions
  227. for use, reproduction, or distribution of Your modifications, or
  228. for any such Derivative Works as a whole, provided Your use,
  229. reproduction, and distribution of the Work otherwise complies with
  230. the conditions stated in this License.
  231. 5. Submission of Contributions. Unless You explicitly state otherwise,
  232. any Contribution intentionally submitted for inclusion in the Work
  233. by You to the Licensor shall be under the terms and conditions of
  234. this License, without any additional terms or conditions.
  235. Notwithstanding the above, nothing herein shall supersede or modify
  236. the terms of any separate license agreement you may have executed
  237. with Licensor regarding such Contributions.
  238. 6. Trademarks. This License does not grant permission to use the trade
  239. names, trademarks, service marks, or product names of the Licensor,
  240. except as required for reasonable and customary use in describing the
  241. origin of the Work and reproducing the content of the NOTICE file.
  242. 7. Disclaimer of Warranty. Unless required by applicable law or
  243. agreed to in writing, Licensor provides the Work (and each
  244. Contributor provides its Contributions) on an "AS IS" BASIS,
  245. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  246. implied, including, without limitation, any warranties or conditions
  247. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  248. PARTICULAR PURPOSE. You are solely responsible for determining the
  249. appropriateness of using or redistributing the Work and assume any
  250. risks associated with Your exercise of permissions under this License.
  251. 8. Limitation of Liability. In no event and under no legal theory,
  252. whether in tort (including negligence), contract, or otherwise,
  253. unless required by applicable law (such as deliberate and grossly
  254. negligent acts) or agreed to in writing, shall any Contributor be
  255. liable to You for damages, including any direct, indirect, special,
  256. incidental, or consequential damages of any character arising as a
  257. result of this License or out of the use or inability to use the
  258. Work (including but not limited to damages for loss of goodwill,
  259. work stoppage, computer failure or malfunction, or any and all
  260. other commercial damages or losses), even if such Contributor
  261. has been advised of the possibility of such damages.
  262. 9. Accepting Warranty or Additional Liability. While redistributing
  263. the Work or Derivative Works thereof, You may choose to offer,
  264. and charge a fee for, acceptance of support, warranty, indemnity,
  265. or other liability obligations and/or rights consistent with this
  266. License. However, in accepting such obligations, You may act only
  267. on Your own behalf and on Your sole responsibility, not on behalf
  268. of any other Contributor, and only if You agree to indemnify,
  269. defend, and hold each Contributor harmless for any liability
  270. incurred by, or claims asserted against, such Contributor by reason
  271. of your accepting any such warranty or additional liability.
  272. END OF TERMS AND CONDITIONS
  273. APPENDIX: How to apply the Apache License to your work.
  274. To apply the Apache License to your work, attach the following
  275. boilerplate notice, with the fields enclosed by brackets "[]"
  276. replaced with your own identifying information. (Don't include
  277. the brackets!) The text should be enclosed in the appropriate
  278. comment syntax for the file format. We also recommend that a
  279. file or class name and description of purpose be included on the
  280. same "printed page" as the copyright notice for easier
  281. identification within third-party archives.
  282. Copyright [yyyy] [name of copyright owner]
  283. Licensed under the Apache License, Version 2.0 (the "License");
  284. you may not use this file except in compliance with the License.
  285. You may obtain a copy of the License at
  286. http://www.apache.org/licenses/LICENSE-2.0
  287. Unless required by applicable law or agreed to in writing, software
  288. distributed under the License is distributed on an "AS IS" BASIS,
  289. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  290. See the License for the specific language governing permissions and
  291. limitations under the License.
  292. =========================================
  293. END OF @opentelemetry/api NOTICES AND INFORMATION
  294. %% @opentelemetry/exporter-trace-otlp-http NOTICES AND INFORMATION BEGIN HERE
  295. =========================================
  296. Apache License
  297. Version 2.0, January 2004
  298. http://www.apache.org/licenses/
  299. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  300. 1. Definitions.
  301. "License" shall mean the terms and conditions for use, reproduction,
  302. and distribution as defined by Sections 1 through 9 of this document.
  303. "Licensor" shall mean the copyright owner or entity authorized by
  304. the copyright owner that is granting the License.
  305. "Legal Entity" shall mean the union of the acting entity and all
  306. other entities that control, are controlled by, or are under common
  307. control with that entity. For the purposes of this definition,
  308. "control" means (i) the power, direct or indirect, to cause the
  309. direction or management of such entity, whether by contract or
  310. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  311. outstanding shares, or (iii) beneficial ownership of such entity.
  312. "You" (or "Your") shall mean an individual or Legal Entity
  313. exercising permissions granted by this License.
  314. "Source" form shall mean the preferred form for making modifications,
  315. including but not limited to software source code, documentation
  316. source, and configuration files.
  317. "Object" form shall mean any form resulting from mechanical
  318. transformation or translation of a Source form, including but
  319. not limited to compiled object code, generated documentation,
  320. and conversions to other media types.
  321. "Work" shall mean the work of authorship, whether in Source or
  322. Object form, made available under the License, as indicated by a
  323. copyright notice that is included in or attached to the work
  324. (an example is provided in the Appendix below).
  325. "Derivative Works" shall mean any work, whether in Source or Object
  326. form, that is based on (or derived from) the Work and for which the
  327. editorial revisions, annotations, elaborations, or other modifications
  328. represent, as a whole, an original work of authorship. For the purposes
  329. of this License, Derivative Works shall not include works that remain
  330. separable from, or merely link (or bind by name) to the interfaces of,
  331. the Work and Derivative Works thereof.
  332. "Contribution" shall mean any work of authorship, including
  333. the original version of the Work and any modifications or additions
  334. to that Work or Derivative Works thereof, that is intentionally
  335. submitted to Licensor for inclusion in the Work by the copyright owner
  336. or by an individual or Legal Entity authorized to submit on behalf of
  337. the copyright owner. For the purposes of this definition, "submitted"
  338. means any form of electronic, verbal, or written communication sent
  339. to the Licensor or its representatives, including but not limited to
  340. communication on electronic mailing lists, source code control systems,
  341. and issue tracking systems that are managed by, or on behalf of, the
  342. Licensor for the purpose of discussing and improving the Work, but
  343. excluding communication that is conspicuously marked or otherwise
  344. designated in writing by the copyright owner as "Not a Contribution."
  345. "Contributor" shall mean Licensor and any individual or Legal Entity
  346. on behalf of whom a Contribution has been received by Licensor and
  347. subsequently incorporated within the Work.
  348. 2. Grant of Copyright License. Subject to the terms and conditions of
  349. this License, each Contributor hereby grants to You a perpetual,
  350. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  351. copyright license to reproduce, prepare Derivative Works of,
  352. publicly display, publicly perform, sublicense, and distribute the
  353. Work and such Derivative Works in Source or Object form.
  354. 3. Grant of Patent License. Subject to the terms and conditions of
  355. this License, each Contributor hereby grants to You a perpetual,
  356. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  357. (except as stated in this section) patent license to make, have made,
  358. use, offer to sell, sell, import, and otherwise transfer the Work,
  359. where such license applies only to those patent claims licensable
  360. by such Contributor that are necessarily infringed by their
  361. Contribution(s) alone or by combination of their Contribution(s)
  362. with the Work to which such Contribution(s) was submitted. If You
  363. institute patent litigation against any entity (including a
  364. cross-claim or counterclaim in a lawsuit) alleging that the Work
  365. or a Contribution incorporated within the Work constitutes direct
  366. or contributory patent infringement, then any patent licenses
  367. granted to You under this License for that Work shall terminate
  368. as of the date such litigation is filed.
  369. 4. Redistribution. You may reproduce and distribute copies of the
  370. Work or Derivative Works thereof in any medium, with or without
  371. modifications, and in Source or Object form, provided that You
  372. meet the following conditions:
  373. (a) You must give any other recipients of the Work or
  374. Derivative Works a copy of this License; and
  375. (b) You must cause any modified files to carry prominent notices
  376. stating that You changed the files; and
  377. (c) You must retain, in the Source form of any Derivative Works
  378. that You distribute, all copyright, patent, trademark, and
  379. attribution notices from the Source form of the Work,
  380. excluding those notices that do not pertain to any part of
  381. the Derivative Works; and
  382. (d) If the Work includes a "NOTICE" text file as part of its
  383. distribution, then any Derivative Works that You distribute must
  384. include a readable copy of the attribution notices contained
  385. within such NOTICE file, excluding those notices that do not
  386. pertain to any part of the Derivative Works, in at least one
  387. of the following places: within a NOTICE text file distributed
  388. as part of the Derivative Works; within the Source form or
  389. documentation, if provided along with the Derivative Works; or,
  390. within a display generated by the Derivative Works, if and
  391. wherever such third-party notices normally appear. The contents
  392. of the NOTICE file are for informational purposes only and
  393. do not modify the License. You may add Your own attribution
  394. notices within Derivative Works that You distribute, alongside
  395. or as an addendum to the NOTICE text from the Work, provided
  396. that such additional attribution notices cannot be construed
  397. as modifying the License.
  398. You may add Your own copyright statement to Your modifications and
  399. may provide additional or different license terms and conditions
  400. for use, reproduction, or distribution of Your modifications, or
  401. for any such Derivative Works as a whole, provided Your use,
  402. reproduction, and distribution of the Work otherwise complies with
  403. the conditions stated in this License.
  404. 5. Submission of Contributions. Unless You explicitly state otherwise,
  405. any Contribution intentionally submitted for inclusion in the Work
  406. by You to the Licensor shall be under the terms and conditions of
  407. this License, without any additional terms or conditions.
  408. Notwithstanding the above, nothing herein shall supersede or modify
  409. the terms of any separate license agreement you may have executed
  410. with Licensor regarding such Contributions.
  411. 6. Trademarks. This License does not grant permission to use the trade
  412. names, trademarks, service marks, or product names of the Licensor,
  413. except as required for reasonable and customary use in describing the
  414. origin of the Work and reproducing the content of the NOTICE file.
  415. 7. Disclaimer of Warranty. Unless required by applicable law or
  416. agreed to in writing, Licensor provides the Work (and each
  417. Contributor provides its Contributions) on an "AS IS" BASIS,
  418. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  419. implied, including, without limitation, any warranties or conditions
  420. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  421. PARTICULAR PURPOSE. You are solely responsible for determining the
  422. appropriateness of using or redistributing the Work and assume any
  423. risks associated with Your exercise of permissions under this License.
  424. 8. Limitation of Liability. In no event and under no legal theory,
  425. whether in tort (including negligence), contract, or otherwise,
  426. unless required by applicable law (such as deliberate and grossly
  427. negligent acts) or agreed to in writing, shall any Contributor be
  428. liable to You for damages, including any direct, indirect, special,
  429. incidental, or consequential damages of any character arising as a
  430. result of this License or out of the use or inability to use the
  431. Work (including but not limited to damages for loss of goodwill,
  432. work stoppage, computer failure or malfunction, or any and all
  433. other commercial damages or losses), even if such Contributor
  434. has been advised of the possibility of such damages.
  435. 9. Accepting Warranty or Additional Liability. While redistributing
  436. the Work or Derivative Works thereof, You may choose to offer,
  437. and charge a fee for, acceptance of support, warranty, indemnity,
  438. or other liability obligations and/or rights consistent with this
  439. License. However, in accepting such obligations, You may act only
  440. on Your own behalf and on Your sole responsibility, not on behalf
  441. of any other Contributor, and only if You agree to indemnify,
  442. defend, and hold each Contributor harmless for any liability
  443. incurred by, or claims asserted against, such Contributor by reason
  444. of your accepting any such warranty or additional liability.
  445. END OF TERMS AND CONDITIONS
  446. APPENDIX: How to apply the Apache License to your work.
  447. To apply the Apache License to your work, attach the following
  448. boilerplate notice, with the fields enclosed by brackets "[]"
  449. replaced with your own identifying information. (Don't include
  450. the brackets!) The text should be enclosed in the appropriate
  451. comment syntax for the file format. We also recommend that a
  452. file or class name and description of purpose be included on the
  453. same "printed page" as the copyright notice for easier
  454. identification within third-party archives.
  455. Copyright [yyyy] [name of copyright owner]
  456. Licensed under the Apache License, Version 2.0 (the "License");
  457. you may not use this file except in compliance with the License.
  458. You may obtain a copy of the License at
  459. http://www.apache.org/licenses/LICENSE-2.0
  460. Unless required by applicable law or agreed to in writing, software
  461. distributed under the License is distributed on an "AS IS" BASIS,
  462. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  463. See the License for the specific language governing permissions and
  464. limitations under the License.
  465. =========================================
  466. END OF @opentelemetry/exporter-trace-otlp-http NOTICES AND INFORMATION
  467. %% @opentelemetry/sdk-trace-base NOTICES AND INFORMATION BEGIN HERE
  468. =========================================
  469. Apache License
  470. Version 2.0, January 2004
  471. http://www.apache.org/licenses/
  472. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  473. 1. Definitions.
  474. "License" shall mean the terms and conditions for use, reproduction,
  475. and distribution as defined by Sections 1 through 9 of this document.
  476. "Licensor" shall mean the copyright owner or entity authorized by
  477. the copyright owner that is granting the License.
  478. "Legal Entity" shall mean the union of the acting entity and all
  479. other entities that control, are controlled by, or are under common
  480. control with that entity. For the purposes of this definition,
  481. "control" means (i) the power, direct or indirect, to cause the
  482. direction or management of such entity, whether by contract or
  483. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  484. outstanding shares, or (iii) beneficial ownership of such entity.
  485. "You" (or "Your") shall mean an individual or Legal Entity
  486. exercising permissions granted by this License.
  487. "Source" form shall mean the preferred form for making modifications,
  488. including but not limited to software source code, documentation
  489. source, and configuration files.
  490. "Object" form shall mean any form resulting from mechanical
  491. transformation or translation of a Source form, including but
  492. not limited to compiled object code, generated documentation,
  493. and conversions to other media types.
  494. "Work" shall mean the work of authorship, whether in Source or
  495. Object form, made available under the License, as indicated by a
  496. copyright notice that is included in or attached to the work
  497. (an example is provided in the Appendix below).
  498. "Derivative Works" shall mean any work, whether in Source or Object
  499. form, that is based on (or derived from) the Work and for which the
  500. editorial revisions, annotations, elaborations, or other modifications
  501. represent, as a whole, an original work of authorship. For the purposes
  502. of this License, Derivative Works shall not include works that remain
  503. separable from, or merely link (or bind by name) to the interfaces of,
  504. the Work and Derivative Works thereof.
  505. "Contribution" shall mean any work of authorship, including
  506. the original version of the Work and any modifications or additions
  507. to that Work or Derivative Works thereof, that is intentionally
  508. submitted to Licensor for inclusion in the Work by the copyright owner
  509. or by an individual or Legal Entity authorized to submit on behalf of
  510. the copyright owner. For the purposes of this definition, "submitted"
  511. means any form of electronic, verbal, or written communication sent
  512. to the Licensor or its representatives, including but not limited to
  513. communication on electronic mailing lists, source code control systems,
  514. and issue tracking systems that are managed by, or on behalf of, the
  515. Licensor for the purpose of discussing and improving the Work, but
  516. excluding communication that is conspicuously marked or otherwise
  517. designated in writing by the copyright owner as "Not a Contribution."
  518. "Contributor" shall mean Licensor and any individual or Legal Entity
  519. on behalf of whom a Contribution has been received by Licensor and
  520. subsequently incorporated within the Work.
  521. 2. Grant of Copyright License. Subject to the terms and conditions of
  522. this License, each Contributor hereby grants to You a perpetual,
  523. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  524. copyright license to reproduce, prepare Derivative Works of,
  525. publicly display, publicly perform, sublicense, and distribute the
  526. Work and such Derivative Works in Source or Object form.
  527. 3. Grant of Patent License. Subject to the terms and conditions of
  528. this License, each Contributor hereby grants to You a perpetual,
  529. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  530. (except as stated in this section) patent license to make, have made,
  531. use, offer to sell, sell, import, and otherwise transfer the Work,
  532. where such license applies only to those patent claims licensable
  533. by such Contributor that are necessarily infringed by their
  534. Contribution(s) alone or by combination of their Contribution(s)
  535. with the Work to which such Contribution(s) was submitted. If You
  536. institute patent litigation against any entity (including a
  537. cross-claim or counterclaim in a lawsuit) alleging that the Work
  538. or a Contribution incorporated within the Work constitutes direct
  539. or contributory patent infringement, then any patent licenses
  540. granted to You under this License for that Work shall terminate
  541. as of the date such litigation is filed.
  542. 4. Redistribution. You may reproduce and distribute copies of the
  543. Work or Derivative Works thereof in any medium, with or without
  544. modifications, and in Source or Object form, provided that You
  545. meet the following conditions:
  546. (a) You must give any other recipients of the Work or
  547. Derivative Works a copy of this License; and
  548. (b) You must cause any modified files to carry prominent notices
  549. stating that You changed the files; and
  550. (c) You must retain, in the Source form of any Derivative Works
  551. that You distribute, all copyright, patent, trademark, and
  552. attribution notices from the Source form of the Work,
  553. excluding those notices that do not pertain to any part of
  554. the Derivative Works; and
  555. (d) If the Work includes a "NOTICE" text file as part of its
  556. distribution, then any Derivative Works that You distribute must
  557. include a readable copy of the attribution notices contained
  558. within such NOTICE file, excluding those notices that do not
  559. pertain to any part of the Derivative Works, in at least one
  560. of the following places: within a NOTICE text file distributed
  561. as part of the Derivative Works; within the Source form or
  562. documentation, if provided along with the Derivative Works; or,
  563. within a display generated by the Derivative Works, if and
  564. wherever such third-party notices normally appear. The contents
  565. of the NOTICE file are for informational purposes only and
  566. do not modify the License. You may add Your own attribution
  567. notices within Derivative Works that You distribute, alongside
  568. or as an addendum to the NOTICE text from the Work, provided
  569. that such additional attribution notices cannot be construed
  570. as modifying the License.
  571. You may add Your own copyright statement to Your modifications and
  572. may provide additional or different license terms and conditions
  573. for use, reproduction, or distribution of Your modifications, or
  574. for any such Derivative Works as a whole, provided Your use,
  575. reproduction, and distribution of the Work otherwise complies with
  576. the conditions stated in this License.
  577. 5. Submission of Contributions. Unless You explicitly state otherwise,
  578. any Contribution intentionally submitted for inclusion in the Work
  579. by You to the Licensor shall be under the terms and conditions of
  580. this License, without any additional terms or conditions.
  581. Notwithstanding the above, nothing herein shall supersede or modify
  582. the terms of any separate license agreement you may have executed
  583. with Licensor regarding such Contributions.
  584. 6. Trademarks. This License does not grant permission to use the trade
  585. names, trademarks, service marks, or product names of the Licensor,
  586. except as required for reasonable and customary use in describing the
  587. origin of the Work and reproducing the content of the NOTICE file.
  588. 7. Disclaimer of Warranty. Unless required by applicable law or
  589. agreed to in writing, Licensor provides the Work (and each
  590. Contributor provides its Contributions) on an "AS IS" BASIS,
  591. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  592. implied, including, without limitation, any warranties or conditions
  593. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  594. PARTICULAR PURPOSE. You are solely responsible for determining the
  595. appropriateness of using or redistributing the Work and assume any
  596. risks associated with Your exercise of permissions under this License.
  597. 8. Limitation of Liability. In no event and under no legal theory,
  598. whether in tort (including negligence), contract, or otherwise,
  599. unless required by applicable law (such as deliberate and grossly
  600. negligent acts) or agreed to in writing, shall any Contributor be
  601. liable to You for damages, including any direct, indirect, special,
  602. incidental, or consequential damages of any character arising as a
  603. result of this License or out of the use or inability to use the
  604. Work (including but not limited to damages for loss of goodwill,
  605. work stoppage, computer failure or malfunction, or any and all
  606. other commercial damages or losses), even if such Contributor
  607. has been advised of the possibility of such damages.
  608. 9. Accepting Warranty or Additional Liability. While redistributing
  609. the Work or Derivative Works thereof, You may choose to offer,
  610. and charge a fee for, acceptance of support, warranty, indemnity,
  611. or other liability obligations and/or rights consistent with this
  612. License. However, in accepting such obligations, You may act only
  613. on Your own behalf and on Your sole responsibility, not on behalf
  614. of any other Contributor, and only if You agree to indemnify,
  615. defend, and hold each Contributor harmless for any liability
  616. incurred by, or claims asserted against, such Contributor by reason
  617. of your accepting any such warranty or additional liability.
  618. END OF TERMS AND CONDITIONS
  619. APPENDIX: How to apply the Apache License to your work.
  620. To apply the Apache License to your work, attach the following
  621. boilerplate notice, with the fields enclosed by brackets "[]"
  622. replaced with your own identifying information. (Don't include
  623. the brackets!) The text should be enclosed in the appropriate
  624. comment syntax for the file format. We also recommend that a
  625. file or class name and description of purpose be included on the
  626. same "printed page" as the copyright notice for easier
  627. identification within third-party archives.
  628. Copyright [yyyy] [name of copyright owner]
  629. Licensed under the Apache License, Version 2.0 (the "License");
  630. you may not use this file except in compliance with the License.
  631. You may obtain a copy of the License at
  632. http://www.apache.org/licenses/LICENSE-2.0
  633. Unless required by applicable law or agreed to in writing, software
  634. distributed under the License is distributed on an "AS IS" BASIS,
  635. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  636. See the License for the specific language governing permissions and
  637. limitations under the License.
  638. =========================================
  639. END OF @opentelemetry/sdk-trace-base NOTICES AND INFORMATION
  640. %% @vscode/codicons NOTICES AND INFORMATION BEGIN HERE
  641. =========================================
  642. Attribution 4.0 International
  643. =======================================================================
  644. Creative Commons Corporation ("Creative Commons") is not a law firm and
  645. does not provide legal services or legal advice. Distribution of
  646. Creative Commons public licenses does not create a lawyer-client or
  647. other relationship. Creative Commons makes its licenses and related
  648. information available on an "as-is" basis. Creative Commons gives no
  649. warranties regarding its licenses, any material licensed under their
  650. terms and conditions, or any related information. Creative Commons
  651. disclaims all liability for damages resulting from their use to the
  652. fullest extent possible.
  653. Using Creative Commons Public Licenses
  654. Creative Commons public licenses provide a standard set of terms and
  655. conditions that creators and other rights holders may use to share
  656. original works of authorship and other material subject to copyright
  657. and certain other rights specified in the public license below. The
  658. following considerations are for informational purposes only, are not
  659. exhaustive, and do not form part of our licenses.
  660. Considerations for licensors: Our public licenses are
  661. intended for use by those authorized to give the public
  662. permission to use material in ways otherwise restricted by
  663. copyright and certain other rights. Our licenses are
  664. irrevocable. Licensors should read and understand the terms
  665. and conditions of the license they choose before applying it.
  666. Licensors should also secure all rights necessary before
  667. applying our licenses so that the public can reuse the
  668. material as expected. Licensors should clearly mark any
  669. material not subject to the license. This includes other CC-
  670. licensed material, or material used under an exception or
  671. limitation to copyright. More considerations for licensors:
  672. wiki.creativecommons.org/Considerations_for_licensors
  673. Considerations for the public: By using one of our public
  674. licenses, a licensor grants the public permission to use the
  675. licensed material under specified terms and conditions. If
  676. the licensor's permission is not necessary for any reason--for
  677. example, because of any applicable exception or limitation to
  678. copyright--then that use is not regulated by the license. Our
  679. licenses grant only permissions under copyright and certain
  680. other rights that a licensor has authority to grant. Use of
  681. the licensed material may still be restricted for other
  682. reasons, including because others have copyright or other
  683. rights in the material. A licensor may make special requests,
  684. such as asking that all changes be marked or described.
  685. Although not required by our licenses, you are encouraged to
  686. respect those requests where reasonable. More_considerations
  687. for the public:
  688. wiki.creativecommons.org/Considerations_for_licensees
  689. =======================================================================
  690. Creative Commons Attribution 4.0 International Public License
  691. By exercising the Licensed Rights (defined below), You accept and agree
  692. to be bound by the terms and conditions of this Creative Commons
  693. Attribution 4.0 International Public License ("Public License"). To the
  694. extent this Public License may be interpreted as a contract, You are
  695. granted the Licensed Rights in consideration of Your acceptance of
  696. these terms and conditions, and the Licensor grants You such rights in
  697. consideration of benefits the Licensor receives from making the
  698. Licensed Material available under these terms and conditions.
  699. Section 1 -- Definitions.
  700. a. Adapted Material means material subject to Copyright and Similar
  701. Rights that is derived from or based upon the Licensed Material
  702. and in which the Licensed Material is translated, altered,
  703. arranged, transformed, or otherwise modified in a manner requiring
  704. permission under the Copyright and Similar Rights held by the
  705. Licensor. For purposes of this Public License, where the Licensed
  706. Material is a musical work, performance, or sound recording,
  707. Adapted Material is always produced where the Licensed Material is
  708. synched in timed relation with a moving image.
  709. b. Adapter's License means the license You apply to Your Copyright
  710. and Similar Rights in Your contributions to Adapted Material in
  711. accordance with the terms and conditions of this Public License.
  712. c. Copyright and Similar Rights means copyright and/or similar rights
  713. closely related to copyright including, without limitation,
  714. performance, broadcast, sound recording, and Sui Generis Database
  715. Rights, without regard to how the rights are labeled or
  716. categorized. For purposes of this Public License, the rights
  717. specified in Section 2(b)(1)-(2) are not Copyright and Similar
  718. Rights.
  719. d. Effective Technological Measures means those measures that, in the
  720. absence of proper authority, may not be circumvented under laws
  721. fulfilling obligations under Article 11 of the WIPO Copyright
  722. Treaty adopted on December 20, 1996, and/or similar international
  723. agreements.
  724. e. Exceptions and Limitations means fair use, fair dealing, and/or
  725. any other exception or limitation to Copyright and Similar Rights
  726. that applies to Your use of the Licensed Material.
  727. f. Licensed Material means the artistic or literary work, database,
  728. or other material to which the Licensor applied this Public
  729. License.
  730. g. Licensed Rights means the rights granted to You subject to the
  731. terms and conditions of this Public License, which are limited to
  732. all Copyright and Similar Rights that apply to Your use of the
  733. Licensed Material and that the Licensor has authority to license.
  734. h. Licensor means the individual(s) or entity(ies) granting rights
  735. under this Public License.
  736. i. Share means to provide material to the public by any means or
  737. process that requires permission under the Licensed Rights, such
  738. as reproduction, public display, public performance, distribution,
  739. dissemination, communication, or importation, and to make material
  740. available to the public including in ways that members of the
  741. public may access the material from a place and at a time
  742. individually chosen by them.
  743. j. Sui Generis Database Rights means rights other than copyright
  744. resulting from Directive 96/9/EC of the European Parliament and of
  745. the Council of 11 March 1996 on the legal protection of databases,
  746. as amended and/or succeeded, as well as other essentially
  747. equivalent rights anywhere in the world.
  748. k. You means the individual or entity exercising the Licensed Rights
  749. under this Public License. Your has a corresponding meaning.
  750. Section 2 -- Scope.
  751. a. License grant.
  752. 1. Subject to the terms and conditions of this Public License,
  753. the Licensor hereby grants You a worldwide, royalty-free,
  754. non-sublicensable, non-exclusive, irrevocable license to
  755. exercise the Licensed Rights in the Licensed Material to:
  756. a. reproduce and Share the Licensed Material, in whole or
  757. in part; and
  758. b. produce, reproduce, and Share Adapted Material.
  759. 2. Exceptions and Limitations. For the avoidance of doubt, where
  760. Exceptions and Limitations apply to Your use, this Public
  761. License does not apply, and You do not need to comply with
  762. its terms and conditions.
  763. 3. Term. The term of this Public License is specified in Section
  764. 6(a).
  765. 4. Media and formats; technical modifications allowed. The
  766. Licensor authorizes You to exercise the Licensed Rights in
  767. all media and formats whether now known or hereafter created,
  768. and to make technical modifications necessary to do so. The
  769. Licensor waives and/or agrees not to assert any right or
  770. authority to forbid You from making technical modifications
  771. necessary to exercise the Licensed Rights, including
  772. technical modifications necessary to circumvent Effective
  773. Technological Measures. For purposes of this Public License,
  774. simply making modifications authorized by this Section 2(a)
  775. (4) never produces Adapted Material.
  776. 5. Downstream recipients.
  777. a. Offer from the Licensor -- Licensed Material. Every
  778. recipient of the Licensed Material automatically
  779. receives an offer from the Licensor to exercise the
  780. Licensed Rights under the terms and conditions of this
  781. Public License.
  782. b. No downstream restrictions. You may not offer or impose
  783. any additional or different terms or conditions on, or
  784. apply any Effective Technological Measures to, the
  785. Licensed Material if doing so restricts exercise of the
  786. Licensed Rights by any recipient of the Licensed
  787. Material.
  788. 6. No endorsement. Nothing in this Public License constitutes or
  789. may be construed as permission to assert or imply that You
  790. are, or that Your use of the Licensed Material is, connected
  791. with, or sponsored, endorsed, or granted official status by,
  792. the Licensor or others designated to receive attribution as
  793. provided in Section 3(a)(1)(A)(i).
  794. b. Other rights.
  795. 1. Moral rights, such as the right of integrity, are not
  796. licensed under this Public License, nor are publicity,
  797. privacy, and/or other similar personality rights; however, to
  798. the extent possible, the Licensor waives and/or agrees not to
  799. assert any such rights held by the Licensor to the limited
  800. extent necessary to allow You to exercise the Licensed
  801. Rights, but not otherwise.
  802. 2. Patent and trademark rights are not licensed under this
  803. Public License.
  804. 3. To the extent possible, the Licensor waives any right to
  805. collect royalties from You for the exercise of the Licensed
  806. Rights, whether directly or through a collecting society
  807. under any voluntary or waivable statutory or compulsory
  808. licensing scheme. In all other cases the Licensor expressly
  809. reserves any right to collect such royalties.
  810. Section 3 -- License Conditions.
  811. Your exercise of the Licensed Rights is expressly made subject to the
  812. following conditions.
  813. a. Attribution.
  814. 1. If You Share the Licensed Material (including in modified
  815. form), You must:
  816. a. retain the following if it is supplied by the Licensor
  817. with the Licensed Material:
  818. i. identification of the creator(s) of the Licensed
  819. Material and any others designated to receive
  820. attribution, in any reasonable manner requested by
  821. the Licensor (including by pseudonym if
  822. designated);
  823. ii. a copyright notice;
  824. iii. a notice that refers to this Public License;
  825. iv. a notice that refers to the disclaimer of
  826. warranties;
  827. v. a URI or hyperlink to the Licensed Material to the
  828. extent reasonably practicable;
  829. b. indicate if You modified the Licensed Material and
  830. retain an indication of any previous modifications; and
  831. c. indicate the Licensed Material is licensed under this
  832. Public License, and include the text of, or the URI or
  833. hyperlink to, this Public License.
  834. 2. You may satisfy the conditions in Section 3(a)(1) in any
  835. reasonable manner based on the medium, means, and context in
  836. which You Share the Licensed Material. For example, it may be
  837. reasonable to satisfy the conditions by providing a URI or
  838. hyperlink to a resource that includes the required
  839. information.
  840. 3. If requested by the Licensor, You must remove any of the
  841. information required by Section 3(a)(1)(A) to the extent
  842. reasonably practicable.
  843. 4. If You Share Adapted Material You produce, the Adapter's
  844. License You apply must not prevent recipients of the Adapted
  845. Material from complying with this Public License.
  846. Section 4 -- Sui Generis Database Rights.
  847. Where the Licensed Rights include Sui Generis Database Rights that
  848. apply to Your use of the Licensed Material:
  849. a. for the avoidance of doubt, Section 2(a)(1) grants You the right
  850. to extract, reuse, reproduce, and Share all or a substantial
  851. portion of the contents of the database;
  852. b. if You include all or a substantial portion of the database
  853. contents in a database in which You have Sui Generis Database
  854. Rights, then the database in which You have Sui Generis Database
  855. Rights (but not its individual contents) is Adapted Material; and
  856. c. You must comply with the conditions in Section 3(a) if You Share
  857. all or a substantial portion of the contents of the database.
  858. For the avoidance of doubt, this Section 4 supplements and does not
  859. replace Your obligations under this Public License where the Licensed
  860. Rights include other Copyright and Similar Rights.
  861. Section 5 -- Disclaimer of Warranties and Limitation of Liability.
  862. a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
  863. EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
  864. AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
  865. ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
  866. IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
  867. WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
  868. PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
  869. ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
  870. KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
  871. ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
  872. b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
  873. TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
  874. NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
  875. INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
  876. COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
  877. USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
  878. ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
  879. DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
  880. IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
  881. c. The disclaimer of warranties and limitation of liability provided
  882. above shall be interpreted in a manner that, to the extent
  883. possible, most closely approximates an absolute disclaimer and
  884. waiver of all liability.
  885. Section 6 -- Term and Termination.
  886. a. This Public License applies for the term of the Copyright and
  887. Similar Rights licensed here. However, if You fail to comply with
  888. this Public License, then Your rights under this Public License
  889. terminate automatically.
  890. b. Where Your right to use the Licensed Material has terminated under
  891. Section 6(a), it reinstates:
  892. 1. automatically as of the date the violation is cured, provided
  893. it is cured within 30 days of Your discovery of the
  894. violation; or
  895. 2. upon express reinstatement by the Licensor.
  896. For the avoidance of doubt, this Section 6(b) does not affect any
  897. right the Licensor may have to seek remedies for Your violations
  898. of this Public License.
  899. c. For the avoidance of doubt, the Licensor may also offer the
  900. Licensed Material under separate terms or conditions or stop
  901. distributing the Licensed Material at any time; however, doing so
  902. will not terminate this Public License.
  903. d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
  904. License.
  905. Section 7 -- Other Terms and Conditions.
  906. a. The Licensor shall not be bound by any additional or different
  907. terms or conditions communicated by You unless expressly agreed.
  908. b. Any arrangements, understandings, or agreements regarding the
  909. Licensed Material not stated herein are separate from and
  910. independent of the terms and conditions of this Public License.
  911. Section 8 -- Interpretation.
  912. a. For the avoidance of doubt, this Public License does not, and
  913. shall not be interpreted to, reduce, limit, restrict, or impose
  914. conditions on any use of the Licensed Material that could lawfully
  915. be made without permission under this Public License.
  916. b. To the extent possible, if any provision of this Public License is
  917. deemed unenforceable, it shall be automatically reformed to the
  918. minimum extent necessary to make it enforceable. If the provision
  919. cannot be reformed, it shall be severed from this Public License
  920. without affecting the enforceability of the remaining terms and
  921. conditions.
  922. c. No term or condition of this Public License will be waived and no
  923. failure to comply consented to unless expressly agreed to by the
  924. Licensor.
  925. d. Nothing in this Public License constitutes or may be interpreted
  926. as a limitation upon, or waiver of, any privileges and immunities
  927. that apply to the Licensor or You, including from the legal
  928. processes of any jurisdiction or authority.
  929. =======================================================================
  930. Creative Commons is not a party to its public
  931. licenses. Notwithstanding, Creative Commons may elect to apply one of
  932. its public licenses to material it publishes and in those instances
  933. will be considered the “Licensor.” The text of the Creative Commons
  934. public licenses is dedicated to the public domain under the CC0 Public
  935. Domain Dedication. Except for the limited purpose of indicating that
  936. material is shared under a Creative Commons public license or as
  937. otherwise permitted by the Creative Commons policies published at
  938. creativecommons.org/policies, Creative Commons does not authorize the
  939. use of the trademark "Creative Commons" or any other trademark or logo
  940. of Creative Commons without its prior written consent including,
  941. without limitation, in connection with any unauthorized modifications
  942. to any of its public licenses or any other arrangements,
  943. understandings, or agreements concerning use of licensed material. For
  944. the avoidance of doubt, this paragraph does not form part of the
  945. public licenses.
  946. Creative Commons may be contacted at creativecommons.org.
  947. =========================================
  948. END OF @vscode/codicons NOTICES AND INFORMATION
  949. %% @vscode/webview-ui-toolkit NOTICES AND INFORMATION BEGIN HERE
  950. =========================================
  951. Copyright (c) Microsoft Corporation.
  952. MIT License
  953. Permission is hereby granted, free of charge, to any person obtaining a copy
  954. of this software and associated documentation files (the "Software"), to deal
  955. in the Software without restriction, including without limitation the rights
  956. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  957. copies of the Software, and to permit persons to whom the Software is
  958. furnished to do so, subject to the following conditions:
  959. The above copyright notice and this permission notice shall be included in all
  960. copies or substantial portions of the Software.
  961. THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  962. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  963. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  964. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  965. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  966. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  967. SOFTWARE.
  968. =========================================
  969. END OF @vscode/webview-ui-toolkit NOTICES AND INFORMATION
  970. %% ansi-regex NOTICES AND INFORMATION BEGIN HERE
  971. =========================================
  972. MIT License
  973. Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
  974. 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:
  975. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  976. 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.
  977. =========================================
  978. END OF ansi-regex NOTICES AND INFORMATION
  979. %% billboard.js NOTICES AND INFORMATION BEGIN HERE
  980. =========================================
  981. The MIT License (MIT)
  982. Copyright (c) 2017 ~ present NAVER Corp.
  983. Copyright (c) 2013 Masayuki Tanaka
  984. Permission is hereby granted, free of charge, to any person obtaining a copy of
  985. this software and associated documentation files (the "Software"), to deal in
  986. the Software without restriction, including without limitation the rights to
  987. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  988. the Software, and to permit persons to whom the Software is furnished to do so,
  989. subject to the following conditions:
  990. The above copyright notice and this permission notice shall be included in all
  991. copies or substantial portions of the Software.
  992. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  993. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  994. FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  995. COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  996. IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  997. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  998. =========================================
  999. END OF billboard.js NOTICES AND INFORMATION
  1000. %% https-proxy-agent NOTICES AND INFORMATION BEGIN HERE
  1001. =========================================
  1002. https-proxy-agent
  1003. ================
  1004. ### An HTTP(s) proxy `http.Agent` implementation for HTTPS
  1005. [![Build Status](https://github.com/TooTallNate/node-https-proxy-agent/workflows/Node%20CI/badge.svg)](https://github.com/TooTallNate/node-https-proxy-agent/actions?workflow=Node+CI)
  1006. This module provides an `http.Agent` implementation that connects to a specified
  1007. HTTP or HTTPS proxy server, and can be used with the built-in `https` module.
  1008. Specifically, this `Agent` implementation connects to an intermediary "proxy"
  1009. server and issues the [CONNECT HTTP method][CONNECT], which tells the proxy to
  1010. open a direct TCP connection to the destination server.
  1011. Since this agent implements the CONNECT HTTP method, it also works with other
  1012. protocols that use this method when connecting over proxies (i.e. WebSockets).
  1013. See the "Examples" section below for more.
  1014. Installation
  1015. ------------
  1016. Install with `npm`:
  1017. ``` bash
  1018. $ npm install https-proxy-agent
  1019. ```
  1020. Examples
  1021. --------
  1022. #### `https` module example
  1023. ``` js
  1024. var url = require('url');
  1025. var https = require('https');
  1026. var HttpsProxyAgent = require('https-proxy-agent');
  1027. // HTTP/HTTPS proxy to connect to
  1028. var proxy = process.env.http_proxy || 'http://168.63.76.32:3128';
  1029. console.log('using proxy server %j', proxy);
  1030. // HTTPS endpoint for the proxy to connect to
  1031. var endpoint = process.argv[2] || 'https://graph.facebook.com/tootallnate';
  1032. console.log('attempting to GET %j', endpoint);
  1033. var options = url.parse(endpoint);
  1034. // create an instance of the `HttpsProxyAgent` class with the proxy server information
  1035. var agent = new HttpsProxyAgent(proxy);
  1036. options.agent = agent;
  1037. https.get(options, function (res) {
  1038. console.log('"response" event!', res.headers);
  1039. res.pipe(process.stdout);
  1040. });
  1041. ```
  1042. #### `ws` WebSocket connection example
  1043. ``` js
  1044. var url = require('url');
  1045. var WebSocket = require('ws');
  1046. var HttpsProxyAgent = require('https-proxy-agent');
  1047. // HTTP/HTTPS proxy to connect to
  1048. var proxy = process.env.http_proxy || 'http://168.63.76.32:3128';
  1049. console.log('using proxy server %j', proxy);
  1050. // WebSocket endpoint for the proxy to connect to
  1051. var endpoint = process.argv[2] || 'ws://echo.websocket.org';
  1052. var parsed = url.parse(endpoint);
  1053. console.log('attempting to connect to WebSocket %j', endpoint);
  1054. // create an instance of the `HttpsProxyAgent` class with the proxy server information
  1055. var options = url.parse(proxy);
  1056. var agent = new HttpsProxyAgent(options);
  1057. // finally, initiate the WebSocket connection
  1058. var socket = new WebSocket(endpoint, { agent: agent });
  1059. socket.on('open', function () {
  1060. console.log('"open" event!');
  1061. socket.send('hello world');
  1062. });
  1063. socket.on('message', function (data, flags) {
  1064. console.log('"message" event! %j %j', data, flags);
  1065. socket.close();
  1066. });
  1067. ```
  1068. API
  1069. ---
  1070. ### new HttpsProxyAgent(Object options)
  1071. The `HttpsProxyAgent` class implements an `http.Agent` subclass that connects
  1072. to the specified "HTTP(s) proxy server" in order to proxy HTTPS and/or WebSocket
  1073. requests. This is achieved by using the [HTTP `CONNECT` method][CONNECT].
  1074. The `options` argument may either be a string URI of the proxy server to use, or an
  1075. "options" object with more specific properties:
  1076. * `host` - String - Proxy host to connect to (may use `hostname` as well). Required.
  1077. * `port` - Number - Proxy port to connect to. Required.
  1078. * `protocol` - String - If `https:`, then use TLS to connect to the proxy.
  1079. * `headers` - Object - Additional HTTP headers to be sent on the HTTP CONNECT method.
  1080. * Any other options given are passed to the `net.connect()`/`tls.connect()` functions.
  1081. License
  1082. -------
  1083. (The MIT License)
  1084. Copyright (c) 2013 Nathan Rajlich &lt;nathan@tootallnate.net&gt;
  1085. Permission is hereby granted, free of charge, to any person obtaining
  1086. a copy of this software and associated documentation files (the
  1087. 'Software'), to deal in the Software without restriction, including
  1088. without limitation the rights to use, copy, modify, merge, publish,
  1089. distribute, sublicense, and/or sell copies of the Software, and to
  1090. permit persons to whom the Software is furnished to do so, subject to
  1091. the following conditions:
  1092. The above copyright notice and this permission notice shall be
  1093. included in all copies or substantial portions of the Software.
  1094. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
  1095. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  1096. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  1097. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  1098. CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  1099. TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  1100. SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1101. [CONNECT]: http://en.wikipedia.org/wiki/HTTP_tunnel#HTTP_CONNECT_Tunneling
  1102. =========================================
  1103. END OF https-proxy-agent NOTICES AND INFORMATION
  1104. %% iconv-lite NOTICES AND INFORMATION BEGIN HERE
  1105. =========================================
  1106. Copyright (c) 2011 Alexander Shtuchkin
  1107. Permission is hereby granted, free of charge, to any person obtaining
  1108. a copy of this software and associated documentation files (the
  1109. "Software"), to deal in the Software without restriction, including
  1110. without limitation the rights to use, copy, modify, merge, publish,
  1111. distribute, sublicense, and/or sell copies of the Software, and to
  1112. permit persons to whom the Software is furnished to do so, subject to
  1113. the following conditions:
  1114. The above copyright notice and this permission notice shall be
  1115. included in all copies or substantial portions of the Software.
  1116. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  1117. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  1118. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  1119. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  1120. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  1121. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  1122. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1123. =========================================
  1124. END OF iconv-lite NOTICES AND INFORMATION
  1125. %% lit NOTICES AND INFORMATION BEGIN HERE
  1126. =========================================
  1127. BSD 3-Clause License
  1128. Copyright (c) 2017 Google LLC. All rights reserved.
  1129. Redistribution and use in source and binary forms, with or without
  1130. modification, are permitted provided that the following conditions are met:
  1131. 1. Redistributions of source code must retain the above copyright notice, this
  1132. list of conditions and the following disclaimer.
  1133. 2. Redistributions in binary form must reproduce the above copyright notice,
  1134. this list of conditions and the following disclaimer in the documentation
  1135. and/or other materials provided with the distribution.
  1136. 3. Neither the name of the copyright holder nor the names of its
  1137. contributors may be used to endorse or promote products derived from
  1138. this software without specific prior written permission.
  1139. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  1140. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  1141. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  1142. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  1143. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  1144. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  1145. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  1146. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  1147. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1148. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1149. =========================================
  1150. END OF lit NOTICES AND INFORMATION
  1151. %% lodash-es NOTICES AND INFORMATION BEGIN HERE
  1152. =========================================
  1153. Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
  1154. Based on Underscore.js, copyright Jeremy Ashkenas,
  1155. DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
  1156. This software consists of voluntary contributions made by many
  1157. individuals. For exact contribution history, see the revision history
  1158. available at https://github.com/lodash/lodash
  1159. The following license applies to all parts of this software except as
  1160. documented below:
  1161. ====
  1162. Permission is hereby granted, free of charge, to any person obtaining
  1163. a copy of this software and associated documentation files (the
  1164. "Software"), to deal in the Software without restriction, including
  1165. without limitation the rights to use, copy, modify, merge, publish,
  1166. distribute, sublicense, and/or sell copies of the Software, and to
  1167. permit persons to whom the Software is furnished to do so, subject to
  1168. the following conditions:
  1169. The above copyright notice and this permission notice shall be
  1170. included in all copies or substantial portions of the Software.
  1171. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  1172. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  1173. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  1174. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  1175. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  1176. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  1177. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1178. ====
  1179. Copyright and related rights for sample code are waived via CC0. Sample
  1180. code is defined as all source code displayed within the prose of the
  1181. documentation.
  1182. CC0: http://creativecommons.org/publicdomain/zero/1.0/
  1183. ====
  1184. Files located in the node_modules and vendor directories are externally
  1185. maintained libraries used by this software which have their own
  1186. licenses; we recommend you read them, as their terms may differ from the
  1187. terms above.
  1188. =========================================
  1189. END OF lodash-es NOTICES AND INFORMATION
  1190. %% microsoft/vscode NOTICES AND INFORMATION BEGIN HERE
  1191. =========================================
  1192. MIT License
  1193. Copyright (c) 2015 - present Microsoft Corporation
  1194. Permission is hereby granted, free of charge, to any person obtaining a copy
  1195. of this software and associated documentation files (the "Software"), to deal
  1196. in the Software without restriction, including without limitation the rights
  1197. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1198. copies of the Software, and to permit persons to whom the Software is
  1199. furnished to do so, subject to the following conditions:
  1200. The above copyright notice and this permission notice shall be included in all
  1201. copies or substantial portions of the Software.
  1202. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1203. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1204. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1205. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1206. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1207. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1208. SOFTWARE.
  1209. =========================================
  1210. END OF microsoft/vscode NOTICES AND INFORMATION
  1211. %% node-fetch NOTICES AND INFORMATION BEGIN HERE
  1212. =========================================
  1213. The MIT License (MIT)
  1214. Copyright (c) 2016 David Frank
  1215. Permission is hereby granted, free of charge, to any person obtaining a copy
  1216. of this software and associated documentation files (the "Software"), to deal
  1217. in the Software without restriction, including without limitation the rights
  1218. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1219. copies of the Software, and to permit persons to whom the Software is
  1220. furnished to do so, subject to the following conditions:
  1221. The above copyright notice and this permission notice shall be included in all
  1222. copies or substantial portions of the Software.
  1223. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1224. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1225. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1226. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1227. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1228. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1229. SOFTWARE.
  1230. =========================================
  1231. END OF node-fetch NOTICES AND INFORMATION
  1232. %% os-browserify NOTICES AND INFORMATION BEGIN HERE
  1233. =========================================
  1234. The MIT License (MIT)
  1235. Copyright (c) 2017 CoderPuppy
  1236. Permission is hereby granted, free of charge, to any person obtaining a copy
  1237. of this software and associated documentation files (the "Software"), to deal
  1238. in the Software without restriction, including without limitation the rights
  1239. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1240. copies of the Software, and to permit persons to whom the Software is
  1241. furnished to do so, subject to the following conditions:
  1242. The above copyright notice and this permission notice shall be included in all
  1243. copies or substantial portions of the Software.
  1244. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1245. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1246. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1247. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1248. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1249. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1250. SOFTWARE.
  1251. =========================================
  1252. END OF os-browserify NOTICES AND INFORMATION
  1253. %% path-browserify NOTICES AND INFORMATION BEGIN HERE
  1254. =========================================
  1255. MIT License
  1256. Copyright (c) 2013 James Halliday
  1257. Permission is hereby granted, free of charge, to any person obtaining a copy of
  1258. this software and associated documentation files (the "Software"), to deal in
  1259. the Software without restriction, including without limitation the rights to
  1260. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  1261. the Software, and to permit persons to whom the Software is furnished to do so,
  1262. subject to the following conditions:
  1263. The above copyright notice and this permission notice shall be included in all
  1264. copies or substantial portions of the Software.
  1265. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1266. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  1267. FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  1268. COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  1269. IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  1270. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1271. =========================================
  1272. END OF path-browserify NOTICES AND INFORMATION
  1273. %% react-dom NOTICES AND INFORMATION BEGIN HERE
  1274. =========================================
  1275. MIT License
  1276. Copyright (c) Facebook, Inc. and its affiliates.
  1277. Permission is hereby granted, free of charge, to any person obtaining a copy
  1278. of this software and associated documentation files (the "Software"), to deal
  1279. in the Software without restriction, including without limitation the rights
  1280. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1281. copies of the Software, and to permit persons to whom the Software is
  1282. furnished to do so, subject to the following conditions:
  1283. The above copyright notice and this permission notice shall be included in all
  1284. copies or substantial portions of the Software.
  1285. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1286. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1287. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1288. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1289. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1290. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1291. SOFTWARE.
  1292. =========================================
  1293. END OF react-dom NOTICES AND INFORMATION
  1294. %% react NOTICES AND INFORMATION BEGIN HERE
  1295. =========================================
  1296. MIT License
  1297. Copyright (c) Facebook, Inc. and its affiliates.
  1298. Permission is hereby granted, free of charge, to any person obtaining a copy
  1299. of this software and associated documentation files (the "Software"), to deal
  1300. in the Software without restriction, including without limitation the rights
  1301. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1302. copies of the Software, and to permit persons to whom the Software is
  1303. furnished to do so, subject to the following conditions:
  1304. The above copyright notice and this permission notice shall be included in all
  1305. copies or substantial portions of the Software.
  1306. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1307. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1308. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1309. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1310. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1311. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1312. SOFTWARE.
  1313. =========================================
  1314. END OF react NOTICES AND INFORMATION
  1315. %% sindresorhus/is-fullwidth-code-point NOTICES AND INFORMATION BEGIN HERE
  1316. =========================================
  1317. MIT License
  1318. Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
  1319. 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:
  1320. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  1321. 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.
  1322. =========================================
  1323. END OF sindresorhus/is-fullwidth-code-point NOTICES AND INFORMATION
  1324. %% sindresorhus/string-width NOTICES AND INFORMATION BEGIN HERE
  1325. =========================================
  1326. MIT License
  1327. Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
  1328. 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:
  1329. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  1330. 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.
  1331. =========================================
  1332. END OF sindresorhus/string-width NOTICES AND INFORMATION
  1333. %% sortablejs NOTICES AND INFORMATION BEGIN HERE
  1334. =========================================
  1335. MIT License
  1336. Copyright (c) 2019 All contributors to Sortable
  1337. Permission is hereby granted, free of charge, to any person obtaining a copy
  1338. of this software and associated documentation files (the "Software"), to deal
  1339. in the Software without restriction, including without limitation the rights
  1340. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1341. copies of the Software, and to permit persons to whom the Software is
  1342. furnished to do so, subject to the following conditions:
  1343. The above copyright notice and this permission notice shall be included in all
  1344. copies or substantial portions of the Software.
  1345. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1346. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1347. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1348. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1349. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1350. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1351. SOFTWARE.
  1352. =========================================
  1353. END OF sortablejs NOTICES AND INFORMATION