@volcengine/amk-editor 0.0.1-beta.4

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 (49) hide show
  1. package/LICENSE +11 -0
  2. package/README.md +139 -0
  3. package/dist/amk-editor.d.ts +182 -0
  4. package/dist/api/client.d.ts +30 -0
  5. package/dist/api/preset-library.d.ts +11 -0
  6. package/dist/api/project.d.ts +30 -0
  7. package/dist/asr-progress-modal-view.d.ts +8 -0
  8. package/dist/asr-progress-modal.d.ts +11 -0
  9. package/dist/asr-text-layout.d.ts +4 -0
  10. package/dist/assets/export-modal-ai.png +0 -0
  11. package/dist/assets/export-modal-close.png +0 -0
  12. package/dist/assets/export-modal-info.png +0 -0
  13. package/dist/assets/export-modal-question.png +0 -0
  14. package/dist/assets/export-modal-select.png +0 -0
  15. package/dist/assets/header-back.png +0 -0
  16. package/dist/assets/header-close.png +0 -0
  17. package/dist/assets/header-edit.png +0 -0
  18. package/dist/assets/header-export.png +0 -0
  19. package/dist/assets/import-local.svg +3 -0
  20. package/dist/assets/import-url.svg +10 -0
  21. package/dist/confirm-modal-view.d.ts +15 -0
  22. package/dist/confirm-modal.d.ts +14 -0
  23. package/dist/export-modal-view.d.ts +11 -0
  24. package/dist/export-modal.d.ts +46 -0
  25. package/dist/export-project-adapter.d.ts +14 -0
  26. package/dist/header.d.ts +29 -0
  27. package/dist/i18n/index.d.ts +17 -0
  28. package/dist/i18n/keys.d.ts +83 -0
  29. package/dist/i18n/locales/en-US.d.ts +2 -0
  30. package/dist/i18n/locales/zh-CN.d.ts +2 -0
  31. package/dist/import-actions.d.ts +14 -0
  32. package/dist/index.d.ts +7 -0
  33. package/dist/index.js +128072 -0
  34. package/dist/local-upload-modal-view.d.ts +12 -0
  35. package/dist/local-upload-modal.d.ts +13 -0
  36. package/dist/project-bootstrap.d.ts +11 -0
  37. package/dist/public-types.d.ts +120 -0
  38. package/dist/react-mount.d.ts +10 -0
  39. package/dist/refresh-play-info.d.ts +17 -0
  40. package/dist/runtime/veveditor.d.ts +6 -0
  41. package/dist/task-polling.d.ts +9 -0
  42. package/dist/toast.d.ts +24 -0
  43. package/dist/types.d.ts +138 -0
  44. package/dist/url-upload-modal-view.d.ts +12 -0
  45. package/dist/url-upload-modal.d.ts +12 -0
  46. package/dist/utils/material-extract.d.ts +43 -0
  47. package/dist/veveditor.css +2563 -0
  48. package/package.json +52 -0
  49. package/third_party_notice.txt +1182 -0
