Home | History | Annotate | Download | only in resources
      1 <!-- Generated by licenses.py; do not edit. -->
      2 <!DOCTYPE HTML>
      3 <html>
      4 <head>
      5 <meta charset="utf-8">
      6 <title>Credits</title>
      7 <style>
      8 body {
      9   font-family:Helvetica,Arial,sans-serif;
     10   background-color:white;
     11   font-size:84%;
     12   max-width:1020px;
     13 }
     14 .page-title {
     15   font-size:164%;
     16   font-weight:bold;
     17 }
     18 .product {
     19   background-color:#c3d9ff;
     20   overflow:auto;
     21   padding:2px;
     22   margin-top:16px;
     23   border-radius:5px;
     24 }
     25 .product .title {
     26   font-size:110%;
     27   font-weight:bold;
     28   float:left;
     29   margin:3px;
     30 }
     31 .product .homepage {
     32   text-align:right;
     33   float:right;
     34   margin:3px;
     35 }
     36 .product .homepage:after {
     37   content:" - ";
     38 }
     39 .product .show {
     40   text-align:right;
     41   float:right;
     42   margin:3px;
     43 }
     44 .licence {
     45   clear:both;
     46   background-color:#e8eef7;
     47   padding:16px;
     48   border-radius:3px;
     49   display:none;
     50 }
     51 .licence h3 {
     52   margin-top:0px;
     53 }
     54 </style>
     55 <script>
     56 function $(o) {return document.getElementById(o);}
     57 function toggle(o) {
     58   var licence = o.nextSibling;
     59 
     60   while (licence.className != 'licence') {
     61     if (!licence) return false;
     62     licence = licence.nextSibling;
     63   }
     64 
     65   if (licence.style && licence.style.display == 'block') {
     66     licence.style.display = 'none';
     67     o.innerHTML = 'show license';
     68   } else {
     69     licence.style.display = 'block';
     70     o.innerHTML = 'hide license';
     71   }
     72   return false;
     73 }
     74 </script>
     75 </head>
     76 <body>
     77 <span class="page-title" style="float:left;">Credits</span>
     78 <a href="javascript:window.print();" style="float:right;">Print</a>
     79 <div style="clear:both; overflow:auto;"><!-- Chromium <3s the following projects -->
     80 <div class="product">
     81 <span class="title">David M. Gay's floating point routines</span>
     82 <a class="show" href="#" onclick="return toggle(this);">show license</a>
     83 <span class="homepage"><a href="http://www.netlib.org/fp/">homepage</a></span>
     84 <div class="licence">
     85 <pre>/****************************************************************
     86  *
     87  * The author of this software is David M. Gay.
     88  *
     89  * Copyright (c) 1991, 2000, 2001 by Lucent Technologies.
     90  *
     91  * Permission to use, copy, modify, and distribute this software for any
     92  * purpose without fee is hereby granted, provided that this entire notice
     93  * is included in all copies of any software which is or includes a copy
     94  * or modification of this software and in all copies of the supporting
     95  * documentation for such software.
     96  *
     97  * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
     98  * WARRANTY.  IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY
     99  * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY
    100  * OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
    101  *
    102  ***************************************************************/
    103 </pre>
    104 </div>
    105 </div>
    106 
    107 
    108 <div class="product">
    109 <span class="title">dynamic annotations</span>
    110 <a class="show" href="#" onclick="return toggle(this);">show license</a>
    111 <span class="homepage"><a href="http://code.google.com/p/data-race-test/wiki/DynamicAnnotations">homepage</a></span>
    112 <div class="licence">
    113 <pre>/* Copyright (c) 2008-2009, Google Inc.
    114  * All rights reserved.
    115  *
    116  * Redistribution and use in source and binary forms, with or without
    117  * modification, are permitted provided that the following conditions are
    118  * met:
    119  *
    120  *     * Redistributions of source code must retain the above copyright
    121  * notice, this list of conditions and the following disclaimer.
    122  *     * Neither the name of Google Inc. nor the names of its
    123  * contributors may be used to endorse or promote products derived from
    124  * this software without specific prior written permission.
    125  *
    126  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    127  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    128  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    129  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    130  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    131  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    132  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    133  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    134  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    135  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    136  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    137  *
    138  * ---
    139  * Author: Kostya Serebryany
    140  */
    141 </pre>
    142 </div>
    143 </div>
    144 
    145 
    146 <div class="product">
    147 <span class="title">Netscape Portable Runtime (NSPR)</span>
    148 <a class="show" href="#" onclick="return toggle(this);">show license</a>
    149 <span class="homepage"><a href="http://www.mozilla.org/projects/nspr/">homepage</a></span>
    150 <div class="licence">
    151 <pre>/* ***** BEGIN LICENSE BLOCK *****
    152  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
    153  *
    154  * The contents of this file are subject to the Mozilla Public License Version
    155  * 1.1 (the "License"); you may not use this file except in compliance with
    156  * the License. You may obtain a copy of the License at
    157  * http://www.mozilla.org/MPL/
    158  *
    159  * Software distributed under the License is distributed on an "AS IS" basis,
    160  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
    161  * for the specific language governing rights and limitations under the
    162  * License.
    163  *
    164  * The Original Code is the Netscape Portable Runtime (NSPR).
    165  *
    166  * The Initial Developer of the Original Code is
    167  * Netscape Communications Corporation.
    168  * Portions created by the Initial Developer are Copyright (C) 1998-2000
    169  * the Initial Developer. All Rights Reserved.
    170  *
    171  * Contributor(s):
    172  *
    173  * Alternatively, the contents of this file may be used under the terms of
    174  * either the GNU General Public License Version 2 or later (the "GPL"), or
    175  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
    176  * in which case the provisions of the GPL or the LGPL are applicable instead
    177  * of those above. If you wish to allow use of your version of this file only
    178  * under the terms of either the GPL or the LGPL, and not to allow others to
    179  * use your version of this file under the terms of the MPL, indicate your
    180  * decision by deleting the provisions above and replace them with the notice
    181  * and other provisions required by the GPL or the LGPL. If you do not delete
    182  * the provisions above, a recipient may use your version of this file under
    183  * the terms of any one of the MPL, the GPL or the LGPL.
    184  *
    185  * ***** END LICENSE BLOCK ***** */
    186 </pre>
    187 </div>
    188 </div>
    189 
    190 
    191 <div class="product">
    192 <span class="title">Network Security Services (NSS)</span>
    193 <a class="show" href="#" onclick="return toggle(this);">show license</a>
    194 <span class="homepage"><a href="http://www.mozilla.org/projects/security/pki/nss/">homepage</a></span>
    195 <div class="licence">
    196 <pre>/* ***** BEGIN LICENSE BLOCK *****
    197  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
    198  *
    199  * The contents of this file are subject to the Mozilla Public License Version
    200  * 1.1 (the "License"); you may not use this file except in compliance with
    201  * the License. You may obtain a copy of the License at
    202  * http://www.mozilla.org/MPL/
    203  *
    204  * Software distributed under the License is distributed on an "AS IS" basis,
    205  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
    206  * for the specific language governing rights and limitations under the
    207  * License.
    208  *
    209  * The Original Code is the Netscape security libraries.
    210  *
    211  * The Initial Developer of the Original Code is
    212  * Netscape Communications Corporation.
    213  * Portions created by the Initial Developer are Copyright (C) 1994-2000
    214  * the Initial Developer. All Rights Reserved.
    215  *
    216  * Contributor(s):
    217  *
    218  * Alternatively, the contents of this file may be used under the terms of
    219  * either the GNU General Public License Version 2 or later (the "GPL"), or
    220  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
    221  * in which case the provisions of the GPL or the LGPL are applicable instead
    222  * of those above. If you wish to allow use of your version of this file only
    223  * under the terms of either the GPL or the LGPL, and not to allow others to
    224  * use your version of this file under the terms of the MPL, indicate your
    225  * decision by deleting the provisions above and replace them with the notice
    226  * and other provisions required by the GPL or the LGPL. If you do not delete
    227  * the provisions above, a recipient may use your version of this file under
    228  * the terms of any one of the MPL, the GPL or the LGPL.
    229  *
    230  * ***** END LICENSE BLOCK ***** */
    231 </pre>
    232 </div>
    233 </div>
    234 
    235 
    236 <div class="product">
    237 <span class="title">purify headers</span>
    238 <a class="show" href="#" onclick="return toggle(this);">show license</a>
    239 <span class="homepage"><a href="http://www-01.ibm.com/software/awdtools/purify/">homepage</a></span>
    240 <div class="licence">
    241 <pre>(C) Copyright IBM Corporation. 2006, 2006. All Rights Reserved.
    242 You may recompile and redistribute these definitions as required.
    243 </pre>
    244 </div>
    245 </div>
    246 
    247 
    248 <div class="product">
    249 <span class="title">google-glog's symbolization library</span>
    250 <a class="show" href="#" onclick="return toggle(this);">show license</a>
    251 <span class="homepage"><a href="http://code.google.com/p/google-glog/">homepage</a></span>
    252 <div class="licence">
    253 <pre>// Copyright (c) 2006, Google Inc.
    254 // All rights reserved.
    255 //
    256 // Redistribution and use in source and binary forms, with or without
    257 // modification, are permitted provided that the following conditions are
    258 // met:
    259 //
    260 //     * Redistributions of source code must retain the above copyright
    261 // notice, this list of conditions and the following disclaimer.
    262 //     * Redistributions in binary form must reproduce the above
    263 // copyright notice, this list of conditions and the following disclaimer
    264 // in the documentation and/or other materials provided with the
    265 // distribution.
    266 //     * Neither the name of Google Inc. nor the names of its
    267 // contributors may be used to endorse or promote products derived from
    268 // this software without specific prior written permission.
    269 //
    270 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    271 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    272 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    273 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    274 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    275 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    276 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    277 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    278 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    279 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    280 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    281 </pre>
    282 </div>
    283 </div>
    284 
    285 
    286 <div class="product">
    287 <span class="title">valgrind</span>
    288 <a class="show" href="#" onclick="return toggle(this);">show license</a>
    289 <span class="homepage"><a href="http://valgrind.org">homepage</a></span>
    290 <div class="licence">
    291 <pre>   ----------------------------------------------------------------
    292 
    293    Notice that the following BSD-style license applies to this one
    294    file (valgrind.h) only.  The rest of Valgrind is licensed under the
    295    terms of the GNU General Public License, version 2, unless
    296    otherwise indicated.  See the COPYING file in the source
    297    distribution for details.
    298 
    299    ----------------------------------------------------------------
    300 
    301    This file is part of Valgrind, a dynamic binary instrumentation
    302    framework.
    303 
    304    Copyright (C) 2000-2008 Julian Seward.  All rights reserved.
    305 
    306    Redistribution and use in source and binary forms, with or without
    307    modification, are permitted provided that the following conditions
    308    are met:
    309 
    310    1. Redistributions of source code must retain the above copyright
    311       notice, this list of conditions and the following disclaimer.
    312 
    313    2. The origin of this software must not be misrepresented; you must 
    314       not claim that you wrote the original software.  If you use this 
    315       software in a product, an acknowledgment in the product 
    316       documentation would be appreciated but is not required.
    317 
    318    3. Altered source versions must be plainly marked as such, and must
    319       not be misrepresented as being the original software.
    320 
    321    4. The name of the author may not be used to endorse or promote 
    322       products derived from this software without specific prior written 
    323       permission.
    324 
    325    THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
    326    OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    327    WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    328    ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
    329    DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    330    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
    331    GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    332    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
    333    WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
    334    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    335    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    336 </pre>
    337 </div>
    338 </div>
    339 
    340 
    341 <div class="product">
    342 <span class="title">xdg-mime</span>
    343 <a class="show" href="#" onclick="return toggle(this);">show license</a>
    344 <span class="homepage"><a href="http://portland.freedesktop.org/wiki/">homepage</a></span>
    345 <div class="licence">
    346 <pre>#   Permission is hereby granted, free of charge, to any person obtaining a
    347 #   copy of this software and associated documentation files (the "Software"),
    348 #   to deal in the Software without restriction, including without limitation
    349 #   the rights to use, copy, modify, merge, publish, distribute, sublicense,
    350 #   and/or sell copies of the Software, and to permit persons to whom the
    351 #   Software is furnished to do so, subject to the following conditions:
    352 #
    353 #   The above copyright notice and this permission notice shall be included
    354 #   in all copies or substantial portions of the Software.
    355 #
    356 #   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
    357 #   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    358 #   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
    359 #   THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
    360 #   OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
    361 #   ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    362 #   OTHER DEALINGS IN THE SOFTWARE.
    363 </pre>
    364 </div>
    365 </div>
    366 
    367 
    368 <div class="product">
    369 <span class="title">xdg-user-dirs</span>
    370 <a class="show" href="#" onclick="return toggle(this);">show license</a>
    371 <span class="homepage"><a href="http://www.freedesktop.org/wiki/Software/xdg-user-dirs">homepage</a></span>
    372 <div class="licence">
    373 <pre>  Copyright (c) 2007 Red Hat, inc
    374 
    375   Permission is hereby granted, free of charge, to any person
    376   obtaining a copy of this software and associated documentation files
    377   (the "Software"), to deal in the Software without restriction,
    378   including without limitation the rights to use, copy, modify, merge,
    379   publish, distribute, sublicense, and/or sell copies of the Software,
    380   and to permit persons to whom the Software is furnished to do so,
    381   subject to the following conditions: 
    382 
    383   The above copyright notice and this permission notice shall be
    384   included in all copies or substantial portions of the Software. 
    385 
    386   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    387   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    388   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    389   NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
    390   BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
    391   ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
    392   CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    393   SOFTWARE.
    394 </pre>
    395 </div>
    396 </div>
    397 
    398 
    399 <div class="product">
    400 <span class="title">BSDiff</span>
    401 <a class="show" href="#" onclick="return toggle(this);">show license</a>
    402 <span class="homepage"><a href="http://www.daemonology.net/bsdiff/">homepage</a></span>
    403 <div class="licence">
    404 <pre>Copyright 2003-2005 Colin Percival
    405 All rights reserved
    406 
    407 Redistribution and use in source and binary forms, with or without
    408 modification, are permitted providing that the following conditions 
    409 are met:
    410 1. Redistributions of source code must retain the above copyright
    411    notice, this list of conditions and the following disclaimer.
    412 2. Redistributions in binary form must reproduce the above copyright
    413    notice, this list of conditions and the following disclaimer in the
    414    documentation and/or other materials provided with the distribution.
    415 
    416 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
    417 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    418 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    419 ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
    420 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    421 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    422 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    423 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
    424 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
    425 IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    426 POSSIBILITY OF SUCH DAMAGE.
    427 </pre>
    428 </div>
    429 </div>
    430 
    431 
    432 <div class="product">
    433 <span class="title">XZ Utils</span>
    434 <a class="show" href="#" onclick="return toggle(this);">show license</a>
    435 <span class="homepage"><a href="http://tukaani.org/xz/">homepage</a></span>
    436 <div class="licence">
    437 <pre>See http://src.chromium.org/viewvc/chrome/trunk/deps/third_party/xz/COPYING
    438 </pre>
    439 </div>
    440 </div>
    441 
    442 
    443 <div class="product">
    444 <span class="title">google-jstemplate</span>
    445 <a class="show" href="#" onclick="return toggle(this);">show license</a>
    446 <span class="homepage"><a href="http://code.google.com/p/google-jstemplate/">homepage</a></span>
    447 <div class="licence">
    448 <pre>
    449                                  Apache License
    450                            Version 2.0, January 2004
    451                         http://www.apache.org/licenses/
    452 
    453    TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    454 
    455    1. Definitions.
    456 
    457       "License" shall mean the terms and conditions for use, reproduction,
    458       and distribution as defined by Sections 1 through 9 of this document.
    459 
    460       "Licensor" shall mean the copyright owner or entity authorized by
    461       the copyright owner that is granting the License.
    462 
    463       "Legal Entity" shall mean the union of the acting entity and all
    464       other entities that control, are controlled by, or are under common
    465       control with that entity. For the purposes of this definition,
    466       "control" means (i) the power, direct or indirect, to cause the
    467       direction or management of such entity, whether by contract or
    468       otherwise, or (ii) ownership of fifty percent (50%) or more of the
    469       outstanding shares, or (iii) beneficial ownership of such entity.
    470 
    471       "You" (or "Your") shall mean an individual or Legal Entity
    472       exercising permissions granted by this License.
    473 
    474       "Source" form shall mean the preferred form for making modifications,
    475       including but not limited to software source code, documentation
    476       source, and configuration files.
    477 
    478       "Object" form shall mean any form resulting from mechanical
    479       transformation or translation of a Source form, including but
    480       not limited to compiled object code, generated documentation,
    481       and conversions to other media types.
    482 
    483       "Work" shall mean the work of authorship, whether in Source or
    484       Object form, made available under the License, as indicated by a
    485       copyright notice that is included in or attached to the work
    486       (an example is provided in the Appendix below).
    487 
    488       "Derivative Works" shall mean any work, whether in Source or Object
    489       form, that is based on (or derived from) the Work and for which the
    490       editorial revisions, annotations, elaborations, or other modifications
    491       represent, as a whole, an original work of authorship. For the purposes
    492       of this License, Derivative Works shall not include works that remain
    493       separable from, or merely link (or bind by name) to the interfaces of,
    494       the Work and Derivative Works thereof.
    495 
    496       "Contribution" shall mean any work of authorship, including
    497       the original version of the Work and any modifications or additions
    498       to that Work or Derivative Works thereof, that is intentionally
    499       submitted to Licensor for inclusion in the Work by the copyright owner
    500       or by an individual or Legal Entity authorized to submit on behalf of
    501       the copyright owner. For the purposes of this definition, "submitted"
    502       means any form of electronic, verbal, or written communication sent
    503       to the Licensor or its representatives, including but not limited to
    504       communication on electronic mailing lists, source code control systems,
    505       and issue tracking systems that are managed by, or on behalf of, the
    506       Licensor for the purpose of discussing and improving the Work, but
    507       excluding communication that is conspicuously marked or otherwise
    508       designated in writing by the copyright owner as "Not a Contribution."
    509 
    510       "Contributor" shall mean Licensor and any individual or Legal Entity
    511       on behalf of whom a Contribution has been received by Licensor and
    512       subsequently incorporated within the Work.
    513 
    514    2. Grant of Copyright License. Subject to the terms and conditions of
    515       this License, each Contributor hereby grants to You a perpetual,
    516       worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    517       copyright license to reproduce, prepare Derivative Works of,
    518       publicly display, publicly perform, sublicense, and distribute the
    519       Work and such Derivative Works in Source or Object form.
    520 
    521    3. Grant of Patent License. Subject to the terms and conditions of
    522       this License, each Contributor hereby grants to You a perpetual,
    523       worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    524       (except as stated in this section) patent license to make, have made,
    525       use, offer to sell, sell, import, and otherwise transfer the Work,
    526       where such license applies only to those patent claims licensable
    527       by such Contributor that are necessarily infringed by their
    528       Contribution(s) alone or by combination of their Contribution(s)
    529       with the Work to which such Contribution(s) was submitted. If You
    530       institute patent litigation against any entity (including a
    531       cross-claim or counterclaim in a lawsuit) alleging that the Work
    532       or a Contribution incorporated within the Work constitutes direct
    533       or contributory patent infringement, then any patent licenses
    534       granted to You under this License for that Work shall terminate
    535       as of the date such litigation is filed.
    536 
    537    4. Redistribution. You may reproduce and distribute copies of the
    538       Work or Derivative Works thereof in any medium, with or without
    539       modifications, and in Source or Object form, provided that You
    540       meet the following conditions:
    541 
    542       (a) You must give any other recipients of the Work or
    543           Derivative Works a copy of this License; and
    544 
    545       (b) You must cause any modified files to carry prominent notices
    546           stating that You changed the files; and
    547 
    548       (c) You must retain, in the Source form of any Derivative Works
    549           that You distribute, all copyright, patent, trademark, and
    550           attribution notices from the Source form of the Work,
    551           excluding those notices that do not pertain to any part of
    552           the Derivative Works; and
    553 
    554       (d) If the Work includes a "NOTICE" text file as part of its
    555           distribution, then any Derivative Works that You distribute must
    556           include a readable copy of the attribution notices contained
    557           within such NOTICE file, excluding those notices that do not
    558           pertain to any part of the Derivative Works, in at least one
    559           of the following places: within a NOTICE text file distributed
    560           as part of the Derivative Works; within the Source form or
    561           documentation, if provided along with the Derivative Works; or,
    562           within a display generated by the Derivative Works, if and
    563           wherever such third-party notices normally appear. The contents
    564           of the NOTICE file are for informational purposes only and
    565           do not modify the License. You may add Your own attribution
    566           notices within Derivative Works that You distribute, alongside
    567           or as an addendum to the NOTICE text from the Work, provided
    568           that such additional attribution notices cannot be construed
    569           as modifying the License.
    570 
    571       You may add Your own copyright statement to Your modifications and
    572       may provide additional or different license terms and conditions
    573       for use, reproduction, or distribution of Your modifications, or
    574       for any such Derivative Works as a whole, provided Your use,
    575       reproduction, and distribution of the Work otherwise complies with
    576       the conditions stated in this License.
    577 
    578    5. Submission of Contributions. Unless You explicitly state otherwise,
    579       any Contribution intentionally submitted for inclusion in the Work
    580       by You to the Licensor shall be under the terms and conditions of
    581       this License, without any additional terms or conditions.
    582       Notwithstanding the above, nothing herein shall supersede or modify
    583       the terms of any separate license agreement you may have executed
    584       with Licensor regarding such Contributions.
    585 
    586    6. Trademarks. This License does not grant permission to use the trade
    587       names, trademarks, service marks, or product names of the Licensor,
    588       except as required for reasonable and customary use in describing the
    589       origin of the Work and reproducing the content of the NOTICE file.
    590 
    591    7. Disclaimer of Warranty. Unless required by applicable law or
    592       agreed to in writing, Licensor provides the Work (and each
    593       Contributor provides its Contributions) on an "AS IS" BASIS,
    594       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    595       implied, including, without limitation, any warranties or conditions
    596       of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    597       PARTICULAR PURPOSE. You are solely responsible for determining the
    598       appropriateness of using or redistributing the Work and assume any
    599       risks associated with Your exercise of permissions under this License.
    600 
    601    8. Limitation of Liability. In no event and under no legal theory,
    602       whether in tort (including negligence), contract, or otherwise,
    603       unless required by applicable law (such as deliberate and grossly
    604       negligent acts) or agreed to in writing, shall any Contributor be
    605       liable to You for damages, including any direct, indirect, special,
    606       incidental, or consequential damages of any character arising as a
    607       result of this License or out of the use or inability to use the
    608       Work (including but not limited to damages for loss of goodwill,
    609       work stoppage, computer failure or malfunction, or any and all
    610       other commercial damages or losses), even if such Contributor
    611       has been advised of the possibility of such damages.
    612 
    613    9. Accepting Warranty or Additional Liability. While redistributing
    614       the Work or Derivative Works thereof, You may choose to offer,
    615       and charge a fee for, acceptance of support, warranty, indemnity,
    616       or other liability obligations and/or rights consistent with this
    617       License. However, in accepting such obligations, You may act only
    618       on Your own behalf and on Your sole responsibility, not on behalf
    619       of any other Contributor, and only if You agree to indemnify,
    620       defend, and hold each Contributor harmless for any liability
    621       incurred by, or claims asserted against, such Contributor by reason
    622       of your accepting any such warranty or additional liability.
    623 
    624    END OF TERMS AND CONDITIONS
    625 
    626    APPENDIX: How to apply the Apache License to your work.
    627 
    628       To apply the Apache License to your work, attach the following
    629       boilerplate notice, with the fields enclosed by brackets "[]"
    630       replaced with your own identifying information. (Don't include
    631       the brackets!)  The text should be enclosed in the appropriate
    632       comment syntax for the file format. We also recommend that a
    633       file or class name and description of purpose be included on the
    634       same "printed page" as the copyright notice for easier
    635       identification within third-party archives.
    636 
    637    Copyright [yyyy] [name of copyright owner]
    638 
    639    Licensed under the Apache License, Version 2.0 (the "License");
    640    you may not use this file except in compliance with the License.
    641    You may obtain a copy of the License at
    642 
    643        http://www.apache.org/licenses/LICENSE-2.0
    644 
    645    Unless required by applicable law or agreed to in writing, software
    646    distributed under the License is distributed on an "AS IS" BASIS,
    647    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    648    See the License for the specific language governing permissions and
    649    limitations under the License.
    650 </pre>
    651 </div>
    652 </div>
    653 
    654 
    655 <div class="product">
    656 <span class="title">Launchpad Translations</span>
    657 <a class="show" href="#" onclick="return toggle(this);">show license</a>
    658 <span class="homepage"><a href="http://people.ubuntu.com/~fta/chromium/translations/trunk/patched-files/chrome/app/resources/">homepage</a></span>
    659 <div class="licence">
    660 <pre>Redistribution and use in source and binary forms, with or without
    661 modification, are permitted provided that the following conditions are
    662 met:
    663 
    664   * Redistributions of source code must retain the above copyright
    665     notice, this list of conditions and the following disclaimer.
    666 
    667   * Redistributions in binary form must reproduce the above
    668     copyright notice, this list of conditions and the following
    669     disclaimer in the documentation and/or other materials provided
    670     with the distribution.
    671 
    672   * Neither the name of the copyright holders nor the names of its
    673     contributors may be used to endorse or promote products derived
    674     from this software without specific prior written permission.
    675 
    676 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    677 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    678 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    679 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    680 HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    681 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    682 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    683 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    684 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    685 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    686 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    687 </pre>
    688 </div>
    689 </div>
    690 
    691 
    692 <div class="product">
    693 <span class="title">Mozilla Personal Security Manager</span>
    694 <a class="show" href="#" onclick="return toggle(this);">show license</a>
    695 <span class="homepage"><a href="http://mxr.mozilla.org/mozilla-central/source/security/manager/">homepage</a></span>
    696 <div class="licence">
    697 <pre>/* ***** BEGIN LICENSE BLOCK *****
    698  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
    699  *
    700  * The contents of this file are subject to the Mozilla Public License Version
    701  * 1.1 (the "License"); you may not use this file except in compliance with
    702  * the License. You may obtain a copy of the License at
    703  * http://www.mozilla.org/MPL/
    704  *
    705  * Software distributed under the License is distributed on an "AS IS" basis,
    706  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
    707  * for the specific language governing rights and limitations under the
    708  * License.
    709  *
    710  * The Original Code is the Netscape security libraries.
    711  *
    712  * The Initial Developer of the Original Code is
    713  * Netscape Communications Corporation.
    714  * Portions created by the Initial Developer are Copyright (C) 2000
    715  * the Initial Developer. All Rights Reserved.
    716  *
    717  * Contributor(s):
    718  *
    719  * Alternatively, the contents of this file may be used under the terms of
    720  * either the GNU General Public License Version 2 or later (the "GPL"), or
    721  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
    722  * in which case the provisions of the GPL or the LGPL are applicable instead
    723  * of those above. If you wish to allow use of your version of this file only
    724  * under the terms of either the GPL or the LGPL, and not to allow others to
    725  * use your version of this file under the terms of the MPL, indicate your
    726  * decision by deleting the provisions above and replace them with the notice
    727  * and other provisions required by the GPL or the LGPL. If you do not delete
    728  * the provisions above, a recipient may use your version of this file under
    729  * the terms of any one of the MPL, the GPL or the LGPL.
    730  *
    731  * ***** END LICENSE BLOCK ***** */
    732 </pre>
    733 </div>
    734 </div>
    735 
    736 
    737 <div class="product">
    738 <span class="title">gssapi</span>
    739 <a class="show" href="#" onclick="return toggle(this);">show license</a>
    740 <span class="homepage"><a href="https://hg.mozilla.org/mozilla-central/file/05f3c68e73c9/extensions/auth/gssapi.h">homepage</a></span>
    741 <div class="licence">
    742 <pre>Copyright 1993 by OpenVision Technologies, Inc.
    743 
    744 Permission to use, copy, modify, distribute, and sell this software
    745 and its documentation for any purpose is hereby granted without fee,
    746 provided that the above copyright notice appears in all copies and
    747 that both that copyright notice and this permission notice appear in
    748 supporting documentation, and that the name of OpenVision not be used
    749 in advertising or publicity pertaining to distribution of the software
    750 without specific, written prior permission. OpenVision makes no
    751 representations about the suitability of this software for any
    752 purpose.  It is provided "as is" without express or implied warranty.
    753 
    754 OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
    755 INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
    756 EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
    757 CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
    758 USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
    759 OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
    760 PERFORMANCE OF THIS SOFTWARE.
    761 </pre>
    762 </div>
    763 </div>
    764 
    765 
    766 <div class="product">
    767 <span class="title">Google Toolbox for Mac</span>
    768 <a class="show" href="#" onclick="return toggle(this);">show license</a>
    769 <span class="homepage"><a href="http://code.google.com/p/google-toolbox-for-mac/">homepage</a></span>
    770 <div class="licence">
    771 <pre>
    772                                  Apache License
    773                            Version 2.0, January 2004
    774                         http://www.apache.org/licenses/
    775 
    776    TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    777 
    778    1. Definitions.
    779 
    780       "License" shall mean the terms and conditions for use, reproduction,
    781       and distribution as defined by Sections 1 through 9 of this document.
    782 
    783       "Licensor" shall mean the copyright owner or entity authorized by
    784       the copyright owner that is granting the License.
    785 
    786       "Legal Entity" shall mean the union of the acting entity and all
    787       other entities that control, are controlled by, or are under common
    788       control with that entity. For the purposes of this definition,
    789       "control" means (i) the power, direct or indirect, to cause the
    790       direction or management of such entity, whether by contract or
    791       otherwise, or (ii) ownership of fifty percent (50%) or more of the
    792       outstanding shares, or (iii) beneficial ownership of such entity.
    793 
    794       "You" (or "Your") shall mean an individual or Legal Entity
    795       exercising permissions granted by this License.
    796 
    797       "Source" form shall mean the preferred form for making modifications,
    798       including but not limited to software source code, documentation
    799       source, and configuration files.
    800 
    801       "Object" form shall mean any form resulting from mechanical
    802       transformation or translation of a Source form, including but
    803       not limited to compiled object code, generated documentation,
    804       and conversions to other media types.
    805 
    806       "Work" shall mean the work of authorship, whether in Source or
    807       Object form, made available under the License, as indicated by a
    808       copyright notice that is included in or attached to the work
    809       (an example is provided in the Appendix below).
    810 
    811       "Derivative Works" shall mean any work, whether in Source or Object
    812       form, that is based on (or derived from) the Work and for which the
    813       editorial revisions, annotations, elaborations, or other modifications
    814       represent, as a whole, an original work of authorship. For the purposes
    815       of this License, Derivative Works shall not include works that remain
    816       separable from, or merely link (or bind by name) to the interfaces of,
    817       the Work and Derivative Works thereof.
    818 
    819       "Contribution" shall mean any work of authorship, including
    820       the original version of the Work and any modifications or additions
    821       to that Work or Derivative Works thereof, that is intentionally
    822       submitted to Licensor for inclusion in the Work by the copyright owner
    823       or by an individual or Legal Entity authorized to submit on behalf of
    824       the copyright owner. For the purposes of this definition, "submitted"
    825       means any form of electronic, verbal, or written communication sent
    826       to the Licensor or its representatives, including but not limited to
    827       communication on electronic mailing lists, source code control systems,
    828       and issue tracking systems that are managed by, or on behalf of, the
    829       Licensor for the purpose of discussing and improving the Work, but
    830       excluding communication that is conspicuously marked or otherwise
    831       designated in writing by the copyright owner as "Not a Contribution."
    832 
    833       "Contributor" shall mean Licensor and any individual or Legal Entity
    834       on behalf of whom a Contribution has been received by Licensor and
    835       subsequently incorporated within the Work.
    836 
    837    2. Grant of Copyright License. Subject to the terms and conditions of
    838       this License, each Contributor hereby grants to You a perpetual,
    839       worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    840       copyright license to reproduce, prepare Derivative Works of,
    841       publicly display, publicly perform, sublicense, and distribute the
    842       Work and such Derivative Works in Source or Object form.
    843 
    844    3. Grant of Patent License. Subject to the terms and conditions of
    845       this License, each Contributor hereby grants to You a perpetual,
    846       worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    847       (except as stated in this section) patent license to make, have made,
    848       use, offer to sell, sell, import, and otherwise transfer the Work,
    849       where such license applies only to those patent claims licensable
    850       by such Contributor that are necessarily infringed by their
    851       Contribution(s) alone or by combination of their Contribution(s)
    852       with the Work to which such Contribution(s) was submitted. If You
    853       institute patent litigation against any entity (including a
    854       cross-claim or counterclaim in a lawsuit) alleging that the Work
    855       or a Contribution incorporated within the Work constitutes direct
    856       or contributory patent infringement, then any patent licenses
    857       granted to You under this License for that Work shall terminate
    858       as of the date such litigation is filed.
    859 
    860    4. Redistribution. You may reproduce and distribute copies of the
    861       Work or Derivative Works thereof in any medium, with or without
    862       modifications, and in Source or Object form, provided that You
    863       meet the following conditions:
    864 
    865       (a) You must give any other recipients of the Work or
    866           Derivative Works a copy of this License; and
    867 
    868       (b) You must cause any modified files to carry prominent notices
    869           stating that You changed the files; and
    870 
    871       (c) You must retain, in the Source form of any Derivative Works
    872           that You distribute, all copyright, patent, trademark, and
    873           attribution notices from the Source form of the Work,
    874           excluding those notices that do not pertain to any part of
    875           the Derivative Works; and
    876 
    877       (d) If the Work includes a "NOTICE" text file as part of its
    878           distribution, then any Derivative Works that You distribute must
    879           include a readable copy of the attribution notices contained
    880           within such NOTICE file, excluding those notices that do not
    881           pertain to any part of the Derivative Works, in at least one
    882           of the following places: within a NOTICE text file distributed
    883           as part of the Derivative Works; within the Source form or
    884           documentation, if provided along with the Derivative Works; or,
    885           within a display generated by the Derivative Works, if and
    886           wherever such third-party notices normally appear. The contents
    887           of the NOTICE file are for informational purposes only and
    888           do not modify the License. You may add Your own attribution
    889           notices within Derivative Works that You distribute, alongside
    890           or as an addendum to the NOTICE text from the Work, provided
    891           that such additional attribution notices cannot be construed
    892           as modifying the License.
    893 
    894       You may add Your own copyright statement to Your modifications and
    895       may provide additional or different license terms and conditions
    896       for use, reproduction, or distribution of Your modifications, or
    897       for any such Derivative Works as a whole, provided Your use,
    898       reproduction, and distribution of the Work otherwise complies with
    899       the conditions stated in this License.
    900 
    901    5. Submission of Contributions. Unless You explicitly state otherwise,
    902       any Contribution intentionally submitted for inclusion in the Work
    903       by You to the Licensor shall be under the terms and conditions of
    904       this License, without any additional terms or conditions.
    905       Notwithstanding the above, nothing herein shall supersede or modify
    906       the terms of any separate license agreement you may have executed
    907       with Licensor regarding such Contributions.
    908 
    909    6. Trademarks. This License does not grant permission to use the trade
    910       names, trademarks, service marks, or product names of the Licensor,
    911       except as required for reasonable and customary use in describing the
    912       origin of the Work and reproducing the content of the NOTICE file.
    913 
    914    7. Disclaimer of Warranty. Unless required by applicable law or
    915       agreed to in writing, Licensor provides the Work (and each
    916       Contributor provides its Contributions) on an "AS IS" BASIS,
    917       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    918       implied, including, without limitation, any warranties or conditions
    919       of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    920       PARTICULAR PURPOSE. You are solely responsible for determining the
    921       appropriateness of using or redistributing the Work and assume any
    922       risks associated with Your exercise of permissions under this License.
    923 
    924    8. Limitation of Liability. In no event and under no legal theory,
    925       whether in tort (including negligence), contract, or otherwise,
    926       unless required by applicable law (such as deliberate and grossly
    927       negligent acts) or agreed to in writing, shall any Contributor be
    928       liable to You for damages, including any direct, indirect, special,
    929       incidental, or consequential damages of any character arising as a
    930       result of this License or out of the use or inability to use the
    931       Work (including but not limited to damages for loss of goodwill,
    932       work stoppage, computer failure or malfunction, or any and all
    933       other commercial damages or losses), even if such Contributor
    934       has been advised of the possibility of such damages.
    935 
    936    9. Accepting Warranty or Additional Liability. While redistributing
    937       the Work or Derivative Works thereof, You may choose to offer,
    938       and charge a fee for, acceptance of support, warranty, indemnity,
    939       or other liability obligations and/or rights consistent with this
    940       License. However, in accepting such obligations, You may act only
    941       on Your own behalf and on Your sole responsibility, not on behalf
    942       of any other Contributor, and only if You agree to indemnify,
    943       defend, and hold each Contributor harmless for any liability
    944       incurred by, or claims asserted against, such Contributor by reason
    945       of your accepting any such warranty or additional liability.
    946 
    947    END OF TERMS AND CONDITIONS
    948 
    949    APPENDIX: How to apply the Apache License to your work.
    950 
    951       To apply the Apache License to your work, attach the following
    952       boilerplate notice, with the fields enclosed by brackets "[]"
    953       replaced with your own identifying information. (Don't include
    954       the brackets!)  The text should be enclosed in the appropriate
    955       comment syntax for the file format. We also recommend that a
    956       file or class name and description of purpose be included on the
    957       same "printed page" as the copyright notice for easier
    958       identification within third-party archives.
    959 
    960    Copyright 2007 Google Inc.
    961 
    962    Licensed under the Apache License, Version 2.0 (the "License");
    963    you may not use this file except in compliance with the License.
    964    You may obtain a copy of the License at
    965 
    966        http://www.apache.org/licenses/LICENSE-2.0
    967 
    968    Unless required by applicable law or agreed to in writing, software
    969    distributed under the License is distributed on an "AS IS" BASIS,
    970    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    971    See the License for the specific language governing permissions and
    972    limitations under the License.</pre>
    973 </div>
    974 </div>
    975 
    976 
    977 <div class="product">
    978 <span class="title">WebKit</span>
    979 <a class="show" href="#" onclick="return toggle(this);">show license</a>
    980 <span class="homepage"><a href="http://webkit.org/">homepage</a></span>
    981 <div class="licence">
    982 <pre>(WebKit doesn't distribute an explicit license.  This LICENSE is derived from
    983 license text in the source.)
    984 
    985 Copyright (c) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
    986 2006, 2007 Alexander Kellett, Alexey Proskuryakov, Alex Mathews, Allan
    987 Sandfeld Jensen, Alp Toker, Anders Carlsson, Andrew Wellington, Antti
    988 Koivisto, Apple Inc., Arthur Langereis, Baron Schwartz, Bjoern Graf,
    989 Brent Fulgham, Cameron Zwarich, Charles Samuels, Christian Dywan,
    990 Collabora Ltd., Cyrus Patel, Daniel Molkentin, Dave Maclachlan, David
    991 Smith, Dawit Alemayehu, Dirk Mueller, Dirk Schulze, Don Gibson, Enrico
    992 Ros, Eric Seidel, Frederik Holljen, Frerich Raabe, Friedmann Kleint,
    993 George Staikos, Google Inc., Graham Dennis, Harri Porten, Henry Mason,
    994 Hiroyuki Ikezoe, Holger Hans Peter Freyther, IBM, James G. Speth, Jan
    995 Alonzo, Jean-Loup Gailly, John Reis, Jonas Witt, Jon Shier, Jonas
    996 Witt, Julien Chaffraix, Justin Haygood, Kevin Ollivier, Kevin Watters,
    997 Kimmo Kinnunen, Kouhei Sutou, Krzysztof Kowalczyk, Lars Knoll, Luca
    998 Bruno, Maks Orlovich, Malte Starostik, Mark Adler, Martin Jones,
    999 Marvin Decker, Matt Lilek, Michael Emmel, Mitz Pettel, mozilla.org,
   1000 Netscape Communications Corporation, Nicholas Shanks, Nikolas
   1001 Zimmermann, Nokia, Oliver Hunt, Opened Hand, Paul Johnston, Peter
   1002 Kelly, Pioneer Research Center USA, Rich Moore, Rob Buis, Robin Dunn,
   1003 Ronald Tschalr, Samuel Weinig, Simon Hausmann, Staikos Computing
   1004 Services Inc., Stefan Schimanski, Symantec Corporation, The Dojo
   1005 Foundation, The Karbon Developers, Thomas Boyer, Tim Copperfield,
   1006 Tobias Anton, Torben Weis, Trolltech, University of Cambridge, Vaclav
   1007 Slavik, Waldo Bastian, Xan Lopez, Zack Rusin
   1008 
   1009 The terms and conditions vary from file to file, but are one of:
   1010 
   1011 Redistribution and use in source and binary forms, with or without
   1012 modification, are permitted provided that the following conditions are
   1013 met:
   1014 
   1015 1. Redistributions of source code must retain the above copyright
   1016    notice, this list of conditions and the following disclaimer.
   1017 
   1018 2. Redistributions in binary form must reproduce the above copyright
   1019    notice, this list of conditions and the following disclaimer in the
   1020    documentation and/or other materials provided with the
   1021    distribution.
   1022 
   1023 *OR*
   1024 
   1025 Redistribution and use in source and binary forms, with or without
   1026 modification, are permitted provided that the following conditions are
   1027 met:
   1028 
   1029 1. Redistributions of source code must retain the above copyright
   1030    notice, this list of conditions and the following disclaimer.
   1031 2. Redistributions in binary form must reproduce the above copyright
   1032    notice, this list of conditions and the following disclaimer in the
   1033    documentation and/or other materials provided with the
   1034    distribution.
   1035 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
   1036    its contributors may be used to endorse or promote products derived
   1037    from this software without specific prior written permission.
   1038 
   1039 THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
   1040 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   1041 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
   1042 PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
   1043 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
   1044 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
   1045 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
   1046 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
   1047 
   1048 OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   1049 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
   1050 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   1051 
   1052 
   1053                   GNU LIBRARY GENERAL PUBLIC LICENSE
   1054                        Version 2, June 1991
   1055 
   1056  Copyright (C) 1991 Free Software Foundation, Inc.
   1057  51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
   1058  Everyone is permitted to copy and distribute verbatim copies
   1059  of this license document, but changing it is not allowed.
   1060 
   1061 [This is the first released version of the library GPL.  It is
   1062  numbered 2 because it goes with version 2 of the ordinary GPL.]
   1063 
   1064                             Preamble
   1065 
   1066   The licenses for most software are designed to take away your
   1067 freedom to share and change it.  By contrast, the GNU General Public
   1068 Licenses are intended to guarantee your freedom to share and change
   1069 free software--to make sure the software is free for all its users.
   1070 
   1071   This license, the Library General Public License, applies to some
   1072 specially designated Free Software Foundation software, and to any
   1073 other libraries whose authors decide to use it.  You can use it for
   1074 your libraries, too.
   1075 
   1076   When we speak of free software, we are referring to freedom, not
   1077 price.  Our General Public Licenses are designed to make sure that you
   1078 have the freedom to distribute copies of free software (and charge for
   1079 this service if you wish), that you receive source code or can get it
   1080 if you want it, that you can change the software or use pieces of it
   1081 in new free programs; and that you know you can do these things.
   1082 
   1083   To protect your rights, we need to make restrictions that forbid
   1084 anyone to deny you these rights or to ask you to surrender the rights.
   1085 These restrictions translate to certain responsibilities for you if
   1086 you distribute copies of the library, or if you modify it.
   1087 
   1088   For example, if you distribute copies of the library, whether gratis
   1089 or for a fee, you must give the recipients all the rights that we gave
   1090 you.  You must make sure that they, too, receive or can get the source
   1091 code.  If you link a program with the library, you must provide
   1092 complete object files to the recipients so that they can relink them
   1093 with the library, after making changes to the library and recompiling
   1094 it.  And you must show them these terms so they know their rights.
   1095 
   1096   Our method of protecting your rights has two steps: (1) copyright
   1097 the library, and (2) offer you this license which gives you legal
   1098 permission to copy, distribute and/or modify the library.
   1099 
   1100   Also, for each distributor's protection, we want to make certain
   1101 that everyone understands that there is no warranty for this free
   1102 library.  If the library is modified by someone else and passed on, we
   1103 want its recipients to know that what they have is not the original
   1104 version, so that any problems introduced by others will not reflect on
   1105 the original authors' reputations.
   1106 
   1108   Finally, any free program is threatened constantly by software
   1109 patents.  We wish to avoid the danger that companies distributing free
   1110 software will individually obtain patent licenses, thus in effect
   1111 transforming the program into proprietary software.  To prevent this,
   1112 we have made it clear that any patent must be licensed for everyone's
   1113 free use or not licensed at all.
   1114 
   1115   Most GNU software, including some libraries, is covered by the ordinary
   1116 GNU General Public License, which was designed for utility programs.  This
   1117 license, the GNU Library General Public License, applies to certain
   1118 designated libraries.  This license is quite different from the ordinary
   1119 one; be sure to read it in full, and don't assume that anything in it is
   1120 the same as in the ordinary license.
   1121 
   1122   The reason we have a separate public license for some libraries is that
   1123 they blur the distinction we usually make between modifying or adding to a
   1124 program and simply using it.  Linking a program with a library, without
   1125 changing the library, is in some sense simply using the library, and is
   1126 analogous to running a utility program or application program.  However, in
   1127 a textual and legal sense, the linked executable is a combined work, a
   1128 derivative of the original library, and the ordinary General Public License
   1129 treats it as such.
   1130 
   1131   Because of this blurred distinction, using the ordinary General
   1132 Public License for libraries did not effectively promote software
   1133 sharing, because most developers did not use the libraries.  We
   1134 concluded that weaker conditions might promote sharing better.
   1135 
   1136   However, unrestricted linking of non-free programs would deprive the
   1137 users of those programs of all benefit from the free status of the
   1138 libraries themselves.  This Library General Public License is intended to
   1139 permit developers of non-free programs to use free libraries, while
   1140 preserving your freedom as a user of such programs to change the free
   1141 libraries that are incorporated in them.  (We have not seen how to achieve
   1142 this as regards changes in header files, but we have achieved it as regards
   1143 changes in the actual functions of the Library.)  The hope is that this
   1144 will lead to faster development of free libraries.
   1145 
   1146   The precise terms and conditions for copying, distribution and
   1147 modification follow.  Pay close attention to the difference between a
   1148 "work based on the library" and a "work that uses the library".  The
   1149 former contains code derived from the library, while the latter only
   1150 works together with the library.
   1151 
   1152   Note that it is possible for a library to be covered by the ordinary
   1153 General Public License rather than by this special one.
   1154 
   1156                   GNU LIBRARY GENERAL PUBLIC LICENSE
   1157    TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
   1158 
   1159   0. This License Agreement applies to any software library which
   1160 contains a notice placed by the copyright holder or other authorized
   1161 party saying it may be distributed under the terms of this Library
   1162 General Public License (also called "this License").  Each licensee is
   1163 addressed as "you".
   1164 
   1165   A "library" means a collection of software functions and/or data
   1166 prepared so as to be conveniently linked with application programs
   1167 (which use some of those functions and data) to form executables.
   1168 
   1169   The "Library", below, refers to any such software library or work
   1170 which has been distributed under these terms.  A "work based on the
   1171 Library" means either the Library or any derivative work under
   1172 copyright law: that is to say, a work containing the Library or a
   1173 portion of it, either verbatim or with modifications and/or translated
   1174 straightforwardly into another language.  (Hereinafter, translation is
   1175 included without limitation in the term "modification".)
   1176 
   1177   "Source code" for a work means the preferred form of the work for
   1178 making modifications to it.  For a library, complete source code means
   1179 all the source code for all modules it contains, plus any associated
   1180 interface definition files, plus the scripts used to control compilation
   1181 and installation of the library.
   1182 
   1183   Activities other than copying, distribution and modification are not
   1184 covered by this License; they are outside its scope.  The act of
   1185 running a program using the Library is not restricted, and output from
   1186 such a program is covered only if its contents constitute a work based
   1187 on the Library (independent of the use of the Library in a tool for
   1188 writing it).  Whether that is true depends on what the Library does
   1189 and what the program that uses the Library does.
   1190   
   1191   1. You may copy and distribute verbatim copies of the Library's
   1192 complete source code as you receive it, in any medium, provided that
   1193 you conspicuously and appropriately publish on each copy an
   1194 appropriate copyright notice and disclaimer of warranty; keep intact
   1195 all the notices that refer to this License and to the absence of any
   1196 warranty; and distribute a copy of this License along with the
   1197 Library.
   1198 
   1199   You may charge a fee for the physical act of transferring a copy,
   1200 and you may at your option offer warranty protection in exchange for a
   1201 fee.
   1202 
   1204   2. You may modify your copy or copies of the Library or any portion
   1205 of it, thus forming a work based on the Library, and copy and
   1206 distribute such modifications or work under the terms of Section 1
   1207 above, provided that you also meet all of these conditions:
   1208 
   1209     a) The modified work must itself be a software library.
   1210 
   1211     b) You must cause the files modified to carry prominent notices
   1212     stating that you changed the files and the date of any change.
   1213 
   1214     c) You must cause the whole of the work to be licensed at no
   1215     charge to all third parties under the terms of this License.
   1216 
   1217     d) If a facility in the modified Library refers to a function or a
   1218     table of data to be supplied by an application program that uses
   1219     the facility, other than as an argument passed when the facility
   1220     is invoked, then you must make a good faith effort to ensure that,
   1221     in the event an application does not supply such function or
   1222     table, the facility still operates, and performs whatever part of
   1223     its purpose remains meaningful.
   1224 
   1225     (For example, a function in a library to compute square roots has
   1226     a purpose that is entirely well-defined independent of the
   1227     application.  Therefore, Subsection 2d requires that any
   1228     application-supplied function or table used by this function must
   1229     be optional: if the application does not supply it, the square
   1230     root function must still compute square roots.)
   1231 
   1232 These requirements apply to the modified work as a whole.  If
   1233 identifiable sections of that work are not derived from the Library,
   1234 and can be reasonably considered independent and separate works in
   1235 themselves, then this License, and its terms, do not apply to those
   1236 sections when you distribute them as separate works.  But when you
   1237 distribute the same sections as part of a whole which is a work based
   1238 on the Library, the distribution of the whole must be on the terms of
   1239 this License, whose permissions for other licensees extend to the
   1240 entire whole, and thus to each and every part regardless of who wrote
   1241 it.
   1242 
   1243 Thus, it is not the intent of this section to claim rights or contest
   1244 your rights to work written entirely by you; rather, the intent is to
   1245 exercise the right to control the distribution of derivative or
   1246 collective works based on the Library.
   1247 
   1248 In addition, mere aggregation of another work not based on the Library
   1249 with the Library (or with a work based on the Library) on a volume of
   1250 a storage or distribution medium does not bring the other work under
   1251 the scope of this License.
   1252 
   1253   3. You may opt to apply the terms of the ordinary GNU General Public
   1254 License instead of this License to a given copy of the Library.  To do
   1255 this, you must alter all the notices that refer to this License, so
   1256 that they refer to the ordinary GNU General Public License, version 2,
   1257 instead of to this License.  (If a newer version than version 2 of the
   1258 ordinary GNU General Public License has appeared, then you can specify
   1259 that version instead if you wish.)  Do not make any other change in
   1260 these notices.
   1261 
   1263   Once this change is made in a given copy, it is irreversible for
   1264 that copy, so the ordinary GNU General Public License applies to all
   1265 subsequent copies and derivative works made from that copy.
   1266 
   1267   This option is useful when you wish to copy part of the code of
   1268 the Library into a program that is not a library.
   1269 
   1270   4. You may copy and distribute the Library (or a portion or
   1271 derivative of it, under Section 2) in object code or executable form
   1272 under the terms of Sections 1 and 2 above provided that you accompany
   1273 it with the complete corresponding machine-readable source code, which
   1274 must be distributed under the terms of Sections 1 and 2 above on a
   1275 medium customarily used for software interchange.
   1276 
   1277   If distribution of object code is made by offering access to copy
   1278 from a designated place, then offering equivalent access to copy the
   1279 source code from the same place satisfies the requirement to
   1280 distribute the source code, even though third parties are not
   1281 compelled to copy the source along with the object code.
   1282 
   1283   5. A program that contains no derivative of any portion of the
   1284 Library, but is designed to work with the Library by being compiled or
   1285 linked with it, is called a "work that uses the Library".  Such a
   1286 work, in isolation, is not a derivative work of the Library, and
   1287 therefore falls outside the scope of this License.
   1288 
   1289   However, linking a "work that uses the Library" with the Library
   1290 creates an executable that is a derivative of the Library (because it
   1291 contains portions of the Library), rather than a "work that uses the
   1292 library".  The executable is therefore covered by this License.
   1293 Section 6 states terms for distribution of such executables.
   1294 
   1295   When a "work that uses the Library" uses material from a header file
   1296 that is part of the Library, the object code for the work may be a
   1297 derivative work of the Library even though the source code is not.
   1298 Whether this is true is especially significant if the work can be
   1299 linked without the Library, or if the work is itself a library.  The
   1300 threshold for this to be true is not precisely defined by law.
   1301 
   1302   If such an object file uses only numerical parameters, data
   1303 structure layouts and accessors, and small macros and small inline
   1304 functions (ten lines or less in length), then the use of the object
   1305 file is unrestricted, regardless of whether it is legally a derivative
   1306 work.  (Executables containing this object code plus portions of the
   1307 Library will still fall under Section 6.)
   1308 
   1309   Otherwise, if the work is a derivative of the Library, you may
   1310 distribute the object code for the work under the terms of Section 6.
   1311 Any executables containing that work also fall under Section 6,
   1312 whether or not they are linked directly with the Library itself.
   1313 
   1315   6. As an exception to the Sections above, you may also compile or
   1316 link a "work that uses the Library" with the Library to produce a
   1317 work containing portions of the Library, and distribute that work
   1318 under terms of your choice, provided that the terms permit
   1319 modification of the work for the customer's own use and reverse
   1320 engineering for debugging such modifications.
   1321 
   1322   You must give prominent notice with each copy of the work that the
   1323 Library is used in it and that the Library and its use are covered by
   1324 this License.  You must supply a copy of this License.  If the work
   1325 during execution displays copyright notices, you must include the
   1326 copyright notice for the Library among them, as well as a reference
   1327 directing the user to the copy of this License.  Also, you must do one
   1328 of these things:
   1329 
   1330     a) Accompany the work with the complete corresponding
   1331     machine-readable source code for the Library including whatever
   1332     changes were used in the work (which must be distributed under
   1333     Sections 1 and 2 above); and, if the work is an executable linked
   1334     with the Library, with the complete machine-readable "work that
   1335     uses the Library", as object code and/or source code, so that the
   1336     user can modify the Library and then relink to produce a modified
   1337     executable containing the modified Library.  (It is understood
   1338     that the user who changes the contents of definitions files in the
   1339     Library will not necessarily be able to recompile the application
   1340     to use the modified definitions.)
   1341 
   1342     b) Accompany the work with a written offer, valid for at
   1343     least three years, to give the same user the materials
   1344     specified in Subsection 6a, above, for a charge no more
   1345     than the cost of performing this distribution.
   1346 
   1347     c) If distribution of the work is made by offering access to copy
   1348     from a designated place, offer equivalent access to copy the above
   1349     specified materials from the same place.
   1350 
   1351     d) Verify that the user has already received a copy of these
   1352     materials or that you have already sent this user a copy.
   1353 
   1354   For an executable, the required form of the "work that uses the
   1355 Library" must include any data and utility programs needed for
   1356 reproducing the executable from it.  However, as a special exception,
   1357 the source code distributed need not include anything that is normally
   1358 distributed (in either source or binary form) with the major
   1359 components (compiler, kernel, and so on) of the operating system on
   1360 which the executable runs, unless that component itself accompanies
   1361 the executable.
   1362 
   1363   It may happen that this requirement contradicts the license
   1364 restrictions of other proprietary libraries that do not normally
   1365 accompany the operating system.  Such a contradiction means you cannot
   1366 use both them and the Library together in an executable that you
   1367 distribute.
   1368 
   1370   7. You may place library facilities that are a work based on the
   1371 Library side-by-side in a single library together with other library
   1372 facilities not covered by this License, and distribute such a combined
   1373 library, provided that the separate distribution of the work based on
   1374 the Library and of the other library facilities is otherwise
   1375 permitted, and provided that you do these two things:
   1376 
   1377     a) Accompany the combined library with a copy of the same work
   1378     based on the Library, uncombined with any other library
   1379     facilities.  This must be distributed under the terms of the
   1380     Sections above.
   1381 
   1382     b) Give prominent notice with the combined library of the fact
   1383     that part of it is a work based on the Library, and explaining
   1384     where to find the accompanying uncombined form of the same work.
   1385 
   1386   8. You may not copy, modify, sublicense, link with, or distribute
   1387 the Library except as expressly provided under this License.  Any
   1388 attempt otherwise to copy, modify, sublicense, link with, or
   1389 distribute the Library is void, and will automatically terminate your
   1390 rights under this License.  However, parties who have received copies,
   1391 or rights, from you under this License will not have their licenses
   1392 terminated so long as such parties remain in full compliance.
   1393 
   1394   9. You are not required to accept this License, since you have not
   1395 signed it.  However, nothing else grants you permission to modify or
   1396 distribute the Library or its derivative works.  These actions are
   1397 prohibited by law if you do not accept this License.  Therefore, by
   1398 modifying or distributing the Library (or any work based on the
   1399 Library), you indicate your acceptance of this License to do so, and
   1400 all its terms and conditions for copying, distributing or modifying
   1401 the Library or works based on it.
   1402 
   1403   10. Each time you redistribute the Library (or any work based on the
   1404 Library), the recipient automatically receives a license from the
   1405 original licensor to copy, distribute, link with or modify the Library
   1406 subject to these terms and conditions.  You may not impose any further
   1407 restrictions on the recipients' exercise of the rights granted herein.
   1408 You are not responsible for enforcing compliance by third parties to
   1409 this License.
   1410 
   1412   11. If, as a consequence of a court judgment or allegation of patent
   1413 infringement or for any other reason (not limited to patent issues),
   1414 conditions are imposed on you (whether by court order, agreement or
   1415 otherwise) that contradict the conditions of this License, they do not
   1416 excuse you from the conditions of this License.  If you cannot
   1417 distribute so as to satisfy simultaneously your obligations under this
   1418 License and any other pertinent obligations, then as a consequence you
   1419 may not distribute the Library at all.  For example, if a patent
   1420 license would not permit royalty-free redistribution of the Library by
   1421 all those who receive copies directly or indirectly through you, then
   1422 the only way you could satisfy both it and this License would be to
   1423 refrain entirely from distribution of the Library.
   1424 
   1425 If any portion of this section is held invalid or unenforceable under any
   1426 particular circumstance, the balance of the section is intended to apply,
   1427 and the section as a whole is intended to apply in other circumstances.
   1428 
   1429 It is not the purpose of this section to induce you to infringe any
   1430 patents or other property right claims or to contest validity of any
   1431 such claims; this section has the sole purpose of protecting the
   1432 integrity of the free software distribution system which is
   1433 implemented by public license practices.  Many people have made
   1434 generous contributions to the wide range of software distributed
   1435 through that system in reliance on consistent application of that
   1436 system; it is up to the author/donor to decide if he or she is willing
   1437 to distribute software through any other system and a licensee cannot
   1438 impose that choice.
   1439 
   1440 This section is intended to make thoroughly clear what is believed to
   1441 be a consequence of the rest of this License.
   1442 
   1443   12. If the distribution and/or use of the Library is restricted in
   1444 certain countries either by patents or by copyrighted interfaces, the
   1445 original copyright holder who places the Library under this License may add
   1446 an explicit geographical distribution limitation excluding those countries,
   1447 so that distribution is permitted only in or among countries not thus
   1448 excluded.  In such case, this License incorporates the limitation as if
   1449 written in the body of this License.
   1450 
   1451   13. The Free Software Foundation may publish revised and/or new
   1452 versions of the Library General Public License from time to time.
   1453 Such new versions will be similar in spirit to the present version,
   1454 but may differ in detail to address new problems or concerns.
   1455 
   1456 Each version is given a distinguishing version number.  If the Library
   1457 specifies a version number of this License which applies to it and
   1458 "any later version", you have the option of following the terms and
   1459 conditions either of that version or of any later version published by
   1460 the Free Software Foundation.  If the Library does not specify a
   1461 license version number, you may choose any version ever published by
   1462 the Free Software Foundation.
   1463 
   1465   14. If you wish to incorporate parts of the Library into other free
   1466 programs whose distribution conditions are incompatible with these,
   1467 write to the author to ask for permission.  For software which is
   1468 copyrighted by the Free Software Foundation, write to the Free
   1469 Software Foundation; we sometimes make exceptions for this.  Our
   1470 decision will be guided by the two goals of preserving the free status
   1471 of all derivatives of our free software and of promoting the sharing
   1472 and reuse of software generally.
   1473 
   1474                             NO WARRANTY
   1475 
   1476   15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
   1477 WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
   1478 EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
   1479 OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
   1480 KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
   1481 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
   1482 PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
   1483 LIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
   1484 THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
   1485 
   1486   16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
   1487 WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
   1488 AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
   1489 FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
   1490 CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
   1491 LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
   1492 RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
   1493 FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
   1494 SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
   1495 DAMAGES.
   1496 
   1497                      END OF TERMS AND CONDITIONS
   1498 
   1499                   GNU LESSER GENERAL PUBLIC LICENSE
   1500                        Version 2.1, February 1999
   1501 
   1502  Copyright (C) 1991, 1999 Free Software Foundation, Inc.
   1503  51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
   1504  Everyone is permitted to copy and distribute verbatim copies
   1505  of this license document, but changing it is not allowed.
   1506 
   1507 [This is the first released version of the Lesser GPL.  It also counts
   1508  as the successor of the GNU Library Public License, version 2, hence
   1509  the version number 2.1.]
   1510 
   1511                             Preamble
   1512 
   1513   The licenses for most software are designed to take away your
   1514 freedom to share and change it.  By contrast, the GNU General Public
   1515 Licenses are intended to guarantee your freedom to share and change
   1516 free software--to make sure the software is free for all its users.
   1517 
   1518   This license, the Lesser General Public License, applies to some
   1519 specially designated software packages--typically libraries--of the
   1520 Free Software Foundation and other authors who decide to use it.  You
   1521 can use it too, but we suggest you first think carefully about whether
   1522 this license or the ordinary General Public License is the better
   1523 strategy to use in any particular case, based on the explanations below.
   1524 
   1525   When we speak of free software, we are referring to freedom of use,
   1526 not price.  Our General Public Licenses are designed to make sure that
   1527 you have the freedom to distribute copies of free software (and charge
   1528 for this service if you wish); that you receive source code or can get
   1529 it if you want it; that you can change the software and use pieces of
   1530 it in new free programs; and that you are informed that you can do
   1531 these things.
   1532 
   1533   To protect your rights, we need to make restrictions that forbid
   1534 distributors to deny you these rights or to ask you to surrender these
   1535 rights.  These restrictions translate to certain responsibilities for
   1536 you if you distribute copies of the library or if you modify it.
   1537 
   1538   For example, if you distribute copies of the library, whether gratis
   1539 or for a fee, you must give the recipients all the rights that we gave
   1540 you.  You must make sure that they, too, receive or can get the source
   1541 code.  If you link other code with the library, you must provide
   1542 complete object files to the recipients, so that they can relink them
   1543 with the library after making changes to the library and recompiling
   1544 it.  And you must show them these terms so they know their rights.
   1545 
   1546   We protect your rights with a two-step method: (1) we copyright the
   1547 library, and (2) we offer you this license, which gives you legal
   1548 permission to copy, distribute and/or modify the library.
   1549 
   1550   To protect each distributor, we want to make it very clear that
   1551 there is no warranty for the free library.  Also, if the library is
   1552 modified by someone else and passed on, the recipients should know
   1553 that what they have is not the original version, so that the original
   1554 author's reputation will not be affected by problems that might be
   1555 introduced by others.
   1556 
   1558   Finally, software patents pose a constant threat to the existence of
   1559 any free program.  We wish to make sure that a company cannot
   1560 effectively restrict the users of a free program by obtaining a
   1561 restrictive license from a patent holder.  Therefore, we insist that
   1562 any patent license obtained for a version of the library must be
   1563 consistent with the full freedom of use specified in this license.
   1564 
   1565   Most GNU software, including some libraries, is covered by the
   1566 ordinary GNU General Public License.  This license, the GNU Lesser
   1567 General Public License, applies to certain designated libraries, and
   1568 is quite different from the ordinary General Public License.  We use
   1569 this license for certain libraries in order to permit linking those
   1570 libraries into non-free programs.
   1571 
   1572   When a program is linked with a library, whether statically or using
   1573 a shared library, the combination of the two is legally speaking a
   1574 combined work, a derivative of the original library.  The ordinary
   1575 General Public License therefore permits such linking only if the
   1576 entire combination fits its criteria of freedom.  The Lesser General
   1577 Public License permits more lax criteria for linking other code with
   1578 the library.
   1579 
   1580   We call this license the "Lesser" General Public License because it
   1581 does Less to protect the user's freedom than the ordinary General
   1582 Public License.  It also provides other free software developers Less
   1583 of an advantage over competing non-free programs.  These disadvantages
   1584 are the reason we use the ordinary General Public License for many
   1585 libraries.  However, the Lesser license provides advantages in certain
   1586 special circumstances.
   1587 
   1588   For example, on rare occasions, there may be a special need to
   1589 encourage the widest possible use of a certain library, so that it becomes
   1590 a de-facto standard.  To achieve this, non-free programs must be
   1591 allowed to use the library.  A more frequent case is that a free
   1592 library does the same job as widely used non-free libraries.  In this
   1593 case, there is little to gain by limiting the free library to free
   1594 software only, so we use the Lesser General Public License.
   1595 
   1596   In other cases, permission to use a particular library in non-free
   1597 programs enables a greater number of people to use a large body of
   1598 free software.  For example, permission to use the GNU C Library in
   1599 non-free programs enables many more people to use the whole GNU
   1600 operating system, as well as its variant, the GNU/Linux operating
   1601 system.
   1602 
   1603   Although the Lesser General Public License is Less protective of the
   1604 users' freedom, it does ensure that the user of a program that is
   1605 linked with the Library has the freedom and the wherewithal to run
   1606 that program using a modified version of the Library.
   1607 
   1608   The precise terms and conditions for copying, distribution and
   1609 modification follow.  Pay close attention to the difference between a
   1610 "work based on the library" and a "work that uses the library".  The
   1611 former contains code derived from the library, whereas the latter must
   1612 be combined with the library in order to run.
   1613 
   1615                   GNU LESSER GENERAL PUBLIC LICENSE
   1616    TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
   1617 
   1618   0. This License Agreement applies to any software library or other
   1619 program which contains a notice placed by the copyright holder or
   1620 other authorized party saying it may be distributed under the terms of
   1621 this Lesser General Public License (also called "this License").
   1622 Each licensee is addressed as "you".
   1623 
   1624   A "library" means a collection of software functions and/or data
   1625 prepared so as to be conveniently linked with application programs
   1626 (which use some of those functions and data) to form executables.
   1627 
   1628   The "Library", below, refers to any such software library or work
   1629 which has been distributed under these terms.  A "work based on the
   1630 Library" means either the Library or any derivative work under
   1631 copyright law: that is to say, a work containing the Library or a
   1632 portion of it, either verbatim or with modifications and/or translated
   1633 straightforwardly into another language.  (Hereinafter, translation is
   1634 included without limitation in the term "modification".)
   1635 
   1636   "Source code" for a work means the preferred form of the work for
   1637 making modifications to it.  For a library, complete source code means
   1638 all the source code for all modules it contains, plus any associated
   1639 interface definition files, plus the scripts used to control compilation
   1640 and installation of the library.
   1641 
   1642   Activities other than copying, distribution and modification are not
   1643 covered by this License; they are outside its scope.  The act of
   1644 running a program using the Library is not restricted, and output from
   1645 such a program is covered only if its contents constitute a work based
   1646 on the Library (independent of the use of the Library in a tool for
   1647 writing it).  Whether that is true depends on what the Library does
   1648 and what the program that uses the Library does.
   1649 
   1650   1. You may copy and distribute verbatim copies of the Library's
   1651 complete source code as you receive it, in any medium, provided that
   1652 you conspicuously and appropriately publish on each copy an
   1653 appropriate copyright notice and disclaimer of warranty; keep intact
   1654 all the notices that refer to this License and to the absence of any
   1655 warranty; and distribute a copy of this License along with the
   1656 Library.
   1657 
   1658   You may charge a fee for the physical act of transferring a copy,
   1659 and you may at your option offer warranty protection in exchange for a
   1660 fee.
   1661 
   1663   2. You may modify your copy or copies of the Library or any portion
   1664 of it, thus forming a work based on the Library, and copy and
   1665 distribute such modifications or work under the terms of Section 1
   1666 above, provided that you also meet all of these conditions:
   1667 
   1668     a) The modified work must itself be a software library.
   1669 
   1670     b) You must cause the files modified to carry prominent notices
   1671     stating that you changed the files and the date of any change.
   1672 
   1673     c) You must cause the whole of the work to be licensed at no
   1674     charge to all third parties under the terms of this License.
   1675 
   1676     d) If a facility in the modified Library refers to a function or a
   1677     table of data to be supplied by an application program that uses
   1678     the facility, other than as an argument passed when the facility
   1679     is invoked, then you must make a good faith effort to ensure that,
   1680     in the event an application does not supply such function or
   1681     table, the facility still operates, and performs whatever part of
   1682     its purpose remains meaningful.
   1683 
   1684     (For example, a function in a library to compute square roots has
   1685     a purpose that is entirely well-defined independent of the
   1686     application.  Therefore, Subsection 2d requires that any
   1687     application-supplied function or table used by this function must
   1688     be optional: if the application does not supply it, the square
   1689     root function must still compute square roots.)
   1690 
   1691 These requirements apply to the modified work as a whole.  If
   1692 identifiable sections of that work are not derived from the Library,
   1693 and can be reasonably considered independent and separate works in
   1694 themselves, then this License, and its terms, do not apply to those
   1695 sections when you distribute them as separate works.  But when you
   1696 distribute the same sections as part of a whole which is a work based
   1697 on the Library, the distribution of the whole must be on the terms of
   1698 this License, whose permissions for other licensees extend to the
   1699 entire whole, and thus to each and every part regardless of who wrote
   1700 it.
   1701 
   1702 Thus, it is not the intent of this section to claim rights or contest
   1703 your rights to work written entirely by you; rather, the intent is to
   1704 exercise the right to control the distribution of derivative or
   1705 collective works based on the Library.
   1706 
   1707 In addition, mere aggregation of another work not based on the Library
   1708 with the Library (or with a work based on the Library) on a volume of
   1709 a storage or distribution medium does not bring the other work under
   1710 the scope of this License.
   1711 
   1712   3. You may opt to apply the terms of the ordinary GNU General Public
   1713 License instead of this License to a given copy of the Library.  To do
   1714 this, you must alter all the notices that refer to this License, so
   1715 that they refer to the ordinary GNU General Public License, version 2,
   1716 instead of to this License.  (If a newer version than version 2 of the
   1717 ordinary GNU General Public License has appeared, then you can specify
   1718 that version instead if you wish.)  Do not make any other change in
   1719 these notices.
   1720 
   1722   Once this change is made in a given copy, it is irreversible for
   1723 that copy, so the ordinary GNU General Public License applies to all
   1724 subsequent copies and derivative works made from that copy.
   1725 
   1726   This option is useful when you wish to copy part of the code of
   1727 the Library into a program that is not a library.
   1728 
   1729   4. You may copy and distribute the Library (or a portion or
   1730 derivative of it, under Section 2) in object code or executable form
   1731 under the terms of Sections 1 and 2 above provided that you accompany
   1732 it with the complete corresponding machine-readable source code, which
   1733 must be distributed under the terms of Sections 1 and 2 above on a
   1734 medium customarily used for software interchange.
   1735 
   1736   If distribution of object code is made by offering access to copy
   1737 from a designated place, then offering equivalent access to copy the
   1738 source code from the same place satisfies the requirement to
   1739 distribute the source code, even though third parties are not
   1740 compelled to copy the source along with the object code.
   1741 
   1742   5. A program that contains no derivative of any portion of the
   1743 Library, but is designed to work with the Library by being compiled or
   1744 linked with it, is called a "work that uses the Library".  Such a
   1745 work, in isolation, is not a derivative work of the Library, and
   1746 therefore falls outside the scope of this License.
   1747 
   1748   However, linking a "work that uses the Library" with the Library
   1749 creates an executable that is a derivative of the Library (because it
   1750 contains portions of the Library), rather than a "work that uses the
   1751 library".  The executable is therefore covered by this License.
   1752 Section 6 states terms for distribution of such executables.
   1753 
   1754   When a "work that uses the Library" uses material from a header file
   1755 that is part of the Library, the object code for the work may be a
   1756 derivative work of the Library even though the source code is not.
   1757 Whether this is true is especially significant if the work can be
   1758 linked without the Library, or if the work is itself a library.  The
   1759 threshold for this to be true is not precisely defined by law.
   1760 
   1761   If such an object file uses only numerical parameters, data
   1762 structure layouts and accessors, and small macros and small inline
   1763 functions (ten lines or less in length), then the use of the object
   1764 file is unrestricted, regardless of whether it is legally a derivative
   1765 work.  (Executables containing this object code plus portions of the
   1766 Library will still fall under Section 6.)
   1767 
   1768   Otherwise, if the work is a derivative of the Library, you may
   1769 distribute the object code for the work under the terms of Section 6.
   1770 Any executables containing that work also fall under Section 6,
   1771 whether or not they are linked directly with the Library itself.
   1772 
   1774   6. As an exception to the Sections above, you may also combine or
   1775 link a "work that uses the Library" with the Library to produce a
   1776 work containing portions of the Library, and distribute that work
   1777 under terms of your choice, provided that the terms permit
   1778 modification of the work for the customer's own use and reverse
   1779 engineering for debugging such modifications.
   1780 
   1781   You must give prominent notice with each copy of the work that the
   1782 Library is used in it and that the Library and its use are covered by
   1783 this License.  You must supply a copy of this License.  If the work
   1784 during execution displays copyright notices, you must include the
   1785 copyright notice for the Library among them, as well as a reference
   1786 directing the user to the copy of this License.  Also, you must do one
   1787 of these things:
   1788 
   1789     a) Accompany the work with the complete corresponding
   1790     machine-readable source code for the Library including whatever
   1791     changes were used in the work (which must be distributed under
   1792     Sections 1 and 2 above); and, if the work is an executable linked
   1793     with the Library, with the complete machine-readable "work that
   1794     uses the Library", as object code and/or source code, so that the
   1795     user can modify the Library and then relink to produce a modified
   1796     executable containing the modified Library.  (It is understood
   1797     that the user who changes the contents of definitions files in the
   1798     Library will not necessarily be able to recompile the application
   1799     to use the modified definitions.)
   1800 
   1801     b) Use a suitable shared library mechanism for linking with the
   1802     Library.  A suitable mechanism is one that (1) uses at run time a
   1803     copy of the library already present on the user's computer system,
   1804     rather than copying library functions into the executable, and (2)
   1805     will operate properly with a modified version of the library, if
   1806     the user installs one, as long as the modified version is
   1807     interface-compatible with the version that the work was made with.
   1808 
   1809     c) Accompany the work with a written offer, valid for at
   1810     least three years, to give the same user the materials
   1811     specified in Subsection 6a, above, for a charge no more
   1812     than the cost of performing this distribution.
   1813 
   1814     d) If distribution of the work is made by offering access to copy
   1815     from a designated place, offer equivalent access to copy the above
   1816     specified materials from the same place.
   1817 
   1818     e) Verify that the user has already received a copy of these
   1819     materials or that you have already sent this user a copy.
   1820 
   1821   For an executable, the required form of the "work that uses the
   1822 Library" must include any data and utility programs needed for
   1823 reproducing the executable from it.  However, as a special exception,
   1824 the materials to be distributed need not include anything that is
   1825 normally distributed (in either source or binary form) with the major
   1826 components (compiler, kernel, and so on) of the operating system on
   1827 which the executable runs, unless that component itself accompanies
   1828 the executable.
   1829 
   1830   It may happen that this requirement contradicts the license
   1831 restrictions of other proprietary libraries that do not normally
   1832 accompany the operating system.  Such a contradiction means you cannot
   1833 use both them and the Library together in an executable that you
   1834 distribute.
   1835 
   1837   7. You may place library facilities that are a work based on the
   1838 Library side-by-side in a single library together with other library
   1839 facilities not covered by this License, and distribute such a combined
   1840 library, provided that the separate distribution of the work based on
   1841 the Library and of the other library facilities is otherwise
   1842 permitted, and provided that you do these two things:
   1843 
   1844     a) Accompany the combined library with a copy of the same work
   1845     based on the Library, uncombined with any other library
   1846     facilities.  This must be distributed under the terms of the
   1847     Sections above.
   1848 
   1849     b) Give prominent notice with the combined library of the fact
   1850     that part of it is a work based on the Library, and explaining
   1851     where to find the accompanying uncombined form of the same work.
   1852 
   1853   8. You may not copy, modify, sublicense, link with, or distribute
   1854 the Library except as expressly provided under this License.  Any
   1855 attempt otherwise to copy, modify, sublicense, link with, or
   1856 distribute the Library is void, and will automatically terminate your
   1857 rights under this License.  However, parties who have received copies,
   1858 or rights, from you under this License will not have their licenses
   1859 terminated so long as such parties remain in full compliance.
   1860 
   1861   9. You are not required to accept this License, since you have not
   1862 signed it.  However, nothing else grants you permission to modify or
   1863 distribute the Library or its derivative works.  These actions are
   1864 prohibited by law if you do not accept this License.  Therefore, by
   1865 modifying or distributing the Library (or any work based on the
   1866 Library), you indicate your acceptance of this License to do so, and
   1867 all its terms and conditions for copying, distributing or modifying
   1868 the Library or works based on it.
   1869 
   1870   10. Each time you redistribute the Library (or any work based on the
   1871 Library), the recipient automatically receives a license from the
   1872 original licensor to copy, distribute, link with or modify the Library
   1873 subject to these terms and conditions.  You may not impose any further
   1874 restrictions on the recipients' exercise of the rights granted herein.
   1875 You are not responsible for enforcing compliance by third parties with
   1876 this License.
   1877 
   1879   11. If, as a consequence of a court judgment or allegation of patent
   1880 infringement or for any other reason (not limited to patent issues),
   1881 conditions are imposed on you (whether by court order, agreement or
   1882 otherwise) that contradict the conditions of this License, they do not
   1883 excuse you from the conditions of this License.  If you cannot
   1884 distribute so as to satisfy simultaneously your obligations under this
   1885 License and any other pertinent obligations, then as a consequence you
   1886 may not distribute the Library at all.  For example, if a patent
   1887 license would not permit royalty-free redistribution of the Library by
   1888 all those who receive copies directly or indirectly through you, then
   1889 the only way you could satisfy both it and this License would be to
   1890 refrain entirely from distribution of the Library.
   1891 
   1892 If any portion of this section is held invalid or unenforceable under any
   1893 particular circumstance, the balance of the section is intended to apply,
   1894 and the section as a whole is intended to apply in other circumstances.
   1895 
   1896 It is not the purpose of this section to induce you to infringe any
   1897 patents or other property right claims or to contest validity of any
   1898 such claims; this section has the sole purpose of protecting the
   1899 integrity of the free software distribution system which is
   1900 implemented by public license practices.  Many people have made
   1901 generous contributions to the wide range of software distributed
   1902 through that system in reliance on consistent application of that
   1903 system; it is up to the author/donor to decide if he or she is willing
   1904 to distribute software through any other system and a licensee cannot
   1905 impose that choice.
   1906 
   1907 This section is intended to make thoroughly clear what is believed to
   1908 be a consequence of the rest of this License.
   1909 
   1910   12. If the distribution and/or use of the Library is restricted in
   1911 certain countries either by patents or by copyrighted interfaces, the
   1912 original copyright holder who places the Library under this License may add
   1913 an explicit geographical distribution limitation excluding those countries,
   1914 so that distribution is permitted only in or among countries not thus
   1915 excluded.  In such case, this License incorporates the limitation as if
   1916 written in the body of this License.
   1917 
   1918   13. The Free Software Foundation may publish revised and/or new
   1919 versions of the Lesser General Public License from time to time.
   1920 Such new versions will be similar in spirit to the present version,
   1921 but may differ in detail to address new problems or concerns.
   1922 
   1923 Each version is given a distinguishing version number.  If the Library
   1924 specifies a version number of this License which applies to it and
   1925 "any later version", you have the option of following the terms and
   1926 conditions either of that version or of any later version published by
   1927 the Free Software Foundation.  If the Library does not specify a
   1928 license version number, you may choose any version ever published by
   1929 the Free Software Foundation.
   1930 
   1932   14. If you wish to incorporate parts of the Library into other free
   1933 programs whose distribution conditions are incompatible with these,
   1934 write to the author to ask for permission.  For software which is
   1935 copyrighted by the Free Software Foundation, write to the Free
   1936 Software Foundation; we sometimes make exceptions for this.  Our
   1937 decision will be guided by the two goals of preserving the free status
   1938 of all derivatives of our free software and of promoting the sharing
   1939 and reuse of software generally.
   1940 
   1941                             NO WARRANTY
   1942 
   1943   15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
   1944 WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
   1945 EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
   1946 OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
   1947 KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
   1948 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
   1949 PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
   1950 LIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
   1951 THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
   1952 
   1953   16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
   1954 WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
   1955 AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
   1956 FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
   1957 CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
   1958 LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
   1959 RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
   1960 FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
   1961 SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
   1962 DAMAGES.
   1963 
   1964                      END OF TERMS AND CONDITIONS
   1965 </pre>
   1966 </div>
   1967 </div>
   1968 
   1969 
   1970 <div class="product">
   1971 <span class="title">ActiveX Scripting SDK</span>
   1972 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   1973 <span class="homepage"><a href="http://support.microsoft.com/kb/223389">homepage</a></span>
   1974 <div class="licence">
   1975 <pre>THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS
   1976 
   1977 PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.  MICROSOFT DISCLAIMS
   1978 
   1979 ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES
   1980 
   1981 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  IN NO
   1982 
   1983 EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR
   1984 
   1985 ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL,
   1986 
   1987 CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF
   1988 
   1989 MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE
   1990 
   1991 POSSIBILITY OF SUCH DAMAGES.  SOME STATES DO NOT ALLOW THE EXCLUSION
   1992 
   1993 OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES
   1994 
   1995 SO THE FOREGOING LIMITATION MAY NOT APPLY.
   1996 
   1997 
   1998 
   1999 MICROSOFT DOES NOT WARRANT THAT THE FUNCTIONS FOR THE LICENSED SOFTWARE 
   2000 
   2001 OR CODE CONTAINED IN THE KNOWLEDGE BASE WILL MEET YOUR REQUIREMENTS, OR 
   2002 
   2003 THAT THE OPERATION OF THE LICENSED SOFTWARE OR CODE WILL BE UNINTERRUPTED 
   2004 
   2005 OR ERROR-FREE, OR THAT DEFECTS IN THE LICENSED SOFTWARE OR CODE CAN BE 
   2006 
   2007 CORRECTED.  FURTHERMORE, MICROSOFT DOES NOT WARRANT OR MAKE ANY 
   2008 
   2009 REPRESENTATIONS REGARDING THE USE OR THE RESULTS OF THE USE OF THE LICENSED 
   2010 
   2011 SOFTWARE, CODE OR RELATED DOCUMENTATION IN TERMS OF THEIR CORRECTNESS, 
   2012 
   2013 ACCURACY, RELIABILITY, OR OTHERWISE.  NO ORAL OR WRITTEN INFORMATION OR ADVICE 
   2014 
   2015 GIVEN BY MICROSOFT OR ITS AUTHORIZED REPRESENTATIVES SHALL CREATE A WARRANTY 
   2016 
   2017 OR IN ANY WAY INCREASE THE SCOPE OF THIS WARRANTY.  SHOULD THE LICENSED 
   2018 
   2019 SOFTWARE OR CODE PROVE DEFECTIVE AFTER MICROSOFT HAS DELIVERED THE SAME, 
   2020 
   2021 YOU, AND YOU ALONE, SHALL ASSUME THE ENTIRE COST ASSOCIATED WITH ALL 
   2022 
   2023 NECESSARY SERVICING, REPAIR OR CORRECTION.
   2024 
   2025 
   2026 
   2027 </pre>
   2028 </div>
   2029 </div>
   2030 
   2031 
   2032 <div class="product">
   2033 <span class="title">Almost Native Graphics Layer Engine</span>
   2034 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   2035 <span class="homepage"><a href="http://code.google.com/p/angleproject/">homepage</a></span>
   2036 <div class="licence">
   2037 <pre>// Copyright (C) 2002-2010 The ANGLE Project Authors. 
   2038 // All rights reserved.
   2039 //
   2040 // Redistribution and use in source and binary forms, with or without
   2041 // modification, are permitted provided that the following conditions
   2042 // are met:
   2043 //
   2044 //     Redistributions of source code must retain the above copyright
   2045 //     notice, this list of conditions and the following disclaimer.
   2046 //
   2047 //     Redistributions in binary form must reproduce the above 
   2048 //     copyright notice, this list of conditions and the following
   2049 //     disclaimer in the documentation and/or other materials provided
   2050 //     with the distribution.
   2051 //
   2052 //     Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc.
   2053 //     Ltd., nor the names of their contributors may be used to endorse
   2054 //     or promote products derived from this software without specific
   2055 //     prior written permission.
   2056 //
   2057 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   2058 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
   2059 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
   2060 // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
   2061 // COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
   2062 // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
   2063 // BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
   2064 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
   2065 // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   2066 // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
   2067 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   2068 // POSSIBILITY OF SUCH DAMAGE.
   2069 </pre>
   2070 </div>
   2071 </div>
   2072 
   2073 
   2074 <div class="product">
   2075 <span class="title">Apple sample code</span>
   2076 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   2077 <span class="homepage"><a href="http://developer.apple.com/">homepage</a></span>
   2078 <div class="licence">
   2079 <pre>Disclaimer: IMPORTANT:  This Apple software is supplied to you by Apple
   2080 Inc. ("Apple") in consideration of your agreement to the following
   2081 terms, and your use, installation, modification or redistribution of
   2082 this Apple software constitutes acceptance of these terms.  If you do
   2083 not agree with these terms, please do not use, install, modify or
   2084 redistribute this Apple software.
   2085 
   2086 In consideration of your agreement to abide by the following terms, and
   2087 subject to these terms, Apple grants you a personal, non-exclusive
   2088 license, under Apple's copyrights in this original Apple software (the
   2089 "Apple Software"), to use, reproduce, modify and redistribute the Apple
   2090 Software, with or without modifications, in source and/or binary forms;
   2091 provided that if you redistribute the Apple Software in its entirety and
   2092 without modifications, you must retain this notice and the following
   2093 text and disclaimers in all such redistributions of the Apple Software.
   2094 Neither the name, trademarks, service marks or logos of Apple Inc. may
   2095 be used to endorse or promote products derived from the Apple Software
   2096 without specific prior written permission from Apple.  Except as
   2097 expressly stated in this notice, no other rights or licenses, express or
   2098 implied, are granted by Apple herein, including but not limited to any
   2099 patent rights that may be infringed by your derivative works or by other
   2100 works in which the Apple Software may be incorporated.
   2101 
   2102 The Apple Software is provided by Apple on an "AS IS" basis.  APPLE
   2103 MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION
   2104 THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS
   2105 FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND
   2106 OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
   2107 
   2108 IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL
   2109 OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   2110 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   2111 INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION,
   2112 MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED
   2113 AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
   2114 STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
   2115 POSSIBILITY OF SUCH DAMAGE.
   2116 
   2117 Copyright (C) 2009 Apple Inc. All Rights Reserved.</pre>
   2118 </div>
   2119 </div>
   2120 
   2121 
   2122 <div class="product">
   2123 <span class="title">Darwin</span>
   2124 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   2125 <span class="homepage"><a href="http://www.opensource.apple.com/">homepage</a></span>
   2126 <div class="licence">
   2127 <pre>APPLE PUBLIC SOURCE LICENSE Version 2.0 -  August 6, 2003
   2128 
   2129 Please read this License carefully before downloading this software.  By
   2130 downloading or using this software, you are agreeing to be bound by the terms of
   2131 this License.  If you do not or cannot agree to the terms of this License,
   2132 please do not download or use the software.
   2133 
   2134 Apple Note:  In January 2007, Apple changed its corporate name from "Apple
   2135 Computer, Inc." to "Apple Inc."  This change has been reflected below and
   2136 copyright years updated, but no other changes have been made to the APSL 2.0.
   2137 
   2138 1.	General; Definitions.  This License applies to any program or other work
   2139 which Apple Inc. ("Apple") makes publicly available and which contains a notice
   2140 placed by Apple identifying such program or work as "Original Code" and stating
   2141 that it is subject to the terms of this Apple Public Source License version 2.0
   2142 ("License").  As used in this License:
   2143 
   2144 1.1	 "Applicable Patent Rights" mean:  (a) in the case where Apple is the
   2145 grantor of rights, (i) claims of patents that are now or hereafter acquired,
   2146 owned by or assigned to Apple and (ii) that cover subject matter contained in
   2147 the Original Code, but only to the extent necessary to use, reproduce and/or
   2148 distribute the Original Code without infringement; and (b) in the case where You
   2149 are the grantor of rights, (i) claims of patents that are now or hereafter
   2150 acquired, owned by or assigned to You and (ii) that cover subject matter in Your
   2151 Modifications, taken alone or in combination with Original Code.
   2152 
   2153 1.2	"Contributor" means any person or entity that creates or contributes to the
   2154 creation of Modifications.
   2155 
   2156 1.3	 "Covered Code" means the Original Code, Modifications, the combination of
   2157 Original Code and any Modifications, and/or any respective portions thereof.
   2158 
   2159 1.4	"Externally Deploy" means: (a) to sublicense, distribute or otherwise make
   2160 Covered Code available, directly or indirectly, to anyone other than You; and/or
   2161 (b) to use Covered Code, alone or as part of a Larger Work, in any way to
   2162 provide a service, including but not limited to delivery of content, through
   2163 electronic communication with a client other than You.
   2164 
   2165 1.5	"Larger Work" means a work which combines Covered Code or portions thereof
   2166 with code not governed by the terms of this License.
   2167 
   2168 1.6	"Modifications" mean any addition to, deletion from, and/or change to, the
   2169 substance and/or structure of the Original Code, any previous Modifications, the
   2170 combination of Original Code and any previous Modifications, and/or any
   2171 respective portions thereof.  When code is released as a series of files, a
   2172 Modification is:  (a) any addition to or deletion from the contents of a file
   2173 containing Covered Code; and/or (b) any new file or other representation of
   2174 computer program statements that contains any part of Covered Code.
   2175 
   2176 1.7	"Original Code" means (a) the Source Code of a program or other work as
   2177 originally made available by Apple under this License, including the Source Code
   2178 of any updates or upgrades to such programs or works made available by Apple
   2179 under this License, and that has been expressly identified by Apple as such in
   2180 the header file(s) of such work; and (b) the object code compiled from such
   2181 Source Code and originally made available by Apple under this License
   2182 
   2183 1.8	"Source Code" means the human readable form of a program or other work that
   2184 is suitable for making modifications to it, including all modules it contains,
   2185 plus any associated interface definition files, scripts used to control
   2186 compilation and installation of an executable (object code).
   2187 
   2188 1.9	"You" or "Your" means an individual or a legal entity exercising rights
   2189 under this License.  For legal entities, "You" or "Your" includes any entity
   2190 which controls, is controlled by, or is under common control with, You, where
   2191 "control" means (a) the power, direct or indirect, to cause the direction or
   2192 management of such entity, whether by contract or otherwise, or (b) ownership of
   2193 fifty percent (50%) or more of the outstanding shares or beneficial ownership of
   2194 such entity.
   2195 
   2196 2.	Permitted Uses; Conditions &amp; Restrictions.   Subject to the terms and
   2197 conditions of this License, Apple hereby grants You, effective on the date You
   2198 accept this License and download the Original Code, a world-wide, royalty-free,
   2199 non-exclusive license, to the extent of Apple's Applicable Patent Rights and
   2200 copyrights covering the Original Code, to do the following:
   2201 
   2202 2.1	Unmodified Code.  You may use, reproduce, display, perform, internally
   2203 distribute within Your organization, and Externally Deploy verbatim, unmodified
   2204 copies of the Original Code, for commercial or non-commercial purposes, provided
   2205 that in each instance:
   2206 
   2207 (a)	You must retain and reproduce in all copies of Original Code the copyright
   2208 and other proprietary notices and disclaimers of Apple as they appear in the
   2209 Original Code, and keep intact all notices in the Original Code that refer to
   2210 this License; and
   2211 
   2212 (b) 	You must include a copy of this License with every copy of Source Code of
   2213 Covered Code and documentation You distribute or Externally Deploy, and You may
   2214 not offer or impose any terms on such Source Code that alter or restrict this
   2215 License or the recipients' rights hereunder, except as permitted under Section
   2216 6.
   2217 
   2218 2.2	Modified Code.  You may modify Covered Code and use, reproduce, display,
   2219 perform, internally distribute within Your organization, and Externally Deploy
   2220 Your Modifications and Covered Code, for commercial or non-commercial purposes,
   2221 provided that in each instance You also meet all of these conditions:
   2222 
   2223 (a)	You must satisfy all the conditions of Section 2.1 with respect to the
   2224 Source Code of the Covered Code;
   2225 
   2226 (b)	You must duplicate, to the extent it does not already exist, the notice in
   2227 Exhibit A in each file of the Source Code of all Your Modifications, and cause
   2228 the modified files to carry prominent notices stating that You changed the files
   2229 and the date of any change; and
   2230 
   2231 (c)	If You Externally Deploy Your Modifications, You must make Source Code of
   2232 all Your Externally Deployed Modifications either available to those to whom You
   2233 have Externally Deployed Your Modifications, or publicly available.  Source Code
   2234 of Your Externally Deployed Modifications must be released under the terms set
   2235 forth in this License, including the license grants set forth in Section 3
   2236 below, for as long as you Externally Deploy the Covered Code or twelve (12)
   2237 months from the date of initial External Deployment, whichever is longer. You
   2238 should preferably distribute the Source Code of Your Externally Deployed
   2239 Modifications electronically (e.g. download from a web site).
   2240 
   2241 2.3	Distribution of Executable Versions.  In addition, if You Externally Deploy
   2242 Covered Code (Original Code and/or Modifications) in object code, executable
   2243 form only, You must include a prominent notice, in the code itself as well as in
   2244 related documentation, stating that Source Code of the Covered Code is available
   2245 under the terms of this License with information on how and where to obtain such
   2246 Source Code.
   2247 
   2248 2.4	Third Party Rights.  You expressly acknowledge and agree that although
   2249 Apple and each Contributor grants the licenses to their respective portions of
   2250 the Covered Code set forth herein, no assurances are provided by Apple or any
   2251 Contributor that the Covered Code does not infringe the patent or other
   2252 intellectual property rights of any other entity. Apple and each Contributor
   2253 disclaim any liability to You for claims brought by any other entity based on
   2254 infringement of intellectual property rights or otherwise. As a condition to
   2255 exercising the rights and licenses granted hereunder, You hereby assume sole
   2256 responsibility to secure any other intellectual property rights needed, if any.
   2257 For example, if a third party patent license is required to allow You to
   2258 distribute the Covered Code, it is Your responsibility to acquire that license
   2259 before distributing the Covered Code.
   2260 
   2261 3.	Your Grants.  In consideration of, and as a condition to, the licenses
   2262 granted to You under this License, You hereby grant to any person or entity
   2263 receiving or distributing Covered Code under this License a non-exclusive,
   2264 royalty-free, perpetual, irrevocable license, under Your Applicable Patent
   2265 Rights and other intellectual property rights (other than patent) owned or
   2266 controlled by You, to use, reproduce, display, perform, modify, sublicense,
   2267 distribute and Externally Deploy Your Modifications of the same scope and extent
   2268 as Apple's licenses under Sections 2.1 and 2.2 above.
   2269 
   2270 4.	Larger Works.  You may create a Larger Work by combining Covered Code with
   2271 other code not governed by the terms of this License and distribute the Larger
   2272 Work as a single product.  In each such instance, You must make sure the
   2273 requirements of this License are fulfilled for the Covered Code or any portion
   2274 thereof.
   2275 
   2276 5.	Limitations on Patent License.   Except as expressly stated in Section 2, no
   2277 other patent rights, express or implied, are granted by Apple herein. 
   2278 Modifications and/or Larger Works may require additional patent licenses from
   2279 Apple which Apple may grant in its sole discretion.
   2280 
   2281 6.	Additional Terms.  You may choose to offer, and to charge a fee for,
   2282 warranty, support, indemnity or liability obligations and/or other rights
   2283 consistent with the scope of the license granted herein ("Additional Terms") to
   2284 one or more recipients of Covered Code. However, You may do so only on Your own
   2285 behalf and as Your sole responsibility, and not on behalf of Apple or any
   2286 Contributor. You must obtain the recipient's agreement that any such Additional
   2287 Terms are offered by You alone, and You hereby agree to indemnify, defend and
   2288 hold Apple and every Contributor harmless for any liability incurred by or
   2289 claims asserted against Apple or such Contributor by reason of any such
   2290 Additional Terms.
   2291 
   2292 7.	Versions of the License.  Apple may publish revised and/or new versions of
   2293 this License from time to time.  Each version will be given a distinguishing
   2294 version number.  Once Original Code has been published under a particular
   2295 version of this License, You may continue to use it under the terms of that
   2296 version. You may also choose to use such Original Code under the terms of any
   2297 subsequent version of this License published by Apple.  No one other than Apple
   2298 has the right to modify the terms applicable to Covered Code created under this
   2299 License.
   2300 
   2301 8.	NO WARRANTY OR SUPPORT.  The Covered Code may contain in whole or in part
   2302 pre-release, untested, or not fully tested works.  The Covered Code may contain
   2303 errors that could cause failures or loss of data, and may be incomplete or
   2304 contain inaccuracies.  You expressly acknowledge and agree that use of the
   2305 Covered Code, or any portion thereof, is at Your sole and entire risk.  THE
   2306 COVERED CODE IS PROVIDED "AS IS" AND WITHOUT WARRANTY, UPGRADES OR SUPPORT OF
   2307 ANY KIND AND APPLE AND APPLE'S LICENSOR(S) (COLLECTIVELY REFERRED TO AS "APPLE"
   2308 FOR THE PURPOSES OF SECTIONS 8 AND 9) AND ALL CONTRIBUTORS EXPRESSLY DISCLAIM
   2309 ALL WARRANTIES AND/OR CONDITIONS, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED
   2310 TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, OF SATISFACTORY
   2311 QUALITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT,
   2312 AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.  APPLE AND EACH CONTRIBUTOR DOES NOT
   2313 WARRANT AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE COVERED CODE, THAT THE
   2314 FUNCTIONS CONTAINED IN THE COVERED CODE WILL MEET YOUR REQUIREMENTS, THAT THE
   2315 OPERATION OF THE COVERED CODE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT
   2316 DEFECTS IN THE COVERED CODE WILL BE CORRECTED.  NO ORAL OR WRITTEN INFORMATION
   2317 OR ADVICE GIVEN BY APPLE, AN APPLE AUTHORIZED REPRESENTATIVE OR ANY CONTRIBUTOR
   2318 SHALL CREATE A WARRANTY.  You acknowledge that the Covered Code is not intended
   2319 for use in the operation of nuclear facilities, aircraft navigation,
   2320 communication systems, or air traffic control machines in which case the failure
   2321 of the Covered Code could lead to death, personal injury, or severe physical or
   2322 environmental damage.
   2323 
   2324 9.	LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT
   2325 SHALL APPLE OR ANY CONTRIBUTOR BE LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT
   2326 OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATING TO THIS LICENSE OR YOUR USE
   2327 OR INABILITY TO USE THE COVERED CODE, OR ANY PORTION THEREOF, WHETHER UNDER A
   2328 THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCTS LIABILITY OR
   2329 OTHERWISE, EVEN IF APPLE OR SUCH CONTRIBUTOR HAS BEEN ADVISED OF THE POSSIBILITY
   2330 OF SUCH DAMAGES AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY
   2331 REMEDY. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY OF
   2332 INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY TO YOU. In
   2333 no event shall Apple's total liability to You for all damages (other than as may
   2334 be required by applicable law) under this License exceed the amount of fifty
   2335 dollars ($50.00).
   2336 
   2337 10.	Trademarks.  This License does not grant any rights to use the trademarks
   2338 or trade names  "Apple", "Mac", "Mac OS", "QuickTime", "QuickTime Streaming
   2339 Server" or any other trademarks, service marks, logos or trade names belonging
   2340 to Apple (collectively "Apple Marks") or to any trademark, service mark, logo or
   2341 trade name belonging to any Contributor.  You agree not to use any Apple Marks
   2342 in or as part of the name of products derived from the Original Code or to
   2343 endorse or promote products derived from the Original Code other than as
   2344 expressly permitted by and in strict compliance at all times with Apple's third
   2345 party trademark usage guidelines which are posted at
   2346 http://www.apple.com/legal/guidelinesfor3rdparties.html.
   2347 
   2348 11.	Ownership. Subject to the licenses granted under this License, each
   2349 Contributor retains all rights, title and interest in and to any Modifications
   2350 made by such Contributor.  Apple retains all rights, title and interest in and
   2351 to the Original Code and any Modifications made by or on behalf of Apple ("Apple
   2352 Modifications"), and such Apple Modifications will not be automatically subject
   2353 to this License.  Apple may, at its sole discretion, choose to license such
   2354 Apple Modifications under this License, or on different terms from those
   2355 contained in this License or may choose not to license them at all.
   2356 
   2357 12.	Termination.
   2358 
   2359 12.1	Termination.  This License and the rights granted hereunder will
   2360 terminate:
   2361 
   2362 (a)	automatically without notice from Apple if You fail to comply with any
   2363 term(s) of this License and fail to cure such breach within 30 days of becoming
   2364 aware of such breach; (b)	immediately in the event of the circumstances
   2365 described in Section 13.5(b); or (c)	automatically without notice from Apple if
   2366 You, at any time during the term of this License, commence an action for patent
   2367 infringement against Apple; provided that Apple did not first commence an action
   2368 for patent infringement against You in that instance.
   2369 
   2370 12.2	Effect of Termination.  Upon termination, You agree to immediately stop
   2371 any further use, reproduction, modification, sublicensing and distribution of
   2372 the Covered Code.  All sublicenses to the Covered Code which have been properly
   2373 granted prior to termination shall survive any termination of this License. 
   2374 Provisions which, by their nature, should remain in effect beyond the
   2375 termination of this License shall survive, including but not limited to Sections
   2376 3, 5, 8, 9, 10, 11, 12.2 and 13.  No party will be liable to any other for
   2377 compensation, indemnity or damages of any sort solely as a result of terminating
   2378 this License in accordance with its terms, and termination of this License will
   2379 be without prejudice to any other right or remedy of any party.
   2380 
   2381 13. 	Miscellaneous.
   2382 
   2383 13.1	Government End Users.   The Covered Code is a "commercial item" as defined
   2384 in FAR 2.101.  Government software and technical data rights in the Covered Code
   2385 include only those rights customarily provided to the public as defined in this
   2386 License. This customary commercial license in technical data and software is
   2387 provided in accordance with FAR 12.211 (Technical Data) and 12.212 (Computer
   2388 Software) and, for Department of Defense purchases, DFAR 252.227-7015 (Technical
   2389 Data -- Commercial Items) and 227.7202-3 (Rights in Commercial Computer Software
   2390 or Computer Software Documentation).  Accordingly, all U.S. Government End Users
   2391 acquire Covered Code with only those rights set forth herein.
   2392 
   2393 13.2	Relationship of Parties.  This License will not be construed as creating
   2394 an agency, partnership, joint venture or any other form of legal association
   2395 between or among You, Apple or any Contributor, and You will not represent to
   2396 the contrary, whether expressly, by implication, appearance or otherwise.
   2397 
   2398 13.3	Independent Development.   Nothing in this License will impair Apple's
   2399 right to acquire, license, develop, have others develop for it, market and/or
   2400 distribute technology or products that perform the same or similar functions as,
   2401 or otherwise compete with, Modifications, Larger Works, technology or products
   2402 that You may develop, produce, market or distribute.
   2403 
   2404 13.4	Waiver; Construction.  Failure by Apple or any Contributor to enforce any
   2405 provision of this License will not be deemed a waiver of future enforcement of
   2406 that or any other provision.  Any law or regulation which provides that the
   2407 language of a contract shall be construed against the drafter will not apply to
   2408 this License.
   2409 
   2410 13.5	Severability.  (a) If for any reason a court of competent jurisdiction
   2411 finds any provision of this License, or portion thereof, to be unenforceable,
   2412 that provision of the License will be enforced to the maximum extent permissible
   2413 so as to effect the economic benefits and intent of the parties, and the
   2414 remainder of this License will continue in full force and effect.  (b)
   2415 Notwithstanding the foregoing, if applicable law prohibits or restricts You from
   2416 fully and/or specifically complying with Sections 2 and/or 3 or prevents the
   2417 enforceability of either of those Sections, this License will immediately
   2418 terminate and You must immediately discontinue any use of the Covered Code and
   2419 destroy all copies of it that are in your possession or control.
   2420 
   2421 13.6	Dispute Resolution.  Any litigation or other dispute resolution between
   2422 You and Apple relating to this License shall take place in the Northern District
   2423 of California, and You and Apple hereby consent to the personal jurisdiction of,
   2424 and venue in, the state and federal courts within that District with respect to
   2425 this License. The application of the United Nations Convention on Contracts for
   2426 the International Sale of Goods is expressly excluded.
   2427 
   2428 13.7	Entire Agreement; Governing Law.  This License constitutes the entire
   2429 agreement between the parties with respect to the subject matter hereof.  This
   2430 License shall be governed by the laws of the United States and the State of
   2431 California, except that body of California law concerning conflicts of law.
   2432 
   2433 Where You are located in the province of Quebec, Canada, the following clause
   2434 applies:  The parties hereby confirm that they have requested that this License
   2435 and all related documents be drafted in English.  Les parties ont exig que le
   2436 prsent contrat et tous les documents connexes soient rdigs en anglais.
   2437 
   2438 EXHIBIT A.
   2439 
   2440 "Portions Copyright (c) 1999-2007 Apple Inc.  All Rights Reserved.
   2441 
   2442 This file contains Original Code and/or Modifications of Original Code as
   2443 defined in and that are subject to the Apple Public Source License Version 2.0
   2444 (the 'License').  You may not use this file except in compliance with the
   2445 License.  Please obtain a copy of the License at
   2446 http://www.opensource.apple.com/apsl/ and read it before using this file.
   2447 
   2448 The Original Code and all software distributed under the License are distributed
   2449 on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED,
   2450 AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION,
   2451 ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
   2452 ENJOYMENT OR NON-INFRINGEMENT.  Please see the License for the specific language
   2453 governing rights and limitations under the License." 
   2454 </pre>
   2455 </div>
   2456 </div>
   2457 
   2458 
   2459 <div class="product">
   2460 <span class="title">bsdiff</span>
   2461 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   2462 <span class="homepage"><a href="http://lxr.mozilla.org/mozilla/source/other-licenses/bsdiff/bsdiff.c">homepage</a></span>
   2463 <div class="licence">
   2464 <pre>BSD Protection License
   2465 February 2002
   2466 
   2467 Preamble
   2468 --------
   2469 
   2470 The Berkeley Software Distribution ("BSD") license has proven very effective
   2471 over the years at allowing for a wide spread of work throughout both
   2472 commercial and non-commercial products.  For programmers whose primary
   2473 intention is to improve the general quality of available software, it is
   2474 arguable that there is no better license than the BSD license, as it
   2475 permits improvements to be used wherever they will help, without idealogical
   2476 or metallic constraint.
   2477 
   2478 This is of particular value to those who produce reference implementations
   2479 of proposed standards: The case of TCP/IP clearly illustrates that freely
   2480 and universally available implementations leads the rapid acceptance of
   2481 standards -- often even being used instead of a de jure standard (eg, OSI
   2482 network models).
   2483 
   2484 With the rapid proliferation of software licensed under the GNU General
   2485 Public License, however, the continued success of this role is called into
   2486 question.  Given that the inclusion of a few lines of "GPL-tainted" work
   2487 into a larger body of work will result in restricted distribution -- and
   2488 given that further work will likely build upon the "tainted" portions,
   2489 making them difficult to remove at a future date -- there are inevitable
   2490 circumstances where authors would, in order to protect their goal of
   2491 providing for the widespread usage of their work, wish to guard against
   2492 such "GPL-taint".
   2493 
   2494 In addition, one can imagine that companies which operate by producing and
   2495 selling (possibly closed-source) code would wish to protect themselves
   2496 against the rise of a GPL-licensed competitor.  While under existing
   2497 licenses this would mean not releasing their code under any form of open
   2498 license, if a license existed under which they could incorporate any
   2499 improvements back into their own (commercial) products then they might be
   2500 far more willing to provide for non-closed distribution.
   2501 
   2502 For the above reasons, we put forth this "BSD Protection License": A
   2503 license designed to retain the freedom granted by the BSD license to use
   2504 licensed works in a wide variety of settings, both non-commercial and
   2505 commercial, while protecting the work from having future contributors
   2506 restrict that freedom.
   2507 
   2508 The precise terms and conditions for copying, distribution, and
   2509 modification follow.
   2510 
   2511 BSD PROTECTION LICENSE
   2512 TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION, AND MODIFICATION
   2513 ----------------------------------------------------------------
   2514 
   2515 0. Definitions.
   2516    a) "Program", below, refers to any program or work distributed under
   2517       the terms of this license.
   2518    b) A "work based on the Program", below, refers to either the Program
   2519       or any derivative work under copyright law.
   2520    c) "Modification", below, refers to the act of creating derivative works.
   2521    d) "You", below, refers to each licensee.
   2522 
   2523 1. Scope.
   2524    This license governs the copying, distribution, and modification of the
   2525    Program.  Other activities are outside the scope of this license; The
   2526    act of running the Program is not restricted, and the output from the
   2527    Program is covered only if its contents constitute a work based on the
   2528    Program.
   2529 
   2530 2. Verbatim copies.
   2531    You may copy and distribute verbatim copies of the Program as you
   2532    receive it, in any medium, provided that you conspicuously and
   2533    appropriately publish on each copy an appropriate copyright notice; keep
   2534    intact all the notices that refer to this License and to the absence of
   2535    any warranty; and give any other recipients of the Program a copy of this
   2536    License along with the Program.
   2537 
   2538 3. Modification and redistribution under closed license.
   2539    You may modify your copy or copies of the Program, and distribute
   2540    the resulting derivative works, provided that you meet the
   2541    following conditions:
   2542    a) The copyright notice and disclaimer on the Program must be reproduced
   2543       and included in the source code, documentation, and/or other materials
   2544       provided in a manner in which such notices are normally distributed.
   2545    b) The derivative work must be clearly identified as such, in order that
   2546       it may not be confused with the original work.
   2547    c) The license under which the derivative work is distributed must
   2548       expressly prohibit the distribution of further derivative works.
   2549 
   2550 4. Modification and redistribution under open license.
   2551    You may modify your copy or copies of the Program, and distribute
   2552    the resulting derivative works, provided that you meet the
   2553    following conditions:
   2554    a) The copyright notice and disclaimer on the Program must be reproduced
   2555       and included in the source code, documentation, and/or other materials
   2556       provided in a manner in which such notices are normally distributed.
   2557    b) You must clearly indicate the nature and date of any changes made
   2558       to the Program.  The full details need not necessarily be included in
   2559       the individual modified files, provided that each modified file is
   2560       clearly marked as such and instructions are included on where the
   2561       full details of the modifications may be found.
   2562    c) You must cause any work that you distribute or publish, that in whole
   2563       or in part contains or is derived from the Program or any part
   2564       thereof, to be licensed as a whole at no charge to all third
   2565       parties under the terms of this License.
   2566 
   2567 5. Implied acceptance.
   2568    You may not copy or distribute the Program or any derivative works except
   2569    as expressly provided under this license.  Consequently, any such action
   2570    will be taken as implied acceptance of the terms of this license.
   2571 
   2572 6. NO WARRANTY.
   2573    THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
   2574    INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
   2575    AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
   2576    THE COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
   2577    REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE FOR ANY DIRECT,
   2578    INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
   2579    ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING, BUT
   2580    NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   2581    USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   2582    ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
   2583    TORT, EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
   2584    POSSIBILITY OF SUCH DAMAGES.
   2585 </pre>
   2586 </div>
   2587 </div>
   2588 
   2589 
   2590 <div class="product">
   2591 <span class="title">bspatch</span>
   2592 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   2593 <span class="homepage"><a href="http://lxr.mozilla.org/mozilla/source/toolkit/mozapps/update/src/updater/">homepage</a></span>
   2594 <div class="licence">
   2595 <pre>BSD Protection License
   2596 February 2002
   2597 
   2598 Preamble
   2599 --------
   2600 
   2601 The Berkeley Software Distribution ("BSD") license has proven very effective
   2602 over the years at allowing for a wide spread of work throughout both
   2603 commercial and non-commercial products.  For programmers whose primary
   2604 intention is to improve the general quality of available software, it is
   2605 arguable that there is no better license than the BSD license, as it
   2606 permits improvements to be used wherever they will help, without idealogical
   2607 or metallic constraint.
   2608 
   2609 This is of particular value to those who produce reference implementations
   2610 of proposed standards: The case of TCP/IP clearly illustrates that freely
   2611 and universally available implementations leads the rapid acceptance of
   2612 standards -- often even being used instead of a de jure standard (eg, OSI
   2613 network models).
   2614 
   2615 With the rapid proliferation of software licensed under the GNU General
   2616 Public License, however, the continued success of this role is called into
   2617 question.  Given that the inclusion of a few lines of "GPL-tainted" work
   2618 into a larger body of work will result in restricted distribution -- and
   2619 given that further work will likely build upon the "tainted" portions,
   2620 making them difficult to remove at a future date -- there are inevitable
   2621 circumstances where authors would, in order to protect their goal of
   2622 providing for the widespread usage of their work, wish to guard against
   2623 such "GPL-taint".
   2624 
   2625 In addition, one can imagine that companies which operate by producing and
   2626 selling (possibly closed-source) code would wish to protect themselves
   2627 against the rise of a GPL-licensed competitor.  While under existing
   2628 licenses this would mean not releasing their code under any form of open
   2629 license, if a license existed under which they could incorporate any
   2630 improvements back into their own (commercial) products then they might be
   2631 far more willing to provide for non-closed distribution.
   2632 
   2633 For the above reasons, we put forth this "BSD Protection License": A
   2634 license designed to retain the freedom granted by the BSD license to use
   2635 licensed works in a wide variety of settings, both non-commercial and
   2636 commercial, while protecting the work from having future contributors
   2637 restrict that freedom.
   2638 
   2639 The precise terms and conditions for copying, distribution, and
   2640 modification follow.
   2641 
   2642 BSD PROTECTION LICENSE
   2643 TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION, AND MODIFICATION
   2644 ----------------------------------------------------------------
   2645 
   2646 0. Definitions.
   2647    a) "Program", below, refers to any program or work distributed under
   2648       the terms of this license.
   2649    b) A "work based on the Program", below, refers to either the Program
   2650       or any derivative work under copyright law.
   2651    c) "Modification", below, refers to the act of creating derivative works.
   2652    d) "You", below, refers to each licensee.
   2653 
   2654 1. Scope.
   2655    This license governs the copying, distribution, and modification of the
   2656    Program.  Other activities are outside the scope of this license; The
   2657    act of running the Program is not restricted, and the output from the
   2658    Program is covered only if its contents constitute a work based on the
   2659    Program.
   2660 
   2661 2. Verbatim copies.
   2662    You may copy and distribute verbatim copies of the Program as you
   2663    receive it, in any medium, provided that you conspicuously and
   2664    appropriately publish on each copy an appropriate copyright notice; keep
   2665    intact all the notices that refer to this License and to the absence of
   2666    any warranty; and give any other recipients of the Program a copy of this
   2667    License along with the Program.
   2668 
   2669 3. Modification and redistribution under closed license.
   2670    You may modify your copy or copies of the Program, and distribute
   2671    the resulting derivative works, provided that you meet the
   2672    following conditions:
   2673    a) The copyright notice and disclaimer on the Program must be reproduced
   2674       and included in the source code, documentation, and/or other materials
   2675       provided in a manner in which such notices are normally distributed.
   2676    b) The derivative work must be clearly identified as such, in order that
   2677       it may not be confused with the original work.
   2678    c) The license under which the derivative work is distributed must
   2679       expressly prohibit the distribution of further derivative works.
   2680 
   2681 4. Modification and redistribution under open license.
   2682    You may modify your copy or copies of the Program, and distribute
   2683    the resulting derivative works, provided that you meet the
   2684    following conditions:
   2685    a) The copyright notice and disclaimer on the Program must be reproduced
   2686       and included in the source code, documentation, and/or other materials
   2687       provided in a manner in which such notices are normally distributed.
   2688    b) You must clearly indicate the nature and date of any changes made
   2689       to the Program.  The full details need not necessarily be included in
   2690       the individual modified files, provided that each modified file is
   2691       clearly marked as such and instructions are included on where the
   2692       full details of the modifications may be found.
   2693    c) You must cause any work that you distribute or publish, that in whole
   2694       or in part contains or is derived from the Program or any part
   2695       thereof, to be licensed as a whole at no charge to all third
   2696       parties under the terms of this License.
   2697 
   2698 5. Implied acceptance.
   2699    You may not copy or distribute the Program or any derivative works except
   2700    as expressly provided under this license.  Consequently, any such action
   2701    will be taken as implied acceptance of the terms of this license.
   2702 
   2703 6. NO WARRANTY.
   2704    THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
   2705    INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
   2706    AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
   2707    THE COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
   2708    REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE FOR ANY DIRECT,
   2709    INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
   2710    ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING, BUT
   2711    NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   2712    USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   2713    ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
   2714    TORT, EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
   2715    POSSIBILITY OF SUCH DAMAGES.
   2716 </pre>
   2717 </div>
   2718 </div>
   2719 
   2720 
   2721 <div class="product">
   2722 <span class="title">bzip2</span>
   2723 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   2724 <span class="homepage"><a href="http://www.bzip.org/downloads.html">homepage</a></span>
   2725 <div class="licence">
   2726 <pre>
   2727 --------------------------------------------------------------------------
   2728 
   2729 This program, "bzip2", the associated library "libbzip2", and all
   2730 documentation, are copyright (C) 1996-2010 Julian R Seward.  All
   2731 rights reserved.
   2732 
   2733 Redistribution and use in source and binary forms, with or without
   2734 modification, are permitted provided that the following conditions
   2735 are met:
   2736 
   2737 1. Redistributions of source code must retain the above copyright
   2738    notice, this list of conditions and the following disclaimer.
   2739 
   2740 2. The origin of this software must not be misrepresented; you must 
   2741    not claim that you wrote the original software.  If you use this 
   2742    software in a product, an acknowledgment in the product 
   2743    documentation would be appreciated but is not required.
   2744 
   2745 3. Altered source versions must be plainly marked as such, and must
   2746    not be misrepresented as being the original software.
   2747 
   2748 4. The name of the author may not be used to endorse or promote 
   2749    products derived from this software without specific prior written 
   2750    permission.
   2751 
   2752 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
   2753 OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
   2754 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   2755 ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
   2756 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   2757 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
   2758 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   2759 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
   2760 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
   2761 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
   2762 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   2763 
   2764 Julian Seward, jseward (a] bzip.org
   2765 bzip2/libbzip2 version 1.0.6 of 6 September 2010
   2766 
   2767 --------------------------------------------------------------------------
   2768 </pre>
   2769 </div>
   2770 </div>
   2771 
   2772 
   2773 <div class="product">
   2774 <span class="title">Google Cache Invalidation API</span>
   2775 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   2776 <span class="homepage"><a href="http://code.google.com/p/google-cache-invalidation-api/">homepage</a></span>
   2777 <div class="licence">
   2778 <pre>
   2779                                  Apache License
   2780                            Version 2.0, January 2004
   2781                         http://www.apache.org/licenses/
   2782 
   2783    TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
   2784 
   2785    1. Definitions.
   2786 
   2787       "License" shall mean the terms and conditions for use, reproduction,
   2788       and distribution as defined by Sections 1 through 9 of this document.
   2789 
   2790       "Licensor" shall mean the copyright owner or entity authorized by
   2791       the copyright owner that is granting the License.
   2792 
   2793       "Legal Entity" shall mean the union of the acting entity and all
   2794       other entities that control, are controlled by, or are under common
   2795       control with that entity. For the purposes of this definition,
   2796       "control" means (i) the power, direct or indirect, to cause the
   2797       direction or management of such entity, whether by contract or
   2798       otherwise, or (ii) ownership of fifty percent (50%) or more of the
   2799       outstanding shares, or (iii) beneficial ownership of such entity.
   2800 
   2801       "You" (or "Your") shall mean an individual or Legal Entity
   2802       exercising permissions granted by this License.
   2803 
   2804       "Source" form shall mean the preferred form for making modifications,
   2805       including but not limited to software source code, documentation
   2806       source, and configuration files.
   2807 
   2808       "Object" form shall mean any form resulting from mechanical
   2809       transformation or translation of a Source form, including but
   2810       not limited to compiled object code, generated documentation,
   2811       and conversions to other media types.
   2812 
   2813       "Work" shall mean the work of authorship, whether in Source or
   2814       Object form, made available under the License, as indicated by a
   2815       copyright notice that is included in or attached to the work
   2816       (an example is provided in the Appendix below).
   2817 
   2818       "Derivative Works" shall mean any work, whether in Source or Object
   2819       form, that is based on (or derived from) the Work and for which the
   2820       editorial revisions, annotations, elaborations, or other modifications
   2821       represent, as a whole, an original work of authorship. For the purposes
   2822       of this License, Derivative Works shall not include works that remain
   2823       separable from, or merely link (or bind by name) to the interfaces of,
   2824       the Work and Derivative Works thereof.
   2825 
   2826       "Contribution" shall mean any work of authorship, including
   2827       the original version of the Work and any modifications or additions
   2828       to that Work or Derivative Works thereof, that is intentionally
   2829       submitted to Licensor for inclusion in the Work by the copyright owner
   2830       or by an individual or Legal Entity authorized to submit on behalf of
   2831       the copyright owner. For the purposes of this definition, "submitted"
   2832       means any form of electronic, verbal, or written communication sent
   2833       to the Licensor or its representatives, including but not limited to
   2834       communication on electronic mailing lists, source code control systems,
   2835       and issue tracking systems that are managed by, or on behalf of, the
   2836       Licensor for the purpose of discussing and improving the Work, but
   2837       excluding communication that is conspicuously marked or otherwise
   2838       designated in writing by the copyright owner as "Not a Contribution."
   2839 
   2840       "Contributor" shall mean Licensor and any individual or Legal Entity
   2841       on behalf of whom a Contribution has been received by Licensor and
   2842       subsequently incorporated within the Work.
   2843 
   2844    2. Grant of Copyright License. Subject to the terms and conditions of
   2845       this License, each Contributor hereby grants to You a perpetual,
   2846       worldwide, non-exclusive, no-charge, royalty-free, irrevocable
   2847       copyright license to reproduce, prepare Derivative Works of,
   2848       publicly display, publicly perform, sublicense, and distribute the
   2849       Work and such Derivative Works in Source or Object form.
   2850 
   2851    3. Grant of Patent License. Subject to the terms and conditions of
   2852       this License, each Contributor hereby grants to You a perpetual,
   2853       worldwide, non-exclusive, no-charge, royalty-free, irrevocable
   2854       (except as stated in this section) patent license to make, have made,
   2855       use, offer to sell, sell, import, and otherwise transfer the Work,
   2856       where such license applies only to those patent claims licensable
   2857       by such Contributor that are necessarily infringed by their
   2858       Contribution(s) alone or by combination of their Contribution(s)
   2859       with the Work to which such Contribution(s) was submitted. If You
   2860       institute patent litigation against any entity (including a
   2861       cross-claim or counterclaim in a lawsuit) alleging that the Work
   2862       or a Contribution incorporated within the Work constitutes direct
   2863       or contributory patent infringement, then any patent licenses
   2864       granted to You under this License for that Work shall terminate
   2865       as of the date such litigation is filed.
   2866 
   2867    4. Redistribution. You may reproduce and distribute copies of the
   2868       Work or Derivative Works thereof in any medium, with or without
   2869       modifications, and in Source or Object form, provided that You
   2870       meet the following conditions:
   2871 
   2872       (a) You must give any other recipients of the Work or
   2873           Derivative Works a copy of this License; and
   2874 
   2875       (b) You must cause any modified files to carry prominent notices
   2876           stating that You changed the files; and
   2877 
   2878       (c) You must retain, in the Source form of any Derivative Works
   2879           that You distribute, all copyright, patent, trademark, and
   2880           attribution notices from the Source form of the Work,
   2881           excluding those notices that do not pertain to any part of
   2882           the Derivative Works; and
   2883 
   2884       (d) If the Work includes a "NOTICE" text file as part of its
   2885           distribution, then any Derivative Works that You distribute must
   2886           include a readable copy of the attribution notices contained
   2887           within such NOTICE file, excluding those notices that do not
   2888           pertain to any part of the Derivative Works, in at least one
   2889           of the following places: within a NOTICE text file distributed
   2890           as part of the Derivative Works; within the Source form or
   2891           documentation, if provided along with the Derivative Works; or,
   2892           within a display generated by the Derivative Works, if and
   2893           wherever such third-party notices normally appear. The contents
   2894           of the NOTICE file are for informational purposes only and
   2895           do not modify the License. You may add Your own attribution
   2896           notices within Derivative Works that You distribute, alongside
   2897           or as an addendum to the NOTICE text from the Work, provided
   2898           that such additional attribution notices cannot be construed
   2899           as modifying the License.
   2900 
   2901       You may add Your own copyright statement to Your modifications and
   2902       may provide additional or different license terms and conditions
   2903       for use, reproduction, or distribution of Your modifications, or
   2904       for any such Derivative Works as a whole, provided Your use,
   2905       reproduction, and distribution of the Work otherwise complies with
   2906       the conditions stated in this License.
   2907 
   2908    5. Submission of Contributions. Unless You explicitly state otherwise,
   2909       any Contribution intentionally submitted for inclusion in the Work
   2910       by You to the Licensor shall be under the terms and conditions of
   2911       this License, without any additional terms or conditions.
   2912       Notwithstanding the above, nothing herein shall supersede or modify
   2913       the terms of any separate license agreement you may have executed
   2914       with Licensor regarding such Contributions.
   2915 
   2916    6. Trademarks. This License does not grant permission to use the trade
   2917       names, trademarks, service marks, or product names of the Licensor,
   2918       except as required for reasonable and customary use in describing the
   2919       origin of the Work and reproducing the content of the NOTICE file.
   2920 
   2921    7. Disclaimer of Warranty. Unless required by applicable law or
   2922       agreed to in writing, Licensor provides the Work (and each
   2923       Contributor provides its Contributions) on an "AS IS" BASIS,
   2924       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
   2925       implied, including, without limitation, any warranties or conditions
   2926       of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
   2927       PARTICULAR PURPOSE. You are solely responsible for determining the
   2928       appropriateness of using or redistributing the Work and assume any
   2929       risks associated with Your exercise of permissions under this License.
   2930 
   2931    8. Limitation of Liability. In no event and under no legal theory,
   2932       whether in tort (including negligence), contract, or otherwise,
   2933       unless required by applicable law (such as deliberate and grossly
   2934       negligent acts) or agreed to in writing, shall any Contributor be
   2935       liable to You for damages, including any direct, indirect, special,
   2936       incidental, or consequential damages of any character arising as a
   2937       result of this License or out of the use or inability to use the
   2938       Work (including but not limited to damages for loss of goodwill,
   2939       work stoppage, computer failure or malfunction, or any and all
   2940       other commercial damages or losses), even if such Contributor
   2941       has been advised of the possibility of such damages.
   2942 
   2943    9. Accepting Warranty or Additional Liability. While redistributing
   2944       the Work or Derivative Works thereof, You may choose to offer,
   2945       and charge a fee for, acceptance of support, warranty, indemnity,
   2946       or other liability obligations and/or rights consistent with this
   2947       License. However, in accepting such obligations, You may act only
   2948       on Your own behalf and on Your sole responsibility, not on behalf
   2949       of any other Contributor, and only if You agree to indemnify,
   2950       defend, and hold each Contributor harmless for any liability
   2951       incurred by, or claims asserted against, such Contributor by reason
   2952       of your accepting any such warranty or additional liability.
   2953 
   2954    END OF TERMS AND CONDITIONS
   2955 
   2956    APPENDIX: How to apply the Apache License to your work.
   2957 
   2958       To apply the Apache License to your work, attach the following
   2959       boilerplate notice, with the fields enclosed by brackets "[]"
   2960       replaced with your own identifying information. (Don't include
   2961       the brackets!)  The text should be enclosed in the appropriate
   2962       comment syntax for the file format. We also recommend that a
   2963       file or class name and description of purpose be included on the
   2964       same "printed page" as the copyright notice for easier
   2965       identification within third-party archives.
   2966 
   2967    Copyright [yyyy] [name of copyright owner]
   2968 
   2969    Licensed under the Apache License, Version 2.0 (the "License");
   2970    you may not use this file except in compliance with the License.
   2971    You may obtain a copy of the License at
   2972 
   2973        http://www.apache.org/licenses/LICENSE-2.0
   2974 
   2975    Unless required by applicable law or agreed to in writing, software
   2976    distributed under the License is distributed on an "AS IS" BASIS,
   2977    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   2978    See the License for the specific language governing permissions and
   2979    limitations under the License.
   2980 </pre>
   2981 </div>
   2982 </div>
   2983 
   2984 
   2985 <div class="product">
   2986 <span class="title">Compact Language Detection</span>
   2987 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   2988 <span class="homepage"><a href="http://src.chromium.org/viewvc/chrome/trunk/src/third_party/cld/">homepage</a></span>
   2989 <div class="licence">
   2990 <pre>// Copyright (c) 2010 The Chromium Authors. All rights reserved.
   2991 //
   2992 // Redistribution and use in source and binary forms, with or without
   2993 // modification, are permitted provided that the following conditions are
   2994 // met:
   2995 //
   2996 //    * Redistributions of source code must retain the above copyright
   2997 // notice, this list of conditions and the following disclaimer.
   2998 //    * Redistributions in binary form must reproduce the above
   2999 // copyright notice, this list of conditions and the following disclaimer
   3000 // in the documentation and/or other materials provided with the
   3001 // distribution.
   3002 //    * Neither the name of Google Inc. nor the names of its
   3003 // contributors may be used to endorse or promote products derived from
   3004 // this software without specific prior written permission.
   3005 //
   3006 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   3007 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   3008 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
   3009 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
   3010 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   3011 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   3012 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   3013 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   3014 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   3015 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
   3016 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   3017 </pre>
   3018 </div>
   3019 </div>
   3020 
   3021 
   3022 <div class="product">
   3023 <span class="title">codesighs</span>
   3024 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   3025 <span class="homepage"><a href="http://hg.mozilla.org/mozilla-central/tools/codesighs">homepage</a></span>
   3026 <div class="licence">
   3027 <pre>                          MOZILLA PUBLIC LICENSE
   3028                                 Version 1.1
   3029 
   3030                               ---------------
   3031 
   3032 1. Definitions.
   3033 
   3034      1.0.1. "Commercial Use" means distribution or otherwise making the
   3035      Covered Code available to a third party.
   3036 
   3037      1.1. "Contributor" means each entity that creates or contributes to
   3038      the creation of Modifications.
   3039 
   3040      1.2. "Contributor Version" means the combination of the Original
   3041      Code, prior Modifications used by a Contributor, and the Modifications
   3042      made by that particular Contributor.
   3043 
   3044      1.3. "Covered Code" means the Original Code or Modifications or the
   3045      combination of the Original Code and Modifications, in each case
   3046      including portions thereof.
   3047 
   3048      1.4. "Electronic Distribution Mechanism" means a mechanism generally
   3049      accepted in the software development community for the electronic
   3050      transfer of data.
   3051 
   3052      1.5. "Executable" means Covered Code in any form other than Source
   3053      Code.
   3054 
   3055      1.6. "Initial Developer" means the individual or entity identified
   3056      as the Initial Developer in the Source Code notice required by Exhibit
   3057      A.
   3058 
   3059      1.7. "Larger Work" means a work which combines Covered Code or
   3060      portions thereof with code not governed by the terms of this License.
   3061 
   3062      1.8. "License" means this document.
   3063 
   3064      1.8.1. "Licensable" means having the right to grant, to the maximum
   3065      extent possible, whether at the time of the initial grant or
   3066      subsequently acquired, any and all of the rights conveyed herein.
   3067 
   3068      1.9. "Modifications" means any addition to or deletion from the
   3069      substance or structure of either the Original Code or any previous
   3070      Modifications. When Covered Code is released as a series of files, a
   3071      Modification is:
   3072           A. Any addition to or deletion from the contents of a file
   3073           containing Original Code or previous Modifications.
   3074 
   3075           B. Any new file that contains any part of the Original Code or
   3076           previous Modifications.
   3077 
   3078      1.10. "Original Code" means Source Code of computer software code
   3079      which is described in the Source Code notice required by Exhibit A as
   3080      Original Code, and which, at the time of its release under this
   3081      License is not already Covered Code governed by this License.
   3082 
   3083      1.10.1. "Patent Claims" means any patent claim(s), now owned or
   3084      hereafter acquired, including without limitation, method, process,
   3085      and apparatus claims, in any patent Licensable by grantor.
   3086 
   3087      1.11. "Source Code" means the preferred form of the Covered Code for
   3088      making modifications to it, including all modules it contains, plus
   3089      any associated interface definition files, scripts used to control
   3090      compilation and installation of an Executable, or source code
   3091      differential comparisons against either the Original Code or another
   3092      well known, available Covered Code of the Contributor's choice. The
   3093      Source Code can be in a compressed or archival form, provided the
   3094      appropriate decompression or de-archiving software is widely available
   3095      for no charge.
   3096 
   3097      1.12. "You" (or "Your") means an individual or a legal entity
   3098      exercising rights under, and complying with all of the terms of, this
   3099      License or a future version of this License issued under Section 6.1.
   3100      For legal entities, "You" includes any entity which controls, is
   3101      controlled by, or is under common control with You. For purposes of
   3102      this definition, "control" means (a) the power, direct or indirect,
   3103      to cause the direction or management of such entity, whether by
   3104      contract or otherwise, or (b) ownership of more than fifty percent
   3105      (50%) of the outstanding shares or beneficial ownership of such
   3106      entity.
   3107 
   3108 2. Source Code License.
   3109 
   3110      2.1. The Initial Developer Grant.
   3111      The Initial Developer hereby grants You a world-wide, royalty-free,
   3112      non-exclusive license, subject to third party intellectual property
   3113      claims:
   3114           (a) under intellectual property rights (other than patent or
   3115           trademark) Licensable by Initial Developer to use, reproduce,
   3116           modify, display, perform, sublicense and distribute the Original
   3117           Code (or portions thereof) with or without Modifications, and/or
   3118           as part of a Larger Work; and
   3119 
   3120           (b) under Patents Claims infringed by the making, using or
   3121           selling of Original Code, to make, have made, use, practice,
   3122           sell, and offer for sale, and/or otherwise dispose of the
   3123           Original Code (or portions thereof).
   3124 
   3125           (c) the licenses granted in this Section 2.1(a) and (b) are
   3126           effective on the date Initial Developer first distributes
   3127           Original Code under the terms of this License.
   3128 
   3129           (d) Notwithstanding Section 2.1(b) above, no patent license is
   3130           granted: 1) for code that You delete from the Original Code; 2)
   3131           separate from the Original Code; or 3) for infringements caused
   3132           by: i) the modification of the Original Code or ii) the
   3133           combination of the Original Code with other software or devices.
   3134 
   3135      2.2. Contributor Grant.
   3136      Subject to third party intellectual property claims, each Contributor
   3137      hereby grants You a world-wide, royalty-free, non-exclusive license
   3138 
   3139           (a) under intellectual property rights (other than patent or
   3140           trademark) Licensable by Contributor, to use, reproduce, modify,
   3141           display, perform, sublicense and distribute the Modifications
   3142           created by such Contributor (or portions thereof) either on an
   3143           unmodified basis, with other Modifications, as Covered Code
   3144           and/or as part of a Larger Work; and
   3145 
   3146           (b) under Patent Claims infringed by the making, using, or
   3147           selling of Modifications made by that Contributor either alone
   3148           and/or in combination with its Contributor Version (or portions
   3149           of such combination), to make, use, sell, offer for sale, have
   3150           made, and/or otherwise dispose of: 1) Modifications made by that
   3151           Contributor (or portions thereof); and 2) the combination of
   3152           Modifications made by that Contributor with its Contributor
   3153           Version (or portions of such combination).
   3154 
   3155           (c) the licenses granted in Sections 2.2(a) and 2.2(b) are
   3156           effective on the date Contributor first makes Commercial Use of
   3157           the Covered Code.
   3158 
   3159           (d) Notwithstanding Section 2.2(b) above, no patent license is
   3160           granted: 1) for any code that Contributor has deleted from the
   3161           Contributor Version; 2) separate from the Contributor Version;
   3162           3) for infringements caused by: i) third party modifications of
   3163           Contributor Version or ii) the combination of Modifications made
   3164           by that Contributor with other software (except as part of the
   3165           Contributor Version) or other devices; or 4) under Patent Claims
   3166           infringed by Covered Code in the absence of Modifications made by
   3167           that Contributor.
   3168 
   3169 3. Distribution Obligations.
   3170 
   3171      3.1. Application of License.
   3172      The Modifications which You create or to which You contribute are
   3173      governed by the terms of this License, including without limitation
   3174      Section 2.2. The Source Code version of Covered Code may be
   3175      distributed only under the terms of this License or a future version
   3176      of this License released under Section 6.1, and You must include a
   3177      copy of this License with every copy of the Source Code You
   3178      distribute. You may not offer or impose any terms on any Source Code
   3179      version that alters or restricts the applicable version of this
   3180      License or the recipients' rights hereunder. However, You may include
   3181      an additional document offering the additional rights described in
   3182      Section 3.5.
   3183 
   3184      3.2. Availability of Source Code.
   3185      Any Modification which You create or to which You contribute must be
   3186      made available in Source Code form under the terms of this License
   3187      either on the same media as an Executable version or via an accepted
   3188      Electronic Distribution Mechanism to anyone to whom you made an
   3189      Executable version available; and if made available via Electronic
   3190      Distribution Mechanism, must remain available for at least twelve (12)
   3191      months after the date it initially became available, or at least six
   3192      (6) months after a subsequent version of that particular Modification
   3193      has been made available to such recipients. You are responsible for
   3194      ensuring that the Source Code version remains available even if the
   3195      Electronic Distribution Mechanism is maintained by a third party.
   3196 
   3197      3.3. Description of Modifications.
   3198      You must cause all Covered Code to which You contribute to contain a
   3199      file documenting the changes You made to create that Covered Code and
   3200      the date of any change. You must include a prominent statement that
   3201      the Modification is derived, directly or indirectly, from Original
   3202      Code provided by the Initial Developer and including the name of the
   3203      Initial Developer in (a) the Source Code, and (b) in any notice in an
   3204      Executable version or related documentation in which You describe the
   3205      origin or ownership of the Covered Code.
   3206 
   3207      3.4. Intellectual Property Matters
   3208           (a) Third Party Claims.
   3209           If Contributor has knowledge that a license under a third party's
   3210           intellectual property rights is required to exercise the rights
   3211           granted by such Contributor under Sections 2.1 or 2.2,
   3212           Contributor must include a text file with the Source Code
   3213           distribution titled "LEGAL" which describes the claim and the
   3214           party making the claim in sufficient detail that a recipient will
   3215           know whom to contact. If Contributor obtains such knowledge after
   3216           the Modification is made available as described in Section 3.2,
   3217           Contributor shall promptly modify the LEGAL file in all copies
   3218           Contributor makes available thereafter and shall take other steps
   3219           (such as notifying appropriate mailing lists or newsgroups)
   3220           reasonably calculated to inform those who received the Covered
   3221           Code that new knowledge has been obtained.
   3222 
   3223           (b) Contributor APIs.
   3224           If Contributor's Modifications include an application programming
   3225           interface and Contributor has knowledge of patent licenses which
   3226           are reasonably necessary to implement that API, Contributor must
   3227           also include this information in the LEGAL file.
   3228 
   3229           (c) Representations.
   3230           Contributor represents that, except as disclosed pursuant to
   3231           Section 3.4(a) above, Contributor believes that Contributor's
   3232           Modifications are Contributor's original creation(s) and/or
   3233           Contributor has sufficient rights to grant the rights conveyed by
   3234           this License.
   3235 
   3236      3.5. Required Notices.
   3237      You must duplicate the notice in Exhibit A in each file of the Source
   3238      Code. If it is not possible to put such notice in a particular Source
   3239      Code file due to its structure, then You must include such notice in a
   3240      location (such as a relevant directory) where a user would be likely
   3241      to look for such a notice. If You created one or more Modification(s)
   3242      You may add your name as a Contributor to the notice described in
   3243      Exhibit A. You must also duplicate this License in any documentation
   3244      for the Source Code where You describe recipients' rights or ownership
   3245      rights relating to Covered Code. You may choose to offer, and to
   3246      charge a fee for, warranty, support, indemnity or liability
   3247      obligations to one or more recipients of Covered Code. However, You
   3248      may do so only on Your own behalf, and not on behalf of the Initial
   3249      Developer or any Contributor. You must make it absolutely clear than
   3250      any such warranty, support, indemnity or liability obligation is
   3251      offered by You alone, and You hereby agree to indemnify the Initial
   3252      Developer and every Contributor for any liability incurred by the
   3253      Initial Developer or such Contributor as a result of warranty,
   3254      support, indemnity or liability terms You offer.
   3255 
   3256      3.6. Distribution of Executable Versions.
   3257      You may distribute Covered Code in Executable form only if the
   3258      requirements of Section 3.1-3.5 have been met for that Covered Code,
   3259      and if You include a notice stating that the Source Code version of
   3260      the Covered Code is available under the terms of this License,
   3261      including a description of how and where You have fulfilled the
   3262      obligations of Section 3.2. The notice must be conspicuously included
   3263      in any notice in an Executable version, related documentation or
   3264      collateral in which You describe recipients' rights relating to the
   3265      Covered Code. You may distribute the Executable version of Covered
   3266      Code or ownership rights under a license of Your choice, which may
   3267      contain terms different from this License, provided that You are in
   3268      compliance with the terms of this License and that the license for the
   3269      Executable version does not attempt to limit or alter the recipient's
   3270      rights in the Source Code version from the rights set forth in this
   3271      License. If You distribute the Executable version under a different
   3272      license You must make it absolutely clear that any terms which differ
   3273      from this License are offered by You alone, not by the Initial
   3274      Developer or any Contributor. You hereby agree to indemnify the
   3275      Initial Developer and every Contributor for any liability incurred by
   3276      the Initial Developer or such Contributor as a result of any such
   3277      terms You offer.
   3278 
   3279      3.7. Larger Works.
   3280      You may create a Larger Work by combining Covered Code with other code
   3281      not governed by the terms of this License and distribute the Larger
   3282      Work as a single product. In such a case, You must make sure the
   3283      requirements of this License are fulfilled for the Covered Code.
   3284 
   3285 4. Inability to Comply Due to Statute or Regulation.
   3286 
   3287      If it is impossible for You to comply with any of the terms of this
   3288      License with respect to some or all of the Covered Code due to
   3289      statute, judicial order, or regulation then You must: (a) comply with
   3290      the terms of this License to the maximum extent possible; and (b)
   3291      describe the limitations and the code they affect. Such description
   3292      must be included in the LEGAL file described in Section 3.4 and must
   3293      be included with all distributions of the Source Code. Except to the
   3294      extent prohibited by statute or regulation, such description must be
   3295      sufficiently detailed for a recipient of ordinary skill to be able to
   3296      understand it.
   3297 
   3298 5. Application of this License.
   3299 
   3300      This License applies to code to which the Initial Developer has
   3301      attached the notice in Exhibit A and to related Covered Code.
   3302 
   3303 6. Versions of the License.
   3304 
   3305      6.1. New Versions.
   3306      Netscape Communications Corporation ("Netscape") may publish revised
   3307      and/or new versions of the License from time to time. Each version
   3308      will be given a distinguishing version number.
   3309 
   3310      6.2. Effect of New Versions.
   3311      Once Covered Code has been published under a particular version of the
   3312      License, You may always continue to use it under the terms of that
   3313      version. You may also choose to use such Covered Code under the terms
   3314      of any subsequent version of the License published by Netscape. No one
   3315      other than Netscape has the right to modify the terms applicable to
   3316      Covered Code created under this License.
   3317 
   3318      6.3. Derivative Works.
   3319      If You create or use a modified version of this License (which you may
   3320      only do in order to apply it to code which is not already Covered Code
   3321      governed by this License), You must (a) rename Your license so that
   3322      the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape",
   3323      "MPL", "NPL" or any confusingly similar phrase do not appear in your
   3324      license (except to note that your license differs from this License)
   3325      and (b) otherwise make it clear that Your version of the license
   3326      contains terms which differ from the Mozilla Public License and
   3327      Netscape Public License. (Filling in the name of the Initial
   3328      Developer, Original Code or Contributor in the notice described in
   3329      Exhibit A shall not of themselves be deemed to be modifications of
   3330      this License.)
   3331 
   3332 7. DISCLAIMER OF WARRANTY.
   3333 
   3334      COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS,
   3335      WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
   3336      WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF
   3337      DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.
   3338      THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE
   3339      IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT,
   3340      YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE
   3341      COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
   3342      OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
   3343      ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
   3344 
   3345 8. TERMINATION.
   3346 
   3347      8.1. This License and the rights granted hereunder will terminate
   3348      automatically if You fail to comply with terms herein and fail to cure
   3349      such breach within 30 days of becoming aware of the breach. All
   3350      sublicenses to the Covered Code which are properly granted shall
   3351      survive any termination of this License. Provisions which, by their
   3352      nature, must remain in effect beyond the termination of this License
   3353      shall survive.
   3354 
   3355      8.2. If You initiate litigation by asserting a patent infringement
   3356      claim (excluding declatory judgment actions) against Initial Developer
   3357      or a Contributor (the Initial Developer or Contributor against whom
   3358      You file such action is referred to as "Participant") alleging that:
   3359 
   3360      (a) such Participant's Contributor Version directly or indirectly
   3361      infringes any patent, then any and all rights granted by such
   3362      Participant to You under Sections 2.1 and/or 2.2 of this License
   3363      shall, upon 60 days notice from Participant terminate prospectively,
   3364      unless if within 60 days after receipt of notice You either: (i)
   3365      agree in writing to pay Participant a mutually agreeable reasonable
   3366      royalty for Your past and future use of Modifications made by such
   3367      Participant, or (ii) withdraw Your litigation claim with respect to
   3368      the Contributor Version against such Participant. If within 60 days
   3369      of notice, a reasonable royalty and payment arrangement are not
   3370      mutually agreed upon in writing by the parties or the litigation claim
   3371      is not withdrawn, the rights granted by Participant to You under
   3372      Sections 2.1 and/or 2.2 automatically terminate at the expiration of
   3373      the 60 day notice period specified above.
   3374 
   3375      (b) any software, hardware, or device, other than such Participant's
   3376      Contributor Version, directly or indirectly infringes any patent, then
   3377      any rights granted to You by such Participant under Sections 2.1(b)
   3378      and 2.2(b) are revoked effective as of the date You first made, used,
   3379      sold, distributed, or had made, Modifications made by that
   3380      Participant.
   3381 
   3382      8.3. If You assert a patent infringement claim against Participant
   3383      alleging that such Participant's Contributor Version directly or
   3384      indirectly infringes any patent where such claim is resolved (such as
   3385      by license or settlement) prior to the initiation of patent
   3386      infringement litigation, then the reasonable value of the licenses
   3387      granted by such Participant under Sections 2.1 or 2.2 shall be taken
   3388      into account in determining the amount or value of any payment or
   3389      license.
   3390 
   3391      8.4. In the event of termination under Sections 8.1 or 8.2 above,
   3392      all end user license agreements (excluding distributors and resellers)
   3393      which have been validly granted by You or any distributor hereunder
   3394      prior to termination shall survive termination.
   3395 
   3396 9. LIMITATION OF LIABILITY.
   3397 
   3398      UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
   3399      (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL
   3400      DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,
   3401      OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR
   3402      ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY
   3403      CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,
   3404      WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
   3405      COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
   3406      INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
   3407      LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY
   3408      RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW
   3409      PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE
   3410      EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO
   3411      THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.
   3412 
   3413 10. U.S. GOVERNMENT END USERS.
   3414 
   3415      The Covered Code is a "commercial item," as that term is defined in
   3416      48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer
   3417      software" and "commercial computer software documentation," as such
   3418      terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48
   3419      C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),
   3420      all U.S. Government End Users acquire Covered Code with only those
   3421      rights set forth herein.
   3422 
   3423 11. MISCELLANEOUS.
   3424 
   3425      This License represents the complete agreement concerning subject
   3426      matter hereof. If any provision of this License is held to be
   3427      unenforceable, such provision shall be reformed only to the extent
   3428      necessary to make it enforceable. This License shall be governed by
   3429      California law provisions (except to the extent applicable law, if
   3430      any, provides otherwise), excluding its conflict-of-law provisions.
   3431      With respect to disputes in which at least one party is a citizen of,
   3432      or an entity chartered or registered to do business in the United
   3433      States of America, any litigation relating to this License shall be
   3434      subject to the jurisdiction of the Federal Courts of the Northern
   3435      District of California, with venue lying in Santa Clara County,
   3436      California, with the losing party responsible for costs, including
   3437      without limitation, court costs and reasonable attorneys' fees and
   3438      expenses. The application of the United Nations Convention on
   3439      Contracts for the International Sale of Goods is expressly excluded.
   3440      Any law or regulation which provides that the language of a contract
   3441      shall be construed against the drafter shall not apply to this
   3442      License.
   3443 
   3444 12. RESPONSIBILITY FOR CLAIMS.
   3445 
   3446      As between Initial Developer and the Contributors, each party is
   3447      responsible for claims and damages arising, directly or indirectly,
   3448      out of its utilization of rights under this License and You agree to
   3449      work with Initial Developer and Contributors to distribute such
   3450      responsibility on an equitable basis. Nothing herein is intended or
   3451      shall be deemed to constitute any admission of liability.
   3452 
   3453 13. MULTIPLE-LICENSED CODE.
   3454 
   3455      Initial Developer may designate portions of the Covered Code as
   3456      "Multiple-Licensed". "Multiple-Licensed" means that the Initial
   3457      Developer permits you to utilize portions of the Covered Code under
   3458      Your choice of the NPL or the alternative licenses, if any, specified
   3459      by the Initial Developer in the file described in Exhibit A.
   3460 
   3461 EXHIBIT A -Mozilla Public License.
   3462 
   3463      ``The contents of this file are subject to the Mozilla Public License
   3464      Version 1.1 (the "License"); you may not use this file except in
   3465      compliance with the License. You may obtain a copy of the License at
   3466      http://www.mozilla.org/MPL/
   3467 
   3468      Software distributed under the License is distributed on an "AS IS"
   3469      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
   3470      License for the specific language governing rights and limitations
   3471      under the License.
   3472 
   3473      The Original Code is ______________________________________.
   3474 
   3475      The Initial Developer of the Original Code is ________________________.
   3476      Portions created by ______________________ are Copyright (C) ______
   3477      _______________________. All Rights Reserved.
   3478 
   3479      Contributor(s): ______________________________________.
   3480 
   3481      Alternatively, the contents of this file may be used under the terms
   3482      of the _____ license (the "[___] License"), in which case the
   3483      provisions of [______] License are applicable instead of those
   3484      above. If you wish to allow use of your version of this file only
   3485      under the terms of the [____] License and not to allow others to use
   3486      your version of this file under the MPL, indicate your decision by
   3487      deleting the provisions above and replace them with the notice and
   3488      other provisions required by the [___] License. If you do not delete
   3489      the provisions above, a recipient may use your version of this file
   3490      under either the MPL or the [___] License."
   3491 
   3492      [NOTE: The text of this Exhibit A may differ slightly from the text of
   3493      the notices in the Source Code files of the Original Code. You should
   3494      use the text of this Exhibit A rather than the text found in the
   3495      Original Code Source Code for Your Modifications.]
   3496 
   3497      ----------------------------------------------------------------------
   3498 
   3499      AMENDMENTS
   3500 
   3501      The Netscape Public License Version 1.1 ("NPL") consists of the
   3502      Mozilla Public License Version 1.1 with the following Amendments,
   3503      including Exhibit A-Netscape Public License. Files identified with
   3504      "Exhibit A-Netscape Public License" are governed by the Netscape
   3505      Public License Version 1.1.
   3506 
   3507      Additional Terms applicable to the Netscape Public License.
   3508           I. Effect.
   3509           These additional terms described in this Netscape Public
   3510           License -- Amendments shall apply to the Mozilla Communicator
   3511           client code and to all Covered Code under this License.
   3512 
   3513           II. "Netscape's Branded Code" means Covered Code that Netscape
   3514           distributes and/or permits others to distribute under one or more
   3515           trademark(s) which are controlled by Netscape but which are not
   3516           licensed for use under this License.
   3517 
   3518           III. Netscape and logo.
   3519           This License does not grant any rights to use the trademarks
   3520           "Netscape", the "Netscape N and horizon" logo or the "Netscape
   3521           lighthouse" logo, "Netcenter", "Gecko", "Java" or "JavaScript",
   3522           "Smart Browsing" even if such marks are included in the Original
   3523           Code or Modifications.
   3524 
   3525           IV. Inability to Comply Due to Contractual Obligation.
   3526           Prior to licensing the Original Code under this License, Netscape
   3527           has licensed third party code for use in Netscape's Branded Code.
   3528           To the extent that Netscape is limited contractually from making
   3529           such third party code available under this License, Netscape may
   3530           choose to reintegrate such code into Covered Code without being
   3531           required to distribute such code in Source Code form, even if
   3532           such code would otherwise be considered "Modifications" under
   3533           this License.
   3534 
   3535           V. Use of Modifications and Covered Code by Initial Developer.
   3536                V.1. In General.
   3537                The obligations of Section 3 apply to Netscape, except to
   3538                the extent specified in this Amendment, Section V.2 and V.3.
   3539 
   3540                V.2. Other Products.
   3541                Netscape may include Covered Code in products other than the
   3542                Netscape's Branded Code which are released by Netscape
   3543                during the two (2) years following the release date of the
   3544                Original Code, without such additional products becoming
   3545                subject to the terms of this License, and may license such
   3546                additional products on different terms from those contained
   3547                in this License.
   3548 
   3549                V.3. Alternative Licensing.
   3550                Netscape may license the Source Code of Netscape's Branded
   3551                Code, including Modifications incorporated therein, without
   3552                such Netscape Branded Code becoming subject to the terms of
   3553                this License, and may license such Netscape Branded Code on
   3554                different terms from those contained in this License.
   3555 
   3556           VI. Litigation.
   3557           Notwithstanding the limitations of Section 11 above, the
   3558           provisions regarding litigation in Section 11(a), (b) and (c) of
   3559           the License shall apply to all disputes relating to this License.
   3560 
   3561      EXHIBIT A-Netscape Public License.
   3562 
   3563           "The contents of this file are subject to the Netscape Public
   3564           License Version 1.1 (the "License"); you may not use this file
   3565           except in compliance with the License. You may obtain a copy of
   3566           the License at http://www.mozilla.org/NPL/
   3567 
   3568           Software distributed under the License is distributed on an "AS
   3569           IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
   3570           implied. See the License for the specific language governing
   3571           rights and limitations under the License.
   3572 
   3573           The Original Code is Mozilla Communicator client code, released
   3574           March 31, 1998.
   3575 
   3576           The Initial Developer of the Original Code is Netscape
   3577           Communications Corporation. Portions created by Netscape are
   3578           Copyright (C) 1998-1999 Netscape Communications Corporation. All
   3579           Rights Reserved.
   3580 
   3581           Contributor(s): ______________________________________.
   3582 
   3583           Alternatively, the contents of this file may be used under the
   3584           terms of the _____ license (the "[___] License"), in which case
   3585           the provisions of [______] License are applicable  instead of
   3586           those above. If you wish to allow use of your version of this
   3587           file only under the terms of the [____] License and not to allow
   3588           others to use your version of this file under the NPL, indicate
   3589           your decision by deleting the provisions above and replace  them
   3590           with the notice and other provisions required by the [___]
   3591           License. If you do not delete the provisions above, a recipient
   3592           may use your version of this file under either the NPL or the
   3593           [___] License."
   3594 </pre>
   3595 </div>
   3596 </div>
   3597 
   3598 
   3599 <div class="product">
   3600 <span class="title">expat</span>
   3601 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   3602 <span class="homepage"><a href="http://sourceforge.net/projects/expat/">homepage</a></span>
   3603 <div class="licence">
   3604 <pre>Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd
   3605                                and Clark Cooper
   3606 Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Expat maintainers.
   3607 
   3608 Permission is hereby granted, free of charge, to any person obtaining
   3609 a copy of this software and associated documentation files (the
   3610 "Software"), to deal in the Software without restriction, including
   3611 without limitation the rights to use, copy, modify, merge, publish,
   3612 distribute, sublicense, and/or sell copies of the Software, and to
   3613 permit persons to whom the Software is furnished to do so, subject to
   3614 the following conditions:
   3615 
   3616 The above copyright notice and this permission notice shall be included
   3617 in all copies or substantial portions of the Software.
   3618 
   3619 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
   3620 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
   3621 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
   3622 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
   3623 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
   3624 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
   3625 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
   3626 </pre>
   3627 </div>
   3628 </div>
   3629 
   3630 
   3631 <div class="product">
   3632 <span class="title">ffmpeg</span>
   3633 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   3634 <span class="homepage"><a href="http://ffmpeg.org/">homepage</a></span>
   3635 <div class="licence">
   3636 <pre>FFmpeg:
   3637 -------
   3638 
   3639 Most files in FFmpeg are under the GNU Lesser General Public License version 2.1
   3640 or later (LGPL v2.1+). Read the file COPYING.LGPLv2.1 for details. Some other
   3641 files have MIT/X11/BSD-style licenses. In combination the LGPL v2.1+ applies to
   3642 FFmpeg.
   3643 
   3644 Some optional parts of FFmpeg are licensed under the GNU General Public License
   3645 version 2 or later (GPL v2+). See the file COPYING.GPLv2 for details. None of
   3646 these parts are used by default, you have to explicitly pass --enable-gpl to
   3647 configure to activate them. In this case, FFmpeg's license changes to GPL v2+.
   3648 
   3649 Specifically, the GPL parts of FFmpeg are
   3650 
   3651 - libpostproc
   3652 - optional x86 optimizations in the files
   3653   libavcodec/x86/idct_mmx.c
   3654 - the X11 grabber in libavdevice/x11grab.c
   3655 
   3656 There are a handful of files under other licensing terms, namely:
   3657 
   3658 * The files libavcodec/jfdctfst.c, libavcodec/jfdctint.c, libavcodec/jrevdct.c
   3659   are taken from libjpeg, see the top of the files for licensing details.
   3660 
   3661 Should you, for whatever reason, prefer to use version 3 of the (L)GPL, then
   3662 the configure parameter --enable-version3 will activate this licensing option
   3663 for you. Read the file COPYING.LGPLv3 or, if you have enabled GPL parts,
   3664 COPYING.GPLv3 to learn the exact legal terms that apply in this case.
   3665 
   3666 
   3667 external libraries:
   3668 -------------------
   3669 
   3670 Some external libraries, e.g. libx264, are under GPL and can be used in
   3671 conjunction with FFmpeg. They require --enable-gpl to be passed to configure
   3672 as well.
   3673 
   3674 The OpenCORE external libraries are under the Apache License 2.0. That license
   3675 is incompatible with the LGPL v2.1 and the GPL v2, but not with version 3 of
   3676 those licenses. So to combine the OpenCORE libraries with FFmpeg, the license
   3677 version needs to be upgraded by passing --enable-version3 to configure.
   3678 
   3679 The nonfree external library libfaac can be hooked up in FFmpeg. You need to
   3680 pass --enable-nonfree to configure to enable it. Employ this option with care
   3681 as FFmpeg then becomes nonfree and unredistributable.
   3682 </pre>
   3683 </div>
   3684 </div>
   3685 
   3686 
   3687 <div class="product">
   3688 <span class="title">OpenGL ES 2.0 Programming Guide</span>
   3689 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   3690 <span class="homepage"><a href="http://opengles-book.com/">homepage</a></span>
   3691 <div class="licence">
   3692 <pre>Book:      OpenGL(R) ES 2.0 Programming Guide
   3693 Authors:   Aaftab Munshi, Dan Ginsburg, Dave Shreiner
   3694 ISBN-10:   0321502795
   3695 ISBN-13:   9780321502797
   3696 Publisher: Addison-Wesley Professional
   3697 URLs:      http://safari.informit.com/9780321563835
   3698            http://www.opengles-book.com</pre>
   3699 </div>
   3700 </div>
   3701 
   3702 
   3703 <div class="product">
   3704 <span class="title">OpenGL ES 2.0 Conformance Tests</span>
   3705 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   3706 <span class="homepage"><a href="https://www.khronos.org/opengles/adopters/login/conformance/">homepage</a></span>
   3707 <div class="licence">
   3708 <pre>/*
   3709 
   3710 ** Copyright (c) 2008 The Khronos Group Inc.
   3711 
   3712 ** 
   3713 
   3714 ** All Rights Reserved.  This code is protected by copyright laws and 
   3715 
   3716 ** contains material proprietary to the Khronos Group, Inc.  This is 
   3717 
   3718 ** UNPUBLISHED PROPRIETARY SOURCE CODE that may not be disclosed in whole 
   3719 
   3720 ** or in part to third parties, and may not be reproduced, republished, 
   3721 
   3722 ** distributed, transmitted, displayed, broadcast or otherwise exploited 
   3723 
   3724 ** in any manner without the express prior written permission of Khronos 
   3725 
   3726 ** Group.
   3727 
   3728 ** 
   3729 
   3730 ** The receipt or possession of this code does not convey any rights to 
   3731 
   3732 ** reproduce, disclose, or distribute its contents, or to manufacture, 
   3733 
   3734 ** use, or sell anything that it may describe, in whole or in part other 
   3735 
   3736 ** than under the terms of the Khronos Adopters Agreement or Khronos 
   3737 
   3738 ** Conformance Test Source License Agreement as executed between Khronos 
   3739 
   3740 ** and the recipient.
   3741 
   3742 ** 
   3743 
   3744 ** For the avoidance of doubt, this code when provided: a) under the 
   3745 
   3746 ** Khronos Conformance Test Source License Agreement is for the sole 
   3747 
   3748 ** purpose of creating conformance tests for delivery to Khronos and does 
   3749 
   3750 ** not provide for formally testing products or use of Khronos trademarks 
   3751 
   3752 ** on conformant products; b) under the Khronos Adopters Agreement is for 
   3753 
   3754 ** the sole purpose of formally administering tests to products pursuant 
   3755 
   3756 ** to the Khronos Conformance Process Document.
   3757 
   3758 ** 
   3759 
   3760 ** Khronos, OpenKODE, OpenVG, OpenWF, glFX, OpenMAX and OpenSL ES are 
   3761 
   3762 ** trademarks of the Khronos Group Inc.  COLLADA is a trademark of Sony 
   3763 
   3764 ** Computer Entertainment Inc. used by permission by Khronos.  OpenGL and 
   3765 
   3766 ** OpenML are registered trademarks and the OpenGL ES logo is a trademark 
   3767 
   3768 ** of Silicon Graphics Inc. used by permission by Khronos. 
   3769 
   3770 ** 
   3771 
   3772 ** Use, duplication or disclosure by the Government is subject to 
   3773 
   3774 ** restrictions as set forth in subdivision (c)(1)(ii) of the Rights in 
   3775 
   3776 ** Technical Data and Computer Software clause at DFARS 252.227-7013, and/
   3777 
   3778 ** or in similar or successor clauses in the FAR, DOD or NASA FAR 
   3779 
   3780 ** Supplement. Unpublished rights reserved under the Copyright Laws of 
   3781 
   3782 ** the United States and other countries.
   3783 
   3784 */
   3785 
   3786 </pre>
   3787 </div>
   3788 </div>
   3789 
   3790 
   3791 <div class="product">
   3792 <span class="title">gpsd</span>
   3793 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   3794 <span class="homepage"><a href="http://git.berlios.de/cgi-bin/gitweb.cgi?p=gpsd;a=summary">homepage</a></span>
   3795 <div class="licence">
   3796 <pre>			COPYRIGHTS
   3797 
   3798 Compilation copyright is held by the GPSD project.  All rights reserved.
   3799 
   3800 GPSD project copyrights are assigned to the project lead, currently
   3801 Eric S. Raymond. Other portions of the GPSD code are Copyright (c)
   3802 1997, 1998, 1999, 2000, 2001, 2002 by Remco Treffkorn, and others
   3803 Copyright (c) 2005 by Eric S. Raymond.  For other copyrights, see
   3804 individual files.
   3805 
   3806 			BSD LICENSE
   3807 
   3808 Redistribution and use in source and binary forms, with or without
   3809 modification, are permitted provided that the following conditions
   3810 are met:&lt;P&gt;
   3811 
   3812 Redistributions of source code must retain the above copyright
   3813 notice, this list of conditions and the following disclaimer.&lt;P&gt;
   3814 
   3815 Redistributions in binary form must reproduce the above copyright
   3816 notice, this list of conditions and the following disclaimer in the
   3817 documentation and/or other materials provided with the distribution.&lt;P&gt;
   3818 
   3819 Neither name of the GPSD project nor the names of its contributors
   3820 may be used to endorse or promote products derived from this software
   3821 without specific prior written permission.
   3822 
   3823 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   3824 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   3825 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
   3826 A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR
   3827 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
   3828 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
   3829 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
   3830 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
   3831 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
   3832 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
   3833 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   3834 </pre>
   3835 </div>
   3836 </div>
   3837 
   3838 
   3839 <div class="product">
   3840 <span class="title">Harfbuzz</span>
   3841 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   3842 <span class="homepage"><a href="http://freedesktop.org/wiki/Software/HarfBuzz">homepage</a></span>
   3843 <div class="licence">
   3844 <pre>HarfBuzz was previously licensed under different licenses.  This was
   3845 changed in January 2008.  If you need to relicense your old copies,
   3846 consult the announcement of the license change on the internet.
   3847 Other than that, each copy of HarfBuzz is licensed under the COPYING
   3848 file included with it.  The actual license follows:
   3849 
   3850 
   3851 Permission is hereby granted, without written agreement and without
   3852 license or royalty fees, to use, copy, modify, and distribute this
   3853 software and its documentation for any purpose, provided that the
   3854 above copyright notice and the following two paragraphs appear in
   3855 all copies of this software.
   3856 
   3857 IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
   3858 DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
   3859 ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
   3860 IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
   3861 DAMAGE.
   3862 
   3863 THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
   3864 BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
   3865 FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
   3866 ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
   3867 PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
   3868 </pre>
   3869 </div>
   3870 </div>
   3871 
   3872 
   3873 <div class="product">
   3874 <span class="title">hunspell</span>
   3875 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   3876 <span class="homepage"><a href="http://hunspell.sourceforge.net/">homepage</a></span>
   3877 <div class="licence">
   3878 <pre>GPL 2.0/LGPL 2.1/MPL 1.1 tri-license
   3879 
   3880 The contents of this software may be used under the terms of
   3881 the GNU General Public License Version 2 or later (the "GPL"), or
   3882 the GNU Lesser General Public License Version 2.1 or later (the "LGPL",
   3883 see COPYING.LGPL) or (excepting the LGPLed GNU gettext library in the
   3884 intl/ directory) the Mozilla Public License Version 1.1 or later
   3885 (the "MPL", see COPYING.MPL).
   3886 
   3887 Software distributed under these licenses is distributed on an "AS IS" basis,
   3888 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the licences
   3889 for the specific language governing rights and limitations under the licenses.
   3890 </pre>
   3891 </div>
   3892 </div>
   3893 
   3894 
   3895 <div class="product">
   3896 <span class="title">hunspell dictionaries</span>
   3897 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   3898 <span class="homepage"><a href="http://wiki.services.openoffice.org/wiki/Dictionaries">homepage</a></span>
   3899 <div class="licence">
   3900 <pre>GPL 2.0/LGPL 2.1/MPL 1.1 tri-license
   3901 
   3902 The contents of this software may be used under the terms of
   3903 the GNU General Public License Version 2 or later (the "GPL"), or
   3904 the GNU Lesser General Public License Version 2.1 or later (the "LGPL",
   3905 see COPYING.LGPL) or (excepting the LGPLed GNU gettext library in the
   3906 intl/ directory) the Mozilla Public License Version 1.1 or later
   3907 (the "MPL", see COPYING.MPL).
   3908 
   3909 Software distributed under these licenses is distributed on an "AS IS" basis,
   3910 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the licences
   3911 for the specific language governing rights and limitations under the licenses.
   3912 </pre>
   3913 </div>
   3914 </div>
   3915 
   3916 
   3917 <div class="product">
   3918 <span class="title">hyphen-2.6</span>
   3919 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   3920 <span class="homepage"><a href="http://sourceforge.net/projects/hunspell/files/Hyphen/">homepage</a></span>
   3921 <div class="licence">
   3922 <pre>GPL 2.0/LGPL 2.1/MPL 1.1 tri-license
   3923 
   3924 The contents of this software may be used under the terms of
   3925 the GNU General Public License Version 2 or later (the "GPL"), or
   3926 the GNU Lesser General Public License Version 2.1 or later (the "LGPL",
   3927 see COPYING.LGPL) or the Mozilla Public License Version 1.1 or later
   3928 (the "MPL", see COPYING.MPL).
   3929 
   3930 The Plain TeX hyphenation tables "hyphen.tex" by Donald E. Knuth
   3931 has a non MPL/LGPL compatible license, but freely redistributable:
   3932 "Unlimited copying and redistribution of this file are permitted as long
   3933 as this file is not modified. Modifications are permitted, but only if
   3934 the resulting file is not named hyphen.tex."
   3935 
   3936 Software distributed under these licenses is distributed on an "AS IS" basis,
   3937 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the licences
   3938 for the specific language governing rights and limitations under the licenses.
   3939 </pre>
   3940 </div>
   3941 </div>
   3942 
   3943 
   3944 <div class="product">
   3945 <span class="title">IAccessible2 COM interfaces for accessibility</span>
   3946 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   3947 <span class="homepage"><a href="http://www.linuxfoundation.org/collaborate/workgroups/accessibility/iaccessible2">homepage</a></span>
   3948 <div class="licence">
   3949 <pre>/*************************************************************************
   3950  *
   3951  *  IAccessible2 IDL Specification 
   3952  * 
   3953  *  Copyright (c) 2007, 2010 Linux Foundation 
   3954  *  Copyright (c) 2006 IBM Corporation 
   3955  *  Copyright (c) 2000, 2006 Sun Microsystems, Inc. 
   3956  *  All rights reserved. 
   3957  *   
   3958  *   
   3959  *  Redistribution and use in source and binary forms, with or without 
   3960  *  modification, are permitted provided that the following conditions 
   3961  *  are met: 
   3962  *   
   3963  *   1. Redistributions of source code must retain the above copyright 
   3964  *      notice, this list of conditions and the following disclaimer. 
   3965  *   
   3966  *   2. Redistributions in binary form must reproduce the above 
   3967  *      copyright notice, this list of conditions and the following 
   3968  *      disclaimer in the documentation and/or other materials 
   3969  *      provided with the distribution. 
   3970  *
   3971  *   3. Neither the name of the Linux Foundation nor the names of its 
   3972  *      contributors may be used to endorse or promote products 
   3973  *      derived from this software without specific prior written 
   3974  *      permission. 
   3975  *   
   3976  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 
   3977  *  CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 
   3978  *  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
   3979  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
   3980  *  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 
   3981  *  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
   3982  *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 
   3983  *  NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 
   3984  *  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
   3985  *  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
   3986  *  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 
   3987  *  OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 
   3988  *  EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
   3989  *   
   3990  *  This BSD License conforms to the Open Source Initiative "Simplified 
   3991  *  BSD License" as published at: 
   3992  *  http://www.opensource.org/licenses/bsd-license.php 
   3993  *   
   3994  *  IAccessible2 is a trademark of the Linux Foundation. The IAccessible2 
   3995  *  mark may be used in accordance with the Linux Foundation Trademark 
   3996  *  Policy to indicate compliance with the IAccessible2 specification. 
   3997  * 
   3998  ************************************************************************/ 
   3999 </pre>
   4000 </div>
   4001 </div>
   4002 
   4003 
   4004 <div class="product">
   4005 <span class="title">iccjpeg</span>
   4006 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   4007 <span class="homepage"><a href="http://www.ijg.org">homepage</a></span>
   4008 <div class="licence">
   4009 <pre>LICENSE extracted from IJG's jpeg distribution:
   4010 -----------------------------------------------
   4011 
   4012 In plain English:
   4013 
   4014 1. We don't promise that this software works.  (But if you find any bugs,
   4015    please let us know!)
   4016 2. You can use this software for whatever you want.  You don't have to pay us.
   4017 3. You may not pretend that you wrote this software.  If you use it in a
   4018    program, you must acknowledge somewhere in your documentation that
   4019    you've used the IJG code.
   4020 
   4021 In legalese:
   4022 
   4023 The authors make NO WARRANTY or representation, either express or implied,
   4024 with respect to this software, its quality, accuracy, merchantability, or
   4025 fitness for a particular purpose.  This software is provided "AS IS", and you,
   4026 its user, assume the entire risk as to its quality and accuracy.
   4027 
   4028 This software is copyright (C) 1991-1998, Thomas G. Lane.
   4029 All Rights Reserved except as specified below.
   4030 
   4031 Permission is hereby granted to use, copy, modify, and distribute this
   4032 software (or portions thereof) for any purpose, without fee, subject to these
   4033 conditions:
   4034 (1) If any part of the source code for this software is distributed, then this
   4035 README file must be included, with this copyright and no-warranty notice
   4036 unaltered; and any additions, deletions, or changes to the original files
   4037 must be clearly indicated in accompanying documentation.
   4038 (2) If only executable code is distributed, then the accompanying
   4039 documentation must state that "this software is based in part on the work of
   4040 the Independent JPEG Group".
   4041 (3) Permission for use of this software is granted only if the user accepts
   4042 full responsibility for any undesirable consequences; the authors accept
   4043 NO LIABILITY for damages of any kind.
   4044 
   4045 These conditions apply to any software derived from or based on the IJG code,
   4046 not just to the unmodified library.  If you use our work, you ought to
   4047 acknowledge us.
   4048 
   4049 Permission is NOT granted for the use of any IJG author's name or company name
   4050 in advertising or publicity relating to this software or products derived from
   4051 it.  This software may be referred to only as "the Independent JPEG Group's
   4052 software".
   4053 
   4054 We specifically permit and encourage the use of this software as the basis of
   4055 commercial products, provided that all warranty or liability claims are
   4056 assumed by the product vendor.
   4057 
   4058 </pre>
   4059 </div>
   4060 </div>
   4061 
   4062 
   4063 <div class="product">
   4064 <span class="title">ICU</span>
   4065 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   4066 <span class="homepage"><a href="http://site.icu-project.org/">homepage</a></span>
   4067 <div class="licence">
   4068 <pre>(This file was manually converted from license.html.)
   4069 
   4070 --------------------------------------------------------------------------------
   4071 
   4072 ICU License - ICU 1.8.1 and later
   4073 
   4074 COPYRIGHT AND PERMISSION NOTICE
   4075 
   4076 Copyright (c) 1995-2009 International Business Machines Corporation and others
   4077 
   4078 All rights reserved.
   4079 
   4080 Permission is hereby granted, free of charge, to any person obtaining a copy
   4081 of this software and associated documentation files (the "Software"),
   4082 to deal in the Software without restriction, including without limitation
   4083 the rights to use, copy, modify, merge, publish, distribute, and/or sell
   4084 copies of the Software, and to permit persons
   4085 to whom the Software is furnished to do so, provided that the above
   4086 copyright notice(s) and this permission notice appear in all copies
   4087 of the Software and that both the above copyright notice(s) and this
   4088 permission notice appear in supporting documentation.
   4089 
   4090 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
   4091 INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
   4092 PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL
   4093 THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM,
   4094 OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER
   4095 RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
   4096 NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
   4097 USE OR PERFORMANCE OF THIS SOFTWARE.
   4098 
   4099 Except as contained in this notice, the name of a copyright holder shall not be
   4100 used in advertising or otherwise to promote the sale, use or other dealings in
   4101 this Software without prior written authorization of the copyright holder.
   4102 
   4103 All trademarks and registered trademarks mentioned herein are the
   4104 property of their respective owners.
   4105 
   4106 </pre>
   4107 </div>
   4108 </div>
   4109 
   4110 
   4111 <div class="product">
   4112 <span class="title">Chinese and Japanese Word List</span>
   4113 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   4114 <span class="homepage"><a href="http://src.chromium.org/viewvc/chrome/trunk/deps/third_party/icu42/source/data/brkitr/">homepage</a></span>
   4115 <div class="licence">
   4116 <pre>The list of words in cjdict.txt are obtained by combining three word
   4117 lists listed below with further processing for compound word breaking.
   4118 The frequency is generated with an iterative training against Google
   4119 web corpora.
   4120 
   4121 * CC-CEDICT (Chinese)
   4122   - http://www.mdbg.net/chindict/chindict.php?page=cedict (home page)
   4123   - http://www.mdbg.net/chindict/export/cedict/cedict_1_0_ts_utf-8_mdbg.txt.gz (word list)
   4124   - It is licensed under a Creative Commons Attribution-Share Alike 3.0 License.
   4125     (see http://creativecommons.org/licenses/by-sa/3.0 for more details)
   4126 
   4127   - The portion of words derived from CC-CEDICT is also separately available
   4128     in cc_cedict.txt per the above CC Attribution-Share Alike 3.0 License.
   4129 
   4130 * Libtabe (Chinese)
   4131   - https://sourceforge.net/project/?group_id=1519
   4132   - Its license terms and conditions are shown below.
   4133 
   4134 * IPADIC (Japanese)
   4135   - http://chasen.aist-nara.ac.jp/chasen/distribution.html
   4136   - Its license terms and conditions are shown below.
   4137 
   4138 ---------COPYING.libtabe ---- BEGIN--------------------
   4139 
   4140 /*
   4141  * Copyrighy (c) 1999 TaBE Project.
   4142  * Copyright (c) 1999 Pai-Hsiang Hsiao.
   4143  * All rights reserved.
   4144  *
   4145  * Redistribution and use in source and binary forms, with or without
   4146  * modification, are permitted provided that the following conditions
   4147  * are met:
   4148  *
   4149  * . Redistributions of source code must retain the above copyright
   4150  *   notice, this list of conditions and the following disclaimer.
   4151  * . Redistributions in binary form must reproduce the above copyright
   4152  *   notice, this list of conditions and the following disclaimer in
   4153  *   the documentation and/or other materials provided with the
   4154  *   distribution.
   4155  * . Neither the name of the TaBE Project nor the names of its
   4156  *   contributors may be used to endorse or promote products derived
   4157  *   from this software without specific prior written permission.
   4158  *
   4159  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   4160  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   4161  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
   4162  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
   4163  * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
   4164  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
   4165  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
   4166  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   4167  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
   4168  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   4169  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
   4170  * OF THE POSSIBILITY OF SUCH DAMAGE.
   4171  */
   4172 
   4173 /*
   4174  * Copyright (c) 1999 Computer Systems and Communication Lab,
   4175  *                    Institute of Information Science, Academia Sinica.
   4176  * All rights reserved.
   4177  *
   4178  * Redistribution and use in source and binary forms, with or without
   4179  * modification, are permitted provided that the following conditions
   4180  * are met:
   4181  *
   4182  * . Redistributions of source code must retain the above copyright
   4183  *   notice, this list of conditions and the following disclaimer.
   4184  * . Redistributions in binary form must reproduce the above copyright
   4185  *   notice, this list of conditions and the following disclaimer in
   4186  *   the documentation and/or other materials provided with the
   4187  *   distribution.
   4188  * . Neither the name of the Computer Systems and Communication Lab
   4189  *   nor the names of its contributors may be used to endorse or
   4190  *   promote products derived from this software without specific
   4191  *   prior written permission.
   4192  *
   4193  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   4194  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   4195  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
   4196  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
   4197  * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
   4198  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
   4199  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
   4200  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   4201  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
   4202  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   4203  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
   4204  * OF THE POSSIBILITY OF SUCH DAMAGE.
   4205  */
   4206 
   4207 Copyright 1996 Chih-Hao Tsai @ Beckman Institute, University of Illinois
   4208 c-tsai4 (a] uiuc.edu  http://casper.beckman.uiuc.edu/~c-tsai4
   4209 
   4210 ---------------COPYING.libtabe-----END------------------------------------
   4211 
   4212 
   4213 ---------------COPYING.ipadic-----BEGIN------------------------------------
   4214 
   4215 Copyright 2000, 2001, 2002, 2003 Nara Institute of Science
   4216 and Technology.  All Rights Reserved.
   4217 
   4218 Use, reproduction, and distribution of this software is permitted.
   4219 Any copy of this software, whether in its original form or modified,
   4220 must include both the above copyright notice and the following
   4221 paragraphs.
   4222 
   4223 Nara Institute of Science and Technology (NAIST),
   4224 the copyright holders, disclaims all warranties with regard to this
   4225 software, including all implied warranties of merchantability and
   4226 fitness, in no event shall NAIST be liable for
   4227 any special, indirect or consequential damages or any damages
   4228 whatsoever resulting from loss of use, data or profits, whether in an
   4229 action of contract, negligence or other tortuous action, arising out
   4230 of or in connection with the use or performance of this software.
   4231 
   4232 A large portion of the dictionary entries
   4233 originate from ICOT Free Software.  The following conditions for ICOT
   4234 Free Software applies to the current dictionary as well.
   4235 
   4236 Each User may also freely distribute the Program, whether in its
   4237 original form or modified, to any third party or parties, PROVIDED
   4238 that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear
   4239 on, or be attached to, the Program, which is distributed substantially
   4240 in the same form as set out herein and that such intended
   4241 distribution, if actually made, will neither violate or otherwise
   4242 contravene any of the laws and regulations of the countries having
   4243 jurisdiction over the User or the intended distribution itself.
   4244 
   4245 NO WARRANTY
   4246 
   4247 The program was produced on an experimental basis in the course of the
   4248 research and development conducted during the project and is provided
   4249 to users as so produced on an experimental basis.  Accordingly, the
   4250 program is provided without any warranty whatsoever, whether express,
   4251 implied, statutory or otherwise.  The term "warranty" used herein
   4252 includes, but is not limited to, any warranty of the quality,
   4253 performance, merchantability and fitness for a particular purpose of
   4254 the program and the nonexistence of any infringement or violation of
   4255 any right of any third party.
   4256 
   4257 Each user of the program will agree and understand, and be deemed to
   4258 have agreed and understood, that there is no warranty whatsoever for
   4259 the program and, accordingly, the entire risk arising from or
   4260 otherwise connected with the program is assumed by the user.
   4261 
   4262 Therefore, neither ICOT, the copyright holder, or any other
   4263 organization that participated in or was otherwise related to the
   4264 development of the program and their respective officials, directors,
   4265 officers and other employees shall be held liable for any and all
   4266 damages, including, without limitation, general, special, incidental
   4267 and consequential damages, arising out of or otherwise in connection
   4268 with the use or inability to use the program or any product, material
   4269 or result produced or otherwise obtained by using the program,
   4270 regardless of whether they have been advised of, or otherwise had
   4271 knowledge of, the possibility of such damages at any time during the
   4272 project or thereafter.  Each user will be deemed to have agreed to the
   4273 foregoing by his or her commencement of use of the program.  The term
   4274 "use" as used herein includes, but is not limited to, the use,
   4275 modification, copying and distribution of the program and the
   4276 production of secondary products from the program.
   4277 
   4278 In the case where the program, whether in its original form or
   4279 modified, was distributed or delivered to or received by a user from
   4280 any person, organization or entity other than ICOT, unless it makes or
   4281 grants independently of ICOT any specific warranty to the user in
   4282 writing, such person, organization or entity, will also be exempted
   4283 from and not be held liable to the user for any such damages as noted
   4284 above as far as the program is concerned.
   4285 
   4286 ---------------COPYING.ipadic-----END------------------------------------
   4287 </pre>
   4288 </div>
   4289 </div>
   4290 
   4291 
   4292 <div class="product">
   4293 <span class="title">ISimpleDOM COM interfaces for accessibility</span>
   4294 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   4295 <span class="homepage"><a href="http://www.mozilla.org/access/windows/at-apis">homepage</a></span>
   4296 <div class="licence">
   4297 <pre>/* ***** BEGIN LICENSE BLOCK *****
   4298  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
   4299  *
   4300  * The contents of this file are subject to the Mozilla Public License Version
   4301  * 1.1 (the "License"); you may not use this file except in compliance with
   4302  * the License. You may obtain a copy of the License at
   4303  * http://www.mozilla.org/MPL/
   4304  *
   4305  * Software distributed under the License is distributed on an "AS IS" basis,
   4306  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
   4307  * for the specific language governing rights and limitations under the
   4308  * License.
   4309  *
   4310  * The Original Code is mozilla.org code.
   4311  *
   4312  * The Initial Developer of the Original Code is
   4313  * Netscape Communications Corporation.
   4314  * Portions created by the Initial Developer are Copyright (C) 2002
   4315  * the Initial Developer. All Rights Reserved.
   4316  *
   4317  * Contributor(s):
   4318  *
   4319  * Alternatively, the contents of this file may be used under the terms of
   4320  * either the GNU General Public License Version 2 or later (the "GPL"), or
   4321  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
   4322  * in which case the provisions of the GPL or the LGPL are applicable instead
   4323  * of those above. If you wish to allow use of your version of this file only
   4324  * under the terms of either the GPL or the LGPL, and not to allow others to
   4325  * use your version of this file under the terms of the MPL, indicate your
   4326  * decision by deleting the provisions above and replace them with the notice
   4327  * and other provisions required by the GPL or the LGPL. If you do not delete
   4328  * the provisions above, a recipient may use your version of this file under
   4329  * the terms of any one of the MPL, the GPL or the LGPL.
   4330  *
   4331  * ***** END LICENSE BLOCK ***** */
   4332 </pre>
   4333 </div>
   4334 </div>
   4335 
   4336 
   4337 <div class="product">
   4338 <span class="title">jemalloc</span>
   4339 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   4340 <span class="homepage"><a href="http://hg.mozilla.org/mozilla-central/src/memory">homepage</a></span>
   4341 <div class="licence">
   4342 <pre>The following is the license for the jemalloc source code, as provided
   4343 
   4344 in the initial section of the source files.
   4345 
   4346 
   4347 
   4348 Copyright (C) 2006-2008 Jason Evans &lt;jasone (a] FreeBSD.org&gt;.
   4349 
   4350 All rights reserved.
   4351 
   4352 
   4353 
   4354 Redistribution and use in source and binary forms, with or without
   4355 
   4356 modification, are permitted provided that the following conditions
   4357 
   4358 are met:
   4359 
   4360 1. Redistributions of source code must retain the above copyright
   4361 
   4362    notice(s), this list of conditions and the following disclaimer as
   4363 
   4364    the first lines of this file unmodified other than the possible
   4365 
   4366    addition of one or more copyright notices.
   4367 
   4368 2. Redistributions in binary form must reproduce the above copyright
   4369 
   4370    notice(s), this list of conditions and the following disclaimer in
   4371 
   4372    the documentation and/or other materials provided with the
   4373 
   4374    distribution.
   4375 
   4376 
   4377 
   4378 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY
   4379 
   4380 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   4381 
   4382 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
   4383 
   4384 PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE
   4385 
   4386 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   4387 
   4388 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   4389 
   4390 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
   4391 
   4392 BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
   4393 
   4394 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
   4395 
   4396 OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
   4397 
   4398 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   4399 
   4400 
   4401 
   4402 </pre>
   4403 </div>
   4404 </div>
   4405 
   4406 
   4407 <div class="product">
   4408 <span class="title">lcov</span>
   4409 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   4410 <span class="homepage"><a href="http://ltp.sourceforge.net/coverage/lcov.php">homepage</a></span>
   4411 <div class="licence">
   4412 <pre>License copied from bin/lcov:
   4413 
   4414 #
   4415 #   Copyright (c) International Business Machines  Corp., 2002,2007
   4416 #
   4417 #   This program is free software;  you can redistribute it and/or modify
   4418 #   it under the terms of the GNU General Public License as published by
   4419 #   the Free Software Foundation; either version 2 of the License, or (at
   4420 #   your option) any later version.
   4421 #
   4422 #   This program is distributed in the hope that it will be useful, but
   4423 #   WITHOUT ANY WARRANTY;  without even the implied warranty of
   4424 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   4425 #   General Public License for more details.                 
   4426 #
   4427 #   You should have received a copy of the GNU General Public License
   4428 #   along with this program;  if not, write to the Free Software
   4429 #   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
   4430 </pre>
   4431 </div>
   4432 </div>
   4433 
   4434 
   4435 <div class="product">
   4436 <span class="title">libevent</span>
   4437 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   4438 <span class="homepage"><a href="http://www.monkey.org/~provos/libevent/">homepage</a></span>
   4439 <div class="licence">
   4440 <pre>Copyright 2000-2007 Niels Provos &lt;provos (a] citi.umich.edu&gt;
   4441 Copyright 2007-2009 Niels Provos and Nick Mathewson
   4442 
   4443 Redistribution and use in source and binary forms, with or without
   4444 modification, are permitted provided that the following conditions
   4445 are met:
   4446 1. Redistributions of source code must retain the above copyright
   4447    notice, this list of conditions and the following disclaimer.
   4448 2. Redistributions in binary form must reproduce the above copyright
   4449    notice, this list of conditions and the following disclaimer in the
   4450    documentation and/or other materials provided with the distribution.
   4451 3. The name of the author may not be used to endorse or promote products
   4452    derived from this software without specific prior written permission.
   4453 
   4454 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
   4455 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   4456 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
   4457 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
   4458 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
   4459 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   4460 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   4461 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   4462 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
   4463 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   4464 </pre>
   4465 </div>
   4466 </div>
   4467 
   4468 
   4469 <div class="product">
   4470 <span class="title">libjingle</span>
   4471 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   4472 <span class="homepage"><a href="http://code.google.com/p/libjingle/">homepage</a></span>
   4473 <div class="licence">
   4474 <pre>Copyright (c) 2004--2005, Google Inc.
   4475 All rights reserved.
   4476 
   4477 Redistribution and use in source and binary forms, with or without modification,
   4478 are permitted provided that the following conditions are met:
   4479 
   4480     * Redistributions of source code must retain the above copyright notice,
   4481       this list of conditions and the following disclaimer.
   4482     * Redistributions in binary form must reproduce the above copyright notice,
   4483       this list of conditions and the following disclaimer in the documentation
   4484       and/or other materials provided with the distribution.
   4485     * The name of the author may not be used to endorse or promote products
   4486       derived from this software without specific prior written permission.
   4487 
   4488 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   4489 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   4490 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   4491 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   4492 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   4493 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
   4494 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   4495 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
   4496 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY 
   4497 WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
   4498 SUCH DAMAGE.</pre>
   4499 </div>
   4500 </div>
   4501 
   4502 
   4503 <div class="product">
   4504 <span class="title">libjpeg</span>
   4505 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   4506 <span class="homepage"><a href="http://www.ijg.org/">homepage</a></span>
   4507 <div class="licence">
   4508 <pre>(Copied from the README.)
   4509 
   4510 --------------------------------------------------------------------------------
   4511 
   4512 The authors make NO WARRANTY or representation, either express or implied,
   4513 with respect to this software, its quality, accuracy, merchantability, or
   4514 fitness for a particular purpose.  This software is provided "AS IS", and you,
   4515 its user, assume the entire risk as to its quality and accuracy.
   4516 
   4517 This software is copyright (C) 1991-1998, Thomas G. Lane.
   4518 All Rights Reserved except as specified below.
   4519 
   4520 Permission is hereby granted to use, copy, modify, and distribute this
   4521 software (or portions thereof) for any purpose, without fee, subject to these
   4522 conditions:
   4523 (1) If any part of the source code for this software is distributed, then this
   4524 README file must be included, with this copyright and no-warranty notice
   4525 unaltered; and any additions, deletions, or changes to the original files
   4526 must be clearly indicated in accompanying documentation.
   4527 (2) If only executable code is distributed, then the accompanying
   4528 documentation must state that "this software is based in part on the work of
   4529 the Independent JPEG Group".
   4530 (3) Permission for use of this software is granted only if the user accepts
   4531 full responsibility for any undesirable consequences; the authors accept
   4532 NO LIABILITY for damages of any kind.
   4533 
   4534 These conditions apply to any software derived from or based on the IJG code,
   4535 not just to the unmodified library.  If you use our work, you ought to
   4536 acknowledge us.
   4537 
   4538 Permission is NOT granted for the use of any IJG author's name or company name
   4539 in advertising or publicity relating to this software or products derived from
   4540 it.  This software may be referred to only as "the Independent JPEG Group's
   4541 software".
   4542 
   4543 We specifically permit and encourage the use of this software as the basis of
   4544 commercial products, provided that all warranty or liability claims are
   4545 assumed by the product vendor.
   4546 
   4547 
   4548 ansi2knr.c is included in this distribution by permission of L. Peter Deutsch,
   4549 sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA.
   4550 ansi2knr.c is NOT covered by the above copyright and conditions, but instead
   4551 by the usual distribution terms of the Free Software Foundation; principally,
   4552 that you must include source code if you redistribute it.  (See the file
   4553 ansi2knr.c for full details.)  However, since ansi2knr.c is not needed as part
   4554 of any program generated from the IJG code, this does not limit you more than
   4555 the foregoing paragraphs do.
   4556 
   4557 The Unix configuration script "configure" was produced with GNU Autoconf.
   4558 It is copyright by the Free Software Foundation but is freely distributable.
   4559 The same holds for its supporting scripts (config.guess, config.sub,
   4560 ltconfig, ltmain.sh).  Another support script, install-sh, is copyright
   4561 by M.I.T. but is also freely distributable.
   4562 
   4563 It appears that the arithmetic coding option of the JPEG spec is covered by
   4564 patents owned by IBM, AT&amp;T, and Mitsubishi.  Hence arithmetic coding cannot
   4565 legally be used without obtaining one or more licenses.  For this reason,
   4566 support for arithmetic coding has been removed from the free JPEG software.
   4567 (Since arithmetic coding provides only a marginal gain over the unpatented
   4568 Huffman mode, it is unlikely that very many implementations will support it.)
   4569 So far as we are aware, there are no patent restrictions on the remaining
   4570 code.
   4571 
   4572 The IJG distribution formerly included code to read and write GIF files.
   4573 To avoid entanglement with the Unisys LZW patent, GIF reading support has
   4574 been removed altogether, and the GIF writer has been simplified to produce
   4575 "uncompressed GIFs".  This technique does not use the LZW algorithm; the
   4576 resulting GIF files are larger than usual, but are readable by all standard
   4577 GIF decoders.
   4578 
   4579 We are required to state that
   4580     "The Graphics Interchange Format(c) is the Copyright property of
   4581     CompuServe Incorporated.  GIF(sm) is a Service Mark property of
   4582     CompuServe Incorporated."
   4583 </pre>
   4584 </div>
   4585 </div>
   4586 
   4587 
   4588 <div class="product">
   4589 <span class="title">libjpeg-turbo</span>
   4590 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   4591 <span class="homepage"><a href="http://sourceforge.net/projects/libjpeg-turbo/">homepage</a></span>
   4592 <div class="licence">
   4593 <pre>                wxWindows Library Licence, Version 3.1
   4594                 ======================================
   4595 
   4596   Copyright (C) 1998-2005 Julian Smart, Robert Roebling et al
   4597 
   4598   Everyone is permitted to copy and distribute verbatim copies
   4599   of this licence document, but changing it is not allowed.
   4600 
   4601                        WXWINDOWS LIBRARY LICENCE
   4602      TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
   4603   
   4604   This library is free software; you can redistribute it and/or modify it
   4605   under the terms of the GNU Library General Public Licence as published by
   4606   the Free Software Foundation; either version 2 of the Licence, or (at
   4607   your option) any later version.
   4608   
   4609   This library is distributed in the hope that it will be useful, but
   4610   WITHOUT ANY WARRANTY; without even the implied warranty of
   4611   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library
   4612   General Public Licence for more details.
   4613 
   4614   You should have received a copy of the GNU Library General Public Licence
   4615   along with this software, usually in a file named COPYING.LIB.  If not,
   4616   write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
   4617   Boston, MA 02111-1307 USA.
   4618 
   4619   EXCEPTION NOTICE
   4620 
   4621   1. As a special exception, the copyright holders of this library give
   4622   permission for additional uses of the text contained in this release of
   4623   the library as licenced under the wxWindows Library Licence, applying
   4624   either version 3.1 of the Licence, or (at your option) any later version of
   4625   the Licence as published by the copyright holders of version
   4626   3.1 of the Licence document.
   4627 
   4628   2. The exception is that you may use, copy, link, modify and distribute
   4629   under your own terms, binary object code versions of works based
   4630   on the Library.
   4631 
   4632   3. If you copy code from files distributed under the terms of the GNU
   4633   General Public Licence or the GNU Library General Public Licence into a
   4634   copy of this library, as this licence permits, the exception does not
   4635   apply to the code that you add in this way.  To avoid misleading anyone as
   4636   to the status of such modified files, you must delete this exception
   4637   notice from such code and/or adjust the licensing conditions notice
   4638   accordingly.
   4639 
   4640   4. If you write modifications of your own for this library, it is your
   4641   choice whether to permit this exception to apply to your modifications. 
   4642   If you do not wish that, you must delete the exception notice from such
   4643   code and/or adjust the licensing conditions notice accordingly.
   4644 
   4645 
   4646 </pre>
   4647 </div>
   4648 </div>
   4649 
   4650 
   4651 <div class="product">
   4652 <span class="title">libpng</span>
   4653 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   4654 <span class="homepage"><a href="http://libpng.org/">homepage</a></span>
   4655 <div class="licence">
   4656 <pre>
   4657 This copy of the libpng notices is provided for your convenience.  In case of
   4658 any discrepancy between this copy and the notices in the file png.h that is
   4659 included in the libpng distribution, the latter shall prevail.
   4660 
   4661 COPYRIGHT NOTICE, DISCLAIMER, and LICENSE:
   4662 
   4663 If you modify libpng you may insert additional notices immediately following
   4664 this sentence.
   4665 
   4666 This code is released under the libpng license.
   4667 
   4668 libpng versions 1.2.6, August 15, 2004, through 1.2.44, June 26, 2010, are
   4669 Copyright (c) 2004, 2006-2009 Glenn Randers-Pehrson, and are
   4670 distributed according to the same disclaimer and license as libpng-1.2.5
   4671 with the following individual added to the list of Contributing Authors
   4672 
   4673    Cosmin Truta
   4674 
   4675 libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are
   4676 Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are
   4677 distributed according to the same disclaimer and license as libpng-1.0.6
   4678 with the following individuals added to the list of Contributing Authors
   4679 
   4680    Simon-Pierre Cadieux
   4681    Eric S. Raymond
   4682    Gilles Vollant
   4683 
   4684 and with the following additions to the disclaimer:
   4685 
   4686    There is no warranty against interference with your enjoyment of the
   4687    library or against infringement.  There is no warranty that our
   4688    efforts or the library will fulfill any of your particular purposes
   4689    or needs.  This library is provided with all faults, and the entire
   4690    risk of satisfactory quality, performance, accuracy, and effort is with
   4691    the user.
   4692 
   4693 libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
   4694 Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are
   4695 distributed according to the same disclaimer and license as libpng-0.96,
   4696 with the following individuals added to the list of Contributing Authors:
   4697 
   4698    Tom Lane
   4699    Glenn Randers-Pehrson
   4700    Willem van Schaik
   4701 
   4702 libpng versions 0.89, June 1996, through 0.96, May 1997, are
   4703 Copyright (c) 1996, 1997 Andreas Dilger
   4704 Distributed according to the same disclaimer and license as libpng-0.88,
   4705 with the following individuals added to the list of Contributing Authors:
   4706 
   4707    John Bowler
   4708    Kevin Bracey
   4709    Sam Bushell
   4710    Magnus Holmgren
   4711    Greg Roelofs
   4712    Tom Tanner
   4713 
   4714 libpng versions 0.5, May 1995, through 0.88, January 1996, are
   4715 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
   4716 
   4717 For the purposes of this copyright and license, "Contributing Authors"
   4718 is defined as the following set of individuals:
   4719 
   4720    Andreas Dilger
   4721    Dave Martindale
   4722    Guy Eric Schalnat
   4723    Paul Schmidt
   4724    Tim Wegner
   4725 
   4726 The PNG Reference Library is supplied "AS IS".  The Contributing Authors
   4727 and Group 42, Inc. disclaim all warranties, expressed or implied,
   4728 including, without limitation, the warranties of merchantability and of
   4729 fitness for any purpose.  The Contributing Authors and Group 42, Inc.
   4730 assume no liability for direct, indirect, incidental, special, exemplary,
   4731 or consequential damages, which may result from the use of the PNG
   4732 Reference Library, even if advised of the possibility of such damage.
   4733 
   4734 Permission is hereby granted to use, copy, modify, and distribute this
   4735 source code, or portions hereof, for any purpose, without fee, subject
   4736 to the following restrictions:
   4737 
   4738 1. The origin of this source code must not be misrepresented.
   4739 
   4740 2. Altered versions must be plainly marked as such and must not
   4741    be misrepresented as being the original source.
   4742 
   4743 3. This Copyright notice may not be removed or altered from any
   4744    source or altered source distribution.
   4745 
   4746 The Contributing Authors and Group 42, Inc. specifically permit, without
   4747 fee, and encourage the use of this source code as a component to
   4748 supporting the PNG file format in commercial products.  If you use this
   4749 source code in a product, acknowledgment is not required but would be
   4750 appreciated.
   4751 
   4752 
   4753 A "png_get_copyright" function is available, for convenient use in "about"
   4754 boxes and the like:
   4755 
   4756    printf("%s",png_get_copyright(NULL));
   4757 
   4758 Also, the PNG logo (in PNG format, of course) is supplied in the
   4759 files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31).
   4760 
   4761 Libpng is OSI Certified Open Source Software.  OSI Certified Open Source is a
   4762 certification mark of the Open Source Initiative.
   4763 
   4764 Glenn Randers-Pehrson
   4765 glennrp at users.sourceforge.net
   4766 February 25, 2010
   4767 </pre>
   4768 </div>
   4769 </div>
   4770 
   4771 
   4772 <div class="product">
   4773 <span class="title">libsrtp</span>
   4774 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   4775 <span class="homepage"><a href="http://srtp.sourceforge.net">homepage</a></span>
   4776 <div class="licence">
   4777 <pre>/*
   4778  *	
   4779  * Copyright (c) 2001-2006 Cisco Systems, Inc.
   4780  * All rights reserved.
   4781  * 
   4782  * Redistribution and use in source and binary forms, with or without
   4783  * modification, are permitted provided that the following conditions
   4784  * are met:
   4785  * 
   4786  *   Redistributions of source code must retain the above copyright
   4787  *   notice, this list of conditions and the following disclaimer.
   4788  * 
   4789  *   Redistributions in binary form must reproduce the above
   4790  *   copyright notice, this list of conditions and the following
   4791  *   disclaimer in the documentation and/or other materials provided
   4792  *   with the distribution.
   4793  * 
   4794  *   Neither the name of the Cisco Systems, Inc. nor the names of its
   4795  *   contributors may be used to endorse or promote products derived
   4796  *   from this software without specific prior written permission.
   4797  * 
   4798  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   4799  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   4800  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
   4801  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
   4802  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
   4803  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
   4804  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
   4805  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   4806  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
   4807  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   4808  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
   4809  * OF THE POSSIBILITY OF SUCH DAMAGE.
   4810  *
   4811  */
   4812 </pre>
   4813 </div>
   4814 </div>
   4815 
   4816 
   4817 <div class="product">
   4818 <span class="title">libvpx</span>
   4819 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   4820 <span class="homepage"><a href="http://www.webmproject.org">homepage</a></span>
   4821 <div class="licence">
   4822 <pre>Copyright (c) 2010, Google Inc. All rights reserved.
   4823 
   4824 Redistribution and use in source and binary forms, with or without
   4825 modification, are permitted provided that the following conditions are
   4826 met:
   4827 
   4828   * Redistributions of source code must retain the above copyright
   4829     notice, this list of conditions and the following disclaimer.
   4830 
   4831   * Redistributions in binary form must reproduce the above copyright
   4832     notice, this list of conditions and the following disclaimer in
   4833     the documentation and/or other materials provided with the
   4834     distribution.
   4835 
   4836   * Neither the name of Google nor the names of its contributors may
   4837     be used to endorse or promote products derived from this software
   4838     without specific prior written permission.
   4839 
   4840 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   4841 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   4842 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
   4843 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
   4844 HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   4845 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   4846 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   4847 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   4848 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   4849 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
   4850 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   4851 
   4852 </pre>
   4853 </div>
   4854 </div>
   4855 
   4856 
   4857 <div class="product">
   4858 <span class="title">libwebpdecode</span>
   4859 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   4860 <span class="homepage"><a href="http://code.google.com/speed/webp">homepage</a></span>
   4861 <div class="licence">
   4862 <pre>Copyright (c) 2010, Google Inc. All rights reserved.
   4863 
   4864 Redistribution and use in source and binary forms, with or without
   4865 modification, are permitted provided that the following conditions are
   4866 met:
   4867 
   4868   * Redistributions of source code must retain the above copyright
   4869     notice, this list of conditions and the following disclaimer.
   4870 
   4871   * Redistributions in binary form must reproduce the above copyright
   4872     notice, this list of conditions and the following disclaimer in
   4873     the documentation and/or other materials provided with the
   4874     distribution.
   4875 
   4876   * Neither the name of Google nor the names of its contributors may
   4877     be used to endorse or promote products derived from this software
   4878     without specific prior written permission.
   4879 
   4880 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   4881 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   4882 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
   4883 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
   4884 HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   4885 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   4886 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   4887 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   4888 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   4889 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
   4890 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   4891 
   4892 Additional IP Rights Grant (Patents)
   4893 
   4894 "This implementation" means the copyrightable works distributed by
   4895 Google as part of the WebM Project.
   4896 
   4897 Google hereby grants to you a perpetual, worldwide, non-exclusive,
   4898 no-charge, royalty-free, irrevocable (except as stated in this section)
   4899 patent license to make, have made, use, offer to sell, sell, import,
   4900 transfer, and otherwise run, modify and propagate the contents of this
   4901 implementation of VP8, where such license applies only to those patent
   4902 claims, both currently owned by Google and acquired in the future,
   4903 licensable by Google that are necessarily infringed by this
   4904 implementation of VP8. This grant does not include claims that would be
   4905 infringed only as a consequence of further modification of this
   4906 implementation. If you or your agent or exclusive licensee institute or
   4907 order or agree to the institution of patent litigation against any
   4908 entity (including a cross-claim or counterclaim in a lawsuit) alleging
   4909 that this implementation of VP8 or any code incorporated within this
   4910 implementation of VP8 constitutes direct or contributory patent
   4911 infringement, or inducement of patent infringement, then any patent
   4912 rights granted to you under this License for this implementation of VP8
   4913 shall terminate as of the date such litigation is filed.
   4914 </pre>
   4915 </div>
   4916 </div>
   4917 
   4918 
   4919 <div class="product">
   4920 <span class="title">libxml</span>
   4921 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   4922 <span class="homepage"><a href="http://xmlsoft.org">homepage</a></span>
   4923 <div class="licence">
   4924 <pre>Except where otherwise noted in the source code (e.g. the files hash.c,
   4925 list.c and the trio files, which are covered by a similar licence but
   4926 with different Copyright notices) all the files are:
   4927 
   4928  Copyright (C) 1998-2003 Daniel Veillard.  All Rights Reserved.
   4929 
   4930 Permission is hereby granted, free of charge, to any person obtaining a copy
   4931 of this software and associated documentation files (the "Software"), to deal
   4932 in the Software without restriction, including without limitation the rights
   4933 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
   4934 copies of the Software, and to permit persons to whom the Software is fur-
   4935 nished to do so, subject to the following conditions:
   4936 
   4937 The above copyright notice and this permission notice shall be included in
   4938 all copies or substantial portions of the Software.
   4939 
   4940 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
   4941 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
   4942 NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
   4943 DANIEL VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
   4944 IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON-
   4945 NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
   4946 
   4947 Except as contained in this notice, the name of Daniel Veillard shall not
   4948 be used in advertising or otherwise to promote the sale, use or other deal-
   4949 ings in this Software without prior written authorization from him.
   4950 
   4951 </pre>
   4952 </div>
   4953 </div>
   4954 
   4955 
   4956 <div class="product">
   4957 <span class="title">libxslt</span>
   4958 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   4959 <span class="homepage"><a href="http://xmlsoft.org/XSLT">homepage</a></span>
   4960 <div class="licence">
   4961 <pre>Licence for libxslt except libexslt
   4962 ----------------------------------------------------------------------
   4963  Copyright (C) 2001-2002 Daniel Veillard.  All Rights Reserved.
   4964 
   4965 Permission is hereby granted, free of charge, to any person obtaining a copy
   4966 of this software and associated documentation files (the "Software"), to deal
   4967 in the Software without restriction, including without limitation the rights
   4968 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
   4969 copies of the Software, and to permit persons to whom the Software is fur-
   4970 nished to do so, subject to the following conditions:
   4971 
   4972 The above copyright notice and this permission notice shall be included in
   4973 all copies or substantial portions of the Software.
   4974 
   4975 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
   4976 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
   4977 NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
   4978 DANIEL VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
   4979 IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON-
   4980 NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
   4981 
   4982 Except as contained in this notice, the name of Daniel Veillard shall not
   4983 be used in advertising or otherwise to promote the sale, use or other deal-
   4984 ings in this Software without prior written authorization from him.
   4985 
   4986 ----------------------------------------------------------------------
   4987 
   4988 Licence for libexslt
   4989 ----------------------------------------------------------------------
   4990  Copyright (C) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard.
   4991  All Rights Reserved.
   4992 
   4993 Permission is hereby granted, free of charge, to any person obtaining a copy
   4994 of this software and associated documentation files (the "Software"), to deal
   4995 in the Software without restriction, including without limitation the rights
   4996 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
   4997 copies of the Software, and to permit persons to whom the Software is fur-
   4998 nished to do so, subject to the following conditions:
   4999 
   5000 The above copyright notice and this permission notice shall be included in
   5001 all copies or substantial portions of the Software.
   5002 
   5003 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
   5004 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
   5005 NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
   5006 AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
   5007 IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON-
   5008 NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
   5009 
   5010 Except as contained in this notice, the name of the authors shall not
   5011 be used in advertising or otherwise to promote the sale, use or other deal-
   5012 ings in this Software without prior written authorization from him.
   5013 ----------------------------------------------------------------------
   5014 </pre>
   5015 </div>
   5016 </div>
   5017 
   5018 
   5019 <div class="product">
   5020 <span class="title">LZMA SDK</span>
   5021 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   5022 <span class="homepage"><a href="http://www.7-zip.org/sdk.html">homepage</a></span>
   5023 <div class="licence">
   5024 <pre>LZMA SDK is placed in the public domain.
   5025 </pre>
   5026 </div>
   5027 </div>
   5028 
   5029 
   5030 <div class="product">
   5031 <span class="title">MesaLib</span>
   5032 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   5033 <span class="homepage"><a href="http://www.mesa3d.org/">homepage</a></span>
   5034 <div class="licence">
   5035 <pre>
   5036 Some parts of Mesa are copyrighted under the GNU LGPL.  See the
   5037 Mesa/docs/COPYRIGHT file for details.
   5038 
   5039 The following is the standard GNU copyright file.
   5040 ----------------------------------------------------------------------
   5041 
   5042 
   5043 		  GNU LIBRARY GENERAL PUBLIC LICENSE
   5044 		       Version 2, June 1991
   5045 
   5046  Copyright (C) 1991 Free Software Foundation, Inc.
   5047                     675 Mass Ave, Cambridge, MA 02139, USA
   5048  Everyone is permitted to copy and distribute verbatim copies
   5049  of this license document, but changing it is not allowed.
   5050 
   5051 [This is the first released version of the library GPL.  It is
   5052  numbered 2 because it goes with version 2 of the ordinary GPL.]
   5053 
   5054 			    Preamble
   5055 
   5056   The licenses for most software are designed to take away your
   5057 freedom to share and change it.  By contrast, the GNU General Public
   5058 Licenses are intended to guarantee your freedom to share and change
   5059 free software--to make sure the software is free for all its users.
   5060 
   5061   This license, the Library General Public License, applies to some
   5062 specially designated Free Software Foundation software, and to any
   5063 other libraries whose authors decide to use it.  You can use it for
   5064 your libraries, too.
   5065 
   5066   When we speak of free software, we are referring to freedom, not
   5067 price.  Our General Public Licenses are designed to make sure that you
   5068 have the freedom to distribute copies of free software (and charge for
   5069 this service if you wish), that you receive source code or can get it
   5070 if you want it, that you can change the software or use pieces of it
   5071 in new free programs; and that you know you can do these things.
   5072 
   5073   To protect your rights, we need to make restrictions that forbid
   5074 anyone to deny you these rights or to ask you to surrender the rights.
   5075 These restrictions translate to certain responsibilities for you if
   5076 you distribute copies of the library, or if you modify it.
   5077 
   5078   For example, if you distribute copies of the library, whether gratis
   5079 or for a fee, you must give the recipients all the rights that we gave
   5080 you.  You must make sure that they, too, receive or can get the source
   5081 code.  If you link a program with the library, you must provide
   5082 complete object files to the recipients so that they can relink them
   5083 with the library, after making changes to the library and recompiling
   5084 it.  And you must show them these terms so they know their rights.
   5085 
   5086   Our method of protecting your rights has two steps: (1) copyright
   5087 the library, and (2) offer you this license which gives you legal
   5088 permission to copy, distribute and/or modify the library.
   5089 
   5090   Also, for each distributor's protection, we want to make certain
   5091 that everyone understands that there is no warranty for this free
   5092 library.  If the library is modified by someone else and passed on, we
   5093 want its recipients to know that what they have is not the original
   5094 version, so that any problems introduced by others will not reflect on
   5095 the original authors' reputations.
   5096 
   5098   Finally, any free program is threatened constantly by software
   5099 patents.  We wish to avoid the danger that companies distributing free
   5100 software will individually obtain patent licenses, thus in effect
   5101 transforming the program into proprietary software.  To prevent this,
   5102 we have made it clear that any patent must be licensed for everyone's
   5103 free use or not licensed at all.
   5104 
   5105   Most GNU software, including some libraries, is covered by the ordinary
   5106 GNU General Public License, which was designed for utility programs.  This
   5107 license, the GNU Library General Public License, applies to certain
   5108 designated libraries.  This license is quite different from the ordinary
   5109 one; be sure to read it in full, and don't assume that anything in it is
   5110 the same as in the ordinary license.
   5111 
   5112   The reason we have a separate public license for some libraries is that
   5113 they blur the distinction we usually make between modifying or adding to a
   5114 program and simply using it.  Linking a program with a library, without
   5115 changing the library, is in some sense simply using the library, and is
   5116 analogous to running a utility program or application program.  However, in
   5117 a textual and legal sense, the linked executable is a combined work, a
   5118 derivative of the original library, and the ordinary General Public License
   5119 treats it as such.
   5120 
   5121   Because of this blurred distinction, using the ordinary General
   5122 Public License for libraries did not effectively promote software
   5123 sharing, because most developers did not use the libraries.  We
   5124 concluded that weaker conditions might promote sharing better.
   5125 
   5126   However, unrestricted linking of non-free programs would deprive the
   5127 users of those programs of all benefit from the free status of the
   5128 libraries themselves.  This Library General Public License is intended to
   5129 permit developers of non-free programs to use free libraries, while
   5130 preserving your freedom as a user of such programs to change the free
   5131 libraries that are incorporated in them.  (We have not seen how to achieve
   5132 this as regards changes in header files, but we have achieved it as regards
   5133 changes in the actual functions of the Library.)  The hope is that this
   5134 will lead to faster development of free libraries.
   5135 
   5136   The precise terms and conditions for copying, distribution and
   5137 modification follow.  Pay close attention to the difference between a
   5138 "work based on the library" and a "work that uses the library".  The
   5139 former contains code derived from the library, while the latter only
   5140 works together with the library.
   5141 
   5142   Note that it is possible for a library to be covered by the ordinary
   5143 General Public License rather than by this special one.
   5144 
   5146 		  GNU LIBRARY GENERAL PUBLIC LICENSE
   5147    TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
   5148 
   5149   0. This License Agreement applies to any software library which
   5150 contains a notice placed by the copyright holder or other authorized
   5151 party saying it may be distributed under the terms of this Library
   5152 General Public License (also called "this License").  Each licensee is
   5153 addressed as "you".
   5154 
   5155   A "library" means a collection of software functions and/or data
   5156 prepared so as to be conveniently linked with application programs
   5157 (which use some of those functions and data) to form executables.
   5158 
   5159   The "Library", below, refers to any such software library or work
   5160 which has been distributed under these terms.  A "work based on the
   5161 Library" means either the Library or any derivative work under
   5162 copyright law: that is to say, a work containing the Library or a
   5163 portion of it, either verbatim or with modifications and/or translated
   5164 straightforwardly into another language.  (Hereinafter, translation is
   5165 included without limitation in the term "modification".)
   5166 
   5167   "Source code" for a work means the preferred form of the work for
   5168 making modifications to it.  For a library, complete source code means
   5169 all the source code for all modules it contains, plus any associated
   5170 interface definition files, plus the scripts used to control compilation
   5171 and installation of the library.
   5172 
   5173   Activities other than copying, distribution and modification are not
   5174 covered by this License; they are outside its scope.  The act of
   5175 running a program using the Library is not restricted, and output from
   5176 such a program is covered only if its contents constitute a work based
   5177 on the Library (independent of the use of the Library in a tool for
   5178 writing it).  Whether that is true depends on what the Library does
   5179 and what the program that uses the Library does.
   5180   
   5181   1. You may copy and distribute verbatim copies of the Library's
   5182 complete source code as you receive it, in any medium, provided that
   5183 you conspicuously and appropriately publish on each copy an
   5184 appropriate copyright notice and disclaimer of warranty; keep intact
   5185 all the notices that refer to this License and to the absence of any
   5186 warranty; and distribute a copy of this License along with the
   5187 Library.
   5188 
   5189   You may charge a fee for the physical act of transferring a copy,
   5190 and you may at your option offer warranty protection in exchange for a
   5191 fee.
   5192 
   5194   2. You may modify your copy or copies of the Library or any portion
   5195 of it, thus forming a work based on the Library, and copy and
   5196 distribute such modifications or work under the terms of Section 1
   5197 above, provided that you also meet all of these conditions:
   5198 
   5199     a) The modified work must itself be a software library.
   5200 
   5201     b) You must cause the files modified to carry prominent notices
   5202     stating that you changed the files and the date of any change.
   5203 
   5204     c) You must cause the whole of the work to be licensed at no
   5205     charge to all third parties under the terms of this License.
   5206 
   5207     d) If a facility in the modified Library refers to a function or a
   5208     table of data to be supplied by an application program that uses
   5209     the facility, other than as an argument passed when the facility
   5210     is invoked, then you must make a good faith effort to ensure that,
   5211     in the event an application does not supply such function or
   5212     table, the facility still operates, and performs whatever part of
   5213     its purpose remains meaningful.
   5214 
   5215     (For example, a function in a library to compute square roots has
   5216     a purpose that is entirely well-defined independent of the
   5217     application.  Therefore, Subsection 2d requires that any
   5218     application-supplied function or table used by this function must
   5219     be optional: if the application does not supply it, the square
   5220     root function must still compute square roots.)
   5221 
   5222 These requirements apply to the modified work as a whole.  If
   5223 identifiable sections of that work are not derived from the Library,
   5224 and can be reasonably considered independent and separate works in
   5225 themselves, then this License, and its terms, do not apply to those
   5226 sections when you distribute them as separate works.  But when you
   5227 distribute the same sections as part of a whole which is a work based
   5228 on the Library, the distribution of the whole must be on the terms of
   5229 this License, whose permissions for other licensees extend to the
   5230 entire whole, and thus to each and every part regardless of who wrote
   5231 it.
   5232 
   5233 Thus, it is not the intent of this section to claim rights or contest
   5234 your rights to work written entirely by you; rather, the intent is to
   5235 exercise the right to control the distribution of derivative or
   5236 collective works based on the Library.
   5237 
   5238 In addition, mere aggregation of another work not based on the Library
   5239 with the Library (or with a work based on the Library) on a volume of
   5240 a storage or distribution medium does not bring the other work under
   5241 the scope of this License.
   5242 
   5243   3. You may opt to apply the terms of the ordinary GNU General Public
   5244 License instead of this License to a given copy of the Library.  To do
   5245 this, you must alter all the notices that refer to this License, so
   5246 that they refer to the ordinary GNU General Public License, version 2,
   5247 instead of to this License.  (If a newer version than version 2 of the
   5248 ordinary GNU General Public License has appeared, then you can specify
   5249 that version instead if you wish.)  Do not make any other change in
   5250 these notices.
   5251 
   5253   Once this change is made in a given copy, it is irreversible for
   5254 that copy, so the ordinary GNU General Public License applies to all
   5255 subsequent copies and derivative works made from that copy.
   5256 
   5257   This option is useful when you wish to copy part of the code of
   5258 the Library into a program that is not a library.
   5259 
   5260   4. You may copy and distribute the Library (or a portion or
   5261 derivative of it, under Section 2) in object code or executable form
   5262 under the terms of Sections 1 and 2 above provided that you accompany
   5263 it with the complete corresponding machine-readable source code, which
   5264 must be distributed under the terms of Sections 1 and 2 above on a
   5265 medium customarily used for software interchange.
   5266 
   5267   If distribution of object code is made by offering access to copy
   5268 from a designated place, then offering equivalent access to copy the
   5269 source code from the same place satisfies the requirement to
   5270 distribute the source code, even though third parties are not
   5271 compelled to copy the source along with the object code.
   5272 
   5273   5. A program that contains no derivative of any portion of the
   5274 Library, but is designed to work with the Library by being compiled or
   5275 linked with it, is called a "work that uses the Library".  Such a
   5276 work, in isolation, is not a derivative work of the Library, and
   5277 therefore falls outside the scope of this License.
   5278 
   5279   However, linking a "work that uses the Library" with the Library
   5280 creates an executable that is a derivative of the Library (because it
   5281 contains portions of the Library), rather than a "work that uses the
   5282 library".  The executable is therefore covered by this License.
   5283 Section 6 states terms for distribution of such executables.
   5284 
   5285   When a "work that uses the Library" uses material from a header file
   5286 that is part of the Library, the object code for the work may be a
   5287 derivative work of the Library even though the source code is not.
   5288 Whether this is true is especially significant if the work can be
   5289 linked without the Library, or if the work is itself a library.  The
   5290 threshold for this to be true is not precisely defined by law.
   5291 
   5292   If such an object file uses only numerical parameters, data
   5293 structure layouts and accessors, and small macros and small inline
   5294 functions (ten lines or less in length), then the use of the object
   5295 file is unrestricted, regardless of whether it is legally a derivative
   5296 work.  (Executables containing this object code plus portions of the
   5297 Library will still fall under Section 6.)
   5298 
   5299   Otherwise, if the work is a derivative of the Library, you may
   5300 distribute the object code for the work under the terms of Section 6.
   5301 Any executables containing that work also fall under Section 6,
   5302 whether or not they are linked directly with the Library itself.
   5303 
   5305   6. As an exception to the Sections above, you may also compile or
   5306 link a "work that uses the Library" with the Library to produce a
   5307 work containing portions of the Library, and distribute that work
   5308 under terms of your choice, provided that the terms permit
   5309 modification of the work for the customer's own use and reverse
   5310 engineering for debugging such modifications.
   5311 
   5312   You must give prominent notice with each copy of the work that the
   5313 Library is used in it and that the Library and its use are covered by
   5314 this License.  You must supply a copy of this License.  If the work
   5315 during execution displays copyright notices, you must include the
   5316 copyright notice for the Library among them, as well as a reference
   5317 directing the user to the copy of this License.  Also, you must do one
   5318 of these things:
   5319 
   5320     a) Accompany the work with the complete corresponding
   5321     machine-readable source code for the Library including whatever
   5322     changes were used in the work (which must be distributed under
   5323     Sections 1 and 2 above); and, if the work is an executable linked
   5324     with the Library, with the complete machine-readable "work that
   5325     uses the Library", as object code and/or source code, so that the
   5326     user can modify the Library and then relink to produce a modified
   5327     executable containing the modified Library.  (It is understood
   5328     that the user who changes the contents of definitions files in the
   5329     Library will not necessarily be able to recompile the application
   5330     to use the modified definitions.)
   5331 
   5332     b) Accompany the work with a written offer, valid for at
   5333     least three years, to give the same user the materials
   5334     specified in Subsection 6a, above, for a charge no more
   5335     than the cost of performing this distribution.
   5336 
   5337     c) If distribution of the work is made by offering access to copy
   5338     from a designated place, offer equivalent access to copy the above
   5339     specified materials from the same place.
   5340 
   5341     d) Verify that the user has already received a copy of these
   5342     materials or that you have already sent this user a copy.
   5343 
   5344   For an executable, the required form of the "work that uses the
   5345 Library" must include any data and utility programs needed for
   5346 reproducing the executable from it.  However, as a special exception,
   5347 the source code distributed need not include anything that is normally
   5348 distributed (in either source or binary form) with the major
   5349 components (compiler, kernel, and so on) of the operating system on
   5350 which the executable runs, unless that component itself accompanies
   5351 the executable.
   5352 
   5353   It may happen that this requirement contradicts the license
   5354 restrictions of other proprietary libraries that do not normally
   5355 accompany the operating system.  Such a contradiction means you cannot
   5356 use both them and the Library together in an executable that you
   5357 distribute.
   5358 
   5360   7. You may place library facilities that are a work based on the
   5361 Library side-by-side in a single library together with other library
   5362 facilities not covered by this License, and distribute such a combined
   5363 library, provided that the separate distribution of the work based on
   5364 the Library and of the other library facilities is otherwise
   5365 permitted, and provided that you do these two things:
   5366 
   5367     a) Accompany the combined library with a copy of the same work
   5368     based on the Library, uncombined with any other library
   5369     facilities.  This must be distributed under the terms of the
   5370     Sections above.
   5371 
   5372     b) Give prominent notice with the combined library of the fact
   5373     that part of it is a work based on the Library, and explaining
   5374     where to find the accompanying uncombined form of the same work.
   5375 
   5376   8. You may not copy, modify, sublicense, link with, or distribute
   5377 the Library except as expressly provided under this License.  Any
   5378 attempt otherwise to copy, modify, sublicense, link with, or
   5379 distribute the Library is void, and will automatically terminate your
   5380 rights under this License.  However, parties who have received copies,
   5381 or rights, from you under this License will not have their licenses
   5382 terminated so long as such parties remain in full compliance.
   5383 
   5384   9. You are not required to accept this License, since you have not
   5385 signed it.  However, nothing else grants you permission to modify or
   5386 distribute the Library or its derivative works.  These actions are
   5387 prohibited by law if you do not accept this License.  Therefore, by
   5388 modifying or distributing the Library (or any work based on the
   5389 Library), you indicate your acceptance of this License to do so, and
   5390 all its terms and conditions for copying, distributing or modifying
   5391 the Library or works based on it.
   5392 
   5393   10. Each time you redistribute the Library (or any work based on the
   5394 Library), the recipient automatically receives a license from the
   5395 original licensor to copy, distribute, link with or modify the Library
   5396 subject to these terms and conditions.  You may not impose any further
   5397 restrictions on the recipients' exercise of the rights granted herein.
   5398 You are not responsible for enforcing compliance by third parties to
   5399 this License.
   5400 
   5402   11. If, as a consequence of a court judgment or allegation of patent
   5403 infringement or for any other reason (not limited to patent issues),
   5404 conditions are imposed on you (whether by court order, agreement or
   5405 otherwise) that contradict the conditions of this License, they do not
   5406 excuse you from the conditions of this License.  If you cannot
   5407 distribute so as to satisfy simultaneously your obligations under this
   5408 License and any other pertinent obligations, then as a consequence you
   5409 may not distribute the Library at all.  For example, if a patent
   5410 license would not permit royalty-free redistribution of the Library by
   5411 all those who receive copies directly or indirectly through you, then
   5412 the only way you could satisfy both it and this License would be to
   5413 refrain entirely from distribution of the Library.
   5414 
   5415 If any portion of this section is held invalid or unenforceable under any
   5416 particular circumstance, the balance of the section is intended to apply,
   5417 and the section as a whole is intended to apply in other circumstances.
   5418 
   5419 It is not the purpose of this section to induce you to infringe any
   5420 patents or other property right claims or to contest validity of any
   5421 such claims; this section has the sole purpose of protecting the
   5422 integrity of the free software distribution system which is
   5423 implemented by public license practices.  Many people have made
   5424 generous contributions to the wide range of software distributed
   5425 through that system in reliance on consistent application of that
   5426 system; it is up to the author/donor to decide if he or she is willing
   5427 to distribute software through any other system and a licensee cannot
   5428 impose that choice.
   5429 
   5430 This section is intended to make thoroughly clear what is believed to
   5431 be a consequence of the rest of this License.
   5432 
   5433   12. If the distribution and/or use of the Library is restricted in
   5434 certain countries either by patents or by copyrighted interfaces, the
   5435 original copyright holder who places the Library under this License may add
   5436 an explicit geographical distribution limitation excluding those countries,
   5437 so that distribution is permitted only in or among countries not thus
   5438 excluded.  In such case, this License incorporates the limitation as if
   5439 written in the body of this License.
   5440 
   5441   13. The Free Software Foundation may publish revised and/or new
   5442 versions of the Library General Public License from time to time.
   5443 Such new versions will be similar in spirit to the present version,
   5444 but may differ in detail to address new problems or concerns.
   5445 
   5446 Each version is given a distinguishing version number.  If the Library
   5447 specifies a version number of this License which applies to it and
   5448 "any later version", you have the option of following the terms and
   5449 conditions either of that version or of any later version published by
   5450 the Free Software Foundation.  If the Library does not specify a
   5451 license version number, you may choose any version ever published by
   5452 the Free Software Foundation.
   5453 
   5455   14. If you wish to incorporate parts of the Library into other free
   5456 programs whose distribution conditions are incompatible with these,
   5457 write to the author to ask for permission.  For software which is
   5458 copyrighted by the Free Software Foundation, write to the Free
   5459 Software Foundation; we sometimes make exceptions for this.  Our
   5460 decision will be guided by the two goals of preserving the free status
   5461 of all derivatives of our free software and of promoting the sharing
   5462 and reuse of software generally.
   5463 
   5464 			    NO WARRANTY
   5465 
   5466   15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
   5467 WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
   5468 EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
   5469 OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
   5470 KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
   5471 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
   5472 PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
   5473 LIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
   5474 THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
   5475 
   5476   16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
   5477 WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
   5478 AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
   5479 FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
   5480 CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
   5481 LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
   5482 RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
   5483 FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
   5484 SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
   5485 DAMAGES.
   5486 
   5487 		     END OF TERMS AND CONDITIONS
   5488 
   5490      Appendix: How to Apply These Terms to Your New Libraries
   5491 
   5492   If you develop a new library, and you want it to be of the greatest
   5493 possible use to the public, we recommend making it free software that
   5494 everyone can redistribute and change.  You can do so by permitting
   5495 redistribution under these terms (or, alternatively, under the terms of the
   5496 ordinary General Public License).
   5497 
   5498   To apply these terms, attach the following notices to the library.  It is
   5499 safest to attach them to the start of each source file to most effectively
   5500 convey the exclusion of warranty; and each file should have at least the
   5501 "copyright" line and a pointer to where the full notice is found.
   5502 
   5503     &lt;one line to give the library's name and a brief idea of what it does.&gt;
   5504     Copyright (C) &lt;year&gt;  &lt;name of author&gt;
   5505 
   5506     This library is free software; you can redistribute it and/or
   5507     modify it under the terms of the GNU Library General Public
   5508     License as published by the Free Software Foundation; either
   5509     version 2 of the License, or (at your option) any later version.
   5510 
   5511     This library is distributed in the hope that it will be useful,
   5512     but WITHOUT ANY WARRANTY; without even the implied warranty of
   5513     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   5514     Library General Public License for more details.
   5515 
   5516     You should have received a copy of the GNU Library General Public
   5517     License along with this library; if not, write to the Free
   5518     Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
   5519 
   5520 Also add information on how to contact you by electronic and paper mail.
   5521 
   5522 You should also get your employer (if you work as a programmer) or your
   5523 school, if any, to sign a "copyright disclaimer" for the library, if
   5524 necessary.  Here is a sample; alter the names:
   5525 
   5526   Yoyodyne, Inc., hereby disclaims all copyright interest in the
   5527   library `Frob' (a library for tweaking knobs) written by James Random Hacker.
   5528 
   5529   &lt;signature of Ty Coon&gt;, 1 April 1990
   5530   Ty Coon, President of Vice
   5531 
   5532 That's all there is to it!
   5533 
   5534 </pre>
   5535 </div>
   5536 </div>
   5537 
   5538 
   5539 <div class="product">
   5540 <span class="title">modp base64 decoder</span>
   5541 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   5542 <span class="homepage"><a href="http://modp.com/release/base64/">homepage</a></span>
   5543 <div class="licence">
   5544 <pre> * MODP_B64 - High performance base64 encoder/decoder
   5545  * Version 1.3 -- 17-Mar-2006
   5546  * http://modp.com/release/base64
   5547  *
   5548  * Copyright (c) 2005, 2006  Nick Galbreath -- nickg [at] modp [dot] com
   5549  * All rights reserved.
   5550  *
   5551  * Redistribution and use in source and binary forms, with or without
   5552  * modification, are permitted provided that the following conditions are
   5553  * met:
   5554  *
   5555  *   Redistributions of source code must retain the above copyright
   5556  *   notice, this list of conditions and the following disclaimer.
   5557  *
   5558  *   Redistributions in binary form must reproduce the above copyright
   5559  *   notice, this list of conditions and the following disclaimer in the
   5560  *   documentation and/or other materials provided with the distribution.
   5561  *
   5562  *   Neither the name of the modp.com nor the names of its
   5563  *   contributors may be used to endorse or promote products derived from
   5564  *   this software without specific prior written permission.
   5565  *
   5566  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   5567  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   5568  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
   5569  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
   5570  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   5571  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   5572  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   5573  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   5574  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   5575  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
   5576  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   5577 </pre>
   5578 </div>
   5579 </div>
   5580 
   5581 
   5582 <div class="product">
   5583 <span class="title">NSBezierPath additions from Sean Patrick O'Brien</span>
   5584 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   5585 <span class="homepage"><a href="http://www.seanpatrickobrien.com/journal/posts/3">homepage</a></span>
   5586 <div class="licence">
   5587 <pre>Copyright 2008 MolokoCacao
   5588 All rights reserved
   5589 
   5590 Redistribution and use in source and binary forms, with or without
   5591 modification, are permitted providing that the following conditions 
   5592 are met:
   5593 1. Redistributions of source code must retain the above copyright
   5594    notice, this list of conditions and the following disclaimer.
   5595 2. Redistributions in binary form must reproduce the above copyright
   5596    notice, this list of conditions and the following disclaimer in the
   5597    documentation and/or other materials provided with the distribution.
   5598 
   5599 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
   5600 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
   5601 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   5602 ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
   5603 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   5604 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   5605 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   5606 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
   5607 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
   5608 IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   5609 POSSIBILITY OF SUCH DAMAGE.
   5610 </pre>
   5611 </div>
   5612 </div>
   5613 
   5614 
   5615 <div class="product">
   5616 <span class="title">Mongoose</span>
   5617 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   5618 <span class="homepage"><a href="http://code.google.com/p/mongoose/">homepage</a></span>
   5619 <div class="licence">
   5620 <pre>Copyright (c) 2004-2009 Sergey Lyubka
   5621 Portions Copyright (c) 2009 Gilbert Wellisch
   5622 
   5623 Permission is hereby granted, free of charge, to any person obtaining a copy
   5624 of this software and associated documentation files (the "Software"), to deal
   5625 in the Software without restriction, including without limitation the rights
   5626 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
   5627 copies of the Software, and to permit persons to whom the Software is
   5628 furnished to do so, subject to the following conditions:
   5629 
   5630 The above copyright notice and this permission notice shall be included in
   5631 all copies or substantial portions of the Software.
   5632 
   5633 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
   5634 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   5635 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
   5636 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
   5637 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
   5638 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
   5639 THE SOFTWARE.
   5640 
   5641 </pre>
   5642 </div>
   5643 </div>
   5644 
   5645 
   5646 <div class="product">
   5647 <span class="title">Cocoa extension code from Camino</span>
   5648 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   5649 <span class="homepage"><a href="http://caminobrowser.org/">homepage</a></span>
   5650 <div class="licence">
   5651 <pre>/* ***** BEGIN LICENSE BLOCK *****
   5652  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
   5653  *
   5654  * The contents of this file are subject to the Mozilla Public License Version
   5655  * 1.1 (the "License"); you may not use this file except in compliance with
   5656  * the License. You may obtain a copy of the License at
   5657  * http://www.mozilla.org/MPL/
   5658  *
   5659  * Software distributed under the License is distributed on an "AS IS" basis,
   5660  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
   5661  * for the specific language governing rights and limitations under the
   5662  * License.
   5663  *
   5664  * The Original Code is mozilla.org code.
   5665  *
   5666  * The Initial Developer of the Original Code is
   5667  * Netscape Communications Corporation.
   5668  * Portions created by the Initial Developer are Copyright (C) 2002
   5669  * the Initial Developer. All Rights Reserved.
   5670  *
   5671  * Contributor(s):
   5672  *
   5673  * Alternatively, the contents of this file may be used under the terms of
   5674  * either the GNU General Public License Version 2 or later (the "GPL"), or
   5675  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
   5676  * in which case the provisions of the GPL or the LGPL are applicable instead
   5677  * of those above. If you wish to allow use of your version of this file only
   5678  * under the terms of either the GPL or the LGPL, and not to allow others to
   5679  * use your version of this file under the terms of the MPL, indicate your
   5680  * decision by deleting the provisions above and replace them with the notice
   5681  * and other provisions required by the GPL or the LGPL. If you do not delete
   5682  * the provisions above, a recipient may use your version of this file under
   5683  * the terms of any one of the MPL, the GPL or the LGPL.
   5684  *
   5685  * ***** END LICENSE BLOCK ***** */
   5686 </pre>
   5687 </div>
   5688 </div>
   5689 
   5690 
   5691 <div class="product">
   5692 <span class="title">npapi</span>
   5693 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   5694 <span class="homepage"><a href="http://mxr.mozilla.org/mozilla-central/source/modules/plugin/base/public/">homepage</a></span>
   5695 <div class="licence">
   5696 <pre>Version: MPL 1.1/GPL 2.0/LGPL 2.1
   5697 
   5698 The contents of this file are subject to the Mozilla Public License Version
   5699 1.1 (the "License"); you may not use this file except in compliance with
   5700 the License. You may obtain a copy of the License at
   5701 http://www.mozilla.org/MPL/
   5702 
   5703 Software distributed under the License is distributed on an "AS IS" basis,
   5704 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
   5705 for the specific language governing rights and limitations under the
   5706 License.
   5707 
   5708 The Original Code is mozilla.org code.
   5709 
   5710 The Initial Developer of the Original Code is
   5711 Netscape Communications Corporation.
   5712 Portions created by the Initial Developer are Copyright (C) 1998
   5713 the Initial Developer. All Rights Reserved.
   5714 
   5715 Contributor(s):
   5716 
   5717 Alternatively, the contents of this file may be used under the terms of
   5718 either the GNU General Public License Version 2 or later (the "GPL"), or
   5719 the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
   5720 in which case the provisions of the GPL or the LGPL are applicable instead
   5721 of those above. If you wish to allow use of your version of this file only
   5722 under the terms of either the GPL or the LGPL, and not to allow others to
   5723 use your version of this file under the terms of the MPL, indicate your
   5724 decision by deleting the provisions above and replace them with the notice
   5725 and other provisions required by the GPL or the LGPL. If you do not delete
   5726 the provisions above, a recipient may use your version of this file under
   5727 the terms of any one of the MPL, the GPL or the LGPL.
   5728 </pre>
   5729 </div>
   5730 </div>
   5731 
   5732 
   5733 <div class="product">
   5734 <span class="title">OCMock</span>
   5735 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   5736 <span class="homepage"><a href="http://www.mulle-kybernetik.com/software/OCMock/">homepage</a></span>
   5737 <div class="licence">
   5738 <pre>  
   5739   Copyright (c) 2004-2009 by Mulle Kybernetik. All rights reserved.
   5740 
   5741   Permission to use, copy, modify and distribute this software and its documentation
   5742   is hereby granted, provided that both the copyright notice and this permission
   5743   notice appear in all copies of the software, derivative works or modified versions,
   5744   and any portions thereof, and that both notices appear in supporting documentation,
   5745   and that credit is given to Mulle Kybernetik in all documents and publicity
   5746   pertaining to direct or indirect use of this code or its derivatives.
   5747 
   5748   THIS IS EXPERIMENTAL SOFTWARE AND IT IS KNOWN TO HAVE BUGS, SOME OF WHICH MAY HAVE
   5749   SERIOUS CONSEQUENCES. THE COPYRIGHT HOLDER ALLOWS FREE USE OF THIS SOFTWARE IN ITS
   5750   "AS IS" CONDITION. THE COPYRIGHT HOLDER DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY
   5751   DAMAGES WHATSOEVER RESULTING DIRECTLY OR INDIRECTLY FROM THE USE OF THIS SOFTWARE
   5752   OR OF ANY DERIVATIVE WORK.</pre>
   5753 </div>
   5754 </div>
   5755 
   5756 
   5757 <div class="product">
   5758 <span class="title">OpenMAX IL</span>
   5759 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   5760 <span class="homepage"><a href="http://www.khronos.org/openmax/">homepage</a></span>
   5761 <div class="licence">
   5762 <pre>Copyright (c) 2008 The Khronos Group Inc.
   5763 
   5764 Permission is hereby granted, free of charge, to any person obtaining
   5765 a copy of this software and associated documentation files (the
   5766 "Software"), to deal in the Software without restriction, including
   5767 without limitation the rights to use, copy, modify, merge, publish,
   5768 distribute, sublicense, and/or sell copies of the Software, and to
   5769 permit persons to whom the Software is furnished to do so, subject
   5770 to the following conditions:
   5771 The above copyright notice and this permission notice shall be included
   5772 in all copies or substantial portions of the Software.
   5773 
   5774 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   5775 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
   5776 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
   5777 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
   5778 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
   5779 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
   5780 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
   5781 </pre>
   5782 </div>
   5783 </div>
   5784 
   5785 
   5786 <div class="product">
   5787 <span class="title">openssl</span>
   5788 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   5789 <span class="homepage"><a href="http://openssl.org/source/">homepage</a></span>
   5790 <div class="licence">
   5791 <pre>
   5792   LICENSE ISSUES
   5793   ==============
   5794 
   5795   The OpenSSL toolkit stays under a dual license, i.e. both the conditions of
   5796   the OpenSSL License and the original SSLeay license apply to the toolkit.
   5797   See below for the actual license texts. Actually both licenses are BSD-style
   5798   Open Source licenses. In case of any license issues related to OpenSSL
   5799   please contact openssl-core (a] openssl.org.
   5800 
   5801   OpenSSL License
   5802   ---------------
   5803 
   5804 /* ====================================================================
   5805  * Copyright (c) 1998-2008 The OpenSSL Project.  All rights reserved.
   5806  *
   5807  * Redistribution and use in source and binary forms, with or without
   5808  * modification, are permitted provided that the following conditions
   5809  * are met:
   5810  *
   5811  * 1. Redistributions of source code must retain the above copyright
   5812  *    notice, this list of conditions and the following disclaimer. 
   5813  *
   5814  * 2. Redistributions in binary form must reproduce the above copyright
   5815  *    notice, this list of conditions and the following disclaimer in
   5816  *    the documentation and/or other materials provided with the
   5817  *    distribution.
   5818  *
   5819  * 3. All advertising materials mentioning features or use of this
   5820  *    software must display the following acknowledgment:
   5821  *    "This product includes software developed by the OpenSSL Project
   5822  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
   5823  *
   5824  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
   5825  *    endorse or promote products derived from this software without
   5826  *    prior written permission. For written permission, please contact
   5827  *    openssl-core (a] openssl.org.
   5828  *
   5829  * 5. Products derived from this software may not be called "OpenSSL"
   5830  *    nor may "OpenSSL" appear in their names without prior written
   5831  *    permission of the OpenSSL Project.
   5832  *
   5833  * 6. Redistributions of any form whatsoever must retain the following
   5834  *    acknowledgment:
   5835  *    "This product includes software developed by the OpenSSL Project
   5836  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
   5837  *
   5838  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
   5839  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   5840  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
   5841  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
   5842  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   5843  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
   5844  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
   5845  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   5846  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
   5847  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   5848  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
   5849  * OF THE POSSIBILITY OF SUCH DAMAGE.
   5850  * ====================================================================
   5851  *
   5852  * This product includes cryptographic software written by Eric Young
   5853  * (eay (a] cryptsoft.com).  This product includes software written by Tim
   5854  * Hudson (tjh (a] cryptsoft.com).
   5855  *
   5856  */
   5857 
   5858  Original SSLeay License
   5859  -----------------------
   5860 
   5861 /* Copyright (C) 1995-1998 Eric Young (eay (a] cryptsoft.com)
   5862  * All rights reserved.
   5863  *
   5864  * This package is an SSL implementation written
   5865  * by Eric Young (eay (a] cryptsoft.com).
   5866  * The implementation was written so as to conform with Netscapes SSL.
   5867  * 
   5868  * This library is free for commercial and non-commercial use as long as
   5869  * the following conditions are aheared to.  The following conditions
   5870  * apply to all code found in this distribution, be it the RC4, RSA,
   5871  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
   5872  * included with this distribution is covered by the same copyright terms
   5873  * except that the holder is Tim Hudson (tjh (a] cryptsoft.com).
   5874  * 
   5875  * Copyright remains Eric Young's, and as such any Copyright notices in
   5876  * the code are not to be removed.
   5877  * If this package is used in a product, Eric Young should be given attribution
   5878  * as the author of the parts of the library used.
   5879  * This can be in the form of a textual message at program startup or
   5880  * in documentation (online or textual) provided with the package.
   5881  * 
   5882  * Redistribution and use in source and binary forms, with or without
   5883  * modification, are permitted provided that the following conditions
   5884  * are met:
   5885  * 1. Redistributions of source code must retain the copyright
   5886  *    notice, this list of conditions and the following disclaimer.
   5887  * 2. Redistributions in binary form must reproduce the above copyright
   5888  *    notice, this list of conditions and the following disclaimer in the
   5889  *    documentation and/or other materials provided with the distribution.
   5890  * 3. All advertising materials mentioning features or use of this software
   5891  *    must display the following acknowledgement:
   5892  *    "This product includes cryptographic software written by
   5893  *     Eric Young (eay (a] cryptsoft.com)"
   5894  *    The word 'cryptographic' can be left out if the rouines from the library
   5895  *    being used are not cryptographic related :-).
   5896  * 4. If you include any Windows specific code (or a derivative thereof) from 
   5897  *    the apps directory (application code) you must include an acknowledgement:
   5898  *    "This product includes software written by Tim Hudson (tjh (a] cryptsoft.com)"
   5899  * 
   5900  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
   5901  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   5902  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   5903  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
   5904  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   5905  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   5906  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   5907  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   5908  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   5909  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   5910  * SUCH DAMAGE.
   5911  * 
   5912  * The licence and distribution terms for any publically available version or
   5913  * derivative of this code cannot be changed.  i.e. this code cannot simply be
   5914  * copied and put under another distribution licence
   5915  * [including the GNU Public Licence.]
   5916  */
   5917 
   5918 </pre>
   5919 </div>
   5920 </div>
   5921 
   5922 
   5923 <div class="product">
   5924 <span class="title">OTS (OpenType Sanitizer)</span>
   5925 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   5926 <span class="homepage"><a href="http://code.google.com/p/ots/">homepage</a></span>
   5927 <div class="licence">
   5928 <pre>// Copyright (c) 2009 The Chromium Authors. All rights reserved.
   5929 //
   5930 // Redistribution and use in source and binary forms, with or without
   5931 // modification, are permitted provided that the following conditions are
   5932 // met:
   5933 //
   5934 //    * Redistributions of source code must retain the above copyright
   5935 // notice, this list of conditions and the following disclaimer.
   5936 //    * Redistributions in binary form must reproduce the above
   5937 // copyright notice, this list of conditions and the following disclaimer
   5938 // in the documentation and/or other materials provided with the
   5939 // distribution.
   5940 //    * Neither the name of Google Inc. nor the names of its
   5941 // contributors may be used to endorse or promote products derived from
   5942 // this software without specific prior written permission.
   5943 //
   5944 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   5945 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   5946 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
   5947 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
   5948 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   5949 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   5950 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   5951 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   5952 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   5953 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
   5954 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   5955 </pre>
   5956 </div>
   5957 </div>
   5958 
   5959 
   5960 <div class="product">
   5961 <span class="title">pdfsqueeze</span>
   5962 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   5963 <span class="homepage"><a href="http://code.google.com/p/pdfsqueeze/">homepage</a></span>
   5964 <div class="licence">
   5965 <pre>
   5966                                  Apache License
   5967                            Version 2.0, January 2004
   5968                         http://www.apache.org/licenses/
   5969 
   5970    TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
   5971 
   5972    1. Definitions.
   5973 
   5974       "License" shall mean the terms and conditions for use, reproduction,
   5975       and distribution as defined by Sections 1 through 9 of this document.
   5976 
   5977       "Licensor" shall mean the copyright owner or entity authorized by
   5978       the copyright owner that is granting the License.
   5979 
   5980       "Legal Entity" shall mean the union of the acting entity and all
   5981       other entities that control, are controlled by, or are under common
   5982       control with that entity. For the purposes of this definition,
   5983       "control" means (i) the power, direct or indirect, to cause the
   5984       direction or management of such entity, whether by contract or
   5985       otherwise, or (ii) ownership of fifty percent (50%) or more of the
   5986       outstanding shares, or (iii) beneficial ownership of such entity.
   5987 
   5988       "You" (or "Your") shall mean an individual or Legal Entity
   5989       exercising permissions granted by this License.
   5990 
   5991       "Source" form shall mean the preferred form for making modifications,
   5992       including but not limited to software source code, documentation
   5993       source, and configuration files.
   5994 
   5995       "Object" form shall mean any form resulting from mechanical
   5996       transformation or translation of a Source form, including but
   5997       not limited to compiled object code, generated documentation,
   5998       and conversions to other media types.
   5999 
   6000       "Work" shall mean the work of authorship, whether in Source or
   6001       Object form, made available under the License, as indicated by a
   6002       copyright notice that is included in or attached to the work
   6003       (an example is provided in the Appendix below).
   6004 
   6005       "Derivative Works" shall mean any work, whether in Source or Object
   6006       form, that is based on (or derived from) the Work and for which the
   6007       editorial revisions, annotations, elaborations, or other modifications
   6008       represent, as a whole, an original work of authorship. For the purposes
   6009       of this License, Derivative Works shall not include works that remain
   6010       separable from, or merely link (or bind by name) to the interfaces of,
   6011       the Work and Derivative Works thereof.
   6012 
   6013       "Contribution" shall mean any work of authorship, including
   6014       the original version of the Work and any modifications or additions
   6015       to that Work or Derivative Works thereof, that is intentionally
   6016       submitted to Licensor for inclusion in the Work by the copyright owner
   6017       or by an individual or Legal Entity authorized to submit on behalf of
   6018       the copyright owner. For the purposes of this definition, "submitted"
   6019       means any form of electronic, verbal, or written communication sent
   6020       to the Licensor or its representatives, including but not limited to
   6021       communication on electronic mailing lists, source code control systems,
   6022       and issue tracking systems that are managed by, or on behalf of, the
   6023       Licensor for the purpose of discussing and improving the Work, but
   6024       excluding communication that is conspicuously marked or otherwise
   6025       designated in writing by the copyright owner as "Not a Contribution."
   6026 
   6027       "Contributor" shall mean Licensor and any individual or Legal Entity
   6028       on behalf of whom a Contribution has been received by Licensor and
   6029       subsequently incorporated within the Work.
   6030 
   6031    2. Grant of Copyright License. Subject to the terms and conditions of
   6032       this License, each Contributor hereby grants to You a perpetual,
   6033       worldwide, non-exclusive, no-charge, royalty-free, irrevocable
   6034       copyright license to reproduce, prepare Derivative Works of,
   6035       publicly display, publicly perform, sublicense, and distribute the
   6036       Work and such Derivative Works in Source or Object form.
   6037 
   6038    3. Grant of Patent License. Subject to the terms and conditions of
   6039       this License, each Contributor hereby grants to You a perpetual,
   6040       worldwide, non-exclusive, no-charge, royalty-free, irrevocable
   6041       (except as stated in this section) patent license to make, have made,
   6042       use, offer to sell, sell, import, and otherwise transfer the Work,
   6043       where such license applies only to those patent claims licensable
   6044       by such Contributor that are necessarily infringed by their
   6045       Contribution(s) alone or by combination of their Contribution(s)
   6046       with the Work to which such Contribution(s) was submitted. If You
   6047       institute patent litigation against any entity (including a
   6048       cross-claim or counterclaim in a lawsuit) alleging that the Work
   6049       or a Contribution incorporated within the Work constitutes direct
   6050       or contributory patent infringement, then any patent licenses
   6051       granted to You under this License for that Work shall terminate
   6052       as of the date such litigation is filed.
   6053 
   6054    4. Redistribution. You may reproduce and distribute copies of the
   6055       Work or Derivative Works thereof in any medium, with or without
   6056       modifications, and in Source or Object form, provided that You
   6057       meet the following conditions:
   6058 
   6059       (a) You must give any other recipients of the Work or
   6060           Derivative Works a copy of this License; and
   6061 
   6062       (b) You must cause any modified files to carry prominent notices
   6063           stating that You changed the files; and
   6064 
   6065       (c) You must retain, in the Source form of any Derivative Works
   6066           that You distribute, all copyright, patent, trademark, and
   6067           attribution notices from the Source form of the Work,
   6068           excluding those notices that do not pertain to any part of
   6069           the Derivative Works; and
   6070 
   6071       (d) If the Work includes a "NOTICE" text file as part of its
   6072           distribution, then any Derivative Works that You distribute must
   6073           include a readable copy of the attribution notices contained
   6074           within such NOTICE file, excluding those notices that do not
   6075           pertain to any part of the Derivative Works, in at least one
   6076           of the following places: within a NOTICE text file distributed
   6077           as part of the Derivative Works; within the Source form or
   6078           documentation, if provided along with the Derivative Works; or,
   6079           within a display generated by the Derivative Works, if and
   6080           wherever such third-party notices normally appear. The contents
   6081           of the NOTICE file are for informational purposes only and
   6082           do not modify the License. You may add Your own attribution
   6083           notices within Derivative Works that You distribute, alongside
   6084           or as an addendum to the NOTICE text from the Work, provided
   6085           that such additional attribution notices cannot be construed
   6086           as modifying the License.
   6087 
   6088       You may add Your own copyright statement to Your modifications and
   6089       may provide additional or different license terms and conditions
   6090       for use, reproduction, or distribution of Your modifications, or
   6091       for any such Derivative Works as a whole, provided Your use,
   6092       reproduction, and distribution of the Work otherwise complies with
   6093       the conditions stated in this License.
   6094 
   6095    5. Submission of Contributions. Unless You explicitly state otherwise,
   6096       any Contribution intentionally submitted for inclusion in the Work
   6097       by You to the Licensor shall be under the terms and conditions of
   6098       this License, without any additional terms or conditions.
   6099       Notwithstanding the above, nothing herein shall supersede or modify
   6100       the terms of any separate license agreement you may have executed
   6101       with Licensor regarding such Contributions.
   6102 
   6103    6. Trademarks. This License does not grant permission to use the trade
   6104       names, trademarks, service marks, or product names of the Licensor,
   6105       except as required for reasonable and customary use in describing the
   6106       origin of the Work and reproducing the content of the NOTICE file.
   6107 
   6108    7. Disclaimer of Warranty. Unless required by applicable law or
   6109       agreed to in writing, Licensor provides the Work (and each
   6110       Contributor provides its Contributions) on an "AS IS" BASIS,
   6111       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
   6112       implied, including, without limitation, any warranties or conditions
   6113       of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
   6114       PARTICULAR PURPOSE. You are solely responsible for determining the
   6115       appropriateness of using or redistributing the Work and assume any
   6116       risks associated with Your exercise of permissions under this License.
   6117 
   6118    8. Limitation of Liability. In no event and under no legal theory,
   6119       whether in tort (including negligence), contract, or otherwise,
   6120       unless required by applicable law (such as deliberate and grossly
   6121       negligent acts) or agreed to in writing, shall any Contributor be
   6122       liable to You for damages, including any direct, indirect, special,
   6123       incidental, or consequential damages of any character arising as a
   6124       result of this License or out of the use or inability to use the
   6125       Work (including but not limited to damages for loss of goodwill,
   6126       work stoppage, computer failure or malfunction, or any and all
   6127       other commercial damages or losses), even if such Contributor
   6128       has been advised of the possibility of such damages.
   6129 
   6130    9. Accepting Warranty or Additional Liability. While redistributing
   6131       the Work or Derivative Works thereof, You may choose to offer,
   6132       and charge a fee for, acceptance of support, warranty, indemnity,
   6133       or other liability obligations and/or rights consistent with this
   6134       License. However, in accepting such obligations, You may act only
   6135       on Your own behalf and on Your sole responsibility, not on behalf
   6136       of any other Contributor, and only if You agree to indemnify,
   6137       defend, and hold each Contributor harmless for any liability
   6138       incurred by, or claims asserted against, such Contributor by reason
   6139       of your accepting any such warranty or additional liability.
   6140 
   6141    END OF TERMS AND CONDITIONS
   6142 
   6143    APPENDIX: How to apply the Apache License to your work.
   6144 
   6145       To apply the Apache License to your work, attach the following
   6146       boilerplate notice, with the fields enclosed by brackets "[]"
   6147       replaced with your own identifying information. (Don't include
   6148       the brackets!)  The text should be enclosed in the appropriate
   6149       comment syntax for the file format. We also recommend that a
   6150       file or class name and description of purpose be included on the
   6151       same "printed page" as the copyright notice for easier
   6152       identification within third-party archives.
   6153 
   6154    Copyright 2007 Google Inc.
   6155 
   6156    Licensed under the Apache License, Version 2.0 (the "License");
   6157    you may not use this file except in compliance with the License.
   6158    You may obtain a copy of the License at
   6159 
   6160        http://www.apache.org/licenses/LICENSE-2.0
   6161 
   6162    Unless required by applicable law or agreed to in writing, software
   6163    distributed under the License is distributed on an "AS IS" BASIS,
   6164    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   6165    See the License for the specific language governing permissions and
   6166    limitations under the License.</pre>
   6167 </div>
   6168 </div>
   6169 
   6170 
   6171 <div class="product">
   6172 <span class="title">ppapi</span>
   6173 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   6174 <span class="homepage"><a href="http://code.google.com/p/ppapi/">homepage</a></span>
   6175 <div class="licence">
   6176 <pre>// Copyright (c) 2010 The Chromium Authors. All rights reserved.
   6177 //
   6178 // Redistribution and use in source and binary forms, with or without
   6179 // modification, are permitted provided that the following conditions are
   6180 // met:
   6181 //
   6182 //    * Redistributions of source code must retain the above copyright
   6183 // notice, this list of conditions and the following disclaimer.
   6184 //    * Redistributions in binary form must reproduce the above
   6185 // copyright notice, this list of conditions and the following disclaimer
   6186 // in the documentation and/or other materials provided with the
   6187 // distribution.
   6188 //    * Neither the name of Google Inc. nor the names of its
   6189 // contributors may be used to endorse or promote products derived from
   6190 // this software without specific prior written permission.
   6191 //
   6192 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   6193 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   6194 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
   6195 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
   6196 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   6197 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   6198 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   6199 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   6200 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   6201 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
   6202 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   6203 </pre>
   6204 </div>
   6205 </div>
   6206 
   6207 
   6208 <div class="product">
   6209 <span class="title">protobuf</span>
   6210 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   6211 <span class="homepage"><a href="http://protobuf.googlecode.com/svn/trunk">homepage</a></span>
   6212 <div class="licence">
   6213 <pre>Copyright 2008, Google Inc.
   6214 All rights reserved.
   6215 
   6216 Redistribution and use in source and binary forms, with or without
   6217 modification, are permitted provided that the following conditions are
   6218 met:
   6219 
   6220     * Redistributions of source code must retain the above copyright
   6221 notice, this list of conditions and the following disclaimer.
   6222     * Redistributions in binary form must reproduce the above
   6223 copyright notice, this list of conditions and the following disclaimer
   6224 in the documentation and/or other materials provided with the
   6225 distribution.
   6226     * Neither the name of Google Inc. nor the names of its
   6227 contributors may be used to endorse or promote products derived from
   6228 this software without specific prior written permission.
   6229 
   6230 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   6231 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   6232 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
   6233 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
   6234 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   6235 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   6236 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   6237 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   6238 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   6239 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
   6240 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   6241 
   6242 Code generated by the Protocol Buffer compiler is owned by the owner
   6243 of the input file used when generating it.  This code is not
   6244 standalone and requires a support library to be linked with it.  This
   6245 support library is itself covered by the above license.
   6246 </pre>
   6247 </div>
   6248 </div>
   6249 
   6250 
   6251 <div class="product">
   6252 <span class="title">pyftpdlib</span>
   6253 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   6254 <span class="homepage"><a href="http://code.google.com/p/pyftpdlib/">homepage</a></span>
   6255 <div class="licence">
   6256 <pre>======================================================================
   6257 Copyright (C) 2007  Giampaolo Rodola' &lt;g.rodola (a] gmail.com&gt;
   6258 
   6259                          All Rights Reserved
   6260 
   6261 Permission to use, copy, modify, and distribute this software and
   6262 its documentation for any purpose and without fee is hereby
   6263 granted, provided that the above copyright notice appear in all
   6264 copies and that both that copyright notice and this permission
   6265 notice appear in supporting documentation, and that the name of
   6266 Giampaolo Rodola' not be used in advertising or publicity pertaining to
   6267 distribution of the software without specific, written prior
   6268 permission.
   6269 
   6270 Giampaolo Rodola' DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
   6271 INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
   6272 NO EVENT Giampaolo Rodola' BE LIABLE FOR ANY SPECIAL, INDIRECT OR
   6273 CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
   6274 OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
   6275 NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
   6276 CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
   6277 ======================================================================</pre>
   6278 </div>
   6279 </div>
   6280 
   6281 
   6282 <div class="product">
   6283 <span class="title">pywebsocket</span>
   6284 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   6285 <span class="homepage"><a href="http://code.google.com/p/pywebsocket/">homepage</a></span>
   6286 <div class="licence">
   6287 <pre>Copyright 2009, Google Inc.
   6288 All rights reserved.
   6289 
   6290 Redistribution and use in source and binary forms, with or without
   6291 modification, are permitted provided that the following conditions are
   6292 met:
   6293 
   6294     * Redistributions of source code must retain the above copyright
   6295 notice, this list of conditions and the following disclaimer.
   6296     * Redistributions in binary form must reproduce the above
   6297 copyright notice, this list of conditions and the following disclaimer
   6298 in the documentation and/or other materials provided with the
   6299 distribution.
   6300     * Neither the name of Google Inc. nor the names of its
   6301 contributors may be used to endorse or promote products derived from
   6302 this software without specific prior written permission.
   6303 
   6304 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   6305 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   6306 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
   6307 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
   6308 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   6309 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   6310 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   6311 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   6312 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   6313 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
   6314 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   6315 </pre>
   6316 </div>
   6317 </div>
   6318 
   6319 
   6320 <div class="product">
   6321 <span class="title">qcms library</span>
   6322 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   6323 <span class="homepage"><a href="http://mxr.mozilla.org/mozilla-central/source/gfx/qcms/">homepage</a></span>
   6324 <div class="licence">
   6325 <pre>This license applies to certain files in the directory third_party/qcms/.
   6326 
   6327 
   6328 
   6329 Copyright (C) 2009 Mozilla Corporation
   6330 
   6331 Copyright (C) 1998-2007 Marti Maria
   6332 
   6333 
   6334 
   6335 Permission is hereby granted, free of charge, to any person
   6336 
   6337 obtaining a copy of this software and associated documentation 
   6338 
   6339 files (the "Software"), to deal in the Software without restriction, 
   6340 
   6341 including without limitation the rights to use, copy, modify, merge, 
   6342 
   6343 publish, distribute, sublicense, and/or sell copies of the Software, 
   6344 
   6345 and to permit persons to whom the Software is furnished to do so, subject 
   6346 
   6347 to the following conditions:
   6348 
   6349 
   6350 
   6351 The above copyright notice and this permission notice shall be included 
   6352 
   6353 in all copies or substantial portions of the Software.
   6354 
   6355 
   6356 
   6357 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 
   6358 
   6359 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
   6360 
   6361 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
   6362 
   6363 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
   6364 
   6365 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 
   6366 
   6367 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
   6368 
   6369 
   6370 
   6371 
   6372 
   6373 
   6374 
   6375 This license applies to the ICC_H block in third_party/qcms/qcms.h.
   6376 
   6377 
   6378 
   6379 Copyright (c) 1994-1996 SunSoft, Inc.
   6380 
   6381 
   6382 
   6383                     Rights Reserved
   6384 
   6385 
   6386 
   6387 Permission is hereby granted, free of charge, to any person 
   6388 
   6389 obtaining a copy of this software and associated documentation
   6390 
   6391 files (the "Software"), to deal in the Software without restrict- 
   6392 
   6393 ion, including without limitation the rights to use, copy, modify, 
   6394 
   6395 merge, publish distribute, sublicense, and/or sell copies of the 
   6396 
   6397 Software, and to permit persons to whom the Software is furnished 
   6398 
   6399 to do so, subject to the following conditions: 
   6400 
   6401  
   6402 
   6403 The above copyright notice and this permission notice shall be 
   6404 
   6405 included in all copies or substantial portions of the Software. 
   6406 
   6407  
   6408 
   6409 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
   6410 
   6411 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
   6412 
   6413 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-
   6414 
   6415 INFRINGEMENT.  IN NO EVENT SHALL SUNSOFT, INC. OR ITS PARENT 
   6416 
   6417 COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
   6418 
   6419 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
   6420 
   6421 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 
   6422 
   6423 OTHER DEALINGS IN THE SOFTWARE. 
   6424 
   6425  
   6426 
   6427 Except as contained in this notice, the name of SunSoft, Inc. 
   6428 
   6429 shall not be used in advertising or otherwise to promote the 
   6430 
   6431 sale, use or other dealings in this Software without written 
   6432 
   6433 authorization from SunSoft Inc. 
   6434 
   6435 </pre>
   6436 </div>
   6437 </div>
   6438 
   6439 
   6440 <div class="product">
   6441 <span class="title">Google Safe Browsing</span>
   6442 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   6443 <span class="homepage"><a href="http://code.google.com/p/google-safe-browsing/">homepage</a></span>
   6444 <div class="licence">
   6445 <pre>Copyright 2009 Google Inc.
   6446 
   6447 Licensed under the Apache License, Version 2.0 (the "License");
   6448 you may not use this file except in compliance with the License.
   6449 You may obtain a copy of the License at
   6450 
   6451      http://www.apache.org/licenses/LICENSE-2.0
   6452 
   6453 Unless required by applicable law or agreed to in writing, software
   6454 distributed under the License is distributed on an "AS IS" BASIS,
   6455 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   6456 See the License for the specific language governing permissions and
   6457 limitations under the License.
   6458 </pre>
   6459 </div>
   6460 </div>
   6461 
   6462 
   6463 <div class="product">
   6464 <span class="title">simplejson</span>
   6465 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   6466 <span class="homepage"><a href="http://undefined.org/python/#simplejson">homepage</a></span>
   6467 <div class="licence">
   6468 <pre>Copyright (c) 2006 Bob Ippolito
   6469 
   6470 Permission is hereby granted, free of charge, to any person obtaining a copy of
   6471 this software and associated documentation files (the "Software"), to deal in
   6472 the Software without restriction, including without limitation the rights to
   6473 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
   6474 of the Software, and to permit persons to whom the Software is furnished to do
   6475 so, subject to the following conditions:
   6476 
   6477 The above copyright notice and this permission notice shall be included in all
   6478 copies or substantial portions of the Software.
   6479 
   6480 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
   6481 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   6482 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
   6483 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
   6484 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
   6485 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
   6486 SOFTWARE.
   6487 </pre>
   6488 </div>
   6489 </div>
   6490 
   6491 
   6492 <div class="product">
   6493 <span class="title">skia</span>
   6494 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   6495 <span class="homepage"><a href="http://code.google.com/p/skia">homepage</a></span>
   6496 <div class="licence">
   6497 <pre>
   6498                                  Apache License
   6499                            Version 2.0, January 2004
   6500                         http://www.apache.org/licenses/
   6501 
   6502    TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
   6503 
   6504    1. Definitions.
   6505 
   6506       "License" shall mean the terms and conditions for use, reproduction,
   6507       and distribution as defined by Sections 1 through 9 of this document.
   6508 
   6509       "Licensor" shall mean the copyright owner or entity authorized by
   6510       the copyright owner that is granting the License.
   6511 
   6512       "Legal Entity" shall mean the union of the acting entity and all
   6513       other entities that control, are controlled by, or are under common
   6514       control with that entity. For the purposes of this definition,
   6515       "control" means (i) the power, direct or indirect, to cause the
   6516       direction or management of such entity, whether by contract or
   6517       otherwise, or (ii) ownership of fifty percent (50%) or more of the
   6518       outstanding shares, or (iii) beneficial ownership of such entity.
   6519 
   6520       "You" (or "Your") shall mean an individual or Legal Entity
   6521       exercising permissions granted by this License.
   6522 
   6523       "Source" form shall mean the preferred form for making modifications,
   6524       including but not limited to software source code, documentation
   6525       source, and configuration files.
   6526 
   6527       "Object" form shall mean any form resulting from mechanical
   6528       transformation or translation of a Source form, including but
   6529       not limited to compiled object code, generated documentation,
   6530       and conversions to other media types.
   6531 
   6532       "Work" shall mean the work of authorship, whether in Source or
   6533       Object form, made available under the License, as indicated by a
   6534       copyright notice that is included in or attached to the work
   6535       (an example is provided in the Appendix below).
   6536 
   6537       "Derivative Works" shall mean any work, whether in Source or Object
   6538       form, that is based on (or derived from) the Work and for which the
   6539       editorial revisions, annotations, elaborations, or other modifications
   6540       represent, as a whole, an original work of authorship. For the purposes
   6541       of this License, Derivative Works shall not include works that remain
   6542       separable from, or merely link (or bind by name) to the interfaces of,
   6543       the Work and Derivative Works thereof.
   6544 
   6545       "Contribution" shall mean any work of authorship, including
   6546       the original version of the Work and any modifications or additions
   6547       to that Work or Derivative Works thereof, that is intentionally
   6548       submitted to Licensor for inclusion in the Work by the copyright owner
   6549       or by an individual or Legal Entity authorized to submit on behalf of
   6550       the copyright owner. For the purposes of this definition, "submitted"
   6551       means any form of electronic, verbal, or written communication sent
   6552       to the Licensor or its representatives, including but not limited to
   6553       communication on electronic mailing lists, source code control systems,
   6554       and issue tracking systems that are managed by, or on behalf of, the
   6555       Licensor for the purpose of discussing and improving the Work, but
   6556       excluding communication that is conspicuously marked or otherwise
   6557       designated in writing by the copyright owner as "Not a Contribution."
   6558 
   6559       "Contributor" shall mean Licensor and any individual or Legal Entity
   6560       on behalf of whom a Contribution has been received by Licensor and
   6561       subsequently incorporated within the Work.
   6562 
   6563    2. Grant of Copyright License. Subject to the terms and conditions of
   6564       this License, each Contributor hereby grants to You a perpetual,
   6565       worldwide, non-exclusive, no-charge, royalty-free, irrevocable
   6566       copyright license to reproduce, prepare Derivative Works of,
   6567       publicly display, publicly perform, sublicense, and distribute the
   6568       Work and such Derivative Works in Source or Object form.
   6569 
   6570    3. Grant of Patent License. Subject to the terms and conditions of
   6571       this License, each Contributor hereby grants to You a perpetual,
   6572       worldwide, non-exclusive, no-charge, royalty-free, irrevocable
   6573       (except as stated in this section) patent license to make, have made,
   6574       use, offer to sell, sell, import, and otherwise transfer the Work,
   6575       where such license applies only to those patent claims licensable
   6576       by such Contributor that are necessarily infringed by their
   6577       Contribution(s) alone or by combination of their Contribution(s)
   6578       with the Work to which such Contribution(s) was submitted. If You
   6579       institute patent litigation against any entity (including a
   6580       cross-claim or counterclaim in a lawsuit) alleging that the Work
   6581       or a Contribution incorporated within the Work constitutes direct
   6582       or contributory patent infringement, then any patent licenses
   6583       granted to You under this License for that Work shall terminate
   6584       as of the date such litigation is filed.
   6585 
   6586    4. Redistribution. You may reproduce and distribute copies of the
   6587       Work or Derivative Works thereof in any medium, with or without
   6588       modifications, and in Source or Object form, provided that You
   6589       meet the following conditions:
   6590 
   6591       (a) You must give any other recipients of the Work or
   6592           Derivative Works a copy of this License; and
   6593 
   6594       (b) You must cause any modified files to carry prominent notices
   6595           stating that You changed the files; and
   6596 
   6597       (c) You must retain, in the Source form of any Derivative Works
   6598           that You distribute, all copyright, patent, trademark, and
   6599           attribution notices from the Source form of the Work,
   6600           excluding those notices that do not pertain to any part of
   6601           the Derivative Works; and
   6602 
   6603       (d) If the Work includes a "NOTICE" text file as part of its
   6604           distribution, then any Derivative Works that You distribute must
   6605           include a readable copy of the attribution notices contained
   6606           within such NOTICE file, excluding those notices that do not
   6607           pertain to any part of the Derivative Works, in at least one
   6608           of the following places: within a NOTICE text file distributed
   6609           as part of the Derivative Works; within the Source form or
   6610           documentation, if provided along with the Derivative Works; or,
   6611           within a display generated by the Derivative Works, if and
   6612           wherever such third-party notices normally appear. The contents
   6613           of the NOTICE file are for informational purposes only and
   6614           do not modify the License. You may add Your own attribution
   6615           notices within Derivative Works that You distribute, alongside
   6616           or as an addendum to the NOTICE text from the Work, provided
   6617           that such additional attribution notices cannot be construed
   6618           as modifying the License.
   6619 
   6620       You may add Your own copyright statement to Your modifications and
   6621       may provide additional or different license terms and conditions
   6622       for use, reproduction, or distribution of Your modifications, or
   6623       for any such Derivative Works as a whole, provided Your use,
   6624       reproduction, and distribution of the Work otherwise complies with
   6625       the conditions stated in this License.
   6626 
   6627    5. Submission of Contributions. Unless You explicitly state otherwise,
   6628       any Contribution intentionally submitted for inclusion in the Work
   6629       by You to the Licensor shall be under the terms and conditions of
   6630       this License, without any additional terms or conditions.
   6631       Notwithstanding the above, nothing herein shall supersede or modify
   6632       the terms of any separate license agreement you may have executed
   6633       with Licensor regarding such Contributions.
   6634 
   6635    6. Trademarks. This License does not grant permission to use the trade
   6636       names, trademarks, service marks, or product names of the Licensor,
   6637       except as required for reasonable and customary use in describing the
   6638       origin of the Work and reproducing the content of the NOTICE file.
   6639 
   6640    7. Disclaimer of Warranty. Unless required by applicable law or
   6641       agreed to in writing, Licensor provides the Work (and each
   6642       Contributor provides its Contributions) on an "AS IS" BASIS,
   6643       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
   6644       implied, including, without limitation, any warranties or conditions
   6645       of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
   6646       PARTICULAR PURPOSE. You are solely responsible for determining the
   6647       appropriateness of using or redistributing the Work and assume any
   6648       risks associated with Your exercise of permissions under this License.
   6649 
   6650    8. Limitation of Liability. In no event and under no legal theory,
   6651       whether in tort (including negligence), contract, or otherwise,
   6652       unless required by applicable law (such as deliberate and grossly
   6653       negligent acts) or agreed to in writing, shall any Contributor be
   6654       liable to You for damages, including any direct, indirect, special,
   6655       incidental, or consequential damages of any character arising as a
   6656       result of this License or out of the use or inability to use the
   6657       Work (including but not limited to damages for loss of goodwill,
   6658       work stoppage, computer failure or malfunction, or any and all
   6659       other commercial damages or losses), even if such Contributor
   6660       has been advised of the possibility of such damages.
   6661 
   6662    9. Accepting Warranty or Additional Liability. While redistributing
   6663       the Work or Derivative Works thereof, You may choose to offer,
   6664       and charge a fee for, acceptance of support, warranty, indemnity,
   6665       or other liability obligations and/or rights consistent with this
   6666       License. However, in accepting such obligations, You may act only
   6667       on Your own behalf and on Your sole responsibility, not on behalf
   6668       of any other Contributor, and only if You agree to indemnify,
   6669       defend, and hold each Contributor harmless for any liability
   6670       incurred by, or claims asserted against, such Contributor by reason
   6671       of your accepting any such warranty or additional liability.
   6672 
   6673    END OF TERMS AND CONDITIONS
   6674 
   6675    APPENDIX: How to apply the Apache License to your work.
   6676 
   6677       To apply the Apache License to your work, attach the following
   6678       boilerplate notice, with the fields enclosed by brackets "[]"
   6679       replaced with your own identifying information. (Don't include
   6680       the brackets!)  The text should be enclosed in the appropriate
   6681       comment syntax for the file format. We also recommend that a
   6682       file or class name and description of purpose be included on the
   6683       same "printed page" as the copyright notice for easier
   6684       identification within third-party archives.
   6685 
   6686    Copyright [yyyy] [name of copyright owner]
   6687 
   6688    Licensed under the Apache License, Version 2.0 (the "License");
   6689    you may not use this file except in compliance with the License.
   6690    You may obtain a copy of the License at
   6691 
   6692        http://www.apache.org/licenses/LICENSE-2.0
   6693 
   6694    Unless required by applicable law or agreed to in writing, software
   6695    distributed under the License is distributed on an "AS IS" BASIS,
   6696    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   6697    See the License for the specific language governing permissions and
   6698    limitations under the License.
   6699 </pre>
   6700 </div>
   6701 </div>
   6702 
   6703 
   6704 <div class="product">
   6705 <span class="title">speex</span>
   6706 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   6707 <span class="homepage"><a href="http://downloads.xiph.org/releases/speex/speex-1.2rc1.tar.gz">homepage</a></span>
   6708 <div class="licence">
   6709 <pre>Copyright 2002-2008 	Xiph.org Foundation
   6710 Copyright 2002-2008 	Jean-Marc Valin
   6711 Copyright 2005-2007	Analog Devices Inc.
   6712 Copyright 2005-2008	Commonwealth Scientific and Industrial Research 
   6713                         Organisation (CSIRO)
   6714 Copyright 1993, 2002, 2006 David Rowe
   6715 Copyright 2003 		EpicGames
   6716 Copyright 1992-1994	Jutta Degener, Carsten Bormann
   6717 
   6718 Redistribution and use in source and binary forms, with or without
   6719 modification, are permitted provided that the following conditions
   6720 are met:
   6721 
   6722 - Redistributions of source code must retain the above copyright
   6723 notice, this list of conditions and the following disclaimer.
   6724 
   6725 - Redistributions in binary form must reproduce the above copyright
   6726 notice, this list of conditions and the following disclaimer in the
   6727 documentation and/or other materials provided with the distribution.
   6728 
   6729 - Neither the name of the Xiph.org Foundation nor the names of its
   6730 contributors may be used to endorse or promote products derived from
   6731 this software without specific prior written permission.
   6732 
   6733 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   6734 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   6735 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
   6736 A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
   6737 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
   6738 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
   6739 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
   6740 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
   6741 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
   6742 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
   6743 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   6744 </pre>
   6745 </div>
   6746 </div>
   6747 
   6748 
   6749 <div class="product">
   6750 <span class="title">SQLite</span>
   6751 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   6752 <span class="homepage"><a href="http://sqlite.org/">homepage</a></span>
   6753 <div class="licence">
   6754 <pre>The author disclaims copyright to this source code.  In place of
   6755 a legal notice, here is a blessing:
   6756 
   6757    May you do good and not evil.
   6758    May you find forgiveness for yourself and forgive others.
   6759    May you share freely, never taking more than you give.
   6760 </pre>
   6761 </div>
   6762 </div>
   6763 
   6764 
   6765 <div class="product">
   6766 <span class="title">swig</span>
   6767 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   6768 <span class="homepage"><a href="http://www.swig.org/download.html">homepage</a></span>
   6769 <div class="licence">
   6770 <pre>SWIG is distributed under the following terms:
   6771 
   6772 I.  
   6773 
   6774 Copyright (c) 1995-1998
   6775 The University of Utah and the Regents of the University of California
   6776 All Rights Reserved
   6777 
   6778 Permission is hereby granted, without written agreement and without
   6779 license or royalty fees, to use, copy, modify, and distribute this
   6780 software and its documentation for any purpose, provided that 
   6781 (1) The above copyright notice and the following two paragraphs
   6782 appear in all copies of the source code and (2) redistributions
   6783 including binaries reproduces these notices in the supporting
   6784 documentation.   Substantial modifications to this software may be
   6785 copyrighted by their authors and need not follow the licensing terms
   6786 described here, provided that the new terms are clearly indicated in
   6787 all files where they apply.
   6788 
   6789 IN NO EVENT SHALL THE AUTHOR, THE UNIVERSITY OF CALIFORNIA, THE 
   6790 UNIVERSITY OF UTAH OR DISTRIBUTORS OF THIS SOFTWARE BE LIABLE TO ANY
   6791 PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
   6792 DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION,
   6793 EVEN IF THE AUTHORS OR ANY OF THE ABOVE PARTIES HAVE BEEN ADVISED OF
   6794 THE POSSIBILITY OF SUCH DAMAGE.
   6795 
   6796 THE AUTHOR, THE UNIVERSITY OF CALIFORNIA, AND THE UNIVERSITY OF UTAH
   6797 SPECIFICALLY DISCLAIM ANY WARRANTIES,INCLUDING, BUT NOT LIMITED TO, 
   6798 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
   6799 PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND 
   6800 THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE MAINTENANCE,
   6801 SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
   6802 
   6803 
   6804 II. 
   6805 
   6806 This software includes contributions that are Copyright (c) 1998-2005
   6807 University of Chicago.
   6808 All rights reserved.
   6809 
   6810 Redistribution and use in source and binary forms, with or without
   6811 modification, are permitted provided that the following conditions are
   6812 met:
   6813 
   6814 Redistributions of source code must retain the above copyright notice,
   6815 this list of conditions and the following disclaimer.  Redistributions
   6816 in binary form must reproduce the above copyright notice, this list of
   6817 conditions and the following disclaimer in the documentation and/or
   6818 other materials provided with the distribution.  Neither the name of
   6819 the University of Chicago nor the names of its contributors may be
   6820 used to endorse or promote products derived from this software without
   6821 specific prior written permission.
   6822 
   6823 THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY OF CHICAGO AND CONTRIBUTORS
   6824 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   6825 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
   6826 PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OF
   6827 CHICAGO OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   6828 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
   6829 TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
   6830 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
   6831 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
   6832 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
   6833 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   6834 
   6835 
   6836 III.  
   6837 
   6838 This software includes contributions that are Copyright (c) 2005-2006
   6839 Arizona Board of Regents (University of Arizona).
   6840 All Rights Reserved
   6841 
   6842 Permission is hereby granted, without written agreement and without
   6843 license or royalty fees, to use, copy, modify, and distribute this
   6844 software and its documentation for any purpose, provided that 
   6845 (1) The above copyright notice and the following two paragraphs
   6846 appear in all copies of the source code and (2) redistributions
   6847 including binaries reproduces these notices in the supporting
   6848 documentation.   Substantial modifications to this software may be
   6849 copyrighted by their authors and need not follow the licensing terms
   6850 described here, provided that the new terms are clearly indicated in
   6851 all files where they apply.
   6852 
   6853 THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY OF ARIZONA AND CONTRIBUTORS
   6854 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   6855 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
   6856 PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OF
   6857 ARIZONA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   6858 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
   6859 TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
   6860 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
   6861 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
   6862 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
   6863 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   6864 
   6865 </pre>
   6866 </div>
   6867 </div>
   6868 
   6869 
   6870 <div class="product">
   6871 <span class="title">talloc</span>
   6872 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   6873 <span class="homepage"><a href="http://talloc.samba.org/talloc/doc/html/index.html">homepage</a></span>
   6874 <div class="licence">
   6875 <pre>   Unix SMB/CIFS implementation.
   6876    Samba temporary memory allocation functions
   6877 
   6878    Copyright (C) Andrew Tridgell 2004-2005
   6879    Copyright (C) Stefan Metzmacher 2006
   6880    
   6881      ** NOTE! The following LGPL license applies to the talloc
   6882      ** library. This does NOT imply that all of Samba is released
   6883      ** under the LGPL
   6884    
   6885    This library is free software; you can redistribute it and/or
   6886    modify it under the terms of the GNU Lesser General Public
   6887    License as published by the Free Software Foundation; either
   6888    version 3 of the License, or (at your option) any later version.
   6889 
   6890    This library is distributed in the hope that it will be useful,
   6891    but WITHOUT ANY WARRANTY; without even the implied warranty of
   6892    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   6893    Lesser General Public License for more details.
   6894 
   6895    You should have received a copy of the GNU Lesser General Public
   6896    License along with this library; if not, see &lt;http://www.gnu.org/licenses/>;.
   6897 </pre>
   6898 </div>
   6899 </div>
   6900 
   6901 
   6902 <div class="product">
   6903 <span class="title">tcmalloc</span>
   6904 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   6905 <span class="homepage"><a href="http://google-perftools.googlecode.com/">homepage</a></span>
   6906 <div class="licence">
   6907 <pre>// Copyright (c) 2005, Google Inc.
   6908 // All rights reserved.
   6909 //
   6910 // Redistribution and use in source and binary forms, with or without
   6911 // modification, are permitted provided that the following conditions are
   6912 // met:
   6913 //
   6914 //     * Redistributions of source code must retain the above copyright
   6915 // notice, this list of conditions and the following disclaimer.
   6916 //     * Redistributions in binary form must reproduce the above
   6917 // copyright notice, this list of conditions and the following disclaimer
   6918 // in the documentation and/or other materials provided with the
   6919 // distribution.
   6920 //     * Neither the name of Google Inc. nor the names of its
   6921 // contributors may be used to endorse or promote products derived from
   6922 // this software without specific prior written permission.
   6923 //
   6924 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   6925 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   6926 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
   6927 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
   6928 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   6929 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   6930 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   6931 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   6932 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   6933 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
   6934 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   6935 </pre>
   6936 </div>
   6937 </div>
   6938 
   6939 
   6940 <div class="product">
   6941 <span class="title">tlslite</span>
   6942 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   6943 <span class="homepage"><a href="http://trevp.net/tlslite/">homepage</a></span>
   6944 <div class="licence">
   6945 <pre>All code here is public domain.
   6946 </pre>
   6947 </div>
   6948 </div>
   6949 
   6950 
   6951 <div class="product">
   6952 <span class="title">undoview</span>
   6953 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   6954 <span class="homepage"><a href="http://projects.gnome.org/gtksourceview/">homepage</a></span>
   6955 <div class="licence">
   6956 <pre>                   GNU LESSER GENERAL PUBLIC LICENSE
   6957                        Version 3, 29 June 2007
   6958 
   6959  Copyright (C) 2007 Free Software Foundation, Inc. &lt;http://fsf.org/>;
   6960  Everyone is permitted to copy and distribute verbatim copies
   6961  of this license document, but changing it is not allowed.
   6962 
   6963 
   6964   This version of the GNU Lesser General Public License incorporates
   6965 the terms and conditions of version 3 of the GNU General Public
   6966 License, supplemented by the additional permissions listed below.
   6967 
   6968   0. Additional Definitions.
   6969 
   6970   As used herein, "this License" refers to version 3 of the GNU Lesser
   6971 General Public License, and the "GNU GPL" refers to version 3 of the GNU
   6972 General Public License.
   6973 
   6974   "The Library" refers to a covered work governed by this License,
   6975 other than an Application or a Combined Work as defined below.
   6976 
   6977   An "Application" is any work that makes use of an interface provided
   6978 by the Library, but which is not otherwise based on the Library.
   6979 Defining a subclass of a class defined by the Library is deemed a mode
   6980 of using an interface provided by the Library.
   6981 
   6982   A "Combined Work" is a work produced by combining or linking an
   6983 Application with the Library.  The particular version of the Library
   6984 with which the Combined Work was made is also called the "Linked
   6985 Version".
   6986 
   6987   The "Minimal Corresponding Source" for a Combined Work means the
   6988 Corresponding Source for the Combined Work, excluding any source code
   6989 for portions of the Combined Work that, considered in isolation, are
   6990 based on the Application, and not on the Linked Version.
   6991 
   6992   The "Corresponding Application Code" for a Combined Work means the
   6993 object code and/or source code for the Application, including any data
   6994 and utility programs needed for reproducing the Combined Work from the
   6995 Application, but excluding the System Libraries of the Combined Work.
   6996 
   6997   1. Exception to Section 3 of the GNU GPL.
   6998 
   6999   You may convey a covered work under sections 3 and 4 of this License
   7000 without being bound by section 3 of the GNU GPL.
   7001 
   7002   2. Conveying Modified Versions.
   7003 
   7004   If you modify a copy of the Library, and, in your modifications, a
   7005 facility refers to a function or data to be supplied by an Application
   7006 that uses the facility (other than as an argument passed when the
   7007 facility is invoked), then you may convey a copy of the modified
   7008 version:
   7009 
   7010    a) under this License, provided that you make a good faith effort to
   7011    ensure that, in the event an Application does not supply the
   7012    function or data, the facility still operates, and performs
   7013    whatever part of its purpose remains meaningful, or
   7014 
   7015    b) under the GNU GPL, with none of the additional permissions of
   7016    this License applicable to that copy.
   7017 
   7018   3. Object Code Incorporating Material from Library Header Files.
   7019 
   7020   The object code form of an Application may incorporate material from
   7021 a header file that is part of the Library.  You may convey such object
   7022 code under terms of your choice, provided that, if the incorporated
   7023 material is not limited to numerical parameters, data structure
   7024 layouts and accessors, or small macros, inline functions and templates
   7025 (ten or fewer lines in length), you do both of the following:
   7026 
   7027    a) Give prominent notice with each copy of the object code that the
   7028    Library is used in it and that the Library and its use are
   7029    covered by this License.
   7030 
   7031    b) Accompany the object code with a copy of the GNU GPL and this license
   7032    document.
   7033 
   7034   4. Combined Works.
   7035 
   7036   You may convey a Combined Work under terms of your choice that,
   7037 taken together, effectively do not restrict modification of the
   7038 portions of the Library contained in the Combined Work and reverse
   7039 engineering for debugging such modifications, if you also do each of
   7040 the following:
   7041 
   7042    a) Give prominent notice with each copy of the Combined Work that
   7043    the Library is used in it and that the Library and its use are
   7044    covered by this License.
   7045 
   7046    b) Accompany the Combined Work with a copy of the GNU GPL and this license
   7047    document.
   7048 
   7049    c) For a Combined Work that displays copyright notices during
   7050    execution, include the copyright notice for the Library among
   7051    these notices, as well as a reference directing the user to the
   7052    copies of the GNU GPL and this license document.
   7053 
   7054    d) Do one of the following:
   7055 
   7056        0) Convey the Minimal Corresponding Source under the terms of this
   7057        License, and the Corresponding Application Code in a form
   7058        suitable for, and under terms that permit, the user to
   7059        recombine or relink the Application with a modified version of
   7060        the Linked Version to produce a modified Combined Work, in the
   7061        manner specified by section 6 of the GNU GPL for conveying
   7062        Corresponding Source.
   7063 
   7064        1) Use a suitable shared library mechanism for linking with the
   7065        Library.  A suitable mechanism is one that (a) uses at run time
   7066        a copy of the Library already present on the user's computer
   7067        system, and (b) will operate properly with a modified version
   7068        of the Library that is interface-compatible with the Linked
   7069        Version.
   7070 
   7071    e) Provide Installation Information, but only if you would otherwise
   7072    be required to provide such information under section 6 of the
   7073    GNU GPL, and only to the extent that such information is
   7074    necessary to install and execute a modified version of the
   7075    Combined Work produced by recombining or relinking the
   7076    Application with a modified version of the Linked Version. (If
   7077    you use option 4d0, the Installation Information must accompany
   7078    the Minimal Corresponding Source and Corresponding Application
   7079    Code. If you use option 4d1, you must provide the Installation
   7080    Information in the manner specified by section 6 of the GNU GPL
   7081    for conveying Corresponding Source.)
   7082 
   7083   5. Combined Libraries.
   7084 
   7085   You may place library facilities that are a work based on the
   7086 Library side by side in a single library together with other library
   7087 facilities that are not Applications and are not covered by this
   7088 License, and convey such a combined library under terms of your
   7089 choice, if you do both of the following:
   7090 
   7091    a) Accompany the combined library with a copy of the same work based
   7092    on the Library, uncombined with any other library facilities,
   7093    conveyed under the terms of this License.
   7094 
   7095    b) Give prominent notice with the combined library that part of it
   7096    is a work based on the Library, and explaining where to find the
   7097    accompanying uncombined form of the same work.
   7098 
   7099   6. Revised Versions of the GNU Lesser General Public License.
   7100 
   7101   The Free Software Foundation may publish revised and/or new versions
   7102 of the GNU Lesser General Public License from time to time. Such new
   7103 versions will be similar in spirit to the present version, but may
   7104 differ in detail to address new problems or concerns.
   7105 
   7106   Each version is given a distinguishing version number. If the
   7107 Library as you received it specifies that a certain numbered version
   7108 of the GNU Lesser General Public License "or any later version"
   7109 applies to it, you have the option of following the terms and
   7110 conditions either of that published version or of any later version
   7111 published by the Free Software Foundation. If the Library as you
   7112 received it does not specify a version number of the GNU Lesser
   7113 General Public License, you may choose any version of the GNU Lesser
   7114 General Public License ever published by the Free Software Foundation.
   7115 
   7116   If the Library as you received it specifies that a proxy can decide
   7117 whether future versions of the GNU Lesser General Public License shall
   7118 apply, that proxy's public statement of acceptance of any version is
   7119 permanent authorization for you to choose that version for the
   7120 Library.
   7121 </pre>
   7122 </div>
   7123 </div>
   7124 
   7125 
   7126 <div class="product">
   7127 <span class="title">Webdriver</span>
   7128 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   7129 <span class="homepage"><a href="http://seleniumhq.org">homepage</a></span>
   7130 <div class="licence">
   7131 <pre>NAME: WebDriver
   7132 URL: None, this file is generated by the WebDriver team.  The source code
   7133 for WebDriver can be obtained by running:
   7134   svn checkout http://selenium.googlecode.com/svn/trunk/ selenium-read-only
   7135 LICENSE: Apache 2 
   7136 </pre>
   7137 </div>
   7138 </div>
   7139 
   7140 
   7141 <div class="product">
   7142 <span class="title">WTL 8.0</span>
   7143 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   7144 <span class="homepage"><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=e5ba5ba4-6e6b-462a-b24c-61115e846f0c">homepage</a></span>
   7145 <div class="licence">
   7146 <pre>Microsoft Permissive License (Ms-PL)
   7147 
   7148 Published: October 12, 2006
   7149 
   7150 
   7151 
   7152 
   7153 
   7154 This license governs use of the accompanying software. If you use the software,
   7155 
   7156 you accept this license. If you do not accept the license, do not use the
   7157 
   7158 software.
   7159 
   7160 
   7161 
   7162 
   7163 
   7164 1. Definitions
   7165 
   7166 
   7167 
   7168 The terms "reproduce," "reproduction," "derivative works," and "distribution"
   7169 
   7170 have the same meaning here as under U.S. copyright law.
   7171 
   7172 
   7173 
   7174 A "contribution" is the original software, or any additions or changes to the
   7175 
   7176 software.
   7177 
   7178 
   7179 
   7180 A "contributor" is any person that distributes its contribution under this
   7181 
   7182 license.
   7183 
   7184 
   7185 
   7186 "Licensed patents" are a contributors patent claims that read directly on its
   7187 
   7188 contribution.
   7189 
   7190 
   7191 
   7192 
   7193 
   7194 2. Grant of Rights
   7195 
   7196 
   7197 
   7198 (A) Copyright Grant- Subject to the terms of this license, including the
   7199 
   7200 license conditions and limitations in section 3, each contributor grants you a
   7201 
   7202 non-exclusive, worldwide, royalty-free copyright license to reproduce its
   7203 
   7204 contribution, prepare derivative works of its contribution, and distribute its
   7205 
   7206 contribution or any derivative works that you create.
   7207 
   7208 
   7209 
   7210 (B) Patent Grant- Subject to the terms of this license, including the license
   7211 
   7212 conditions and limitations in section 3, each contributor grants you a
   7213 
   7214 non-exclusive, worldwide, royalty-free license under its licensed patents to
   7215 
   7216 make, have made, use, sell, offer for sale, import, and/or otherwise dispose of
   7217 
   7218 its contribution in the software or derivative works of the contribution in the
   7219 
   7220 software.
   7221 
   7222 
   7223 
   7224 
   7225 
   7226 3. Conditions and Limitations
   7227 
   7228 
   7229 
   7230 (A) No Trademark License- This license does not grant you rights to use any
   7231 
   7232 contributors name, logo, or trademarks.
   7233 
   7234 
   7235 
   7236 (B) If you bring a patent claim against any contributor over patents that you
   7237 
   7238 claim are infringed by the software, your patent license from such contributor
   7239 
   7240 to the software ends automatically.
   7241 
   7242 
   7243 
   7244 (C) If you distribute any portion of the software, you must retain all
   7245 
   7246 copyright, patent, trademark, and attribution notices that are present in the
   7247 
   7248 software.
   7249 
   7250 
   7251 
   7252 (D) If you distribute any portion of the software in source code form, you may
   7253 
   7254 do so only under this license by including a complete copy of this license with
   7255 
   7256 your distribution. If you distribute any portion of the software in compiled or
   7257 
   7258 object code form, you may only do so under a license that complies with this
   7259 
   7260 license.
   7261 
   7262 
   7263 
   7264 (E) The software is licensed "as-is." You bear the risk of using it. The
   7265 
   7266 contributors give no express warranties, guarantees or conditions. You may have
   7267 
   7268 additional consumer rights under your local laws which this license cannot
   7269 
   7270 change. To the extent permitted under your local laws, the contributors exclude
   7271 
   7272 the implied warranties of merchantability, fitness for a particular purpose and
   7273 
   7274 non-infringement.
   7275 
   7276 </pre>
   7277 </div>
   7278 </div>
   7279 
   7280 
   7281 <div class="product">
   7282 <span class="title">xdg-utils</span>
   7283 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   7284 <span class="homepage"><a href="http://portland.freedesktop.org/wiki/">homepage</a></span>
   7285 <div class="licence">
   7286 <pre>#
   7287 #   Permission is hereby granted, free of charge, to any person obtaining a
   7288 #   copy of this software and associated documentation files (the "Software"),
   7289 #   to deal in the Software without restriction, including without limitation
   7290 #   the rights to use, copy, modify, merge, publish, distribute, sublicense,
   7291 #   and/or sell copies of the Software, and to permit persons to whom the
   7292 #   Software is furnished to do so, subject to the following conditions:
   7293 #
   7294 #   The above copyright notice and this permission notice shall be included
   7295 #   in all copies or substantial portions of the Software.
   7296 #
   7297 #   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   7298 #   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   7299 #   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
   7300 #   THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
   7301 #   OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
   7302 #   ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
   7303 #   OTHER DEALINGS IN THE SOFTWARE.
   7304 </pre>
   7305 </div>
   7306 </div>
   7307 
   7308 
   7309 <div class="product">
   7310 <span class="title">XUL Runner SDK</span>
   7311 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   7312 <span class="homepage"><a href="https://developer.mozilla.org/en/Gecko_SDK">homepage</a></span>
   7313 <div class="licence">
   7314 <pre>                          MOZILLA PUBLIC LICENSE
   7315                                 Version 1.1
   7316 
   7317                               ---------------
   7318 
   7319 1. Definitions.
   7320 
   7321      1.0.1. "Commercial Use" means distribution or otherwise making the
   7322      Covered Code available to a third party.
   7323 
   7324      1.1. "Contributor" means each entity that creates or contributes to
   7325      the creation of Modifications.
   7326 
   7327      1.2. "Contributor Version" means the combination of the Original
   7328      Code, prior Modifications used by a Contributor, and the Modifications
   7329      made by that particular Contributor.
   7330 
   7331      1.3. "Covered Code" means the Original Code or Modifications or the
   7332      combination of the Original Code and Modifications, in each case
   7333      including portions thereof.
   7334 
   7335      1.4. "Electronic Distribution Mechanism" means a mechanism generally
   7336      accepted in the software development community for the electronic
   7337      transfer of data.
   7338 
   7339      1.5. "Executable" means Covered Code in any form other than Source
   7340      Code.
   7341 
   7342      1.6. "Initial Developer" means the individual or entity identified
   7343      as the Initial Developer in the Source Code notice required by Exhibit
   7344      A.
   7345 
   7346      1.7. "Larger Work" means a work which combines Covered Code or
   7347      portions thereof with code not governed by the terms of this License.
   7348 
   7349      1.8. "License" means this document.
   7350 
   7351      1.8.1. "Licensable" means having the right to grant, to the maximum
   7352      extent possible, whether at the time of the initial grant or
   7353      subsequently acquired, any and all of the rights conveyed herein.
   7354 
   7355      1.9. "Modifications" means any addition to or deletion from the
   7356      substance or structure of either the Original Code or any previous
   7357      Modifications. When Covered Code is released as a series of files, a
   7358      Modification is:
   7359           A. Any addition to or deletion from the contents of a file
   7360           containing Original Code or previous Modifications.
   7361 
   7362           B. Any new file that contains any part of the Original Code or
   7363           previous Modifications.
   7364 
   7365      1.10. "Original Code" means Source Code of computer software code
   7366      which is described in the Source Code notice required by Exhibit A as
   7367      Original Code, and which, at the time of its release under this
   7368      License is not already Covered Code governed by this License.
   7369 
   7370      1.10.1. "Patent Claims" means any patent claim(s), now owned or
   7371      hereafter acquired, including without limitation, method, process,
   7372      and apparatus claims, in any patent Licensable by grantor.
   7373 
   7374      1.11. "Source Code" means the preferred form of the Covered Code for
   7375      making modifications to it, including all modules it contains, plus
   7376      any associated interface definition files, scripts used to control
   7377      compilation and installation of an Executable, or source code
   7378      differential comparisons against either the Original Code or another
   7379      well known, available Covered Code of the Contributor's choice. The
   7380      Source Code can be in a compressed or archival form, provided the
   7381      appropriate decompression or de-archiving software is widely available
   7382      for no charge.
   7383 
   7384      1.12. "You" (or "Your") means an individual or a legal entity
   7385      exercising rights under, and complying with all of the terms of, this
   7386      License or a future version of this License issued under Section 6.1.
   7387      For legal entities, "You" includes any entity which controls, is
   7388      controlled by, or is under common control with You. For purposes of
   7389      this definition, "control" means (a) the power, direct or indirect,
   7390      to cause the direction or management of such entity, whether by
   7391      contract or otherwise, or (b) ownership of more than fifty percent
   7392      (50%) of the outstanding shares or beneficial ownership of such
   7393      entity.
   7394 
   7395 2. Source Code License.
   7396 
   7397      2.1. The Initial Developer Grant.
   7398      The Initial Developer hereby grants You a world-wide, royalty-free,
   7399      non-exclusive license, subject to third party intellectual property
   7400      claims:
   7401           (a) under intellectual property rights (other than patent or
   7402           trademark) Licensable by Initial Developer to use, reproduce,
   7403           modify, display, perform, sublicense and distribute the Original
   7404           Code (or portions thereof) with or without Modifications, and/or
   7405           as part of a Larger Work; and
   7406 
   7407           (b) under Patents Claims infringed by the making, using or
   7408           selling of Original Code, to make, have made, use, practice,
   7409           sell, and offer for sale, and/or otherwise dispose of the
   7410           Original Code (or portions thereof).
   7411 
   7412           (c) the licenses granted in this Section 2.1(a) and (b) are
   7413           effective on the date Initial Developer first distributes
   7414           Original Code under the terms of this License.
   7415 
   7416           (d) Notwithstanding Section 2.1(b) above, no patent license is
   7417           granted: 1) for code that You delete from the Original Code; 2)
   7418           separate from the Original Code; or 3) for infringements caused
   7419           by: i) the modification of the Original Code or ii) the
   7420           combination of the Original Code with other software or devices.
   7421 
   7422      2.2. Contributor Grant.
   7423      Subject to third party intellectual property claims, each Contributor
   7424      hereby grants You a world-wide, royalty-free, non-exclusive license
   7425 
   7426           (a) under intellectual property rights (other than patent or
   7427           trademark) Licensable by Contributor, to use, reproduce, modify,
   7428           display, perform, sublicense and distribute the Modifications
   7429           created by such Contributor (or portions thereof) either on an
   7430           unmodified basis, with other Modifications, as Covered Code
   7431           and/or as part of a Larger Work; and
   7432 
   7433           (b) under Patent Claims infringed by the making, using, or
   7434           selling of Modifications made by that Contributor either alone
   7435           and/or in combination with its Contributor Version (or portions
   7436           of such combination), to make, use, sell, offer for sale, have
   7437           made, and/or otherwise dispose of: 1) Modifications made by that
   7438           Contributor (or portions thereof); and 2) the combination of
   7439           Modifications made by that Contributor with its Contributor
   7440           Version (or portions of such combination).
   7441 
   7442           (c) the licenses granted in Sections 2.2(a) and 2.2(b) are
   7443           effective on the date Contributor first makes Commercial Use of
   7444           the Covered Code.
   7445 
   7446           (d) Notwithstanding Section 2.2(b) above, no patent license is
   7447           granted: 1) for any code that Contributor has deleted from the
   7448           Contributor Version; 2) separate from the Contributor Version;
   7449           3) for infringements caused by: i) third party modifications of
   7450           Contributor Version or ii) the combination of Modifications made
   7451           by that Contributor with other software (except as part of the
   7452           Contributor Version) or other devices; or 4) under Patent Claims
   7453           infringed by Covered Code in the absence of Modifications made by
   7454           that Contributor.
   7455 
   7456 3. Distribution Obligations.
   7457 
   7458      3.1. Application of License.
   7459      The Modifications which You create or to which You contribute are
   7460      governed by the terms of this License, including without limitation
   7461      Section 2.2. The Source Code version of Covered Code may be
   7462      distributed only under the terms of this License or a future version
   7463      of this License released under Section 6.1, and You must include a
   7464      copy of this License with every copy of the Source Code You
   7465      distribute. You may not offer or impose any terms on any Source Code
   7466      version that alters or restricts the applicable version of this
   7467      License or the recipients' rights hereunder. However, You may include
   7468      an additional document offering the additional rights described in
   7469      Section 3.5.
   7470 
   7471      3.2. Availability of Source Code.
   7472      Any Modification which You create or to which You contribute must be
   7473      made available in Source Code form under the terms of this License
   7474      either on the same media as an Executable version or via an accepted
   7475      Electronic Distribution Mechanism to anyone to whom you made an
   7476      Executable version available; and if made available via Electronic
   7477      Distribution Mechanism, must remain available for at least twelve (12)
   7478      months after the date it initially became available, or at least six
   7479      (6) months after a subsequent version of that particular Modification
   7480      has been made available to such recipients. You are responsible for
   7481      ensuring that the Source Code version remains available even if the
   7482      Electronic Distribution Mechanism is maintained by a third party.
   7483 
   7484      3.3. Description of Modifications.
   7485      You must cause all Covered Code to which You contribute to contain a
   7486      file documenting the changes You made to create that Covered Code and
   7487      the date of any change. You must include a prominent statement that
   7488      the Modification is derived, directly or indirectly, from Original
   7489      Code provided by the Initial Developer and including the name of the
   7490      Initial Developer in (a) the Source Code, and (b) in any notice in an
   7491      Executable version or related documentation in which You describe the
   7492      origin or ownership of the Covered Code.
   7493 
   7494      3.4. Intellectual Property Matters
   7495           (a) Third Party Claims.
   7496           If Contributor has knowledge that a license under a third party's
   7497           intellectual property rights is required to exercise the rights
   7498           granted by such Contributor under Sections 2.1 or 2.2,
   7499           Contributor must include a text file with the Source Code
   7500           distribution titled "LEGAL" which describes the claim and the
   7501           party making the claim in sufficient detail that a recipient will
   7502           know whom to contact. If Contributor obtains such knowledge after
   7503           the Modification is made available as described in Section 3.2,
   7504           Contributor shall promptly modify the LEGAL file in all copies
   7505           Contributor makes available thereafter and shall take other steps
   7506           (such as notifying appropriate mailing lists or newsgroups)
   7507           reasonably calculated to inform those who received the Covered
   7508           Code that new knowledge has been obtained.
   7509 
   7510           (b) Contributor APIs.
   7511           If Contributor's Modifications include an application programming
   7512           interface and Contributor has knowledge of patent licenses which
   7513           are reasonably necessary to implement that API, Contributor must
   7514           also include this information in the LEGAL file.
   7515 
   7516           (c) Representations.
   7517           Contributor represents that, except as disclosed pursuant to
   7518           Section 3.4(a) above, Contributor believes that Contributor's
   7519           Modifications are Contributor's original creation(s) and/or
   7520           Contributor has sufficient rights to grant the rights conveyed by
   7521           this License.
   7522 
   7523      3.5. Required Notices.
   7524      You must duplicate the notice in Exhibit A in each file of the Source
   7525      Code. If it is not possible to put such notice in a particular Source
   7526      Code file due to its structure, then You must include such notice in a
   7527      location (such as a relevant directory) where a user would be likely
   7528      to look for such a notice. If You created one or more Modification(s)
   7529      You may add your name as a Contributor to the notice described in
   7530      Exhibit A. You must also duplicate this License in any documentation
   7531      for the Source Code where You describe recipients' rights or ownership
   7532      rights relating to Covered Code. You may choose to offer, and to
   7533      charge a fee for, warranty, support, indemnity or liability
   7534      obligations to one or more recipients of Covered Code. However, You
   7535      may do so only on Your own behalf, and not on behalf of the Initial
   7536      Developer or any Contributor. You must make it absolutely clear than
   7537      any such warranty, support, indemnity or liability obligation is
   7538      offered by You alone, and You hereby agree to indemnify the Initial
   7539      Developer and every Contributor for any liability incurred by the
   7540      Initial Developer or such Contributor as a result of warranty,
   7541      support, indemnity or liability terms You offer.
   7542 
   7543      3.6. Distribution of Executable Versions.
   7544      You may distribute Covered Code in Executable form only if the
   7545      requirements of Section 3.1-3.5 have been met for that Covered Code,
   7546      and if You include a notice stating that the Source Code version of
   7547      the Covered Code is available under the terms of this License,
   7548      including a description of how and where You have fulfilled the
   7549      obligations of Section 3.2. The notice must be conspicuously included
   7550      in any notice in an Executable version, related documentation or
   7551      collateral in which You describe recipients' rights relating to the
   7552      Covered Code. You may distribute the Executable version of Covered
   7553      Code or ownership rights under a license of Your choice, which may
   7554      contain terms different from this License, provided that You are in
   7555      compliance with the terms of this License and that the license for the
   7556      Executable version does not attempt to limit or alter the recipient's
   7557      rights in the Source Code version from the rights set forth in this
   7558      License. If You distribute the Executable version under a different
   7559      license You must make it absolutely clear that any terms which differ
   7560      from this License are offered by You alone, not by the Initial
   7561      Developer or any Contributor. You hereby agree to indemnify the
   7562      Initial Developer and every Contributor for any liability incurred by
   7563      the Initial Developer or such Contributor as a result of any such
   7564      terms You offer.
   7565 
   7566      3.7. Larger Works.
   7567      You may create a Larger Work by combining Covered Code with other code
   7568      not governed by the terms of this License and distribute the Larger
   7569      Work as a single product. In such a case, You must make sure the
   7570      requirements of this License are fulfilled for the Covered Code.
   7571 
   7572 4. Inability to Comply Due to Statute or Regulation.
   7573 
   7574      If it is impossible for You to comply with any of the terms of this
   7575      License with respect to some or all of the Covered Code due to
   7576      statute, judicial order, or regulation then You must: (a) comply with
   7577      the terms of this License to the maximum extent possible; and (b)
   7578      describe the limitations and the code they affect. Such description
   7579      must be included in the LEGAL file described in Section 3.4 and must
   7580      be included with all distributions of the Source Code. Except to the
   7581      extent prohibited by statute or regulation, such description must be
   7582      sufficiently detailed for a recipient of ordinary skill to be able to
   7583      understand it.
   7584 
   7585 5. Application of this License.
   7586 
   7587      This License applies to code to which the Initial Developer has
   7588      attached the notice in Exhibit A and to related Covered Code.
   7589 
   7590 6. Versions of the License.
   7591 
   7592      6.1. New Versions.
   7593      Netscape Communications Corporation ("Netscape") may publish revised
   7594      and/or new versions of the License from time to time. Each version
   7595      will be given a distinguishing version number.
   7596 
   7597      6.2. Effect of New Versions.
   7598      Once Covered Code has been published under a particular version of the
   7599      License, You may always continue to use it under the terms of that
   7600      version. You may also choose to use such Covered Code under the terms
   7601      of any subsequent version of the License published by Netscape. No one
   7602      other than Netscape has the right to modify the terms applicable to
   7603      Covered Code created under this License.
   7604 
   7605      6.3. Derivative Works.
   7606      If You create or use a modified version of this License (which you may
   7607      only do in order to apply it to code which is not already Covered Code
   7608      governed by this License), You must (a) rename Your license so that
   7609      the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape",
   7610      "MPL", "NPL" or any confusingly similar phrase do not appear in your
   7611      license (except to note that your license differs from this License)
   7612      and (b) otherwise make it clear that Your version of the license
   7613      contains terms which differ from the Mozilla Public License and
   7614      Netscape Public License. (Filling in the name of the Initial
   7615      Developer, Original Code or Contributor in the notice described in
   7616      Exhibit A shall not of themselves be deemed to be modifications of
   7617      this License.)
   7618 
   7619 7. DISCLAIMER OF WARRANTY.
   7620 
   7621      COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS,
   7622      WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
   7623      WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF
   7624      DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.
   7625      THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE
   7626      IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT,
   7627      YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE
   7628      COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
   7629      OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
   7630      ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
   7631 
   7632 8. TERMINATION.
   7633 
   7634      8.1. This License and the rights granted hereunder will terminate
   7635      automatically if You fail to comply with terms herein and fail to cure
   7636      such breach within 30 days of becoming aware of the breach. All
   7637      sublicenses to the Covered Code which are properly granted shall
   7638      survive any termination of this License. Provisions which, by their
   7639      nature, must remain in effect beyond the termination of this License
   7640      shall survive.
   7641 
   7642      8.2. If You initiate litigation by asserting a patent infringement
   7643      claim (excluding declatory judgment actions) against Initial Developer
   7644      or a Contributor (the Initial Developer or Contributor against whom
   7645      You file such action is referred to as "Participant") alleging that:
   7646 
   7647      (a) such Participant's Contributor Version directly or indirectly
   7648      infringes any patent, then any and all rights granted by such
   7649      Participant to You under Sections 2.1 and/or 2.2 of this License
   7650      shall, upon 60 days notice from Participant terminate prospectively,
   7651      unless if within 60 days after receipt of notice You either: (i)
   7652      agree in writing to pay Participant a mutually agreeable reasonable
   7653      royalty for Your past and future use of Modifications made by such
   7654      Participant, or (ii) withdraw Your litigation claim with respect to
   7655      the Contributor Version against such Participant. If within 60 days
   7656      of notice, a reasonable royalty and payment arrangement are not
   7657      mutually agreed upon in writing by the parties or the litigation claim
   7658      is not withdrawn, the rights granted by Participant to You under
   7659      Sections 2.1 and/or 2.2 automatically terminate at the expiration of
   7660      the 60 day notice period specified above.
   7661 
   7662      (b) any software, hardware, or device, other than such Participant's
   7663      Contributor Version, directly or indirectly infringes any patent, then
   7664      any rights granted to You by such Participant under Sections 2.1(b)
   7665      and 2.2(b) are revoked effective as of the date You first made, used,
   7666      sold, distributed, or had made, Modifications made by that
   7667      Participant.
   7668 
   7669      8.3. If You assert a patent infringement claim against Participant
   7670      alleging that such Participant's Contributor Version directly or
   7671      indirectly infringes any patent where such claim is resolved (such as
   7672      by license or settlement) prior to the initiation of patent
   7673      infringement litigation, then the reasonable value of the licenses
   7674      granted by such Participant under Sections 2.1 or 2.2 shall be taken
   7675      into account in determining the amount or value of any payment or
   7676      license.
   7677 
   7678      8.4. In the event of termination under Sections 8.1 or 8.2 above,
   7679      all end user license agreements (excluding distributors and resellers)
   7680      which have been validly granted by You or any distributor hereunder
   7681      prior to termination shall survive termination.
   7682 
   7683 9. LIMITATION OF LIABILITY.
   7684 
   7685      UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
   7686      (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL
   7687      DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,
   7688      OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR
   7689      ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY
   7690      CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,
   7691      WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
   7692      COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
   7693      INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
   7694      LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY
   7695      RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW
   7696      PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE
   7697      EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO
   7698      THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.
   7699 
   7700 10. U.S. GOVERNMENT END USERS.
   7701 
   7702      The Covered Code is a "commercial item," as that term is defined in
   7703      48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer
   7704      software" and "commercial computer software documentation," as such
   7705      terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48
   7706      C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),
   7707      all U.S. Government End Users acquire Covered Code with only those
   7708      rights set forth herein.
   7709 
   7710 11. MISCELLANEOUS.
   7711 
   7712      This License represents the complete agreement concerning subject
   7713      matter hereof. If any provision of this License is held to be
   7714      unenforceable, such provision shall be reformed only to the extent
   7715      necessary to make it enforceable. This License shall be governed by
   7716      California law provisions (except to the extent applicable law, if
   7717      any, provides otherwise), excluding its conflict-of-law provisions.
   7718      With respect to disputes in which at least one party is a citizen of,
   7719      or an entity chartered or registered to do business in the United
   7720      States of America, any litigation relating to this License shall be
   7721      subject to the jurisdiction of the Federal Courts of the Northern
   7722      District of California, with venue lying in Santa Clara County,
   7723      California, with the losing party responsible for costs, including
   7724      without limitation, court costs and reasonable attorneys' fees and
   7725      expenses. The application of the United Nations Convention on
   7726      Contracts for the International Sale of Goods is expressly excluded.
   7727      Any law or regulation which provides that the language of a contract
   7728      shall be construed against the drafter shall not apply to this
   7729      License.
   7730 
   7731 12. RESPONSIBILITY FOR CLAIMS.
   7732 
   7733      As between Initial Developer and the Contributors, each party is
   7734      responsible for claims and damages arising, directly or indirectly,
   7735      out of its utilization of rights under this License and You agree to
   7736      work with Initial Developer and Contributors to distribute such
   7737      responsibility on an equitable basis. Nothing herein is intended or
   7738      shall be deemed to constitute any admission of liability.
   7739 
   7740 13. MULTIPLE-LICENSED CODE.
   7741 
   7742      Initial Developer may designate portions of the Covered Code as
   7743      "Multiple-Licensed". "Multiple-Licensed" means that the Initial
   7744      Developer permits you to utilize portions of the Covered Code under
   7745      Your choice of the NPL or the alternative licenses, if any, specified
   7746      by the Initial Developer in the file described in Exhibit A.
   7747 
   7748 EXHIBIT A -Mozilla Public License.
   7749 
   7750      ``The contents of this file are subject to the Mozilla Public License
   7751      Version 1.1 (the "License"); you may not use this file except in
   7752      compliance with the License. You may obtain a copy of the License at
   7753      http://www.mozilla.org/MPL/
   7754 
   7755      Software distributed under the License is distributed on an "AS IS"
   7756      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
   7757      License for the specific language governing rights and limitations
   7758      under the License.
   7759 
   7760      The Original Code is ______________________________________.
   7761 
   7762      The Initial Developer of the Original Code is ________________________.
   7763      Portions created by ______________________ are Copyright (C) ______
   7764      _______________________. All Rights Reserved.
   7765 
   7766      Contributor(s): ______________________________________.
   7767 
   7768      Alternatively, the contents of this file may be used under the terms
   7769      of the _____ license (the "[___] License"), in which case the
   7770      provisions of [______] License are applicable instead of those
   7771      above. If you wish to allow use of your version of this file only
   7772      under the terms of the [____] License and not to allow others to use
   7773      your version of this file under the MPL, indicate your decision by
   7774      deleting the provisions above and replace them with the notice and
   7775      other provisions required by the [___] License. If you do not delete
   7776      the provisions above, a recipient may use your version of this file
   7777      under either the MPL or the [___] License."
   7778 
   7779      [NOTE: The text of this Exhibit A may differ slightly from the text of
   7780      the notices in the Source Code files of the Original Code. You should
   7781      use the text of this Exhibit A rather than the text found in the
   7782      Original Code Source Code for Your Modifications.]
   7783 
   7784      ----------------------------------------------------------------------
   7785 
   7786      AMENDMENTS
   7787 
   7788      The Netscape Public License Version 1.1 ("NPL") consists of the
   7789      Mozilla Public License Version 1.1 with the following Amendments,
   7790      including Exhibit A-Netscape Public License. Files identified with
   7791      "Exhibit A-Netscape Public License" are governed by the Netscape
   7792      Public License Version 1.1.
   7793 
   7794      Additional Terms applicable to the Netscape Public License.
   7795           I. Effect.
   7796           These additional terms described in this Netscape Public
   7797           License -- Amendments shall apply to the Mozilla Communicator
   7798           client code and to all Covered Code under this License.
   7799 
   7800           II. "Netscape's Branded Code" means Covered Code that Netscape
   7801           distributes and/or permits others to distribute under one or more
   7802           trademark(s) which are controlled by Netscape but which are not
   7803           licensed for use under this License.
   7804 
   7805           III. Netscape and logo.
   7806           This License does not grant any rights to use the trademarks
   7807           "Netscape", the "Netscape N and horizon" logo or the "Netscape
   7808           lighthouse" logo, "Netcenter", "Gecko", "Java" or "JavaScript",
   7809           "Smart Browsing" even if such marks are included in the Original
   7810           Code or Modifications.
   7811 
   7812           IV. Inability to Comply Due to Contractual Obligation.
   7813           Prior to licensing the Original Code under this License, Netscape
   7814           has licensed third party code for use in Netscape's Branded Code.
   7815           To the extent that Netscape is limited contractually from making
   7816           such third party code available under this License, Netscape may
   7817           choose to reintegrate such code into Covered Code without being
   7818           required to distribute such code in Source Code form, even if
   7819           such code would otherwise be considered "Modifications" under
   7820           this License.
   7821 
   7822           V. Use of Modifications and Covered Code by Initial Developer.
   7823                V.1. In General.
   7824                The obligations of Section 3 apply to Netscape, except to
   7825                the extent specified in this Amendment, Section V.2 and V.3.
   7826 
   7827                V.2. Other Products.
   7828                Netscape may include Covered Code in products other than the
   7829                Netscape's Branded Code which are released by Netscape
   7830                during the two (2) years following the release date of the
   7831                Original Code, without such additional products becoming
   7832                subject to the terms of this License, and may license such
   7833                additional products on different terms from those contained
   7834                in this License.
   7835 
   7836                V.3. Alternative Licensing.
   7837                Netscape may license the Source Code of Netscape's Branded
   7838                Code, including Modifications incorporated therein, without
   7839                such Netscape Branded Code becoming subject to the terms of
   7840                this License, and may license such Netscape Branded Code on
   7841                different terms from those contained in this License.
   7842 
   7843           VI. Litigation.
   7844           Notwithstanding the limitations of Section 11 above, the
   7845           provisions regarding litigation in Section 11(a), (b) and (c) of
   7846           the License shall apply to all disputes relating to this License.
   7847 
   7848      EXHIBIT A-Netscape Public License.
   7849 
   7850           "The contents of this file are subject to the Netscape Public
   7851           License Version 1.1 (the "License"); you may not use this file
   7852           except in compliance with the License. You may obtain a copy of
   7853           the License at http://www.mozilla.org/NPL/
   7854 
   7855           Software distributed under the License is distributed on an "AS
   7856           IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
   7857           implied. See the License for the specific language governing
   7858           rights and limitations under the License.
   7859 
   7860           The Original Code is Mozilla Communicator client code, released
   7861           March 31, 1998.
   7862 
   7863           The Initial Developer of the Original Code is Netscape
   7864           Communications Corporation. Portions created by Netscape are
   7865           Copyright (C) 1998-1999 Netscape Communications Corporation. All
   7866           Rights Reserved.
   7867 
   7868           Contributor(s): ______________________________________.
   7869 
   7870           Alternatively, the contents of this file may be used under the
   7871           terms of the _____ license (the "[___] License"), in which case
   7872           the provisions of [______] License are applicable  instead of
   7873           those above. If you wish to allow use of your version of this
   7874           file only under the terms of the [____] License and not to allow
   7875           others to use your version of this file under the NPL, indicate
   7876           your decision by deleting the provisions above and replace  them
   7877           with the notice and other provisions required by the [___]
   7878           License. If you do not delete the provisions above, a recipient
   7879           may use your version of this file under either the NPL or the
   7880           [___] License."
   7881 </pre>
   7882 </div>
   7883 </div>
   7884 
   7885 
   7886 <div class="product">
   7887 <span class="title">yasm</span>
   7888 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   7889 <span class="homepage"><a href="http://www.tortall.net/projects/yasm/">homepage</a></span>
   7890 <div class="licence">
   7891 <pre>Yasm is Copyright (c) 2001-2010 Peter Johnson and other Yasm developers.
   7892 
   7893 Yasm developers and/or contributors include:
   7894   Peter Johnson
   7895   Michael Urman
   7896   Brian Gladman (Visual Studio build files, other fixes)
   7897   Stanislav Karchebny (options parser)
   7898   Mathieu Monnier (SSE4 instruction patches, NASM preprocessor additions)
   7899   Anonymous "NASM64" developer (NASM preprocessor fixes)
   7900   Stephen Polkowski (x86 instruction patches)
   7901   Henryk Richter (Mach-O object format)
   7902   Ben Skeggs (patches, bug reports)
   7903   Alexei Svitkine (GAS preprocessor)
   7904   Samuel Thibault (TASM parser and frontend)
   7905 
   7906 -----------------------------------
   7907 Yasm licensing overview and summary
   7908 -----------------------------------
   7909 
   7910 Note: This document does not provide legal advice nor is it the actual
   7911 license of any part of Yasm.  See the individual licenses for complete
   7912 details.  Consult a lawyer for legal advice.
   7913 
   7914 The primary license of Yasm is the 2-clause BSD license.  Please use this
   7915 license if you plan on submitting code to the project.
   7916 
   7917 Yasm has absolutely no warranty; not even for merchantibility or fitness
   7918 for a particular purpose.
   7919 
   7920 -------
   7921 Libyasm
   7922 -------
   7923 Libyasm is 2-clause or 3-clause BSD licensed, with the exception of
   7924 bitvect, which is triple-licensed under the Artistic license, GPL, and
   7925 LGPL.  Libyasm is thus GPL and LGPL compatible.  In addition, this also
   7926 means that libyasm is free for binary-only distribution as long as the
   7927 terms of the 3-clause BSD license and Artistic license (as it applies to
   7928 bitvect) are fulfilled.
   7929 
   7930 -------
   7931 Modules
   7932 -------
   7933 The modules are 2-clause or 3-clause BSD licensed.
   7934 
   7935 ---------
   7936 Frontends
   7937 ---------
   7938 The frontends are 2-clause BSD licensed.
   7939 
   7940 -------------
   7941 License Texts
   7942 -------------
   7943 The full text of all licenses are provided in separate files in the source
   7944 distribution.  Each source file may include the entire license (in the case
   7945 of the BSD and Artistic licenses), or may reference the GPL or LGPL license
   7946 file.
   7947 
   7948 BSD.txt - 2-clause and 3-clause BSD licenses
   7949 Artistic.txt - Artistic license
   7950 GNU_GPL-2.0 - GNU General Public License
   7951 GNU_LGPL-2.0 - GNU Library General Public License
   7952 </pre>
   7953 </div>
   7954 </div>
   7955 
   7956 
   7957 <div class="product">
   7958 <span class="title">zlib</span>
   7959 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   7960 <span class="homepage"><a href="http://zlib.net/">homepage</a></span>
   7961 <div class="licence">
   7962 <pre>/* zlib.h -- interface of the 'zlib' general purpose compression library
   7963   version 1.2.4, March 14th, 2010
   7964 
   7965   Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler
   7966 
   7967   This software is provided 'as-is', without any express or implied
   7968   warranty.  In no event will the authors be held liable for any damages
   7969   arising from the use of this software.
   7970 
   7971   Permission is granted to anyone to use this software for any purpose,
   7972   including commercial applications, and to alter it and redistribute it
   7973   freely, subject to the following restrictions:
   7974 
   7975   1. The origin of this software must not be misrepresented; you must not
   7976      claim that you wrote the original software. If you use this software
   7977      in a product, an acknowledgment in the product documentation would be
   7978      appreciated but is not required.
   7979   2. Altered source versions must be plainly marked as such, and must not be
   7980      misrepresented as being the original software.
   7981   3. This notice may not be removed or altered from any source distribution.
   7982 
   7983   Jean-loup Gailly
   7984   Mark Adler
   7985 
   7986 */
   7987 </pre>
   7988 </div>
   7989 </div>
   7990 
   7991 
   7992 <div class="product">
   7993 <span class="title">Strongtalk</span>
   7994 <a class="show" href="#" onclick="return toggle(this);">show license</a>
   7995 <span class="homepage"><a href="http://www.strongtalk.org/">homepage</a></span>
   7996 <div class="licence">
   7997 <pre>Copyright (c) 1994-2006 Sun Microsystems Inc.
   7998 
   7999 All Rights Reserved.
   8000 
   8001 
   8002 
   8003 Redistribution and use in source and binary forms, with or without
   8004 
   8005 modification, are permitted provided that the following conditions are
   8006 
   8007 met:
   8008 
   8009 
   8010 
   8011 - Redistributions of source code must retain the above copyright notice,
   8012 
   8013   this list of conditions and the following disclaimer.
   8014 
   8015 
   8016 
   8017 - Redistribution in binary form must reproduce the above copyright
   8018 
   8019   notice, this list of conditions and the following disclaimer in the
   8020 
   8021   documentation and/or other materials provided with the distribution.
   8022 
   8023 
   8024 
   8025 - Neither the name of Sun Microsystems or the names of contributors may
   8026 
   8027   be used to endorse or promote products derived from this software without
   8028 
   8029   specific prior written permission.
   8030 
   8031 
   8032 
   8033 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
   8034 
   8035 IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
   8036 
   8037 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
   8038 
   8039 PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
   8040 
   8041 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
   8042 
   8043 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
   8044 
   8045 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
   8046 
   8047 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
   8048 
   8049 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
   8050 
   8051 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
   8052 
   8053 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</pre>
   8054 </div>
   8055 </div>
   8056 
   8057 
   8058 </div>
   8059 
   8060 </body>
   8061 </html>
   8062 
   8063