The unpac monorepo manager self-hosting as a monorepo using unpac

Relicense from BSD3 to ISC.

+90 -178
+1
vendor/opam/jsonm/CHANGES.md
··· 1 1 2 + - Relicensed from BSD3 to ISC. 2 3 - Fix `Jsonm.decode` not eventually returning `End on toplevel 3 4 decode error. 4 5 - Support for RFC 7195/ECMA-404. This means that any JSON value can
+13
vendor/opam/jsonm/LICENSE.md
··· 1 + Copyright (c) 2012 Daniel C. Bünzli 2 + 3 + Permission to use, copy, modify, and/or distribute this software for any 4 + purpose with or without fee is hereby granted, provided that the above 5 + copyright notice and this permission notice appear in all copies. 6 + 7 + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 10 + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 12 + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 13 + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+2 -2
vendor/opam/jsonm/opam
··· 6 6 dev-repo: "http://erratique.ch/repos/jsonm.git" 7 7 bug-reports: "https://github.com/dbuenzli/jsonm/issues" 8 8 tags: [ "json" "codec" "org:erratique" ] 9 - license: "BSD3" 9 + license: "ISC" 10 10 depends: [ "ocamlfind" "uutf" ] 11 11 available: [ ocaml-version >= "3.12.0"] 12 - build: 12 + build: 13 13 [ 14 14 [ "ocaml" "pkg/git.ml" ] 15 15 [ "ocaml" "pkg/build.ml" "native=%{ocaml-native}%"
+13 -30
vendor/opam/jsonm/pkg/topkg-ext.ml
··· 1 1 (*--------------------------------------------------------------------------- 2 2 Copyright (c) 2014 Daniel C. Bünzli. All rights reserved. 3 - Distributed under the BSD3 license, see license at the end of the file. 4 - %%NAME%% release %%VERSION%% 3 + Distributed under the ISC license, see terms at the end of the file. 4 + %%NAME%% %%VERSION%% 5 5 ---------------------------------------------------------------------------*) 6 6 7 7 let ( >>= ) v f = match v with `Ok v -> f v | `Error _ as e -> e ··· 239 239 240 240 241 241 (*--------------------------------------------------------------------------- 242 - Copyright (c) 2014 Daniel C. Bünzli. 243 - All rights reserved. 242 + Copyright (c) 2014 Daniel C. Bünzli 244 243 245 - Redistribution and use in source and binary forms, with or without 246 - modification, are permitted provided that the following conditions 247 - are met: 248 - 249 - 1. Redistributions of source code must retain the above copyright 250 - notice, this list of conditions and the following disclaimer. 244 + Permission to use, copy, modify, and/or distribute this software for any 245 + purpose with or without fee is hereby granted, provided that the above 246 + copyright notice and this permission notice appear in all copies. 251 247 252 - 2. Redistributions in binary form must reproduce the above 253 - copyright notice, this list of conditions and the following 254 - disclaimer in the documentation and/or other materials provided 255 - with the distribution. 256 - 257 - 3. Neither the name of Daniel C. Bünzli nor the names of 258 - contributors may be used to endorse or promote products derived 259 - from this software without specific prior written permission. 260 - 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. 248 + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 249 + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 250 + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 251 + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 252 + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 253 + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 254 + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 272 255 ---------------------------------------------------------------------------*)
+13 -30
vendor/opam/jsonm/pkg/topkg.ml
··· 1 1 (*--------------------------------------------------------------------------- 2 2 Copyright (c) 2014 Daniel C. Bünzli. All rights reserved. 3 - Distributed under the BSD3 license, see license at the end of the file. 4 - %%NAME%% release %%VERSION%% 3 + Distributed under the ISC license, see terms at the end of the file. 4 + %%NAME%% %%VERSION%% 5 5 ---------------------------------------------------------------------------*) 6 6 7 7 (* Public api *) ··· 270 270 end 271 271 272 272 (*--------------------------------------------------------------------------- 273 - Copyright (c) 2014 Daniel C. Bünzli. 274 - All rights reserved. 273 + Copyright (c) 2014 Daniel C. Bünzli 275 274 276 - Redistribution and use in source and binary forms, with or without 277 - modification, are permitted provided that the following conditions 278 - are met: 279 - 280 - 1. Redistributions of source code must retain the above copyright 281 - notice, this list of conditions and the following disclaimer. 275 + Permission to use, copy, modify, and/or distribute this software for any 276 + purpose with or without fee is hereby granted, provided that the above 277 + copyright notice and this permission notice appear in all copies. 282 278 283 - 2. Redistributions in binary form must reproduce the above 284 - copyright notice, this list of conditions and the following 285 - disclaimer in the documentation and/or other materials provided 286 - with the distribution. 287 - 288 - 3. Neither the name of Daniel C. Bünzli nor the names of 289 - contributors may be used to endorse or promote products derived 290 - from this software without specific prior written permission. 291 - 292 - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 293 - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 294 - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 295 - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 296 - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 297 - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 298 - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 299 - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 300 - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 301 - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 302 - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 279 + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 280 + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 281 + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 282 + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 283 + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 284 + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 285 + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 303 286 ---------------------------------------------------------------------------*)
+12 -29
vendor/opam/jsonm/src/jsonm.ml
··· 1 1 (*--------------------------------------------------------------------------- 2 2 Copyright (c) 2012 Daniel C. Bünzli. All rights reserved. 3 - Distributed under the BSD3 license, see license at the end of the file. 4 - %%NAME%% release %%VERSION%% 3 + Distributed under the ISC license, see terms at the end of the file. 4 + %%NAME%% %%VERSION%% 5 5 ---------------------------------------------------------------------------*) 6 6 7 7 (* Braced non-terminals in comments refer to RFC 4627 non-terminals. *) ··· 621 621 622 622 (*--------------------------------------------------------------------------- 623 623 Copyright (c) 2012 Daniel C. Bünzli 624 - All rights reserved. 625 624 626 - Redistribution and use in source and binary forms, with or without 627 - modification, are permitted provided that the following conditions 628 - are met: 625 + Permission to use, copy, modify, and/or distribute this software for any 626 + purpose with or without fee is hereby granted, provided that the above 627 + copyright notice and this permission notice appear in all copies. 629 628 630 - 1. Redistributions of source code must retain the above copyright 631 - notice, this list of conditions and the following disclaimer. 632 - 633 - 2. Redistributions in binary form must reproduce the above 634 - copyright notice, this list of conditions and the following 635 - disclaimer in the documentation and/or other materials provided 636 - with the distribution. 637 - 638 - 3. Neither the name of Daniel C. Bünzli nor the names of 639 - contributors may be used to endorse or promote products derived 640 - from this software without specific prior written permission. 641 - 642 - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 643 - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 644 - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 645 - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 646 - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 647 - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 648 - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 649 - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 650 - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 651 - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 652 - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 629 + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 630 + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 631 + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 632 + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 633 + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 634 + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 635 + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 653 636 ---------------------------------------------------------------------------*)
+12 -29
vendor/opam/jsonm/src/jsonm.mli
··· 1 1 (*--------------------------------------------------------------------------- 2 2 Copyright (c) 2012 Daniel C. Bünzli. All rights reserved. 3 - Distributed under the BSD3 license, see license at the end of the file. 4 - %%NAME%% release %%VERSION%% 3 + Distributed under the ISC license, see terms at the end of the file. 4 + %%NAME%% %%VERSION%% 5 5 ---------------------------------------------------------------------------*) 6 6 7 7 (** Non-blocking streaming JSON codec. ··· 500 500 501 501 (*--------------------------------------------------------------------------- 502 502 Copyright (c) 2012 Daniel C. Bünzli 503 - All rights reserved. 504 503 505 - Redistribution and use in source and binary forms, with or without 506 - modification, are permitted provided that the following conditions 507 - are met: 504 + Permission to use, copy, modify, and/or distribute this software for any 505 + purpose with or without fee is hereby granted, provided that the above 506 + copyright notice and this permission notice appear in all copies. 508 507 509 - 1. Redistributions of source code must retain the above copyright 510 - notice, this list of conditions and the following disclaimer. 511 - 512 - 2. Redistributions in binary form must reproduce the above 513 - copyright notice, this list of conditions and the following 514 - disclaimer in the documentation and/or other materials provided 515 - with the distribution. 516 - 517 - 3. Neither the name of Daniel C. Bünzli nor the names of 518 - contributors may be used to endorse or promote products derived 519 - from this software without specific prior written permission. 520 - 521 - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 522 - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 523 - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 524 - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 525 - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 526 - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 527 - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 528 - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 529 - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 530 - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 531 - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 508 + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 509 + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 510 + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 511 + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 512 + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 513 + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 514 + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 532 515 ---------------------------------------------------------------------------*)
+12 -29
vendor/opam/jsonm/test/jsontrip.ml
··· 1 1 (*--------------------------------------------------------------------------- 2 2 Copyright (c) 2012 Daniel C. Bünzli. All rights reserved. 3 - Distributed under the BSD3 license, see license at the end of the file. 4 - %%NAME%% release %%VERSION%% 3 + Distributed under the ISC license, see terms at the end of the file. 4 + %%NAME%% %%VERSION%% 5 5 ---------------------------------------------------------------------------*) 6 6 7 7 let pr = Format.fprintf ··· 365 365 366 366 (*--------------------------------------------------------------------------- 367 367 Copyright (c) 2012 Daniel C. Bünzli 368 - All rights reserved. 369 368 370 - Redistribution and use in source and binary forms, with or without 371 - modification, are permitted provided that the following conditions 372 - are met: 369 + Permission to use, copy, modify, and/or distribute this software for any 370 + purpose with or without fee is hereby granted, provided that the above 371 + copyright notice and this permission notice appear in all copies. 373 372 374 - 1. Redistributions of source code must retain the above copyright 375 - notice, this list of conditions and the following disclaimer. 376 - 377 - 2. Redistributions in binary form must reproduce the above 378 - copyright notice, this list of conditions and the following 379 - disclaimer in the documentation and/or other materials provided 380 - with the distribution. 381 - 382 - 3. Neither the name of Daniel C. Bünzli nor the names of 383 - contributors may be used to endorse or promote products derived 384 - from this software without specific prior written permission. 385 - 386 - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 387 - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 388 - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 389 - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 390 - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 391 - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 392 - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 393 - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 394 - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 395 - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 396 - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 373 + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 374 + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 375 + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 376 + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 377 + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 378 + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 379 + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 397 380 ---------------------------------------------------------------------------*)
+12 -29
vendor/opam/jsonm/test/test.ml
··· 1 1 (*--------------------------------------------------------------------------- 2 2 Copyright (c) 2012 Daniel C. Bünzli. All rights reserved. 3 - Distributed under the BSD3 license, see license at the end of the file. 4 - %%NAME%% version %%VERSION%% 3 + Distributed under the ISC license, see terms at the end of the file. 4 + %%NAME%% %%VERSION%% 5 5 ---------------------------------------------------------------------------*) 6 6 7 7 let str = Format.sprintf ··· 345 345 346 346 (*--------------------------------------------------------------------------- 347 347 Copyright (c) 2012 Daniel C. Bünzli 348 - All rights reserved. 349 348 350 - Redistribution and use in source and binary forms, with or without 351 - modification, are permitted provided that the following conditions 352 - are met: 349 + Permission to use, copy, modify, and/or distribute this software for any 350 + purpose with or without fee is hereby granted, provided that the above 351 + copyright notice and this permission notice appear in all copies. 353 352 354 - 1. Redistributions of source code must retain the above copyright 355 - notice, this list of conditions and the following disclaimer. 356 - 357 - 2. Redistributions in binary form must reproduce the above 358 - copyright notice, this list of conditions and the following 359 - disclaimer in the documentation and/or other materials provided 360 - with the distribution. 361 - 362 - 3. Neither the name of Daniel C. Bünzli nor the names of 363 - contributors may be used to endorse or promote products derived 364 - from this software without specific prior written permission. 365 - 366 - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 367 - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 368 - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 369 - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 370 - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 371 - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 372 - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 373 - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 374 - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 375 - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 376 - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 353 + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 354 + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 355 + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 356 + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 357 + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 358 + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 359 + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 377 360 ---------------------------------------------------------------------------*)