@@ -0,0 +1,1182 @@
1
+ Open Source Software Notice
2
+
3
+ NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THIS PRODUCT.
4
+
5
+
6
+ Open Source Software Licensed under the Unlicense License:
7
+ --------------------------------------------------------------------
8
+ 1. react-use
9
+ Terms of the Unlicense:
10
+ --------------------------------------------------------------------
11
+ This is free and unencumbered software released into the public domain.
12
+
13
+ Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
14
+
15
+ In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and
16
+ successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.
17
+
18
+ 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 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.
19
+
20
+ For more information, please refer to <http://unlicense.org/>
21
+
22
+
23
+
24
+ Open Source Software Licensed under the WTFPL License:
25
+ --------------------------------------------------------------------
26
+ 1. opener
27
+ Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
28
+ Copyright 2012 2020 Domenic Denicola <d@domenic.me>
29
+ Terms of the WTFPL:
30
+ --------------------------------------------------------------------
31
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
32
+ Version 2, December 2004
33
+
34
+ Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
35
+
36
+ Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed.
37
+
38
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
39
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
40
+
41
+ 0. You just DO WHAT THE FUCK YOU WANT TO.
42
+
43
+
44
+
45
+ Open Source Software Licensed under the 0BSD License:
46
+ --------------------------------------------------------------------
47
+ 1. tslib
48
+ Copyright (c) Microsoft Corporation. All rights reserved.
49
+ Copyright (c) Microsoft Corporation.
50
+ Terms of the 0BSD:
51
+ --------------------------------------------------------------------
52
+ BSD Zero Clause License
53
+
54
+ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
55
+
56
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
57
+
58
+
59
+
60
+ Open Source Software Licensed under the BSD-3-Clause License:
61
+ --------------------------------------------------------------------
62
+ 1. wavesurfer.js
63
+ Copyright (c) 2012-2023; katspaugh and contributors
64
+ Copyright (c) 2012-2020; katspaugh and contributors
65
+ Copyright (c) 2012-2022; katspaugh and contributors
66
+ Copyright (c) 2012-2021; katspaugh and contributors
67
+ Copyright (c) 2012-2017; katspaugh and contributors
68
+ Copyright (c) 2012-2018; katspaugh and contributors
69
+ Copyright (c) 2012-2019; katspaugh and contributors
70
+ 2. @byteplus/uploader
71
+ 3. @protobufjs/base64
72
+ 4. @protobufjs/codegen
73
+ 5. @protobufjs/fetch
74
+ 6. serialize-javascript
75
+ Copyright 2014 Yahoo Inc.
76
+ 7. @protobufjs/pool
77
+ 8. source-map-js
78
+ Copyright (c) 2009-2011; Mozilla Foundation and contributors
79
+ 9. @protobufjs/utf8
80
+ 10. @protobufjs/aspromise
81
+ 11. @protobufjs/path
82
+ 12. @protobufjs/inquire
83
+ 13. @protobufjs/eventemitter
84
+ 14. qs
85
+ Copyright (c) 2010 TJ Holowaychuk lt;tj@vision-media.ca gt;
86
+ Copyright (c) 2014 Nathan LaFreniere and other contributors.
87
+ copyright holder nor the names of its
88
+ 15. @hapi/bourne
89
+ 16. mp4box
90
+ Copyright (c) 2012. Telecom ParisTech TSI MM GPAC Cyril Concolato
91
+ 17. protobufjs
92
+ Copyright (c) 2016; Daniel Wirtz All rights reserved.
93
+ 18. @protobufjs/float
94
+ Terms of the BSD-3-Clause:
95
+ --------------------------------------------------------------------
96
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
97
+
98
+ 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
99
+
100
+ 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.
101
+
102
+ 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.
103
+
104
+ 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.
105
+
106
+
107
+
108
+ Open Source Software Licensed under the BSD-2-Clause License:
109
+ --------------------------------------------------------------------
110
+ 1. webidl-conversions
111
+ Copyright (c) 2014; Domenic Denicola
112
+ 2. terser
113
+ 3. dotenv
114
+ Copyright (c) 2015; Scott Motte
115
+ Terms of the BSD-2-Clause:
116
+ --------------------------------------------------------------------
117
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
118
+
119
+ 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
120
+
121
+ 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.
122
+
123
+ 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.
124
+
125
+
126
+
127
+ Open Source Software Licensed under the ISC License:
128
+ --------------------------------------------------------------------
129
+ 1. vcloud-sdk-nodejs
130
+ 2. ignore-by-default
131
+ Copyright (c) 2016; Mark Wubben
132
+ 3. anymatch
133
+ Copyright (c) 2019 Elan Shanker; Paul Miller (https: paulmillr.com)
134
+ 4. semver
135
+ Copyright (c) Isaac Z. Schlueter and Contributors
136
+ Copyright 2009; 2010; 2011 Isaac Z. Schlueter.
137
+ Copyright (c) Isaac Z. Schlueter ( Author )
138
+ 5. eslint-plugin-promise
139
+ Copyright (c) 2020; Jamund Ferguson
140
+ (c) MMXV jden <mailto:jason@denizac.org> - ISC license.
141
+ (c) MMXV jden <jason@denizac.org> - ISC license.
142
+ 6. glob-parent
143
+ Copyright (c) 2015; 2019 Elan Shanker
144
+ 7. touch
145
+ Copyright (c) Isaac Z. Schlueter
146
+ Copyright 2009; 2010; 2011 Isaac Z. Schlueter.
147
+ 8. inherits
148
+ Copyright (c) Isaac Z. Schlueter
149
+ 9. xgplayer-flv.js
150
+ Copyright (c) 2018 Bytedance Inc.
151
+ 10. picocolors
152
+ Copyright (c) 2021 Alexey Raspopov; Kostiantyn Denysov; Anton Verinov
153
+ 11. setprototypeof
154
+ Copyright (c) 2015; Wes Todd
155
+ 12. minimatch
156
+ Copyright (c) Isaac Z. Schlueter and Contributors
157
+ 13. react-hotkeys
158
+ Copyright (c) 2018; Aleck Greenham
159
+ Terms of the ISC:
160
+ --------------------------------------------------------------------
161
+ ISC License
162
+
163
+ Permission to use, copy, modify, and /or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
164
+
165
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
166
+
167
+
168
+
169
+ Open Source Software Licensed under the Apache-2.0 License:
170
+ --------------------------------------------------------------------
171
+ 1. keymirror
172
+ 2. echarts
173
+ Copyright 2017-2018 The Apache Software Foundation
174
+ Copyright 2017-2023 The Apache Software Foundation
175
+ Copyright 2017-2022 The Apache Software Foundation
176
+ Copyright (c) 2017; Baidu Inc.
177
+ Copyright 2017-2024 The Apache Software Foundation
178
+ Copyright 2017-2021 The Apache Software Foundation
179
+ Copyright 2017-2019 The Apache Software Foundation
180
+ Copyright 2017-2020 The Apache Software Foundation
181
+ Copyright (c) 2013; Baidu Inc.
182
+ copyright of the original authors.
183
+ 3. @volcengine/openapi
184
+ 4. xlsx
185
+ Copyright (C) 2012-present SheetJS
186
+ Copyright (C) 2012-2014 SheetJS
187
+ Copyright (C) 2012-2014 SheetJS
188
+ Copyright (C) 2012-2015 SheetJS
189
+ Copyright (C) 2012-present SheetJS LLC
190
+ Copyright (c) Stuart Knightley; David Duponchel; Franz Buchinger; Ant onio Afonso. JSZip is dual licensed and is used accordin
191
+ 5. proxy-polyfill
192
+ 6. less
193
+ (c) 2009-2014 [Alexis Sellier](http: cloudhead.io) The Core Less Team
194
+ Copyright (c) Microsoft Corporation. All rights reserved.
195
+ (c) 2009-2016 [Alexis Sellier](http: cloudhead.io) The Core Less Team
196
+ Copyright (C) 2012-2018 by various contributors (see AUTHORS)
197
+ Copyright JS Foundation and other contributors; https: js.foundation
198
+ (c) 2009-2017 [Alexis Sellier](http: cloudhead.io) The Core Less Team
199
+ Copyright (c) 2019 TypeScript ESLint and other contributors
200
+ copyright (Nicholas C. Zakas)
201
+ Copyright (c) 2014-2017 TJ Holowaychuk lt;tj@vision-media.ca gt;
202
+ Copyright (c) 2009-2011 Alexis Sellier
203
+ Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>
204
+ Copyright (c) 2009-2011; Mozilla Foundation and contributors
205
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
206
+ Copyright (c) 2009-2013 Alexis Sellier The Core Less Team
207
+ 7. long
208
+ Copyright (c) 2021 Pranav Baburaj
209
+ 8. typescript
210
+ 9. jsoneditor
211
+ Copyright (C) 2011-2019 Jos de Jong
212
+ Terms of the Apache-2.0:
213
+ --------------------------------------------------------------------
214
+ Apache License
215
+ Version 2.0, January 2004
216
+ http://www.apache.org/licenses/
217
+
218
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
219
+
220
+ 1. Definitions.
221
+
222
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
223
+
224
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
225
+
226
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
227
+
228
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
229
+
230
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
231
+
232
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
233
+
234
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
235
+
236
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
237
+
238
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
239
+
240
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
241
+
242
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
243
+
244
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
245
+
246
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
247
+
248
+ (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
249
+
250
+ (b) You must cause any modified files to carry prominent notices stating that You changed the files; and
251
+
252
+ (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
253
+
254
+ (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
255
+
256
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
257
+
258
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
259
+
260
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
261
+
262
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
263
+
264
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
265
+
266
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
267
+
268
+ END OF TERMS AND CONDITIONS
269
+
270
+ APPENDIX: How to apply the Apache License to your work.
271
+
272
+ To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
273
+
274
+ Copyright [yyyy] [name of copyright owner]
275
+
276
+ Licensed under the Apache License, Version 2.0 (the "License");
277
+ you may not use this file except in compliance with the License.
278
+ You may obtain a copy of the License at
279
+
280
+ http://www.apache.org/licenses/LICENSE-2.0
281
+
282
+ Unless required by applicable law or agreed to in writing, software
283
+ distributed under the License is distributed on an "AS IS" BASIS,
284
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
285
+ See the License for the specific language governing permissions and
286
+ limitations under the License.
287
+
288
+
289
+
290
+ Open Source Software Licensed under the MIT License:
291
+ --------------------------------------------------------------------
292
+ 1. brace-expansion
293
+ Copyright (c) 2013 Julian Gruber lt;julian@juliangruber.com gt;
294
+ Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
295
+ 2. mini-css-extract-plugin
296
+ Copyright JS Foundation and other contributors
297
+ 3. react-sticky
298
+ Copyright (c) 2017 Captivation Software; LLC
299
+ 4. crypto-js
300
+ Copyright (c) 2013-2015 Evan Vosberg
301
+ Copyright (c) 2009-2013 Jeff Mott
302
+ Copyright (c) 2013-2014 Evan Vosberg
303
+ Copyright (c) 2004-2012 Fabien Potencier
304
+ Copyright (c) 2013-2016 Evan Vosberg
305
+ Copyright 2009 The Closure Compiler Authors.
306
+ 5. on-finished
307
+ Copyright (c) 2014 Douglas Christopher Wilson <doug@somethingdoug.com>
308
+ Copyright (c) 2013 Jonathan Ong <me@jongleberry.com>
309
+ 6. @ant-design/charts
310
+ 7. @loadable/component
311
+ 8. @antv/graphlib
312
+ Copyright (c) 2022 AntV team
313
+ 9. secure-compare
314
+ 10. react-dnd
315
+ Copyright (c) 2016 Dan Abramov
316
+ 11. rehype-raw
317
+ Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
318
+ Copyright [Titus Wormer][author]
319
+ 12. prop-types
320
+ Copyright (c) 2013-present; Facebook; Inc.
321
+ 13. xgplayer-dash
322
+ 14. chokidar
323
+ Copyright (c) 2012 - 2015 Paul Miller [paulmillr.com](http: paulmillr.com) Elan Shanker
324
+ Copyright (c) Paul Miller (http: paulmillr.com)
325
+ Copyright (c) 2014 Paul Miller (http: paulmillr.com)
326
+ Copyright (c) 2016 Paul Miller (http: paulmillr.com) Elan Shanker
327
+ Copyright (c) 2012-2019 Paul Miller (https: paulmillr.com) Elan Shanker
328
+ Copyright (c) 2012 Paul Miller (http: paulmillr.com)
329
+ Copyright (c) 2013 Paul Miller (http: paulmillr.com)
330
+ Copyright (c) 2014 Paul Miller (http: paulmillr.com) Elan Shanker
331
+ Copyright (c) 2012 - 2015 Paul Miller (http: paulmillr.com) Elan Shanker
332
+ Copyright (c) 2012 - 2016 Paul Miller [paulmillr.com](http: paulmillr.com) Elan Shanker
333
+ (c) Paul Miller (https: paulmillr.com); see LICENSE file.
334
+ Copyright (c) 2012-2019 Paul Miller (https: paulmillr.com); Elan Shanker
335
+ Copyright (c) 2016 Paul Miller (https: paulmillr.com) Elan Shanker
336
+ 15. undefsafe
337
+ Copyright 2016 Remy Sharp; http: remysharp.com <remy@remysharp.com>
338
+ 16. sass
339
+ 17. react-dom
340
+ Copyright (c) Facebook; Inc. and its affiliates.
341
+ Copyright (c) Meta Platforms; Inc. and affiliates.
342
+ 18. @ant-design/plots
343
+ 19. html-encoding-sniffer
344
+ Copyright Domenic Denicola <d@domenic.me>
345
+ 20. statuses
346
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
347
+ Copyright (c) Aureliano Alarcon <aureliano.alarcon@gmail.com>
348
+ Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
349
+ 21. corser
350
+ Copyright (C) 2012 Alexander Gr neberg
351
+ 22. @types/react
352
+ Copyright (c) Microsoft Corporation. All rights reserved.
353
+ Copyright (c) Microsoft Corporation.
354
+ 23. keygrip
355
+ Copyright (c) 2011 Jed Schmidt; http: jedschmidt.com
356
+ Copyright (c) 2011-2014 Jed Schmidt <where@jed.is> (http: jedschmidt.com)
357
+ Copyright (c) 2012 Jed Schmidt. See LICENSE.txt for details.
358
+ Copyright (c) 2011 Jed Schmidt. See LICENSE.txt for details.
359
+ Copyright (c) 2012 Jed Schmidt; http: jedschmidt.com
360
+ 24. normalize-path
361
+ Copyright (c) 2014-2018; Jon Schlinkert.
362
+ Copyright 2018; [Jon Schlinkert](https: github.com jonschlinkert).
363
+ 25. mockjs
364
+ Copyright (c) 2015 nuysoft
365
+ 26. query-string
366
+ Copyright [Sindre Sorhus](https: sindresorhus.com)
367
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
368
+ Copyright [Sindre Sorhus](http: sindresorhus.com)
369
+ 27. opener
370
+ Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
371
+ Copyright 2012 2020 Domenic Denicola <d@domenic.me>
372
+ 28. postcss
373
+ Copyright 2013 Andrey Sitnik <andrey@sitnik.ru>
374
+ 29. debug
375
+ Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
376
+ 30. he
377
+ Copyright bar baz qux ;
378
+ Copyright and ampersand ;
379
+ Copyright bar baz qux
380
+ Copyright bar baz qux );
381
+ 31. tt-uploader
382
+ 32. microm
383
+ Copyright (c) 2015 zzarcon and contributors
384
+ Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
385
+ 33. bizcharts
386
+ Copyright (c) 2017 Alibaba
387
+ 34. has-tostringtag
388
+ Copyright (c) 2021 Inspect JS
389
+ 35. @types/node
390
+ Copyright (c) Microsoft Corporation. All rights reserved.
391
+ Copyright (c) Microsoft Corporation.
392
+ 36. axios
393
+ Copyright (c) Fred Heusschen
394
+ Copyright (c) 2014-present Matt Zabriskie
395
+ Copyright (c) 2014 Matt Zabriskie
396
+ 37. vary
397
+ Copyright (c) 2014-2017 Douglas Christopher Wilson
398
+ Copyright (c) 2014-2015 Douglas Christopher Wilson
399
+ 38. hasown
400
+ Copyright (c) 2014 Radu Brehar
401
+ 39. react-dnd-html5-backend
402
+ Copyright (c) 2015 Dan Abramov
403
+ 40. esbuild
404
+ Copyright (c) 2020 Evan Wallace
405
+ 41. @babel/plugin-proposal-decorators
406
+ Copyright (c) 2014-2018 Sebastian McKenzie <sebmck@gmail.com>
407
+ Copyright (c) 2014-2018 Sebastian McKenzie and other contributors
408
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
409
+ 42. rc-color-picker
410
+ Copyright (c) 2019-present alipay.com
411
+ 43. immutability-helper
412
+ Copyright (c) 2017 Moshe Kolodny
413
+ 44. @antv/data-set
414
+ 45. eventemitter3
415
+ Copyright (c) 2014 Arnout Kazemier
416
+ Copyright (c) 2014 Arnout Kazemier
417
+ 46. vite
418
+ Copyright 2022 Justin Ridgewell <jridgewell@google.com>
419
+ Copyright (c) 2019 RollupJS Plugin Contributors (https: github.com rollup plugins graphs contributors)
420
+ Copyright 2019 Google LLC
421
+ Copyright (c) 2016 Luigi Pinca and contributors
422
+ Copyright (c) 2013 Arnout Kazemier and contributors
423
+ Copyright (C) 2012-2014 by various contributors (see AUTHORS)
424
+ Copyright 2018 Eemeli Aro <eemeli@gmail.com>
425
+ Copyright (c) 2019-present; Yuxi (Evan) You
426
+ Copyright (c) 2015 Rich Harris
427
+ Copyright (c) 2019-present; Yuxi (Evan) You and Vite contributors
428
+ Copyright (c) Isaac Z. Schlueter and Contributors
429
+ Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>
430
+ Copyright (c) 2018-present; Yuxi (Evan) You
431
+ Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>
432
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
433
+ Copyright 2019 Justin Ridgewell <jridgewell@google.com>
434
+ Copyright (c) 2014 Evan Wallace
435
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
436
+ 47. http-assert
437
+ Copyright (c) 2014
438
+ 48. form-data
439
+ Copyright (c) 2012 Felix Geisend rfer (felix@debuggable.com) and contributors
440
+ 49. react-rnd
441
+ Copyright (c) 2017 @bokuweb
442
+ 50. css-loader
443
+ Copyright JS Foundation and other contributors
444
+ 51. nanoid
445
+ Copyright 2017 Andrey Sitnik <andrey@sitnik.ru>
446
+ 52. get-proto
447
+ 53. copy-to
448
+ Copyright (c) 2014 dead_horse
449
+ 54. webpack-sources
450
+ Copyright (c) 2017 JS Foundation and other contributors
451
+ 55. crc
452
+ Copyright (c) 2014 Alex Gorbatchev
453
+ Copyright 2014 Alex Gorbatchev
454
+ 56. react-router-dom
455
+ Copyright (c) React Training 2015-2019
456
+ Copyright (c) Remix Software 2020-2022
457
+ 57. @arco-design/web-react
458
+ 58. es-set-tostringtag
459
+ Copyright (c) 2022 ECMAScript Shims
460
+ 59. safe-buffer
461
+ Copyright (c) Feross Aboukhadijeh
462
+ 60. mime
463
+ Copyright (c) 2023 Vault Thirteen
464
+ Copyright (c) 2010 Benjamin Thomas; Robert Kieffer
465
+ 61. co
466
+ Copyright (c) 2014 TJ Holowaychuk lt;tj@vision-media.ca gt;
467
+ 62. bx-tooltip
468
+ 63. pstree.remy
469
+ Copyright 2019 Remy Sharp; https: remysharp.com <remy@remysharp.com>
470
+ 64. dayjs
471
+ Copyright (c) 2018-present; iamkun
472
+ Copyright (c) 2018 iamkun
473
+ 65. react-draggable
474
+ Copyright (c) 2014-2016 Matt Zabriskie. All rights reserved.
475
+ 66. depd
476
+ Copyright (c) 2014-2018 Douglas Christopher Wilson
477
+ Copyright (c) 2014-2017 Douglas Christopher Wilson
478
+ 67. tr46
479
+ Copyright (c) 2016 Sebastian Mayr
480
+ Copyright (c) Sebastian Mayr
481
+ 68. cache-content-type
482
+ 69. koa-convert
483
+ Copyright (c) 2020 Koa.js contributors
484
+ Copyright (c) 2015 yunsong
485
+ 70. events
486
+ Copyright Verbb
487
+ Copyright (c) Natan Felles
488
+ Copyright (c) 2019 Mark Bates
489
+ Copyright 2015-2016 Fabrizio Bellicano (AEGEE-Europe)
490
+ Copyright (c) 2021 Natan Felles
491
+ Copyright 2015-2018 Fabrizio Bellicano (AEGEE-Europe) and contributors
492
+ 71. xgplayer-react
493
+ Copyright (c) 2018 Bytedance Inc.
494
+ 72. promise.allsettled
495
+ Copyright (c) 2019 Jordan Harband
496
+ 73. react-redux
497
+ Copyright (c) 2015 Dan Abramov
498
+ Copyright (c) 2015-present Dan Abramov
499
+ 74. xgplayer-flv
500
+ Copyright (c) 2018 Bytedance Inc.
501
+ 75. escape-html
502
+ Copyright (c) 2012-2013 TJ Holowaychuk
503
+ Copyright (c) 2015 Tiancheng Timothy Gu
504
+ Copyright (c) 2015 Andreas Lubbe
505
+ 76. basic-auth
506
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
507
+ Copyright (c) 2013 TJ Holowaychuk
508
+ Copyright (c) 2015-2016 Douglas Christopher Wilson <doug@somethingdoug.com>
509
+ 77. cookies
510
+ Copyright (c) 2011 Jed Schmidt; http: jed.is
511
+ Copyright (c) 2014 Jed Schmidt; http: jed.is
512
+ Copyright (c) 2012 Jed Schmidt. See LICENSE.txt for details.
513
+ Copyright (c) 2015-2016 Douglas Christopher Wilson <doug@somethingdoug.com>
514
+ Copyright (c) 2011 Jed Schmidt. See LICENSE.txt for details.
515
+ Copyright (c) 2014 Jed Schmidt. See LICENSE.txt for details.
516
+ Copyright (c) 2011 Jed Schmidt; http: jedschmidt.com
517
+ 78. mb-react-color-picker
518
+ Copyright [mockingbot](https: github.com mockingbot)
519
+ 79. @types/crypto-js
520
+ Copyright (c) Microsoft Corporation. All rights reserved.
521
+ Copyright (c) Microsoft Corporation.
522
+ 80. asynckit
523
+ Copyright (c) 2016 Alex Indigo
524
+ 81. @babel/core
525
+ Copyright (c) 2014-2018 Sebastian McKenzie <sebmck@gmail.com>
526
+ Copyright (c) 2014-2018 Sebastian McKenzie and other contributors
527
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
528
+ 82. sugarss
529
+ 83. copy-to-clipboard
530
+ Copyright (c) 2017 sudodoki <smd.deluzion@gmail.com>
531
+ 84. @changesets/cli
532
+ 85. redux-undo
533
+ 86. resolve
534
+ Copyright (c) 2012 James Halliday
535
+ 87. json2csv
536
+ Copyright (C) 2012 [Mirco Zeiss](mailto: mirco.zeiss@gmail.com)
537
+ 88. follow-redirects
538
+ Copyright 2017 Olivier Lalonde <olalonde@gmail.com>; James Talmage <james@talmage.io>; Ruben Verborgh
539
+ 89. @types/json2csv
540
+ 90. webpack-cli
541
+ Copyright JS Foundation and other contributors
542
+ 91. http-server
543
+ Copyright (c) 2011 Charlie Robbins; Marak Squires; and the Contributors.
544
+ Copyright (c) 2011 Nodejitsu http: github.com nodejitsu http-server
545
+ Copyright (c) 2011-2020 Charlie Robbins; Marak Squires; and the Contributors.
546
+ Copyright (c) 2011-2022 Charlie Robbins; Marak Squires; Jade Michael Thornton and the Contributors.
547
+ 92. ramda
548
+ Copyright (c) 2013-2018 Scott Sauyet and Michael Hurley
549
+ 93. ms
550
+ Copyright (c) 2020 Vercel; Inc.
551
+ Copyright (c) 2016 Zeit; Inc.
552
+ Copyright (c) 2014 Guillermo Rauch <rauchg@gmail.com>
553
+ 94. path-to-regexp
554
+ Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com)
555
+ 95. uuid
556
+ Copyright (c) 2010 Nikhil Marathe <nsm.nikhil@gmail.com>
557
+ Copyright (c) 2010-2016 Robert Kieffer and other contributors
558
+ Copyright (c) 2010-2020 Robert Kieffer and other contributors
559
+ Copyright (c) 2010-2012 Robert Kieffer
560
+ Copyright (c) 2010-2012 Robert Kieffer
561
+ 96. redux-thunk
562
+ Copyright (c) 2015 Dan Abramov
563
+ Copyright (c) 2015-present Dan Abramov
564
+ 97. supports-color
565
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
566
+ 98. css-minimizer-webpack-plugin
567
+ Copyright JS Foundation and other contributors
568
+ 99. react-custom-scrollbars
569
+ Copyright (c) 2015 react-custom-scrollbars
570
+ 100. inflation
571
+ Copyright (c) 2014 Jonathan Ong me@jongleberry.com
572
+ 101. supports-preserve-symlinks-flag
573
+ Copyright (c) 2022 Inspect JS
574
+ 102. encodeurl
575
+ Copyright (c) 2016 Douglas Christopher Wilson
576
+ 103. call-bound
577
+ 104. yocto-queue
578
+ (c) Sindre Sorhus <sindresorhus@gmail.com> (https: sindresorhus.com)
579
+ 105. jsrsasign
580
+ Copyright (c) 2011 Stefan Thomas
581
+ Copyright (c) 2010-2012 Kenji Urushima
582
+ Copyright (c) 2003-2005 Tom Wu
583
+ Copyright (c) 2010-2013 Kenji Urushima
584
+ Copyright (c) 2010-2018 Kenji Urushima
585
+ Copyright (c) 1998 - 2009; Paul Johnston Contributors
586
+ Copyright (c) 2010-2016 Kenji Urushima
587
+ Copyright (c) 2010-2021 Kenji Urushima
588
+ Copyright (c) 2010-2020 Kenji Urushima
589
+ Copyright (c) 2009-2013 Jeff Mott
590
+ Copyright (c) 2003-2005 Tom Wu All Rights Reserved.
591
+ 106. recordrtc
592
+ Copyright (c) 2013-2020 [Muaz Khan](https: github.com muaz-khan)
593
+ Copyright (c) [Muaz Khan](https: MuazKhan.com).
594
+ 107. combined-stream
595
+ Copyright (c) 2011 Debuggable Limited <felix@debuggable.com>
596
+ 108. react-copy-to-clipboard
597
+ Copyright (c) 2015 Nik Butenko
598
+ Copyright (c) 2016 Nik Butenko
599
+ 109. classnames
600
+ Copyright (c) 2018 Jed Watson
601
+ Copyright (c) 2018 Jed Watson.
602
+ Copyright (c) 2017 Jed Watson.
603
+ Copyright (c) 2016 Jed Watson
604
+ Copyright (c) 2014 Jed Watson
605
+ Copyright (c) 2015 Jed Watson
606
+ Copyright (c) 2017 Jed Watson
607
+ Copyright (c) 2016 Jed Watson.
608
+ 110. ansi-styles
609
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
610
+ 111. nodemon
611
+ Copyright (c) 2010 - present; Remy Sharp; https: remysharp.com <remy@remysharp.com>
612
+ Copyright (c) 2019 Remy Sharp; https: remysharp.com <remy@remysharp.com>
613
+ 112. @antv/g2-plugin-slider
614
+ 113. fresh
615
+ Copyright (c) 2016-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
616
+ Copyright (c) 2012 TJ Holowaychuk <tj@vision-media.ca>
617
+ 114. accepts
618
+ Copyright (c) 2013 Jonathan Ong me@jongleberry.com
619
+ Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
620
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
621
+ Copyright (c) 2014 Jonathan Ong me@jongleberry.com
622
+ 115. minimist
623
+ 116. lodash-es
624
+ Copyright OpenJS Foundation and other contributors <https: openjsf.org >
625
+ Copyright 2012-2015 The Dojo Foundation <http: dojofoundation.org >
626
+ Copyright JS Foundation and other contributors <https: js.foundation >
627
+ Copyright jQuery Foundation and other contributors <https: jquery.org >
628
+ Copyright 2012-2016 The Dojo Foundation <http: dojofoundation.org >
629
+ 117. mime-types
630
+ Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
631
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
632
+ Copyright (c) 2014 Jonathan Ong me@jongleberry.com
633
+ 118. portfinder
634
+ Copyright (c) 2012 Charlie Robbins
635
+ 119. toidentifier
636
+ Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
637
+ 120. has-flag
638
+ Copyright [Sindre Sorhus](https: sindresorhus.com)
639
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
640
+ Copyright [Sindre Sorhus](http: sindresorhus.com)
641
+ 121. babel-loader
642
+ Copyright (c) 2014-2016 Lu s Couto <hello@luiscouto.pt>
643
+ Copyright (c) 2014-2015 Lu s Couto <hello@luiscouto.pt>
644
+ Copyright Luis Couto
645
+ Copyright (c) 2014-2019 Lu s Couto <hello@luiscouto.pt>
646
+ 122. @antv/g2
647
+ 123. @types/promise.allsettled
648
+ 124. chardet
649
+ Copyright (C) 2013 Dmitry Shirokov
650
+ Copyright (C) 2018 Dmitry Shirokov
651
+ Copyright (C) 2022 Dmitry Shirokov
652
+ Copyright (C) 2020 Dmitry Shirokov
653
+ Copyright (C) 2023 Dmitry Shirokov
654
+ Copyright (C) 2019 Dmitry Shirokov
655
+ Copyright (C) 2017 Dmitry Shirokov
656
+ Copyright (C) 2021 Dmitry Shirokov
657
+ 125. p-limit
658
+ Copyright [Sindre Sorhus](https: sindresorhus.com)
659
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
660
+ 126. ee-first
661
+ Copyright (c) 2014 Jonathan Ong me@jongleberry.com
662
+ 127. raw-body
663
+ Copyright (c) 2014-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
664
+ Copyright (c) 2013-2014 Jonathan Ong <me@jongleberry.com>
665
+ 128. koa
666
+ Copyright (c) 2019 Koa contributors
667
+ Copyright (c) 2013 TJ Holowaychuk <tj@vision-media.ca>
668
+ copyright year to 2017 (#1095)
669
+ Copyright (c) 2018 Koa contributors
670
+ Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>
671
+ Copyright (c) 2016 Koa contributors
672
+ Copyright (c) 2015 Koa contributors
673
+ 129. async
674
+ Copyright (c) 2010-2017 Caolan McMahon
675
+ Copyright (c) 2010 Caolan McMahon
676
+ Copyright (c) 2010-2018 Caolan McMahon
677
+ Copyright (c) 2010-2016 Caolan McMahon
678
+ Copyright (c) 2010-2014 Caolan McMahon
679
+ 130. ahooks
680
+ Copyright (c) 2020 ahooks
681
+ 131. @types/react-dom
682
+ Copyright (c) Microsoft Corporation. All rights reserved.
683
+ Copyright (c) Microsoft Corporation.
684
+ 132. @svgr/webpack
685
+ Copyright 2017 Smooth Code
686
+ 133. delegates
687
+ Copyright (c) 2015 TJ Holowaychuk <tj@vision-media.ca>
688
+ 134. stylus
689
+ 135. koa-cors
690
+ Copyright (c) 2013 Everton Yoshitani
691
+ 136. styled-components
692
+ Copyright 2017 Glen Maddern and Maximilian Stoiber.
693
+ Copyright (c) 2016-present Glen Maddern and Maximilian Stoiber
694
+ Copyright 2016 Glen Maddern and Maximilian Stoiber.
695
+ Copyright (c) 2016 css-components
696
+ Copyright (c) 2016 Glen Maddern and Maximilian Stoiber
697
+ Copyright 2016-present Glen Maddern and Maximilian Stoiber.
698
+ 137. react-json-view
699
+ Copyright (c) 2015 Mac Gainor
700
+ 138. is-glob
701
+ Copyright 2019; [Jon Schlinkert](https: github.com jonschlinkert).
702
+ Copyright (c) 2014-2017; Jon Schlinkert.
703
+ 139. react-lazy-load
704
+ Copyright (c) 2015 Jason
705
+ 140. is-core-module
706
+ Copyright (c) 2014 Dave Justice
707
+ 141. redux
708
+ Copyright (c) 2015 Dan Abramov
709
+ Copyright (c) 2015-present Dan Abramov
710
+ Copyright (c) 2014 Dan Abramov
711
+ 142. is-generator-function
712
+ Copyright (c) 2014 Jordan Harband
713
+ 143. xgplayer
714
+ Copyright (c) 2018 Bytedance Inc.
715
+ 144. whatwg-url
716
+ Copyright (c) 2015 2016 Sebastian Mayr
717
+ 145. @commitlint/cli
718
+ 146. js-cookie
719
+ Copyright (c) 2018 Copyright 2018 Klaus Hartl; Fagner Brack; GitHub Contributors
720
+ 147. tone
721
+ Copyright (c) 2014-2020 Yotam Mann
722
+ 148. only
723
+ Copyright (c) 2012 TJ Holowaychuk lt;tj@vision-media.ca gt;
724
+ 149. whatwg-encoding
725
+ Copyright Domenic Denicola <d@domenic.me>
726
+ 150. braces
727
+ Copyright 2014-2015 Jon Schlinkert
728
+ Copyright (c) 2015 Jon Schlinkert
729
+ Copyright (c) 2014 Jon Schlinkert
730
+ Copyright (c) 2014--2015 Jon Schlinkert
731
+ Copyright (c) 2014-2015 Jon Schlinkert
732
+ Copyright 2019; [Jon Schlinkert](https: github.com jonschlinkert).
733
+ Copyright (c) 2014-2015; Jon Schlinkert.
734
+ Copyright (c) 2014-2017; Jon Schlinkert.
735
+ Copyright 2018; [Jon Schlinkert](https: github.com jonschlinkert).
736
+ Copyright (c) 2014 Jon Schlinkert; contributors.
737
+ Copyright (c) 2014-2016; Jon Schlinkert.
738
+ Copyright (c) 2014-2018; Jon Schlinkert.
739
+ Copyright 2017; [Jon Schlinkert](https: github.com jonschlinkert).
740
+ Copyright (c) 2014-2017; Jon Schlinkert
741
+ Copyright 2016; [Jon Schlinkert](https: github.com jonschlinkert).
742
+ 151. xgplayer-hls.js
743
+ 152. lodash.get
744
+ Copyright 2012-2015 The Dojo Foundation <http: dojofoundation.org >
745
+ copyright 2009-2016 Jeremy Ashkenas;
746
+ Copyright 2012-2016 The Dojo Foundation <http: dojofoundation.org >
747
+ copyright 2009-2015 Jeremy Ashkenas;
748
+ 153. webpack
749
+ Copyright JS Foundation and other contributors
750
+ Copyright (c) 2012-2015 Tobias Koppers
751
+ Copyright (c) 2012-2014 Tobias Koppers
752
+ Copyright (c) 2012-2016 Tobias Koppers
753
+ Copyright (c) 2012 Tobias Koppers
754
+ (C) 133 [rendered]
755
+ Copyright (c) JS Foundation
756
+ Copyright (c) 2012-2013 Tobias Koppers
757
+ Copyright (c) 2012 - 2013 Tobias Koppers
758
+ Copyright (c) 2012 - 2014 Tobias Koppers
759
+ Copyright (c) 2012 - 2015 Tobias Koppers
760
+ 154. react-router-redux
761
+ Copyright (c) 2015-present James Long
762
+ Copyright (c) 2015 James Long
763
+ 155. http-errors
764
+ Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com
765
+ Copyright (c) 2014 Jonathan Ong me@jongleberry.com
766
+ 156. ip-regex
767
+ Copyright [Sindre Sorhus](https: sindresorhus.com)
768
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
769
+ Copyright [Sindre Sorhus](http: sindresorhus.com)
770
+ 157. querystring
771
+ Copyright 2012 Irakli Gozalishvili
772
+ 158. deep-equal
773
+ Copyright (c) 2012; 2013; 2014 James Halliday <mail@substack.net>; 2009 Thomas Robinson <280north.com>
774
+ 159. terser-webpack-plugin
775
+ Copyright JS Foundation and other contributors
776
+ copyright; licenses and etc) will be preserved
777
+ 160. encoding
778
+ 161. react-sortable-hoc
779
+ Copyright (c) 2016; Claud ric Demers
780
+ 162. koa-bodyparser
781
+ Copyright (c) 2014 dead-horse and other contributors
782
+ Copyright (c) 2014 dead_horse
783
+ 163. number-precision
784
+ 164. ylru
785
+ Copyright (c) 2016 node-modules
786
+ Copyright (c) 2016 Dominic Tarr
787
+ Copyright (c) 2016-present node-modules
788
+ 165. safe-regex-test
789
+ Copyright (c) 2022 Jordan Harband
790
+ 166. happy-dom
791
+ 167. react
792
+ Copyright 2013-present; Facebook; Inc.
793
+ Copyright (c) Facebook; Inc. and its affiliates.
794
+ Copyright (c) 2013-present; Facebook; Inc.
795
+ Copyright (c) Facebook; Inc. and its affiliates
796
+ Copyright (c) Meta Platforms; Inc. and affiliates.
797
+ 168. content-type
798
+ Copyright (c) 2015 Douglas Christopher Wilson
799
+ 169. babel-plugin-dynamic-import-node
800
+ Copyright (c) 2016 Airbnb
801
+ 170. simple-update-notifier
802
+ Copyright (c) 2022 Alex Brazier
803
+ 171. methods
804
+ Copyright (c) 2015-2016 Douglas Christopher Wilson <doug@somethingdoug.com>
805
+ Copyright (c) 2013-2014 TJ Holowaychuk <tj@vision-media.ca>
806
+ 172. rollup
807
+ Copyright (c) 2015; Contributors
808
+ Copyright (c) 2019 Elan Shanker; Paul Miller (https: paulmillr.com)
809
+ Copyright (c) 2015-present; Jon Schlinkert.
810
+ Copyright (c) 2014-present; Facebook; Inc.
811
+ Copyright (c) 2014-present; Jon Schlinkert.
812
+ Copyright (c) Isaac Z. Schlueter
813
+ Copyright 2018 Rich Harris
814
+ Copyright (c) 2014-2017; Jon Schlinkert.
815
+ Copyright (C) 2012-2018 by various contributors (see AUTHORS)
816
+ Copyright Jorge Bucaran <<https: jorgebucaran.com>>
817
+ Copyright (c) 2016; Contributors
818
+ Copyright (C) 2017-2018 by Adrian Heine
819
+ Copyright 2015-present [Jorge Bucaran](https: github.com jorgebucaran)
820
+ Copyright (c) 2012-2019 Paul Miller (https: paulmillr.com); Elan Shanker
821
+ Copyright (c) 2015 Rich Harris
822
+ Copyright (c) 2014-2016; Jon Schlinkert
823
+ Copyright (c) 2014-2018; Jon Schlinkert.
824
+ Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
825
+ Copyright (c) 2015; 2019 Elan Shanker
826
+ Copyright (C) 2012-2022 by various contributors (see AUTHORS)
827
+ Copyright 2015 Calvin Metcalf
828
+ Copyright (c) 2020 CFWare; LLC
829
+ Copyright (c) 2017-present; Jon Schlinkert.
830
+ Copyright (C) 2012-2020 by various contributors (see AUTHORS)
831
+ 173. @types/ramda
832
+ Copyright (c) Microsoft Corporation. All rights reserved.
833
+ Copyright (c) Microsoft Corporation.
834
+ 174. @babel/preset-typescript
835
+ Copyright (c) 2014-2018 Sebastian McKenzie <sebmck@gmail.com>
836
+ Copyright (c) 2014-2018 Sebastian McKenzie and other contributors
837
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
838
+ 175. @commitlint/config-conventional
839
+ 176. @ant-design/icons
840
+ Copyright (c) 2018-present Ant UED; https: xtech.antfin.com
841
+ 177. react-joyride
842
+ Copyright 2016 Gil Barbara - [MIT License](LICENSE)
843
+ Copyright (c) 2015; Gil Barbara
844
+ Copyright (c) 2015-present; Gil Barbara
845
+ Copyright 2015 Gil Barbara - [MIT License](LICENSE)
846
+ Copyright (c) 2015 Gil Barbara
847
+ 178. co-body
848
+ 179. @types/react-router
849
+ Copyright (c) Microsoft Corporation. All rights reserved.
850
+ Copyright (c) Microsoft Corporation.
851
+ 180. levenary
852
+ Copyright (c) 2019 Tan Li Hau
853
+ 181. koa-router
854
+ Copyright (c) 2019-present Nick Baugh and Koajs contributors
855
+ Copyright (c) 2015 Alexander C. Mingoia
856
+ 182. @umijs/hooks
857
+ 183. parseurl
858
+ Copyright (c) 2014-2017 Douglas Christopher Wilson <doug@somethingdoug.com>
859
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
860
+ 184. http-proxy
861
+ Copyright (c) 2010 - 2016 Charlie Robbins; Jarrett Cruger the Contributors.
862
+ Copyright (c) 2010-2016 Charlie Robbins; Jarrett Cruger the Contributors.
863
+ 185. remark-gfm
864
+ Copyright [Titus Wormer][author]
865
+ Copyright (c) 2020 Titus Wormer <tituswormer@gmail.com>
866
+ 186. react-app-polyfill
867
+ Copyright (c) 2013-present; Facebook; Inc.
868
+ 187. @types/lodash-es
869
+ Copyright (c) Microsoft Corporation. All rights reserved.
870
+ Copyright (c) Microsoft Corporation.
871
+ 188. @babel/preset-env
872
+ Copyright (c) 2014-2018 Sebastian McKenzie <sebmck@gmail.com>
873
+ Copyright (c) 2014-2018 Sebastian McKenzie and other contributors
874
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
875
+ 189. koa-compose
876
+ 190. @babel/runtime
877
+ Copyright (c) 2014-2018 Sebastian McKenzie <sebmck@gmail.com>
878
+ Copyright (c) 2014-2018 Sebastian McKenzie and other contributors
879
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
880
+ 191. react-markdown
881
+ Copyright (c) 2015 Espen Hovlandsdal
882
+ Copyright [Espen Hovlandsdal][author]
883
+ Copyright [Espen Hovlandsdal](https: espen.codes )
884
+ 192. path-parse
885
+ Copyright (c) 2015 Javier Blanco
886
+ Copyright [Javier Blanco](http: jbgutierrez.info)
887
+ 193. @reduxjs/toolkit
888
+ 194. type-is
889
+ Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
890
+ Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
891
+ 195. is-binary-path
892
+ Copyright [Sindre Sorhus](https: sindresorhus.com)
893
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
894
+ Copyright [Sindre Sorhus](http: sindresorhus.com)
895
+ 196. chalk
896
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
897
+ 197. vitest
898
+ Copyright (c) 2021 Anthony Fu <https: github.com antfu>
899
+ Copyright 2021 [Anthony Fu](https: github.com antfu)
900
+ 198. destroy
901
+ Copyright (c) 2014 Jonathan Ong me@jongleberry.com
902
+ Copyright (c) 2015-2022 Douglas Christopher Wilson doug@somethingdoug.com
903
+ 199. requires-port
904
+ Copyright (c) 2015 Unshift.io; Arnout Kazemier; the Contributors.
905
+ 200. dagre-compound
906
+ 201. @babel/preset-react
907
+ Copyright (c) 2014-2018 Sebastian McKenzie <sebmck@gmail.com>
908
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
909
+ 202. hex-and-rgba
910
+ Copyright (c) 2015 BananaAcid
911
+ 203. @types/nanoid
912
+ 204. moment
913
+ Copyright (c) JS Foundation and other contributors
914
+ Copyright (c) 2011-2014 Tim Wood; Iskren Chernev; Moment.js contributors
915
+ Copyright (c) 2011-2016 Tim Wood; Iskren Chernev; Moment.js contributors
916
+ Copyright (c) 2011-2012 Tim Wood
917
+ Copyright (c) 2011-2015 Tim Wood; Iskren Chernev; Moment.js contributors
918
+ Copyright (c) 2011-2013 Tim Wood; Iskren Chernev; Moment.js contributors
919
+ 205. node-fetch
920
+ Copyright (c) 2016 David Frank
921
+ Copyright (c) 2015 David Frank
922
+ Copyright (c) 2016 - 2020 Node Fetch Team
923
+ 206. @changesets/changelog-github
924
+ 207. file-saver
925
+ Copyright 2016 [Eli Grey][1].
926
+ 208. @types/react-redux
927
+ Copyright (c) Microsoft Corporation. All rights reserved.
928
+ Copyright (c) Microsoft Corporation.
929
+ 209. readdirp
930
+ Copyright (c) 2012-2019 Thorsten Lorenz; Paul Miller (https: paulmillr.com)
931
+ (c) 2012-2019 Thorsten Lorenz; Paul Miller (<https: paulmillr.com>)
932
+ Copyright (c) 2012-2019 Thorsten Lorenz; Paul Miller (<https: paulmillr.com>)
933
+ Copyright (c) 2012-2015 Thorsten Lorenz
934
+ 210. union
935
+ Copyright (c) 2010-2012 Charlie Robbins the Contributors
936
+ Copyright (c) 2010 Charlie Robbins the Contributors.
937
+ 211. media-typer
938
+ Copyright (c) 2014 Douglas Christopher Wilson
939
+ 212. negotiator
940
+ Copyright (c) 2012-2014 Federico Romero
941
+ Copyright (c) 2012-2014 Isaac Z. Schlueter
942
+ Copyright (c) 2014-2015 Douglas Christopher Wilson
943
+ 213. bizcharts-plugin-slider
944
+ 214. url-join
945
+ Copyright (c) 2015 Jos F. Romaniello
946
+ 215. buffer
947
+ 216. http-headers-validation
948
+ 217. react-router
949
+ Copyright (c) React Training 2015-2019
950
+ Copyright (c) 2015-present; Ryan Florence; Michael Jackson
951
+ Copyright (c) Remix Software 2020-2022
952
+ Copyright (c) React Training 2016-2018
953
+ Copyright (c) 2014 Ryan Florence; Michael Jackson
954
+ Copyright (c) React Training 2016-2019
955
+ Copyright (c) 2015 Ryan Florence; Michael Jackson
956
+ 218. content-disposition
957
+ Copyright (c) 2014-2017 Douglas Christopher Wilson
958
+ Terms of the MIT:
959
+ --------------------------------------------------------------------
960
+ MIT License
961
+
962
+ 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:
963
+
964
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
965
+
966
+ 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.
967
+
968
+
969
+ Additional Notice for Bundled FreeType WebAssembly
970
+ --------------------------------------------------------------------
971
+ FreeType WebAssembly wrapper
972
+ Copyright (c) 2026 zkl2333
973
+ The wrapper and build scripts are licensed under the MIT License.
974
+ The MIT License terms are reproduced in the MIT section above.
975
+
976
+ FreeType
977
+ Copyright 1996-2002, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg
978
+
979
+ Binary distribution attribution:
980
+ Portions of this software are copyright © The FreeType Project
981
+ (www.freetype.org). All rights reserved.
982
+
983
+ Terms of the FreeType Project License:
984
+ --------------------------------------------------------------------
985
+ The FreeType Project LICENSE
986
+ ----------------------------
987
+
988
+ 2006-Jan-27
989
+
990
+ Copyright 1996-2002, 2006 by
991
+ David Turner, Robert Wilhelm, and Werner Lemberg
992
+
993
+
994
+
995
+ Introduction
996
+ ============
997
+
998
+ The FreeType Project is distributed in several archive packages;
999
+ some of them may contain, in addition to the FreeType font engine,
1000
+ various tools and contributions which rely on, or relate to, the
1001
+ FreeType Project.
1002
+
1003
+ This license applies to all files found in such packages, and
1004
+ which do not fall under their own explicit license. The license
1005
+ affects thus the FreeType font engine, the test programs,
1006
+ documentation and makefiles, at the very least.
1007
+
1008
+ This license was inspired by the BSD, Artistic, and IJG
1009
+ (Independent JPEG Group) licenses, which all encourage inclusion
1010
+ and use of free software in commercial and freeware products
1011
+ alike. As a consequence, its main points are that:
1012
+
1013
+ o We don't promise that this software works. However, we will be
1014
+ interested in any kind of bug reports. (`as is' distribution)
1015
+
1016
+ o You can use this software for whatever you want, in parts or
1017
+ full form, without having to pay us. (`royalty-free' usage)
1018
+
1019
+ o You may not pretend that you wrote this software. If you use
1020
+ it, or only parts of it, in a program, you must acknowledge
1021
+ somewhere in your documentation that you have used the
1022
+ FreeType code. (`credits')
1023
+
1024
+ We specifically permit and encourage the inclusion of this
1025
+ software, with or without modifications, in commercial products.
1026
+ We disclaim all warranties covering The FreeType Project and
1027
+ assume no liability related to The FreeType Project.
1028
+
1029
+
1030
+ Finally, many people asked us for a preferred form for a
1031
+ credit/disclaimer to use in compliance with this license. We thus
1032
+ encourage you to use the following text:
1033
+
1034
+ """
1035
+ Portions of this software are copyright © <year> The FreeType
1036
+ Project (https://freetype.org). All rights reserved.
1037
+ """
1038
+
1039
+ Please replace <year> with the value from the FreeType version you
1040
+ actually use.
1041
+
1042
+
1043
+ Legal Terms
1044
+ ===========
1045
+
1046
+ 0. Definitions
1047
+ --------------
1048
+
1049
+ Throughout this license, the terms `package', `FreeType Project',
1050
+ and `FreeType archive' refer to the set of files originally
1051
+ distributed by the authors (David Turner, Robert Wilhelm, and
1052
+ Werner Lemberg) as the `FreeType Project', be they named as alpha,
1053
+ beta or final release.
1054
+
1055
+ `You' refers to the licensee, or person using the project, where
1056
+ `using' is a generic term including compiling the project's source
1057
+ code as well as linking it to form a `program' or `executable'.
1058
+ This program is referred to as `a program using the FreeType
1059
+ engine'.
1060
+
1061
+ This license applies to all files distributed in the original
1062
+ FreeType Project, including all source code, binaries and
1063
+ documentation, unless otherwise stated in the file in its
1064
+ original, unmodified form as distributed in the original archive.
1065
+ If you are unsure whether or not a particular file is covered by
1066
+ this license, you must contact us to verify this.
1067
+
1068
+ The FreeType Project is copyright (C) 1996-2000 by David Turner,
1069
+ Robert Wilhelm, and Werner Lemberg. All rights reserved except as
1070
+ specified below.
1071
+
1072
+ 1. No Warranty
1073
+ --------------
1074
+
1075
+ THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY
1076
+ KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
1077
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
1078
+ PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS
1079
+ BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO
1080
+ USE, OF THE FREETYPE PROJECT.
1081
+
1082
+ 2. Redistribution
1083
+ -----------------
1084
+
1085
+ This license grants a worldwide, royalty-free, perpetual and
1086
+ irrevocable right and license to use, execute, perform, compile,
1087
+ display, copy, create derivative works of, distribute and
1088
+ sublicense the FreeType Project (in both source and object code
1089
+ forms) and derivative works thereof for any purpose; and to
1090
+ authorize others to exercise some or all of the rights granted
1091
+ herein, subject to the following conditions:
1092
+
1093
+ o Redistribution of source code must retain this license file
1094
+ (`FTL.TXT') unaltered; any additions, deletions or changes to
1095
+ the original files must be clearly indicated in accompanying
1096
+ documentation. The copyright notices of the unaltered,
1097
+ original files must be preserved in all copies of source
1098
+ files.
1099
+
1100
+ o Redistribution in binary form must provide a disclaimer that
1101
+ states that the software is based in part of the work of the
1102
+ FreeType Team, in the distribution documentation. We also
1103
+ encourage you to put an URL to the FreeType web page in your
1104
+ documentation, though this isn't mandatory.
1105
+
1106
+ These conditions apply to any software derived from or based on
1107
+ the FreeType Project, not just the unmodified files. If you use
1108
+ our work, you must acknowledge us. However, no fee need be paid
1109
+ to us.
1110
+
1111
+ 3. Advertising
1112
+ --------------
1113
+
1114
+ Neither the FreeType authors and contributors nor you shall use
1115
+ the name of the other for commercial, advertising, or promotional
1116
+ purposes without specific prior written permission.
1117
+
1118
+ We suggest, but do not require, that you use one or more of the
1119
+ following phrases to refer to this software in your documentation
1120
+ or advertising materials: `FreeType Project', `FreeType Engine',
1121
+ `FreeType library', or `FreeType Distribution'.
1122
+
1123
+ As you have not signed this license, you are not required to
1124
+ accept it. However, as the FreeType Project is copyrighted
1125
+ material, only this license, or another one contracted with the
1126
+ authors, grants you the right to use, distribute, and modify it.
1127
+ Therefore, by using, distributing, or modifying the FreeType
1128
+ Project, you indicate that you understand and accept all the terms
1129
+ of this license.
1130
+
1131
+ 4. Contacts
1132
+ -----------
1133
+
1134
+ There are two mailing lists related to FreeType:
1135
+
1136
+ o freetype@nongnu.org
1137
+
1138
+ Discusses general use and applications of FreeType, as well as
1139
+ future and wanted additions to the library and distribution.
1140
+ If you are looking for support, start in this list if you
1141
+ haven't found anything to help you in the documentation.
1142
+
1143
+ o freetype-devel@nongnu.org
1144
+
1145
+ Discusses bugs, as well as engine internals, design issues,
1146
+ specific licenses, porting, etc.
1147
+
1148
+ Our home page can be found at
1149
+
1150
+ https://freetype.org
1151
+
1152
+
1153
+ --- end of FTL.TXT ---
1154
+
1155
+
1156
+ Additional Notice for Bundled stb_image WebAssembly
1157
+ --------------------------------------------------------------------
1158
+ stb_image 2.26
1159
+ Copyright (c) 2017 Sean Barrett
1160
+
1161
+ This distribution elects Alternative A, the MIT License, from the
1162
+ dual-license options offered by stb_image.
1163
+
1164
+ Terms of the MIT License:
1165
+ --------------------------------------------------------------------
1166
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
1167
+ this software and associated documentation files (the "Software"), to deal in
1168
+ the Software without restriction, including without limitation the rights to
1169
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
1170
+ of the Software, and to permit persons to whom the Software is furnished to do
1171
+ so, subject to the following conditions:
1172
+
1173
+ The above copyright notice and this permission notice shall be included in all
1174
+ copies or substantial portions of the Software.
1175
+
1176
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1177
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1178
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1179
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1180
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1181
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1182
+ SOFTWARE.