LICENSE 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482
  1. Dart Sass license:
  2. Copyright (c) 2016, Google Inc.
  3. Permission is hereby granted, free of charge, to any person obtaining
  4. a copy of this software and associated documentation files (the
  5. "Software"), to deal in the Software without restriction, including
  6. without limitation the rights to use, copy, modify, merge, publish,
  7. distribute, sublicense, and/or sell copies of the Software, and to
  8. permit persons to whom the Software is furnished to do so, subject to
  9. the following conditions:
  10. The above copyright notice and this permission notice shall be
  11. included in all copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  13. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  14. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  15. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  16. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  17. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  18. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  19. --------------------------------------------------------------------------------
  20. Dart SDK license:
  21. Copyright 2012, the Dart project authors.
  22. Redistribution and use in source and binary forms, with or without
  23. modification, are permitted provided that the following conditions are
  24. met:
  25. * Redistributions of source code must retain the above copyright
  26. notice, this list of conditions and the following disclaimer.
  27. * Redistributions in binary form must reproduce the above
  28. copyright notice, this list of conditions and the following
  29. disclaimer in the documentation and/or other materials provided
  30. with the distribution.
  31. * Neither the name of Google Inc. nor the names of its
  32. contributors may be used to endorse or promote products derived
  33. from this software without specific prior written permission.
  34. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  35. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  36. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  37. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  38. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  39. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  40. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  41. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  42. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  43. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  44. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  45. --------------------------------------------------------------------------------
  46. _fe_analyzer_shared license:
  47. Copyright 2019, the Dart project authors.
  48. Redistribution and use in source and binary forms, with or without
  49. modification, are permitted provided that the following conditions are
  50. met:
  51. * Redistributions of source code must retain the above copyright
  52. notice, this list of conditions and the following disclaimer.
  53. * Redistributions in binary form must reproduce the above
  54. copyright notice, this list of conditions and the following
  55. disclaimer in the documentation and/or other materials provided
  56. with the distribution.
  57. * Neither the name of Google LLC nor the names of its
  58. contributors may be used to endorse or promote products derived
  59. from this software without specific prior written permission.
  60. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  61. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  62. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  63. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  64. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  65. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  66. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  67. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  68. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  69. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  70. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  71. --------------------------------------------------------------------------------
  72. analyzer license:
  73. Copyright 2013, the Dart project authors.
  74. Redistribution and use in source and binary forms, with or without
  75. modification, are permitted provided that the following conditions are
  76. met:
  77. * Redistributions of source code must retain the above copyright
  78. notice, this list of conditions and the following disclaimer.
  79. * Redistributions in binary form must reproduce the above
  80. copyright notice, this list of conditions and the following
  81. disclaimer in the documentation and/or other materials provided
  82. with the distribution.
  83. * Neither the name of Google LLC nor the names of its
  84. contributors may be used to endorse or promote products derived
  85. from this software without specific prior written permission.
  86. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  87. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  88. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  89. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  90. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  91. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  92. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  93. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  94. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  95. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  96. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  97. --------------------------------------------------------------------------------
  98. archive license:
  99. Copyright 2013 Brendan Duncan
  100. Licensed under the Apache License, Version 2.0 (the "License");
  101. you may not use this file except in compliance with the License.
  102. You may obtain a copy of the License at
  103. http://www.apache.org/licenses/LICENSE-2.0
  104. Unless required by applicable law or agreed to in writing, software
  105. distributed under the License is distributed on an "AS IS" BASIS,
  106. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  107. See the License for the specific language governing permissions and
  108. limitations under the License.
  109. Some code has been derived from the following projects:
  110. zlib/inflate:
  111. JavaScript Zlib Library, https://github.com/imaya/zlib.js
  112. The MIT License
  113. Copyright (c) 2012 imaya
  114. zlib/deflate:
  115. Java JZLib Library, http://www.jcraft.com/jzlib/
  116. Copyright (c) 2000-2011 ymnk, JCraft,Inc. All rights reserved.
  117. Redistribution and use in source and binary forms, with or without
  118. modification, are permitted provided that the following conditions are met:
  119. 1. Redistributions of source code must retain the above copyright notice,
  120. this list of conditions and the following disclaimer.
  121. 2. Redistributions in binary form must reproduce the above copyright
  122. notice, this list of conditions and the following disclaimer in
  123. the documentation and/or other materials provided with the distribution.
  124. 3. The names of the authors may not be used to endorse or promote products
  125. derived from this software without specific prior written permission.
  126. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
  127. INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  128. FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,
  129. INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,
  130. INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  131. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
  132. OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  133. LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  134. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
  135. EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  136. bzip2:
  137. This program, "bzip2", the associated library "libbzip2", and all
  138. documentation, are copyright (C) 1996-2010 Julian R Seward. All
  139. rights reserved.
  140. Redistribution and use in source and binary forms, with or without
  141. modification, are permitted provided that the following conditions
  142. are met:
  143. 1. Redistributions of source code must retain the above copyright
  144. notice, this list of conditions and the following disclaimer.
  145. 2. The origin of this software must not be misrepresented; you must
  146. not claim that you wrote the original software. If you use this
  147. software in a product, an acknowledgment in the product
  148. documentation would be appreciated but is not required.
  149. 3. Altered source versions must be plainly marked as such, and must
  150. not be misrepresented as being the original software.
  151. 4. The name of the author may not be used to endorse or promote
  152. products derived from this software without specific prior written
  153. permission.
  154. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
  155. OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  156. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  157. ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  158. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  159. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  160. GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  161. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  162. WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  163. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  164. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  165. Julian Seward, jseward@bzip.org
  166. bzip2/libbzip2 version 1.0.6 of 6 September 2010
  167. --------------------------------------------------------------------------------
  168. args license:
  169. Copyright 2013, the Dart project authors.
  170. Redistribution and use in source and binary forms, with or without
  171. modification, are permitted provided that the following conditions are
  172. met:
  173. * Redistributions of source code must retain the above copyright
  174. notice, this list of conditions and the following disclaimer.
  175. * Redistributions in binary form must reproduce the above
  176. copyright notice, this list of conditions and the following
  177. disclaimer in the documentation and/or other materials provided
  178. with the distribution.
  179. * Neither the name of Google LLC nor the names of its
  180. contributors may be used to endorse or promote products derived
  181. from this software without specific prior written permission.
  182. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  183. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  184. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  185. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  186. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  187. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  188. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  189. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  190. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  191. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  192. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  193. --------------------------------------------------------------------------------
  194. async, cli_util and shelf_static license:
  195. Copyright 2015, the Dart project authors.
  196. Redistribution and use in source and binary forms, with or without
  197. modification, are permitted provided that the following conditions are
  198. met:
  199. * Redistributions of source code must retain the above copyright
  200. notice, this list of conditions and the following disclaimer.
  201. * Redistributions in binary form must reproduce the above
  202. copyright notice, this list of conditions and the following
  203. disclaimer in the documentation and/or other materials provided
  204. with the distribution.
  205. * Neither the name of Google LLC nor the names of its
  206. contributors may be used to endorse or promote products derived
  207. from this software without specific prior written permission.
  208. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  209. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  210. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  211. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  212. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  213. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  214. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  215. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  216. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  217. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  218. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  219. --------------------------------------------------------------------------------
  220. boolean_selector, shelf_packages_handler and test_descriptor license:
  221. Copyright 2016, the Dart project authors. All rights reserved.
  222. Redistribution and use in source and binary forms, with or without
  223. modification, are permitted provided that the following conditions are
  224. met:
  225. * Redistributions of source code must retain the above copyright
  226. notice, this list of conditions and the following disclaimer.
  227. * Redistributions in binary form must reproduce the above
  228. copyright notice, this list of conditions and the following
  229. disclaimer in the documentation and/or other materials provided
  230. with the distribution.
  231. * Neither the name of Google Inc. nor the names of its
  232. contributors may be used to endorse or promote products derived
  233. from this software without specific prior written permission.
  234. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  235. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  236. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  237. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  238. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  239. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  240. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  241. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  242. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  243. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  244. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  245. --------------------------------------------------------------------------------
  246. charcode, glob, http_parser, matcher, path, pool, pub_semver, shelf_web_socket,
  247. source_maps, source_span, stack_trace, string_scanner, watcher and yaml license:
  248. Copyright 2014, the Dart project authors. All rights reserved.
  249. Redistribution and use in source and binary forms, with or without
  250. modification, are permitted provided that the following conditions are
  251. met:
  252. * Redistributions of source code must retain the above copyright
  253. notice, this list of conditions and the following disclaimer.
  254. * Redistributions in binary form must reproduce the above
  255. copyright notice, this list of conditions and the following
  256. disclaimer in the documentation and/or other materials provided
  257. with the distribution.
  258. * Neither the name of Google Inc. nor the names of its
  259. contributors may be used to endorse or promote products derived
  260. from this software without specific prior written permission.
  261. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  262. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  263. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  264. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  265. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  266. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  267. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  268. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  269. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  270. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  271. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  272. --------------------------------------------------------------------------------
  273. checked_yaml and package_config license:
  274. Copyright 2019, the Dart project authors. All rights reserved.
  275. Redistribution and use in source and binary forms, with or without
  276. modification, are permitted provided that the following conditions are
  277. met:
  278. * Redistributions of source code must retain the above copyright
  279. notice, this list of conditions and the following disclaimer.
  280. * Redistributions in binary form must reproduce the above
  281. copyright notice, this list of conditions and the following
  282. disclaimer in the documentation and/or other materials provided
  283. with the distribution.
  284. * Neither the name of Google Inc. nor the names of its
  285. contributors may be used to endorse or promote products derived
  286. from this software without specific prior written permission.
  287. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  288. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  289. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  290. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  291. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  292. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  293. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  294. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  295. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  296. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  297. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  298. --------------------------------------------------------------------------------
  299. cli_pkg license:
  300. Apache License
  301. Version 2.0, January 2004
  302. http://www.apache.org/licenses/
  303. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  304. 1. Definitions.
  305. "License" shall mean the terms and conditions for use, reproduction,
  306. and distribution as defined by Sections 1 through 9 of this document.
  307. "Licensor" shall mean the copyright owner or entity authorized by
  308. the copyright owner that is granting the License.
  309. "Legal Entity" shall mean the union of the acting entity and all
  310. other entities that control, are controlled by, or are under common
  311. control with that entity. For the purposes of this definition,
  312. "control" means (i) the power, direct or indirect, to cause the
  313. direction or management of such entity, whether by contract or
  314. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  315. outstanding shares, or (iii) beneficial ownership of such entity.
  316. "You" (or "Your") shall mean an individual or Legal Entity
  317. exercising permissions granted by this License.
  318. "Source" form shall mean the preferred form for making modifications,
  319. including but not limited to software source code, documentation
  320. source, and configuration files.
  321. "Object" form shall mean any form resulting from mechanical
  322. transformation or translation of a Source form, including but
  323. not limited to compiled object code, generated documentation,
  324. and conversions to other media types.
  325. "Work" shall mean the work of authorship, whether in Source or
  326. Object form, made available under the License, as indicated by a
  327. copyright notice that is included in or attached to the work
  328. (an example is provided in the Appendix below).
  329. "Derivative Works" shall mean any work, whether in Source or Object
  330. form, that is based on (or derived from) the Work and for which the
  331. editorial revisions, annotations, elaborations, or other modifications
  332. represent, as a whole, an original work of authorship. For the purposes
  333. of this License, Derivative Works shall not include works that remain
  334. separable from, or merely link (or bind by name) to the interfaces of,
  335. the Work and Derivative Works thereof.
  336. "Contribution" shall mean any work of authorship, including
  337. the original version of the Work and any modifications or additions
  338. to that Work or Derivative Works thereof, that is intentionally
  339. submitted to Licensor for inclusion in the Work by the copyright owner
  340. or by an individual or Legal Entity authorized to submit on behalf of
  341. the copyright owner. For the purposes of this definition, "submitted"
  342. means any form of electronic, verbal, or written communication sent
  343. to the Licensor or its representatives, including but not limited to
  344. communication on electronic mailing lists, source code control systems,
  345. and issue tracking systems that are managed by, or on behalf of, the
  346. Licensor for the purpose of discussing and improving the Work, but
  347. excluding communication that is conspicuously marked or otherwise
  348. designated in writing by the copyright owner as "Not a Contribution."
  349. "Contributor" shall mean Licensor and any individual or Legal Entity
  350. on behalf of whom a Contribution has been received by Licensor and
  351. subsequently incorporated within the Work.
  352. 2. Grant of Copyright License. Subject to the terms and conditions of
  353. this License, each Contributor hereby grants to You a perpetual,
  354. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  355. copyright license to reproduce, prepare Derivative Works of,
  356. publicly display, publicly perform, sublicense, and distribute the
  357. Work and such Derivative Works in Source or Object form.
  358. 3. Grant of Patent License. Subject to the terms and conditions of
  359. this License, each Contributor hereby grants to You a perpetual,
  360. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  361. (except as stated in this section) patent license to make, have made,
  362. use, offer to sell, sell, import, and otherwise transfer the Work,
  363. where such license applies only to those patent claims licensable
  364. by such Contributor that are necessarily infringed by their
  365. Contribution(s) alone or by combination of their Contribution(s)
  366. with the Work to which such Contribution(s) was submitted. If You
  367. institute patent litigation against any entity (including a
  368. cross-claim or counterclaim in a lawsuit) alleging that the Work
  369. or a Contribution incorporated within the Work constitutes direct
  370. or contributory patent infringement, then any patent licenses
  371. granted to You under this License for that Work shall terminate
  372. as of the date such litigation is filed.
  373. 4. Redistribution. You may reproduce and distribute copies of the
  374. Work or Derivative Works thereof in any medium, with or without
  375. modifications, and in Source or Object form, provided that You
  376. meet the following conditions:
  377. (a) You must give any other recipients of the Work or
  378. Derivative Works a copy of this License; and
  379. (b) You must cause any modified files to carry prominent notices
  380. stating that You changed the files; and
  381. (c) You must retain, in the Source form of any Derivative Works
  382. that You distribute, all copyright, patent, trademark, and
  383. attribution notices from the Source form of the Work,
  384. excluding those notices that do not pertain to any part of
  385. the Derivative Works; and
  386. (d) If the Work includes a "NOTICE" text file as part of its
  387. distribution, then any Derivative Works that You distribute must
  388. include a readable copy of the attribution notices contained
  389. within such NOTICE file, excluding those notices that do not
  390. pertain to any part of the Derivative Works, in at least one
  391. of the following places: within a NOTICE text file distributed
  392. as part of the Derivative Works; within the Source form or
  393. documentation, if provided along with the Derivative Works; or,
  394. within a display generated by the Derivative Works, if and
  395. wherever such third-party notices normally appear. The contents
  396. of the NOTICE file are for informational purposes only and
  397. do not modify the License. You may add Your own attribution
  398. notices within Derivative Works that You distribute, alongside
  399. or as an addendum to the NOTICE text from the Work, provided
  400. that such additional attribution notices cannot be construed
  401. as modifying the License.
  402. You may add Your own copyright statement to Your modifications and
  403. may provide additional or different license terms and conditions
  404. for use, reproduction, or distribution of Your modifications, or
  405. for any such Derivative Works as a whole, provided Your use,
  406. reproduction, and distribution of the Work otherwise complies with
  407. the conditions stated in this License.
  408. 5. Submission of Contributions. Unless You explicitly state otherwise,
  409. any Contribution intentionally submitted for inclusion in the Work
  410. by You to the Licensor shall be under the terms and conditions of
  411. this License, without any additional terms or conditions.
  412. Notwithstanding the above, nothing herein shall supersede or modify
  413. the terms of any separate license agreement you may have executed
  414. with Licensor regarding such Contributions.
  415. 6. Trademarks. This License does not grant permission to use the trade
  416. names, trademarks, service marks, or product names of the Licensor,
  417. except as required for reasonable and customary use in describing the
  418. origin of the Work and reproducing the content of the NOTICE file.
  419. 7. Disclaimer of Warranty. Unless required by applicable law or
  420. agreed to in writing, Licensor provides the Work (and each
  421. Contributor provides its Contributions) on an "AS IS" BASIS,
  422. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  423. implied, including, without limitation, any warranties or conditions
  424. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  425. PARTICULAR PURPOSE. You are solely responsible for determining the
  426. appropriateness of using or redistributing the Work and assume any
  427. risks associated with Your exercise of permissions under this License.
  428. 8. Limitation of Liability. In no event and under no legal theory,
  429. whether in tort (including negligence), contract, or otherwise,
  430. unless required by applicable law (such as deliberate and grossly
  431. negligent acts) or agreed to in writing, shall any Contributor be
  432. liable to You for damages, including any direct, indirect, special,
  433. incidental, or consequential damages of any character arising as a
  434. result of this License or out of the use or inability to use the
  435. Work (including but not limited to damages for loss of goodwill,
  436. work stoppage, computer failure or malfunction, or any and all
  437. other commercial damages or losses), even if such Contributor
  438. has been advised of the possibility of such damages.
  439. 9. Accepting Warranty or Additional Liability. While redistributing
  440. the Work or Derivative Works thereof, You may choose to offer,
  441. and charge a fee for, acceptance of support, warranty, indemnity,
  442. or other liability obligations and/or rights consistent with this
  443. License. However, in accepting such obligations, You may act only
  444. on Your own behalf and on Your sole responsibility, not on behalf
  445. of any other Contributor, and only if You agree to indemnify,
  446. defend, and hold each Contributor harmless for any liability
  447. incurred by, or claims asserted against, such Contributor by reason
  448. of your accepting any such warranty or additional liability.
  449. END OF TERMS AND CONDITIONS
  450. APPENDIX: How to apply the Apache License to your work.
  451. To apply the Apache License to your work, attach the following
  452. boilerplate notice, with the fields enclosed by brackets "[]"
  453. replaced with your own identifying information. (Don't include
  454. the brackets!) The text should be enclosed in the appropriate
  455. comment syntax for the file format. We also recommend that a
  456. file or class name and description of purpose be included on the
  457. same "printed page" as the copyright notice for easier
  458. identification within third-party archives.
  459. Copyright [yyyy] [name of copyright owner]
  460. Licensed under the Apache License, Version 2.0 (the "License");
  461. you may not use this file except in compliance with the License.
  462. You may obtain a copy of the License at
  463. http://www.apache.org/licenses/LICENSE-2.0
  464. Unless required by applicable law or agreed to in writing, software
  465. distributed under the License is distributed on an "AS IS" BASIS,
  466. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  467. See the License for the specific language governing permissions and
  468. limitations under the License.
  469. --------------------------------------------------------------------------------
  470. cli_repl license:
  471. Copyright (c) 2018, Jennifer Thakar.
  472. All rights reserved.
  473. Redistribution and use in source and binary forms, with or without
  474. modification, are permitted provided that the following conditions are met:
  475. * Redistributions of source code must retain the above copyright
  476. notice, this list of conditions and the following disclaimer.
  477. * Redistributions in binary form must reproduce the above copyright
  478. notice, this list of conditions and the following disclaimer in the
  479. documentation and/or other materials provided with the distribution.
  480. * Neither the name of the project nor the names of its contributors may be
  481. used to endorse or promote products derived from this software without
  482. specific prior written permission.
  483. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  484. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  485. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  486. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
  487. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  488. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  489. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  490. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  491. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  492. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  493. --------------------------------------------------------------------------------
  494. collection, mime, source_map_stack_trace, stream_channel and typed_data license:
  495. Copyright 2015, the Dart project authors. All rights reserved.
  496. Redistribution and use in source and binary forms, with or without
  497. modification, are permitted provided that the following conditions are
  498. met:
  499. * Redistributions of source code must retain the above copyright
  500. notice, this list of conditions and the following disclaimer.
  501. * Redistributions in binary form must reproduce the above
  502. copyright notice, this list of conditions and the following
  503. disclaimer in the documentation and/or other materials provided
  504. with the distribution.
  505. * Neither the name of Google Inc. nor the names of its
  506. contributors may be used to endorse or promote products derived
  507. from this software without specific prior written permission.
  508. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  509. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  510. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  511. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  512. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  513. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  514. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  515. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  516. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  517. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  518. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  519. --------------------------------------------------------------------------------
  520. convert, crypto and vm_service license:
  521. Copyright 2015, the Dart project authors.
  522. Redistribution and use in source and binary forms, with or without
  523. modification, are permitted provided that the following conditions are
  524. met:
  525. * Redistributions of source code must retain the above copyright
  526. notice, this list of conditions and the following disclaimer.
  527. * Redistributions in binary form must reproduce the above
  528. copyright notice, this list of conditions and the following
  529. disclaimer in the documentation and/or other materials provided
  530. with the distribution.
  531. * Neither the name of Google LLC nor the names of its
  532. contributors may be used to endorse or promote products derived
  533. from this software without specific prior written permission.
  534. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  535. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  536. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  537. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  538. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  539. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  540. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  541. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  542. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  543. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  544. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  545. --------------------------------------------------------------------------------
  546. coverage and quiver license:
  547. Apache License
  548. Version 2.0, January 2004
  549. http://www.apache.org/licenses/
  550. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  551. 1. Definitions.
  552. "License" shall mean the terms and conditions for use, reproduction,
  553. and distribution as defined by Sections 1 through 9 of this document.
  554. "Licensor" shall mean the copyright owner or entity authorized by
  555. the copyright owner that is granting the License.
  556. "Legal Entity" shall mean the union of the acting entity and all
  557. other entities that control, are controlled by, or are under common
  558. control with that entity. For the purposes of this definition,
  559. "control" means (i) the power, direct or indirect, to cause the
  560. direction or management of such entity, whether by contract or
  561. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  562. outstanding shares, or (iii) beneficial ownership of such entity.
  563. "You" (or "Your") shall mean an individual or Legal Entity
  564. exercising permissions granted by this License.
  565. "Source" form shall mean the preferred form for making modifications,
  566. including but not limited to software source code, documentation
  567. source, and configuration files.
  568. "Object" form shall mean any form resulting from mechanical
  569. transformation or translation of a Source form, including but
  570. not limited to compiled object code, generated documentation,
  571. and conversions to other media types.
  572. "Work" shall mean the work of authorship, whether in Source or
  573. Object form, made available under the License, as indicated by a
  574. copyright notice that is included in or attached to the work
  575. (an example is provided in the Appendix below).
  576. "Derivative Works" shall mean any work, whether in Source or Object
  577. form, that is based on (or derived from) the Work and for which the
  578. editorial revisions, annotations, elaborations, or other modifications
  579. represent, as a whole, an original work of authorship. For the purposes
  580. of this License, Derivative Works shall not include works that remain
  581. separable from, or merely link (or bind by name) to the interfaces of,
  582. the Work and Derivative Works thereof.
  583. "Contribution" shall mean any work of authorship, including
  584. the original version of the Work and any modifications or additions
  585. to that Work or Derivative Works thereof, that is intentionally
  586. submitted to Licensor for inclusion in the Work by the copyright owner
  587. or by an individual or Legal Entity authorized to submit on behalf of
  588. the copyright owner. For the purposes of this definition, "submitted"
  589. means any form of electronic, verbal, or written communication sent
  590. to the Licensor or its representatives, including but not limited to
  591. communication on electronic mailing lists, source code control systems,
  592. and issue tracking systems that are managed by, or on behalf of, the
  593. Licensor for the purpose of discussing and improving the Work, but
  594. excluding communication that is conspicuously marked or otherwise
  595. designated in writing by the copyright owner as "Not a Contribution."
  596. "Contributor" shall mean Licensor and any individual or Legal Entity
  597. on behalf of whom a Contribution has been received by Licensor and
  598. subsequently incorporated within the Work.
  599. 2. Grant of Copyright License. Subject to the terms and conditions of
  600. this License, each Contributor hereby grants to You a perpetual,
  601. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  602. copyright license to reproduce, prepare Derivative Works of,
  603. publicly display, publicly perform, sublicense, and distribute the
  604. Work and such Derivative Works in Source or Object form.
  605. 3. Grant of Patent License. Subject to the terms and conditions of
  606. this License, each Contributor hereby grants to You a perpetual,
  607. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  608. (except as stated in this section) patent license to make, have made,
  609. use, offer to sell, sell, import, and otherwise transfer the Work,
  610. where such license applies only to those patent claims licensable
  611. by such Contributor that are necessarily infringed by their
  612. Contribution(s) alone or by combination of their Contribution(s)
  613. with the Work to which such Contribution(s) was submitted. If You
  614. institute patent litigation against any entity (including a
  615. cross-claim or counterclaim in a lawsuit) alleging that the Work
  616. or a Contribution incorporated within the Work constitutes direct
  617. or contributory patent infringement, then any patent licenses
  618. granted to You under this License for that Work shall terminate
  619. as of the date such litigation is filed.
  620. 4. Redistribution. You may reproduce and distribute copies of the
  621. Work or Derivative Works thereof in any medium, with or without
  622. modifications, and in Source or Object form, provided that You
  623. meet the following conditions:
  624. (a) You must give any other recipients of the Work or
  625. Derivative Works a copy of this License; and
  626. (b) You must cause any modified files to carry prominent notices
  627. stating that You changed the files; and
  628. (c) You must retain, in the Source form of any Derivative Works
  629. that You distribute, all copyright, patent, trademark, and
  630. attribution notices from the Source form of the Work,
  631. excluding those notices that do not pertain to any part of
  632. the Derivative Works; and
  633. (d) If the Work includes a "NOTICE" text file as part of its
  634. distribution, then any Derivative Works that You distribute must
  635. include a readable copy of the attribution notices contained
  636. within such NOTICE file, excluding those notices that do not
  637. pertain to any part of the Derivative Works, in at least one
  638. of the following places: within a NOTICE text file distributed
  639. as part of the Derivative Works; within the Source form or
  640. documentation, if provided along with the Derivative Works; or,
  641. within a display generated by the Derivative Works, if and
  642. wherever such third-party notices normally appear. The contents
  643. of the NOTICE file are for informational purposes only and
  644. do not modify the License. You may add Your own attribution
  645. notices within Derivative Works that You distribute, alongside
  646. or as an addendum to the NOTICE text from the Work, provided
  647. that such additional attribution notices cannot be construed
  648. as modifying the License.
  649. You may add Your own copyright statement to Your modifications and
  650. may provide additional or different license terms and conditions
  651. for use, reproduction, or distribution of Your modifications, or
  652. for any such Derivative Works as a whole, provided Your use,
  653. reproduction, and distribution of the Work otherwise complies with
  654. the conditions stated in this License.
  655. 5. Submission of Contributions. Unless You explicitly state otherwise,
  656. any Contribution intentionally submitted for inclusion in the Work
  657. by You to the Licensor shall be under the terms and conditions of
  658. this License, without any additional terms or conditions.
  659. Notwithstanding the above, nothing herein shall supersede or modify
  660. the terms of any separate license agreement you may have executed
  661. with Licensor regarding such Contributions.
  662. 6. Trademarks. This License does not grant permission to use the trade
  663. names, trademarks, service marks, or product names of the Licensor,
  664. except as required for reasonable and customary use in describing the
  665. origin of the Work and reproducing the content of the NOTICE file.
  666. 7. Disclaimer of Warranty. Unless required by applicable law or
  667. agreed to in writing, Licensor provides the Work (and each
  668. Contributor provides its Contributions) on an "AS IS" BASIS,
  669. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  670. implied, including, without limitation, any warranties or conditions
  671. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  672. PARTICULAR PURPOSE. You are solely responsible for determining the
  673. appropriateness of using or redistributing the Work and assume any
  674. risks associated with Your exercise of permissions under this License.
  675. 8. Limitation of Liability. In no event and under no legal theory,
  676. whether in tort (including negligence), contract, or otherwise,
  677. unless required by applicable law (such as deliberate and grossly
  678. negligent acts) or agreed to in writing, shall any Contributor be
  679. liable to You for damages, including any direct, indirect, special,
  680. incidental, or consequential damages of any character arising as a
  681. result of this License or out of the use or inability to use the
  682. Work (including but not limited to damages for loss of goodwill,
  683. work stoppage, computer failure or malfunction, or any and all
  684. other commercial damages or losses), even if such Contributor
  685. has been advised of the possibility of such damages.
  686. 9. Accepting Warranty or Additional Liability. While redistributing
  687. the Work or Derivative Works thereof, You may choose to offer,
  688. and charge a fee for, acceptance of support, warranty, indemnity,
  689. or other liability obligations and/or rights consistent with this
  690. License. However, in accepting such obligations, You may act only
  691. on Your own behalf and on Your sole responsibility, not on behalf
  692. of any other Contributor, and only if You agree to indemnify,
  693. defend, and hold each Contributor harmless for any liability
  694. incurred by, or claims asserted against, such Contributor by reason
  695. of your accepting any such warranty or additional liability.
  696. END OF TERMS AND CONDITIONS
  697. APPENDIX: How to apply the Apache License to your work.
  698. To apply the Apache License to your work, attach the following
  699. boilerplate notice, with the fields enclosed by brackets "[]"
  700. replaced with your own identifying information. (Don't include
  701. the brackets!) The text should be enclosed in the appropriate
  702. comment syntax for the file format. We also recommend that a
  703. file or class name and description of purpose be included on the
  704. same "printed page" as the copyright notice for easier
  705. identification within third-party archives.
  706. Copyright [yyyy] [name of copyright owner]
  707. Licensed under the Apache License, Version 2.0 (the "License");
  708. you may not use this file except in compliance with the License.
  709. You may obtain a copy of the License at
  710. http://www.apache.org/licenses/LICENSE-2.0
  711. Unless required by applicable law or agreed to in writing, software
  712. distributed under the License is distributed on an "AS IS" BASIS,
  713. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  714. See the License for the specific language governing permissions and
  715. limitations under the License.
  716. --------------------------------------------------------------------------------
  717. dart_style, http, shelf and test license:
  718. Copyright 2014, the Dart project authors.
  719. Redistribution and use in source and binary forms, with or without
  720. modification, are permitted provided that the following conditions are
  721. met:
  722. * Redistributions of source code must retain the above copyright
  723. notice, this list of conditions and the following disclaimer.
  724. * Redistributions in binary form must reproduce the above
  725. copyright notice, this list of conditions and the following
  726. disclaimer in the documentation and/or other materials provided
  727. with the distribution.
  728. * Neither the name of Google LLC nor the names of its
  729. contributors may be used to endorse or promote products derived
  730. from this software without specific prior written permission.
  731. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  732. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  733. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  734. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  735. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  736. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  737. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  738. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  739. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  740. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  741. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  742. --------------------------------------------------------------------------------
  743. file license:
  744. Copyright 2017, the Dart project authors. All rights reserved.
  745. Redistribution and use in source and binary forms, with or without
  746. modification, are permitted provided that the following conditions are
  747. met:
  748. * Redistributions of source code must retain the above copyright
  749. notice, this list of conditions and the following disclaimer.
  750. * Redistributions in binary form must reproduce the above
  751. copyright notice, this list of conditions and the following
  752. disclaimer in the documentation and/or other materials provided
  753. with the distribution.
  754. * Neither the name of Google Inc. nor the names of its
  755. contributors may be used to endorse or promote products derived
  756. from this software without specific prior written permission.
  757. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  758. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  759. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  760. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  761. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  762. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  763. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  764. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  765. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  766. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  767. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  768. --------------------------------------------------------------------------------
  769. frontend_server_client license:
  770. Copyright 2020, the Dart project authors.
  771. Redistribution and use in source and binary forms, with or without
  772. modification, are permitted provided that the following conditions are
  773. met:
  774. * Redistributions of source code must retain the above copyright
  775. notice, this list of conditions and the following disclaimer.
  776. * Redistributions in binary form must reproduce the above
  777. copyright notice, this list of conditions and the following
  778. disclaimer in the documentation and/or other materials provided
  779. with the distribution.
  780. * Neither the name of Google LLC nor the names of its
  781. contributors may be used to endorse or promote products derived
  782. from this software without specific prior written permission.
  783. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  784. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  785. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  786. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  787. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  788. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  789. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  790. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  791. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  792. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  793. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  794. --------------------------------------------------------------------------------
  795. grinder and webkit_inspection_protocol license:
  796. Copyright 2013, Google Inc.
  797. All rights reserved.
  798. Redistribution and use in source and binary forms, with or without
  799. modification, are permitted provided that the following conditions are
  800. met:
  801. * Redistributions of source code must retain the above copyright
  802. notice, this list of conditions and the following disclaimer.
  803. * Redistributions in binary form must reproduce the above
  804. copyright notice, this list of conditions and the following disclaimer
  805. in the documentation and/or other materials provided with the
  806. distribution.
  807. * Neither the name of Google Inc. nor the names of its
  808. contributors may be used to endorse or promote products derived from
  809. this software without specific prior written permission.
  810. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  811. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  812. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  813. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  814. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  815. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  816. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  817. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  818. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  819. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  820. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  821. --------------------------------------------------------------------------------
  822. http_multi_server license:
  823. Copyright 2014, the Dart project authors.
  824. Redistribution and use in source and binary forms, with or without
  825. modification, are permitted provided that the following conditions are
  826. met:
  827. * Redistributions of source code must retain the above copyright
  828. notice, this list of conditions and the following disclaimer.
  829. * Redistributions in binary form must reproduce the above
  830. copyright notice, this list of conditions and the following
  831. disclaimer in the documentation and/or other materials provided
  832. with the distribution.
  833. * Neither the name of Google LLC nor the names of its
  834. contributors may be used to endorse or promote products derived
  835. from this software without specific prior written permission.
  836. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  837. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  838. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  839. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  840. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  841. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  842. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  843. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  844. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  845. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  846. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  847. --------------------------------------------------------------------------------
  848. io license:
  849. Copyright 2017, the Dart project authors.
  850. Redistribution and use in source and binary forms, with or without
  851. modification, are permitted provided that the following conditions are
  852. met:
  853. * Redistributions of source code must retain the above copyright
  854. notice, this list of conditions and the following disclaimer.
  855. * Redistributions in binary form must reproduce the above
  856. copyright notice, this list of conditions and the following
  857. disclaimer in the documentation and/or other materials provided
  858. with the distribution.
  859. * Neither the name of Google LLC nor the names of its
  860. contributors may be used to endorse or promote products derived
  861. from this software without specific prior written permission.
  862. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  863. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  864. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  865. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  866. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  867. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  868. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  869. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  870. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  871. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  872. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  873. --------------------------------------------------------------------------------
  874. js license:
  875. Copyright 2012, the Dart project authors. All rights reserved.
  876. Redistribution and use in source and binary forms, with or without
  877. modification, are permitted provided that the following conditions are
  878. met:
  879. * Redistributions of source code must retain the above copyright
  880. notice, this list of conditions and the following disclaimer.
  881. * Redistributions in binary form must reproduce the above
  882. copyright notice, this list of conditions and the following
  883. disclaimer in the documentation and/or other materials provided
  884. with the distribution.
  885. * Neither the name of Google Inc. nor the names of its
  886. contributors may be used to endorse or promote products derived
  887. from this software without specific prior written permission.
  888. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  889. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  890. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  891. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  892. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  893. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  894. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  895. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  896. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  897. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  898. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  899. --------------------------------------------------------------------------------
  900. json_annotation, pedantic, stream_transform and term_glyph license:
  901. Copyright 2017, the Dart project authors. All rights reserved.
  902. Redistribution and use in source and binary forms, with or without
  903. modification, are permitted provided that the following conditions are
  904. met:
  905. * Redistributions of source code must retain the above copyright
  906. notice, this list of conditions and the following disclaimer.
  907. * Redistributions in binary form must reproduce the above
  908. copyright notice, this list of conditions and the following
  909. disclaimer in the documentation and/or other materials provided
  910. with the distribution.
  911. * Neither the name of Google Inc. nor the names of its
  912. contributors may be used to endorse or promote products derived
  913. from this software without specific prior written permission.
  914. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  915. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  916. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  917. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  918. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  919. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  920. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  921. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  922. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  923. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  924. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  925. --------------------------------------------------------------------------------
  926. logging license:
  927. Copyright 2013, the Dart project authors. All rights reserved.
  928. Redistribution and use in source and binary forms, with or without
  929. modification, are permitted provided that the following conditions are
  930. met:
  931. * Redistributions of source code must retain the above copyright
  932. notice, this list of conditions and the following disclaimer.
  933. * Redistributions in binary form must reproduce the above
  934. copyright notice, this list of conditions and the following
  935. disclaimer in the documentation and/or other materials provided
  936. with the distribution.
  937. * Neither the name of Google Inc. nor the names of its
  938. contributors may be used to endorse or promote products derived
  939. from this software without specific prior written permission.
  940. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  941. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  942. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  943. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  944. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  945. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  946. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  947. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  948. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  949. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  950. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  951. --------------------------------------------------------------------------------
  952. meta license:
  953. Copyright 2016, the Dart project authors.
  954. Redistribution and use in source and binary forms, with or without
  955. modification, are permitted provided that the following conditions are
  956. met:
  957. * Redistributions of source code must retain the above copyright
  958. notice, this list of conditions and the following disclaimer.
  959. * Redistributions in binary form must reproduce the above
  960. copyright notice, this list of conditions and the following
  961. disclaimer in the documentation and/or other materials provided
  962. with the distribution.
  963. * Neither the name of Google LLC nor the names of its
  964. contributors may be used to endorse or promote products derived
  965. from this software without specific prior written permission.
  966. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  967. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  968. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  969. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  970. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  971. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  972. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  973. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  974. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  975. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  976. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  977. --------------------------------------------------------------------------------
  978. node_interop license:
  979. Copyright (c) 2017, Anatoly Pulyaevskiy.
  980. All rights reserved.
  981. Redistribution and use in source and binary forms, with or without
  982. modification, are permitted provided that the following conditions are met:
  983. * Redistributions of source code must retain the above copyright
  984. notice, this list of conditions and the following disclaimer.
  985. * Redistributions in binary form must reproduce the above copyright
  986. notice, this list of conditions and the following disclaimer in the
  987. documentation and/or other materials provided with the distribution.
  988. * Neither the name of the <organization> nor the
  989. names of its contributors may be used to endorse or promote products
  990. derived from this software without specific prior written permission.
  991. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  992. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  993. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  994. DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
  995. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  996. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  997. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  998. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  999. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  1000. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1001. --------------------------------------------------------------------------------
  1002. node_preamble license:
  1003. The MIT License (MIT)
  1004. Copyright (c) 2015 Michael Bullington
  1005. Permission is hereby granted, free of charge, to any person obtaining a copy
  1006. of this software and associated documentation files (the "Software"), to deal
  1007. in the Software without restriction, including without limitation the rights
  1008. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1009. copies of the Software, and to permit persons to whom the Software is
  1010. furnished to do so, subject to the following conditions:
  1011. The above copyright notice and this permission notice shall be included in all
  1012. copies or substantial portions of the Software.
  1013. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1014. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1015. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1016. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1017. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1018. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1019. SOFTWARE.
  1020. ===
  1021. Copyright 2012, the Dart project authors. All rights reserved.
  1022. Redistribution and use in source and binary forms, with or without
  1023. modification, are permitted provided that the following conditions are
  1024. met:
  1025. * Redistributions of source code must retain the above copyright
  1026. notice, this list of conditions and the following disclaimer.
  1027. * Redistributions in binary form must reproduce the above
  1028. copyright notice, this list of conditions and the following
  1029. disclaimer in the documentation and/or other materials provided
  1030. with the distribution.
  1031. * Neither the name of Google Inc. nor the names of its
  1032. contributors may be used to endorse or promote products derived
  1033. from this software without specific prior written permission.
  1034. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1035. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1036. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  1037. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  1038. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  1039. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  1040. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  1041. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  1042. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1043. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1044. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1045. --------------------------------------------------------------------------------
  1046. petitparser and xml license:
  1047. The MIT License
  1048. Copyright (c) 2006-2021 Lukas Renggli.
  1049. All rights reserved.
  1050. Permission is hereby granted, free of charge, to any person obtaining a copy
  1051. of this software and associated documentation files (the "Software"), to deal
  1052. in the Software without restriction, including without limitation the rights
  1053. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1054. copies of the Software, and to permit persons to whom the Software is
  1055. furnished to do so, subject to the following conditions:
  1056. The above copyright notice and this permission notice shall be included in
  1057. all copies or substantial portions of the Software.
  1058. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1059. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1060. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1061. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1062. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1063. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  1064. THE SOFTWARE.
  1065. --------------------------------------------------------------------------------
  1066. pubspec_parse license:
  1067. Copyright 2018, the Dart project authors. All rights reserved.
  1068. Redistribution and use in source and binary forms, with or without
  1069. modification, are permitted provided that the following conditions are
  1070. met:
  1071. * Redistributions of source code must retain the above copyright
  1072. notice, this list of conditions and the following disclaimer.
  1073. * Redistributions in binary form must reproduce the above
  1074. copyright notice, this list of conditions and the following
  1075. disclaimer in the documentation and/or other materials provided
  1076. with the distribution.
  1077. * Neither the name of Google Inc. nor the names of its
  1078. contributors may be used to endorse or promote products derived
  1079. from this software without specific prior written permission.
  1080. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1081. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1082. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  1083. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  1084. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  1085. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  1086. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  1087. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  1088. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1089. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1090. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1091. --------------------------------------------------------------------------------
  1092. test_api and test_core license:
  1093. Copyright 2018, the Dart project authors.
  1094. Redistribution and use in source and binary forms, with or without
  1095. modification, are permitted provided that the following conditions are
  1096. met:
  1097. * Redistributions of source code must retain the above copyright
  1098. notice, this list of conditions and the following disclaimer.
  1099. * Redistributions in binary form must reproduce the above
  1100. copyright notice, this list of conditions and the following
  1101. disclaimer in the documentation and/or other materials provided
  1102. with the distribution.
  1103. * Neither the name of Google LLC nor the names of its
  1104. contributors may be used to endorse or promote products derived
  1105. from this software without specific prior written permission.
  1106. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1107. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1108. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  1109. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  1110. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  1111. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  1112. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  1113. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  1114. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1115. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1116. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1117. --------------------------------------------------------------------------------
  1118. test_process license:
  1119. Copyright 2017, the Dart project authors.
  1120. Redistribution and use in source and binary forms, with or without
  1121. modification, are permitted provided that the following conditions are
  1122. met:
  1123. * Redistributions of source code must retain the above copyright
  1124. notice, this list of conditions and the following disclaimer.
  1125. * Redistributions in binary form must reproduce the above
  1126. copyright notice, this list of conditions and the following
  1127. disclaimer in the documentation and/or other materials provided
  1128. with the distribution.
  1129. * Neither the name of Google LLC nor the names of its
  1130. contributors may be used to endorse or promote products derived
  1131. from this software without specific prior written permission.
  1132. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1133. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1134. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  1135. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  1136. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  1137. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  1138. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  1139. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  1140. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1141. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1142. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1143. --------------------------------------------------------------------------------
  1144. tuple license:
  1145. Copyright (c) 2014, the tuple project authors.
  1146. All rights reserved.
  1147. Redistribution and use in source and binary forms, with or without
  1148. modification, are permitted provided that the following conditions are met:
  1149. * Redistributions of source code must retain the above copyright
  1150. notice, this list of conditions and the following disclaimer.
  1151. * Redistributions in binary form must reproduce the above copyright
  1152. notice, this list of conditions and the following disclaimer in the
  1153. documentation and/or other materials provided with the distribution.
  1154. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  1155. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  1156. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  1157. DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
  1158. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  1159. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  1160. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  1161. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1162. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  1163. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1164. --------------------------------------------------------------------------------
  1165. web_socket_channel license:
  1166. Copyright 2016, the Dart project authors.
  1167. Redistribution and use in source and binary forms, with or without
  1168. modification, are permitted provided that the following conditions are
  1169. met:
  1170. * Redistributions of source code must retain the above copyright
  1171. notice, this list of conditions and the following disclaimer.
  1172. * Redistributions in binary form must reproduce the above
  1173. copyright notice, this list of conditions and the following
  1174. disclaimer in the documentation and/or other materials provided
  1175. with the distribution.
  1176. * Neither the name of Google LLC nor the names of its
  1177. contributors may be used to endorse or promote products derived
  1178. from this software without specific prior written permission.
  1179. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1180. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1181. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  1182. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  1183. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  1184. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  1185. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  1186. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  1187. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1188. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1189. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.