From f67f72202bd9199a975db83531f36659450e4e64 Mon Sep 17 00:00:00 2001 From: Fatme Date: Tue, 12 Aug 2014 09:34:58 +0300 Subject: [PATCH] Deploy to connected device --- lib/bootstrap.ts | 1 + lib/commands/deploy.ts | 12 + lib/common | 2 +- lib/config.ts | 8 +- lib/constants.ts | 1 + lib/definitions/platform.d.ts | 5 +- lib/nativescript-cli.ts | 2 +- lib/services/android-project-service.ts | 20 +- lib/services/ios-project-service.ts | 23 +- lib/services/platform-service.ts | 76 +- package.json | 7 + resources/help.txt | 13 + .../platform-tools/android/darwin/NOTICE.txt | 6658 ++++++++ resources/platform-tools/android/darwin/adb | Bin 0 -> 1270440 bytes .../platform-tools/android/linux/NOTICE.txt | 13901 ++++++++++++++++ resources/platform-tools/android/linux/adb | Bin 0 -> 1231255 bytes .../android/win32/AdbWinApi.dll | Bin 0 -> 96256 bytes .../android/win32/AdbWinUsbApi.dll | Bin 0 -> 60928 bytes .../platform-tools/android/win32/NOTICE.txt | 13901 ++++++++++++++++ .../platform-tools/android/win32/adb.exe | Bin 0 -> 819200 bytes .../platform-tools/android/win32/fastboot.exe | Bin 0 -> 160256 bytes test/platform-service.ts | 1 + 22 files changed, 34606 insertions(+), 25 deletions(-) create mode 100644 lib/commands/deploy.ts create mode 100644 resources/platform-tools/android/darwin/NOTICE.txt create mode 100644 resources/platform-tools/android/darwin/adb create mode 100644 resources/platform-tools/android/linux/NOTICE.txt create mode 100644 resources/platform-tools/android/linux/adb create mode 100644 resources/platform-tools/android/win32/AdbWinApi.dll create mode 100644 resources/platform-tools/android/win32/AdbWinUsbApi.dll create mode 100644 resources/platform-tools/android/win32/NOTICE.txt create mode 100644 resources/platform-tools/android/win32/adb.exe create mode 100644 resources/platform-tools/android/win32/fastboot.exe diff --git a/lib/bootstrap.ts b/lib/bootstrap.ts index ce34667ba4..4b9a8dc63a 100644 --- a/lib/bootstrap.ts +++ b/lib/bootstrap.ts @@ -22,6 +22,7 @@ $injector.requireCommand("platform|remove", "./commands/remove-platform"); $injector.requireCommand("run", "./commands/run"); $injector.requireCommand("prepare", "./commands/prepare"); $injector.requireCommand("build", "./commands/build"); +$injector.requireCommand("deploy", "./commands/deploy"); $injector.require("npm", "./node-package-manager"); $injector.require("config", "./config"); diff --git a/lib/commands/deploy.ts b/lib/commands/deploy.ts new file mode 100644 index 0000000000..5a50638d9a --- /dev/null +++ b/lib/commands/deploy.ts @@ -0,0 +1,12 @@ +/// + +export class DeployCommand implements ICommand { + constructor(private $platformService: IPlatformService) { } + + execute(args: string[]): IFuture { + return (() => { + this.$platformService.deploy(args[0]).wait(); + }).future()(); + } +} +$injector.registerCommand("deploy", DeployCommand); \ No newline at end of file diff --git a/lib/common b/lib/common index b954f93b21..3902e1ada7 160000 --- a/lib/common +++ b/lib/common @@ -1 +1 @@ -Subproject commit b954f93b2192c88c3879502766716fd514c97bb2 +Subproject commit 3902e1ada7a3fe34298a76658144a85329aaddf7 diff --git a/lib/config.ts b/lib/config.ts index 6cc911e00d..7455fa6517 100644 --- a/lib/config.ts +++ b/lib/config.ts @@ -1,6 +1,7 @@ /// import path = require("path"); +import util = require("util"); export class StaticConfig implements IStaticConfig { public PROJECT_FILE_NAME = ".tnsproject"; @@ -8,11 +9,16 @@ export class StaticConfig implements IStaticConfig { public ANALYTICS_API_KEY = "5752dabccfc54c4ab82aea9626b7338e"; public TRACK_FEATURE_USAGE_SETTING_NAME = "TrackFeatureUsage"; public ANALYTICS_INSTALLATION_ID_SETTING_NAME = "AnalyticsInstallationID"; + public START_PACKAGE_ACTIVITY_NAME = "com.tns.NativeScriptActivity"; public version = require("../package.json").version; - public get helpTextPath() { + public get helpTextPath(): string { return path.join(__dirname, "../resources/help.txt"); } + + public get adbFilePath(): string { + return path.join(__dirname, util.format("../resources/platform-tools/android/%s/adb", process.platform)); + } } $injector.register("staticConfig", StaticConfig); \ No newline at end of file diff --git a/lib/constants.ts b/lib/constants.ts index 032f6986d9..090585dded 100644 --- a/lib/constants.ts +++ b/lib/constants.ts @@ -1,6 +1,7 @@ /// export var APP_FOLDER_NAME = "app"; +export var TNS_MODULES_FOLDER_NAME = "tns_modules"; export var DEFAULT_PROJECT_ID = "com.telerik.tns.HelloWorld"; export var DEFAULT_PROJECT_NAME = "HelloNativescript"; export var APP_RESOURCES_FOLDER_NAME = "App_Resources"; diff --git a/lib/definitions/platform.d.ts b/lib/definitions/platform.d.ts index 2c3d1d9e97..77a45ebc6e 100644 --- a/lib/definitions/platform.d.ts +++ b/lib/definitions/platform.d.ts @@ -2,10 +2,11 @@ interface IPlatformService { addPlatforms(platforms: string[]): IFuture; getInstalledPlatforms(): IFuture; getAvailablePlatforms(): IFuture; + removePlatforms(platforms: string[]): IFuture; runPlatform(platform: string): IFuture; preparePlatform(platform: string): IFuture; buildPlatform(platform: string): IFuture; - removePlatforms(platforms: string[]): IFuture; + deploy(platform: string): IFuture; } interface IPlatformData { @@ -13,6 +14,8 @@ interface IPlatformData { platformProjectService: IPlatformProjectService; projectRoot: string; normalizedPlatformName: string; + buildOutputPath: string; + validPackageNames: string[]; targetedOS?: string[]; } diff --git a/lib/nativescript-cli.ts b/lib/nativescript-cli.ts index a96b93a7d6..996df98837 100644 --- a/lib/nativescript-cli.ts +++ b/lib/nativescript-cli.ts @@ -16,7 +16,7 @@ $injector.register("config", { DEBUG: process.env.NATIVESCRIPT_DEBUG, version: require("../package.json").version, helpTextPath: path.join(__dirname, "../resources/help.txt"), - client: "tns" + client: "nativescript" }); var dispatcher = $injector.resolve("dispatcher"); diff --git a/lib/services/android-project-service.ts b/lib/services/android-project-service.ts index 5c905ec15a..83f7646b0d 100644 --- a/lib/services/android-project-service.ts +++ b/lib/services/android-project-service.ts @@ -3,8 +3,8 @@ import path = require("path"); import shell = require("shelljs"); import util = require("util"); import options = require("./../options"); -import helpers = require("./../common/helpers"); import constants = require("./../constants"); +import hostInfo = require("../common/host-info"); class AndroidProjectService implements IPlatformProjectService { private targetApi: string; @@ -21,7 +21,12 @@ class AndroidProjectService implements IPlatformProjectService { frameworkPackageName: "tns-android", normalizedPlatformName: "Android", platformProjectService: this, - projectRoot: path.join(this.$projectData.platformsDir, "android") + projectRoot: path.join(this.$projectData.platformsDir, "android"), + buildOutputPath: path.join(this.$projectData.platformsDir, "android", "bin"), + validPackageNames: [ + util.format("%s-%s.%s", this.$projectData.projectName, "debug", "apk"), + util.format("%s-%s.%s", this.$projectData.projectName, "release", "apk") + ] }; } @@ -84,15 +89,15 @@ class AndroidProjectService implements IPlatformProjectService { var assetsDirectory = path.join(platformData.projectRoot, "assets"); var resDirectory = path.join(platformData.projectRoot, "res"); - shell.cp("-r", appSourceDirectory, assetsDirectory); + shell.cp("-r", path.join(appSourceDirectory, "*"), assetsDirectory); - var appResourcesDirectoryPath = path.join(assetsDirectory, constants.APP_FOLDER_NAME, constants.APP_RESOURCES_FOLDER_NAME); + var appResourcesDirectoryPath = path.join(assetsDirectory, constants.APP_RESOURCES_FOLDER_NAME); if (this.$fs.exists(appResourcesDirectoryPath).wait()) { shell.cp("-r", path.join(appResourcesDirectoryPath, platformData.normalizedPlatformName, "*"), resDirectory); this.$fs.deleteDirectory(appResourcesDirectoryPath).wait(); } - return path.join(assetsDirectory, constants.APP_FOLDER_NAME); + return assetsDirectory; }).future()(); } @@ -106,7 +111,7 @@ class AndroidProjectService implements IPlatformProjectService { } private spawn(command: string, args: string[]): IFuture { - if (helpers.isWindows()) { + if (hostInfo.isWindows()) { args.unshift('/s', '/c', command); command = 'cmd'; } @@ -124,7 +129,8 @@ class AndroidProjectService implements IPlatformProjectService { return (() => { var args = [ "--path", projectPath, - "--target", targetApi + "--target", targetApi, + "--name", this.$projectData.projectName ]; this.spawn("android", ['update', 'project'].concat(args)).wait(); diff --git a/lib/services/ios-project-service.ts b/lib/services/ios-project-service.ts index 4470d0daf9..d0961f8282 100644 --- a/lib/services/ios-project-service.ts +++ b/lib/services/ios-project-service.ts @@ -23,6 +23,10 @@ class IOSProjectService implements IPlatformProjectService { normalizedPlatformName: "iOS", platformProjectService: this, projectRoot: path.join(this.$projectData.platformsDir, "ios"), + buildOutputPath: path.join(this.$projectData.platformsDir, "ios", "build", "device"), + validPackageNames: [ + this.$projectData.projectName + ".ipa" + ], targetedOS: ['darwin'] }; } @@ -76,9 +80,10 @@ class IOSProjectService implements IPlatformProjectService { return (() => { var appSourceDirectory = path.join(this.$projectData.projectDir, constants.APP_FOLDER_NAME); var appDestinationDirectory = path.join(platformData.projectRoot, this.$projectData.projectName); - shell.cp("-r", appSourceDirectory, appDestinationDirectory); - return path.join(appDestinationDirectory, constants.APP_FOLDER_NAME); + shell.cp("-r", path.join(appSourceDirectory, "*"), appDestinationDirectory); + + return appDestinationDirectory; }).future()(); } @@ -87,7 +92,7 @@ class IOSProjectService implements IPlatformProjectService { var basicArgs = [ "-project", path.join(projectRoot, this.$projectData.projectName + ".xcodeproj"), "-target", this.$projectData.projectName, - "-configuration", options.release ? "Release": "Debug", + "-configuration", options.release ? "Release" : "Debug", "build" ]; var args: string[] = []; @@ -112,6 +117,18 @@ class IOSProjectService implements IPlatformProjectService { var childProcess = this.$childProcess.spawn("xcodebuild", args, {cwd: options, stdio: 'inherit'}); this.$fs.futureFromEvent(childProcess, "exit").wait(); + var buildOutputPath = path.join(projectRoot, "build", options.device ? "device" : "emulator"); + + // Produce ipa file + var xcrunArgs = [ + "-sdk", "iphoneos", + "PackageApplication", + "-v", path.join(buildOutputPath, this.$projectData.projectName + ".app"), + "-o", path.join(buildOutputPath, this.$projectData.projectName + ".ipa") + ]; + + var childProcess = this.$childProcess.spawn("xcrun", xcrunArgs, {cwd: options, stdio: 'inherit'}); + this.$fs.futureFromEvent(childProcess, "exit").wait(); }).future()(); } diff --git a/lib/services/platform-service.ts b/lib/services/platform-service.ts index 11db8751ee..e2d66a13d7 100644 --- a/lib/services/platform-service.ts +++ b/lib/services/platform-service.ts @@ -5,6 +5,7 @@ import shell = require("shelljs"); import util = require("util"); import constants = require("./../constants"); import helpers = require("./../common/helpers"); +import options = require("./../options"); class PlatformsData implements IPlatformsData { private platformsData : { [index: string]: any } = {}; @@ -34,7 +35,8 @@ export class PlatformService implements IPlatformService { private $logger: ILogger, private $npm: INodePackageManager, private $projectData: IProjectData, - private $platformsData: IPlatformsData) { } + private $platformsData: IPlatformsData, + private $devicesServices: Mobile.IDevicesServices) { } public addPlatforms(platforms: string[]): IFuture { return (() => { @@ -138,17 +140,9 @@ export class PlatformService implements IPlatformService { var platformProjectService = platformData.platformProjectService; var appFilesLocation = platformProjectService.prepareProject(platformData).wait(); - var files = helpers.enumerateFilesInDirectorySync(appFilesLocation); - _.each(files, fileName => { - var platformInfo = PlatformService.parsePlatformSpecificFileName(path.basename(fileName), this.$platformsData.platformsNames); - var shouldExcludeFile = platformInfo && platformInfo.platform !== platform; - if (shouldExcludeFile) { - this.$fs.deleteFile(fileName).wait(); - } else if (platformInfo && platformInfo.onDeviceName) { - this.$fs.rename(fileName, path.join(path.dirname(fileName), platformInfo.onDeviceName)).wait(); - } - }); + this.processPlatformSpecificFiles(platform, helpers.enumerateFilesInDirectorySync(path.join(appFilesLocation, constants.APP_FOLDER_NAME))).wait(); + this.processPlatformSpecificFiles(platform, helpers.enumerateFilesInDirectorySync(path.join(appFilesLocation, constants.TNS_MODULES_FOLDER_NAME))).wait(); }).future()(); } @@ -170,7 +164,14 @@ export class PlatformService implements IPlatformService { platform = platform.toLowerCase(); this.preparePlatform(platform).wait(); + + // We need to set device option here + var cachedDeviceOption = options.device; + options.device = true; this.buildPlatform(platform).wait(); + options.device = cachedDeviceOption; + + this.deploy(platform).wait(); }).future()(); } @@ -190,6 +191,44 @@ export class PlatformService implements IPlatformService { }).future()(); } + public deploy(platform: string): IFuture { + return (() => { + platform = platform.toLowerCase(); + + this.validatePlatformInstalled(platform); + + var platformData = this.$platformsData.getPlatformData(platform); + + // Get latest package that is produced from build + var candidates = this.$fs.readDirectory(platformData.buildOutputPath).wait(); + var packages = _.filter(candidates, candidate => { + return _.contains(platformData.validPackageNames, candidate); + }).map(currentPackage => { + currentPackage = path.join(platformData.buildOutputPath, currentPackage); + + return { + pkg: currentPackage, + time: this.$fs.getFsStats(currentPackage).wait().mtime + }; + }); + + packages = _.sortBy(packages, pkg => pkg.time ).reverse(); // We need to reverse because sortBy always sorts in ascending order + + if(packages.length === 0) { + var packageExtName = path.extname(platformData.validPackageNames[0]); + this.$errors.fail("No %s found in %s directory", packageExtName, platformData.buildOutputPath) + } + + var packageFile = packages[0].pkg; + this.$logger.out("Using ", packageFile); + + this.$devicesServices.initialize(platform, options.device).wait(); + var action = (device: Mobile.IDevice): IFuture => { return device.deploy(packageFile, this.$projectData.projectId); }; + this.$devicesServices.execute(action).wait(); + + }).future()(); + } + private validatePlatform(platform: string): void { if(!platform) { this.$errors.fail("No platform specified.") @@ -245,5 +284,20 @@ export class PlatformService implements IPlatformService { } return undefined; } + + private processPlatformSpecificFiles( platform: string, files: string[]): IFuture { + // Renames the files that have `platform` as substring and removes the files from other platform + return (() => { + _.each(files, fileName => { + var platformInfo = PlatformService.parsePlatformSpecificFileName(path.basename(fileName), this.$platformsData.platformsNames); + var shouldExcludeFile = platformInfo && platformInfo.platform !== platform; + if (shouldExcludeFile) { + this.$fs.deleteFile(fileName).wait(); + } else if (platformInfo && platformInfo.onDeviceName) { + this.$fs.rename(fileName, path.join(path.dirname(fileName), platformInfo.onDeviceName)).wait(); + } + }); + }).future()(); + } } $injector.register("platformService", PlatformService); diff --git a/package.json b/package.json index f835ccf89a..b272f5d8e1 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,10 @@ "mobile" ], "dependencies": { + "bufferpack": "0.0.6", + "byline": "4.1.1", "colors": "0.6.2", + "ffi": "https://github.com/icenium/node-ffi/tarball/master", "fibers": "https://github.com/icenium/node-fibers/tarball/master", "filesize": "2.0.3", "log4js": "0.6.9", @@ -31,13 +34,17 @@ "node-uuid": "1.4.1", "npm": "1.4.10", "osenv": "0.1.0", + "plistlib": "0.2.1", "progress-stream": "0.5.0", "prompt": "https://github.com/Icenium/prompt/tarball/master", "properties-parser": "0.2.3", + "ref": "https://github.com/icenium/ref/tarball/master", + "ref-struct": "0.0.5", "rimraf": "2.2.6", "semver": "3.0.1", "shelljs": "0.3.0", "tabtab": "https://github.com/tailsu/node-tabtab/tarball/master", + "temp": "0.8.1", "underscore": "1.5.2", "unzip": "0.1.9", "watchr": "2.4.11", diff --git a/resources/help.txt b/resources/help.txt index 2da9b416b5..8e6a40d10f 100644 --- a/resources/help.txt +++ b/resources/help.txt @@ -14,6 +14,7 @@ General commands: prepare Copies cross-platform content to the subdirectory for the selected target platform. This lets you build the project with the SDK for the selected platform and deploy it on device. build Builds the project for the selected target platform and produces an application package. + deploy Deploys the project to a connected device. run Runs your project on a connected device. This is shorthand for prepare, build, and deploy. feature-usage-tracking Configures anonymous feature usage tracking. @@ -145,6 +146,18 @@ in the project. --[/]-- +--[deploy]-- + Usage: + $ tns deploy [--device ] + +Platform-specific usages: + $ tns deploy android [--device ] + $ tns deploy ios [--device ] + +Deploys the project to a connected device. + +--[/]-- + --[run]-- Usage: diff --git a/resources/platform-tools/android/darwin/NOTICE.txt b/resources/platform-tools/android/darwin/NOTICE.txt new file mode 100644 index 0000000000..e6ab557c05 --- /dev/null +++ b/resources/platform-tools/android/darwin/NOTICE.txt @@ -0,0 +1,6658 @@ +Notices for files contained in the tools directory: +============================================================ +Notices for file(s): +/lib/libcrypto.dylib +/lib/libssl.dylib +------------------------------------------------------------ + + LICENSE ISSUES + ============== + + The OpenSSL toolkit stays under a dual license, i.e. both the conditions of + the OpenSSL License and the original SSLeay license apply to the toolkit. + See below for the actual license texts. Actually both licenses are BSD-style + Open Source licenses. In case of any license issues related to OpenSSL + please contact openssl-core@openssl.org. + + OpenSSL License + --------------- + +/* ==================================================================== + * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * 3. All advertising materials mentioning features or use of this + * software must display the following acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + * + * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + * endorse or promote products derived from this software without + * prior written permission. For written permission, please contact + * openssl-core@openssl.org. + * + * 5. Products derived from this software may not be called "OpenSSL" + * nor may "OpenSSL" appear in their names without prior written + * permission of the OpenSSL Project. + * + * 6. Redistributions of any form whatsoever must retain the following + * acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit (http://www.openssl.org/)" + * + * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY + * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR + * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. + * ==================================================================== + * + * This product includes cryptographic software written by Eric Young + * (eay@cryptsoft.com). This product includes software written by Tim + * Hudson (tjh@cryptsoft.com). + * + */ + + Original SSLeay License + ----------------------- + +/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) + * All rights reserved. + * + * This package is an SSL implementation written + * by Eric Young (eay@cryptsoft.com). + * The implementation was written so as to conform with Netscapes SSL. + * + * This library is free for commercial and non-commercial use as long as + * the following conditions are aheared to. The following conditions + * apply to all code found in this distribution, be it the RC4, RSA, + * lhash, DES, etc., code; not just the SSL code. The SSL documentation + * included with this distribution is covered by the same copyright terms + * except that the holder is Tim Hudson (tjh@cryptsoft.com). + * + * Copyright remains Eric Young's, and as such any Copyright notices in + * the code are not to be removed. + * If this package is used in a product, Eric Young should be given attribution + * as the author of the parts of the library used. + * This can be in the form of a textual message at program startup or + * in documentation (online or textual) provided with the package. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * "This product includes cryptographic software written by + * Eric Young (eay@cryptsoft.com)" + * The word 'cryptographic' can be left out if the rouines from the library + * being used are not cryptographic related :-). + * 4. If you include any Windows specific code (or a derivative thereof) from + * the apps directory (application code) you must include an acknowledgement: + * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + * + * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * The licence and distribution terms for any publically available version or + * derivative of this code cannot be changed. i.e. this code cannot simply be + * copied and put under another distribution licence + * [including the GNU Public Licence.] + */ + + +============================================================ +Notices for file(s): +/framework/jcommon-1.0.12.jar +/framework/jfreechart-1.0.9-swt.jar +/framework/jfreechart-1.0.9.jar +------------------------------------------------------------ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + + + +============================================================ +Notices for file(s): +/bin/img2simg +/bin/make_ext4fs +/bin/mkuserimg.sh +/bin/simg2img +/bin/simg_dump.py +/lib/libext4_utils.a +------------------------------------------------------------ + + Copyright (c) 2010, The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +============================================================ +Notices for file(s): +/framework/swtmenubar.jar +------------------------------------------------------------ +*Eclipse Public License - v 1.0* + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE +PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF +THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +*1. DEFINITIONS* + +"Contribution" means: + +a) in the case of the initial Contributor, the initial code and +documentation distributed under this Agreement, and +b) in the case of each subsequent Contributor: + +i) changes to the Program, and + +ii) additions to the Program; + +where such changes and/or additions to the Program originate from and +are distributed by that particular Contributor. A Contribution +'originates' from a Contributor if it was added to the Program by such +Contributor itself or anyone acting on such Contributor's behalf. +Contributions do not include additions to the Program which: (i) are +separate modules of software distributed in conjunction with the Program +under their own license agreement, and (ii) are not derivative works of +the Program. + +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents " mean patent claims licensable by a Contributor which +are necessarily infringed by the use or sale of its Contribution alone +or when combined with the Program. + +"Program" means the Contributions distributed in accordance with this +Agreement. + +"Recipient" means anyone who receives the Program under this Agreement, +including all Contributors. + +*2. GRANT OF RIGHTS* + +a) Subject to the terms of this Agreement, each Contributor hereby +grants Recipient a non-exclusive, worldwide, royalty-free copyright +license to reproduce, prepare derivative works of, publicly display, +publicly perform, distribute and sublicense the Contribution of such +Contributor, if any, and such derivative works, in source code and +object code form. + +b) Subject to the terms of this Agreement, each Contributor hereby +grants Recipient a non-exclusive, worldwide, royalty-free patent license +under Licensed Patents to make, use, sell, offer to sell, import and +otherwise transfer the Contribution of such Contributor, if any, in +source code and object code form. This patent license shall apply to the +combination of the Contribution and the Program if, at the time the +Contribution is added by the Contributor, such addition of the +Contribution causes such combination to be covered by the Licensed +Patents. The patent license shall not apply to any other combinations +which include the Contribution. No hardware per se is licensed hereunder. + +c) Recipient understands that although each Contributor grants the +licenses to its Contributions set forth herein, no assurances are +provided by any Contributor that the Program does not infringe the +patent or other intellectual property rights of any other entity. Each +Contributor disclaims any liability to Recipient for claims brought by +any other entity based on infringement of intellectual property rights +or otherwise. As a condition to exercising the rights and licenses +granted hereunder, each Recipient hereby assumes sole responsibility to +secure any other intellectual property rights needed, if any. For +example, if a third party patent license is required to allow Recipient +to distribute the Program, it is Recipient's responsibility to acquire +that license before distributing the Program. + +d) Each Contributor represents that to its knowledge it has sufficient +copyright rights in its Contribution, if any, to grant the copyright +license set forth in this Agreement. + +*3. REQUIREMENTS* + +A Contributor may choose to distribute the Program in object code form +under its own license agreement, provided that: + +a) it complies with the terms and conditions of this Agreement; and + +b) its license agreement: + +i) effectively disclaims on behalf of all Contributors all warranties +and conditions, express and implied, including warranties or conditions +of title and non-infringement, and implied warranties or conditions of +merchantability and fitness for a particular purpose; + +ii) effectively excludes on behalf of all Contributors all liability for +damages, including direct, indirect, special, incidental and +consequential damages, such as lost profits; + +iii) states that any provisions which differ from this Agreement are +offered by that Contributor alone and not by any other party; and + +iv) states that source code for the Program is available from such +Contributor, and informs licensees how to obtain it in a reasonable +manner on or through a medium customarily used for software exchange. + +When the Program is made available in source code form: + +a) it must be made available under this Agreement; and + +b) a copy of this Agreement must be included with each copy of the Program. + +Contributors may not remove or alter any copyright notices contained +within the Program. + +Each Contributor must identify itself as the originator of its +Contribution, if any, in a manner that reasonably allows subsequent +Recipients to identify the originator of the Contribution. + +*4. COMMERCIAL DISTRIBUTION* + +Commercial distributors of software may accept certain responsibilities +with respect to end users, business partners and the like. While this +license is intended to facilitate the commercial use of the Program, the +Contributor who includes the Program in a commercial product offering +should do so in a manner which does not create potential liability for +other Contributors. Therefore, if a Contributor includes the Program in +a commercial product offering, such Contributor ("Commercial +Contributor") hereby agrees to defend and indemnify every other +Contributor ("Indemnified Contributor") against any losses, damages and +costs (collectively "Losses") arising from claims, lawsuits and other +legal actions brought by a third party against the Indemnified +Contributor to the extent caused by the acts or omissions of such +Commercial Contributor in connection with its distribution of the +Program in a commercial product offering. The obligations in this +section do not apply to any claims or Losses relating to any actual or +alleged intellectual property infringement. In order to qualify, an +Indemnified Contributor must: a) promptly notify the Commercial +Contributor in writing of such claim, and b) allow the Commercial +Contributor to control, and cooperate with the Commercial Contributor +in, the defense and any related settlement negotiations. The Indemnified +Contributor may participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial +product offering, Product X. That Contributor is then a Commercial +Contributor. If that Commercial Contributor then makes performance +claims, or offers warranties related to Product X, those performance +claims and warranties are such Commercial Contributor's responsibility +alone. Under this section, the Commercial Contributor would have to +defend claims against the other Contributors related to those +performance claims and warranties, and if a court requires any other +Contributor to pay any damages as a result, the Commercial Contributor +must pay those damages. + +*5. NO WARRANTY* + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED +ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, +EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES +OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR +A PARTICULAR PURPOSE. Each Recipient is solely responsible for +determining the appropriateness of using and distributing the Program +and assumes all risks associated with its exercise of rights under this +Agreement , including but not limited to the risks and costs of program +errors, compliance with applicable laws, damage to or loss of data, +programs or equipment, and unavailability or interruption of operations. + +*6. DISCLAIMER OF LIABILITY* + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR +ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING +WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR +DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED +HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +*7. GENERAL* + +If any provision of this Agreement is invalid or unenforceable under +applicable law, it shall not affect the validity or enforceability of +the remainder of the terms of this Agreement, and without further action +by the parties hereto, such provision shall be reformed to the minimum +extent necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against any entity (including +a cross-claim or counterclaim in a lawsuit) alleging that the Program +itself (excluding combinations of the Program with other software or +hardware) infringes such Recipient's patent(s), then such Recipient's +rights granted under Section 2(b) shall terminate as of the date such +litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it fails +to comply with any of the material terms or conditions of this Agreement +and does not cure such failure in a reasonable period of time after +becoming aware of such noncompliance. If all Recipient's rights under +this Agreement terminate, Recipient agrees to cease use and distribution +of the Program as soon as reasonably practicable. However, Recipient's +obligations under this Agreement and any licenses granted by Recipient +relating to the Program shall continue and survive. + +Everyone is permitted to copy and distribute copies of this Agreement, +but in order to avoid inconsistency the Agreement is copyrighted and may +only be modified in the following manner. The Agreement Steward reserves +the right to publish new versions (including revisions) of this +Agreement from time to time. No one other than the Agreement Steward has +the right to modify this Agreement. The Eclipse Foundation is the +initial Agreement Steward. The Eclipse Foundation may assign the +responsibility to serve as the Agreement Steward to a suitable separate +entity. Each new version of the Agreement will be given a distinguishing +version number. The Program (including Contributions) may always be +distributed subject to the version of the Agreement under which it was +received. In addition, after a new version of the Agreement is +published, Contributor may elect to distribute the Program (including +its Contributions) under the new version. Except as expressly stated in +Sections 2(a) and 2(b) above, Recipient receives no rights or licenses +to the intellectual property of any Contributor under this Agreement, +whether expressly, by implication, estoppel or otherwise. All rights in +the Program not expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and the +intellectual property laws of the United States of America. No party to +this Agreement will bring a legal action under this Agreement more than +one year after the cause of action arose. Each party waives its rights +to a jury trial in any resulting litigation. + + + + +============================================================ +Notices for file(s): +/bin/aapt +/bin/aidl +/bin/dexdump +/bin/dx +/bin/test_zipfile +/framework/androidprefs.jar +/framework/anttasks.jar +/framework/archquery.jar +/framework/common.jar +/framework/ddmlib.jar +/framework/ddms.jar +/framework/ddmuilib.jar +/framework/draw9patch.jar +/framework/hierarchyviewer2.jar +/framework/ide_common.jar +/framework/layoutlib_api.jar +/framework/ninepatch.jar +/framework/sdklib.jar +/framework/sdkmanager.jar +/framework/sdkuilib.jar +/lib/lib64cutils.a +/lib/lib64log.a +/lib/lib64utils.a +/lib/libandroidfw.a +/lib/libcutils.a +/lib/liblog.a +/lib/liblog.dylib +/lib/libnativehelper.dylib +/lib/libutils.a +/lib/libzipfile.a +------------------------------------------------------------ + + Copyright (c) 2005-2008, The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +============================================================ +Notices for file(s): +/framework/org.eclipse.core.commands_3.4.0.I20080509-2000.jar +/framework/org.eclipse.core.commands_3.6.0.I20100512-1500.jar +/framework/org.eclipse.core.expressions_3.4.200.v20100505.jar +/framework/org.eclipse.core.runtime_3.6.0.v20100505.jar +/framework/org.eclipse.equinox.common_3.4.0.v20080421-2006.jar +/framework/org.eclipse.equinox.common_3.6.0.v20100503.jar +/framework/org.eclipse.jface_3.4.2.M20090107-0800.jar +/framework/org.eclipse.jface_3.6.2.M20110210-1200.jar +/framework/org.eclipse.osgi_3.6.2.R36x_v20110210.jar +/framework/org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar +/framework/org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar +/framework/osgi.jar +/framework/propertysheet.jar +/framework/swt.jar +------------------------------------------------------------ + + Eclipse Public License - v 1.0 + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE +PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF +THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +*1. DEFINITIONS* + +"Contribution" means: + +a) in the case of the initial Contributor, the initial code and +documentation distributed under this Agreement, and + +b) in the case of each subsequent Contributor: + +i) changes to the Program, and + +ii) additions to the Program; + +where such changes and/or additions to the Program originate from and +are distributed by that particular Contributor. A Contribution +'originates' from a Contributor if it was added to the Program by such +Contributor itself or anyone acting on such Contributor's behalf. +Contributions do not include additions to the Program which: (i) are +separate modules of software distributed in conjunction with the Program +under their own license agreement, and (ii) are not derivative works of +the Program. + +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents" mean patent claims licensable by a Contributor which +are necessarily infringed by the use or sale of its Contribution alone +or when combined with the Program. + +"Program" means the Contributions distributed in accordance with this +Agreement. + +"Recipient" means anyone who receives the Program under this Agreement, +including all Contributors. + +*2. GRANT OF RIGHTS* + +a) Subject to the terms of this Agreement, each Contributor hereby +grants Recipient a non-exclusive, worldwide, royalty-free copyright +license to reproduce, prepare derivative works of, publicly display, +publicly perform, distribute and sublicense the Contribution of such +Contributor, if any, and such derivative works, in source code and +object code form. + +b) Subject to the terms of this Agreement, each Contributor hereby +grants Recipient a non-exclusive, worldwide, royalty-free patent license +under Licensed Patents to make, use, sell, offer to sell, import and +otherwise transfer the Contribution of such Contributor, if any, in +source code and object code form. This patent license shall apply to the +combination of the Contribution and the Program if, at the time the +Contribution is added by the Contributor, such addition of the +Contribution causes such combination to be covered by the Licensed +Patents. The patent license shall not apply to any other combinations +which include the Contribution. No hardware per se is licensed hereunder. + +c) Recipient understands that although each Contributor grants the +licenses to its Contributions set forth herein, no assurances are +provided by any Contributor that the Program does not infringe the +patent or other intellectual property rights of any other entity. Each +Contributor disclaims any liability to Recipient for claims brought by +any other entity based on infringement of intellectual property rights +or otherwise. As a condition to exercising the rights and licenses +granted hereunder, each Recipient hereby assumes sole responsibility to +secure any other intellectual property rights needed, if any. For +example, if a third party patent license is required to allow Recipient +to distribute the Program, it is Recipient's responsibility to acquire +that license before distributing the Program. + +d) Each Contributor represents that to its knowledge it has sufficient +copyright rights in its Contribution, if any, to grant the copyright +license set forth in this Agreement. + +*3. REQUIREMENTS* + +A Contributor may choose to distribute the Program in object code form +under its own license agreement, provided that: + +a) it complies with the terms and conditions of this Agreement; and + +b) its license agreement: + +i) effectively disclaims on behalf of all Contributors all warranties +and conditions, express and implied, including warranties or conditions +of title and non-infringement, and implied warranties or conditions of +merchantability and fitness for a particular purpose; + +ii) effectively excludes on behalf of all Contributors all liability for +damages, including direct, indirect, special, incidental and +consequential damages, such as lost profits; + +iii) states that any provisions which differ from this Agreement are +offered by that Contributor alone and not by any other party; and + +iv) states that source code for the Program is available from such +Contributor, and informs licensees how to obtain it in a reasonable +manner on or through a medium customarily used for software exchange. + +When the Program is made available in source code form: + +a) it must be made available under this Agreement; and + +b) a copy of this Agreement must be included with each copy of the Program. + +Contributors may not remove or alter any copyright notices contained +within the Program. + +Each Contributor must identify itself as the originator of its +Contribution, if any, in a manner that reasonably allows subsequent +Recipients to identify the originator of the Contribution. + +*4. COMMERCIAL DISTRIBUTION* + +Commercial distributors of software may accept certain responsibilities +with respect to end users, business partners and the like. While this +license is intended to facilitate the commercial use of the Program, the +Contributor who includes the Program in a commercial product offering +should do so in a manner which does not create potential liability for +other Contributors. Therefore, if a Contributor includes the Program in +a commercial product offering, such Contributor ("Commercial +Contributor") hereby agrees to defend and indemnify every other +Contributor ("Indemnified Contributor") against any losses, damages and +costs (collectively "Losses") arising from claims, lawsuits and other +legal actions brought by a third party against the Indemnified +Contributor to the extent caused by the acts or omissions of such +Commercial Contributor in connection with its distribution of the +Program in a commercial product offering. The obligations in this +section do not apply to any claims or Losses relating to any actual or +alleged intellectual property infringement. In order to qualify, an +Indemnified Contributor must: a) promptly notify the Commercial +Contributor in writing of such claim, and b) allow the Commercial +Contributor to control, and cooperate with the Commercial Contributor +in, the defense and any related settlement negotiations. The Indemnified +Contributor may participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial +product offering, Product X. That Contributor is then a Commercial +Contributor. If that Commercial Contributor then makes performance +claims, or offers warranties related to Product X, those performance +claims and warranties are such Commercial Contributor's responsibility +alone. Under this section, the Commercial Contributor would have to +defend claims against the other Contributors related to those +performance claims and warranties, and if a court requires any other +Contributor to pay any damages as a result, the Commercial Contributor +must pay those damages. + +*5. NO WARRANTY* + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED +ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, +EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES +OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR +A PARTICULAR PURPOSE. Each Recipient is solely responsible for +determining the appropriateness of using and distributing the Program +and assumes all risks associated with its exercise of rights under this +Agreement , including but not limited to the risks and costs of program +errors, compliance with applicable laws, damage to or loss of data, +programs or equipment, and unavailability or interruption of operations. + +*6. DISCLAIMER OF LIABILITY* + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR +ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING +WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR +DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED +HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +*7. GENERAL* + +If any provision of this Agreement is invalid or unenforceable under +applicable law, it shall not affect the validity or enforceability of +the remainder of the terms of this Agreement, and without further action +by the parties hereto, such provision shall be reformed to the minimum +extent necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against any entity (including +a cross-claim or counterclaim in a lawsuit) alleging that the Program +itself (excluding combinations of the Program with other software or +hardware) infringes such Recipient's patent(s), then such Recipient's +rights granted under Section 2(b) shall terminate as of the date such +litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it fails +to comply with any of the material terms or conditions of this Agreement +and does not cure such failure in a reasonable period of time after +becoming aware of such noncompliance. If all Recipient's rights under +this Agreement terminate, Recipient agrees to cease use and distribution +of the Program as soon as reasonably practicable. However, Recipient's +obligations under this Agreement and any licenses granted by Recipient +relating to the Program shall continue and survive. + +Everyone is permitted to copy and distribute copies of this Agreement, +but in order to avoid inconsistency the Agreement is copyrighted and may +only be modified in the following manner. The Agreement Steward reserves +the right to publish new versions (including revisions) of this +Agreement from time to time. No one other than the Agreement Steward has +the right to modify this Agreement. The Eclipse Foundation is the +initial Agreement Steward. The Eclipse Foundation may assign the +responsibility to serve as the Agreement Steward to a suitable separate +entity. Each new version of the Agreement will be given a distinguishing +version number. The Program (including Contributions) may always be +distributed subject to the version of the Agreement under which it was +received. In addition, after a new version of the Agreement is +published, Contributor may elect to distribute the Program (including +its Contributions) under the new version. Except as expressly stated in +Sections 2(a) and 2(b) above, Recipient receives no rights or licenses +to the intellectual property of any Contributor under this Agreement, +whether expressly, by implication, estoppel or otherwise. All rights in +the Program not expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and the +intellectual property laws of the United States of America. No party to +this Agreement will bring a legal action under this Agreement more than +one year after the cause of action arose. Each party waives its rights +to a jury trial in any resulting litigation. + + +============================================================ +Notices for file(s): +/lib/libtinyxml.a +------------------------------------------------------------ +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any +damages arising from the use of this software. + +Permission is granted to anyone to use this software for any +purpose, including commercial applications, and to alter it and +redistribute it freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must +not claim that you wrote the original software. If you use this +software in a product, an acknowledgment in the product documentation +would be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and +must not be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source +distribution. + +============================================================ +Notices for file(s): +/framework/commons-compress-1.0.jar +------------------------------------------------------------ +Apache Commons Compress +Copyright 2002-2009 The Apache Software Foundation + +This product includes software developed by +The Apache Software Foundation (http://www.apache.org/). + +Original BZip2 classes contributed by Keiron Liddle +, Aftex Software to the Apache Ant project + +Original Tar classes from contributors of the Apache Ant project + +Original Zip classes from contributors of the Apache Ant project + +Original CPIO classes contributed by Markus Kuss and the jRPM project +(jrpm.sourceforge.net) + +============================================================ +Notices for file(s): +/lib/libLLVMAnalysis.a +------------------------------------------------------------ +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +Copyrights and Licenses for Third Party Software Distributed with LLVM: +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- +Autoconf llvm/autoconf + llvm/projects/ModuleMaker/autoconf + llvm/projects/sample/autoconf +CellSPU backend llvm/lib/Target/CellSPU/README.txt +Google Test llvm/utils/unittest/googletest +OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex} + +============================================================ +Notices for file(s): +/bin/minigzip +/lib/libunz.a +/lib/libz.a +------------------------------------------------------------ + (C) 1995-2004 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + +============================================================ +Notices for file(s): +/bin/imgdiff +------------------------------------------------------------ +Copyright (C) 2009 The Android Open Source Project + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + + +bsdiff.c +bspatch.c + +Copyright 2003-2005 Colin Percival +All rights reserved + +Redistribution and use in source and binary forms, with or without +modification, are permitted providing that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +============================================================ +Notices for file(s): +/bin/emulator-arm +/bin/emulator-ui +/bin/emulator-x86 +/bin/emulator +/bin/qemu-android-arm +/bin/qemu-android-x86 +/lib/emulator-common.a +/lib/emulator-libelff.a +/lib/emulator-libqemu.a +/lib/emulator-libui.a +/lib/emulator-target-arm.a +/lib/emulator-target-i386.a +------------------------------------------------------------ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 675 Mass Ave, Cambridge, MA 02139, USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) 19yy + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19yy name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. + +============================================================ +Notices for file(s): +/framework/groovy-all-1.7.0.jar +------------------------------------------------------------ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +============================================================ +Notices for file(s): +/framework/lint.jar +/framework/lint_api.jar +/framework/lint_checks.jar +/framework/rule_api.jar +------------------------------------------------------------ + + Copyright (c) 2011, The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +============================================================ +Notices for file(s): +/framework/doclava.jar +------------------------------------------------------------ + + Copyright (C) 2010 Google Inc. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +====================================================================== + +jQuery 1.2.6 - New Wave Javascript + +Copyright (c) 2008 John Resig (jquery.com) +Dual licensed under the MIT (MIT-LICENSE.txt) +and GPL (GPL-LICENSE.txt) licenses. + +Copyright (c) 2009 John Resig, http://jquery.com/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +============================================================ +Notices for file(s): +/bin/sqlite3 +------------------------------------------------------------ +2001 September 15 + +The author disclaims copyright to this source code. In place of +a legal notice, here is a blessing: + + May you do good and not evil. + May you find forgiveness for yourself and forgive others. + May you share freely, never taking more than you give. + + +============================================================ +Notices for file(s): +/lib/libmincrypt.a +------------------------------------------------------------ + Copyright 2008, The Android Open Source Project + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Google Inc. nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY Google Inc. ``AS IS'' AND ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO + EVENT SHALL Google Inc. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +============================================================ +Notices for file(s): +/framework/liblzf.jar +------------------------------------------------------------ +Copyright (c) 2000-2009 Marc Alexander Lehmann + +Redistribution and use in source and binary forms, with or without modifica- +tion, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER- +CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPE- +CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTH- +ERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. + +Alternatively, the following files carry an additional notice that +explicitly allows relicensing under the GPLv2: lzf.c lzf.h lzfP.h lzf_c.c +lzf_d.c + + +============================================================ +Notices for file(s): +/framework/jdiff.jar +------------------------------------------------------------ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + + + + + +============================================================ +Notices for file(s): +/lib/libexpat.a +/lib/libexpat.dylib +------------------------------------------------------------ +Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd + and Clark Cooper +Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Expat maintainers. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +============================================================ +Notices for file(s): +/lib/libbcc.dylib +------------------------------------------------------------ +========================== +NOTICE file for libbcc.git +========================== + +* NOTICE for lib/ExecutionEngine/, lib/ScriptCRT/, include and helper/. + + Copyright (c) 2005-2011, The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + + +* NOTICE for runtime/ and lib/CodeGen/. + Note: The NOTICE is the same for another git project, external/llvm.git. + +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +Copyrights and Licenses for Third Party Software Distributed with LLVM: +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- +Autoconf llvm/autoconf + llvm/projects/ModuleMaker/autoconf + llvm/projects/sample/autoconf +CellSPU backend llvm/lib/Target/CellSPU/README.txt +Google Test llvm/utils/unittest/googletest +OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex} + + + +* NOTICE for tests/disassem.cpp and tests/disassem.h. + +/* $NetBSD: disassem.c,v 1.14 2003/03/27 16:58:36 mycroft Exp $ */ + +/*- + * Copyright (c) 1996 Mark Brinicombe. + * Copyright (c) 1996 Brini. + * + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by Brini. + * 4. The name of the company nor the name of the author may be used to + * endorse or promote products derived from this software without specific + * prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY BRINI ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL BRINI OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * RiscBSD kernel project + * + * db_disasm.c + * + * Kernel disassembler + * + * Created : 10/02/96 + * + * Structured after the sparc/sparc/db_disasm.c by David S. Miller & + * Paul Kranenburg + * + * This code is not complete. Not all instructions are disassembled. + */ + +============================================================ +Notices for file(s): +/lib/libbz.a +------------------------------------------------------------ + +-------------------------------------------------------------------------- + +This program, "bzip2", the associated library "libbzip2", and all +documentation, are copyright (C) 1996-2010 Julian R Seward. All +rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. The origin of this software must not be misrepresented; you must + not claim that you wrote the original software. If you use this + software in a product, an acknowledgment in the product + documentation would be appreciated but is not required. + +3. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + +4. The name of the author may not be used to endorse or promote + products derived from this software without specific prior written + permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS +OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE +GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Julian Seward, jseward@bzip.org +bzip2/libbzip2 version 1.0.6 of 6 September 2010 + +-------------------------------------------------------------------------- + +============================================================ +Notices for file(s): +/framework/emmalib.jar +------------------------------------------------------------ +Common Public License - v 1.0 + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S +ACCEPTANCE OF THIS AGREEMENT. + +1. DEFINITIONS + +"Contribution" means: + + a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and + b) in the case of each subsequent Contributor: + + i) changes to the Program, and + + ii) additions to the Program; + + where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was +added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules +of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. + +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. + +"Program" means the Contributions distributed in accordance with this Agreement. + +"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. + +2. GRANT OF RIGHTS + + a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative +works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. + + b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, +use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the +combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered +by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. + + c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the +Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other +entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole +responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the +Program, it is Recipient's responsibility to acquire that license before distributing the Program. + + d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this +Agreement. + +3. REQUIREMENTS + +A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: + + a) it complies with the terms and conditions of this Agreement; and + + b) its license agreement: + + i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, +and implied warranties or conditions of merchantability and fitness for a particular purpose; + + ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost +profits; + + iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and + + iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium +customarily used for software exchange. + +When the Program is made available in source code form: + + a) it must be made available under this Agreement; and + + b) a copy of this Agreement must be included with each copy of the Program. + +Contributors may not remove or alter any copyright notices contained within the Program. + +Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the +Contribution. + +4. COMMERCIAL DISTRIBUTION + +Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the +commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other +Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify +every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a +third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a +commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to +qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate +with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor +then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this +section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other +Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. + +5. NO WARRANTY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, +WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for +determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to +the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. + +6. DISCLAIMER OF LIABILITY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this +Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any +patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes +patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other +software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a +reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the +Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and +survive. + +Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following +manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the +right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new +version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under +which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new +version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, +whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal +action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. + +============================================================ +Notices for file(s): +/bin/mksdcard +------------------------------------------------------------ +Copyright 2007, The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Google Inc. nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY Google Inc. ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +EVENT SHALL Google Inc. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +============================================================ +Notices for file(s): +/framework/org-netbeans-api-visual.jar +/framework/org-openide-util.jar +------------------------------------------------------------ +The GNU General Public License (GPL) Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. + +59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away +your freedom to share and change it. By contrast, the GNU +General Public License is intended to guarantee your freedom +to share and change free software--to make sure the software +is free for all its users. This General Public License +applies to most of the Free Software Foundation's software +and to any other program whose authors commit to using it. +(Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can +apply it to your programs, too. When we speak of free +software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and +charge for this service if you wish), that you receive +source code or can get it if you want it, that you can +change the software or use pieces of it in new free +programs; and that you know you can do these things. To +protect your rights, we need to make restrictions that +forbid anyone to deny you these rights or to ask you to +surrender the rights. These restrictions translate to +certain responsibilities for you if you distribute copies of +the software, or if you modify it. + +For example, if you distribute copies of such a program, +whether gratis or for a fee, you must give the recipients +all the rights that you have. You must make sure that they, +too, receive or can get the source code. And you must show +them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the +software, and (2) offer you this license which gives you +legal permission to copy, distribute and/or modify the +software. + +Also, for each author's protection and ours, we want to make +certain that everyone understands that there is no warranty +for this free software. If the software is modified by +someone else and passed on, we want its recipients to know +that what they have is not the original, so that any +problems introduced by others will not reflect on the +original authors' reputations. + +Finally, any free program is threatened constantly by +software patents. We wish to avoid the danger that +redistributors of a free program will individually obtain +patent licenses, in effect making the program proprietary. +To prevent this, we have made it clear that any patent must +be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution +and modification follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND +MODIFICATION + +0. This License applies to any program or other work which +contains a notice placed by the copyright holder saying it +may be distributed under the terms of this General Public +License. The "Program", below, refers to any such program or +work, and a "work based on the Program" means either the +Program or any derivative work under copyright law: that is +to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into +another language. (Hereinafter, translation is included +without limitation in the term "modification".) Each +licensee is addressed as "you". + +Activities other than copying, distribution and modification +are not covered by this License; they are outside its scope. +The act of running the Program is not restricted, and the +output from the Program is covered only if its contents +constitute a work based on the Program (independent of +having been made by running the Program). Whether that is +true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the +Program's source code as you receive it, in any medium, +provided that you conspicuously and appropriately publish on +each copy an appropriate copyright notice and disclaimer of +warranty; keep intact all the notices that refer to this +License and to the absence of any warranty; and give any +other recipients of the Program a copy of this License along +with the Program. + +You may charge a fee for the physical act of transferring a +copy, and you may at your option offer warranty protection +in exchange for a fee. + +2. You may modify your copy or copies of the Program or any +portion of it, thus forming a work based on the Program, and +copy and distribute such modifications or work under the +terms of Section 1 above, provided that you also meet all of +these conditions: + +a) You must cause the modified files to carry prominent +notices stating that you changed the files and the date of +any change. + +b) You must cause any work that you distribute or publish, +that in whole or in part contains or is derived from the +Program or any part thereof, to be licensed as a whole at no +charge to all third parties under the terms of this License. + +c) If the modified program normally reads commands +interactively when run, you must cause it, when started +running for such interactive use in the most ordinary way, +to print or display an announcement including an appropriate +copyright notice and a notice that there is no warranty (or +else, saying that you provide a warranty) and that users may +redistribute the program under these conditions, and telling +the user how to view a copy of this License. (Exception: if +the Program itself is interactive but does not normally +print such an announcement, your work based on the Program +is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the +Program, and can be reasonably considered independent and +separate works in themselves, then this License, and its +terms, do not apply to those sections when you distribute +them as separate works. But when you distribute the same +sections as part of a whole which is a work based on the +Program, the distribution of the whole must be on the terms +of this License, whose permissions for other licensees +extend to the entire whole, and thus to each and every part +regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights +or contest your rights to work written entirely by you; +rather, the intent is to exercise the right to control the +distribution of derivative or collective works based on the +Program. In addition, mere aggregation of another work not +based on the Program with the Program (or with a work based +on the Program) on a volume of a storage or distribution +medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based +on it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you +also do one of the following: + +a) Accompany it with the complete corresponding +machine-readable source code, which must be distributed +under the terms of Sections 1 and 2 above on a medium +customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least +three years, to give any third party, for a charge no more +than your cost of physically performing source distribution, +a complete machine-readable copy of the corresponding source +code, to be distributed under the terms of Sections 1 and 2 +above on a medium customarily used for software interchange; +or, + +c) Accompany it with the information you received as to the +offer to distribute corresponding source code. (This +alternative is allowed only for noncommercial distribution +and only if you received the program in object code or +executable form with such an offer, in accord with +Subsection b above.) + +The source code for a work means the preferred form of the +work for making modifications to it. For an executable work, +complete source code means all the source code for all +modules it contains, plus any associated interface +definition files, plus the scripts used to control +compilation and installation of the executable. However, as +a special exception, the source code distributed need not +include anything that is normally distributed (in either +source or binary form) with the major components (compiler, +kernel, and so on) of the operating system on which the +executable runs, unless that component itself accompanies +the executable. If distribution of executable or object code +is made by offering access to copy from a designated place, +then offering equivalent access to copy the source code from +the same place counts as distribution of the source code, +even though third parties are not compelled to copy the +source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the +Program except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense or distribute +the Program is void, and will automatically terminate your +rights under this License. However, parties who have +received copies, or rights, from you under this License will +not have their licenses terminated so long as such parties +remain in full compliance. + +5. You are not required to accept this License, since you +have not signed it. However, nothing else grants you +permission to modify or distribute the Program or its +derivative works. These actions are prohibited by law if you +do not accept this License. Therefore, by modifying or +distributing the Program (or any work based on the Program), +you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or +modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based +on the Program), the recipient automatically receives a +license from the original licensor to copy, distribute or +modify the Program subject to these terms and conditions. +You may not impose any further restrictions on the +recipients' exercise of the rights granted herein. You are +not responsible for enforcing compliance by third parties to +this License. + +7. If, as a consequence of a court judgment or allegation of +patent infringement or for any other reason (not limited to +patent issues), conditions are imposed on you (whether by +court order, agreement or otherwise) that contradict the +conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as +to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a +consequence you may not distribute the Program at all. For +example, if a patent license would not permit royalty-free +redistribution of the Program by all those who receive +copies directly or indirectly through you, then the only way +you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or +unenforceable under any particular circumstance, the balance +of the section is intended to apply and the section as a +whole is intended to apply in other circumstances. It is not +the purpose of this section to induce you to infringe any +patents or other property right claims or to contest +validity of any such claims; this section has the sole +purpose of protecting the integrity of the free software +distribution system, which is implemented by public license +practices. Many people have made generous contributions to +the wide range of software distributed through that system +in reliance on consistent application of that system; it is +up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee +cannot impose that choice. + +This section is intended to make thoroughly clear what is +believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is +restricted in certain countries either by patents or by +copyrighted interfaces, the original copyright holder who +places the Program under this License may add an explicit +geographical distribution limitation excluding those +countries, so that distribution is permitted only in or +among countries not thus excluded. In such case, this +License incorporates the limitation as if written in the +body of this License. + +9. The Free Software Foundation may publish revised and/or +new versions of the General Public License from time to +time. Such new versions will be similar in spirit to the +present version, but may differ in detail to address new +problems or concerns. + +Each version is given a distinguishing version number. If +the Program specifies a version number of this License which +applies to it and "any later version", you have the option +of following the terms and conditions either of that version +or of any later version published by the Free Software +Foundation. If the Program does not specify a version number +of this License, you may choose any version ever published +by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into +other free programs whose distribution conditions are +different, write to the author to ask for permission. For +software which is copyrighted by the Free Software +Foundation, write to the Free Software Foundation; we +sometimes make exceptions for this. Our decision will be +guided by the two goals of preserving the free status of all +derivatives of our free software and of promoting the +sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS +NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE +COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM +"AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR +IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE +OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE +DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED +TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY +WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED +ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, +SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF +THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT +LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR +LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE +PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH +HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the +greatest possible use to the public, the best way to achieve +this is to make it free software which everyone can +redistribute and change under these terms. + +To do so, attach the following notices to the program. It is +safest to attach them to the start of each source file to +most effectively convey the exclusion of warranty; and each +file should have at least the "copyright" line and a pointer +to where the full notice is found. + +One line to give the program's name and a brief idea of what +it does. + +Copyright (C) +This program is free software; you can redistribute it +and/or modify it under the terms of the GNU General Public +License as published by the Free Software Foundation; either +version 2 of the License, or (at your option) any later +version. This program is distributed in the hope that it +will be useful, but WITHOUT ANY WARRANTY; without even the +implied warranty of MERCHANTABILITY or FITNESS FOR A +PARTICULAR PURPOSE. See the GNU General Public License for +more details. You should have received a copy of the GNU +General Public License along with this program; if not, +write to the Free Software Foundation, Inc., 59 Temple +Place, Suite 330, Boston, MA 02111-1307 USA + +Also add information on how to contact you by electronic and +paper mail. If the program is interactive, make it output a +short notice like this when it starts in an interactive +mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details +type `show w'. This is free software, and you are welcome to +redistribute it under certain conditions; type `show c' for +details. The hypothetical commands `show w' and `show c' +should show the appropriate parts of the General Public +License. Of course, the commands you use may be called +something other than `show w' and `show c'; they could even +be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a +programmer) or your school, if any, to sign a "copyright +disclaimer" for the program, if necessary. Here is a sample; +alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in +the program `Gnomovision' (which makes passes at compilers) +written by James Hacker. + +signature of Ty Coon, 1 April 1989 +Ty Coon, President of Vice +This General Public License does not permit incorporating +your program into proprietary programs. If your program is a +subroutine library, you may consider it more useful to +permit linking proprietary applications with the library. If +this is what you want to do, use the GNU Library General +Public License instead of this License. + +"CLASSPATH" EXCEPTION TO THE GPL VERSION 2 + +Certain source files distributed by Sun Microsystems, Inc. +are subject to the following clarification and special +exception to the GPL Version 2, but only where Sun has +expressly included in the particular source file's header +the words "Sun designates this particular file as subject +to the "Classpath" exception as provided by Sun in the +License file that accompanied this code." + + Linking this library statically or dynamically with other +modules is making a combined work based on this library. +Thus, the terms and conditions of the GNU General Public +License Version 2 cover the whole combination. + + As a special exception, the copyright holders of this +library give you permission to link this library with +independent modules to produce an executable, regardless of +the license terms of these independent modules, and to copy +and distribute the resulting executable under terms of your +choice, provided that you also meet, for each linked +independent module, the terms and conditions of the license +of that module. An independent module is a module which is +not derived from or based on this library. If you modify +this library, you may extend this exception to your version +of the library, but you are not obligated to do so. If you +do not wish to do so, delete this exception statement from +your version. +============================================================ +Notices for file(s): +/bin/adb +------------------------------------------------------------ + + Copyright (c) 2006-2009, The Android Open Source Project + Copyright 2006, Brian Swetland + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +============================================================ +Notices for file(s): +/bin/dictTest +/bin/grxmlcompile +/bin/make_cfst +/bin/make_g2g +/bin/make_ve_grammar +/bin/parseStringTest +/bin/test_g2g +/bin/test_swiarb +/lib/libESR_Portable.dylib +/lib/libESR_Shared.dylib +/lib/libSR_AcousticModels.dylib +/lib/libSR_AcousticState.dylib +/lib/libSR_Core.dylib +/lib/libSR_EventLog.dylib +/lib/libSR_G2P.dylib +/lib/libSR_Grammar.dylib +/lib/libSR_Nametag.dylib +/lib/libSR_Recognizer.dylib +/lib/libSR_Semproc.dylib +/lib/libSR_Session.dylib +/lib/libSR_Vocabulary.dylib +/lib/libfst.dylib +------------------------------------------------------------ +These files are Copyright 2007, 2008 Nuance Communications, but released under +the Apache2 License. + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +============================================================ +Notices for file(s): +/bin/llvm-rs-cc +/bin/rs-spec-gen +/lib/libslang.a +------------------------------------------------------------ +========================= +NOTICE file for slang.git +========================= + + Copyright (c) 2005-2011, The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + + +=========================================== +NOTICE file for external/clang (clang.git). +Note: libclang*.a are statically linked. +=========================================== + +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2007-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- + + + + +========================================= +NOTICE file for external/llvm (llvm.git). +Note: libLLVM*.a are statically linked. +========================================= + +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +Copyrights and Licenses for Third Party Software Distributed with LLVM: +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- +Autoconf llvm/autoconf + llvm/projects/ModuleMaker/autoconf + llvm/projects/sample/autoconf +CellSPU backend llvm/lib/Target/CellSPU/README.txt +Google Test llvm/utils/unittest/googletest +OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex} + +============================================================ +Notices for file(s): +/bin/hat +------------------------------------------------------------ +The Original Code is HAT. The Initial Developer of the +Original Code is Bill Foote, with contributions from others +at JavaSoft/Sun. Portions created by Bill Foote and others +at Javasoft/Sun are Copyright (C) 1997-2004. All Rights Reserved. + +SUN PUBLIC LICENSE Version 1.0 + +1. Definitions. + + 1.0.1. "Commercial Use" means distribution or otherwise making the + Covered Code available to a third party. + + 1.1. "Contributor" means each entity that creates or contributes to + the creation of Modifications. + + 1.2. "Contributor Version" means the combination of the Original Code, + prior Modifications used by a Contributor, and the Modifications made + by that particular Contributor. + + 1.3. "Covered Code" means the Original Code or Modifications or the + combination of the Original Code and Modifications, in each case + including portions thereof and corresponding documentation released + with the source code. + + 1.4. "Electronic Distribution Mechanism" means a mechanism generally + accepted in the software development community for the electronic + transfer of data. + + 1.5. "Executable" means Covered Code in any form other than Source + Code. + + 1.6. "Initial Developer" means the individual or entity identified as + the Initial Developer in the Source Code notice required by Exhibit A. + + 1.7. "Larger Work" means a work which combines Covered Code or + portions thereof with code not governed by the terms of this License. + + 1.8. "License" means this document. + + 1.8.1. "Licensable" means having the right to grant, to the maximum + extent possible, whether at the time of the initial grant or + subsequently acquired, any and all of the rights conveyed herein. + + 1.9. "Modifications" means any addition to or deletion from the + substance or structure of either the Original Code or any previous + Modifications. When Covered Code is released as a series of files, a + Modification is: + + A. Any addition to or deletion from the contents of a file containing + Original Code or previous Modifications. + + B. Any new file that contains any part of the Original Code or + previous Modifications. + + 1.10. "Original Code" means Source Code of computer software code + which is described in the Source Code notice required by Exhibit A as + Original Code, and which, at the time of its release under this + License is not already Covered Code governed by this License. + + 1.10.1. "Patent Claims" means any patent claim(s), now owned or + hereafter acquired, including without limitation, method, process, and + apparatus claims, in any patent Licensable by grantor. + + 1.11. "Source Code" means the preferred form of the Covered Code for + making modifications to it, including all modules it contains, plus + any associated documentation, interface definition files, scripts used + to control compilation and installation of an Executable, or source + code differential comparisons against either the Original Code or + another well known, available Covered Code of the Contributor's + choice. The Source Code can be in a compressed or archival form, + provided the appropriate decompression or de-archiving software is + widely available for no charge. + + 1.12. "You" (or "Your") means an individual or a legal entity + exercising rights under, and complying with all of the terms of, this + License or a future version of this License issued under Section 6.1. + For legal entities, "You" includes any entity which controls, is + controlled by, or is under common control with You. For purposes of + this definition, "control" means (a) the power, direct or indirect, to + cause the direction or management of such entity, whether by contract + or otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. + +2. Source Code License. + +2.1 The Initial Developer Grant. + + The Initial Developer hereby grants You a world-wide, royalty-free, + non-exclusive license, subject to third party intellectual property + claims: + + (a) under intellectual property rights (other than patent or + trademark) Licensable by Initial Developer to use, reproduce, modify, + display, perform, sublicense and distribute the Original Code (or + portions thereof) with or without Modifications, and/or as part of a + Larger Work; and + + (b) under Patent Claims infringed by the making, using or selling of + Original Code, to make, have made, use, practice, sell, and offer for + sale, and/or otherwise dispose of the Original Code (or portions + thereof). + + (c) the licenses granted in this Section 2.1(a) and (b) are effective + on the date Initial Developer first distributes Original Code under + the terms of this License. + + (d) Notwithstanding Section 2.1(b) above, no patent license is + granted: 1) for code that You delete from the Original Code; 2) + separate from the Original Code; or 3) for infringements caused by: + i) the modification of the Original Code or ii) the combination of the + Original Code with other software or devices. + +2.2. Contributor Grant. + + Subject to third party intellectual property claims, each Contributor + hereby grants You a world-wide, royalty-free, non-exclusive license + + (a) under intellectual property rights (other than patent or + trademark) Licensable by Contributor, to use, reproduce, modify, + display, perform, sublicense and distribute the Modifications created + by such Contributor (or portions thereof) either on an unmodified + basis, with other Modifications, as Covered Code and/or as part of a + Larger Work; and + + (b) under Patent Claims infringed by the making, using, or selling of + Modifications made by that Contributor either alone and/or in + combination with its Contributor Version (or portions of such + combination), to make, use, sell, offer for sale, have made, and/or + otherwise dispose of: 1) Modifications made by that Contributor (or + portions thereof); and 2) the combination of Modifications made by + that Contributor with its Contributor Version (or portions of such + combination). + + (c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective + on the date Contributor first makes Commercial Use of the Covered + Code. + + (d) notwithstanding Section 2.2(b) above, no patent license is + granted: 1) for any code that Contributor has deleted from the + Contributor Version; 2) separate from the Contributor Version; 3) for + infringements caused by: i) third party modifications of Contributor + Version or ii) the combination of Modifications made by that + Contributor with other software (except as part of the Contributor + Version) or other devices; or 4) under Patent Claims infringed by + Covered Code in the absence of Modifications made by that Contributor. + +3. Distribution Obligations. + +3.1. Application of License. + + The Modifications which You create or to which You contribute are + governed by the terms of this License, including without limitation + Section 2.2. The Source Code version of Covered Code may be + distributed only under the terms of this License or a future version + of this License released under Section 6.1, and You must include a + copy of this License with every copy of the Source Code You + distribute. You may not offer or impose any terms on any Source Code + version that alters or restricts the applicable version of this + License or the recipients' rights hereunder. However, You may include + an additional document offering the additional rights described in + Section 3.5. + +3.2. Availability of Source Code. + + Any Modification which You create or to which You contribute must be + made available in Source Code form under the terms of this License + either on the same media as an Executable version or via an accepted + Electronic Distribution Mechanism to anyone to whom you made an + Executable version available; and if made available via Electronic + Distribution Mechanism, must remain available for at least twelve (12) + months after the date it initially became available, or at least six + (6) months after a subsequent version of that particular Modification + has been made available to such recipients. You are responsible for + ensuring that the Source Code version remains available even if the + Electronic Distribution Mechanism is maintained by a third party. + +3.3. Description of Modifications. + + You must cause all Covered Code to which You contribute to contain a + file documenting the changes You made to create that Covered Code and + the date of any change. You must include a prominent statement that + the Modification is derived, directly or indirectly, from Original + Code provided by the Initial Developer and including the name of the + Initial Developer in (a) the Source Code, and (b) in any notice in an + Executable version or related documentation in which You describe the + origin or ownership of the Covered Code. + +3.4. Intellectual Property Matters. + + (a) Third Party Claims. + + If Contributor has knowledge that a license under a third party's + intellectual property rights is required to exercise the rights + granted by such Contributor under Sections 2.1 or 2.2, Contributor + must include a text file with the Source Code distribution titled + "LEGAL'' which describes the claim and the party making the claim in + sufficient detail that a recipient will know whom to contact. If + Contributor obtains such knowledge after the Modification is made + available as described in Section 3.2, Contributor shall promptly + modify the LEGAL file in all copies Contributor makes available + thereafter and shall take other steps (such as notifying appropriate + mailing lists or newsgroups) reasonably calculated to inform those who + received the Covered Code that new knowledge has been obtained. + + (b) Contributor APIs. + + If Contributor's Modifications include an application programming + interface ("API") and Contributor has knowledge of patent licenses + which are reasonably necessary to implement that API, Contributor must + also include this information in the LEGAL file. + + (c) Representations. + + Contributor represents that, except as disclosed pursuant to Section + 3.4(a) above, Contributor believes that Contributor's Modifications + are Contributor's original creation(s) and/or Contributor has + sufficient rights to grant the rights conveyed by this License. + +3.5. Required Notices. + + You must duplicate the notice in Exhibit A in each file of the Source + Code. If it is not possible to put such notice in a particular Source + Code file due to its structure, then You must include such notice in a + location (such as a relevant directory) where a user would be likely + to look for such a notice. If You created one or more Modification(s) + You may add your name as a Contributor to the notice described in + Exhibit A. You must also duplicate this License in any documentation + for the Source Code where You describe recipients' rights or ownership + rights relating to Covered Code. You may choose to offer, and to + charge a fee for, warranty, support, indemnity or liability + obligations to one or more recipients of Covered Code. However, You + may do so only on Your own behalf, and not on behalf of the Initial + Developer or any Contributor. You must make it absolutely clear than + any such warranty, support, indemnity or liability obligation is + offered by You alone, and You hereby agree to indemnify the Initial + Developer and every Contributor for any liability incurred by the + Initial Developer or such Contributor as a result of warranty, + support, indemnity or liability terms You offer. + +3.6. Distribution of Executable Versions. + + You may distribute Covered Code in Executable form only if the + requirements of Section 3.1-3.5 have been met for that Covered Code, + and if You include a notice stating that the Source Code version of + the Covered Code is available under the terms of this License, + including a description of how and where You have fulfilled the + obligations of Section 3.2. The notice must be conspicuously included + in any notice in an Executable version, related documentation or + collateral in which You describe recipients' rights relating to the + Covered Code. You may distribute the Executable version of Covered + Code or ownership rights under a license of Your choice, which may + contain terms different from this License, provided that You are in + compliance with the terms of this License and that the license for the + Executable version does not attempt to limit or alter the recipient's + rights in the Source Code version from the rights set forth in this + License. If You distribute the Executable version under a different + license You must make it absolutely clear that any terms which differ + from this License are offered by You alone, not by the Initial + Developer or any Contributor. You hereby agree to indemnify the + Initial Developer and every Contributor for any liability incurred by + the Initial Developer or such Contributor as a result of any such + terms You offer. + +3.7. Larger Works. + + You may create a Larger Work by combining Covered Code with other code + not governed by the terms of this License and distribute the Larger + Work as a single product. In such a case, You must make sure the + requirements of this License are fulfilled for the Covered Code. + +4. Inability to Comply Due to Statute or Regulation. + + If it is impossible for You to comply with any of the terms of this + License with respect to some or all of the Covered Code due to + statute, judicial order, or regulation then You must: (a) comply with + the terms of this License to the maximum extent possible; and (b) + describe the limitations and the code they affect. Such description + must be included in the LEGAL file described in Section 3.4 and must + be included with all distributions of the Source Code. Except to the + extent prohibited by statute or regulation, such description must be + sufficiently detailed for a recipient of ordinary skill to be able to + understand it. + +5. Application of this License. + + This License applies to code to which the Initial Developer has + attached the notice in Exhibit A and to related Covered Code. + +6. Versions of the License. + +6.1. New Versions. + + Sun Microsystems, Inc. ("Sun") may publish revised and/or new versions + of the License from time to time. Each version will be given a + distinguishing version number. + +6.2. Effect of New Versions. + + Once Covered Code has been published under a particular version of the + License, You may always continue to use it under the terms of that + version. You may also choose to use such Covered Code under the terms + of any subsequent version of the License published by Sun. No one + other than Sun has the right to modify the terms applicable to Covered + Code created under this License. + +6.3. Derivative Works. + + If You create or use a modified version of this License (which you may + only do in order to apply it to code which is not already Covered Code + governed by this License), You must: (a) rename Your license so that + the phrases "Sun," "Sun Public License," or "SPL" or any confusingly + similar phrase do not appear in your license (except to note that your + license differs from this License) and (b) otherwise make it clear + that Your version of the license contains terms which differ from the + Sun Public License. (Filling in the name of the Initial Developer, + Original Code or Contributor in the notice described in Exhibit A + shall not of themselves be deemed to be modifications of this + License.) + +7. DISCLAIMER OF WARRANTY. + + COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS'' BASIS, + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF + DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. + THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE + IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, + YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE + COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER + OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF + ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + +8. TERMINATION. + + 8.1. This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to cure + such breach within 30 days of becoming aware of the breach. All + sublicenses to the Covered Code which are properly granted shall + survive any termination of this License. Provisions which, by their + nature, must remain in effect beyond the termination of this License + shall survive. + + 8.2. If You initiate litigation by asserting a patent infringement + claim (excluding declaratory judgment actions) against Initial Developer + or a Contributor (the Initial Developer or Contributor against whom + You file such action is referred to as "Participant") alleging that: + + (a) such Participant's Contributor Version directly or indirectly + infringes any patent, then any and all rights granted by such + Participant to You under Sections 2.1 and/or 2.2 of this License + shall, upon 60 days notice from Participant terminate prospectively, + unless if within 60 days after receipt of notice You either: (i) + agree in writing to pay Participant a mutually agreeable reasonable + royalty for Your past and future use of Modifications made by such + Participant, or (ii) withdraw Your litigation claim with respect to + the Contributor Version against such Participant. If within 60 days + of notice, a reasonable royalty and payment arrangement are not + mutually agreed upon in writing by the parties or the litigation claim + is not withdrawn, the rights granted by Participant to You under + Sections 2.1 and/or 2.2 automatically terminate at the expiration of + the 60 day notice period specified above. + + (b) any software, hardware, or device, other than such Participant's + Contributor Version, directly or indirectly infringes any patent, then + any rights granted to You by such Participant under Sections 2.1(b) + and 2.2(b) are revoked effective as of the date You first made, used, + sold, distributed, or had made, Modifications made by that + Participant. + + 8.3. If You assert a patent infringement claim against Participant + alleging that such Participant's Contributor Version directly or + indirectly infringes any patent where such claim is resolved (such as + by license or settlement) prior to the initiation of patent + infringement litigation, then the reasonable value of the licenses + granted by such Participant under Sections 2.1 or 2.2 shall be taken + into account in determining the amount or value of any payment or + license. + + 8.4. In the event of termination under Sections 8.1 or 8.2 above, all + end user license agreements (excluding distributors and resellers) + which have been validly granted by You or any distributor hereunder + prior to termination shall survive termination. + +9. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT + (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL + DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, + OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR + ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY + CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, + WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER + COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN + INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY + RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW + PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE + EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO + THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + +10. U.S. GOVERNMENT END USERS. + + The Covered Code is a "commercial item," as that term is defined in 48 + C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" + and "commercial computer software documentation," as such terms are + used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. + 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all + U.S. Government End Users acquire Covered Code with only those rights + set forth herein. + +11. MISCELLANEOUS. + + This License represents the complete agreement concerning subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. This License shall be governed by + California law provisions (except to the extent applicable law, if + any, provides otherwise), excluding its conflict-of-law provisions. + With respect to disputes in which at least one party is a citizen of, + or an entity chartered or registered to do business in the United + States of America, any litigation relating to this License shall be + subject to the jurisdiction of the Federal Courts of the Northern + District of California, with venue lying in Santa Clara County, + California, with the losing party responsible for costs, including + without limitation, court costs and reasonable attorneys' fees and + expenses. The application of the United Nations Convention on + Contracts for the International Sale of Goods is expressly excluded. + Any law or regulation which provides that the language of a contract + shall be construed against the drafter shall not apply to this + License. + +12. RESPONSIBILITY FOR CLAIMS. + + As between Initial Developer and the Contributors, each party is + responsible for claims and damages arising, directly or indirectly, + out of its utilization of rights under this License and You agree to + work with Initial Developer and Contributors to distribute such + responsibility on an equitable basis. Nothing herein is intended or + shall be deemed to constitute any admission of liability. + +13. MULTIPLE-LICENSED CODE. + + Initial Developer may designate portions of the Covered Code as + "Multiple-Licensed". "Multiple-Licensed" means that the Initial + Developer permits you to utilize portions of the Covered Code under + Your choice of the alternative licenses, if any, specified by the + Initial Developer in the file described in Exhibit A. + +Exhibit A -Sun Public License Notice. + + The contents of this file are subject to the Sun Public License + Version 1.0 (the "License"); you may not use this file except in + compliance with the License. A copy of the License is available at + http://www.sun.com/ + + The Original Code is _________________. The Initial Developer of the + Original Code is ___________. Portions created by ______ are Copyright + (C)_________. All Rights Reserved. + + Contributor(s): ______________________________________. + + Alternatively, the contents of this file may be used under the terms + of the _____ license (the "[___] License"), in which case the + provisions of [______] License are applicable instead of those above. + If you wish to allow use of your version of this file only under the + terms of the [____] License and not to allow others to use your + version of this file under the SPL, indicate your decision by deleting + the provisions above and replace them with the notice and other + provisions required by the [___] License. If you do not delete the + provisions above, a recipient may use your version of this file under + either the SPL or the [___] License." + + [NOTE: The text of this Exhibit A may differ slightly from the text of + the notices in the Source Code files of the Original Code. You should + use the text of this Exhibit A rather than the text found in the + Original Code Source Code for Your Modifications.] + +============================================================ +Notices for file(s): +/bin/mksnapshot +------------------------------------------------------------ +Copyright (c) 1994-2006 Sun Microsystems Inc. +All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +- Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. + +- Redistribution in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +- Neither the name of Sun Microsystems or the names of contributors may +be used to endorse or promote products derived from this software without +specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +The original source code covered by the above license above has been +modified significantly by Google Inc. +Copyright 2006-2008 the V8 project authors. All rights reserved. + +============================================================ +Notices for file(s): +/framework/commons-codec-1.4.jar +/framework/commons-logging-1.1.1.jar +/framework/httpclient-4.1.1.jar +/framework/httpcore-4.1.jar +/framework/httpmime-4.1.1.jar +------------------------------------------------------------ +Apache HttpComponents Client +Copyright 1999-2011 The Apache Software Foundation + +This product includes software developed by +The Apache Software Foundation (http://www.apache.org/). + +This project contains annotations derived from JCIP-ANNOTATIONS +Copyright (c) 2005 Brian Goetz and Tim Peierls. See http://www.jcip.net + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + +This project contains annotations derived from JCIP-ANNOTATIONS +Copyright (c) 2005 Brian Goetz and Tim Peierls. +See http://www.jcip.net and the Creative Commons Attribution License +(http://creativecommons.org/licenses/by/2.5) + + +============================================================ +Notices for file(s): +/framework/jsr305lib.jar +------------------------------------------------------------ +Copyright (c) 2007-2009, JSR305 expert group +All rights reserved. + +http://www.opensource.org/licenses/bsd-license.php + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + * Neither the name of the JSR305 expert group nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +============================================================ +Notices for file(s): +/lib/libpng.a +------------------------------------------------------------ + +This copy of the libpng notices is provided for your convenience. In case of +any discrepancy between this copy and the notices in the file png.h that is +included in the libpng distribution, the latter shall prevail. + +COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: + +If you modify libpng you may insert additional notices immediately following +this sentence. + +This code is released under the libpng license. + +libpng versions 1.2.6, August 15, 2004, through 1.2.46, July 9, 2011, are +Copyright (c) 2004, 2006-2009 Glenn Randers-Pehrson, and are +distributed according to the same disclaimer and license as libpng-1.2.5 +with the following individual added to the list of Contributing Authors + + Cosmin Truta + +libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are +Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are +distributed according to the same disclaimer and license as libpng-1.0.6 +with the following individuals added to the list of Contributing Authors + + Simon-Pierre Cadieux + Eric S. Raymond + Gilles Vollant + +and with the following additions to the disclaimer: + + There is no warranty against interference with your enjoyment of the + library or against infringement. There is no warranty that our + efforts or the library will fulfill any of your particular purposes + or needs. This library is provided with all faults, and the entire + risk of satisfactory quality, performance, accuracy, and effort is with + the user. + +libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are +Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are +distributed according to the same disclaimer and license as libpng-0.96, +with the following individuals added to the list of Contributing Authors: + + Tom Lane + Glenn Randers-Pehrson + Willem van Schaik + +libpng versions 0.89, June 1996, through 0.96, May 1997, are +Copyright (c) 1996, 1997 Andreas Dilger +Distributed according to the same disclaimer and license as libpng-0.88, +with the following individuals added to the list of Contributing Authors: + + John Bowler + Kevin Bracey + Sam Bushell + Magnus Holmgren + Greg Roelofs + Tom Tanner + +libpng versions 0.5, May 1995, through 0.88, January 1996, are +Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. + +For the purposes of this copyright and license, "Contributing Authors" +is defined as the following set of individuals: + + Andreas Dilger + Dave Martindale + Guy Eric Schalnat + Paul Schmidt + Tim Wegner + +The PNG Reference Library is supplied "AS IS". The Contributing Authors +and Group 42, Inc. disclaim all warranties, expressed or implied, +including, without limitation, the warranties of merchantability and of +fitness for any purpose. The Contributing Authors and Group 42, Inc. +assume no liability for direct, indirect, incidental, special, exemplary, +or consequential damages, which may result from the use of the PNG +Reference Library, even if advised of the possibility of such damage. + +Permission is hereby granted to use, copy, modify, and distribute this +source code, or portions hereof, for any purpose, without fee, subject +to the following restrictions: + +1. The origin of this source code must not be misrepresented. + +2. Altered versions must be plainly marked as such and must not + be misrepresented as being the original source. + +3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + +The Contributing Authors and Group 42, Inc. specifically permit, without +fee, and encourage the use of this source code as a component to +supporting the PNG file format in commercial products. If you use this +source code in a product, acknowledgment is not required but would be +appreciated. + + +A "png_get_copyright" function is available, for convenient use in "about" +boxes and the like: + + printf("%s",png_get_copyright(NULL)); + +Also, the PNG logo (in PNG format, of course) is supplied in the +files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31). + +Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a +certification mark of the Open Source Initiative. + +Glenn Randers-Pehrson +glennrp at users.sourceforge.net +July 9, 2011 + +============================================================ +Notices for file(s): +/framework/antlr-runtime.jar +------------------------------------------------------------ +[The "BSD license"] +Copyright (c) 201 Terence Parr +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +============================================================ +Notices for file(s): +/framework/swing-worker-1.1.jar +------------------------------------------------------------ +Copyright (c) 2005 Sun Microsystems, Inc., 4150 Network Circle, Santa +Clara, California 95054, U.S.A. All rights reserved. Use is subject +to license terms below. Sun, Sun Microsystems and the Sun logo are +trademarks or registered trademarks of Sun Microsystems, Inc. in the +U.S. and other countries. + +Notice: This product is covered by U.S. export control laws and may be +subject to the export or import laws in other countries. These laws may +restrict the fields of use for this software and may require you to +secure government authorization. + + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +============================================================ +Notices for file(s): +/framework/junit.jar +------------------------------------------------------------ +Common Public License - v 1.0 + + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + + +1. DEFINITIONS + +"Contribution" means: + +a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and +b) in the case of each subsequent Contributor: +i) changes to the Program, and +ii) additions to the Program; +where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. + +"Contributor" means any person or entity that distributes the Program. + + +"Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. + + +"Program" means the Contributions distributed in accordance with this Agreement. + + +"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. + + +2. GRANT OF RIGHTS + +a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. +b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. +c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. +d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. +3. REQUIREMENTS + +A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: + +a) it complies with the terms and conditions of this Agreement; and +b) its license agreement: +i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; +ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; +iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and +iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. +When the Program is made available in source code form: + +a) it must be made available under this Agreement; and +b) a copy of this Agreement must be included with each copy of the Program. + +Contributors may not remove or alter any copyright notices contained within the Program. + + +Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. + + +4. COMMERCIAL DISTRIBUTION + +Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. + + +For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. + + +5. NO WARRANTY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. + + +6. DISCLAIMER OF LIABILITY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + + +If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. + + +All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. + + +Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. + + +This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. +============================================================ +Notices for file(s): +/lib/libclangAnalysis.a +------------------------------------------------------------ +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2007-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- + + +============================================================ +Notices for file(s): +/framework/guavalib.jar +------------------------------------------------------------ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + diff --git a/resources/platform-tools/android/darwin/adb b/resources/platform-tools/android/darwin/adb new file mode 100644 index 0000000000000000000000000000000000000000..3b154cb3a991d65eaa364595721a24b9bf5bee7c GIT binary patch literal 1270440 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⪻lxfml66+`1~SN=KzWy$x)Q&!`#A&xdQ`h0&kdk z3A*p8nc+5FfYKm*N(XavZD}u5)(%beW^Y@Ob6JAa#gMbcz!ATslk3~g4EtW};xTZAZ6ViB=weB8HsH*=g@SX(!hBi%8e7|Rn zB#CqlM$sJHq~TuP?5 zL_P*ISgQOAH$Zx-A=nV;DO9g0r1sX+O2W%N)m1FHq`X4p&k!Y%3-OVz=o-==nw}5F z{?n{M!}PpCa9WcMt>>M>qc?K&6vsH^pbbEi)Xy(q0_(Xdq=N*1VxB}KIQ3>J z!Fc+jt}>Z05Li`Ll1Uym%Ns8}k2@~{x!bG2AWFnDFBnSaDWWuKYBR1NQ2!E3 zF7@vaxbh0zLim{)xiva)I`sXW4?*9qD1DCt=-7ok4Gmh?OB39-{4 zW>p}qet1m$tRES;wAP<#T&67>kr4RS$ej%v|I)}!(({t|cYqoMdf=GB$4GHX^}yRv ze{PT0H=`+M$a6*m8P)5nY(d*U&5k#E7?J5&X30AG2~03g2R6OIn#Trlc@jkywXCD# zfo8@pvuq-f!C$^c>2@G5*}_pOZ zEi?H6*$`v?Ud#ng;=XTqh!;VYo;Ly8zwnNZlk9zLPsq(#W=SHQA(Xcttl-QN_1wl7 zm86eP(vcdtl#f2ZBfY^+d_?+3yS??YPstmzjb0#*@?I-=-c->Poa#5shlsq#&6EIJB)1UMh8S$`xJiN~1HFtusdreLxtrz27oXDJ+6k-(t-T{ZNhq(u!Uu~Z}!fZv{= zz&gvp8F?p4?@|5x&O#8a`uBd|Fw3^%hEc-5h^)I9xf5V`r%ID*zt*+D&F&@fHS!^H z0{v5M@ruf%+yB3lBCKzV)cunc>;k^o|CI z#ZG!eiMYbEwPee{QEFuIOzkmcYW5uUbl_1KzX3ARaVqGrlA@T`VArQnu-^Lj4{#?+ z1VmiQf=3Bd zOTuDA{i{F~IyeW=GXRRL1a|8W*>0Hc*wbvso_6Rsc936=gyrI>J*oF;tYdhUU#{ox zLN=7Kx~ctvF^g}rS@a~P#W>wz8m;Lj^Ecq#PgId_y*u0}|H@2PykE zr5k3PJJI_45EbXXi{sFs;6OrhU<^*s1)09I?okiDpvEtnKp_15hiHek*hlob8J2*972K2zr?^4L zEP9{9NMxl}ke!uCU~CIdwi>bo4IVs1CaSD2a05|rN8pB;LG`e)9n>d}bHK*9W0i*m zVoo%-;>QErV#PM5$gjiz~Pjo zY@&yB!3)l;+r5RR$GL_X*h{DU7%=OB%1Afb#2B;?Ge5EYi)4Y<8%0&f?c4eArbEjt zGVEK2UckkvFKHv%c2sA74xPhGtdEd?d6^b=9LNqddz);2582_c;$ze^i&nF@!=1q- z)<6bk+3F=|wuFD-OS?%tF8=g%(Tdvp+YVeX;^!VG@u_=F;}ar+Q!HU2^G$p$(;45D zKUVPY3y}6}Xo>KtBo(jDS`+xdfL9%0AmD;q$d+*olU3Ph{12*zcPAM6Yq{tomf%}w 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 !+A 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

RbLu_7B1B# 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%0DJk@JaY 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 not$C|7{T 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

e-OEMIC((vu;TtvL_(u(MunJ; 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 S|MT^)um17+A4f0n@BaXbVsQxo literal 0 HcmV?d00001 diff --git a/resources/platform-tools/android/linux/NOTICE.txt b/resources/platform-tools/android/linux/NOTICE.txt new file mode 100644 index 0000000000..37a04c74a3 --- /dev/null +++ b/resources/platform-tools/android/linux/NOTICE.txt @@ -0,0 +1,13901 @@ +Notices for files contained in the tools directory: +============================================================ +Notices for file(s): +/lib/libselinux.a +------------------------------------------------------------ +This library (libselinux) is public domain software, i.e. not copyrighted. + +Warranty Exclusion +------------------ +You agree that this software is a +non-commercially developed program that may contain "bugs" (as that +term is used in the industry) and that it may not function as intended. +The software is licensed "as is". NSA makes no, and hereby expressly +disclaims all, warranties, express, implied, statutory, or otherwise +with respect to the software, including noninfringement and the implied +warranties of merchantability and fitness for a particular purpose. + +Limitation of Liability +----------------------- +In no event will NSA be liable for any damages, including loss of data, +lost profits, cost of cover, or other special, incidental, +consequential, direct or indirect damages arising from the software or +the use thereof, however caused and on any theory of liability. This +limitation will apply even if NSA has been advised of the possibility +of such damage. You acknowledge that this is a reasonable allocation of +risk. + +============================================================ +Notices for file(s): +/framework/liblzf.jar +------------------------------------------------------------ +Copyright (c) 2000-2009 Marc Alexander Lehmann + +Redistribution and use in source and binary forms, with or without modifica- +tion, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER- +CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPE- +CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTH- +ERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. + +Alternatively, the following files carry an additional notice that +explicitly allows relicensing under the GPLv2: lzf.c lzf.h lzfP.h lzf_c.c +lzf_d.c + + +============================================================ +Notices for file(s): +/usr/icu/icudt51l.dat +------------------------------------------------------------ +ICU License - ICU 1.8.1 and later + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1995-2008 International Business Machines Corporation and others + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, provided that the above copyright notice(s) and this permission notice appear in all copies of the Software and that both the above copyright notice(s) and this permission notice appear in supporting documentation. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. + +All trademarks and registered trademarks mentioned herein are the property of their respective owners. + +============================================================================== + +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + + Unicode Data Files include all data files under the directories +http://www.unicode.org/Public/, http://www.unicode.org/reports/, and +http://www.unicode.org/cldr/data/ . Unicode Software includes any source code +published in the Unicode Standard or under the directories +http://www.unicode.org/Public/, http://www.unicode.org/reports/, and +http://www.unicode.org/cldr/data/. + + NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES +("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND +AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU +DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES +OR SOFTWARE. + + COPYRIGHT AND PERMISSION NOTICE + + Copyright ¬© 1991-2007 Unicode, Inc. All rights reserved. Distributed under +the Terms of Use in http://www.unicode.org/copyright.html. + + Permission is hereby granted, free of charge, to any person obtaining a copy +of the Unicode data files and any associated documentation (the "Data Files") or +Unicode software and any associated documentation (the "Software") to deal in +the Data Files or Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files or +Software are furnished to do so, provided that (a) the above copyright notice(s) +and this permission notice appear with all copies of the Data Files or Software, +(b) both the above copyright notice(s) and this permission notice appear in +associated documentation, and (c) there is clear notice in each modified Data +File or in the Software as well as in the documentation associated with the Data +File(s) or Software that the data or software has been modified. + + THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD +PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING +OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR +SOFTWARE. + + Except as contained in this notice, the name of a copyright holder shall not +be used in advertising or otherwise to promote the sale, use or other dealings +in these Data Files or Software without prior written authorization of the +copyright holder. + +=============================================================================== + + +/* This ICU code derived from: */ +/* +punycode.c 0.4.0 (2001-Nov-17-Sat) +http://www.cs.berkeley.edu/~amc/idn/ +Adam M. Costello +http://www.nicemice.net/amc/ + +Disclaimer and license + +Regarding this entire document or any portion of it (including +the pseudocode and C code), the author makes no guarantees and +is not responsible for any damage resulting from its use. The +author grants irrevocable permission to anyone to use, modify, +and distribute it in any way that does not diminish the rights +of anyone else to use, modify, and distribute it, provided that +redistributed derivative works do not contain misleading author or +version information. Derivative works need not be licensed under +similar terms. +*/ + + +/* +** This file is in the public domain, so clarified as of +** 2006-07-17 by Arthur David Olson. +*/ + +============================================================ +Notices for file(s): +/framework/jcommon-1.0.12.jar +/framework/jfreechart-1.0.9-swt.jar +/framework/jfreechart-1.0.9.jar +------------------------------------------------------------ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + + + +============================================================ +Notices for file(s): +/lib/third_party_icu_icudata_host_gyp.a +/lib/third_party_icu_icui18n_host_gyp.a +/lib/third_party_icu_icuuc_host_gyp.a +/lib/third_party_protobuf_protobuf_full_do_not_use_host_gyp.a +/lib/v8_tools_gyp_v8_base_arm_host_gyp.a +/lib/v8_tools_gyp_v8_nosnapshot_arm_host_gyp.a +/obj/GYP/shared_intermediates/mksnapshot.arm +/obj/GYP/shared_intermediates/protoc +------------------------------------------------------------ +// Copyright (c) 2013 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +/**************************************************************** + * + * The author of this software is David M. Gay. + * + * Copyright (c) 1991, 2000, 2001 by Lucent Technologies. + * + * Permission to use, copy, modify, and distribute this software for any + * purpose without fee is hereby granted, provided that this entire notice + * is included in all copies of any software which is or includes a copy + * or modification of this software and in all copies of the supporting + * documentation for such software. + * + * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED + * WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY + * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY + * OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. + * + ***************************************************************/ + +/* Copyright (c) 2008-2009, Google Inc. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Neither the name of Google Inc. nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * --- + * Author: Kostya Serebryany + */ + +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is the Netscape Portable Runtime (NSPR). + * + * The Initial Developer of the Original Code is + * Netscape Communications Corporation. + * Portions created by the Initial Developer are Copyright (C) 1998-2000 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * Alternatively, the contents of this file may be used under the terms of + * either the GNU General Public License Version 2 or later (the "GPL"), or + * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), + * in which case the provisions of the GPL or the LGPL are applicable instead + * of those above. If you wish to allow use of your version of this file only + * under the terms of either the GPL or the LGPL, and not to allow others to + * use your version of this file under the terms of the MPL, indicate your + * decision by deleting the provisions above and replace them with the notice + * and other provisions required by the GPL or the LGPL. If you do not delete + * the provisions above, a recipient may use your version of this file under + * the terms of any one of the MPL, the GPL or the LGPL. + * + * ***** END LICENSE BLOCK ***** */ + +// Copyright (c) 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + Notice that the following BSD-style license applies to the Valgrind header + files used by Chromium (valgrind.h and memcheck.h). However, the rest of + Valgrind is licensed under the terms of the GNU General Public License, + version 2, unless otherwise indicated. + + ---------------------------------------------------------------- + + Copyright (C) 2000-2008 Julian Seward. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. The origin of this software must not be misrepresented; you must + not claim that you wrote the original software. If you use this + software in a product, an acknowledgment in the product + documentation would be appreciated but is not required. + + 3. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + + 4. The name of the author may not be used to endorse or promote + products derived from this software without specific prior written + permission. + + THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS + OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE + GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + Copyright (c) 2007 Red Hat, inc + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation files + (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, + publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +Copyright 2003-2005 Colin Percival +All rights reserved + +Redistribution and use in source and binary forms, with or without +modification, are permitted providing that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2007-2009 Google Inc. + Copyright 2007-2009 WebDriver committers + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +Copyright (C) 2009 by Tung Mac. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is the Netscape security libraries. + * + * The Initial Developer of the Original Code is + * Netscape Communications Corporation. + * Portions created by the Initial Developer are Copyright (C) 2000 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * Alternatively, the contents of this file may be used under the terms of + * either the GNU General Public License Version 2 or later (the "GPL"), or + * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), + * in which case the provisions of the GPL or the LGPL are applicable instead + * of those above. If you wish to allow use of your version of this file only + * under the terms of either the GPL or the LGPL, and not to allow others to + * use your version of this file under the terms of the MPL, indicate your + * decision by deleting the provisions above and replace them with the notice + * and other provisions required by the GPL or the LGPL. If you do not delete + * the provisions above, a recipient may use your version of this file under + * the terms of any one of the MPL, the GPL or the LGPL. + * + * ***** END LICENSE BLOCK ***** */ + +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is the Netscape security libraries. + * + * The Initial Developer of the Original Code is + * Netscape Communications Corporation. + * Portions created by the Initial Developer are Copyright (C) 1994-2000 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * Alternatively, the contents of this file may be used under the terms of + * either the GNU General Public License Version 2 or later (the "GPL"), or + * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), + * in which case the provisions of the GPL or the LGPL are applicable instead + * of those above. If you wish to allow use of your version of this file only + * under the terms of either the GPL or the LGPL, and not to allow others to + * use your version of this file under the terms of the MPL, indicate your + * decision by deleting the provisions above and replace them with the notice + * and other provisions required by the GPL or the LGPL. If you do not delete + * the provisions above, a recipient may use your version of this file under + * the terms of any one of the MPL, the GPL or the LGPL. + * + * ***** END LICENSE BLOCK ***** */ + +Copyright 2011, The Chromium Authors +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. + +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +/* +** Copyright (c) 2007-2010 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) 2008, Google Inc. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +(WebKit doesn't distribute an explicit license. This LICENSE is derived from +license text in the source.) + +Copyright (c) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, +2006, 2007 Alexander Kellett, Alexey Proskuryakov, Alex Mathews, Allan +Sandfeld Jensen, Alp Toker, Anders Carlsson, Andrew Wellington, Antti +Koivisto, Apple Inc., Arthur Langereis, Baron Schwartz, Bjoern Graf, +Brent Fulgham, Cameron Zwarich, Charles Samuels, Christian Dywan, +Collabora Ltd., Cyrus Patel, Daniel Molkentin, Dave Maclachlan, David +Smith, Dawit Alemayehu, Dirk Mueller, Dirk Schulze, Don Gibson, Enrico +Ros, Eric Seidel, Frederik Holljen, Frerich Raabe, Friedmann Kleint, +George Staikos, Google Inc., Graham Dennis, Harri Porten, Henry Mason, +Hiroyuki Ikezoe, Holger Hans Peter Freyther, IBM, James G. Speth, Jan +Alonzo, Jean-Loup Gailly, John Reis, Jonas Witt, Jon Shier, Jonas +Witt, Julien Chaffraix, Justin Haygood, Kevin Ollivier, Kevin Watters, +Kimmo Kinnunen, Kouhei Sutou, Krzysztof Kowalczyk, Lars Knoll, Luca +Bruno, Maks Orlovich, Malte Starostik, Mark Adler, Martin Jones, +Marvin Decker, Matt Lilek, Michael Emmel, Mitz Pettel, mozilla.org, +Netscape Communications Corporation, Nicholas Shanks, Nikolas +Zimmermann, Nokia, Oliver Hunt, Opened Hand, Paul Johnston, Peter +Kelly, Pioneer Research Center USA, Rich Moore, Rob Buis, Robin Dunn, +Ronald Tschalär, Samuel Weinig, Simon Hausmann, Staikos Computing +Services Inc., Stefan Schimanski, Symantec Corporation, The Dojo +Foundation, The Karbon Developers, Thomas Boyer, Tim Copperfield, +Tobias Anton, Torben Weis, Trolltech, University of Cambridge, Vaclav +Slavik, Waldo Bastian, Xan Lopez, Zack Rusin + +The terms and conditions vary from file to file, but are one of: + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the + distribution. + +*OR* + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the + distribution. +3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of + its contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + +OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + GNU LIBRARY GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1991 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the library GPL. It is + numbered 2 because it goes with version 2 of the ordinary GPL.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Library General Public License, applies to some +specially designated Free Software Foundation software, and to any +other libraries whose authors decide to use it. You can use it for +your libraries, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if +you distribute copies of the library, or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link a program with the library, you must provide +complete object files to the recipients so that they can relink them +with the library, after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + Our method of protecting your rights has two steps: (1) copyright +the library, and (2) offer you this license which gives you legal +permission to copy, distribute and/or modify the library. + + Also, for each distributor's protection, we want to make certain +that everyone understands that there is no warranty for this free +library. If the library is modified by someone else and passed on, we +want its recipients to know that what they have is not the original +version, so that any problems introduced by others will not reflect on +the original authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that companies distributing free +software will individually obtain patent licenses, thus in effect +transforming the program into proprietary software. To prevent this, +we have made it clear that any patent must be licensed for everyone's +free use or not licensed at all. + + Most GNU software, including some libraries, is covered by the ordinary +GNU General Public License, which was designed for utility programs. This +license, the GNU Library General Public License, applies to certain +designated libraries. This license is quite different from the ordinary +one; be sure to read it in full, and don't assume that anything in it is +the same as in the ordinary license. + + The reason we have a separate public license for some libraries is that +they blur the distinction we usually make between modifying or adding to a +program and simply using it. Linking a program with a library, without +changing the library, is in some sense simply using the library, and is +analogous to running a utility program or application program. However, in +a textual and legal sense, the linked executable is a combined work, a +derivative of the original library, and the ordinary General Public License +treats it as such. + + Because of this blurred distinction, using the ordinary General +Public License for libraries did not effectively promote software +sharing, because most developers did not use the libraries. We +concluded that weaker conditions might promote sharing better. + + However, unrestricted linking of non-free programs would deprive the +users of those programs of all benefit from the free status of the +libraries themselves. This Library General Public License is intended to +permit developers of non-free programs to use free libraries, while +preserving your freedom as a user of such programs to change the free +libraries that are incorporated in them. (We have not seen how to achieve +this as regards changes in header files, but we have achieved it as regards +changes in the actual functions of the Library.) The hope is that this +will lead to faster development of free libraries. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, while the latter only +works together with the library. + + Note that it is possible for a library to be covered by the ordinary +General Public License rather than by this special one. + + GNU LIBRARY GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library which +contains a notice placed by the copyright holder or other authorized +party saying it may be distributed under the terms of this Library +General Public License (also called "this License"). Each licensee is +addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also compile or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + c) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + d) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the source code distributed need not include anything that is normally +distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Library General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + +// Copyright (C) 2002-2013 The ANGLE Project Authors. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions +// are met: +// +// Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// +// Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following +// disclaimer in the documentation and/or other materials provided +// with the distribution. +// +// Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. +// Ltd., nor the names of their contributors may be used to endorse +// or promote products derived from this software without specific +// prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +// COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +Copyright (c) 2012, Manfred Moitzi + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Deutsche Übersetzung: + +Copyright (c) 2012, Manfred Moitzi + +Hiermit wird unentgeltlich, jeder Person, die eine Kopie der Software +und der zugehörigen Dokumentationen (die "Software") erhält, die +Erlaubnis erteilt, uneingeschränkt zu benutzen, inklusive und ohne +Ausnahme, dem Recht, sie zu verwenden, kopieren, ändern, fusionieren, +verlegen, verbreiten, unterlizenzieren und/oder zu verkaufen, und +Personen, die diese Software erhalten, diese Rechte zu geben, unter den +folgenden Bedingungen: + +Der obige Urheberrechtsvermerk und dieser Erlaubnisvermerk sind in allen +Kopien oder Teilkopien der Software beizulegen. + +DIE SOFTWARE WIRD OHNE JEDE AUSDRÜCKLICHE ODER IMPLIZIERTE GARANTIE +BEREITGESTELLT, EINSCHLIESSLICH DER GARANTIE ZUR BENUTZUNG FÜR DEN +VORGESEHENEN ODER EINEM BESTIMMTEN ZWECK SOWIE JEGLICHER +RECHTSVERLETZUNG, JEDOCH NICHT DARAUF BESCHRÄNKT. IN KEINEM FALL SIND +DIE AUTOREN ODER COPYRIGHTINHABER FÜR JEGLICHEN SCHADEN ODER SONSTIGE +ANSPRÜCHE HAFTBAR ZU MACHEN, OB INFOLGE DER ERFÜLLUNG EINES VERTRAGES, +EINES DELIKTES ODER ANDERS IM ZUSAMMENHANG MIT DER SOFTWARE ODER +SONSTIGER VERWENDUNG DER SOFTWARE ENTSTANDEN. + + +// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + MOZILLA PUBLIC LICENSE + Version 1.1 + + --------------- + +1. Definitions. + + 1.0.1. "Commercial Use" means distribution or otherwise making the + Covered Code available to a third party. + + 1.1. "Contributor" means each entity that creates or contributes to + the creation of Modifications. + + 1.2. "Contributor Version" means the combination of the Original + Code, prior Modifications used by a Contributor, and the Modifications + made by that particular Contributor. + + 1.3. "Covered Code" means the Original Code or Modifications or the + combination of the Original Code and Modifications, in each case + including portions thereof. + + 1.4. "Electronic Distribution Mechanism" means a mechanism generally + accepted in the software development community for the electronic + transfer of data. + + 1.5. "Executable" means Covered Code in any form other than Source + Code. + + 1.6. "Initial Developer" means the individual or entity identified + as the Initial Developer in the Source Code notice required by Exhibit + A. + + 1.7. "Larger Work" means a work which combines Covered Code or + portions thereof with code not governed by the terms of this License. + + 1.8. "License" means this document. + + 1.8.1. "Licensable" means having the right to grant, to the maximum + extent possible, whether at the time of the initial grant or + subsequently acquired, any and all of the rights conveyed herein. + + 1.9. "Modifications" means any addition to or deletion from the + substance or structure of either the Original Code or any previous + Modifications. When Covered Code is released as a series of files, a + Modification is: + A. Any addition to or deletion from the contents of a file + containing Original Code or previous Modifications. + + B. Any new file that contains any part of the Original Code or + previous Modifications. + + 1.10. "Original Code" means Source Code of computer software code + which is described in the Source Code notice required by Exhibit A as + Original Code, and which, at the time of its release under this + License is not already Covered Code governed by this License. + + 1.10.1. "Patent Claims" means any patent claim(s), now owned or + hereafter acquired, including without limitation, method, process, + and apparatus claims, in any patent Licensable by grantor. + + 1.11. "Source Code" means the preferred form of the Covered Code for + making modifications to it, including all modules it contains, plus + any associated interface definition files, scripts used to control + compilation and installation of an Executable, or source code + differential comparisons against either the Original Code or another + well known, available Covered Code of the Contributor's choice. The + Source Code can be in a compressed or archival form, provided the + appropriate decompression or de-archiving software is widely available + for no charge. + + 1.12. "You" (or "Your") means an individual or a legal entity + exercising rights under, and complying with all of the terms of, this + License or a future version of this License issued under Section 6.1. + For legal entities, "You" includes any entity which controls, is + controlled by, or is under common control with You. For purposes of + this definition, "control" means (a) the power, direct or indirect, + to cause the direction or management of such entity, whether by + contract or otherwise, or (b) ownership of more than fifty percent + (50%) of the outstanding shares or beneficial ownership of such + entity. + +2. Source Code License. + + 2.1. The Initial Developer Grant. + The Initial Developer hereby grants You a world-wide, royalty-free, + non-exclusive license, subject to third party intellectual property + claims: + (a) under intellectual property rights (other than patent or + trademark) Licensable by Initial Developer to use, reproduce, + modify, display, perform, sublicense and distribute the Original + Code (or portions thereof) with or without Modifications, and/or + as part of a Larger Work; and + + (b) under Patents Claims infringed by the making, using or + selling of Original Code, to make, have made, use, practice, + sell, and offer for sale, and/or otherwise dispose of the + Original Code (or portions thereof). + + (c) the licenses granted in this Section 2.1(a) and (b) are + effective on the date Initial Developer first distributes + Original Code under the terms of this License. + + (d) Notwithstanding Section 2.1(b) above, no patent license is + granted: 1) for code that You delete from the Original Code; 2) + separate from the Original Code; or 3) for infringements caused + by: i) the modification of the Original Code or ii) the + combination of the Original Code with other software or devices. + + 2.2. Contributor Grant. + Subject to third party intellectual property claims, each Contributor + hereby grants You a world-wide, royalty-free, non-exclusive license + + (a) under intellectual property rights (other than patent or + trademark) Licensable by Contributor, to use, reproduce, modify, + display, perform, sublicense and distribute the Modifications + created by such Contributor (or portions thereof) either on an + unmodified basis, with other Modifications, as Covered Code + and/or as part of a Larger Work; and + + (b) under Patent Claims infringed by the making, using, or + selling of Modifications made by that Contributor either alone + and/or in combination with its Contributor Version (or portions + of such combination), to make, use, sell, offer for sale, have + made, and/or otherwise dispose of: 1) Modifications made by that + Contributor (or portions thereof); and 2) the combination of + Modifications made by that Contributor with its Contributor + Version (or portions of such combination). + + (c) the licenses granted in Sections 2.2(a) and 2.2(b) are + effective on the date Contributor first makes Commercial Use of + the Covered Code. + + (d) Notwithstanding Section 2.2(b) above, no patent license is + granted: 1) for any code that Contributor has deleted from the + Contributor Version; 2) separate from the Contributor Version; + 3) for infringements caused by: i) third party modifications of + Contributor Version or ii) the combination of Modifications made + by that Contributor with other software (except as part of the + Contributor Version) or other devices; or 4) under Patent Claims + infringed by Covered Code in the absence of Modifications made by + that Contributor. + +3. Distribution Obligations. + + 3.1. Application of License. + The Modifications which You create or to which You contribute are + governed by the terms of this License, including without limitation + Section 2.2. The Source Code version of Covered Code may be + distributed only under the terms of this License or a future version + of this License released under Section 6.1, and You must include a + copy of this License with every copy of the Source Code You + distribute. You may not offer or impose any terms on any Source Code + version that alters or restricts the applicable version of this + License or the recipients' rights hereunder. However, You may include + an additional document offering the additional rights described in + Section 3.5. + + 3.2. Availability of Source Code. + Any Modification which You create or to which You contribute must be + made available in Source Code form under the terms of this License + either on the same media as an Executable version or via an accepted + Electronic Distribution Mechanism to anyone to whom you made an + Executable version available; and if made available via Electronic + Distribution Mechanism, must remain available for at least twelve (12) + months after the date it initially became available, or at least six + (6) months after a subsequent version of that particular Modification + has been made available to such recipients. You are responsible for + ensuring that the Source Code version remains available even if the + Electronic Distribution Mechanism is maintained by a third party. + + 3.3. Description of Modifications. + You must cause all Covered Code to which You contribute to contain a + file documenting the changes You made to create that Covered Code and + the date of any change. You must include a prominent statement that + the Modification is derived, directly or indirectly, from Original + Code provided by the Initial Developer and including the name of the + Initial Developer in (a) the Source Code, and (b) in any notice in an + Executable version or related documentation in which You describe the + origin or ownership of the Covered Code. + + 3.4. Intellectual Property Matters + (a) Third Party Claims. + If Contributor has knowledge that a license under a third party's + intellectual property rights is required to exercise the rights + granted by such Contributor under Sections 2.1 or 2.2, + Contributor must include a text file with the Source Code + distribution titled "LEGAL" which describes the claim and the + party making the claim in sufficient detail that a recipient will + know whom to contact. If Contributor obtains such knowledge after + the Modification is made available as described in Section 3.2, + Contributor shall promptly modify the LEGAL file in all copies + Contributor makes available thereafter and shall take other steps + (such as notifying appropriate mailing lists or newsgroups) + reasonably calculated to inform those who received the Covered + Code that new knowledge has been obtained. + + (b) Contributor APIs. + If Contributor's Modifications include an application programming + interface and Contributor has knowledge of patent licenses which + are reasonably necessary to implement that API, Contributor must + also include this information in the LEGAL file. + + (c) Representations. + Contributor represents that, except as disclosed pursuant to + Section 3.4(a) above, Contributor believes that Contributor's + Modifications are Contributor's original creation(s) and/or + Contributor has sufficient rights to grant the rights conveyed by + this License. + + 3.5. Required Notices. + You must duplicate the notice in Exhibit A in each file of the Source + Code. If it is not possible to put such notice in a particular Source + Code file due to its structure, then You must include such notice in a + location (such as a relevant directory) where a user would be likely + to look for such a notice. If You created one or more Modification(s) + You may add your name as a Contributor to the notice described in + Exhibit A. You must also duplicate this License in any documentation + for the Source Code where You describe recipients' rights or ownership + rights relating to Covered Code. You may choose to offer, and to + charge a fee for, warranty, support, indemnity or liability + obligations to one or more recipients of Covered Code. However, You + may do so only on Your own behalf, and not on behalf of the Initial + Developer or any Contributor. You must make it absolutely clear than + any such warranty, support, indemnity or liability obligation is + offered by You alone, and You hereby agree to indemnify the Initial + Developer and every Contributor for any liability incurred by the + Initial Developer or such Contributor as a result of warranty, + support, indemnity or liability terms You offer. + + 3.6. Distribution of Executable Versions. + You may distribute Covered Code in Executable form only if the + requirements of Section 3.1-3.5 have been met for that Covered Code, + and if You include a notice stating that the Source Code version of + the Covered Code is available under the terms of this License, + including a description of how and where You have fulfilled the + obligations of Section 3.2. The notice must be conspicuously included + in any notice in an Executable version, related documentation or + collateral in which You describe recipients' rights relating to the + Covered Code. You may distribute the Executable version of Covered + Code or ownership rights under a license of Your choice, which may + contain terms different from this License, provided that You are in + compliance with the terms of this License and that the license for the + Executable version does not attempt to limit or alter the recipient's + rights in the Source Code version from the rights set forth in this + License. If You distribute the Executable version under a different + license You must make it absolutely clear that any terms which differ + from this License are offered by You alone, not by the Initial + Developer or any Contributor. You hereby agree to indemnify the + Initial Developer and every Contributor for any liability incurred by + the Initial Developer or such Contributor as a result of any such + terms You offer. + + 3.7. Larger Works. + You may create a Larger Work by combining Covered Code with other code + not governed by the terms of this License and distribute the Larger + Work as a single product. In such a case, You must make sure the + requirements of this License are fulfilled for the Covered Code. + +4. Inability to Comply Due to Statute or Regulation. + + If it is impossible for You to comply with any of the terms of this + License with respect to some or all of the Covered Code due to + statute, judicial order, or regulation then You must: (a) comply with + the terms of this License to the maximum extent possible; and (b) + describe the limitations and the code they affect. Such description + must be included in the LEGAL file described in Section 3.4 and must + be included with all distributions of the Source Code. Except to the + extent prohibited by statute or regulation, such description must be + sufficiently detailed for a recipient of ordinary skill to be able to + understand it. + +5. Application of this License. + + This License applies to code to which the Initial Developer has + attached the notice in Exhibit A and to related Covered Code. + +6. Versions of the License. + + 6.1. New Versions. + Netscape Communications Corporation ("Netscape") may publish revised + and/or new versions of the License from time to time. Each version + will be given a distinguishing version number. + + 6.2. Effect of New Versions. + Once Covered Code has been published under a particular version of the + License, You may always continue to use it under the terms of that + version. You may also choose to use such Covered Code under the terms + of any subsequent version of the License published by Netscape. No one + other than Netscape has the right to modify the terms applicable to + Covered Code created under this License. + + 6.3. Derivative Works. + If You create or use a modified version of this License (which you may + only do in order to apply it to code which is not already Covered Code + governed by this License), You must (a) rename Your license so that + the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", + "MPL", "NPL" or any confusingly similar phrase do not appear in your + license (except to note that your license differs from this License) + and (b) otherwise make it clear that Your version of the license + contains terms which differ from the Mozilla Public License and + Netscape Public License. (Filling in the name of the Initial + Developer, Original Code or Contributor in the notice described in + Exhibit A shall not of themselves be deemed to be modifications of + this License.) + +7. DISCLAIMER OF WARRANTY. + + COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF + DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. + THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE + IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, + YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE + COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER + OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF + ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + +8. TERMINATION. + + 8.1. This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to cure + such breach within 30 days of becoming aware of the breach. All + sublicenses to the Covered Code which are properly granted shall + survive any termination of this License. Provisions which, by their + nature, must remain in effect beyond the termination of this License + shall survive. + + 8.2. If You initiate litigation by asserting a patent infringement + claim (excluding declatory judgment actions) against Initial Developer + or a Contributor (the Initial Developer or Contributor against whom + You file such action is referred to as "Participant") alleging that: + + (a) such Participant's Contributor Version directly or indirectly + infringes any patent, then any and all rights granted by such + Participant to You under Sections 2.1 and/or 2.2 of this License + shall, upon 60 days notice from Participant terminate prospectively, + unless if within 60 days after receipt of notice You either: (i) + agree in writing to pay Participant a mutually agreeable reasonable + royalty for Your past and future use of Modifications made by such + Participant, or (ii) withdraw Your litigation claim with respect to + the Contributor Version against such Participant. If within 60 days + of notice, a reasonable royalty and payment arrangement are not + mutually agreed upon in writing by the parties or the litigation claim + is not withdrawn, the rights granted by Participant to You under + Sections 2.1 and/or 2.2 automatically terminate at the expiration of + the 60 day notice period specified above. + + (b) any software, hardware, or device, other than such Participant's + Contributor Version, directly or indirectly infringes any patent, then + any rights granted to You by such Participant under Sections 2.1(b) + and 2.2(b) are revoked effective as of the date You first made, used, + sold, distributed, or had made, Modifications made by that + Participant. + + 8.3. If You assert a patent infringement claim against Participant + alleging that such Participant's Contributor Version directly or + indirectly infringes any patent where such claim is resolved (such as + by license or settlement) prior to the initiation of patent + infringement litigation, then the reasonable value of the licenses + granted by such Participant under Sections 2.1 or 2.2 shall be taken + into account in determining the amount or value of any payment or + license. + + 8.4. In the event of termination under Sections 8.1 or 8.2 above, + all end user license agreements (excluding distributors and resellers) + which have been validly granted by You or any distributor hereunder + prior to termination shall survive termination. + +9. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT + (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL + DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, + OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR + ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY + CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, + WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER + COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN + INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY + RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW + PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE + EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO + THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + +10. U.S. GOVERNMENT END USERS. + + The Covered Code is a "commercial item," as that term is defined in + 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer + software" and "commercial computer software documentation," as such + terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 + C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), + all U.S. Government End Users acquire Covered Code with only those + rights set forth herein. + +11. MISCELLANEOUS. + + This License represents the complete agreement concerning subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. This License shall be governed by + California law provisions (except to the extent applicable law, if + any, provides otherwise), excluding its conflict-of-law provisions. + With respect to disputes in which at least one party is a citizen of, + or an entity chartered or registered to do business in the United + States of America, any litigation relating to this License shall be + subject to the jurisdiction of the Federal Courts of the Northern + District of California, with venue lying in Santa Clara County, + California, with the losing party responsible for costs, including + without limitation, court costs and reasonable attorneys' fees and + expenses. The application of the United Nations Convention on + Contracts for the International Sale of Goods is expressly excluded. + Any law or regulation which provides that the language of a contract + shall be construed against the drafter shall not apply to this + License. + +12. RESPONSIBILITY FOR CLAIMS. + + As between Initial Developer and the Contributors, each party is + responsible for claims and damages arising, directly or indirectly, + out of its utilization of rights under this License and You agree to + work with Initial Developer and Contributors to distribute such + responsibility on an equitable basis. Nothing herein is intended or + shall be deemed to constitute any admission of liability. + +13. MULTIPLE-LICENSED CODE. + + Initial Developer may designate portions of the Covered Code as + "Multiple-Licensed". "Multiple-Licensed" means that the Initial + Developer permits you to utilize portions of the Covered Code under + Your choice of the NPL or the alternative licenses, if any, specified + by the Initial Developer in the file described in Exhibit A. + +EXHIBIT A -Mozilla Public License. + + ``The contents of this file are subject to the Mozilla Public License + Version 1.1 (the "License"); you may not use this file except in + compliance with the License. You may obtain a copy of the License at + http://www.mozilla.org/MPL/ + + Software distributed under the License is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + License for the specific language governing rights and limitations + under the License. + + The Original Code is ______________________________________. + + The Initial Developer of the Original Code is ________________________. + Portions created by ______________________ are Copyright (C) ______ + _______________________. All Rights Reserved. + + Contributor(s): ______________________________________. + + Alternatively, the contents of this file may be used under the terms + of the _____ license (the "[___] License"), in which case the + provisions of [______] License are applicable instead of those + above. If you wish to allow use of your version of this file only + under the terms of the [____] License and not to allow others to use + your version of this file under the MPL, indicate your decision by + deleting the provisions above and replace them with the notice and + other provisions required by the [___] License. If you do not delete + the provisions above, a recipient may use your version of this file + under either the MPL or the [___] License." + + [NOTE: The text of this Exhibit A may differ slightly from the text of + the notices in the Source Code files of the Original Code. You should + use the text of this Exhibit A rather than the text found in the + Original Code Source Code for Your Modifications.] + + ---------------------------------------------------------------------- + + AMENDMENTS + + The Netscape Public License Version 1.1 ("NPL") consists of the + Mozilla Public License Version 1.1 with the following Amendments, + including Exhibit A-Netscape Public License. Files identified with + "Exhibit A-Netscape Public License" are governed by the Netscape + Public License Version 1.1. + + Additional Terms applicable to the Netscape Public License. + I. Effect. + These additional terms described in this Netscape Public + License -- Amendments shall apply to the Mozilla Communicator + client code and to all Covered Code under this License. + + II. "Netscape's Branded Code" means Covered Code that Netscape + distributes and/or permits others to distribute under one or more + trademark(s) which are controlled by Netscape but which are not + licensed for use under this License. + + III. Netscape and logo. + This License does not grant any rights to use the trademarks + "Netscape", the "Netscape N and horizon" logo or the "Netscape + lighthouse" logo, "Netcenter", "Gecko", "Java" or "JavaScript", + "Smart Browsing" even if such marks are included in the Original + Code or Modifications. + + IV. Inability to Comply Due to Contractual Obligation. + Prior to licensing the Original Code under this License, Netscape + has licensed third party code for use in Netscape's Branded Code. + To the extent that Netscape is limited contractually from making + such third party code available under this License, Netscape may + choose to reintegrate such code into Covered Code without being + required to distribute such code in Source Code form, even if + such code would otherwise be considered "Modifications" under + this License. + + V. Use of Modifications and Covered Code by Initial Developer. + V.1. In General. + The obligations of Section 3 apply to Netscape, except to + the extent specified in this Amendment, Section V.2 and V.3. + + V.2. Other Products. + Netscape may include Covered Code in products other than the + Netscape's Branded Code which are released by Netscape + during the two (2) years following the release date of the + Original Code, without such additional products becoming + subject to the terms of this License, and may license such + additional products on different terms from those contained + in this License. + + V.3. Alternative Licensing. + Netscape may license the Source Code of Netscape's Branded + Code, including Modifications incorporated therein, without + such Netscape Branded Code becoming subject to the terms of + this License, and may license such Netscape Branded Code on + different terms from those contained in this License. + + VI. Litigation. + Notwithstanding the limitations of Section 11 above, the + provisions regarding litigation in Section 11(a), (b) and (c) of + the License shall apply to all disputes relating to this License. + + EXHIBIT A-Netscape Public License. + + "The contents of this file are subject to the Netscape Public + License Version 1.1 (the "License"); you may not use this file + except in compliance with the License. You may obtain a copy of + the License at http://www.mozilla.org/NPL/ + + Software distributed under the License is distributed on an "AS + IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or + implied. See the License for the specific language governing + rights and limitations under the License. + + The Original Code is Mozilla Communicator client code, released + March 31, 1998. + + The Initial Developer of the Original Code is Netscape + Communications Corporation. Portions created by Netscape are + Copyright (C) 1998-1999 Netscape Communications Corporation. All + Rights Reserved. + + Contributor(s): ______________________________________. + + Alternatively, the contents of this file may be used under the + terms of the _____ license (the "[___] License"), in which case + the provisions of [______] License are applicable instead of + those above. If you wish to allow use of your version of this + file only under the terms of the [____] License and not to allow + others to use your version of this file under the NPL, indicate + your decision by deleting the provisions above and replace them + with the notice and other provisions required by the [___] + License. If you do not delete the provisions above, a recipient + may use your version of this file under either the NPL or the + [___] License." + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) 19yy + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19yy name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. + +Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd + and Clark Cooper +Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Expat maintainers. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2011 Google Inc. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +Copyright (c) 2007-2009 IOLA and Ole Laursen + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +This software is based in part on the work of the FreeType Team. + +---------------------- + + The FreeType Project LICENSE + ---------------------------- + + 2006-Jan-27 + + Copyright 1996-2002, 2006 by + David Turner, Robert Wilhelm, and Werner Lemberg + + + +Introduction +============ + + The FreeType Project is distributed in several archive packages; + some of them may contain, in addition to the FreeType font engine, + various tools and contributions which rely on, or relate to, the + FreeType Project. + + This license applies to all files found in such packages, and + which do not fall under their own explicit license. The license + affects thus the FreeType font engine, the test programs, + documentation and makefiles, at the very least. + + This license was inspired by the BSD, Artistic, and IJG + (Independent JPEG Group) licenses, which all encourage inclusion + and use of free software in commercial and freeware products + alike. As a consequence, its main points are that: + + o We don't promise that this software works. However, we will be + interested in any kind of bug reports. (`as is' distribution) + + o You can use this software for whatever you want, in parts or + full form, without having to pay us. (`royalty-free' usage) + + o You may not pretend that you wrote this software. If you use + it, or only parts of it, in a program, you must acknowledge + somewhere in your documentation that you have used the + FreeType code. (`credits') + + We specifically permit and encourage the inclusion of this + software, with or without modifications, in commercial products. + We disclaim all warranties covering The FreeType Project and + assume no liability related to The FreeType Project. + + + Finally, many people asked us for a preferred form for a + credit/disclaimer to use in compliance with this license. We thus + encourage you to use the following text: + + """ + Portions of this software are copyright � The FreeType + Project (www.freetype.org). All rights reserved. + """ + + Please replace with the value from the FreeType version you + actually use. + + +Legal Terms +=========== + +0. Definitions +-------------- + + Throughout this license, the terms `package', `FreeType Project', + and `FreeType archive' refer to the set of files originally + distributed by the authors (David Turner, Robert Wilhelm, and + Werner Lemberg) as the `FreeType Project', be they named as alpha, + beta or final release. + + `You' refers to the licensee, or person using the project, where + `using' is a generic term including compiling the project's source + code as well as linking it to form a `program' or `executable'. + This program is referred to as `a program using the FreeType + engine'. + + This license applies to all files distributed in the original + FreeType Project, including all source code, binaries and + documentation, unless otherwise stated in the file in its + original, unmodified form as distributed in the original archive. + If you are unsure whether or not a particular file is covered by + this license, you must contact us to verify this. + + The FreeType Project is copyright (C) 1996-2000 by David Turner, + Robert Wilhelm, and Werner Lemberg. All rights reserved except as + specified below. + +1. No Warranty +-------------- + + THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY + KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO + USE, OF THE FREETYPE PROJECT. + +2. Redistribution +----------------- + + This license grants a worldwide, royalty-free, perpetual and + irrevocable right and license to use, execute, perform, compile, + display, copy, create derivative works of, distribute and + sublicense the FreeType Project (in both source and object code + forms) and derivative works thereof for any purpose; and to + authorize others to exercise some or all of the rights granted + herein, subject to the following conditions: + + o Redistribution of source code must retain this license file + (`FTL.TXT') unaltered; any additions, deletions or changes to + the original files must be clearly indicated in accompanying + documentation. The copyright notices of the unaltered, + original files must be preserved in all copies of source + files. + + o Redistribution in binary form must provide a disclaimer that + states that the software is based in part of the work of the + FreeType Team, in the distribution documentation. We also + encourage you to put an URL to the FreeType web page in your + documentation, though this isn't mandatory. + + These conditions apply to any software derived from or based on + the FreeType Project, not just the unmodified files. If you use + our work, you must acknowledge us. However, no fee need be paid + to us. + +3. Advertising +-------------- + + Neither the FreeType authors and contributors nor you shall use + the name of the other for commercial, advertising, or promotional + purposes without specific prior written permission. + + We suggest, but do not require, that you use one or more of the + following phrases to refer to this software in your documentation + or advertising materials: `FreeType Project', `FreeType Engine', + `FreeType library', or `FreeType Distribution'. + + As you have not signed this license, you are not required to + accept it. However, as the FreeType Project is copyrighted + material, only this license, or another one contracted with the + authors, grants you the right to use, distribute, and modify it. + Therefore, by using, distributing, or modifying the FreeType + Project, you indicate that you understand and accept all the terms + of this license. + +4. Contacts +----------- + + There are two mailing lists related to FreeType: + + o freetype@nongnu.org + + Discusses general use and applications of FreeType, as well as + future and wanted additions to the library and distribution. + If you are looking for support, start in this list if you + haven't found anything to help you in the documentation. + + o freetype-devel@nongnu.org + + Discusses bugs, as well as engine internals, design issues, + specific licenses, porting, etc. + + Our home page can be found at + + http://www.freetype.org + + +--- end of FTL.TXT --- + +// Copyright (c) 2013 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + COPYRIGHTS + +Compilation copyright is held by the GPSD project. All rights reserved. + +GPSD project copyrights are assigned to the project lead, currently +Eric S. Raymond. Other portions of the GPSD code are Copyright (c) +1997, 1998, 1999, 2000, 2001, 2002 by Remco Treffkorn, and others +Copyright (c) 2005 by Eric S. Raymond. For other copyrights, see +individual files. + + BSD LICENSE + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met:

+ +Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer.

+ +Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution.

+ +Neither name of the GPSD project nor the names of its contributors +may be used to endorse or promote products derived from this software +without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + GNU LIBRARY GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the library GPL. It is + numbered 2 because it goes with version 2 of the ordinary GPL.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Library General Public License, applies to some +specially designated Free Software Foundation software, and to any +other libraries whose authors decide to use it. You can use it for +your libraries, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if +you distribute copies of the library, or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link a program with the library, you must provide +complete object files to the recipients so that they can relink them +with the library, after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + Our method of protecting your rights has two steps: (1) copyright +the library, and (2) offer you this license which gives you legal +permission to copy, distribute and/or modify the library. + + Also, for each distributor's protection, we want to make certain +that everyone understands that there is no warranty for this free +library. If the library is modified by someone else and passed on, we +want its recipients to know that what they have is not the original +version, so that any problems introduced by others will not reflect on +the original authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that companies distributing free +software will individually obtain patent licenses, thus in effect +transforming the program into proprietary software. To prevent this, +we have made it clear that any patent must be licensed for everyone's +free use or not licensed at all. + + Most GNU software, including some libraries, is covered by the ordinary +GNU General Public License, which was designed for utility programs. This +license, the GNU Library General Public License, applies to certain +designated libraries. This license is quite different from the ordinary +one; be sure to read it in full, and don't assume that anything in it is +the same as in the ordinary license. + + The reason we have a separate public license for some libraries is that +they blur the distinction we usually make between modifying or adding to a +program and simply using it. Linking a program with a library, without +changing the library, is in some sense simply using the library, and is +analogous to running a utility program or application program. However, in +a textual and legal sense, the linked executable is a combined work, a +derivative of the original library, and the ordinary General Public License +treats it as such. + + Because of this blurred distinction, using the ordinary General +Public License for libraries did not effectively promote software +sharing, because most developers did not use the libraries. We +concluded that weaker conditions might promote sharing better. + + However, unrestricted linking of non-free programs would deprive the +users of those programs of all benefit from the free status of the +libraries themselves. This Library General Public License is intended to +permit developers of non-free programs to use free libraries, while +preserving your freedom as a user of such programs to change the free +libraries that are incorporated in them. (We have not seen how to achieve +this as regards changes in header files, but we have achieved it as regards +changes in the actual functions of the Library.) The hope is that this +will lead to faster development of free libraries. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, while the latter only +works together with the library. + + Note that it is possible for a library to be covered by the ordinary +General Public License rather than by this special one. + + GNU LIBRARY GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library which +contains a notice placed by the copyright holder or other authorized +party saying it may be distributed under the terms of this Library +General Public License (also called "this License"). Each licensee is +addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also compile or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + c) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + d) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the source code distributed need not include anything that is normally +distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Library General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with this library; if not, write to the + Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307 USA. + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + +HarfBuzz is licensed under the so-called "Old MIT" license. Details follow. +For parts of HarfBuzz that are licensed under different licenses see individual +files names COPYING in subdirectories where applicable. + +Copyright © 2010,2011,2012 Google, Inc. +Copyright © 2012 Mozilla Foundation +Copyright © 2011 Codethink Limited +Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies) +Copyright © 2009 Keith Stribley +Copyright © 2009 Martin Hosken and SIL International +Copyright © 2007 Chris Wilson +Copyright © 2006 Behdad Esfahbod +Copyright © 2005 David Turner +Copyright © 2004,2007,2008,2009,2010 Red Hat, Inc. +Copyright © 1998-2004 David Turner and Werner Lemberg + +For full copyright notices consult the individual files in the package. + + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +/************************************************************************* + * + * IAccessible2 IDL Specification + * + * Copyright (c) 2007, 2010 Linux Foundation + * Copyright (c) 2006 IBM Corporation + * Copyright (c) 2000, 2006 Sun Microsystems, Inc. + * All rights reserved. + * + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * 3. Neither the name of the Linux Foundation nor the names of its + * contributors may be used to endorse or promote products + * derived from this software without specific prior written + * permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This BSD License conforms to the Open Source Initiative "Simplified + * BSD License" as published at: + * http://www.opensource.org/licenses/bsd-license.php + * + * IAccessible2 is a trademark of the Linux Foundation. The IAccessible2 + * mark may be used in accordance with the Linux Foundation Trademark + * Policy to indicate compliance with the IAccessible2 specification. + * + ************************************************************************/ + +LICENSE extracted from IJG's jpeg distribution: +----------------------------------------------- + +In plain English: + +1. We don't promise that this software works. (But if you find any bugs, + please let us know!) +2. You can use this software for whatever you want. You don't have to pay us. +3. You may not pretend that you wrote this software. If you use it in a + program, you must acknowledge somewhere in your documentation that + you've used the IJG code. + +In legalese: + +The authors make NO WARRANTY or representation, either express or implied, +with respect to this software, its quality, accuracy, merchantability, or +fitness for a particular purpose. This software is provided "AS IS", and you, +its user, assume the entire risk as to its quality and accuracy. + +This software is copyright (C) 1991-1998, Thomas G. Lane. +All Rights Reserved except as specified below. + +Permission is hereby granted to use, copy, modify, and distribute this +software (or portions thereof) for any purpose, without fee, subject to these +conditions: +(1) If any part of the source code for this software is distributed, then this +README file must be included, with this copyright and no-warranty notice +unaltered; and any additions, deletions, or changes to the original files +must be clearly indicated in accompanying documentation. +(2) If only executable code is distributed, then the accompanying +documentation must state that "this software is based in part on the work of +the Independent JPEG Group". +(3) Permission for use of this software is granted only if the user accepts +full responsibility for any undesirable consequences; the authors accept +NO LIABILITY for damages of any kind. + +These conditions apply to any software derived from or based on the IJG code, +not just to the unmodified library. If you use our work, you ought to +acknowledge us. + +Permission is NOT granted for the use of any IJG author's name or company name +in advertising or publicity relating to this software or products derived from +it. This software may be referred to only as "the Independent JPEG Group's +software". + +We specifically permit and encourage the use of this software as the basis of +commercial products, provided that all warranty or liability claims are +assumed by the product vendor. + + +ICU License - ICU 1.8.1 and later + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1995-2010 International Business Machines Corporation and others + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Software, and to permit persons +to whom the Software is furnished to do so, provided that the above +copyright notice(s) and this permission notice appear in all copies +of the Software and that both the above copyright notice(s) and this +permission notice appear in supporting documentation. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL +THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, +OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, +NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE +USE OR PERFORMANCE OF THIS SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall not be +used in advertising or otherwise to promote the sale, use or other dealings in +this Software without prior written authorization of the copyright holder. + +All trademarks and registered trademarks mentioned herein are the property of their respective owners. + +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is mozilla.org code. + * + * The Initial Developer of the Original Code is + * Netscape Communications Corporation. + * Portions created by the Initial Developer are Copyright (C) 2002 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * Alternatively, the contents of this file may be used under the terms of + * either the GNU General Public License Version 2 or later (the "GPL"), or + * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), + * in which case the provisions of the GPL or the LGPL are applicable instead + * of those above. If you wish to allow use of your version of this file only + * under the terms of either the GPL or the LGPL, and not to allow others to + * use your version of this file under the terms of the MPL, indicate your + * decision by deleting the provisions above and replace them with the notice + * and other provisions required by the GPL or the LGPL. If you do not delete + * the provisions above, a recipient may use your version of this file under + * the terms of any one of the MPL, the GPL or the LGPL. + * + * ***** END LICENSE BLOCK ***** */ + +The following is the license for the jemalloc source code, as provided +in the initial section of the source files. + +Copyright (C) 2006-2008 Jason Evans . +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice(s), this list of conditions and the following disclaimer as + the first lines of this file unmodified other than the possible + addition of one or more copyright notices. +2. Redistributions in binary form must reproduce the above copyright + notice(s), this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE +OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +The JsonCpp library's source code, including accompanying documentation, +tests and demonstration applications, are licensed under the following +conditions... + +The author (Baptiste Lepilleur) explicitly disclaims copyright in all +jurisdictions which recognize such a disclaimer. In such jurisdictions, +this software is released into the Public Domain. + +In jurisdictions which do not recognize Public Domain property (e.g. Germany as of +2010), this software is Copyright (c) 2007-2010 by Baptiste Lepilleur, and is +released under the terms of the MIT License (see below). + +In jurisdictions which recognize Public Domain property, the user of this +software may choose to accept it either as 1) Public Domain, 2) under the +conditions of the MIT License (see below), or 3) under the terms of dual +Public Domain/MIT License conditions described here, as they choose. + +The MIT License is about as close to Public Domain as a license can get, and is +described in clear, concise terms at: + + http://en.wikipedia.org/wiki/MIT_License + +The full text of the MIT License follows: + +======================================================================== +Copyright (c) 2007-2010 Baptiste Lepilleur + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, copy, +modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS +BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +======================================================================== +(END LICENSE TEXT) + +The MIT license is compatible with both the GPL and commercial +software, affording one all of the rights of Public Domain with the +minor nuisance of being required to keep the above copyright notice +and license text in the source code. Note also that by accepting the +Public Domain "license" you can re-license your copy using whatever +license you like. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +Copyright (c) 2007-2010 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. + + +SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) + +Copyright (C) 1992 Silicon Graphics, Inc. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice including the dates of first publication and either +this permission notice or a reference to http://oss.sgi.com/projects/FreeB/ +shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SILICON +GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of Silicon Graphics, Inc. shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in this Software without prior written authorization from Silicon +Graphics, Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + * Neither the name of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +License copied from bin/lcov: + +# +# Copyright (c) International Business Machines Corp., 2002,2007 +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. + +Copyright (c) 2011 The LevelDB Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +/* + * Copyright (c) 2008 NVIDIA, Corporation + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice (including the next + * paragraph) shall be included in all copies or substantial portions of the + * Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ +Copyright 2000-2007 Niels Provos +Copyright 2007-2009 Niels Provos and Nick Mathewson + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Copyright (c) 2013, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + * The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE +GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY +WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. +(Copied from the README.) + +-------------------------------------------------------------------------------- + +The authors make NO WARRANTY or representation, either express or implied, +with respect to this software, its quality, accuracy, merchantability, or +fitness for a particular purpose. This software is provided "AS IS", and you, +its user, assume the entire risk as to its quality and accuracy. + +This software is copyright (C) 1991-1998, Thomas G. Lane. +All Rights Reserved except as specified below. + +Permission is hereby granted to use, copy, modify, and distribute this +software (or portions thereof) for any purpose, without fee, subject to these +conditions: +(1) If any part of the source code for this software is distributed, then this +README file must be included, with this copyright and no-warranty notice +unaltered; and any additions, deletions, or changes to the original files +must be clearly indicated in accompanying documentation. +(2) If only executable code is distributed, then the accompanying +documentation must state that "this software is based in part on the work of +the Independent JPEG Group". +(3) Permission for use of this software is granted only if the user accepts +full responsibility for any undesirable consequences; the authors accept +NO LIABILITY for damages of any kind. + +These conditions apply to any software derived from or based on the IJG code, +not just to the unmodified library. If you use our work, you ought to +acknowledge us. + +Permission is NOT granted for the use of any IJG author's name or company name +in advertising or publicity relating to this software or products derived from +it. This software may be referred to only as "the Independent JPEG Group's +software". + +We specifically permit and encourage the use of this software as the basis of +commercial products, provided that all warranty or liability claims are +assumed by the product vendor. + + +ansi2knr.c is included in this distribution by permission of L. Peter Deutsch, +sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA. +ansi2knr.c is NOT covered by the above copyright and conditions, but instead +by the usual distribution terms of the Free Software Foundation; principally, +that you must include source code if you redistribute it. (See the file +ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part +of any program generated from the IJG code, this does not limit you more than +the foregoing paragraphs do. + +The Unix configuration script "configure" was produced with GNU Autoconf. +It is copyright by the Free Software Foundation but is freely distributable. +The same holds for its supporting scripts (config.guess, config.sub, +ltconfig, ltmain.sh). Another support script, install-sh, is copyright +by M.I.T. but is also freely distributable. + +It appears that the arithmetic coding option of the JPEG spec is covered by +patents owned by IBM, AT&T, and Mitsubishi. Hence arithmetic coding cannot +legally be used without obtaining one or more licenses. For this reason, +support for arithmetic coding has been removed from the free JPEG software. +(Since arithmetic coding provides only a marginal gain over the unpatented +Huffman mode, it is unlikely that very many implementations will support it.) +So far as we are aware, there are no patent restrictions on the remaining +code. + +The IJG distribution formerly included code to read and write GIF files. +To avoid entanglement with the Unisys LZW patent, GIF reading support has +been removed altogether, and the GIF writer has been simplified to produce +"uncompressed GIFs". This technique does not use the LZW algorithm; the +resulting GIF files are larger than usual, but are readable by all standard +GIF decoders. + +We are required to state that + "The Graphics Interchange Format(c) is the Copyright property of + CompuServe Incorporated. GIF(sm) is a Service Mark property of + CompuServe Incorporated." + +Copyright (C) 2011 Google Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + + +This copy of the libpng notices is provided for your convenience. In case of +any discrepancy between this copy and the notices in the file png.h that is +included in the libpng distribution, the latter shall prevail. + +COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: + +If you modify libpng you may insert additional notices immediately following +this sentence. + +This code is released under the libpng license. + +libpng versions 1.2.6, August 15, 2004, through 1.2.45, July 7, 2011, are +Copyright (c) 2004, 2006-2009 Glenn Randers-Pehrson, and are +distributed according to the same disclaimer and license as libpng-1.2.5 +with the following individual added to the list of Contributing Authors + + Cosmin Truta + +libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are +Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are +distributed according to the same disclaimer and license as libpng-1.0.6 +with the following individuals added to the list of Contributing Authors + + Simon-Pierre Cadieux + Eric S. Raymond + Gilles Vollant + +and with the following additions to the disclaimer: + + There is no warranty against interference with your enjoyment of the + library or against infringement. There is no warranty that our + efforts or the library will fulfill any of your particular purposes + or needs. This library is provided with all faults, and the entire + risk of satisfactory quality, performance, accuracy, and effort is with + the user. + +libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are +Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are +distributed according to the same disclaimer and license as libpng-0.96, +with the following individuals added to the list of Contributing Authors: + + Tom Lane + Glenn Randers-Pehrson + Willem van Schaik + +libpng versions 0.89, June 1996, through 0.96, May 1997, are +Copyright (c) 1996, 1997 Andreas Dilger +Distributed according to the same disclaimer and license as libpng-0.88, +with the following individuals added to the list of Contributing Authors: + + John Bowler + Kevin Bracey + Sam Bushell + Magnus Holmgren + Greg Roelofs + Tom Tanner + +libpng versions 0.5, May 1995, through 0.88, January 1996, are +Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. + +For the purposes of this copyright and license, "Contributing Authors" +is defined as the following set of individuals: + + Andreas Dilger + Dave Martindale + Guy Eric Schalnat + Paul Schmidt + Tim Wegner + +The PNG Reference Library is supplied "AS IS". The Contributing Authors +and Group 42, Inc. disclaim all warranties, expressed or implied, +including, without limitation, the warranties of merchantability and of +fitness for any purpose. The Contributing Authors and Group 42, Inc. +assume no liability for direct, indirect, incidental, special, exemplary, +or consequential damages, which may result from the use of the PNG +Reference Library, even if advised of the possibility of such damage. + +Permission is hereby granted to use, copy, modify, and distribute this +source code, or portions hereof, for any purpose, without fee, subject +to the following restrictions: + +1. The origin of this source code must not be misrepresented. + +2. Altered versions must be plainly marked as such and must not + be misrepresented as being the original source. + +3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + +The Contributing Authors and Group 42, Inc. specifically permit, without +fee, and encourage the use of this source code as a component to +supporting the PNG file format in commercial products. If you use this +source code in a product, acknowledgment is not required but would be +appreciated. + + +A "png_get_copyright" function is available, for convenient use in "about" +boxes and the like: + + printf("%s",png_get_copyright(NULL)); + +Also, the PNG logo (in PNG format, of course) is supplied in the +files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31). + +Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a +certification mark of the Open Source Initiative. + +Glenn Randers-Pehrson +glennrp at users.sourceforge.net +July 7, 2011 + + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + + + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sub license, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice (including the + next paragraph) shall be included in all copies or substantial portions + of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR + ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Copyright (c) 2010, Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Additional IP Rights Grant (Patents) + +"This implementation" means the copyrightable works distributed by +Google as part of the WebM Project. + +Google hereby grants to you a perpetual, worldwide, non-exclusive, +no-charge, royalty-free, irrevocable (except as stated in this section) +patent license to make, have made, use, offer to sell, sell, import, +transfer, and otherwise run, modify and propagate the contents of this +implementation of VP8, where such license applies only to those patent +claims, both currently owned by Google and acquired in the future, +licensable by Google that are necessarily infringed by this +implementation of VP8. This grant does not include claims that would be +infringed only as a consequence of further modification of this +implementation. If you or your agent or exclusive licensee institute or +order or agree to the institution of patent litigation against any +entity (including a cross-claim or counterclaim in a lawsuit) alleging +that this implementation of VP8 or any code incorporated within this +implementation of VP8 constitutes direct or contributory patent +infringement, or inducement of patent infringement, then any patent +rights granted to you under this License for this implementation of VP8 +shall terminate as of the date such litigation is filed. + +Except where otherwise noted in the source code (e.g. the files hash.c, +list.c and the trio files, which are covered by a similar licence but +with different Copyright notices) all the files are: + + Copyright (C) 1998-2003 Daniel Veillard. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is fur- +nished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT- +NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +DANIEL VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- +NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of Daniel Veillard shall not +be used in advertising or otherwise to promote the sale, use or other deal- +ings in this Software without prior written authorization from him. + + +Licence for libxslt except libexslt +---------------------------------------------------------------------- + Copyright (C) 2001-2002 Daniel Veillard. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is fur- +nished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT- +NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +DANIEL VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- +NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of Daniel Veillard shall not +be used in advertising or otherwise to promote the sale, use or other deal- +ings in this Software without prior written authorization from him. + +---------------------------------------------------------------------- + +Licence for libexslt +---------------------------------------------------------------------- + Copyright (C) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. + All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is fur- +nished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT- +NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- +NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of the authors shall not +be used in advertising or otherwise to promote the sale, use or other deal- +ings in this Software without prior written authorization from him. +---------------------------------------------------------------------- + +LZMA SDK is placed in the public domain. + +Copyright (c) 2003-2009 Jonathan 'Wolf' Rentzsch: +Some rights reserved: + +The default Mesa license is as follows: + +Copyright (C) 1999-2007 Brian Paul All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + +Some parts of Mesa are copyrighted under the GNU LGPL. See the +Mesa/docs/COPYRIGHT file for details. + +The following is the standard GNU copyright file. +---------------------------------------------------------------------- + + + GNU LIBRARY GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1991 Free Software Foundation, Inc. + 675 Mass Ave, Cambridge, MA 02139, USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the library GPL. It is + numbered 2 because it goes with version 2 of the ordinary GPL.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Library General Public License, applies to some +specially designated Free Software Foundation software, and to any +other libraries whose authors decide to use it. You can use it for +your libraries, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if +you distribute copies of the library, or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link a program with the library, you must provide +complete object files to the recipients so that they can relink them +with the library, after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + Our method of protecting your rights has two steps: (1) copyright +the library, and (2) offer you this license which gives you legal +permission to copy, distribute and/or modify the library. + + Also, for each distributor's protection, we want to make certain +that everyone understands that there is no warranty for this free +library. If the library is modified by someone else and passed on, we +want its recipients to know that what they have is not the original +version, so that any problems introduced by others will not reflect on +the original authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that companies distributing free +software will individually obtain patent licenses, thus in effect +transforming the program into proprietary software. To prevent this, +we have made it clear that any patent must be licensed for everyone's +free use or not licensed at all. + + Most GNU software, including some libraries, is covered by the ordinary +GNU General Public License, which was designed for utility programs. This +license, the GNU Library General Public License, applies to certain +designated libraries. This license is quite different from the ordinary +one; be sure to read it in full, and don't assume that anything in it is +the same as in the ordinary license. + + The reason we have a separate public license for some libraries is that +they blur the distinction we usually make between modifying or adding to a +program and simply using it. Linking a program with a library, without +changing the library, is in some sense simply using the library, and is +analogous to running a utility program or application program. However, in +a textual and legal sense, the linked executable is a combined work, a +derivative of the original library, and the ordinary General Public License +treats it as such. + + Because of this blurred distinction, using the ordinary General +Public License for libraries did not effectively promote software +sharing, because most developers did not use the libraries. We +concluded that weaker conditions might promote sharing better. + + However, unrestricted linking of non-free programs would deprive the +users of those programs of all benefit from the free status of the +libraries themselves. This Library General Public License is intended to +permit developers of non-free programs to use free libraries, while +preserving your freedom as a user of such programs to change the free +libraries that are incorporated in them. (We have not seen how to achieve +this as regards changes in header files, but we have achieved it as regards +changes in the actual functions of the Library.) The hope is that this +will lead to faster development of free libraries. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, while the latter only +works together with the library. + + Note that it is possible for a library to be covered by the ordinary +General Public License rather than by this special one. + + GNU LIBRARY GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library which +contains a notice placed by the copyright holder or other authorized +party saying it may be distributed under the terms of this Library +General Public License (also called "this License"). Each licensee is +addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also compile or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + c) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + d) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the source code distributed need not include anything that is normally +distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Library General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + Appendix: How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with this library; if not, write to the Free + Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + + + * MODP_B64 - High performance base64 encoder/decoder + * Version 1.3 -- 17-Mar-2006 + * http://modp.com/release/base64 + * + * Copyright (c) 2005, 2006 Nick Galbreath -- nickg [at] modp [dot] com + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of the modp.com nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Copyright 2008 MolokoCacao +All rights reserved + +Redistribution and use in source and binary forms, with or without +modification, are permitted providing that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +Copyright (c) 2004-2009 Sergey Lyubka +Portions Copyright (c) 2009 Gilbert Wellisch + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +Copyright 2010-2011, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. +* Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is mozilla.org code. + * + * The Initial Developer of the Original Code is + * Netscape Communications Corporation. + * Portions created by the Initial Developer are Copyright (C) 2002 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * Alternatively, the contents of this file may be used under the terms of + * either the GNU General Public License Version 2 or later (the "GPL"), or + * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), + * in which case the provisions of the GPL or the LGPL are applicable instead + * of those above. If you wish to allow use of your version of this file only + * under the terms of either the GPL or the LGPL, and not to allow others to + * use your version of this file under the terms of the MPL, indicate your + * decision by deleting the provisions above and replace them with the notice + * and other provisions required by the GPL or the LGPL. If you do not delete + * the provisions above, a recipient may use your version of this file under + * the terms of any one of the MPL, the GPL or the LGPL. + * + * ***** END LICENSE BLOCK ***** */ + + A C-program for MT19937, with initialization improved 2002/1/26. + Coded by Takuji Nishimura and Makoto Matsumoto. + + Before using, initialize the state by using init_genrand(seed) + or init_by_array(init_key, key_length). + + Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura, + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. The names of its contributors may not be used to endorse or promote + products derived from this software without specific prior written + permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// Copyright (c) 2006-2009 The Chromium OS Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Version: MPL 1.1/GPL 2.0/LGPL 2.1 + +The contents of this file are subject to the Mozilla Public License Version +1.1 (the "License"); you may not use this file except in compliance with +the License. You may obtain a copy of the License at +http://www.mozilla.org/MPL/ + +Software distributed under the License is distributed on an "AS IS" basis, +WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +for the specific language governing rights and limitations under the +License. + +The Original Code is mozilla.org code. + +The Initial Developer of the Original Code is +Netscape Communications Corporation. +Portions created by the Initial Developer are Copyright (C) 1998 +the Initial Developer. All Rights Reserved. + +Contributor(s): + +Alternatively, the contents of this file may be used under the terms of +either the GNU General Public License Version 2 or later (the "GPL"), or +the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), +in which case the provisions of the GPL or the LGPL are applicable instead +of those above. If you wish to allow use of your version of this file only +under the terms of either the GPL or the LGPL, and not to allow others to +use your version of this file under the terms of the MPL, indicate your +decision by deleting the provisions above and replace them with the notice +and other provisions required by the GPL or the LGPL. If you do not delete +the provisions above, a recipient may use your version of this file under +the terms of any one of the MPL, the GPL or the LGPL. + + + Copyright (c) 2004-2012 by Mulle Kybernetik. All rights reserved. + + Permission to use, copy, modify and distribute this software and its documentation + is hereby granted, provided that both the copyright notice and this permission + notice appear in all copies of the software, derivative works or modified versions, + and any portions thereof, and that both notices appear in supporting documentation, + and that credit is given to Mulle Kybernetik in all documents and publicity + pertaining to direct or indirect use of this code or its derivatives. + + THIS IS EXPERIMENTAL SOFTWARE AND IT IS KNOWN TO HAVE BUGS, SOME OF WHICH MAY HAVE + SERIOUS CONSEQUENCES. THE COPYRIGHT HOLDER ALLOWS FREE USE OF THIS SOFTWARE IN ITS + "AS IS" CONDITION. THE COPYRIGHT HOLDER DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY + DAMAGES WHATSOEVER RESULTING DIRECTLY OR INDIRECTLY FROM THE USE OF THIS SOFTWARE + OR OF ANY DERIVATIVE WORK. + + LICENSE ISSUES + ============== + + The OpenSSL toolkit stays under a dual license, i.e. both the conditions of + the OpenSSL License and the original SSLeay license apply to the toolkit. + See below for the actual license texts. Actually both licenses are BSD-style + Open Source licenses. In case of any license issues related to OpenSSL + please contact openssl-core@openssl.org. + + OpenSSL License + --------------- + +/* ==================================================================== + * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * 3. All advertising materials mentioning features or use of this + * software must display the following acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + * + * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + * endorse or promote products derived from this software without + * prior written permission. For written permission, please contact + * openssl-core@openssl.org. + * + * 5. Products derived from this software may not be called "OpenSSL" + * nor may "OpenSSL" appear in their names without prior written + * permission of the OpenSSL Project. + * + * 6. Redistributions of any form whatsoever must retain the following + * acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit (http://www.openssl.org/)" + * + * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY + * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR + * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. + * ==================================================================== + * + * This product includes cryptographic software written by Eric Young + * (eay@cryptsoft.com). This product includes software written by Tim + * Hudson (tjh@cryptsoft.com). + * + */ + + Original SSLeay License + ----------------------- + +/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) + * All rights reserved. + * + * This package is an SSL implementation written + * by Eric Young (eay@cryptsoft.com). + * The implementation was written so as to conform with Netscapes SSL. + * + * This library is free for commercial and non-commercial use as long as + * the following conditions are aheared to. The following conditions + * apply to all code found in this distribution, be it the RC4, RSA, + * lhash, DES, etc., code; not just the SSL code. The SSL documentation + * included with this distribution is covered by the same copyright terms + * except that the holder is Tim Hudson (tjh@cryptsoft.com). + * + * Copyright remains Eric Young's, and as such any Copyright notices in + * the code are not to be removed. + * If this package is used in a product, Eric Young should be given attribution + * as the author of the parts of the library used. + * This can be in the form of a textual message at program startup or + * in documentation (online or textual) provided with the package. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * "This product includes cryptographic software written by + * Eric Young (eay@cryptsoft.com)" + * The word 'cryptographic' can be left out if the rouines from the library + * being used are not cryptographic related :-). + * 4. If you include any Windows specific code (or a derivative thereof) from + * the apps directory (application code) you must include an acknowledgement: + * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + * + * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * The licence and distribution terms for any publically available version or + * derivative of this code cannot be changed. i.e. this code cannot simply be + * copied and put under another distribution licence + * [including the GNU Public Licence.] + */ + + +Copyright 2001-2011 Xiph.Org, Skype Limited, Octasic, + Jean-Marc Valin, Timothy B. Terriberry, + CSIRO, Gregory Maxwell, Mark Borgerding, + Erik de Castro Lopo + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +- Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +- Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +- Neither the name of Internet Society, IETF or IETF Trust, nor the +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER +OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Opus is subject to the royalty-free patent licenses which are +specified at: + +Xiph.Org Foundation: +https://datatracker.ietf.org/ipr/1524/ + +Microsoft Corporation: +https://datatracker.ietf.org/ipr/1914/ + +Broadcom Corporation: +https://datatracker.ietf.org/ipr/1526/ + +// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PLY (Python Lex-Yacc) Version 3.4 + +Copyright (C) 2001-2011, +David M. Beazley (Dabeaz LLC) +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +* Neither the name of the David Beazley or Dabeaz LLC may be used to + endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// Copyright (c) 2012 The Polymer Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Copyright 2008, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Code generated by the Protocol Buffer compiler is owned by the owner +of the input file used when generating it. This code is not +standalone and requires a support library to be linked with it. This +support library is itself covered by the above license. + +Copyright (c) 2003-2012, Michael Foord +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +qcms +Copyright (C) 2009 Mozilla Corporation +Copyright (C) 1998-2007 Marti Maria + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO +THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +// Copyright (c) 2009 The RE2 Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2011 Google Inc. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +Copyright (c) 2006 Bob Ippolito + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +// Copyright (c) 2011 Google Inc. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +All MurmurHash source files are placed in the public domain. + +The license below applies to all other code in SMHasher: + +Copyright (c) 2011 Google, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +The author disclaims copyright to this source code. In place of +a legal notice, here is a blessing: + + May you do good and not evil. + May you find forgiveness for yourself and forgive others. + May you share freely, never taking more than you give. + +SWIG is distributed under the following terms: + +I. + +Copyright (c) 1995-1998 +The University of Utah and the Regents of the University of California +All Rights Reserved + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that +(1) The above copyright notice and the following two paragraphs +appear in all copies of the source code and (2) redistributions +including binaries reproduces these notices in the supporting +documentation. Substantial modifications to this software may be +copyrighted by their authors and need not follow the licensing terms +described here, provided that the new terms are clearly indicated in +all files where they apply. + +IN NO EVENT SHALL THE AUTHOR, THE UNIVERSITY OF CALIFORNIA, THE +UNIVERSITY OF UTAH OR DISTRIBUTORS OF THIS SOFTWARE BE LIABLE TO ANY +PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, +EVEN IF THE AUTHORS OR ANY OF THE ABOVE PARTIES HAVE BEEN ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE. + +THE AUTHOR, THE UNIVERSITY OF CALIFORNIA, AND THE UNIVERSITY OF UTAH +SPECIFICALLY DISCLAIM ANY WARRANTIES,INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND +THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE MAINTENANCE, +SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + + +II. + +This software includes contributions that are Copyright (c) 1998-2005 +University of Chicago. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. Redistributions +in binary form must reproduce the above copyright notice, this list of +conditions and the following disclaimer in the documentation and/or +other materials provided with the distribution. Neither the name of +the University of Chicago nor the names of its contributors may be +used to endorse or promote products derived from this software without +specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY OF CHICAGO AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OF +CHICAGO OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +III. + +This software includes contributions that are Copyright (c) 2005-2006 +Arizona Board of Regents (University of Arizona). +All Rights Reserved + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that +(1) The above copyright notice and the following two paragraphs +appear in all copies of the source code and (2) redistributions +including binaries reproduces these notices in the supporting +documentation. Substantial modifications to this software may be +copyrighted by their authors and need not follow the licensing terms +described here, provided that the new terms are clearly indicated in +all files where they apply. + +THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY OF ARIZONA AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OF +ARIZONA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +// Copyright (c) 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +All code here is public domain. + +Copyright (c) 2012, Linux USB Project +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +o Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + +o Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +o Neither the name of the Linux USB Project nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +(Copied from the COPYRIGHT file of +https://code.google.com/p/sctp-refimpl/source/browse/trunk/COPYRIGHT) +-------------------------------------------------------------------------------- + +Copyright (c) 2001, 2002 Cisco Systems, Inc. +Copyright (c) 2002-12 Randall R. Stewart +Copyright (c) 2002-12 Michael Tuexen +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. + +;***************************************************************************** +;* x86inc.asm +;***************************************************************************** +;* Copyright (C) 2005-2011 x264 project +;* +;* Authors: Loren Merritt +;* Anton Mitrofanov +;* Jason Garrett-Glaser +;* +;* Permission to use, copy, modify, and/or distribute this software for any +;* purpose with or without fee is hereby granted, provided that the above +;* copyright notice and this permission notice appear in all copies. +;* +;* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +;* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +;* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +;* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +;* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +;* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +;* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +;***************************************************************************** + +; This is a header file for the x264ASM assembly language, which uses +; NASM/YASM syntax combined with a large number of macros to provide easy +; abstraction between different calling conventions (x86_32, win64, linux64). +; It also has various other useful features to simplify writing the kind of +; DSP functions that are most often used in x264. + +; Unlike the rest of x264, this file is available under an ISC license, as it +; has significant usefulness outside of x264 and we want it to be available +; to the largest audience possible. Of course, if you modify it for your own +; purposes to add a new feature, we strongly encourage contributing a patch +; as this feature might be useful for others as well. Send patches or ideas +; to x264-devel@videolan.org . + +Yasm is Copyright (c) 2001-2010 Peter Johnson and other Yasm developers. + +Yasm developers and/or contributors include: + Peter Johnson + Michael Urman + Brian Gladman (Visual Studio build files, other fixes) + Stanislav Karchebny (options parser) + Mathieu Monnier (SSE4 instruction patches, NASM preprocessor additions) + Anonymous "NASM64" developer (NASM preprocessor fixes) + Stephen Polkowski (x86 instruction patches) + Henryk Richter (Mach-O object format) + Ben Skeggs (patches, bug reports) + Alexei Svitkine (GAS preprocessor) + Samuel Thibault (TASM parser and frontend) + +----------------------------------- +Yasm licensing overview and summary +----------------------------------- + +Note: This document does not provide legal advice nor is it the actual +license of any part of Yasm. See the individual licenses for complete +details. Consult a lawyer for legal advice. + +The primary license of Yasm is the 2-clause BSD license. Please use this +license if you plan on submitting code to the project. + +Yasm has absolutely no warranty; not even for merchantibility or fitness +for a particular purpose. + +------- +Libyasm +------- +Libyasm is 2-clause or 3-clause BSD licensed, with the exception of +bitvect, which is triple-licensed under the Artistic license, GPL, and +LGPL. Libyasm is thus GPL and LGPL compatible. In addition, this also +means that libyasm is free for binary-only distribution as long as the +terms of the 3-clause BSD license and Artistic license (as it applies to +bitvect) are fulfilled. + +------- +Modules +------- +The modules are 2-clause or 3-clause BSD licensed. + +--------- +Frontends +--------- +The frontends are 2-clause BSD licensed. + +------------- +License Texts +------------- +The full text of all licenses are provided in separate files in the source +distribution. Each source file may include the entire license (in the case +of the BSD and Artistic licenses), or may reference the GPL or LGPL license +file. + +BSD.txt - 2-clause and 3-clause BSD licenses +Artistic.txt - Artistic license +GNU_GPL-2.0 - GNU General Public License +GNU_LGPL-2.0 - GNU Library General Public License + +/* zlib.h -- interface of the 'zlib' general purpose compression library + version 1.2.4, March 14th, 2010 + + Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly + Mark Adler + +*/ + +Copyright 2007, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +------------------------------------------------------------------------------- + +The file url_parse.cc is based on nsURLParsers.cc from Mozilla. This file is +licensed separately as follows: + +The contents of this file are subject to the Mozilla Public License Version +1.1 (the "License"); you may not use this file except in compliance with +the License. You may obtain a copy of the License at +http://www.mozilla.org/MPL/ + +Software distributed under the License is distributed on an "AS IS" basis, +WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +for the specific language governing rights and limitations under the +License. + +The Original Code is mozilla.org code. + +The Initial Developer of the Original Code is +Netscape Communications Corporation. +Portions created by the Initial Developer are Copyright (C) 1998 +the Initial Developer. All Rights Reserved. + +Contributor(s): + Darin Fisher (original author) + +Alternatively, the contents of this file may be used under the terms of +either the GNU General Public License Version 2 or later (the "GPL"), or +the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), +in which case the provisions of the GPL or the LGPL are applicable instead +of those above. If you wish to allow use of your version of this file only +under the terms of either the GPL or the LGPL, and not to allow others to +use your version of this file under the terms of the MPL, indicate your +decision by deleting the provisions above and replace them with the notice +and other provisions required by the GPL or the LGPL. If you do not delete +the provisions above, a recipient may use your version of this file under +the terms of any one of the MPL, the GPL or the LGPL. + +Copyright 2007, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +------------------------------------------------------------------------------- + +The file url_parse.cc is based on nsURLParsers.cc from Mozilla. This file is +licensed separately as follows: + +The contents of this file are subject to the Mozilla Public License Version +1.1 (the "License"); you may not use this file except in compliance with +the License. You may obtain a copy of the License at +http://www.mozilla.org/MPL/ + +Software distributed under the License is distributed on an "AS IS" basis, +WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +for the specific language governing rights and limitations under the +License. + +The Original Code is mozilla.org code. + +The Initial Developer of the Original Code is +Netscape Communications Corporation. +Portions created by the Initial Developer are Copyright (C) 1998 +the Initial Developer. All Rights Reserved. + +Contributor(s): + Darin Fisher (original author) + +Alternatively, the contents of this file may be used under the terms of +either the GNU General Public License Version 2 or later (the "GPL"), or +the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), +in which case the provisions of the GPL or the LGPL are applicable instead +of those above. If you wish to allow use of your version of this file only +under the terms of either the GPL or the LGPL, and not to allow others to +use your version of this file under the terms of the MPL, indicate your +decision by deleting the provisions above and replace them with the notice +and other provisions required by the GPL or the LGPL. If you do not delete +the provisions above, a recipient may use your version of this file under +the terms of any one of the MPL, the GPL or the LGPL. + +This license applies to all parts of V8 that are not externally +maintained libraries. The externally maintained libraries used by V8 +are: + + - PCRE test suite, located in + test/mjsunit/third_party/regexp-pcre.js. This is based on the + test suite from PCRE-7.3, which is copyrighted by the University + of Cambridge and Google, Inc. The copyright notice and license + are embedded in regexp-pcre.js. + + - Layout tests, located in test/mjsunit/third_party. These are + based on layout tests from webkit.org which are copyrighted by + Apple Computer, Inc. and released under a 3-clause BSD license. + + - Strongtalk assembler, the basis of the files assembler-arm-inl.h, + assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h, + assembler-ia32.cc, assembler-ia32.h, assembler-x64-inl.h, + assembler-x64.cc, assembler-x64.h, assembler-mips-inl.h, + assembler-mips.cc, assembler-mips.h, assembler.cc and assembler.h. + This code is copyrighted by Sun Microsystems Inc. and released + under a 3-clause BSD license. + + - Valgrind client API header, located at third_party/valgrind/valgrind.h + This is release under the BSD license. + +These libraries have their own licenses; we recommend you read them, +as their terms may differ from the terms below. + +Copyright 2006-2012, the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +============================================================ +Notices for file(s): +/bin/make_ext4fs +/bin/mkuserimg.sh +/lib/libext4_utils_host.a +------------------------------------------------------------ + + Copyright (c) 2010, The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +============================================================ +Notices for file(s): +/lib/libsqlite_jni.so +------------------------------------------------------------ +This software is copyrighted by Christian Werner +and others. The following terms apply to all files associated with the +software unless explicitly disclaimed in individual files. + +The authors hereby grant permission to use, copy, modify, distribute, +and license this software and its documentation for any purpose, provided +that existing copyright notices are retained in all copies and that this +notice is included verbatim in any distributions. No written agreement, +license, or royalty fee is required for any of the authorized uses. +Modifications to this software may be copyrighted by their authors +and need not follow the licensing terms described here, provided that +the new terms are clearly indicated on the first page of each file where +they apply. + +IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +MODIFICATIONS. + +============================================================ +Notices for file(s): +/lib/libgccdemangle.so +------------------------------------------------------------ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. + +============================================================ +Notices for file(s): +/bin/aapt +/bin/aidl +/bin/dexdump +/bin/dx +/bin/jasmin +/framework/android-mock-generatorlib.jar +/framework/jasmin.jar +/lib/lib64cutils.a +/lib/lib64log.a +/lib/lib64utils.a +/lib/libandroidfw.a +/lib/libcutils.a +/lib/liblog.a +/lib/liblog.so +/lib/libnativehelper.so +/lib/libsqlite3_android.a +/lib/libutils.a +/lib/libzipfile.a +------------------------------------------------------------ + + Copyright (c) 2005-2008, The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +============================================================ +Notices for file(s): +/framework/org.eclipse.core.commands_3.6.0.I20100512-1500.jar +/framework/org.eclipse.core.expressions_3.4.200.v20100505.jar +/framework/org.eclipse.core.runtime_3.6.0.v20100505.jar +/framework/org.eclipse.equinox.common_3.6.0.v20100503.jar +/framework/org.eclipse.jface_3.6.2.M20110210-1200.jar +/framework/org.eclipse.osgi_3.6.2.R36x_v20110210.jar +/framework/org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar +/framework/org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar +/framework/osgi.jar +/framework/propertysheet.jar +/framework/swt.jar +------------------------------------------------------------ + + Eclipse Public License - v 1.0 + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE +PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF +THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +*1. DEFINITIONS* + +"Contribution" means: + +a) in the case of the initial Contributor, the initial code and +documentation distributed under this Agreement, and + +b) in the case of each subsequent Contributor: + +i) changes to the Program, and + +ii) additions to the Program; + +where such changes and/or additions to the Program originate from and +are distributed by that particular Contributor. A Contribution +'originates' from a Contributor if it was added to the Program by such +Contributor itself or anyone acting on such Contributor's behalf. +Contributions do not include additions to the Program which: (i) are +separate modules of software distributed in conjunction with the Program +under their own license agreement, and (ii) are not derivative works of +the Program. + +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents" mean patent claims licensable by a Contributor which +are necessarily infringed by the use or sale of its Contribution alone +or when combined with the Program. + +"Program" means the Contributions distributed in accordance with this +Agreement. + +"Recipient" means anyone who receives the Program under this Agreement, +including all Contributors. + +*2. GRANT OF RIGHTS* + +a) Subject to the terms of this Agreement, each Contributor hereby +grants Recipient a non-exclusive, worldwide, royalty-free copyright +license to reproduce, prepare derivative works of, publicly display, +publicly perform, distribute and sublicense the Contribution of such +Contributor, if any, and such derivative works, in source code and +object code form. + +b) Subject to the terms of this Agreement, each Contributor hereby +grants Recipient a non-exclusive, worldwide, royalty-free patent license +under Licensed Patents to make, use, sell, offer to sell, import and +otherwise transfer the Contribution of such Contributor, if any, in +source code and object code form. This patent license shall apply to the +combination of the Contribution and the Program if, at the time the +Contribution is added by the Contributor, such addition of the +Contribution causes such combination to be covered by the Licensed +Patents. The patent license shall not apply to any other combinations +which include the Contribution. No hardware per se is licensed hereunder. + +c) Recipient understands that although each Contributor grants the +licenses to its Contributions set forth herein, no assurances are +provided by any Contributor that the Program does not infringe the +patent or other intellectual property rights of any other entity. Each +Contributor disclaims any liability to Recipient for claims brought by +any other entity based on infringement of intellectual property rights +or otherwise. As a condition to exercising the rights and licenses +granted hereunder, each Recipient hereby assumes sole responsibility to +secure any other intellectual property rights needed, if any. For +example, if a third party patent license is required to allow Recipient +to distribute the Program, it is Recipient's responsibility to acquire +that license before distributing the Program. + +d) Each Contributor represents that to its knowledge it has sufficient +copyright rights in its Contribution, if any, to grant the copyright +license set forth in this Agreement. + +*3. REQUIREMENTS* + +A Contributor may choose to distribute the Program in object code form +under its own license agreement, provided that: + +a) it complies with the terms and conditions of this Agreement; and + +b) its license agreement: + +i) effectively disclaims on behalf of all Contributors all warranties +and conditions, express and implied, including warranties or conditions +of title and non-infringement, and implied warranties or conditions of +merchantability and fitness for a particular purpose; + +ii) effectively excludes on behalf of all Contributors all liability for +damages, including direct, indirect, special, incidental and +consequential damages, such as lost profits; + +iii) states that any provisions which differ from this Agreement are +offered by that Contributor alone and not by any other party; and + +iv) states that source code for the Program is available from such +Contributor, and informs licensees how to obtain it in a reasonable +manner on or through a medium customarily used for software exchange. + +When the Program is made available in source code form: + +a) it must be made available under this Agreement; and + +b) a copy of this Agreement must be included with each copy of the Program. + +Contributors may not remove or alter any copyright notices contained +within the Program. + +Each Contributor must identify itself as the originator of its +Contribution, if any, in a manner that reasonably allows subsequent +Recipients to identify the originator of the Contribution. + +*4. COMMERCIAL DISTRIBUTION* + +Commercial distributors of software may accept certain responsibilities +with respect to end users, business partners and the like. While this +license is intended to facilitate the commercial use of the Program, the +Contributor who includes the Program in a commercial product offering +should do so in a manner which does not create potential liability for +other Contributors. Therefore, if a Contributor includes the Program in +a commercial product offering, such Contributor ("Commercial +Contributor") hereby agrees to defend and indemnify every other +Contributor ("Indemnified Contributor") against any losses, damages and +costs (collectively "Losses") arising from claims, lawsuits and other +legal actions brought by a third party against the Indemnified +Contributor to the extent caused by the acts or omissions of such +Commercial Contributor in connection with its distribution of the +Program in a commercial product offering. The obligations in this +section do not apply to any claims or Losses relating to any actual or +alleged intellectual property infringement. In order to qualify, an +Indemnified Contributor must: a) promptly notify the Commercial +Contributor in writing of such claim, and b) allow the Commercial +Contributor to control, and cooperate with the Commercial Contributor +in, the defense and any related settlement negotiations. The Indemnified +Contributor may participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial +product offering, Product X. That Contributor is then a Commercial +Contributor. If that Commercial Contributor then makes performance +claims, or offers warranties related to Product X, those performance +claims and warranties are such Commercial Contributor's responsibility +alone. Under this section, the Commercial Contributor would have to +defend claims against the other Contributors related to those +performance claims and warranties, and if a court requires any other +Contributor to pay any damages as a result, the Commercial Contributor +must pay those damages. + +*5. NO WARRANTY* + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED +ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, +EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES +OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR +A PARTICULAR PURPOSE. Each Recipient is solely responsible for +determining the appropriateness of using and distributing the Program +and assumes all risks associated with its exercise of rights under this +Agreement , including but not limited to the risks and costs of program +errors, compliance with applicable laws, damage to or loss of data, +programs or equipment, and unavailability or interruption of operations. + +*6. DISCLAIMER OF LIABILITY* + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR +ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING +WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR +DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED +HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +*7. GENERAL* + +If any provision of this Agreement is invalid or unenforceable under +applicable law, it shall not affect the validity or enforceability of +the remainder of the terms of this Agreement, and without further action +by the parties hereto, such provision shall be reformed to the minimum +extent necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against any entity (including +a cross-claim or counterclaim in a lawsuit) alleging that the Program +itself (excluding combinations of the Program with other software or +hardware) infringes such Recipient's patent(s), then such Recipient's +rights granted under Section 2(b) shall terminate as of the date such +litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it fails +to comply with any of the material terms or conditions of this Agreement +and does not cure such failure in a reasonable period of time after +becoming aware of such noncompliance. If all Recipient's rights under +this Agreement terminate, Recipient agrees to cease use and distribution +of the Program as soon as reasonably practicable. However, Recipient's +obligations under this Agreement and any licenses granted by Recipient +relating to the Program shall continue and survive. + +Everyone is permitted to copy and distribute copies of this Agreement, +but in order to avoid inconsistency the Agreement is copyrighted and may +only be modified in the following manner. The Agreement Steward reserves +the right to publish new versions (including revisions) of this +Agreement from time to time. No one other than the Agreement Steward has +the right to modify this Agreement. The Eclipse Foundation is the +initial Agreement Steward. The Eclipse Foundation may assign the +responsibility to serve as the Agreement Steward to a suitable separate +entity. Each new version of the Agreement will be given a distinguishing +version number. The Program (including Contributions) may always be +distributed subject to the version of the Agreement under which it was +received. In addition, after a new version of the Agreement is +published, Contributor may elect to distribute the Program (including +its Contributions) under the new version. Except as expressly stated in +Sections 2(a) and 2(b) above, Recipient receives no rights or licenses +to the intellectual property of any Contributor under this Agreement, +whether expressly, by implication, estoppel or otherwise. All rights in +the Program not expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and the +intellectual property laws of the United States of America. No party to +this Agreement will bring a legal action under this Agreement more than +one year after the cause of action arose. Each party waives its rights +to a jury trial in any resulting litigation. + + +============================================================ +Notices for file(s): +/framework/bouncycastle-host.jar +/framework/bouncycastle-hostdex.jar +------------------------------------------------------------ +Copyright (c) 2000-2013 The Legion Of The Bouncy Castle (http://www.bouncycastle.org) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and +associated documentation files (the "Software"), to deal in the Software without restriction, +including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial +portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +============================================================ +Notices for file(s): +/framework/commons-compress-1.0.jar +------------------------------------------------------------ +Apache Commons Compress +Copyright 2002-2009 The Apache Software Foundation + +This product includes software developed by +The Apache Software Foundation (http://www.apache.org/). + +Original BZip2 classes contributed by Keiron Liddle +, Aftex Software to the Apache Ant project + +Original Tar classes from contributors of the Apache Ant project + +Original Zip classes from contributors of the Apache Ant project + +Original CPIO classes contributed by Markus Kuss and the jRPM project +(jrpm.sourceforge.net) + +============================================================ +Notices for file(s): +/lib/libLLVMAnalysis.a +------------------------------------------------------------ +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +Copyrights and Licenses for Third Party Software Distributed with LLVM: +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- +Autoconf llvm/autoconf + llvm/projects/ModuleMaker/autoconf + llvm/projects/sample/autoconf +CellSPU backend llvm/lib/Target/CellSPU/README.txt +Google Test llvm/utils/unittest/googletest +OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex} + +============================================================ +Notices for file(s): +/lib/libfdlibm.a +------------------------------------------------------------ +Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. + +Developed at SunSoft, a Sun Microsystems, Inc. business. +Permission to use, copy, modify, and distribute this +software is freely granted, provided that this notice +is preserved. + +============================================================ +Notices for file(s): +/framework/guavalib.jar +------------------------------------------------------------ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +============================================================ +Notices for file(s): +/framework/groovy-all-1.7.0.jar +------------------------------------------------------------ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +============================================================ +Notices for file(s): +/lib/libcorkscrew.so +------------------------------------------------------------ + + Copyright (c) 2011, The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +============================================================ +Notices for file(s): +/lib/libLLVM.so +------------------------------------------------------------ +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +Copyrights and Licenses for Third Party Software Distributed with LLVM: +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- +Autoconf llvm/autoconf + llvm/projects/ModuleMaker/autoconf + llvm/projects/sample/autoconf +CellSPU backend llvm/lib/Target/CellSPU/README.txt +Google Test llvm/utils/unittest/googletest +OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex} + +====================================================================== +== LICENSE.TXT for ./autoconf/LICENSE.TXT +====================================================================== + +------------------------------------------------------------------------------ +Autoconf Files +------------------------------------------------------------------------------ +All autoconf files are licensed under the LLVM license with the following +additions: + +llvm/autoconf/install-sh: + This script is licensed under the LLVM license, with the following + additional copyrights and restrictions: + + Copyright 1991 by the Massachusetts Institute of Technology + + Permission to use, copy, modify, distribute, and sell this software and its + documentation for any purpose is hereby granted without fee, provided that + the above copyright notice appear in all copies and that both that + copyright notice and this permission notice appear in supporting + documentation, and that the name of M.I.T. not be used in advertising or + publicity pertaining to distribution of the software without specific, + written prior permission. M.I.T. makes no representations about the + suitability of this software for any purpose. It is provided "as is" + without express or implied warranty. + +Please see the source files for additional copyrights. + + +====================================================================== +== LICENSE.TXT for ./projects/sample/autoconf/LICENSE.TXT +====================================================================== + +------------------------------------------------------------------------------ +Autoconf Files +------------------------------------------------------------------------------ +All autoconf files are licensed under the LLVM license with the following +additions: + +llvm/autoconf/install-sh: + This script is licensed under the LLVM license, with the following + additional copyrights and restrictions: + + Copyright 1991 by the Massachusetts Institute of Technology + + Permission to use, copy, modify, distribute, and sell this software and its + documentation for any purpose is hereby granted without fee, provided that + the above copyright notice appear in all copies and that both that + copyright notice and this permission notice appear in supporting + documentation, and that the name of M.I.T. not be used in advertising or + publicity pertaining to distribution of the software without specific, + written prior permission. M.I.T. makes no representations about the + suitability of this software for any purpose. It is provided "as is" + without express or implied warranty. + +Please see the source files for additional copyrights. + + +====================================================================== +== LICENSE.TXT for ./utils/unittest/googletest/LICENSE.TXT +====================================================================== + +Copyright 2008, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +====================================================================== +== LICENSE.TXT for ./include/llvm/Support/LICENSE.TXT +====================================================================== + +LLVM System Interface Library +------------------------------------------------------------------------------- +The LLVM System Interface Library is licensed under the Illinois Open Source +License and has the following additional copyright: + +Copyright (C) 2004 eXtensible Systems, Inc. + +============================================================ +Notices for file(s): +/framework/doclava.jar +------------------------------------------------------------ + + Copyright (C) 2010 Google Inc. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + +====================================================================== + +jQuery 1.2.6 - New Wave Javascript + +Copyright (c) 2008 John Resig (jquery.com) +Dual licensed under the MIT (MIT-LICENSE.txt) +and GPL (GPL-LICENSE.txt) licenses. + +Copyright (c) 2009 John Resig, http://jquery.com/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +============================================================ +Notices for file(s): +/bin/sqlite3 +/lib/libsqlite.so +------------------------------------------------------------ +2001 September 15 + +The author disclaims copyright to this source code. In place of +a legal notice, here is a blessing: + + May you do good and not evil. + May you find forgiveness for yourself and forgive others. + May you share freely, never taking more than you give. + + +============================================================ +Notices for file(s): +/framework/conscrypt-hostdex.jar +/framework/core-hostdex.jar +/framework/core-libart-hostdex.jar +/lib/libjavacore.so +/lib/libjavacrypto.so +------------------------------------------------------------ + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for the Android-specific code. == + ========================================================================= + +Android Code +Copyright 2005-2008 The Android Open Source Project + +This product includes software developed as part of +The Android Open Source Project (http://source.android.com). + + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for the Apache Harmony distribution. == + ========================================================================= + +Apache Harmony +Copyright 2006 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +Portions of Harmony were originally developed by +Intel Corporation and are licensed to the Apache Software +Foundation under the "Software Grant and Corporate Contribution +License Agreement", informally known as the "Intel Harmony CLA". + + + ========================================================================= + == NOTICE file for the ICU License. == + ========================================================================= + +Copyright (c) 1995-2009 International Business Machines Corporation and others + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, and/or sell copies of the Software, and to permit persons +to whom the Software is furnished to do so, provided that the above +copyright notice(s) and this permission notice appear in all copies of +the Software and that both the above copyright notice(s) and this +permission notice appear in supporting documentation. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR +HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY +SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF +CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, use +or other dealings in this Software without prior written authorization +of the copyright holder. + +All trademarks and registered trademarks mentioned herein are the +property of their respective owners. + + + ========================================================================= + == NOTICE file for the JUnit License. == + ========================================================================= + +Common Public License - v 1.0 + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON +PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF +THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +1. DEFINITIONS + +"Contribution" means: + + a) in the case of the initial Contributor, the initial code and + documentation distributed under this Agreement, and + b) in the case of each subsequent Contributor: + + i) changes to the Program, and + + ii) additions to the Program; + + where such changes and/or additions to the Program originate + from and are distributed by that particular Contributor. A + Contribution 'originates' from a Contributor if it was added to + the Program by such Contributor itself or anyone acting on such + Contributor's behalf. Contributions do not include additions to + the Program which: (i) are separate modules of software + distributed in conjunction with the Program under their own + license agreement, and (ii) are not derivative works of the + Program. + +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents " mean patent claims licensable by a Contributor +which are necessarily infringed by the use or sale of its Contribution +alone or when combined with the Program. + +"Program" means the Contributions distributed in accordance with this +Agreement. + +"Recipient" means anyone who receives the Program under this +Agreement, including all Contributors. + +2. GRANT OF RIGHTS + + a) Subject to the terms of this Agreement, each Contributor + hereby grants Recipient a non-exclusive, worldwide, royalty-free + copyright license to reproduce, prepare derivative works of, + publicly display, publicly perform, distribute and sublicense + the Contribution of such Contributor, if any, and such + derivative works, in source code and object code form. + + b) Subject to the terms of this Agreement, each Contributor + hereby grants Recipient a non-exclusive, worldwide, royalty-free + patent license under Licensed Patents to make, use, sell, offer + to sell, import and otherwise transfer the Contribution of such + Contributor, if any, in source code and object code form. This + patent license shall apply to the combination of the + Contribution and the Program if, at the time the Contribution is + added by the Contributor, such addition of the Contribution + causes such combination to be covered by the Licensed Patents. + The patent license shall not apply to any other combinations + which include the Contribution. No hardware per se is licensed + hereunder. + + c) Recipient understands that although each Contributor grants + the licenses to its Contributions set forth herein, no + assurances are provided by any Contributor that the Program does + not infringe the patent or other intellectual property rights of + any other entity. Each Contributor disclaims any liability to + Recipient for claims brought by any other entity based on + infringement of intellectual property rights or otherwise. As a + condition to exercising the rights and licenses granted + hereunder, each Recipient hereby assumes sole responsibility to + secure any other intellectual property rights needed, if any. + For example, if a third party patent license is required to + allow Recipient to distribute the Program, it is Recipient's + responsibility to acquire that license before distributing the + Program. + + d) Each Contributor represents that to its knowledge it has + sufficient copyright rights in its Contribution, if any, to + grant the copyright license set forth in this Agreement. + +3. REQUIREMENTS + +A Contributor may choose to distribute the Program in object code form +under its own license agreement, provided that: + + a) it complies with the terms and conditions of this Agreement; and + + b) its license agreement: + + i) effectively disclaims on behalf of all Contributors all + warranties and conditions, express and implied, including + warranties or conditions of title and non-infringement, and + implied warranties or conditions of merchantability and fitness + for a particular purpose; + + ii) effectively excludes on behalf of all Contributors all + liability for damages, including direct, indirect, special, + incidental and consequential damages, such as lost profits; + + iii) states that any provisions which differ from this Agreement + are offered by that Contributor alone and not by any other + party; and + + iv) states that source code for the Program is available from + such Contributor, and informs licensees how to obtain it in a + reasonable manner on or through a medium customarily used for + software exchange. + +When the Program is made available in source code form: + + a) it must be made available under this Agreement; and + + b) a copy of this Agreement must be included with each copy of + the Program. + +Contributors may not remove or alter any copyright notices contained +within the Program. + +Each Contributor must identify itself as the originator of its +Contribution, if any, in a manner that reasonably allows subsequent +Recipients to identify the originator of the Contribution. + +4. COMMERCIAL DISTRIBUTION + +Commercial distributors of software may accept certain +responsibilities with respect to end users, business partners and the +like. While this license is intended to facilitate the commercial use +of the Program, the Contributor who includes the Program in a +commercial product offering should do so in a manner which does not +create potential liability for other Contributors. Therefore, if a +Contributor includes the Program in a commercial product offering, +such Contributor ("Commercial Contributor") hereby agrees to defend +and indemnify every other Contributor ("Indemnified Contributor") +against any losses, damages and costs (collectively "Losses") arising +from claims, lawsuits and other legal actions brought by a third party +against the Indemnified Contributor to the extent caused by the acts +or omissions of such Commercial Contributor in connection with its +distribution of the Program in a commercial product offering. The +obligations in this section do not apply to any claims or Losses +relating to any actual or alleged intellectual property infringement. +In order to qualify, an Indemnified Contributor must: a) promptly +notify the Commercial Contributor in writing of such claim, and b) +allow the Commercial Contributor to control, and cooperate with the +Commercial Contributor in, the defense and any related settlement +negotiations. The Indemnified Contributor may participate in any such +claim at its own expense. + +For example, a Contributor might include the Program in a commercial +product offering, Product X. That Contributor is then a Commercial +Contributor. If that Commercial Contributor then makes performance +claims, or offers warranties related to Product X, those performance +claims and warranties are such Commercial Contributor's responsibility +alone. Under this section, the Commercial Contributor would have to +defend claims against the other Contributors related to those +performance claims and warranties, and if a court requires any other +Contributor to pay any damages as a result, the Commercial Contributor +must pay those damages. + +5. NO WARRANTY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS +PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY +WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY +OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely +responsible for determining the appropriateness of using and +distributing the Program and assumes all risks associated with its +exercise of rights under this Agreement, including but not limited to +the risks and costs of program errors, compliance with applicable +laws, damage to or loss of data, programs or equipment, and +unavailability or interruption of operations. + +6. DISCLAIMER OF LIABILITY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR +ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING +WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR +DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED +HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under +applicable law, it shall not affect the validity or enforceability of +the remainder of the terms of this Agreement, and without further +action by the parties hereto, such provision shall be reformed to the +minimum extent necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against a Contributor with +respect to a patent applicable to software (including a cross-claim or +counterclaim in a lawsuit), then any patent licenses granted by that +Contributor to such Recipient under this Agreement shall terminate as +of the date such litigation is filed. In addition, if Recipient +institutes patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Program +itself (excluding combinations of the Program with other software or +hardware) infringes such Recipient's patent(s), then such Recipient's +rights granted under Section 2(b) shall terminate as of the date such +litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it +fails to comply with any of the material terms or conditions of this +Agreement and does not cure such failure in a reasonable period of +time after becoming aware of such noncompliance. If all Recipient's +rights under this Agreement terminate, Recipient agrees to cease use +and distribution of the Program as soon as reasonably practicable. +However, Recipient's obligations under this Agreement and any licenses +granted by Recipient relating to the Program shall continue and +survive. + +Everyone is permitted to copy and distribute copies of this Agreement, +but in order to avoid inconsistency the Agreement is copyrighted and +may only be modified in the following manner. The Agreement Steward +reserves the right to publish new versions (including revisions) of +this Agreement from time to time. No one other than the Agreement +Steward has the right to modify this Agreement. IBM is the initial +Agreement Steward. IBM may assign the responsibility to serve as the +Agreement Steward to a suitable separate entity. Each new version of +the Agreement will be given a distinguishing version number. The +Program (including Contributions) may always be distributed subject to +the version of the Agreement under which it was received. In addition, +after a new version of the Agreement is published, Contributor may +elect to distribute the Program (including its Contributions) under +the new version. Except as expressly stated in Sections 2(a) and 2(b) +above, Recipient receives no rights or licenses to the intellectual +property of any Contributor under this Agreement, whether expressly, +by implication, estoppel or otherwise. All rights in the Program not +expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and +the intellectual property laws of the United States of America. No +party to this Agreement will bring a legal action under this Agreement +more than one year after the cause of action arose. Each party waives +its rights to a jury trial in any resulting litigation. + + + ========================================================================= + == NOTICE file for the KXML License. == + ========================================================================= + +Copyright (c) 2002,2003, Stefan Haustein, Oberhausen, Rhld., Germany + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + ========================================================================= + == NOTICE file for the SQLite Java Wrapper License. == + ========================================================================= + +This software is copyrighted by Christian Werner +and others. The following terms apply to all files associated with the +software unless explicitly disclaimed in individual files. + +The authors hereby grant permission to use, copy, modify, distribute, +and license this software and its documentation for any purpose, provided +that existing copyright notices are retained in all copies and that this +notice is included verbatim in any distributions. No written agreement, +license, or royalty fee is required for any of the authorized uses. +Modifications to this software may be copyrighted by their authors +and need not follow the licensing terms described here, provided that +the new terms are clearly indicated on the first page of each file where +they apply. + +IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +MODIFICATIONS. + + + ========================================================================= + == NOTICE file for the W3C License. == + ========================================================================= + +Copyright (c) 2000 World Wide Web Consortium, (Massachusetts Institute +of Technology, Institut National de Recherche en Informatique et en +Automatique, Keio University). All Rights Reserved. This program is +distributed under the W3C's Software Intellectual Property License. +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +See W3C License http://www.w3.org/Consortium/Legal/ for more details. + +============================================================ +Notices for file(s): +/lib/libexpat-host.so +/lib/libexpat.a +------------------------------------------------------------ +Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd + and Clark Cooper +Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Expat maintainers. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +============================================================ +Notices for file(s): +/lib/libbcc.so +------------------------------------------------------------ +========================== +NOTICE file for libbcc.git +========================== + +* NOTICE for lib/ExecutionEngine/, lib/ScriptCRT/, include and helper/. + + Copyright (c) 2005-2011, The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + + +* NOTICE for runtime/ and lib/CodeGen/. + Note: The NOTICE is the same for another git project, external/llvm.git. + +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +Copyrights and Licenses for Third Party Software Distributed with LLVM: +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- +Autoconf llvm/autoconf + llvm/projects/ModuleMaker/autoconf + llvm/projects/sample/autoconf +CellSPU backend llvm/lib/Target/CellSPU/README.txt +Google Test llvm/utils/unittest/googletest +OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex} + + + +* NOTICE for tests/disassem.cpp and tests/disassem.h. + +/* $NetBSD: disassem.c,v 1.14 2003/03/27 16:58:36 mycroft Exp $ */ + +/*- + * Copyright (c) 1996 Mark Brinicombe. + * Copyright (c) 1996 Brini. + * + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by Brini. + * 4. The name of the company nor the name of the author may be used to + * endorse or promote products derived from this software without specific + * prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY BRINI ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL BRINI OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * RiscBSD kernel project + * + * db_disasm.c + * + * Kernel disassembler + * + * Created : 10/02/96 + * + * Structured after the sparc/sparc/db_disasm.c by David S. Miller & + * Paul Kranenburg + * + * This code is not complete. Not all instructions are disassembled. + */ + +============================================================ +Notices for file(s): +/framework/emmalib.jar +------------------------------------------------------------ +Common Public License - v 1.0 + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S +ACCEPTANCE OF THIS AGREEMENT. + +1. DEFINITIONS + +"Contribution" means: + + a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and + b) in the case of each subsequent Contributor: + + i) changes to the Program, and + + ii) additions to the Program; + + where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was +added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules +of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. + +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. + +"Program" means the Contributions distributed in accordance with this Agreement. + +"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. + +2. GRANT OF RIGHTS + + a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative +works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. + + b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, +use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the +combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered +by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. + + c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the +Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other +entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole +responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the +Program, it is Recipient's responsibility to acquire that license before distributing the Program. + + d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this +Agreement. + +3. REQUIREMENTS + +A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: + + a) it complies with the terms and conditions of this Agreement; and + + b) its license agreement: + + i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, +and implied warranties or conditions of merchantability and fitness for a particular purpose; + + ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost +profits; + + iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and + + iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium +customarily used for software exchange. + +When the Program is made available in source code form: + + a) it must be made available under this Agreement; and + + b) a copy of this Agreement must be included with each copy of the Program. + +Contributors may not remove or alter any copyright notices contained within the Program. + +Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the +Contribution. + +4. COMMERCIAL DISTRIBUTION + +Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the +commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other +Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify +every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a +third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a +commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to +qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate +with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor +then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this +section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other +Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. + +5. NO WARRANTY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, +WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for +determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to +the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. + +6. DISCLAIMER OF LIABILITY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this +Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any +patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes +patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other +software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a +reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the +Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and +survive. + +Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following +manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the +right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new +version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under +which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new +version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, +whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal +action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. + +============================================================ +Notices for file(s): +/bin/mksdcard +------------------------------------------------------------ +Copyright 2007, The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Google Inc. nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY Google Inc. ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +EVENT SHALL Google Inc. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +============================================================ +Notices for file(s): +/framework/org-netbeans-api-visual.jar +/framework/org-openide-util.jar +------------------------------------------------------------ +The GNU General Public License (GPL) Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. + +59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away +your freedom to share and change it. By contrast, the GNU +General Public License is intended to guarantee your freedom +to share and change free software--to make sure the software +is free for all its users. This General Public License +applies to most of the Free Software Foundation's software +and to any other program whose authors commit to using it. +(Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can +apply it to your programs, too. When we speak of free +software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and +charge for this service if you wish), that you receive +source code or can get it if you want it, that you can +change the software or use pieces of it in new free +programs; and that you know you can do these things. To +protect your rights, we need to make restrictions that +forbid anyone to deny you these rights or to ask you to +surrender the rights. These restrictions translate to +certain responsibilities for you if you distribute copies of +the software, or if you modify it. + +For example, if you distribute copies of such a program, +whether gratis or for a fee, you must give the recipients +all the rights that you have. You must make sure that they, +too, receive or can get the source code. And you must show +them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the +software, and (2) offer you this license which gives you +legal permission to copy, distribute and/or modify the +software. + +Also, for each author's protection and ours, we want to make +certain that everyone understands that there is no warranty +for this free software. If the software is modified by +someone else and passed on, we want its recipients to know +that what they have is not the original, so that any +problems introduced by others will not reflect on the +original authors' reputations. + +Finally, any free program is threatened constantly by +software patents. We wish to avoid the danger that +redistributors of a free program will individually obtain +patent licenses, in effect making the program proprietary. +To prevent this, we have made it clear that any patent must +be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution +and modification follow. + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND +MODIFICATION + +0. This License applies to any program or other work which +contains a notice placed by the copyright holder saying it +may be distributed under the terms of this General Public +License. The "Program", below, refers to any such program or +work, and a "work based on the Program" means either the +Program or any derivative work under copyright law: that is +to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into +another language. (Hereinafter, translation is included +without limitation in the term "modification".) Each +licensee is addressed as "you". + +Activities other than copying, distribution and modification +are not covered by this License; they are outside its scope. +The act of running the Program is not restricted, and the +output from the Program is covered only if its contents +constitute a work based on the Program (independent of +having been made by running the Program). Whether that is +true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the +Program's source code as you receive it, in any medium, +provided that you conspicuously and appropriately publish on +each copy an appropriate copyright notice and disclaimer of +warranty; keep intact all the notices that refer to this +License and to the absence of any warranty; and give any +other recipients of the Program a copy of this License along +with the Program. + +You may charge a fee for the physical act of transferring a +copy, and you may at your option offer warranty protection +in exchange for a fee. + +2. You may modify your copy or copies of the Program or any +portion of it, thus forming a work based on the Program, and +copy and distribute such modifications or work under the +terms of Section 1 above, provided that you also meet all of +these conditions: + +a) You must cause the modified files to carry prominent +notices stating that you changed the files and the date of +any change. + +b) You must cause any work that you distribute or publish, +that in whole or in part contains or is derived from the +Program or any part thereof, to be licensed as a whole at no +charge to all third parties under the terms of this License. + +c) If the modified program normally reads commands +interactively when run, you must cause it, when started +running for such interactive use in the most ordinary way, +to print or display an announcement including an appropriate +copyright notice and a notice that there is no warranty (or +else, saying that you provide a warranty) and that users may +redistribute the program under these conditions, and telling +the user how to view a copy of this License. (Exception: if +the Program itself is interactive but does not normally +print such an announcement, your work based on the Program +is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the +Program, and can be reasonably considered independent and +separate works in themselves, then this License, and its +terms, do not apply to those sections when you distribute +them as separate works. But when you distribute the same +sections as part of a whole which is a work based on the +Program, the distribution of the whole must be on the terms +of this License, whose permissions for other licensees +extend to the entire whole, and thus to each and every part +regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights +or contest your rights to work written entirely by you; +rather, the intent is to exercise the right to control the +distribution of derivative or collective works based on the +Program. In addition, mere aggregation of another work not +based on the Program with the Program (or with a work based +on the Program) on a volume of a storage or distribution +medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based +on it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you +also do one of the following: + +a) Accompany it with the complete corresponding +machine-readable source code, which must be distributed +under the terms of Sections 1 and 2 above on a medium +customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least +three years, to give any third party, for a charge no more +than your cost of physically performing source distribution, +a complete machine-readable copy of the corresponding source +code, to be distributed under the terms of Sections 1 and 2 +above on a medium customarily used for software interchange; +or, + +c) Accompany it with the information you received as to the +offer to distribute corresponding source code. (This +alternative is allowed only for noncommercial distribution +and only if you received the program in object code or +executable form with such an offer, in accord with +Subsection b above.) + +The source code for a work means the preferred form of the +work for making modifications to it. For an executable work, +complete source code means all the source code for all +modules it contains, plus any associated interface +definition files, plus the scripts used to control +compilation and installation of the executable. However, as +a special exception, the source code distributed need not +include anything that is normally distributed (in either +source or binary form) with the major components (compiler, +kernel, and so on) of the operating system on which the +executable runs, unless that component itself accompanies +the executable. If distribution of executable or object code +is made by offering access to copy from a designated place, +then offering equivalent access to copy the source code from +the same place counts as distribution of the source code, +even though third parties are not compelled to copy the +source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the +Program except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense or distribute +the Program is void, and will automatically terminate your +rights under this License. However, parties who have +received copies, or rights, from you under this License will +not have their licenses terminated so long as such parties +remain in full compliance. + +5. You are not required to accept this License, since you +have not signed it. However, nothing else grants you +permission to modify or distribute the Program or its +derivative works. These actions are prohibited by law if you +do not accept this License. Therefore, by modifying or +distributing the Program (or any work based on the Program), +you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or +modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based +on the Program), the recipient automatically receives a +license from the original licensor to copy, distribute or +modify the Program subject to these terms and conditions. +You may not impose any further restrictions on the +recipients' exercise of the rights granted herein. You are +not responsible for enforcing compliance by third parties to +this License. + +7. If, as a consequence of a court judgment or allegation of +patent infringement or for any other reason (not limited to +patent issues), conditions are imposed on you (whether by +court order, agreement or otherwise) that contradict the +conditions of this License, they do not excuse you from the +conditions of this License. If you cannot distribute so as +to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a +consequence you may not distribute the Program at all. For +example, if a patent license would not permit royalty-free +redistribution of the Program by all those who receive +copies directly or indirectly through you, then the only way +you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or +unenforceable under any particular circumstance, the balance +of the section is intended to apply and the section as a +whole is intended to apply in other circumstances. It is not +the purpose of this section to induce you to infringe any +patents or other property right claims or to contest +validity of any such claims; this section has the sole +purpose of protecting the integrity of the free software +distribution system, which is implemented by public license +practices. Many people have made generous contributions to +the wide range of software distributed through that system +in reliance on consistent application of that system; it is +up to the author/donor to decide if he or she is willing to +distribute software through any other system and a licensee +cannot impose that choice. + +This section is intended to make thoroughly clear what is +believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is +restricted in certain countries either by patents or by +copyrighted interfaces, the original copyright holder who +places the Program under this License may add an explicit +geographical distribution limitation excluding those +countries, so that distribution is permitted only in or +among countries not thus excluded. In such case, this +License incorporates the limitation as if written in the +body of this License. + +9. The Free Software Foundation may publish revised and/or +new versions of the General Public License from time to +time. Such new versions will be similar in spirit to the +present version, but may differ in detail to address new +problems or concerns. + +Each version is given a distinguishing version number. If +the Program specifies a version number of this License which +applies to it and "any later version", you have the option +of following the terms and conditions either of that version +or of any later version published by the Free Software +Foundation. If the Program does not specify a version number +of this License, you may choose any version ever published +by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into +other free programs whose distribution conditions are +different, write to the author to ask for permission. For +software which is copyrighted by the Free Software +Foundation, write to the Free Software Foundation; we +sometimes make exceptions for this. Our decision will be +guided by the two goals of preserving the free status of all +derivatives of our free software and of promoting the +sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS +NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE +COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM +"AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR +IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE +OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE +DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED +TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY +WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED +ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, +SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF +THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT +LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR +LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE +PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH +HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the +greatest possible use to the public, the best way to achieve +this is to make it free software which everyone can +redistribute and change under these terms. + +To do so, attach the following notices to the program. It is +safest to attach them to the start of each source file to +most effectively convey the exclusion of warranty; and each +file should have at least the "copyright" line and a pointer +to where the full notice is found. + +One line to give the program's name and a brief idea of what +it does. + +Copyright (C) +This program is free software; you can redistribute it +and/or modify it under the terms of the GNU General Public +License as published by the Free Software Foundation; either +version 2 of the License, or (at your option) any later +version. This program is distributed in the hope that it +will be useful, but WITHOUT ANY WARRANTY; without even the +implied warranty of MERCHANTABILITY or FITNESS FOR A +PARTICULAR PURPOSE. See the GNU General Public License for +more details. You should have received a copy of the GNU +General Public License along with this program; if not, +write to the Free Software Foundation, Inc., 59 Temple +Place, Suite 330, Boston, MA 02111-1307 USA + +Also add information on how to contact you by electronic and +paper mail. If the program is interactive, make it output a +short notice like this when it starts in an interactive +mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details +type `show w'. This is free software, and you are welcome to +redistribute it under certain conditions; type `show c' for +details. The hypothetical commands `show w' and `show c' +should show the appropriate parts of the General Public +License. Of course, the commands you use may be called +something other than `show w' and `show c'; they could even +be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a +programmer) or your school, if any, to sign a "copyright +disclaimer" for the program, if necessary. Here is a sample; +alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in +the program `Gnomovision' (which makes passes at compilers) +written by James Hacker. + +signature of Ty Coon, 1 April 1989 +Ty Coon, President of Vice +This General Public License does not permit incorporating +your program into proprietary programs. If your program is a +subroutine library, you may consider it more useful to +permit linking proprietary applications with the library. If +this is what you want to do, use the GNU Library General +Public License instead of this License. + +"CLASSPATH" EXCEPTION TO THE GPL VERSION 2 + +Certain source files distributed by Sun Microsystems, Inc. +are subject to the following clarification and special +exception to the GPL Version 2, but only where Sun has +expressly included in the particular source file's header +the words "Sun designates this particular file as subject +to the "Classpath" exception as provided by Sun in the +License file that accompanied this code." + + Linking this library statically or dynamically with other +modules is making a combined work based on this library. +Thus, the terms and conditions of the GNU General Public +License Version 2 cover the whole combination. + + As a special exception, the copyright holders of this +library give you permission to link this library with +independent modules to produce an executable, regardless of +the license terms of these independent modules, and to copy +and distribute the resulting executable under terms of your +choice, provided that you also meet, for each linked +independent module, the terms and conditions of the license +of that module. An independent module is a module which is +not derived from or based on this library. If you modify +this library, you may extend this exception to your version +of the library, but you are not obligated to do so. If you +do not wish to do so, delete this exception statement from +your version. +============================================================ +Notices for file(s): +/bin/adb +------------------------------------------------------------ + + Copyright (c) 2006-2009, The Android Open Source Project + Copyright 2006, Brian Swetland + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + +============================================================ +Notices for file(s): +/framework/apache-xml-hostdex.jar +------------------------------------------------------------ + ========================================================================= + == NOTICE file corresponding to section 4(d) of the Apache License, == + == Version 2.0, in this case for the Apache Xalan Java distribution. == + ========================================================================= + + Apache Xalan (Xalan XSLT processor) + Copyright 1999-2006 The Apache Software Foundation + + Apache Xalan (Xalan serializer) + Copyright 1999-2006 The Apache Software Foundation + + This product includes software developed at + The Apache Software Foundation (http://www.apache.org/). + + ========================================================================= + Portions of this software was originally based on the following: + - software copyright (c) 1999-2002, Lotus Development Corporation., + http://www.lotus.com. + - software copyright (c) 2001-2002, Sun Microsystems., + http://www.sun.com. + - software copyright (c) 2003, IBM Corporation., + http://www.ibm.com. + + ========================================================================= + The binary distribution package (ie. jars, samples and documentation) of + this product includes software developed by the following: + + - The Apache Software Foundation + - Xerces Java - see LICENSE.txt + - JAXP 1.3 APIs - see LICENSE.txt + - Bytecode Engineering Library - see LICENSE.txt + - Regular Expression - see LICENSE.txt + + - Scott Hudson, Frank Flannery, C. Scott Ananian + - CUP Parser Generator runtime (javacup\runtime) - see LICENSE.txt + + ========================================================================= + The source distribution package (ie. all source and tools required to build + Xalan Java) of this product includes software developed by the following: + + - The Apache Software Foundation + - Xerces Java - see LICENSE.txt + - JAXP 1.3 APIs - see LICENSE.txt + - Bytecode Engineering Library - see LICENSE.txt + - Regular Expression - see LICENSE.txt + - Ant - see LICENSE.txt + - Stylebook doc tool - see LICENSE.txt + + - Elliot Joel Berk and C. Scott Ananian + - Lexical Analyzer Generator (JLex) - see LICENSE.txt + + ========================================================================= + Apache Xerces Java + Copyright 1999-2006 The Apache Software Foundation + + This product includes software developed at + The Apache Software Foundation (http://www.apache.org/). + + Portions of Apache Xerces Java in xercesImpl.jar and xml-apis.jar + were originally based on the following: + - software copyright (c) 1999, IBM Corporation., http://www.ibm.com. + - software copyright (c) 1999, Sun Microsystems., http://www.sun.com. + - voluntary contributions made by Paul Eng on behalf of the + Apache Software Foundation that were originally developed at iClick, Inc., + software copyright (c) 1999. + + ========================================================================= + Apache xml-commons xml-apis (redistribution of xml-apis.jar) + + Apache XML Commons + Copyright 2001-2003,2006 The Apache Software Foundation. + + This product includes software developed at + The Apache Software Foundation (http://www.apache.org/). + + Portions of this software were originally based on the following: + - software copyright (c) 1999, IBM Corporation., http://www.ibm.com. + - software copyright (c) 1999, Sun Microsystems., http://www.sun.com. + - software copyright (c) 2000 World Wide Web Consortium, http://www.w3.org + + +============================================================ +Notices for file(s): +/bin/llvm-rs-cc +/bin/rs-spec-gen +/lib/libslang.a +------------------------------------------------------------ +========================= +NOTICE file for slang.git +========================= + + Copyright (c) 2005-2011, The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + + +=========================================== +NOTICE file for external/clang (clang.git). +Note: libclang*.a are statically linked. +=========================================== + +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2007-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- + + + + +========================================= +NOTICE file for external/llvm (llvm.git). +Note: libLLVM*.a are statically linked. +========================================= + +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +Copyrights and Licenses for Third Party Software Distributed with LLVM: +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- +Autoconf llvm/autoconf + llvm/projects/ModuleMaker/autoconf + llvm/projects/sample/autoconf +CellSPU backend llvm/lib/Target/CellSPU/README.txt +Google Test llvm/utils/unittest/googletest +OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex} + +============================================================ +Notices for file(s): +/bin/minigzip +/lib/libunz.a +/lib/libz-host.so +/lib/libz.a +------------------------------------------------------------ + (C) 1995-2013 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + +============================================================ +Notices for file(s): +/bin/mksnapshot.arm +------------------------------------------------------------ +Copyright (c) 1994-2006 Sun Microsystems Inc. +All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +- Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. + +- Redistribution in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +- Neither the name of Sun Microsystems or the names of contributors may +be used to endorse or promote products derived from this software without +specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +The original source code covered by the above license above has been +modified significantly by Google Inc. +Copyright 2006-2008 the V8 project authors. All rights reserved. + +============================================================ +Notices for file(s): +/lib/libpng.a +------------------------------------------------------------ + +This copy of the libpng notices is provided for your convenience. In case of +any discrepancy between this copy and the notices in the file png.h that is +included in the libpng distribution, the latter shall prevail. + +COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: + +If you modify libpng you may insert additional notices immediately following +this sentence. + +This code is released under the libpng license. + +libpng versions 1.2.6, August 15, 2004, through 1.2.46, July 9, 2011, are +Copyright (c) 2004, 2006-2009 Glenn Randers-Pehrson, and are +distributed according to the same disclaimer and license as libpng-1.2.5 +with the following individual added to the list of Contributing Authors + + Cosmin Truta + +libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are +Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are +distributed according to the same disclaimer and license as libpng-1.0.6 +with the following individuals added to the list of Contributing Authors + + Simon-Pierre Cadieux + Eric S. Raymond + Gilles Vollant + +and with the following additions to the disclaimer: + + There is no warranty against interference with your enjoyment of the + library or against infringement. There is no warranty that our + efforts or the library will fulfill any of your particular purposes + or needs. This library is provided with all faults, and the entire + risk of satisfactory quality, performance, accuracy, and effort is with + the user. + +libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are +Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are +distributed according to the same disclaimer and license as libpng-0.96, +with the following individuals added to the list of Contributing Authors: + + Tom Lane + Glenn Randers-Pehrson + Willem van Schaik + +libpng versions 0.89, June 1996, through 0.96, May 1997, are +Copyright (c) 1996, 1997 Andreas Dilger +Distributed according to the same disclaimer and license as libpng-0.88, +with the following individuals added to the list of Contributing Authors: + + John Bowler + Kevin Bracey + Sam Bushell + Magnus Holmgren + Greg Roelofs + Tom Tanner + +libpng versions 0.5, May 1995, through 0.88, January 1996, are +Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. + +For the purposes of this copyright and license, "Contributing Authors" +is defined as the following set of individuals: + + Andreas Dilger + Dave Martindale + Guy Eric Schalnat + Paul Schmidt + Tim Wegner + +The PNG Reference Library is supplied "AS IS". The Contributing Authors +and Group 42, Inc. disclaim all warranties, expressed or implied, +including, without limitation, the warranties of merchantability and of +fitness for any purpose. The Contributing Authors and Group 42, Inc. +assume no liability for direct, indirect, incidental, special, exemplary, +or consequential damages, which may result from the use of the PNG +Reference Library, even if advised of the possibility of such damage. + +Permission is hereby granted to use, copy, modify, and distribute this +source code, or portions hereof, for any purpose, without fee, subject +to the following restrictions: + +1. The origin of this source code must not be misrepresented. + +2. Altered versions must be plainly marked as such and must not + be misrepresented as being the original source. + +3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + +The Contributing Authors and Group 42, Inc. specifically permit, without +fee, and encourage the use of this source code as a component to +supporting the PNG file format in commercial products. If you use this +source code in a product, acknowledgment is not required but would be +appreciated. + + +A "png_get_copyright" function is available, for convenient use in "about" +boxes and the like: + + printf("%s",png_get_copyright(NULL)); + +Also, the PNG logo (in PNG format, of course) is supplied in the +files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31). + +Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a +certification mark of the Open Source Initiative. + +Glenn Randers-Pehrson +glennrp at users.sourceforge.net +July 9, 2011 + +============================================================ +Notices for file(s): +/framework/antlr-runtime.jar +------------------------------------------------------------ +[The "BSD license"] +Copyright (c) 201 Terence Parr +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +============================================================ +Notices for file(s): +/framework/junit.jar +------------------------------------------------------------ +Common Public License - v 1.0 + + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + + +1. DEFINITIONS + +"Contribution" means: + +a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and +b) in the case of each subsequent Contributor: +i) changes to the Program, and +ii) additions to the Program; +where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. + +"Contributor" means any person or entity that distributes the Program. + + +"Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. + + +"Program" means the Contributions distributed in accordance with this Agreement. + + +"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. + + +2. GRANT OF RIGHTS + +a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. +b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. +c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. +d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. +3. REQUIREMENTS + +A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: + +a) it complies with the terms and conditions of this Agreement; and +b) its license agreement: +i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; +ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; +iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and +iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. +When the Program is made available in source code form: + +a) it must be made available under this Agreement; and +b) a copy of this Agreement must be included with each copy of the Program. + +Contributors may not remove or alter any copyright notices contained within the Program. + + +Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. + + +4. COMMERCIAL DISTRIBUTION + +Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. + + +For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. + + +5. NO WARRANTY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. + + +6. DISCLAIMER OF LIABILITY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + + +If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. + + +All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. + + +Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. + + +This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. +============================================================ +Notices for file(s): +/framework/ant-glob.jar +------------------------------------------------------------ +/* + * Apache License + * Version 2.0, January 2004 + * http://www.apache.org/licenses/ + * + * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + * + * 1. Definitions. + * + * "License" shall mean the terms and conditions for use, reproduction, + * and distribution as defined by Sections 1 through 9 of this document. + * + * "Licensor" shall mean the copyright owner or entity authorized by + * the copyright owner that is granting the License. + * + * "Legal Entity" shall mean the union of the acting entity and all + * other entities that control, are controlled by, or are under common + * control with that entity. For the purposes of this definition, + * "control" means (i) the power, direct or indirect, to cause the + * direction or management of such entity, whether by contract or + * otherwise, or (ii) ownership of fifty percent (50%) or more of the + * outstanding shares, or (iii) beneficial ownership of such entity. + * + * "You" (or "Your") shall mean an individual or Legal Entity + * exercising permissions granted by this License. + * + * "Source" form shall mean the preferred form for making modifications, + * including but not limited to software source code, documentation + * source, and configuration files. + * + * "Object" form shall mean any form resulting from mechanical + * transformation or translation of a Source form, including but + * not limited to compiled object code, generated documentation, + * and conversions to other media types. + * + * "Work" shall mean the work of authorship, whether in Source or + * Object form, made available under the License, as indicated by a + * copyright notice that is included in or attached to the work + * (an example is provided in the Appendix below). + * + * "Derivative Works" shall mean any work, whether in Source or Object + * form, that is based on (or derived from) the Work and for which the + * editorial revisions, annotations, elaborations, or other modifications + * represent, as a whole, an original work of authorship. For the purposes + * of this License, Derivative Works shall not include works that remain + * separable from, or merely link (or bind by name) to the interfaces of, + * the Work and Derivative Works thereof. + * + * "Contribution" shall mean any work of authorship, including + * the original version of the Work and any modifications or additions + * to that Work or Derivative Works thereof, that is intentionally + * submitted to Licensor for inclusion in the Work by the copyright owner + * or by an individual or Legal Entity authorized to submit on behalf of + * the copyright owner. For the purposes of this definition, "submitted" + * means any form of electronic, verbal, or written communication sent + * to the Licensor or its representatives, including but not limited to + * communication on electronic mailing lists, source code control systems, + * and issue tracking systems that are managed by, or on behalf of, the + * Licensor for the purpose of discussing and improving the Work, but + * excluding communication that is conspicuously marked or otherwise + * designated in writing by the copyright owner as "Not a Contribution." + * + * "Contributor" shall mean Licensor and any individual or Legal Entity + * on behalf of whom a Contribution has been received by Licensor and + * subsequently incorporated within the Work. + * + * 2. Grant of Copyright License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * copyright license to reproduce, prepare Derivative Works of, + * publicly display, publicly perform, sublicense, and distribute the + * Work and such Derivative Works in Source or Object form. + * + * 3. Grant of Patent License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * (except as stated in this section) patent license to make, have made, + * use, offer to sell, sell, import, and otherwise transfer the Work, + * where such license applies only to those patent claims licensable + * by such Contributor that are necessarily infringed by their + * Contribution(s) alone or by combination of their Contribution(s) + * with the Work to which such Contribution(s) was submitted. If You + * institute patent litigation against any entity (including a + * cross-claim or counterclaim in a lawsuit) alleging that the Work + * or a Contribution incorporated within the Work constitutes direct + * or contributory patent infringement, then any patent licenses + * granted to You under this License for that Work shall terminate + * as of the date such litigation is filed. + * + * 4. Redistribution. You may reproduce and distribute copies of the + * Work or Derivative Works thereof in any medium, with or without + * modifications, and in Source or Object form, provided that You + * meet the following conditions: + * + * (a) You must give any other recipients of the Work or + * Derivative Works a copy of this License; and + * + * (b) You must cause any modified files to carry prominent notices + * stating that You changed the files; and + * + * (c) You must retain, in the Source form of any Derivative Works + * that You distribute, all copyright, patent, trademark, and + * attribution notices from the Source form of the Work, + * excluding those notices that do not pertain to any part of + * the Derivative Works; and + * + * (d) If the Work includes a "NOTICE" text file as part of its + * distribution, then any Derivative Works that You distribute must + * include a readable copy of the attribution notices contained + * within such NOTICE file, excluding those notices that do not + * pertain to any part of the Derivative Works, in at least one + * of the following places: within a NOTICE text file distributed + * as part of the Derivative Works; within the Source form or + * documentation, if provided along with the Derivative Works; or, + * within a display generated by the Derivative Works, if and + * wherever such third-party notices normally appear. The contents + * of the NOTICE file are for informational purposes only and + * do not modify the License. You may add Your own attribution + * notices within Derivative Works that You distribute, alongside + * or as an addendum to the NOTICE text from the Work, provided + * that such additional attribution notices cannot be construed + * as modifying the License. + * + * You may add Your own copyright statement to Your modifications and + * may provide additional or different license terms and conditions + * for use, reproduction, or distribution of Your modifications, or + * for any such Derivative Works as a whole, provided Your use, + * reproduction, and distribution of the Work otherwise complies with + * the conditions stated in this License. + * + * 5. Submission of Contributions. Unless You explicitly state otherwise, + * any Contribution intentionally submitted for inclusion in the Work + * by You to the Licensor shall be under the terms and conditions of + * this License, without any additional terms or conditions. + * Notwithstanding the above, nothing herein shall supersede or modify + * the terms of any separate license agreement you may have executed + * with Licensor regarding such Contributions. + * + * 6. Trademarks. This License does not grant permission to use the trade + * names, trademarks, service marks, or product names of the Licensor, + * except as required for reasonable and customary use in describing the + * origin of the Work and reproducing the content of the NOTICE file. + * + * 7. Disclaimer of Warranty. Unless required by applicable law or + * agreed to in writing, Licensor provides the Work (and each + * Contributor provides its Contributions) on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied, including, without limitation, any warranties or conditions + * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + * PARTICULAR PURPOSE. You are solely responsible for determining the + * appropriateness of using or redistributing the Work and assume any + * risks associated with Your exercise of permissions under this License. + * + * 8. Limitation of Liability. In no event and under no legal theory, + * whether in tort (including negligence), contract, or otherwise, + * unless required by applicable law (such as deliberate and grossly + * negligent acts) or agreed to in writing, shall any Contributor be + * liable to You for damages, including any direct, indirect, special, + * incidental, or consequential damages of any character arising as a + * result of this License or out of the use or inability to use the + * Work (including but not limited to damages for loss of goodwill, + * work stoppage, computer failure or malfunction, or any and all + * other commercial damages or losses), even if such Contributor + * has been advised of the possibility of such damages. + * + * 9. Accepting Warranty or Additional Liability. While redistributing + * the Work or Derivative Works thereof, You may choose to offer, + * and charge a fee for, acceptance of support, warranty, indemnity, + * or other liability obligations and/or rights consistent with this + * License. However, in accepting such obligations, You may act only + * on Your own behalf and on Your sole responsibility, not on behalf + * of any other Contributor, and only if You agree to indemnify, + * defend, and hold each Contributor harmless for any liability + * incurred by, or claims asserted against, such Contributor by reason + * of your accepting any such warranty or additional liability. + * + * END OF TERMS AND CONDITIONS + * + * APPENDIX: How to apply the Apache License to your work. + * + * To apply the Apache License to your work, attach the following + * boilerplate notice, with the fields enclosed by brackets "[]" + * replaced with your own identifying information. (Don't include + * the brackets!) The text should be enclosed in the appropriate + * comment syntax for the file format. We also recommend that a + * file or class name and description of purpose be included on the + * same "printed page" as the copyright notice for easier + * identification within third-party archives. + * + * Copyright [yyyy] [name of copyright owner] + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +W3C� SOFTWARE NOTICE AND LICENSE +http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 + +This work (and included software, documentation such as READMEs, or other +related items) is being provided by the copyright holders under the following +license. By obtaining, using and/or copying this work, you (the licensee) agree +that you have read, understood, and will comply with the following terms and +conditions. + +Permission to copy, modify, and distribute this software and its documentation, +with or without modification, for any purpose and without fee or royalty is +hereby granted, provided that you include the following on ALL copies of the +software and documentation or portions thereof, including modifications: + + 1. The full text of this NOTICE in a location viewable to users of the + redistributed or derivative work. + 2. Any pre-existing intellectual property disclaimers, notices, or terms + and conditions. If none exist, the W3C Software Short Notice should be + included (hypertext is preferred, text is permitted) within the body + of any redistributed or derivative code. + 3. Notice of any changes or modifications to the files, including the date + changes were made. (We recommend you provide URIs to the location from + which the code is derived.) + +THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE +NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED +TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT +THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY +PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. + +COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. + +The name and trademarks of copyright holders may NOT be used in advertising or +publicity pertaining to the software without specific, written prior permission. +Title to copyright in this software and any associated documentation will at +all times remain with copyright holders. + +____________________________________ + +This formulation of W3C's notice and license became active on December 31 2002. +This version removes the copyright ownership notice such that this license can +be used with materials other than those owned by the W3C, reflects that ERCIM +is now a host of the W3C, includes references to this specific dated version of +the license, and removes the ambiguous grant of "use". Otherwise, this version +is the same as the previous version and is written so as to preserve the Free +Software Foundation's assessment of GPL compatibility and OSI's certification +under the Open Source Definition. Please see our Copyright FAQ for common +questions about using materials from our site, including specific terms and +conditions for packages like libwww, Amaya, and Jigsaw. Other questions about +this notice can be directed to site-policy@w3.org. + +Joseph Reagle + +This license came from: http://www.megginson.com/SAX/copying.html + However please note future versions of SAX may be covered + under http://saxproject.org/?selected=pd + +SAX2 is Free! + +I hereby abandon any property rights to SAX 2.0 (the Simple API for +XML), and release all of the SAX 2.0 source code, compiled code, and +documentation contained in this distribution into the Public Domain. +SAX comes with NO WARRANTY or guarantee of fitness for any +purpose. + +David Megginson, david@megginson.com +2000-05-05 + +============================================================ +Notices for file(s): +/lib/libclang.so +/lib/libclangAnalysis.a +------------------------------------------------------------ +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2007-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- + + +============================================================ +Notices for file(s): +/lib/libcrypto-host.so +/lib/libcrypto_static.a +/lib/libssl-host.so +------------------------------------------------------------ + + LICENSE ISSUES + ============== + + The OpenSSL toolkit stays under a dual license, i.e. both the conditions of + the OpenSSL License and the original SSLeay license apply to the toolkit. + See below for the actual license texts. Actually both licenses are BSD-style + Open Source licenses. In case of any license issues related to OpenSSL + please contact openssl-core@openssl.org. + + OpenSSL License + --------------- + +/* ==================================================================== + * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * 3. All advertising materials mentioning features or use of this + * software must display the following acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + * + * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + * endorse or promote products derived from this software without + * prior written permission. For written permission, please contact + * openssl-core@openssl.org. + * + * 5. Products derived from this software may not be called "OpenSSL" + * nor may "OpenSSL" appear in their names without prior written + * permission of the OpenSSL Project. + * + * 6. Redistributions of any form whatsoever must retain the following + * acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit (http://www.openssl.org/)" + * + * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY + * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR + * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. + * ==================================================================== + * + * This product includes cryptographic software written by Eric Young + * (eay@cryptsoft.com). This product includes software written by Tim + * Hudson (tjh@cryptsoft.com). + * + */ + + Original SSLeay License + ----------------------- + +/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) + * All rights reserved. + * + * This package is an SSL implementation written + * by Eric Young (eay@cryptsoft.com). + * The implementation was written so as to conform with Netscapes SSL. + * + * This library is free for commercial and non-commercial use as long as + * the following conditions are aheared to. The following conditions + * apply to all code found in this distribution, be it the RC4, RSA, + * lhash, DES, etc., code; not just the SSL code. The SSL documentation + * included with this distribution is covered by the same copyright terms + * except that the holder is Tim Hudson (tjh@cryptsoft.com). + * + * Copyright remains Eric Young's, and as such any Copyright notices in + * the code are not to be removed. + * If this package is used in a product, Eric Young should be given attribution + * as the author of the parts of the library used. + * This can be in the form of a textual message at program startup or + * in documentation (online or textual) provided with the package. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * "This product includes cryptographic software written by + * Eric Young (eay@cryptsoft.com)" + * The word 'cryptographic' can be left out if the rouines from the library + * being used are not cryptographic related :-). + * 4. If you include any Windows specific code (or a derivative thereof) from + * the apps directory (application code) you must include an acknowledgement: + * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + * + * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * The licence and distribution terms for any publically available version or + * derivative of this code cannot be changed. i.e. this code cannot simply be + * copied and put under another distribution licence + * [including the GNU Public Licence.] + */ + + +============================================================ +Notices for file(s): +/bin/emulator-arm +/bin/emulator-mips +/bin/emulator-x86 +/bin/emulator +/bin/emulator64-arm +/bin/emulator64-mips +/bin/emulator64-x86 +/lib/emulator-common.a +/lib/emulator-libelff.a +/lib/emulator-libjpeg.a +/lib/emulator-libqemu.a +/lib/emulator-libui.a +/lib/emulator-target-arm.a +/lib/emulator-target-i386.a +/lib/emulator-target-mips.a +/lib/emulator64-common.a +/lib/emulator64-libelff.a +/lib/emulator64-libjpeg.a +/lib/emulator64-libqemu.a +/lib/emulator64-libui.a +/lib/emulator64-target-arm.a +/lib/emulator64-target-i386.a +/lib/emulator64-target-mips.a +------------------------------------------------------------ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 675 Mass Ave, Cambridge, MA 02139, USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) 19yy + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19yy name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. + diff --git a/resources/platform-tools/android/linux/adb b/resources/platform-tools/android/linux/adb new file mode 100644 index 0000000000000000000000000000000000000000..aba34a600c371f0e07a880ffe384ea08cc427ad7 GIT binary patch literal 1231255 zcmcG%30zd=`Uiec(oxZ&!lL39)l^udU{qLCAd8R$lb})B1!NHlfndh0YlU})a+;>N zX}4}aZ`pFo(p#2ZZ>AZp*iQRiwx0>N(yO$||NDL3b7l^sS^fW?|J30*&w01!eYW>` zmvg)+w=gd%DoQhd1GIq}vCKE3ZE1jxA7dpcO-s~lT9S6WcAPc{Pnee0hCH~W016$3 zXVJI@G7WgzT%_YV5;!lWv2I@SV_96wPLI`ivAl-nBs~Q;%i?UjQnqMX^N0b`F4G4f z+nSGJwKda5+IX3jk}kHvD<75QqitS^z<9hUzmL>Kom&N4GYO9;=>{Q>1-D(PaEpbdn|;uE9u{!9@Iy1Uw0s z3-_DliKbm>z`G1cFca4-Top#S|L~#ly9RI%uG?{4jPx^cU4rXETXRf{*DIz z7GNo^@wonh>l<8S@cc?#y|_1jNx)NqWZ*g**XOuwcs37kI3PQ?1mHBlb%6Xmq=2^5 zfb8pJT-IOEKvn=!7mh(Xc{vr=UR>*OeTVC6T!W0VujBp+T-V|{9nVT}oq=n*kv_tJ zSxD#aDB#(~vs}PG;rap3U&A%Qc+Pz0?*ZJrfon9C02?*EHx46YM^pNFdw*Vn+U zzc@Uz{;Gga!Zi%n$w;WfRgL>jBh&u?j|X0Y>tDFP1lK*dh5|nxa4D`MaL->CuBUO` zM+Cn@JpVUf44@NNF|JE-nZIqgS&Qp&<3S42PR4bqS4qQ6!&%l+9s|+s zP;_d{_1D6aF2XFUcS2l!81AL4om*GOFaCE@CpJN4%r)RB&> z1t{Ey_9Ct?a9x4xR6Ktc(EKgO%?G%C!L<)pBGOL+N+KGVY93tNzNy@QgJ{tEj)>xj6w%pT?^Ovl^ul_Ch z)fC7dX;W~Wd5Anrg6QRU1O84j?g=U^_ebG=4z6>JXO{!cFz!z=;AFtVjeCOGxGF99 zrMN%Fg7Y?D;L{CwKj2{Fo?wCH-n_NrrW}{gcyNoE0GMdGH*aq;ZkhoLjr$t`TX9`y z;LjM4;Lo^nE%^Dy{eysUxNNu{#&s4h{_+*jZUcM;mmAkbxV*R;aPjwu0-?XFakmIp zk@4jJ3>XQXGaf7k%rox40{qyxCwL532d+u}u9 z2du^w`E%mIu}Hrg@XLtAc;I7k4L6?Kk#CD7j|2DL_l{Vm#l9D;4+cfD-{3 z?p}tAzaMeEjO(wsGVyFT;H|h$#C-u^5#W=6k-sCN!%vRD?fC=y<2MZGk5lK&AM?i@ zrfJWdKGH^+9S+St6?nynFn%F$?VBOC^8k*}Vzi0Cn@<^JW9&ivorwA?k?wqLsBNr~ zzX`bGh;V(^viyLdwnawz&A_*QXbaUpIHJD0k=}cBxIAMq^GEuZBR%uzVK(xT^lS#c zW>h%;!if6bLAsV0PH&1x-x$HqG8p=Mmi!Mz%dB9y3eis7Yc6hk_MX~Tl zM}_e#k)9G2mPZ5d&U3=)i4ppA9nzOUAI$b{0p4vX|99XSmi|5h{Nbc+) z2R!z}aDQUV#sCv>6(N18CI4{|>6J+DwDhl)_|l;veQpEZ5F76QeBjSm`tJsPZ*9W- z6F>HEK?J`aL;kpv!sRDN=*KFg_gdBJO^VD#C zdw{oD^urgyukwiY?u($017XK6huJvRvAv^#udw)!&rrYlWB(jT?~b;G{6ls`d!vya zJ2Xt+{IUI7Bg&r=k$)}fn{8?TE#&{QHr5yqMrfH4`MZ(7 zZf$tHSQ63RiwJaAbcOxHd&uvMA7*2WNqT#L=dTHu{}Fhy#eRkjMf)d&`8zkle&dlI zXR-e?fje&k-(!Z{^%6odo1!z2VNHw*0)Q5 zCqlkv{8$6L`-9=3_`ywlS9tur75JW0!sYJLr55`rj>x|+0)H(+94lc@U2!Q!8@fiJ2WY0CjU zhimcLrNBEZX z5%^yX{4wC#zr*9}O5ibPg!QQtct`OdTO!(Fd$S_?_a@RaE&lIw;Dwg{)Y+hy(fm{ z$$i5d%lLc*@P(H63fqs`9*cck0K6e7T>fIAM9#0$8 z{)`5`#S$-M1K(!p|9>OsUl7sW6y%S^`k2X|YT)_kADg9pHUZZfhTBR|j`BJoqWpOg z^tB_u%VHmQvi|di+CE1$EdLMSnd|K#{oWZ-{wbuVSjNjP;Axim@ms)`T{XmZu~FYw zz}sF7+wTv+x86HEp=UDVd2cCGr5ZmoWy1C8_6!l>r z8Gm+J;>qVC=pA|_=&|tQDBzh`uN!OBcQWv3OT3x}{ACNj3xI36b{pp{q+i1sgBBML z7o=+C(-B4Lw-J(@D zG&R>W0<>N?6Mw53np$fBYg$^GTA01rRo7BeSs_HISJyW*gpiqTSIz8lcVk0S)zzVgRjANa19H(wV^cZODy7cark1Ow-L)-qKWAT~*oY(rT+3U6Eaq{9sS3tGeopGsvBD$gP>7yBSqg<*mdh7x&Dj z>gxKla2L99SJ%%{kBl3Xu2QAT3yLAc>iWiVcWX_x)(YO$fQs4%cWa&2>T0QKzD}Dl zlN~8<(Q0PbR5fU=%`Nqfu3DxxR?TcCY^kbi(VFX<$!MU}?q;o7NmXQAUEiYBx@sUR zDT68@+{VfV4Z^B#gs|MMs=7+50Q9F(13xL1nOCzMVG~os++6|lY^3n2At0^3sS4_b^tz^2*YxWe zD`(aabAy$%M3D}qK1;;hXc7XNaF5Q_gM&?Gc`5B~ZK$acHdS3)t<_%JQV%1lWo67p zMQW<8uDlNHRXRqCY~W+*DAY(a$klW;7|c@WBv^Y*E2ZzMVoxX%vzHKZ)3r4%s;}T9 z=!TqTHqAntWD$zeFk2yiuu&p?HOGwLu>hTcYQ-OC~0+-S54RI$5xl;lw>tmwp7k+)g&`2WI;SF zcTOHZG52yoC*&68PRc4QFUq_~ZtvI{HSw1QE(t@Hq$uhYlcT!O?%H*=ZET~meOF?yZle^KSvHtSx;v)1S z3mqysuz!4F);JlxC2pmz9HOsLUCGX!R9f!LDwxDPMY*LV*;&rq@)GC70zM$6lfu1} z&P(%1GufspBbO{W`?ZG5LJfFaki%+48b+3aD{^y63(zAxCqo-+uGO+8m*zvFrI(ir zKeDp3b4#R~)@n<_y_j-VIXrf)dZ3y@w^Uo9K1okYaxa~nTco%u9mpz$E{vaCnyU(% z4U|kCUpgsQh?4roXO$FWPs)XmK&Hq(->ML~Wu>`AB?XX4sC!ciN(%a^nsZWd+2!TV z;=+RL%b6?8Ob8LuhUOS`LpNILXF;_m)?BAu4@;!eknB@bCb@^Uus~}~%dGk;xR$0S z7tE=$xxCihSfyB8G`UbJrEq8y=V}m<(>=YRz6w=`NF9HPGi(tBB_)$-963-~Pz&0a z50VMfBoB=K^IrAo(#ctcruvdYS#DQTxQwAL$RH(1OnFJcgrZzg2*buqYch1V#F>*- zn#KI`fZ4N3Cr=WofJZQ`OLDhv+3K=^Kvo0@%`m%h}^sCCN8fq#V-Oc6IHSoL|@=HeAPC;Hlc2;Sw^w+4) z)T;=-DCH}L-zzN-D^`ASNvY8*Q_iaQg%gT}-73sceis^lwU)yX$P01}RhBHI5MVU?aB_%@cAgf4hl6rd(L0ij*U1x~7mn+}l9G^Q@ zl#(qPo-<@@qHpIi#oa1V0Qwd3a!@GctfXU;a;FqeRCYm+N+lzs`-$7Aj+!H8#EQ*s zXHUA^De?@N5&V*{A%btx6;K@_n#~;CUm6yeJ824rq{8BCwg**gY;8sepu{AtQBg`t zVWpyOG=wng<&l%dGr1&dLTXR!~|_cY?&c94$Ae z09i^eH*JS%>BNXE<)lTkHP+1V$yLxe#Rytjwd*<0o7pvNQcYH?E)bPC?x4Z*cxZfo zYQYa9#+y+nbKopYAeC$+yioRE(}HbmmArs^7{(BdbGF$YnBp|T=|bBJcLigL;^r7+9}@kM#_)rbHw z`>1QGRu1f3xatYUWWg95;R4mTXgHZmV4r44rnIay+Z=Soz4a3*BZu-<%seYqLo$km zBbLytrj=83cBQ(~RjImSRGya}mWVtm9)B@ZSmj}Z91~5IRa`R&4w(_>bs{s4MW(qa z)?gk$O+e%>qh(E1`GmZ&Gs|1+XEry~l+S2sLKuW)fbuGL3udkp3Jb<(mygA2j(L|7 zx;qOm_Lxt@cV~@G3q3t6beB5%EG*y+kpK7wmHKZ$zdQAu&zLVti^d`+^YNXlaLxnE zswaaaFLM)DC&$Bi2TMIBu3Atz`PaOn(2_}o4evjgDbcv&f2xFeH$WSDz%!l*s zVb&2YOIp-_>KWT%36)dTsrszw;@@GYZ6MY?nTOPvy)|nhRDD!+hFfQfdS=b5Xd7;% zS<{&^0?)($h2<5l%WNe~x3#ybMYBh$CYDg8RDX#PXP?Xz^@LA{8P8M+lNJ*rFI0cc zTC8miz~MhL=b+G?NuSx4S!cL)-VHUVVs4X8m6I)4`9cjFAn!t9Ye(MYIlR6eyVAq8 zI;>UmS*+kgv=**i-)mSgIN;H@Zaj)5N` z_1m<0{n{I7sc(?>qR}3z(_B)1gm$Nq|41o6OuMgNeS<^wwVuHC4$~GJ>587{5Iu_i z0ipKRTshJ<2>TM9gg6hokr3xBw-92Z_hmwy>**%Md6TyYv6TNFAvpIDA@(J=5@P@6 zOG4}`=!7`9u#FHer|cp;7W`M_AV84bC8)9vQg*b0QScH9ZLMYU2gqLDplMox{3kWCU+!5jB*zYBr zihWH&99({wuw2s?6IS3n65(|0yAf95{2yU8&J7dR;Cu|>49K7GD#)L(0rDrD3HcK? zLjHtJkU!xykUwDyvdI zkU!xqkU!x($e-|5$e+*;`4a{pe?n|*B@lK%{)Bfz{)7u4f5Lkqf5Lx4{)7)g{)GR6 z{0Se0{0SFB{)CS~{)CT1{)9^)f5N4ZKjFV2f5Imqf5Imrf5N9Af5N9Bf5H`zKjD8M zf5KIeKjE{GKjCV~pAavJ%pqJ0`4c`5`4e_R{)Fowcf$3MJK+Y%op2-MPPhqjC)@(L z6TS$!6TS?&6TS+$6TSwy6Lv%Hgs(&Hgl|CZgm~FzBjLM{JK=kfJ0V^u=qCICawq%{ zawo*gLLU+0WuUEupF-}0TOoJC&mecg&mnihFCllruON5AZy1;?m26cZ>iNr)G7b;1cz z+BU-cC~X%ZUWVO6cyW~0ONbYiekSCLz?Fb_At{;=F9O>Loro|9anL=Murx}GBg6~X z@q~DhH-Qi@`6d$Lgv!hujz!f4nxAx79b!V$1g!jO|6aEAKo$&wQ-w7AO zzZ2dE|4w*6tMWy8BKT!?3@rUl*bSz!OjWKfSnWKg~xcp z(XeyE6xcao8tj}9FF_^|;$`(@!t-F~ggBs|Mu->n(+M+S=Y%=1b3z>G$swEsKTn8{ z7Zei0zc>k}!2SvGB4rt28T>pUUaYSmtc=no`@SmiY>Vc|rA?i?Ve7(J%|BoJrLV93 z4cB2h9H6E<;1=|x83QzZ;Df`ovZ*g%*w*^aE`%lYo#Mn_mhC&G6n8KjO$%=A!|#+b z;!F#63qFlFJc}0W6ug3XJn?0MR})VpzDV#o;z`6i1aBaoLcC4zX5#6@n+10f&m>+U z_-x|&#GQiAA?_reDR>+4GU6$Mdx=*NPZWF}ads#eEBI~1n~7_JcMzXVeAj+FIAsCx zHsV_azlZod;@yHTB;G;1Q}9K^?;*ZS@P~;nBECrQ#l#mA?+|<`@nyu@1Ybt{8RE@? zuOQw@yh8A2h;Je86nqWwZsM7OcM^Y(c#7Z~iEkyIDEJoQI`LS+UnahbxF&cv@m}J) zpe}ug3AQ|l6WHVMS|FI7 zpSVsuR`5dNyNGLoJBjxa-}MvwUrJmco}gU@ovGV5sxL_DR>3(c;d?huO^;I ze39UF#FL132;M+Eg?O9b&BW7*Hw*3}o=Lny@Y%%ki8}?KL)=L`Q}8z8WyDhi_Y$ul zo+$V{;&sGh1;34WGjUDu4&t+k@A^^fpLiSbt%Bb}d>-*`!50$mAl@nXBI5TDUncm& z#1|1?B=}FI-3vr!ztl%#b-$h&#yqkD0@m)WN{S(&^S_ZcY{vL4~@ovFCBFBO4_-$Oi;c!l7-#Q92B&?)%O#GS-5 z1?LD}S4KQVaE|146~q$-=ZIccM?6+=j_h@OWh|%(&Jn(DHt}7(V*kY3h;J2~BYxdH z;@yIC-YGaEfVz8#FB6=RK;0tZiv(vxP`8+Phv1A1>Xs326Pyu3-800S1!tsC z*GarWa7GMuTZlUaXXH@VO*~U@Mi6!H5l<1Ekwo2A;)#MYqNvk}#|qBKqHY&)O>jmS zb-l!Q?GyVau3<_M+$uODjyj&*4t5L9$fGWnc&FfuKta(6`C&S&YG8uNGzZBFNVCQ&6AZ|0SOJ*84SIjKf#xNJOy&Uyj3} z{}*NatK-pnz!N|5r#?K433w*_N$zX`Pt+i}i}nxpMLYBY=0;IJiuwlNZ?g13%5fF|$KT({YUa*yB>4vU2a_yJ8A%=@ zbdV=qbvnQlbntZMln(9!x$G2L)fcd{Qa*SC%Gd*#yKDM=|HIQ*UzeiV^JBEVeGw`Y zIrV}4hKQ7SbozV${NEv#0VcDb09(5_eb$7z14#La!1_}@+n}8OS>8dr3@UHY5kESi$0OIlb>s=Q z{<{r<{#wZxe;w!tOl2W?%N~hF9M2qb_ZIci(2d#bndk<6!&Ox5jTvIx9sPco1Hr@S zW6q{)`S=c)`j@*r+Y)ttZ^P0j%*Hi6XE*AM(EE50lAwP;-Wh#5X}C}aQYC%4|>0l{Z!?1V?3SF!i!v+M~`Be#~;F%qiXgT zeNEl|XWwV&le2VE-PW2|cyau>bV^;t>(MrSK7_QVql5FnNo^No;&mI%o%&1+UfVm< zhCl0i2L#IcdPa=*jm$w>U))`M>KA0(2QB*M!&oG$Y$`ma?<>zXo9BX9WYAnkacZKq zce;jqw#C%(SzotjW9$nXIyy@9jc1Y7Ew|IF+VqzjqcqP(+tdw#6{oTg{k{HxWGR*` zh3H)pG&dRcmBJi;PaCZ`W!z@F7mE*Cz_Up4IiqJvZ3p<00l({j=Ek8^EK1w(EE!rH zBYa|Q;F7LnkOu8{49sz)2XdkYMxljK$m?psU6TKt^Ov(FSGE7f`Ndo&( zt3!Vb;_ziqAJg=I@*Y+A^HThEWmGr65|+ca4oxSuciP))FiPS+jZOK_F&k42xbF|l z(vX;`1CeK2oL|##8%w^O7lC) zx?|E69lRFQ8}h+e?3?C@)%T~8nx(gq8hDF1-)3+;-uJHS7>o$0viEx|BlLB_im;A! zSldOKd!!%b;4|Vdmd9hP-Ov$movML}`cm2|6IsI`W?{18Lcj4}+Du2AmhpeI%4ZJm z%V_Bm1q{^}>@++TsxwCR4%D75?OH;DIjW5NIDNWN;xm+3i%$1V_3dInP}||#+_Q@1 zJlhJ<{|tRUbP@gc$7*|X9HmicJ_qDG!HP_%TE6>ebSMLjW#VZL$jygvH$cwN;)Gc6 zB+%eU=!vQA(0A?-BHgbAaxiQ+C|^ykf!5BlPE^ zTctnM>`y5uuRwpCAgWCIQ;7aJ@w62EDf4WcX7ne?=ueXL=LAcCQmp-%_1$mwX9N5Z z*g#WH=5{q8gGLDk*ngYRfAWF-Zbg3SKNjuK|0Ah*FJWULSj^6e6*2iEa59)-_E+ie zg=5&?ZN6Adv=^Eez);3U23s0Yqb|luiAEl$pFtA~QJ%g`)8Av)M1NHKYe%#FhKTm{&$giwk?pzLaVLX5n!ph9v~qGrW1|jA!UkG* zKN7C7kT4k}bclb=lE!z=qYF+Bc-9*IT7f2E%{h)ZyZ144!oE@q%-_O94626xdpqsk z0Ma8TVe(LKvy2H~Ic)}MgF&)qOh)t@5XG!531Zizwuj+*t(Z$Y+-LAuP?Tg4z#K!<;ciW2XLk;voV zF-WfH*Ee7W7?a=|?9Zj4*^WZ>fR^Zc7^fuQ+frs#rLLh?8ezytSh}h~e+T2Fud6FF zCcCJts4J5WA*w4gjwek5o|Dwf#uk`B`-=z{07*@VhXqE{<2f&Z-hdf?mm>vk zCJj22j;PHT3DkIK^6SPk$gkv^MII)<-i_ec1LWB4L6E7YWt+e;iK(dq3A%&*GGhPW zp*Y6aKb|x{ZFV_V6wNQef7}6#8)Y!AmDy3$KY)eLrfnBO{V+FspZDZ`uBQKk;d3d* zjpkV2>^Ly7cw*M&rd?$e9-Jo~hCY?(uG7hhliF#_@u)MAZC%#`=5CCiy20dEk>vW> zYw!!)jo{TSY(Bivww}F$b|%>f6$;zc<0DIiUr;HjoC-c5jE9E zWkGSI$*`ctL-kYH!oN%znie$tfZk3tdV3YKs#0TUz=j3A$$PQEuDpB{mO<^}fjMpGmIl3w)&KG}+D+mVStjw&mt#nvF~z(=b)7a6b|B9Rh4F=Rx$TCchp*e=yeH|D|gD4Pf_f8O}Y!c;VA?2@Q z0EGl$SE%umkR#y97z#f%Mv+7^gp=r0bg0p1sn?-Kr%9v158$*qlz)%YMAen>{>+@${)#i`W>b&b2r?N!Vpi`W4B}9jDEsNw|5@J z8|Tn30`D;+@M7PRAD4#*45fnP6OB~tj%oo+dgvfAe-F%mNe#pCreCn3M;LWB*}ab= zE4WhX>8u6|5_&F?IB(VAY;Q+k_1__Z-H*7gU3G-<;8A&C_dc!4#j_cF*;H==qo7pVY$&eIp-s zV19-Wa@8;t4y<;ZNXpz7s8OBrZ(j?WXNj&%Y;(dNHDY()oVP2kBQ-(47M00Po>3n| zw!rHDjgb1zwA6PY1)%C<%&Z@OV11;AV|HNmD#e)g7f6I@NOrF{#)2=PKoO2HPXB^x zWjMx#hjJL==-kL{I!0J;#9+ION(>FSh;>T-!)T?Y7%!kTkKtY%BU!_cSTDKM!kSr{ z{^;iiqcH0aQTQfZV-6zz(a-`|y9*o^U< z_IGn?B66FY!nhT|sc8nMMuzD5@XIhgH-R?a=-^6&9?>@?-}Q!kSE0tReA}NTs&s_2 zRsF|eEKA>l;$la7@n@*}0Lcd_o8R3Z`dhODTmvst%hgtgbB<|6lbIksf z!aBz1VCh{8eh%-XKe_c_^cDOe`aTq%sUiD7&HTuq?_ZRIrlYUt$! z42JC9f8zNCe7DH%JsnS}lmSoDFl91xNCLd|F0PAVGE15Fo2Ei9FUT$|$+dfHSmkAt zN^$#FR#|d+QMUUj|CHGFH|*ZoteLwBsB7bRkmY#`T=#Qox!BixkeY*B3pM7Mg$UwL z{uG2T$izxdc({3v(lo-%#}4Hs7-pu>2TWuM)Pd;GzBbPeR;QrKINXl_j0GGH7z4;P zEg0%crlCrp8N=czqr%R$RN&CqS3&bsRfFpYN0Sxj+i!*d{duvTUJS#J!dZHH2iV&m z;lo?Fng=^g63oA>rxej=w3u{UDnCODVlsDDB}M>V(9630$_{{xo*IYL$NVP+iD z_aBCW$&S9sIl+tZ6#o0Ne6s!mqa5gA*_9|u+En>ON#s&qnm;ezmlur%KJJHb+ox}G zrpjnBAE8^dvqoJ`k8QG<xaLf zg+QJIyrF{XH-qow|M6UN2x+OkeJ|scUj0!_t%Bd;p5;X@9|Q4Ei4Qb70^{k@(^5OZ z_FUX-&cTs%Fp@mg_v4gQnD6{PJDY=AP$=IGh|+wyalX1Ze{P)LY4hjWNW)cFVlYH{ zEm|?h{o?%g7hrE}H&688^L^9@yLS>Ep}Ib2KK(^7n`N*rHX#RH6r~!4PMKzS!A0krh3}X#t5(=XX8%MoRLiw^HphX$aHI#81 z+>((OeRzU~5%LGlPk^BYRii!}Q({iz;VjiOUW2$r7$~_6fnabx0$_xSnd9x6{>4X- z#2$3GD>sJzyDK-AVU{m9UW$MxH?RoLBS zqo`gFxs7yvGN!KVyDYAV9;4eGIOERJbRgWJW)bfs_V4=lP}f2G7i;O?i-!_MsDJm7 zhY|fd{(%13FjfbT>r<9(IFv>EsVj6SK^>cTVI{)oVpXE_^Pxn?VZ%ncy7t|Eie#~; zQc_|l(jjSAs_+#Vs)V1`PmvN1p#E4xIuEjlDm?@G99ERHW+t^uL&2u425- zO%re_QQrjF&)v}4DuEGAE8f=?SYCk!FiX2;6+=+p=D_N!C-H&Zi{rA|DjdR;hc%MR z?!AK#Wd??vF7>eeTRil1#!|iDki-(i7@-J9w+`b~FS3fCK=^**H~@mPxf&_6!8E&X)6_j!=*Z*b(Sg)Q~9 zZ@0HImgHFYc__0FyOZ}Y+jt3Rf>2uMN4$T0imxR(b?^CD;<9`BkDUarX9U1CbT+9c zWS|TZnc0WTDoMW!CV&-cV;4*9BSmw>geyiR__XOeGGoW=*zU!VW?4xpRn#OPiW;9} z_wGSH5_y5;F^0yE`4|x|9RpgG+z$J^&sn*lOM%rZz-a1$sZqyJ-_e+;roWlPN5bw$ zz_1v5`&^X785j3XsSeL<{_zgqJD$yWEa*~!VIeI2zc^cJNtsy zQyo0(LH%0X_4%OMKVllw^Om4JuTa={b}_ierVVMGPZZQJX$uB_VC4-gBX)GD+In>B1Q|x@^#+d+f zDdserAx23(ovCuS6^w=E$|8}Md>I|QA9C){@9su|&DVu7Gr<_@C5(yJ&tzdEggGQ3 z9O5N(U;Q>p&>jYpBxz1`YlKOZ1S@wj7fPtmWdaE+gef3&=~4FyK6~&+5J&$X@YGQ; zxr54y9F%f8v@Mv%WZAei&L7D7>ff-KId{WF4YAtXZTO=>DbiVFAoQ5Q4gWC>Xg~#} zFA)%wBpWY)>0{AV9%H+07;?yZj@^4NgpY1yUXRR`l4NLNCoT@C4xTUEEamp zen*;O1#+m7s}podJL%Yo9?$w6ij)j?izd!z%`j}#p27QQrh6T2;0UuY=z`gz1x!S9 zt`vR2GBKnQ@N_@^GdmI&@LZ&178~$PRCge*hAP!Z{OR6a}QWzX~+AOnm!tD0YV#2(%bQR zAc`y>iHGB+;m?9MgtyiG1#i=n(Wk(C4%fb3rlGEoGvxXh&4mO&7VUJ=Vdtn8x+`7= zyCQs7g8m~tn&G<+`_1!hx6v+)9l!%OM_q=@rm#-&VF?gAM_(Vt@lIOYXuTZ~g1!t} zfT^7aSsTH59K97YhTw-GcVX2N+NjBACCp}{&Cj9GdOPv`7>?RMlJyjj);v{pivO^zedYMU_LW;a!86^%?JF;~ zd4dh@Xxt3JQqO{Q_LVPig66W}jELx1V1;9m#sOEYwy)v=ao@h(O9D$Bi{K`FJF(|e zi>JGn*xNHO@qrF-B}2JztVpqo8EMG)t$(OzeRN=M-~Rpk_q~4NmQ&jBbA9Vuw=Nj_ zSX&zi%UKt=cz`|Ub*frX{&zRw zzfE|nTKZo23PL%|bxwfB2p4!i(|+f=QCsY5J1Mv#G`)(k4Rd%~ z)RZp>!LQ=ZIUin!exR6_-=h!Jb+hsCN$6@w`|dOz-VDhpy+iTGWRK16{Xaeg&!x^) z#=|nmBh>oSMsW>-2(|u%@vz6*&>MIt4%E=r_35wM+t+aRptKYsB=vMVrlulgVIaPMjMQWGv31cae9x{BW{{Wum!g znq%cwEE}DG)k#?=RzeIcr_TL`hCY*wuCITFI*K=8kMy^cVYKvS!v@HxCm;b>eXQ9@ z35mqrM0B$qQv0=T1|Kr$3V6Q8D{6++NY@EeN24Zj0?7{jeAe{;(g~Vm(hnX)7F%EX zbs`Tci;xgt(=x^|e1|e_7%#F|fnizry_zd5f#v^#3i}6->vh|DPLTL_m*1J}PiZ^v zbi87G0tVi3``tZ8HZ^FexQYfLj*-=4+$!5-j$3Ot7~@uIC;V$Ln+0ur9a2iGe>fxy{;NPW(zffU+%|{+*(4`-V6(;i21~2D(N3B^R z#0j~KIERW{My<22m2qBoljB@oegO-Xby!+njS#`N!#GW`@A%Mow?1`mdbj&%U$UbX z2RzIg^|MhP<%pwg*+Mx9kLZ+cLmxNeLjyNpX!kxYk%u$Ni+#fTaNqXh>4Dj3?oQkr zLyk-cVLZPwg4_GsSRBA!UW%T#X$o_@t$XwLR;Hz%rO?_0w!_`38jF$cq&FKpKpj%awWfw_;R3MwZVqQ#h` zo&kEorm9|pgSp1xG409;VnFUM|5Hm-rXc>YuCK4{My%3x*}c_ZM(W<+-)PUC84(mn zOa%(=fi?zThB6s#1w5+_9)Sh=J0D0_??x-i0|%e|5&c6?0-kc@!{j}~bb3|n6ZAWe zHBP5`dOk9$GP+3Sc~y*Phc2Q;#;;0s_xg)$QFABJcs&fj=|H@AYJ2u_o%hzOB#F9S8g`qk>@hzP`R^ z>7N3A9xDkJhjAVw3SLB91v$ssfsY}MkrnxQOeuH*acV`t&tp(QJ8;Fah(T=O`@*>^ zL71B27y-US3=UL4^MQakW`LRTTv!5oet=m0o*cwqYQ=9A^UQH%Mg>;qAXKv7{xF(?X=WmOJiFuhmIvPwI`E8# zT66pv9aPuU^^o@__$iEKN|&K28KE9L_?+s&XDl`jV5WvaNR(8ziYT1F8iaAZB=z^q;sc^d1z zTzpa*un!s_RR(Jzt-$Jwu|yE$YD~Z5?j4h#<19g5x}BpRgXFmzy2>EeA7kxB-?ncD z?GF3x+(`(Oo(b;|$Z=d4)gAEvo2@oDl3~af`ZhswNtg;ILQeLTgL&ki18bVYvv~lm zoVKSQy#{0d4)>=l;YZ2T&VepR((`yTK?@W`v2<Ch_54t7pYZOy z(m_!;6**3Ke~GjFi5Ml!B@CPEGW~(oP|PLVS@x$ZM|u%8Uyc5t)psEY2zaK#C~+5! zF`EkyVCB1=$cKA1iu)i|I@VOEhwnnq#yKL0TJZkDL@qyG)N`|nQ>g!*ZFBr9937xs z{{~)T?uNTA!!i)JL@|BGsRREMPC-);uf%LZCe8Qmn>&3!%>As7eZ6k0r|-}9TjoG1 z=M_d5qidetX!qM#k1W9u6ng&M>mI7+BEbL)Ps0`0!QY$ecEaPaX0!~_3@(&5; zZ*Wxi%a5LYL%tYqFx%{25~f!@i{7fE3S0%V?9u-KKA17oOGgXu;BD3@T?0QuZ!eRd zvg36NOJI5f*Y`)1f!g3rs1m#ctYuLf&}S| zV{Is}q|*c4@voNi1L%1Gh9@n}K}+M1D+T8}^s}G?rre;10ndLyZ18(3Jnh)PpAO?s zo1Mu4d5D&2XEMH``DdXV!A9m4e;0+|eeQ-QC#$_g7k2Azj0^G7?P~9H4ey%3l`jsl zeV66?SEpn5(Z7TrW1&_pS&LDs&vgRhj-FJZXWV|JPp;8{38nsXToCmvR(^7}6<^~LtQ-Jw550a`OR3U%loK@VrOf zxL~Hi8)2NB4t4f}bo3Jbf9g*9V6AMbx+NXPr1rRI98gDsxTB|u|^ z^&j98R#;_;Vd{p6_i-ls)?GFQA1!L{^ka|BkG(cm2HsQhcDl|^-Hum^#<#!Wd)s|P z&jfRSdtH=gQYU;ADxyWthZp{bp17i#teIItE< zqn^ymaSZISW1kQ8Y-T-tU|)F@s>*-}lLA*g@6$7mnRPlWoPRRG7)Ww=a91frV^Z--D&fxf}9I z$g2#|6FPJljEr45U=hcjGxWz-;tp$hpD8VbvG9d*n>*FBF~irZ1`$<1cSCM}3H6Wa zirUoPchi%|k&4$Gd&vygiC&JXFpt954aB|-`}=`HHRe#I@xROdl}aS}E-}u}BP5XEUAkuX9)|wv|N4(G!R|c; zm{L8y->BZ#EJA=acf-$@%KCgJh6YaWu;~C^=EKtQl`hLb;vVPsEX2}W0OOc`71R-n zR3ieO6(kb`rZd_;*z29p7ySfKVXO;9yk7Djcvo|M=;cH45UfEfdCaah-SWiS2Ryr# zi;6bZf*j1DGQa;{+`=4vh-Gge$E0BJY;dB#{TciK@5uy%0shPk{Y*?l=5F}V302dh z5Txa0xU2lD<(TeZo4uV3^5-=(w*C&Rf=lX~61#UWmtwdth7}WNd;1g26=vNS_+XT1 zf0xWX7{eGBNfVmQ^@;xFau6D4#pgA zj4X<6pOaPU_HLz|vXOc|xv4mqOAbP=U3tw^5$Sha@E7QWvg5E;oP;jj>VQ&HUtP?hxIK#0 zu^-UaS9q_u-3f(>)K~Ss?Cra$o*6~`-#2&t$-i0#RfGXkP&+2*$Ds<&6s~2hk!Kv# z`_9;)lWp5-oZKkX)1>ClFG0|9Bl@r892Z#7Hrt0y&Yc}Ox0(I-im;2%nF+KzA%tqtJ&Tqjsma_u0Kap6c2iCs*rj>Ys z+}tKXz3rVhzA$PNzPpgt^Eunm-+dBt3?G}ti?E`jaEvo4S;KzT{#HDb;zNm_R-gn{ zsz7|Yk8=x&P~S!i@)QvxWE1b_Tko-OXpGk5kXM!@0-j{kXGo~?Bw*&ZaC&9nB&d_~tM0-0v3@q|fn|i5x_YT1HVW82Je?VaV`Ihc|3?)PV!{^o@ z=LZZqKPz(H`ET%ya{(UCPY>;==(muUhLmR?%KOkuij+qh+*iCer7ZPR_P-(Jihfdl zfpQH=`7dBnn6f`XOp83{86$wM*A-y3G z*QwFjn+4hJ9b|JUd6X|T`x<@)I9~sOeKrmNcn>8F+0geZ4)Hy*LJYnj!JlP>Fk4JE zOUCKUD0lHRMk9b(L(?A}JPi!(&|h1E1jM7Lsoy!KIK7624GlRYP1F#X*X*Vojd2jK zxk-EKtP2Ly1tw);*jt!2G{3nX%8zcy{N{M&HWCnk25$<9PdZ5@E`+a#%h`jyxnK>F zBjzuB-;@&ie8mF;05!HvzKk(?oi9*zCd7O6eZK?`OAlO4^@HMm@ z=ch98ssP`h!m9#!s`;m6LhUm=>!WD4nH#$ST8|O3d`k$yl?HP>Ty8(2j;9j8KM45;A3dgqcxL4FqL0o6tb; zBQfMt6$MX#CY$n89no{JqJS>g+joN(5Sac2Yqd6)N#^nWW=2ZT z4{Mkn9p*Orp21=vPVaaen6bfjC!K?$KR5#n)E{{C*RKTPeWenRZ04HMK5trn<6 z8}4D|5RDg;#*j8_GblE+;WQB1q3?SHSq>`30IT{#d_9gOBE+}|EF?kTE6D^K|3_wp zNPHA_W3q7~2~_2&limihataBIm>96OWPKYeGA0IxG%OYC-(U)9aA;zXb7a4X!Bpl@ znPW*7$;QNB1@B4L;NS;XR~3B}n|Y1S#xSIxus|jcuY$_zmtaa9c1p;m@iQa>Okad9 zWElQv=N|D#-oda>v%V!pecl;pQoru7o)>j;KcU}}8-K~VC1WvmDe@@}P6T18ezM)*;MKotcK*>oIf%bu?wwZ+wJNf{^1kBCryX zE`YA;B_u{vLpUhs+_Ue+a5X6SDU<38O7hK+d&VZj4={C zuI`iZHB*F2&%nSCDt)%y8Y-E7>HhmsOgy%n(o?dgVd-a!qN~?!4@q+<9^62I8S;)7 zTCAGa5Y{{x)!jWs@J}Y+^?mpK8l3^w^oK-!+#%^)+>g$k z23wW8e}L9u(3u;ib5}q8a1ZyPgLh)tCHO9NG=roc)TG{E<$s9u3YIv~r2ZTZu+a4R z{b=4!tu$!<8|e?5RB1TSw!S}d>8JGfedFlwlQECZ^j|wCyhfD~nBW?>*>x%=UAVU(j@6MIkq4U$-we(VvUA8(l{PCOc|7>?_a1{4MGSYy!Ae-ZK4p z{35abY)@!Egk(WHNtkGvYzedVPkP)!*lAZ6kHKKS^)a<9r2mLnO3zY#-~W+2T+<8t zmUvF`^#EmR_?D*+#W&?Aj#ny-mx~ZWVwvM0=VWW) zQp=_0dW`x$--wUNxi#m?dJJF7ly8fnx#%+V4rgT;8R&mSkL7@i_e-E5Uf8|2GBrBX zwY0-^{I9)wh^%H`h@+jc(Sk%hV2(nzsaRXR;G{ znE{XO4Iuc|o-Z#4?+ZSTmsRre{j$g0mFJX*XSwWOVu5JDi=<;%1A+uKM2KH<`A^W)pS%`se?>4XMhZ6*Pw5+NW5YDt1^;bXbR`VaWw zcgFbhZN7_fWAo?7_%4p|W#WGu_irV>trTMHAco%~!(oxYVf@D;&{6Ky$+51$d_D8M<%xEuVHIj9*u*8%X?QVyzU;6dHrzvHLLL6J`14&nTg6r1!2A?2CUrY1 z;dvj=jX8(mGcV{FSB~-NS?*ZDyD+4YgS=0|*npqs&#SXOzDGSi8T3V?FiK4e%&+Gu zooENXXmZ$AQ44ulxqZ9)8sGo$d1lbyzQgYk@}L&&RGsZEygi)b=^c!ZL!)u77F|ao za?q_#R}8xp@Epl{2jKjf6Ex0eGKLep!_s~e?xBhDaf?CsLZ7$qH|CwJfV@KnRBBfA z4Y_CG&;XFo^QiE#5Dnr3D3f6jXf%=KeX+qjpfbMTS!w$l?h1ciA!!_q=fRWlhy7<8 z{=AC7{MK;)Kb8KsYep8uqUyl>zl5@U{)uAI7a%$Ko=G=4SsLXUM}Y77bm1}HSNA># z*uO`1?>VSiv8R-pJ|K7s9&~taEW|bj|Iq}NYd=W2{d^{D{aJAX-_nAx9l@`V&>>8A zO+6pWt**&X=4q@Zz#?Edz6}cUSr})C2iU#*k`UCU{W?H6nAGi4)gcWfJ-e5m3{p+a zRwRz&0~d-bjh)s-zVKXtPge)FIwq%X=Za?WyEM;VQq_zvq%tQ#UjF6E5=;w$y;Shq z;u`D&4Od6?vNt%VN>0;C)Vg{DY!kc6a~$cTet`tNRmhGF!od7OT#4vJY{Ud_-Z+Ph#1U;@CZ@8 z<3NM`W`3_m6hF!C9YBlj3bsN@u)Dx~o;&S%CNMt-b@VI?%;!1Np2dOrJYU+gC@`Pr zP%>T#*#rE&Z?2T*#>!dkKRHbxWP@DSc5WH1Bd_s1a#;8ukq#WsF+y(?@kH4x@J&_FH5-?w2zfuIWriB>! z<^1psA>2d#3f_mfNz$<~(nU&xmnuC_<58mi=eMZvF=J#r!lyn1nb8=Gpl)(x6mJ>e`%EC_=ev-lk^P~8^j(&T&k3+O9KvM%c=?g_<8uP6eeOmQ zWF0@F{rOIO$mB5jx8Zi18!OiN!ihriYiIJ+Pw59vrs)qt1nMAPJ6V(99@LWsyWQz; zD%IcN)DonEVsygBegj5_D83jJgMA77c3FsOjAQHOZe;!HfR^|bj^8*>s^9kpxmE}g zjH9J{y$;UFquj&IQ;kYLV7qc&%+NqD+uxBG zV2=^m$XtxGBbNhb+wAQ;h;7L{0s0ciOQZzyPUSx`AajY7>1#PzDW>`EH>5IK< zC8BqRyQme6hqA@!LG0h-9>;DAO``NuAV3PH61_Jc5|6rrF4NYDT9ozk-%g5wQgH&T zmn@JzwENLGbDtbhdc*B3owO=cI?Y;oq*3}jk{;5S`=J^kje%dmKW7o}$XGnc?^(l! zphU}gLv2c7vkU)*X7XIVo7>2@ygB*=c(9Q8jCuLp0o1G3f#CiyamCy+Nl#^K#+-cN zZ>_9~vw0qU#K(n`9s0jmBmVIZa3&U;)@sfLU%8Ry1AeO&l{=81xfGTKsUy-!Li_qx zxc7|--UedzA8sQZ{ZC!7;$&UQ8&kmnhoVr;^%B_}$7O7;Fo+K?j3ypskfk#21JjJT z?@|a^I)a$qNdl$3{L_DW#jg^!mlgbe!fs)9MOY5>Q?1^Lg)nTQa(Np1Q#d(H;ZO^O zPw-w*I1Hm+z;mA(;`OKQgGDZvM;_zReS9<>kCdf=6?hNv3tM%5ec(!{?#vT((WCM$Jn2KmCrfRRqFvVzlwT=&iTpH7)>Vl zmvaIVSRy(Lhw>^px|-Oyo$e7mryB9%MdNn5j`dH#={xuCt_kWeAqTHGKT_OZ(-m!m z`FJ)a$Y@~B_oThQz0CG5lJ*)fym_Jb7#8LM(0J+nOgE!Jelk9#*}eQMip6DMMyvU~ z4w+dmaI~S2sl#Az=-+~wiq}!-r-DdVQ@_BH*>t8*mfaM^a$@6lxK5SvN4akD4zapYi(h6bGdQ=gwX~*K?<=lY)j;Io5d*D z3aH9pDP_gqK|A43Qs__aqN#=|3!Vrq#Cd^Gzh*I+f<+BiQK_x{0`V~z5U}|3EKLXI zNJUB{HDKpUkaKW7%}BlPaQKVVzvuDKT~Oa8CN}gPb$>$s$s7twakA2fqo@yPT+U@Z zhuZi)7!s)wh(BmBse4J->q40Muk*nER3ejBB5B+Xd(J+Zg!*TAxV~Wg`$IRrK$4O{ z64Q zc?J3{*0k|fN=dyk)|IJT1Xe!~H}*Ms9xX9_@#Zabza`5yG{bp@>eaarXU|2kRXb2xBc>|;<^}x` z4Avy=B-v<(unCm*BYuMOI{P`XgYYjx;Z)2l1`gb`bgumydhd5oC?kE>bDGnQEAfo) zHuJe--DlPwq$VJTzWd$YbWQU&CV72TBV3QkE+o!8Vlar#R7Qrk(lbpcDnwDZgd<-R zs-C72P4kw(5fyjNJbJ4*9WF!NU50^jzyNewC&MA1N;dqrMSPjPzr>|58729XiFW=Z zfF>+10XKAI(@t#%O73%pu8i(AbZTSM=bVPIL(|%1VX{6iaiXM!4San>`iE#gwyY5U zurzZ&m&xZ<*5H2DAOv%(cMBuU+A&7^9A6MU12pa4Cc0Xo_T*7DuyTspm_Xy+yBYZG zCpjZHI}VzaiPqSbyy&YLfK8|KJJS3fvND^&%fifuNHfRxz0M&vmugJ>Liu2r(7ZECqaMBGs_|mMbLsLf5`i8xSX+FxV%qy zGq@CXCfaAADi{_ERMO#(c82)u=J448d?H!*gc{8@>4rkkuzL6=&@nG(iQn<(uDYnl6Q9p?X)lz9>E6>}$)*QmIf>}P13d8!Rjc10Rh z#69jHgw+j1_;-4?n(0;2swZ!Rh0BxG>A&*JMI0UXV==Es08mSeAW_sMeAUU31;I&+ zB-LN;RhaX|%Aq4mnb$Q>kpT%b=bo+pFaw#MgJaDfK1mZ za82@+1WU|hx+NEV_q0G0Kf9G}!$k>fdZTJkRVz|QYR!d)25`2@&5C*}eu(3rKWg$V zNtfU1G*cSp>ZdCa!QhS?c+q8~Etn<2K?35L*DG?49VS159A5XN^AAW&9nHgkV)O7r77abM zS!Jva~kkpJDYkd&Pc{;392J9eC|=Ossu5}LY; zn?^g!0W0AC*oz#<+x`TZ(;%;0PCr|Q@}nz){bqEhw-biHh&7(xJC%gOQ0T-07H9U5 zJIaj+Ik|OukEd?iG#iHozrB8I?H;pz?fxUfC0Hn`m3QNFm2ifDb5zt}J61a2C)zjb z+41==A)np4r+jzwK*)gOHaJ4wK?|J;8Hry{&EVzhw$`bMYI@s=`K3%)w(ypA>(op- zl|C4iaq|i~o;f(rbNXZcc17?_-UUOpieRf++;#-Vc15t$sTihRBliYD%|K?`JCfza zbgVSEa)AVX@7+n5*IHuw1GvC8a&8vRUe96i^6^%7?QZh#Gs3HY5d3qLn>9C;n)3{; z;Y4avb4)Io7-CRRnM#_xHegYcGHXgIrsk}Kbg>uPQ^|D_j8SC`sX3*4@zg+mHmUg^ z_DYQ9eLZig96H#ZNL)ia*F18@DH|-l>ysbdJ$(=Fy`K+WoK82Y^P2uaf_Z!xv1>GN zFp5T05q(<=PNqLDNu`=uB=SC%PrgP(4fk@ndpm=hfX9lPI{b{Ed6_MpRPCw`PB>5;$>`wWHWUjcipCeF6 zI>e|TNICv`j8CQY5aUnv>@YsR9enx7gU1Bdo2z-p{w5IM!jvy`WvZ@Nn~@U& zevX_EV<)mycvXv_8o5`tz`Q5ZF2R;3WNsea1rxGFm-6K&Yt5%>KPNu5u(P#nD&AUL z6|9YBXp-4~?fj)q9tth!7Fi>+f<`Ae(am4(uHxAyz7wykZk>!0l=!#!;{4YAPM(X! zh&qwP`K^;-m-zwZ+rk7JTgHNZ*6(?RHm_Wqym3_Ph*6ZaNhC8nSf;n=k}TB4Y9@0# zQBzUZJ!iH~X2HeOR_S{vJ!H|*^J3FkvK9Td9fVWZv{s)U5t3attai;6HZHR#VLYqz{nf{QzyW@M9kp2n3Qn8CgZV2@NJyE1{ zGbTmiZY2fHEzfOHlxYbN-K4@Fz1$u0TsI!o6zq0BV7 z`aEly=(KcpaQ@Y_=!R;Ua|_&H=W}tv4>a%2wB3U|X4X%~R70Z{f_YRHx=H|}KI>$Q zS;wmg-&}@m*Cu}XrM*w+*;P(!xrFnZBBpTxu~;>5r<_E~e2E_iBPO(JC|%5tuJJ)| z+FY@{eP?0=oiPIl;%M>r9jv6q2%Yn3`&;=JDX)BQIO*DS=rcNh+d;>_aGF){3!0m? zLYd!#X&}Q5ez#1e@jA{C5Pv5z9VC;ZQ&yn!UZ99oJSe$GDmH5< zhyK1y(8Q7StdkNqnDF&|d0QhV@Jk9AlGr3)CNgn>T((Z3KkjZlrXa#3>;)1MFOze7 zqo-uj!a}pRGIGdd#9;%;ikqKHB^^eK!3gVmy@TeR_mgy1#hjR4Asxx!u(PP{Af~kw z+>4)^FC23QT`34&{G-Ty!%hsxSX_k=omlINCHp{^9fnSw6y1>{u7^I~^s!{9BflHY zcie6OY5*W}j8iI3&Na)4Q5h%XB-l`z$p}qwaAM>%khEJ1m4ddDl45Kl4*rcPnzi`T z0fn4WsXXvqvxEtZZy4%;7S?JuNS_x9g{0KtQqhQCJgyEp9ZwZ^L& zpFZ=r2r|jR%O1Yg%h|S$sFjj)b>!S9$--U$9hl>wXStU9i>@` z(O@=p#3cPoZUR-lM-O?KBzw=M!%xC;7`G`>zSsp--5;sng?>QQdA`!*G z5+1NkND9}<0l$lfA1IyZL)Y8p$o&L+TuD7QkD=UZmdyS^(&J?|_$HaPq{z{#!RgoZ zr^L=ubBPfdc=PM4q&?^n(n%?a!H%jy^2EvO0(7TCUeA@HW}v0(VBCb+&5NcNC7kc& ztk24f)#%(yR`l{EIC>HgoR7#{kETu*2QQh`a|xeq>)ZLNK~+0z7e*ID5zI=yMnk?& z^k=9_W%|=L+4Ue%P!`;wzFB>{*&$h=Qz<+Cle}f;!w@cPN*zL6Ny;VAuHacq-|t^& z9=q7JS&|y*0=?muz8xCalHbF+kfQlHmENjcjVvCr0o8s-Jd3s3wT*O#OA`&|`yU$2 zMV(8vg*03}Lq%O2T8z5Lz$S2A3-xTMr|;`(PsPuk@?Dc3 z5hF|bZ6)7jL|^5I-Ywtt##R~0`abOI!>cU{Y}Q@~@;C|zHIpTFX7V}Kz)jXbB>q3?1j>kVB8tRJS%e)JQZWY59WgE90!|^KKJ2Te^!(U4g@GF^o*9{L# z;1BJqe3uE|pVw;Td)IuI8^5^=?Z=fB1tYB5XMLzP!m6FLUXHU7y6A|u@Sgil>t)?W zpU(TCw)|GjKMI^|b+mzU7%xZS_W(2)IDsDaDEALZ9z3b`{${!VZbp2(07kkob0lS=9SLgvde!VuKXb>k=ax zUD)96>gg%6$c!h5|HudhFaAd4x*->`#~volkSx>%ywUxVbKgMph7N2hXxqoe+d~U( zj(&?sjD-Q8StJ<7O+!{PA9#6IK|UZH?yB zsE$s*Qyo~D_=LUf2TYh_cR%v*QS z-^Co^9^H55rURN@YRMhP&$j=B3sMq*Of05dR`kY}m1>ED^Gl=8Otg+UgJsyn13}`~ zqT-QELt%q&Jq|0&V5HP3=!P8jsoYE-T|F5nO;_1S1f27cLb9ca7H+oTD^y*?(8<~w(=}e5*zf(Vcr(YRJmWmC>Co>pNOobxThqMP1 z8HLPRy8D(00zxCvL`(Ek#-NH#byB4+Pa?&i6a0uyGB7w1#7Ym!S;s~2IWtK*9moaV zpyy6`5N>v8w|MW)(4Gr5ZDcc*Ayt&|>2y{dV=9sJRO}L%IDx9xsV)_-qhi}~mE%Aq z@U01+c|e#>`Z^-}S&Nj`vy(%oe9iq#!?6v~@rpc#(QQPH(Ofl8sZss=By1CYMKD&3 zC7){x>n=~lj=B)CPNJtGtz81=j@iyZI1J?)P_6~#I>O(2P8eG1I+rw8eiB6K?8>K$ zO^DwgX*X2TA_5y1# z%!9x)$|{4whU;6KA~{SJXi+JP6!SD=P!=2pSr9F5JJP~3#HWmVyCTj1glZFJOAc}X zg6!tWDBeH5!_F3+7us1r2Su&7LOVN)Jj8rJU~DJy2-xx`l_mB5gfrj!&)l@L+hZEJ zWoN3*+%&*lV$1Q(ILMZp{w=K72^wWx%x=D3@T+s3eQPcS8U-@91nhpkVP^AX)QH^P z4$RJdiVud>!MQ--?7Jo2^2yJ^m@g!2bDj13Pj8mHpGqfGnwrTv=GhLB`ANmrNI7Ix z`axEMd67z4`8^?9hoxPhUn+BmsGa@^mfB9Kwp;5QA7^eF9Nl~7rW+&8I>SHqb#A0C zZ96W*c;Rcdd%nV_Y=uQDx~TcH5+3k<4j$7Y+Z^X(euS?HCFK(g$o9sU>1+18zd}w7 z10`~TulOF)f4^~*4fCEDD=ciVK+wI{>y>u$dPbQORD(MJjDCZR7DmI8GEYNgIxOL} zpTpdr+y4?G=Yvh~z6KlxB{3*{E21kk4Q@Ke$w&M!-nh+SK5J`s{EVRN7t-37zmTyg zr^khU9;HBC<+n`&5G{t7_*KsLO7NGJGu=GT9I3Z=E`L@O{Np}BodHyA0l7N~l4Jdk zkh!E?hJ8Y5SN5z^Be3TX2}D+O-eFJA2%-l00K+%m@_(^q`R?)v>>m@{*rG|nDOPIp z2HKy2UyR~1CzVZ4#rp2+T3B|BjHfQ`H~_VPvHA2CYg`t53=tEoS!=CD&5;M^M)erX zf!C~KmBhd|jf=I8Sf+GG_#kNkmi_+S*_4ds@32l9pk0NfG+!WC>fTpsVq;LafnEYA z6f-Ygz|IeT0tLFf52{d9yB~5ACSWSQEsDCBOJ>~8RAwliYhXFZH6x{hQ7PP8>dKDN zKS$?+L`K-d8lrdC)>`Onx)cy5C&BlRpl9k!Y=B58z4oqAJxb7jciRRycH2L)_-7J^ zDW6B!Up+LbY0f991<;*W#caE^ltt!hEBKv4fT7FeVBjck9b#u!F|J#y=COdaL4 zy;b>8NiARPswJCU;&*<3I;}1lM}T!CH0OK|EFraOBDXK(J5xdvL7;5_`M{4NxBpJB z05^;6{JA+#>7U3cuZbP}?=o5ddj2)zTA3*PF*OpO=e|DZRc5)TsxKci%9;D*#d;rn zkp=-%Ba~OZB@b>_&@q7wo}hCmYuTX1kmF+2WetMpnu_h_g;esEiONL}qzXjuI1?IE zNev2%hiMIR)T**4hr0ulDlfe3WZ`a=iRrFP5mW?{bgPDlyBdgs^f>PX0UU#SXk0hk zieVNpn;e8+M-4$A4(A_0AQLsiyURoq091CenLLLxfT!l=kLJhG&p2 z6&vg+v8O2E5&IhPHi&6hs@X+#92`zmS&_ix5?QZfmAQH%eF!Tr%2Ymp%E6VDVGktL z>7fGH#hxjDUr8$!!KQm9#t*MIn^LXV5^<_B8ZzQq^7#N+l$K~MZPiEe1gpu))D0{feIF_YDPed*{WkYXC!t}r>+1i|5-5ecN^_P7uuflXpT<2A6rwM zIQO$)oMATr>|!_M=O%90oV=kR(X{c#;mI?(UH(0>`Ne9}p_b{F1^EzEYi)1Se*H-N z5B!TAW4!b$WDFy7?q|uSjmaA}C)RLHLiFGqCftn3<9cB9ZB(Ix>3>!&n@x~?EPZ@ zT?Y~RBnCuxOPu^(vf!3P!w)wTL>)amzv&aOX|4O=W{Tz{Mz2bo{FX${eqqRS;7CRU z`Mr)-ky!x_;%6D(f*Jfxj$V~K`7P;mf~5R))M7>EW7zGE}n^a7A1jYPld(!n!^1WuXM5rw$xj|}5 zM21fKrS)k<=cSPM=XZ%5C#)qTf3$2IZ(<9}#_}gOa{FK{R2!Z*v-+?|^SL}fC99rF z{ulzotWvY_&cv2`@G2UAU8NSx6B}BLh`L$!_q;TMv0Ht?0>0^`%;S^&_(v}n`Ij^K z&E;6-y3MD2XxxyA-2MQv0FBC%b$4?B#$nOB^&>T`PvZ5k$Q{S2h%29Jc$$Gzau--t z!6f|9jqtHNnwN||ZKgV?SjUyD!k-b>6@+J{ps?Z`yPU+$N2-1Gks>*1GT45)b>{Tk z%bIqbIlWI#Q-R@_KAmq9X7m1m)qEAJ)Pa z9!L)SQ2mhT+wc%;arYTMD3EVjV#oHErD_ShWryVyWubjEn2-W&h@P9N56eeyt-hVP zAPA|u$|?oi#`q;c9Y8>$!~>;7UNF@(D-ypI8u6`^b0;goJWtj6ZRe(r{j-_1#Z8lW zQ=!^8`aaPkQy#pORB<-_1V06O7NhM?H7b<2{zEFg9|d3TGET$5#!}u;3-y$npp|&rmvEei?}-)O-e%<;YC%kdH8D50 z_?~Pin$`!ca#c-+&Pl8=$&tOzs=t4?`ip%1C8NCbrDriZNGwiQNxAMCH$M!yaC0AKX9k8`QRN@t$D=`&_7-_ zlO~96ZZD@xsRdf~K-pTEbpF=yM}MpQUjj+{jjN>pqzar}15CUY8zEDS$*p9-{ILwj z#bD;Hr2aUypayjG@?E`D;FsX#ahyM+mv8E&gikMr`;wYhvowHSp6p&WujJ*-8~Ws= zPVUom2u4u&bN}Zs_2w=^Blf6!nLII%RTK&LQWN!m!G>7^8#~8i&EZ@K2+D~98_Swz zGd>J{e~R&@6sp7@r(9~mMhFfS++E~fCx~ZSP+$0GWezR^#+D?h?Yz_v?N;)a_g@*_ zO1@hM%P>5GV$4*EElbee;ds_U0~OnU?jZ;`E?(3*GT;nFYL zNj;M05(~ulw!IndwVDV(t(z)sEzj`NDgX()EzELhlYeT7xHV5Cj34B_0EXX>(%vvTn4X>6$ zzrd$j_@tSnQM!-cw!kfo=l8$s?E6XXH&?sjklsh=GVFfA%RrpqBlGekCoRoKP|akZ ziM+-Gl<1IyqlD>go#o)Fyx8KrgnOxby_%;`C0kEV0ax)?IGN#&%^&Gh?io}r_%&{b z!{5)E(3H%z>_@w6Jb-7nI z4VZadpQcFsMr-&|3OiShnkHUT3jvzrTt2`idSI{Ur70;dSNWF@3>5AE*5-^L?^kBJz&G}FQ`5KT#5GMj(}@eY zJO&OSPZ@M~dCj%;k=`#jiK^}f_Y7u73$qz^E}ZMO|$k^TIZVfC0oGq{uWq5 z$XCd88rPA|`7b{sb-Ic~7L{daVmHrHACkc(%nU1jo5w&2#cAG+)-s}adyam2TNJ8d zx(Gd-c>`fc{4qMn)5Y`d~_Ca3XoUA{w2&lXtOb z5iXIn+&F{^zQn-uHhB9G=MW>e#u4|#I_8Xi_CG$s(I*#cv~7IpQ_YRCN0k4Dw)1$Q^VxJFkZ=4F z=_urhs}uV~o_Ri*v!Sj&H{Weri7oF#6j-00L7_04sScL_Ol%MX=_updE4*+_Ksbe# zJDE0iPZq{UXJH(@(p~2`L6|;Q(Mse4U330!$v!xy?xl~{agM+$Zu*yeZ@6i{- zz!p=4!>+RNr8Gk2)I7_=345D4#^=8*g<2o{_5F~dk@%-rl2mLi=wwJ%Xvio>NAua$ zV=%~mix`0GTc3fGDBZ}jXL5eXWOo^jW(eTp@DSY%+0q|B33X&Xzxn%8%g$~uG&#u= z@<6FR{q7fH9)6)_V&pDj?nt~+CN_+qZa)()k@Jh!(j_gp9hsNGo+YHly?aqYbu0L* z2<>Vz995Or+CH)61?hX$xfx`1zJOEZ$w;g9t?lKGrrm;GJ0Lk*6n^8iuX&`(% zD&F?P%u)cSc0vC4DIHFW*v=urct8T-mxJe?WRyl@dRPu%%e$*69WDp&ZiJ_aQ;5wL zDU+37Hr!#T@NMD<)eS!S5R*zA!0CID_>tt>Q?VcWdf!vMtSiHBrgpl>id^Z7e5*^5 zi&W$fNM~37-h3)nEfxDN-Z$kebf_BMJO>k@Qu=aA1)J!Kjj2?m=WM#{Lpt#}_}M)T z>EFNupVyG(mdZ2AVeUecikx51JmV{3`NrVsx49j}Ug#chbP$98cSwAUQs6ViYYRsxm%rV3-6Ltkj6#lb7Ad>-y-nV|8(Hu7WNq{^ z>Tun)6Rz|0OAwXU*d=|e@LhCV&-jiNob96H2aXb1_@-hrMA44LHMA{?FZ7!3aGX3$ zEroO{?2KaqWeCdmM51B2Nk`8TeHkFr*HYM&F}iPu8a^(7S!&ph*f=S=m9%28=veE2 zODAqgG=ee0(yylLRg#A1s8b(0#1W(W)aiklZoAJb^w~Y$Ai0Dp2lEdP+b(s(Br?2Blpv9Q`IAJ3mh!#Py%_HXgp^3yi%9d| zKjknzjqNkT9MnB8!`*n545}=NM?*6OB<9!pbaT^fLL|3sv9QQ(dx}3*xovYp>Lmdd zX}*j$yi6cVHs7u}8^&MCfL`~$Qeu(27qP&HvBTA5Y*||Yp&f7c#)PxbFVcLLQn@y4 z(W)%RNGx&}^S(h+1S3~q2h#^rCG3h&NlqeWYJO9>ee64L>W3(vBSlN6w6rA4+8?nC zVgLIdlj-M}Q2w|8z(shhO^jX_>~J)1!w{eqZ8Ej}6%CW`>&^LFGQXN$1yy4b-fyEL8W`C6lzYki?#CaU{TW*hOrhUWQl!uXV~Ur`JbuI zMh1=ynyXOM^Wm}v?c5(>CzCRCM`?AnU&z@=^BnZ7L(@g`My7P&;2(iATjY*BqYcz9 zgB5v307}zLcN`j0HXUeeSaMJmRTZb-FfPR#3#f}^R zZt1xUlieb@)Iu8#6Ag6g0%1?E5sryGCc6BdE@7lOX+A zC3H>S-bRRtLAC77hh~YIj`uw58)+UYO?RVmP_(Q_a+p(24v0k1M*ftlt?7|~aYw+V z|H!a4196Q(j5NPM)R&Rh_|H3j(Z;J%kkC&#*dq=06-*cdyKS}PNb|E=t=J1AroiWH zMy!=oI7Y;;MgP(TaD#a(6boT}oKANLYa>XcVo!jsIh8JwD)HL|=={Zne2ZNnif~T{ zvEUxK=GUfX>wi`%=ndo{eK2K{QIcXYEjeWV>RT=;7Sn>mXunjfPG?zk4(Mye7BVaM zicvq^>?4{;{FM&Oar5_}jz~;pPB6@! zZ2P7Eg{rOT{=n>zx}_+228p#~4PjYLj%EYvtc#~0Q`7V_S#-A9*O~++;fBPsk2X3Kh@QE~aT**lVLP`@sfgP3JX-%IMWQq8G11xLW z{CXz}EaF!PZP#eoc?!KuxU#a^VrTB8%ZZ6w1Rk=Kl`k)lYSNGN8_N-FBq!cH$0Yx2q z=z9inoSuKeb9x%1*&!Q-EJ|OEq@)(S%xa!68El#E=m9REfuKL&8xhVfnGE;M_M&M& zfcKE*{q8>je>QRJlVqUG?Cc0?%5f_u&E&X;`IoD(tC^Q4*vr&{Ms6Rr0>iR3-2GqWR~ktc7D>KiRi)1->iw$o2g4ttHk9 z&>pZRBkT)&*(X6f^+*Mb_l8boqnBo^-V0VPdW0}Iyr}>Tj%(^C#~m%rz=~gORNFha z`*j}~r2Bk;Jvo@4#5o%X#oSnBi1%?%zXsjj<+V)0)ZM(tOw5rH+JzCal)LMQ=vkQO ztDk-()$gZz#tb))L+L_C@&lKj5=U@B%d07;Egg|&Q8M`T5PoZ0hlVn#*bnJn+fPFU zYGsLCX->}I!!Nu*ZjMLZT+E+~u4tOd<3xSD;KH29?QQ6dTe{=jSJA9geeTSoSZZ-c zj)gfBBF)YAL=OKZoPtaTsV3GkD7h8?H{Vjz`*_8Y1o$#T^;q?z)R|juIwG+IQdEWJ zXU6ROM9pjt{5qP@xoI6$1ryP%imhfL#h}(yLnPN1W_D8_Tk~eqPR`NZ4y=gWMzS%a z8`h1JTIC5i^*Si{E{`>t8P9+N1~sYN8ojc`x!tdkAIb)ED>1nJ4`=1h32gUi`&%k@ z8AO!2{hEnnY|0MriQ%?(RsK4^6bxj@sBgxTZB^cHPp8fF{pe>f5TLQ@U7~+b!TWtn zm+7UhosTqMgF*%A!$aPo{f>8O9WaI6?61f^Y$S9(p!8p4MXyl_jWBpK3WuR?tYOw( zYE2Ye36-6JWb_aO=dH9P&g_+abAp4v1Nb?6(7{yl0Cf}6yIWE)q!p>;k?x&VS5!%w zzr)}`bLnnz49DS?z*@6;Z()n%YF`j02(Alk}5eK1uxB5Q$IVtJ=AZ-|4edwCBcxbF!L> z&=ka}Y`ZfIXX4KH`OYjLo`chSDWg6pRx2Uc z8AFq9$HygBZ(oBncG$Gi)?s;*rcA!HWmtYrdLI}Dxo$m$U`7%m9m>cv()>^<-BsP&nntoL(R_o=VQpA!xREvk`*t_ValZ#h*N`Lu|VViBHIaUz1lUd?Pt|QFh+Hky^T=Yf(pO>Nw?kT zoQ{iwN3YN#sIyyG?$}T^o_LT8;9hbzxbP`6@^xiJwhD{y6A7`IcDt*P=SitiWmCC8 ztRY^=EdG+b*rMFziJN&*aC6f-jcXIo@~$`G`m#}(`}{bLefL!CpTM`Zldz%CR?D_M zFy!Ufm$?=IG~L7L(UkbJ-BIs8$9g(1_>;?p`mdI2%ZQ{+i%=Dkm$-av+gY5;@Ak}h zPe9H038;~cXRCb$X;1q5gB%ql4x)a6r`u;3)>Y z){N7QR}I-f9_KGP!L>`lUw0t=e_G`f(-9KLjAf>&GwG6g`>R8+%=4_trXQ;y`k*aC zbgVd-3`yLc)^JY``)?4Da@MSC*?DO&;xe)7v!zIxa%554@m>-8vM(N>IJ!SC%2*>@ znA8W}V1r6y%SzI(0@$q+zAGs!XgrN88@#9V{5FR%hzfQ=;~{HC95= zDHlzdlvvpsE9JR#!UavOu`-?}MN7+DW92+u6TKkX8mr)`>6+53TVs_xU2?(2gIZ!$ zJmt`aS}-}*vVg%d40heAEbcopd3P#%cGZ*4H^foNL~P{Z+M?d^t9`b4m1|L4~5 z+(s-Xc`PRn%1LiT$^Jj!O`cMEjq5etZ<^o$UPGt9qfVzE0BVQ4x$|EykwC3|RsuBx z!JkdJjtTqb*?1d?)Ut2GM$C$qQ?)ZniQMuINk|zQ#3qkNKj!h5<>~q*S;m7C(CJpp zR5B)Em%!;FvE&@P?2a<#U;S*x!o>qndZPJT*8tFE*g6R%c#J#HgfjlMp((W!%s&HD z>`KMXLXcDLC`;^Bkgoj@KJvmxSBDyYDO(!}nS7o73-Rhi0^syxNcHcpN z$BG|nFm1L%H$N7H;MM=&|D0VZ%%Dsrj|@-n7i3(`f@rfQy-3eis{W03a@a!+adF!KD);_au?!N9^%z6{T~=KJ2+DKxHG^q_af=?L*Y~sJSQlAGJ4WC z)9P#$r!IJvaHc=a^Fy3wCf&@csf-Ex?}ai7wnqn^Zyi8w$#_9oFw^7gAf=zj)4BZ} zRb|h}&N};Y?bVlIC}mPF!Hzmpb=jmQOr{L#C8ZZ*T4hkLzHIWP&a{+XG-a~0ER!#} zh`KVUmra?>eqspI!K&HZn~hfjb(a$X(W4eh!_#|0HOx?QjvQ!g6C;g(Nupz)=6}_G z^`5a!jLmc$bZk>!f_c*Hk@!I24mA<7E9kUA(0NqWkD$L8l2MO%HHCu*_vKxWvO83z zx1Ar)i;5wz0%}L9~$lb(p1(#*Go#ih$75vga(wN^o=S3Gxo~)~b_-P(K zT6&RdY0BiuzNL$zr3jqFaZ2gM2&)>plkuW>okSR-vU9C}&9y>E0!gA1@m6QT38Y z^SyK?5pYt7h(h7}^~aHbcvp0pwM=9qK7W#&HS5X`An-}eRnYV4Z<>~I4y9}u%KVb> zvegFq_4pT1jlb8^Eyiv$%3%sPvY(GX0qM9S|M-l`O zaw`X)S0O7tQ{7>@DuHh*+t*b^E)xAB&F*ltFvMvCRCZQCQEcZP&Q~xAP0j^)`buQp z);W75cz*#oiP*+1iRHvg2FyF?NW7N9LCc=B-U9)OgK@%kn+fo->qT(_|F>Md4i|D* ze^=_OJ>6WwlkfQycZ(i{>&E?ilU)EcFg^45J_PIQ~-X z9_-!TeoPLoHnIHLGuWl6Zj^zaa;VW^A(QGBzYC=5>%0r zOtSxwvTZM0eD>`<5Ropv*B#vXv;@ifyxG0!r}J8;sJIlAxN($N**R`JT%TRZ_oNZp z23>@_fs?D1eoAuUMr8!OQ2JZ&yHh?+=WA*&_P%4quNVGovSB;0p;>iu zu8lr6M8~@0$7RZxz?BU#Rb23HzMMoITG z`?emAe?DhBJtNSP67Lwb{tk-u$z@=>esxXX=q|gVr|<3{IsgR1szir{o9^bd?v~xE7jo0sH}M?1d6R_ zPiu0`?3Mps%=h^ax;@Q|0WM*x$NG;@RpsGQyH25CdBO^Yw={P^s9@yf@h2aMq;Lj`ASx1g1V4mT_I!X;m`{pTdUj_R$M9)x> zY?1Vb5<1B=3HD zMbF&I6qRNHC8#kIkd2moZq#Rc>L--cAGG`T?zu)Nx6BAs_Yuc}bb#y1)OK!O+GYmEZZv zEIb9ot?B$Xa@n@R`X{RUAr-CPTp;vC8k-4bA4Tu}e6l<0`6+67~8|1|f*nU&= zr8y@roKpDjY{r(XF77zp>koqD#d+J% zJ6bi|iQUDvv>ps!=!~Iof!4cp!g8r(Hggu_B_3zPH8=e^QbAlfrBK*tl8G(ceq%~e zu%qC3neG)w6V;zXfpB9AOHI4PBkP1IxLqPTS@}bSmk+I8%P~N5Xik@?nU#aKjQvGn2)eK#b+<|FWA-PCJU9IL_dGuHg62=ZfMkW;|y3#+MqUoHsq9`IY;yiK*D0zPaO}J{hU_FHoA4zl6k& zK6Hnd%4i--5sbCXVy0p?!)oa*r5p2t99oo`M&f5n?@ZU*&X_Qp8kJqm`(4mejjg2j zUeB6k4?J-75AElp`Sak{NU#H~{FzmVJ{%l3klwj_7_wygU!sMV>9fB{7ES5O}W(+BR7yn@Ng!qZh|lwFkHC z%gUh#LL@p~s4a*f4_KB?FV*|<{#q$L(H6>~MJg}u*3yrpNCi=cLT z2BJSZ_^^PNUCfz;y*Ri*P_~P+o%+vr=m>F6 za+us^UeeQKwWoz@Uj24Ty-c!LJ(T^t~6d`rAk6VBdI zD~LF*Hd5QJTJ2iWkP-Z6e941V^5z^E$%!7U`zdSsm7|PB2l@IMH!MPAcN=8Lnh@>C zvxF$uy)z;DyxhJUVbVMsz1=$#qUN3GSZp^kRdmnv0ZJxd-lO@sL{YNm{bbKAA?M_* z`F!{mY<>`6U_NTSlM2ZyU}y)h{Uqpc??BzjuetX+(|e?1+rvN^Z>uNNQnOV?U3LK2!Wn#8IFB zA?(=H%&K_QUj_H#g^no(IW=a>il}fF2FRI${FZpxsaTMl#HQ_AVKrzIB9f06mhc7t z6gA9~_T0hGHrjVv)EsM}F zdy-P=*-(h3vSN1Ac}(u`5jMJ(Ge6lHur*G5DAu-r}GM=@$8i5>+h zNH`Rp2z|AUEPe*SU2qX1npjT+)Y6tRI}{wg1N7?>q$+J)87vnUy~G^w&4z!Bipz>g zVnh+cET;8=Ld-LwQl*^4yf0amoyTk>^25q@yaI9ky?MOp5wF9x53gr-3_;Vbj7oQh zw9q@Gn2I{&>a&nrqi5?`dbDC4^Y2R^#gK_imzVL-8a#L(A@uU37!zrJ4WhHcwt((c zHgnd&W01pt(h_(BhRHki&(5;mqPkd-n-0Y4_8YRn-12JVF1WMr)~N7p;kxbInV%uB zr$YC<>!)xk{W%>}|2UR3ej@%vMlKg4E%erX+m2*4gM^WC22dUrgPM0|AJ;7%twz@_ z{sU$6%8rv}ynrl1D$+u77!rn1LMZq+e8yoA^F-qP9c|15-75nDeL+BzcjBCeX8KDY zXVN9tZ5O8c_nD#mUpcT3^KF~x?P%g^l`zgc=$fzqtIjtee3$*vv10Sj94kKC-yC4I z#v7MGll1(}W(I=xTsq_K#gZGY>ImuYmYDcBx4JidQJTlR=z*%ia#Qug#>M5SY}L6p zR2@5GLRhXB#){A^27X8?k{MBqkRoS*rEhR%D>!wl_`WY-+lB8ns*!2JBf@WZlHYx0 z;O~V#NFUY->9vyR4AOV13mJ&%|B1+MUco6+6h(qMCK1h)O)pl7yPSOqf@4233AK~E z#P9>)RA+|AH82lOBs9umT1^K6tIYhlT+6mGZL(?*^9gOov}7L}pR{k;3dV!C8{>r{at|1HPjxJj2{=LHf#S~XXNmb^ zg0@{^Q`3pbqCzTL%rmY!Bj!7)LWWpRBf%ZSI$xygkeGKR=59dutdu;qW*l7|&m2Gl z!K5Z>MiH-#P1fcIJ2B9iwe-oKMP!(2DU13R;X-vpoZ|0E{8cnRk-z!;y_mmw!6O(1 zt-6cuk`>H0m4aSPVkL>dh9u1-X(mZCv1Q}@@G^M)>n+}Yb>yWgf~&-8pO<>8w^Xp@ znfj`<5Y$RHqOXXn;U_uY7bUFR&k=7BvQ+DF()YpXaWGMK{0!db2ZhI}>(Bg@MUXM& z8B$68J9I^KFOIh^=B}QCw%r{Shc3Zu@ui7vY3DGXoYcA544j9qU}J=>|7^hgKE;g} zniQzv846Ygj~}ZB&ZPln1GMgzRC*(S2!*t`mbrm?{sfPGNDRb%5+Z#?w>XILg^Pm( zmXy3|0>{8P0Pgr{TYiaW-M;u5JS$rJ44&F_Vau>QA&@7`6X@m}Ki5gmk@!Rzn@ObG zn{rv9JBrpLH|vnX&f%I)4Q>xMeigEpMZ!4=OQjbBv?RD);_4mq>fTuF0*(DtJj~3= zqqs9zjo;r3`R$5+2AkV%a(oJ|-6{e*Zyy4`l<+tNz9~MsNJSkk# zvden-a6aOlqb1O{-Ge}DE<$q>HhASd|mr!H}~1aMf3NoOmZgeIMCr$0rUcE8#LqeFx76Rn*m*$dOMW{|aQP z9RJFZZI_?uj&^!o8YZ=Gq_D;19d@la_^BX!yVfhtX0HyVbeM1N9yeU%vHe_VS@{K$ zbuVn^gE;n0N1$nbGUV6bqr|Vb?sELXCf8MkSz85+!sH13DacSF?+l|~NQw38vZKUrr9Z?72}X}6i7EyuC}5!9 zT3c}HNynd+98;7$JwMS{m>k2uMaeM@bf3^WFZeAc9JY45Qi@@INRM}pH2wc^h909t z5Bz*1b|ACn1DgC!G+E8CscZ6E`KpRwrkQCMU*6aoO)`UmfsUG;SZbupyPNJpEI zn#M#*YD3!CVBmEp8GdMxkd`*EL8O5ATa*%YFz+J@&OCk8@FZ|+^SO>V2`p$oA}=wb zI61Nbkq2~MaLd?m3vo|Gns+c=CTqqzZpB+}y~ShS6TQaW*@OPwSmccThMYc4wTy~) zZXM|qtfs8}%=*-bMzxt7A?^fkpF{M5;{8C{)q~=3|J!HXNv(N?l3+Jczz3$sd=sfn z6&`eyvAeWK8 zx#Q$|f-gSdMTobKpYxdCAt2j@`92Z{;eq0}_n9nCdhZMQ6|kHmLo7YGKuj#lfF*X1>< zd0sDJ9w2#nzSdJU;03kAKzS{U>1-(C4{i9J6nWiRQ0Bm{Jnq-qxD&ftWD_^$MdH^8 zMADXk=F&D!Hz!!C!cJzYB`*z@zO4z)5wE;*zI*03Mht7jXvUwofKe1a3j8|u;-Zoo znj#&`Rg9lJUMD3}YxH1WN93BsQNWmL-XjLf;YL;t*hMB1W_U6<)+tenlSWJX}EH6|e*|8@t; z`QbW}8aPxJJgo+{8SPV5T0%3Bf1`+vPS-6`N4j>SNX(P#GvxQkbmQ;qI=XR{>rx%( z6&{HO6L%iUsQ+1;e$YYLi{!BDvgMR{GWMMZZy;(Wr`#9Y@Da~;U#!2!uuoH|?uxzr z1K6A!Evp;!MRR-8(=fh{7ddI>%5s7|sDwq9;)-G!yJGg*+qYhsD9dbec#Ic5gsVQ0 z%e}!HBK3M?y{>U9YSU>&l06scC<()(=k`M(nUo%?O(4x{JfEG}`=yjBgI=wOM>+Z@ zPA7JW+_4u9A-ZQUVhvx=O_Y@71rP@%C6%TOcO6okrL4`5@OxIfi0n?k1=957iA6Y* z89X-3*B5bg(8k0t&TZ1RAtk-r8*4L4zzk^f-%umb`Lw2YpnUUiAZ2j2`J+E@1B zFBHmDk2HS-4r(J&P}Y80efnN~h2u06tUv@<1lpp{$=d!lE;_vOIMo}fIEw6 z8b(9m23%Uk_WWEmjMk?KM^9_RS31O^&8vlA-c}L(nE-4vf)$++6m`4W#!}&!!S5?k z%kcY?TC|+PseXwPa#XoU| z$dkw<-cZFMg_F45ad;hP0Nt#I`qW&zUeD<>esZMEHm#OQ^ixlgQ>rx$_lYdQ z$eKiD;@X;6tJbc%GlR&ioi~$9Xl1;@kedCUpp%J9{W9cI3{-hw{PdRli{7FPS?)6F zU`!O&+&asUN8~|wd7ALkI)ZWygbIS!=KumFO}r*fdmo9qk2}1Jvt}5r_HR< zBnOix<2Rg6;1DVpv_uJh6}MhprFbxgpEjKDqD<@_lA|2G4yS%xbxFvCU zK35o1An{t;PL7DpEeO5_&kvJW;ZV7NpCM%;aT;q6hP^MErB%=CgC7sbvIVOTmQMU+ zmKzg1)81}8sbc@i9!LYBOf|Yv8(aw}3E_@V7VM8vxyUK&QnCL^9-NuU4@M#mQW{Ol z!bDp=ef~utnAu(-Gb*!`4?U&pK`ozq3Hbf|j`sf)1;-k$Yi1g*#W26rEAWU=fk)J* zVr`*>l2$^V$@z&u?PKa`rie<#XlvK?fJ53jvfM2ZyPF%}f8Og^$o)P?hp(fwp> zEa81>j{Y6GGP=jmsSLN9^4kW^<|(>26DTX2K4SXSb%8k(JGZA<$BOjdsi zgUQxliTa~sJJ`>pJ|!1et7v+)wOT`atYqhem_$s^oMfdp{gSb9_9ZV-i7-yJHB{e| zA;>xkL|tV*M@F?Vk7=K>WIh4SzKH?J!eo73;>5gGIECq{1(N>QZ2G55yX42QXNi_G zhAax6E)#{WxJeXh$j)!rI^HowwD4U`$$m=Q(K;;5u%?nSuF1ywq0dL+D}*y))5|zW zpLC6_>XSUBfWvLhPmZYu#8`pQHYhSzvU8~sO58~L^egyy1`v>Vgh7XlGu*3UBM1kX z2r^VzsJ|mZs>GHxWb})iVDqBnDY`3MKDIj2d?IBX_~6^qF(Efr>x5oy7lj*DZF@Pc zC67epgAt^J6e8)2!o(M9Ir>5H{(m5N=)Y|xIvX;Ao5Tihb)Wbqt7~b9omE47IW&T( z;#6_7ow6|D0O;GNdGBZz=51$+eA?oU_d+ZZM0!J{@D7$Co+7WJZ9yYtdg+#km-c33 z2i0V*T_pbyG8#eSt+E>fI=Yt01C$33sbTN+@9V8==DNS9(hVB5)(L%0Y33;magM!M zU#;9f{>PKN1?XQ5N*cv=@GZD$6`#YrOKZYRxt-S)>?RPN(!HXS$r(K;>Sz*>40Kh7 z$|JmcTOS$^qw=*XD?4nz1_?=}gK%$ucL-M|_CSsi;Pe)Pk>K@rg-v!UPSS9dpllb8 z?c$0!NG7hg%+SM~yv}o~mBIG<|Ax4TsQWnF1#wJKdOXP5__rIr;(>5}TCjWs-78&P zn0rbV!kv@(8$%Rb!Gl!LJ-#XV@;tv$$TGXj;=vaO=VT#{epQ1V5dfm>uH%;@exp`w}&< zU6$cfk;da)>hbQFE7`FV`mK(P9{nFkYdreCO?{t32JJA`Bacx zCPLNilQVQ<(_U?Zz5Q>LXWL=u)eX^|aPu3ZyAPe((3B3|(-4Drwe26ioWW98AESfe zpg{N8yZq~o`=~z^u0J-vOsH0?7)u0e6yZD>K7I?6Z7Zs^RvO=SJ)@HmwcW#=#EoXo zfByxT#EP%+SJj)tw5UwWihnU#-L$ME-ZFldxPI8b>85eL>r#fLqNUgTzx8I|ofeN$ z@jBACGN{TKfub5^sQ#)h>k(JG8s`e=6ouMjs?mP_*^yWf9C0eqG^N@&B_$D}+ z*|AMS=57?NRs_E>gXu;O1-)g#Gw!BJHQYp;@B^K~Zc2Q2NGWqOeY|owr!x;pK#6Tq zZ>;F%U>UKx&t*Eh8Oqzhy+wDmF8ygbS zw33RMLK65Buk$>UPbeHjwMl_WjiT~!KQQBY{vZ_%|OHfJcsm9z{o3x8Lat90dvl5SXmo*V- zVer$}K~mk)34SGB0Esn*s82~Jba(YeBs(x*sS}tIx?9Z5lGTHU9V7TRLyB4PyHwl? zxifp~I%J=wKhQ5B?`xU%g7IT}Cz&Uj4w*ABPF-oDCtv`I){eBZIBLiC0E zj^mGHPvJHbS;4Uojb$&BV=eiyEu~Gb$=@7>7;3P3A;gyMM=uXvM^PhBjLFr-iPed9 z8|qHY&5xGGUyhcfM&!2b%xgxW?(MfCPc-JnUv6qktP368?3tU6iVSZFe@>X4yB3QO zHWh4owZkWJv;1>(tfN0?1Q(DQnzb}yy=g$FF7C+ZH0wT92+9=Zpoc%3dXb@PJUzR#qv&rt@Hl!;q+vBQIKDW_w64$%@%=qNx)kE52H{|ubmh;pa z{BRxl9Bx<>9hj5Y$DBl}md!r25xM0cM#&DjA&YFf@dfZnjmbNDbYA3^96dLcH!o_b z+pSEaNJg166ld^c=lG`@Z7=JV8%(L;tTf^wGJWHUiL!AqoX zJStF_JfSFgLRG?Y#g)e52GpBT79aD2wOU_JD6I^eHo8A)DI3n?{}+dLal}ybJ8HHg zS9Uv%2m8JPmBN9G-%zbX#H)jOqMr{0zv#{QSYS6orKx7a*zuXM>vXzidS-?8S0Q_P z9gz^O^d-1nIptKdXs%L?v8_Shcq{Tf}Y5z{Z#oBIP@$zkM@M0 z?+!KGbWvLdQwt_|UHpM8j8v4_VqRZuuQ_db^kH^{a;S>wsiKbnCx-E;dlN``d#mTCteB{A`WBST0^2y3)pRT5!2O7P_J@6 zla{bvq*)9Sj*nAK7W{w2C`h|#$-^Ls_~r^==ct9g8oq|Y@A#taT0$K{JW&e%D?TNPBVJ8_$oE}2up-# zsLcHz+@IQ+@*60fip`@5s;k{R=&8A5nmUw4s_C6GURfy8mT8XW#V74*oWUgO2GKvr zl+Lx`P`_|EwC_K_N)vF%S7&jbCn@ydM!{KT#(G}ZX+gsXm6oX687?{rrX%i}9a6_i zmZ+pXy}XhqFXz)7rK*`VQ7_$Wl=?Zb3OfjWI_9Gg@{M5a=A+L0J5S8^zpYv(XEw2w zC3iNz)ggD&izvmivM@{A;ScUaih_Z_>)GHwB>wq`y;sBKg7ELEc!$LelbOE>Y2ivm zRLVUrlc;)GnJCJbOHj8GCjUef?Pu2E8&2w&-wV!vfr35yhtEaOZIq7U8V@S`C&M92$uuJi&ybI?4EelP*QqOtWQv`F{srs%Hnd(HutZ5XU zhY8F*LR=j=|Duxa@p8$yr|iHG+da~+p;uYz(8|vsB1F4PomBxpk?UGl7@H4|*Ss4-$KF2=1TwlhyQ z^k?#di8RZXWv74E(k+Y?hYIema55I$zOJ3ZiQ!~`>aWIuXvVtu3O%rJ?H+0DxaTsI z&<<K51Nzd99zDHtmQKG3Rq1m@Ok~>?=R|LOWK@CMonzSytZ(Q(<)tf{;z>OzcR7YNFQrX1Bs|+$P7EwiL=xYKk zLWlXKkC{;-M7ebd@8F7tSDYE)$|2!K`|Cs}79RBUP5up7+JzkK3W1y_F9C#VB#ul) zA^8;6N!y8jwa^VHZZiyBTGayNSf!$Lw`x)XlerJ#I|h%VL4{l9?20~3Lxd=F7zf?P zGrGT+LFvTUvPtZrh?Of6KwhR%*M{?LuW6j}`tp!r9s6WTf~&+hZ#VBbCk!D{XWJ9< zoH>KrY)fC2R;M&srd4rehHR|C1s{Ip;M)=nD?dlNm(w|yoCvTyBd#s=2Xxs&z?3)sX z^^mI3o$ExF&~>yzhcRLA`olDB%d_4gcW{C@NZ}l^2m)&lbIb*0XBe_2!97ZU`TT$^p|usa365dQ`0av&%mhbK@Rmw>rrh$4OqpziP4*Wm z-BtHFPpxWeS)JG-iSx&BJs`ZasJWZ@3x2zlPi|kiZ6oT~@p_Cvd86GcdNSHYYVvPl zsIp~BbLK)!YhQ96d%|(R-PvQCAb#nD#vcsVX!@aPO95K1Ul~B@MupXm?|`m=!eUl1 z|7}9M zBCSf-qwN7dH4^(dCCHS8%|HN4kjBT`sp{8Rs1Rjc{*r!S5y26@3Gn>GI4gFBwAk{} zu_Xh0D%b4Fp)Wm`GdzKJt}E9!Q!djOcA)V*?Sp0I>aFc!CLHD~hf-Nr3yrJZu7~6_ z&e8qfBiHFaQwjgz&ddEJOH5}iZ8+E214!7YmMYY(sO8G*WqH;wHv7$KL2LNJfK`1H zt}3j*Ds(QC?DihS$U{m-k2OLkmfzSQnQUHkW1TcVews{2v|j1%RO~HhF!L!f*6d4N z*(lYOKK7)I6K1#ct4PJ}S2f&3+tS&=Tmv}$d^HkgxzBGvO<3X0N)o+=IME|hu?nYR z-5UEYjkVqB^+#Yi4VDJdta`#0$MUGw)|!f~+e-Bf=wg~&Zs+-~(WY&>Wu}5{zq6LU zd5(@SE7%|Z^=Mfce-a<377WCwNrw(c{6$%%dvTN1BGi;cj=C3#+REOW^d@+#he^McM8+()=3=NhDNOp!jZTIE?m@TOA6b zjobRxtK6=aKcH#Kg{PVr0RSBgJHnjLt*Zg#xOFxiNX;v=BdaK(hHW7}3UC$;C)RJ@ zhV((}p++Gz#IFe~7qDZ%wMe%U=q=#5U7(ZkveNxAI&b!+1*N}9BP9^_{~V34bl>#z z<|SLWYf6&h7DYL`?)2qb^fb*0dm6@Ae`Cwd>{)jO4#C-#^jDfF(8UoDqjD~1&(GIC z={(sFvsb~33n6ij6R4MfK zN*3>F8zvs>%+qBwu>uSd8K%x0n*%*kr7<^m0H*OBW-! zE>q9T(RPt?wEjt%MU^^_`_?EW2e)L%qUx8Fm_!kaA6nNQoX>G6BEr4z!s(tS(8(L+ zxybnqQG;dSY=l}8y^!A3Au2ZFdq-^1^RT?w@*RB=^sRj%#>dA&c|9?=o{x<(#dIRHS2^rKFt^4ygHi&qbz9A}eI zHCPSj;Xt?H825RBn;Ntv@{pJLStTBG%XWKuEP}$~|8nrJ3BLYP%z0!KxS_zjs^+i8 zSX#Lv-)+-rsaT~v98JCst76N_&j~LK$eOR@OgNed9x;e#If%L%c_nYbxn9+)sqW76 zr=`dpcPjB5FMER$EU%slnt8P+98l zOZn+3R4)o~`I7hjjz5kur_s%)ATyptG_fn;I1qJO&QL52jBkiE{|?{@tZYBYzU+={ zHyrtY%>8>{RMolvk7vRF0V6wVw6TpEb+k!IZK7$LNYsHQA!>?21Jah`p{-4+r51Gp z=s`%_6Ugp3m=@aF`~B1w+Ij_4stF*2R*_4+w5J!KRre5)i9`;&*~S z&sxVa{kr-|b^Mw|=b=MnodFG}2Q^6O{6AHhUcFN;gG%u&4`LZsSwu{>M}lmBM(F}J z2uY1!@&xAV!S~av`iy74XJoh4dcl^kBnJByEKA_v*>oP0dW zf8MM6in>EDdYgNXoD(wE=#-^00yS?fxWU`Cnyq;`W&1mh=-0VsGqpz%CY@kk?$t&@ zd(|rc0jVA-d}W%WC^^A|Re7s6`3AM&-RJo06$GA$nuKdemz*zd5~_9x~5ldy-Wu(a4!l8mo<#P5;1tkGGN9N za;E~4V36#Ax0Ci#OsBvbV!!;MK`?&;2yPw}33D=xV<8pzN_hj(oHZS#RpW!(Nz~Yt zkjhG>5ztS0n{`$%Weh3uB<+LlGQk-WP3%C-Xk|}e2yPI`g&i;_92chIE!J`UJ0cu|dv+>>l(0;gZY+*BhVvXemIRpnT%W2on zOi}f+oFDSoIRV#AH6$OBT!=Jg^Ge|O&Nq~Bx+0K!LwuMKo#ecb+cS!$=Or6tD6Dor zE?phaU=K1bN1!FkzlSc~5veNb8_Kb&n&u(`Q?UW$)*eUfu8?2_wE4-ySVvJM{b%Mf zd#@I%a*qukZi$kVN#`}A$x%hjYrF3Xz4Z%%rYRjGg}zlSO5->C7iqwP6t zxsi5jPVid)ss}*A*z&)sP2b@aj0Y*q@oahLN<7&=Grc0p+6ETUKy#-Ag7uWs#UZWbuQn4~i!q+Fiu7APOkUWI(@ok(k<+^7f0N2u+ru)9JhX z_ZdWl!!5_)@Dp$_;Zy%D2+wA!<&fVO6B0S{cQtZ>52mftch#r2@Y{6^>)MIp@#iE^c4kvdRw3ADVw?6pNAt|{J<%{ zgce!FUF+O)2|@)|no)u#i60GVy0-pfQ~4dDyzikA)|az$#sPE*C;A~d^Z#LWrgJ;> z2;9*i;%u2yx7NdVTG?cDTN2?cqqA~4A10lyJ$ZA;Ph#8pMrY*msSs)aG|uzGCRMI5 zPR3KQ_uJrY_-!?TzNZwkxS>AhL)??}tpB@T%AGhRw$_Z#!aoi2M95>t8|RSV|1X&a z#v6u={(jPoT`?Zm*5jD}?I6cQoaY*YsCiB4d-|U014HVyFtO4F3UxrG5k56k9qA7Y>eLmJ0FvQG!23~ zfrGnQkPXA&v*Fl&HdJPq3V(5OPcxoMT4t}?cyd)v*G5384dN${Lpt0#WGTUHTl;(# zi`re%8FDzC?d0xYxjBQ0d$v>163E*{0Xf>WtOx_6zB@AUX~~jM3!;5LML#mwy+QFo zqZWymb%%}?vU6yXgp4ta5i$TY8$pXry3CA_I<;QG4sjMv%2GpBV&-?8pRF?frGRyo zis;S8Uk&EFC<2>Ezn}DU-`kWl&b-NQFB&|VswB6f8cikCxJ&XxnY$??2zs8a^2;et zmI_R2t+|5NA9bIEQyKo7Cl$}=oRNh?$C1niL23kVgG2gyUbv7A*O)DP|@v@9Ffk^Zk|!Ju(9 z>0(YZ2h|qR8nfTojQb_~Gssi96$@QRhTx+=w!^d?0YBcQd$*wP2JFyMbbNuo6U_e* z4r=zl?W+xqA2V%;(yP>YtVJR6;C}$kCrgXoQ+~01o2Iu7{uthpvqt15=a0-y)_utI zrXR3ohPZ(ImCQzEJ06OvTOz(FkAa^e{UoEs$--)HswO_CvjLdy`R3%(QG`yZb(#@0 z`Ja++EusclSj%I+-z`}nk7V8WMD}}&DMN-}X8H?cJK?^YkIC?v=XQ|@K6an zJ>cqS+U$S*XY6;IV!Rb|ibKb`lL=&XynZ(ggw5uf#2rYV@x9~IaI*nsx?0GOQTCVp zLLZ&D?h|OAciKfxd@4_Rs`d-sK#d@Do=1!x6sGK%t|Od zl!|Oc>dm?l1B^-h3_OXihi1rfTqqa=aDS-5-XExxw3*<-t`iMnDs+?~R!C z_bmULf0qfUzXA{F;Yd3KXunjltYBRuZ&0fUIc~q42Zsm5&mRNp+vkt$|4?jvvN6}g zCa`bSFQpcENBGKH>%{*CEtBqrYL?>1MrhTGnynuGvsQ4+y_ZCxC!kRK{1L#bNjB#O zdHt7VdeL#KO!rfF08d^08wM0YDgrG4ns?;4Fho;}jRJW+oRf4;mvma6K(EvE%0OJf zz;S|@xSAyicF`IQu2O^ftYqwTW5p8UqQvEx{QLM;WxjpLd~5qVS4~%iEJj?L{R=Ko+~m~n z^`0TUBIML>hPa%8)2#?b3-~7Gk|1}9aZwL zATwGe1yH*a4Qd~aHQ=o^MRlwFhkQfRIDUraixgPpRGW-r*Nvt&>M)$Y2}YZ)$?;#I zWq@rOGPu#eE+vmd*bA_5cBN8gs7XG$1v{$`c1 z1g_eisF|8S_t8{Cky_h#KkX)=?Y_R<$%n+Ep`zpM&j?TY8mcrBnf`++H#4o7@s!s0 zsjt`iKJl*HKXr$cuxA`f*a9nczR2FehFW70gHNo+n4j3igRG4)8HS(6w#$f#HASyo4gY&dkIHFX5VgJDD|4P_BZ0qF3@qj@9_#)RC*Ms?)I9C61Rri z@|~6AL-C&2vf7Jc@^!88ln@SqyhM=C0MLk|0kz+ri%q#!r0*F_A3Im0`)p~ne~A6H z9qa!0QaluU1-tIDs3t9LYdY z2iP1y6DN(}2Y~6y_WGZAMPOq$Sieu#$gAzxFF zu&!%ql&MJP03a|Yk%**};-BQwoN}eT|Hq^;m2W!$4%ihXOd(_abyS71oJm)A2pf8+ zB)IzO4+YL!W(uTvc+RJjH60&cS zSB+vZ(s2efZ9k+z5+9+C`1I%}z}F($v0jZc_aEZ;{hnvU-N0|jh6N8_u}R{ui+Z&tI~YjZS!5z#3pRU~VhJRKdwUWSixNbs+FoTFI|Q<;09ZQ?@&n$t^|@mrg+2U^Q<*?EJD)J( zb&JzisMC05ec#T+Q3xRfeju3PY}JOm=K}}q8K?eG#{CLpprUd&YN44qxnOx&3|L|G zr_AJ%S?A;yP8mAP0a)lL}Zy^naWa%qOPd+YpB1;X~b3>oLF86h< zmnrt&cv+U{yO&^zGD|dOVKL=Kpdp$4NIxFxgnkwz28`4AJFIb<_bGqQpWqG77X;PP z1It_!narchc$wuwnb^d8Ol+bUccKJlMsV}Yk{Z@q0z&5V@mCe3=zBS!r=OTj`cRW? zJ>nN(se#(JBD)$$_d_VY-0Y7r?OSuPiAA&|S$Idgrcvb#|4ZL6exzN1VY*_3@B!P> zJS+dY49FTH*AJ<7ztq@<1w|XeBefQ&nFh1~ZJMhafRM8d$0i%B-aO9w5gkHwNn>F0r&&wg+SJwQr*#j~8q0#?m7GBg0iSFU2N!FZ7)pj1v}yYxcw{lc-V5 zI^j1MN}_*RDD&^7!u7)8Q$o)4n*(2O;A>_#U5V5ADF#{+F?opeGBP9n<1|y?lk>EX z6LsH38D}MEW16~vo2qY7#;z$%N*(9bHzzyQt94EJxM1;QoZaibiF|jy&fDPBlhLhI zr({|%Qk^Ca8{`2Q+n|kIR-qK)WJyEzXST zhf2XGf?!wp&x^bd6@h=!9br8w)ZvLh9R}@CF&kDtt=yVGqbPg2>vgJg5G%NQhH=B} zff^BEU!}~Z*e)1ECs#`4{u0_U00Q#p63)sV@1;khp#A1@Fe|46ibDxqrKlzU1Hy2w zK)Mn&Kvc2S)|-OaHsUywO;=&B)I%)Cs*3s+C`S_&xs8bfG9qzP8;@cCGbd@)Qda6R z_Qv@dWeX4^HY#T~V2N7(&tO?*+sFwiW%lNLRJmo^*$y1HA|Mqd9Ota8Lj;)_)k6gj z(0fLPc&6+>g}-@vU>Q$h6|I^gB7&99=RG1L59uJz15xj#HShQ~Td zf?BeH&+YshKcbc72|2^`(~uM5o2H5yeGv$j{fPPy%Ozhy9$Y_HYt7CHZQi046D%-P zkjzzoYSy;B;qD4;h!;xea?)B{TTG`-I zpAqsgfsXm-3$ngy8hpfns@$L9w&~hWwtNjvjD1q_m)-dHX|+#^Gba5CYaKWb{>%4} z@~+w(60HANo0kUCg`6I(&40}F{5l@TG_O^e?f!M47-(~ko+)mcDT9zc2|T?Q(v3)H z<<|69WmpEqE9`lq$@}7vUvu=Wo7LGAj%E4nQ?M<^+e3XtkCpT2bUqK04w{9+PUk~B zds`}ddegZF*5<$`()Q9XP^kg)J-!cAX1DDAf=mIIH(-;^U_-;%BL50i8f*uD?9;}i z9^W2YFKDx+e-RN8yVo@zbfrOtn8vpBi;JD7J}p%Vo-BE+3AQsoLFK+;OVxpiEpS1CYOGZSYkpism`aJ&O%U0JaI2y z?BxV-O?K>nJS;z4-$-{Evej1;khN12~!kk4a9K1Xl`=9tyxaRHH?aBJA|M?fAt{MLm z`6(Z8?$oF^5PY@fBc^dqCwI+gK8chniDE$KqTnn3NH(pI?;Y#Kuul#6vA`cd_-nw< zN@NvvF*3q*Kq#l{F(7$QCF7CVSUNK0nawxwLZW*(VTJ*YaYOwtde+2jO|FQ1ncVGb zOrcY`vs5%k488?=>6t*}(=Fr(wY{Q_d!EgF7eAw*XQR^Y;DzU=;6R&Sc9_Aift01xD%-+6?cF@AHYf&9jb< z;UGTv;U0P~D-sv~T>f$fWheeNE%ra&Mc#MmA#44=s)C@0JR$0)tGh+H!NFjkn{>~V z9?}KCvO$jS)yie^hlF#`HU3P`wA!>GmnXxSep-^=MCS-+Tu9HhXz=Y%-cA3{;o{FZ zi>f6E1P;9CsVUl5X!O@v$)3`296RW^z2s|O7z#TpN4EL3qnyra$k@IxoSXdes94zB z)AzEoa-uA)=0tEZCywBk0QDe8~0Tis$m_yR46-jw#9wS8`7JHDQU#f^L{bdPpz>(8%YsC! zocJ0T zXl4^-a@tOER@H}XFoH4cgxq*f7oz2KeVvca%4ntz273Rz^9o74A1dLc!I|f3oLW!%VjEPjn94wa&|Dc%yO%o0Jjrhy>3e7)7s4a z-|Ix?lh4+9p4#O$JFrUy2i7t^xrfO(nmW&j19E`!#O!z_dGj=I&>U|qbJz3aGCZn( z&Lpl(a(9*>B~?!6lc;fKcm?^4MG1yjF~(4tA=WgWPdvn;^|cJMnl>~{8nV?=b&-a1rUoCdg|ZY zE5flqk<~<$1#y}vX%2%*oKpF;p~@+u1XR^`OkTXj;4BmPxX1TH1;FJddyO4FO2 z&R-1&_JT&H5Prgwy!XfX6%--}`TAvxWo?r&UqnuS??NE!lqKys z&Ty8O5`U4n8;IA_|6aV_6R0ky^4ozMM&l^c^m@>n{Yh=N0`(&+f+ZqJy=xj-%CYo) zVZ41a?(nY>f;O6=(E_cH_`zHxEt8NAia0yvB zo$`*EF6&a)Vlk-Xk~mfUE9nlMe9a4vSy`A|5+@Irv~=op3d(f;4`uC;TF~qeThv}? zWJyOT8c6YRtJ?;$V!NgVo=h( zBhZPBB84fpL;{~>M}^h=07{w}JUb81yjywLiGNS+w!C1$k8xPPt-jx4t~N+%{Ko`6 z2yvVc^Q^)&s)R5XH<5l}e>zwX#r~cEdrmGMq$STvv@^EEzgg`ukkb9EwFu(UN7GkQ zDH<0D(tk|jAB#HlX$HQW#HK`JA%bRZ1Tq>uGZ1_d^DTXERvAO-i11X!P-vrl&Tz|+ zl=}xY=t#M*l^|E0k`YPL*&3rYOivk&kT5}$pigi*i)mt_VOF|8O~qfZ%t_>?|4)iE z2NR8ARX?FFg!WcAonzHIte>8p|H^P)2FTA9t^wapXbQ4?>xSB?kvD_Y0N;)cP5m|C z+qL42;jf1(6yC|3>>g%dwVsU!6F@64b}juQ4ro=o2FHQ!J%mSBk5Vo81QDPGyqSFx zh9>EgRNz>B%J92H82rcleo$N*;J4AKvyPF<-k^0cU%1~9C(7?#=|g==|Ev9y2sKt{7Y zEE3J}cM8CNj@oUO!4+0r#OBFrwYm*;8XGD)15D=+!L?!-^11aoN5eWsZQs&NKH&_Nttd-_FYGv zUoP`(x-fgr5AesHk#}~sA%hPtT&?;7(R=emjW8l~6}dB) z0G%Pa4(YSc2x5DMf@$*q5yy@u6srjfXbxo`FP5+OK@-e-AW)f{|Z83_%K;M3bZj9+Wsmar&3pD(Le(L`+mqA z6zfIG{l7dS65U;ZJi}+$kd^7|U3Uod2+60xRM3`*_$=CIL26=zb`msmkYS^}%QMx0 zOO8MxpeK`!OP5NV_;*S1e|;OJY_Ijy;E9!DzfSOi-Yb0~nydFJ66mcG1+l+g+F*nt zD?rg9lZ^KTLSy~%PtKuSFsbs6o-GVDY7egxBFVQo3-lNTF#fCm+N~6`%@{I2g#4?j z|EFf0lxc>dmPOWiB8q;L7=17hqvx#fkWVDIN8%ea<&sQOMy97qn&@{sUjGw-SYGh3 zU7yJ9*N>hr#;h@iv3Lhrnz>nQ`SU{(fW#PwB?!z!7}IhZZA`iwpJUsVR+q%sc4b%N zQb7J_oxD6fBU3U|{(ff2MZCvADysv$e^SJ9e+o{d%DvFWkT4K*=8KsmypKj<^Ts4y z*Re6oyX0tF~{Ax5OFVM^!EfN!^MUQBh2JnGg08E^fgwszGaoec9^qRb5#CwG0(r`B~(d9;?s$Vg2$a7P2T zS2|54{qPzf9gYe})#Ckrgbc&ruPP*UXSW-p`W-;+@p7UIlH;$esE-Ye2=1 zOF_=evlPev&)O9*DINqugz*1yi{ZgE_EVOeANw<(Ept^9e*)ACAa=0r`ZCI~RWXJ0 zoMmg>Luc6d*Qm8^7kBp0y9h&_SSq}|+Pf5zz|P$6LWy*d7P#AMKFx9)CH?mVK#9qTrqB#wx^B}t7%#oC98qz3N9b1fqGaJ zg>v5fS#pgDgeD&<`ame>ffADtd>=?q|BDS%?6V}{&Z8j2hIOP8H8qHV(!GQ-iCaV#TunHrw|CEQcgH!2S!*gPw>m$0?zZ88e=w9-u|{oG!U*@7TvfSd zjmY8rhe}oh4?0&}cy>zcX+&i*uCq+lK#4DK4waln_YW`~K7f;e(Lh2-cN%u2> zJSW|8H(EP!HNCPB&zz_AXfbslU-C?t-twpXT4FYAlvxy6cQ7Tyy(3QNPk3PAhtv5W z58kHA9{1IMrOeqQhAMk+-5*+epf^{`LNr2Lo9ph-vXERwCK_8)6AM`E^yR$NL~DH~ zYBhS3H_;pin?rkPby!-iK>6z^dEy#w%XPY@P+4O6e5go|290Xc&fUAo)^RxJPMCPl zm-ybf+k2yJAxGnpE7{%7SMh-#%dgGw#g#Gy->f@*)c1Q&_`Tz>A~@#cq?9XU6j)lF z1HKF18>nmOK+V28k9ZI1Ycl+ZDmS`qIBWEKmN9{AJ(I%Pe{z()kqqD0`>Nat?IJRs zwJC}69V9Uln+OH%g=8ZEFGk=r}nt5#PxCWxqOIU+z+m*aN^uYVzlh)(Jr^x!) zbjy`=E{sWEZj93HSbj;idbhq2J`w@U6gn`|8kdLAief@dKTA&IV_H z%nFIonh~ZyEW&(B%>1p`H~N7Mu?t~;DFz)H<@2atby6jwnLiT|ZS9y;kP|jrezO~? zCALOV3+N$B{N>A4#V4r3S=CU$0oSpTqr5?-4{-+%tPi!F-kNH_)bSq|$6a3l^>k13 zq&#zkotN77n)giauHoL{gIm1Rxpyy>Sn<_+X4`8)GKrEW61Q#lp0P^Kr-Pf%jW3lT z*|pYBFDSMquwrXvPq$mUIEP(-Ft27~+kTe9c}ry*bS?7Mc{SsfN^b6~Oola|m@~}C z$heBOS}Udp8VcH-&N{4AupRnROmbQ$EhOFhvg|l0Hnvz+eNIsf_le_vyOM9-fr0aK zibQz-zkVrdo;2Jcav2+QAbLtTcCrW4nJlxef>@Mv^Hd2;O1dxVi3~@GpP+Er@u@Uh z7i#ChB*{V;v!745QsAtbS>WyO*l8x(7_aSjR=w>V_W%A1Rs6NElT*DV*3|KubgONe zvx*$)il;|yY4sWl+F!|yRUX{hdVce%t({w2z2;Nf&f`{X=9sd#X}5OFDCmFN(km4; z4g=m)7$owrYx#^G8SodbOEl(r&#SL^HS`1(<+R&{B~19@cMpj z-t|>)PXv039WFxWOZ?~V6IuRen526`!Aa7Q!pH@NcG8h$8MYjC->Upk+((*S0qyOs z?2dI+fT54>(%kYmW22m;&$I1#WP3%6MEHI&^mgz*KqNlI88d(Y)ZkM$VJ`Ux4u!`l zyKjfInw~*0_|BrO4daZRyz>cbwi8u%bsmU4Fs>o5ZAB`$SscR#AejZZBF6T;uZ3qY z_|6xMhg2+}!UjFYFPK{3ZVcfXw0gXCewy_5SKoG4^|X3Z3ldX{tU^mR1@3FtFoQENS_%Lk8d@k?4olsq*Olhoo30i z5Yo?m(NgDl-yYC6cRj*^5EXfBV_E$#b7+NJf6?32Dk#@su+j7nk!HjDq%Aa!;LJ_k z6WN}n%ILs#D0oZMy6>3uL;p~a-}W=|R8Re1QK=`#_`}J|ITz4d-K9;5gb}kZ9IDotDwfc_>DIb79}Z za?EZ2Q{XRQ-jMrWzyV(CdEGje zF=xuoU35VG&A{$kGap8t$^-rc*wyzZ+akLkIOv}k!T2W`6dvs#larWO0;~~zrx738 zo0x4v2P4Jl18usd(f{Y?@UU%96qJ`m{vG4hj&--Iymso$E+Ma1POo&#HB8+W}`n^y`k2N17N;MDy9?VfiI{F$;UaT5;?}u|L&R8m3a{rYXKi z;?A7lwDH238V@AuWzq8>fD!y3&<;bS;tk=;bATh;QzDGU1XjfnFY+* z6pm5lJlLG)zxETg@$2u5$-%C-U7BbvWQHtiPN-#ZM_k2d9}MDDU}X;sW+MvFOcq4G#VAt?8MC!iC*7+h z=(Ef@Q2EuWTPq)_Uplf6*tFUI9U>#U#I`6CVo*<0X};XTwRWt3k6of7oL2-elu%>+ zU^tnn+-|Pc%1WcpNwo~fw~S>4>zRNZEKiCb$~9+sk^k6_MXZ@`8-a+@E#xO|EwPNJ zzR5zKy8O$4r~Iw%9r-wc9tb9v&fqJXg)s`rrT3phPRy_TDKZu@lz=J5CdoXgwX!)L zRNsMQX1vzgBjt-T8AQ{;g@0YS#atd|o0KLo^~0 z<(62T4~l%2@MMSCd}pEE1nzLXDz|rgUhj^AQ5(6{mDNqdMs4ifSu|>M<~V43AN4@~ zQ_0TPqvYSxQ-^ZS@NfE&=vnkH=y^SNySPVAr*Rd|k|uZx9u*x&PRAKZt|;j1XFJm* zKN&0dSIt|_;zQU5+Fa$m)OQjiN+rEQQv2o2ZF|K?9YSIrq=)VO7=>EBi5!nahS7RG z!@iD5HstH|C5)>#k^6uP^!BuQD@-;N>aCBr)=oOfiAAwOXVvE9gwt83yQG_%-3@1W zbBh^TNS+^od(Nus^IOMVKZcoW-YR?0$;35^Xiy%qk*8{y~ z0oyeObPpBZx)1tSjis5$L6u2A@F z5M#5ih7gKU+pmTYC-aIwps@qx4Ka?;iP_gNp4y*%HN;tweKpki9XG zl#pV=MZZvr`UVot7RY;*pmhT#sYFSgHmTMoou{N*NwTjIy?!?PdZAt;+1C%~^>n?S zK^(Qh?Y*dTtM}Au5zndbr8^>IkD-F-|yMc7pV z?*~>^&rO_h`sc7HG~>ZfV-d_Or@GpqdE!ByCFGHojQH>192?gzAX{grJ8bb|=gl_C zyivt96z}^^H-&=3C-Gq=6RIumoMURO4Qef-7-d$YIQ>C@^6!Dcv;eUC#sX^k#MHk_b-$BvYEfBV{fc6v+#w@V@ zD70?KmRU!cVE#nr2s;y{71dk`hWDSCUF>_`m4W-{K@8l~D$Vb`qsBF`tTFcGnnTW_ z#d@7o;TG^2nNDA} z2cy#SOjM-}r9ly|fjatr!Z=-(1&K9>=ic3SPv8$VRF%CA6>NFrWTY+cEvPVM(>IC{ z#D%EBbYznvW|+QhCoK&pnoB)7ktN<*l&_)6gaVw-Ef6@(ft-WJw`dfnn>lgqJWou} z2qoUBCPmFaCb-g*TNBj4)C5Tg*JTsRij5#1=3P~h?5<#LZHRlDikg_1PE>0bq!JZM zMdg6-Q>!1Zd6w7Q%oVk%_8wG24M?@G=Ly`HC0e%{MEisPfuIf^-)lU1=eH#bW8WIX z99^u;pdLFf6)hF`RMape6*cUE68`DHGs77Jx$hs@{#x>;NoH2YVZF^FK+Ebp;M9g$Z^vQ3DM0vI?8uwN(P9Q?fS>CioX9;kj_~SgbS6AB6 zu8t#mRP9_)!l6PuXt`IsonPb~rhh@=_AGqLm_j64O`6Jhz)QvM@EVF!QQI~d?7*eI z7j8lf`BmY>RLvx4qPBl(B-LP~41{&gYY7-eP-9-EG>LaMi=48VrBE zhLZFbAs6z$nqgmmUvKwnW^?-c9<}6nkPn09h1i_`aj@uE_s{)f4DMPS2_EVe2V!+- z*>9=T$Vp~AalH;g(T(T@wBVD8=3=Dny3VKPebhZ%U@BX9LE?_uWL1s(PRZQ&8a*S3 zc9@m*=d(4}yR~-P_Rxgt${vDprX8sXMi0>W2}Tn#=@#)naDJc8YyPe%ZV%Y;mwi)+ zPXKXo=X(QR5_5{p3Bge-kj&<3Y9O&Nzf&&mv{+jJfdjo@;&N7xLEva&gnQ^D?#sf3 z$$W1iwaFZyXu!#2k%KZ{*8N^krt^7EY!(Fy4>snE9VZf{;_t$X;KIe!x(-X@MbGY#cX1wkFl=qEJ3FeKv@`*7l_ z0$E+nz)UL!Fh?<#^=fRLm|)zY6*Z=|XaK|`b$o@ufNx#m+5$#x@25~5JC(N=b?nR` zK-If5uQy#3>Q#qpxEe7Leg2#8*j0r=5Tf%4=|rMWT!wdi|o%+94QjRt~sP zN3}WGmV`FrQDykrAOjaojerBp>QFk$SXEuXVyoiT>SMhG0yj%P{!JGjhk~hG28-I5 z{xCnTKV18!7qwH~0u9R}|B*hulRLLqZM%_g@YvgDx$JHr_RLag+a%cGZVz#RkeaY% zm$%v7KFmGD?x2}a+C4PPiO=BXMAZ>Lod=P7wK<+Or2oC_j(lU7WF_5-%?SEas~z{} zr$(rE%833#O%6^=T%O)*W`i#j3!>h>)$bLqJ4U*%9@;hwD(31v9YwBHS7LG_R^Xyn8O*#@LkTzf-Y?oT*;|O ztD?j{*`(>LTwAk&huOFNm&kS{bz%(ceh(!S77U_e02rHKrDXnvbrX*ro%?9nj(z{diOe=eR^Zy&`h3rU=r%(VMfM~Z&7u&6){z`&8O8f zhLQE%+Y;)n*#uqZ-*!Ww$Mf)ztgLU){8v-PusJJ%l@WTN$Nod;`{w>a@J(?E$yfqN z&dROa{)yC-Ne<^LS^P0g_KXnOMvjj99{3M z+*`A0uIAS$kdDvH^iHhtuArkY%Az`0>3VLcVl^S_A%~uC4 zXDR(jCc3(_{m(Wz1eOt*{^wpS<>8MeWk~(&$0dfKz*mHg;XeAssn}IU3oegQus{OQVXZ^x02u? z^{WS~Jdpl4JzdZrNRqWOBabcK^j+f9X55#`t#k-8ID2FkB7^7wW`?see*_bqg6OO~ zoS3RGvU-5`C2pcGixqkY6LX^DZY{ZObXU`d%?V+1r8&wng1|-7t&g$IL|Ox69H%A# zH8UXzq6@?sq`K^d&`atfCxL;<$&>&EQqd@QGrGdsGha}^hU5U%3yy=TwbO{Ocn!|E z!uk3VXXQS|fU!s;(e;}m;CpIfF4&e1!4^@`n9g9k=H0N(VNIGawQX}ce+X8CvDLZ< zO=~#uzd&bk`Xf|#XSQ$5$W@fD$I4Z}XU0^U5dWyNYJ3ss)H(4EvS;0^yjJ|p2}Q=4 zvc6UN7fft*2Y94kq>q*zk(AT<_YXLW(?Gk0%}0tVjL&B!j`xKy71bpsmU?q*y=&O9 zMbuDUSl~!cETH}yV-v*p#2N09;<+CUy2o%^o_plXxuw|mOy(HQ==J$!8@xjvv7nEz zYgOPDp=gPT1sQK+zBzO{I(C6{<;JoN_)GUgve3M|(Cos{t+?~CafzGqAX=6DSSI!4 z$Bq|H(fqQ#bW9mH_LYlBYXL9o3kPnjWQ;_2UO04S&q2JV=&%X3iBsJpIQ)Gu$2~$Q z^u2&HHwxgvTBmi?JKluy*qBV?oX#i{U}1yj(Djw*k}L`xC6b!&@nZm8PbDN ze`0bTr?hZSED|XmKGs>l4Jk-V?~XiN^o||6zKNcE5M17nGV5QfIKaLbZRCQ1p`E5rX-(7w;39i^s zo99hHW!v#d12)+jyzznf=4wQc-evch?!(u_ z^ll7R3O+1C;Qz&&z#{2>2<-`&E*(Q`0v$RT7sc8S!_TOpJ(GRe_d_DYYHbv%g7sQVGM@ZC~J;#S;00Yo}@R%{zm(Ln2AH` zU3FhMJ<&W0w3_wvTi%z@gqZhB>R&{Lj6!|4DSc?hZ}2HBnomcgM_{)U7|~wVCWP_>3>zBd5-- zrq1ay70HAOCBu{5-U}t~&Z+{pC%0xJ=UrVto8=aJR1F!YrzXsl%WT>}TZStv=8d1_ zjc@Wc4&O^>mm1$9Gmah=e(<}z^8hF_d(KP&_9{>1rQ?~ARskMAaTS!#iT}dzuL=I8 z$Dvx?rrK*~s^R8Q+++b|;@TM`#fDA3k)PRosZ-l(xFXV76c^QKlJ(CQHj!Unqls&D z@?afdi(WS!@;08kIT>Co4mc}0Y8NM+POs)2a?iN!bDg`%TH(Zp(^aDpqs(}HHoa?B z9>uW1{u;m*WgK(4U-z=T@ybmsPYdvWBDR;2@&<#Ti$654ABjr!?QUEe_ z=qUDuw^O{0PJD@MP0z@h4YyTiP`Z^QEY5}jKk{YkcMY*OX8fg^Hpz98>pWxIF87U* z-sZ}u-R%qAo|Afajiimup_Hg58aa2Jg|!IvC{+RD>PdYbExefk~mVM@&N!;!F!!IaVC$=X|uEq`EuVmS-qwc|JdPU z>`vZs+T$KRIU5&&+wL1iZcXDhq(V*GSx@hBKTkg(}&XYo4>$pjbgXdi8pS5$|9HKn36)$Ww;p3X_jt+aYw zkbaAkwN3xPndj=nVmO*|PBc{KTE`@O z(2k6}71_>%1}5`52gd{#f2kBd*X-xDqn zH0m`34)tj1t&TVk+}Yp32=>t*=-82irh!Qvh!}pPa%oL z8M;Mlp5h$ghUd5+fDvcxc9VK#iFs{|U7fhHz&tj^qI_vgOfFQUpor%gFgqODLa9ct zw`@y|1Q-o)CiXJ*D;YLR8D`aE@NNC=uj19d22!eG>@0@L@_ENANH@b9AC*sZ6Yg4& zTbb~{Q{$tc%8(Q(%i&;Nc^?LEx_l@8Ca=MC1P*)p@4P~Pqz_Y_K1;rzkuw`D<$8eh z7nJ7u?VJ{OrkG{;H>lU+2>8I48gD{^-#Q1j{)R$=;~qJUfF3WETMgXwi~2B!!9#}b zgT@cz<&&J&dt?;Oh}T@67+->aA}JxSd|~}+pu`p+Ep zZQCy6v(pBsU6MgrLd0%E|_PInvPF?X0YpDLLFVT2mjhu$OJG z2a46muvRDIHlgCs=Q1|m{w1B|gJo>x(_(E6{!J=sJiI_6GV+@~n@@rLh#C`NgHP!- z&_L+~-;4n$rqx+>3;fJObdX2u|G$sB4I9t6AnI+&gib7!!bYwj{=D*^JRV z+=Lq|4+L@meNwp!fTf%9mQBCBS`o%nuKuU<1AG%5n&?uaKhIgu+2PFJjvdbY5n7?o zqLU{Kq-b}>U^90PGMJ=A2pIBIsh-z|TS|*6CD+^^obGd!zW)^Lnl(?1q=Vo!Fb;{5~D{PeSML2^VRj&6^4?$GvpinDoGKUhK7KK&%(meng0N=@Hy=pqzNNGX*=M4CRg z&ctEdosQSsn0^k5>%CD2jl|y|gYpkdd8TrtoJLR6e*|-#KMY%dej#T6w1Zx&CKUJviIIW>NoI*?RI zt|uKCFRS&KUJbpnB2;We$e^5~F^laSmno0J4b-H5LZqbI@DPcH5^#ZG3^3CBabymx z1(yc^<8H#OwGMEM!4l5z;Bn&1I7i2|g9H9AxHOM7KCn#FhjC;`iMns(%04)& zn&#bXCtrGoF{@(wUR2MFDd=Q$p8`y;OMjCGw`Um0TpS?d8)O1|-2CtHusCSi#`xhQ zf!4cgSo${9ZJ_6sM5$9WJ!~$sdpYT|s9C#s;?F~A(UQbtdR>XD2%cPKXt}|P$~pW> zlM)C?h6}VNEK)C`L`s`;1zqd1A6ZS-aLd|E#_|j}F4F+p0@&%w=Ur+{ z=vDc|7`&UzM46&k*H@?Aor82qS&yqr$z$~8YY2QHLiw?y6XUUME!s|lbG>WIdFu5w0KCef9H>)-G!K@^xu%BnqFs72_1&}20KFj4~@-uYV>Vlsxg1*zhc8g zo?!@V`rFtpvCUf&y0|iAnc6LcRs0)t^n(ehU^X6G|jDt|{@$5>wg382d<~ zv5FAysnCWV!>roa$`|s8CYcniMUrB%k*Mef-Q#1|CG0zDeTiLLeS|HZ9qaDf!de-v ztL9u45VMP~wOhC(b}NgvK;(-Ug@*Dr)~9pc+VI5Ga*otsZMM*)(7>Gy!XJcRPE4(! zYn@uxod2;I zoGqr+td;-~C;nqvonUgBMHb)GV*~QuR_$Is8VYLN^dagB?eahM2ZeUqKA*DNKFpT( zW12$z@bb|HmA38grX1(d(Hg+Bf~H`1#*pT%U5)SCUo*8Rwz%)dsS%p9v8!9Yp5;d( z+diaHN(!#*L2E8Hb;9kU0~7LcVfIxeaCCeHAlTq7`o0;gs_G8tW!DeO_iFY(z%KKS zbuT|}SDI8Jc8RI1cY)3fl(ptHF-cd$vI?=|V$E+%|Y zMEGice)*YO+1+xedNX&|P=K4kHkgS%lNSz|wN7o%nsKxSzQx}7nY31I<*g`jkp^K! zV6QtH3-~1xLLjfNBvXH(t-sLuMlS=R_|vhEFqkU3tpW@Rg~91LXFkmayhGI+WAmwf zqrJ6TIjLQNkDRtm;t%{R%+$Xi&qzYq)NtsG&`aKeJoomQ;kL69Hy3)$G34i!!B)vC1SyscQ-%&f#g!||G)-V9J zc9u~pF<~Yx6AbNmfj)3YiPr$05w9NGTk6%9Vj8{ra%`JdUy*32@?P}nwe(e;YO&C_Tb7;9Q>iR-vf_oR*xW?Q z@%3;1jL}~)ahHu?t;dkl`90HsrsQ1;L)Y})HZ5`0ENEI-*4ukHHyK}|WC^y{FpEy% z+)P^&*H#e*w%w)1cg7h?USh&K>Y|FgW-iG<05ba?x|0vC0Y|2!zdr!}ZUf$%)RefY z*;bfIX->x^8pyfkRJ-y=Ca%ij=-f4pZ+*YE^60D@(dvy{4I6_d#XqR88=;EP)wCv< zu!qF|ledPt6tXoG`yJR|Nzz;OS@oc9G&4LQ*b(NKt;Y;b5pG|by@z2VciJ!pZJ zg53{{lv&$rF2Ci?E>t)62D&}K_#!gNJz_VmDx#i0=gd~b@#MZ!yQw$U#5`QvNKOQ( zd9iJe0`2)pLQmi)e_cj6$J=G@sOlTp?W{V5gRDclomE@QUU0geVI;%GP`TR}W8GkKGY&X2XZd}@`DtpRcL==zn_9i{#RvuEwcbd8~J6+^r5!rfu%JI z1>`jdVYDs)AqJ3oWo~mSZ^`8^-@@#ZJB|OKSA`^MLsuPA8kMxt$4Kf+MGL2aRaDN$ zHt>yeR@fx5?M60B$jONtu4x)10M26lSsc8&tS)jDahlQ=5u%Q>FBU%sH-k*M`h2xM zH6HNb^h$ zN69Wc>oMTvJUN4Zcj~bDI$3&WWi2Pkw|ra{s?gYA!{xEqD=n_cHCvFv+qSEfVXDg8 z_KMeg@DHrT-l20t3zS|&3rn_fyaWIv%mi%o*@vgV-}5xzU>A>2h$e|hiy9%x4NdXXF9ho_!uSa-gOX$BHA`y zk(}Su`E+)<%rd_3ImC*>~CY@#iDzI;iBiTC4#m$kca*PN$@$-R{ zzD;L7EdR!rrB!F}Us@#_WniFH>7N0EQdeh6<*C$Vlrq~>5hlg)@{@Is$Od*b2PTl# zmS(IY%14_`L@Pu8g$WSqG6vl*1quiC_`bDa2E68qBKf&bGCJS}d%(f`I5 zWa{hI;{!#D6PJo1i3wqMPYCvylL(S^BmYU~Cp{=;W+U;X^2EYYyA+ShZWYeb781>8 zmwIc*wnSz!bCZ{hk6;U+w&oO4lOlH&)W$}|io{J#_(FtG`4+*M_sTUs3n#8^rcQuV zB|hFl_5ver-V11+G)zijeC3Z%<0KceXii%^Bh)3ItJZyI%-r+Im+$R!R^G{^{ghny zsay%poK?Ho6te{k&+QF8mn{5s1~3bww)sFVJJ|Vj z+mqaVt=%@ex~|u%b6Ton77CdI&b#e2FfZozseI?IOAtX*A0P8ssMA!o-l-WtXRUk_PQGC@woBPU)(chA{7iW3gSs%@i%(;`PgW+UO< z-aFp&VD7%=K&6t{#We@#6j=hgELmGQC8VK|=(m#<-G_sE%ie+Z=dMLdF@4b7S@dm(73bj3D&%=!B+fFrt z`V}*q!g1TD(sxPHs7X7*I%Sc0FD*L~dWQTZ&f;IHI-YXpe1uF~=m#xIn7^73a`z1D z8jmneU}A zD`7i5ot~eC4`^~|nuok$@A{%ty^T_Rf-GpU90grgqnL9EYnUE3<1$XmKcvPG!D3B* za^A4yO~bla?!mU?u0|+v6>r1l{(*8O-eIaJ0g_HYsRLS6L#2c08ri~Xdq9maSL=%W zmKwvmt{?8Eh8t=;fKi1T5yyR+Vl<<+?8sQ&u@6<^5}BgTqNy@TEVw8W(E&o0iul#R zibl;cra*5rrmf3q+Y5{+c}kG=JVA!FnwoARy~=U(MLDEG%`bZim?fT8E#~2a0mxYi z>qA|+21-N_^i2&b+m+q|)p*UvCW)oeFY~%qryAv_uM$xajr3pW68I1)JCbPx+QvtN zyktj+vkU|ZMumJY)n3d9q%p*r7bZ(XG%%>v%mz^P)ORT^IXWJQzQ+Sgm7WYTZpxfv zkggYEMkX}5c$7@&-{NFu72h;nv-;T*icIdo-qt54B{dE|oKwz++%KwhZ{}B1j z;B2fqq_4g#dWY}goDH2X;_qPdZO6KM$OBPJo!`)vctp2;dZG5La!Q{Xl-Zx$9-K9u0mR(Yfg*2O?G)-?;8c~+xW@Nh+Jpp6iz$2=DyAPp*PNggKfbtQ(?OIO=G^Clw0yhBo2wx9#gVEO3vh zj%0_!7}ELJMsF|6BJ(4I-~($^)gV9s3H92d*;1iR9q$NMa*+kIm)d(Hk%A!@7|Q<~ z>||fOTAZb7cUM8^u(NWWD6L;nTEC*Senn~hiqiTOrS&UH>sOT4uPCiwQCh#Ew0=ct z{fg516{Yp-=oc#V6u3tmXYs9&E>Rmv*6($dWQgr!3JrcPH!n z+je^!pEPWFjX}jAo^WDThCwf8>7VAnU7Ui4ja?;nW&BiBTL-}wBe~W77Pf|WtXue) z*;HCWL=}TY=UwV_EfcBoBY2^CqAkDqq-agoeGB`a8>UvZW3~S zbFepE5ZYq+%KkPOIta7J_5v!jFSIAwA)v8SlGpcl98uz&5y@|kK?pk1`f%CKeolJ& zSnp+qtzDL_y+kIsiRRtn^T%!9KK3Setos2cl&HV>PuusobN>IVeKL$wDtBK$6?2!! z|7B%AKIiG)i-CU`isfE%xw|2}CEd2)tGy5Z%YD0~?Ir2mAbWxROji%^J~gXe+Udx03c~ zmn0U~pMo?K?g>*+Fnq;c4W5HDX{of09>&gR^l}ctAIjQs`N0h!ltYsQf6E)3+w-Ec zVozwx+nzt_P^@V%Yz2=4FcH9%0LIp;W}gra>#RZHlB!6@dJ)9l747!t%-NIH@I&SO ztAC^Z=d-KS|J-})G5yb!${urKj7G`jeisX(I@W!J%tTtQ!X43!VkufS`W^7QKzC8G-x3O{?)`lv3={jCT?lswdN&F$zh9A)OCsxX@FEnm9>su&@J5zCv zv*@p&EVUydTNt@ygtyjNc?j)uR=%EC^Z30B{@HJjeq-n5C2L#(yJSK5k~Pcky@RJU zOYh~t-aSQ^ta#iMyE*TY6-!OA6|O1fdwW#uwM;Qv zoh`PT+Lqhe@>Pwg%@+F)Yb!WzZ7i&?6`E>-7P{$@-a!=>{{L1X4Lz!PyPTE(%22N$ zv25u8Rj6&5ZQj&kcSFe~%N{o^TxMJNlDD~c4;kQnO}0YrH&=U?ryBC~%>1bRF{+trFmqhNp#s4ibE=`lW+}Bl z5&NUC62;A=WvZb{iPT~4+sv$t|Hkt$V`A}>%1Lm26eQ~3%)^=HM6F|{W3dB*(8{@1 zv4Q3F`vB6n=@@#cy(RwH)70K)AEdpCoW$%6fepee9EtLieEi<8q2W;8pZRxT!6~4Z z!kY?k!S@gQis*pS8Rjst5-28Wl`?T+x(jk~-rCKtfx=&82W7*q1S|l}`6%O66JTcP zHykP9$8Y{Fx$h4;hQNOoe*{_#0dFB&+3(M|Uf7QTdkpr6IZ75(TcH++apY3DDr>V9 zWG|J$Q1^Q{>B|?WF$>;fC^-ae8~13?blxREP>*KN<|pg8kZ!pT>iSMI#TYNO;5W&J zYQryZ7{be&Ho?mg08QFGK8s8l{`t+XvSKDPVU!&F@bth@Mu%y^+hSic3a&CmkP zP-rEO!%HU=>KxSI{e0d;XTE8%Ox~#GLGRHplP?b&|4rYNhy9E;fA&3ZpnNoMAiv-d zn37ugB9L~Eu!dozd4qoa;~8OvdZV( zSWPx*@}Npzrv&F_wV$Z8T%~#>az4ZM!yUHofvjz z;2e*DN9py4kD}kqLG)Wo5W>=LP=lv z;3#ISV+BU=%C$9nb+Xdqzy0>VGz%k_M~Cfuto_mz=&T=%`R;mFB^V#x+F{lIpoJRTC=R!t_-ySut)%m!L~3^2b1f#wm9f_R9Du{4*=fW_q(B1V&+k- z`8;)HOv|378J2z{V{eJ)>5$)Ic@Fe#)&B5n#G;3OVa`!9O9j=T^Qnqob-fiH{qff^ z_?26s*EL$rwZ8OI-e$YLLGZ{_>;HC=;CvA{lq()w#qr>=!-)Q!lYEb3{|%t?1n8(9 zRb80n-;eYZjfj6}Z_uO8r_$r~sG9XO7R&H4=uvBqWB3)e$@H5;_y)fOTX5d3{|wlj z?Uy(Ay)=|h?ooVF?~&ot#II%e^yBON*vCc4^X|*~Lm7)H14bb!Vwf#-IpWLP1mcaK zl;y8qWy^a8cEuf}>qmk$2*!7VL zJXiRmO|7fhbdKLv<-OAvCSI^XDdoKeI}TqMbahyIQD6GtV{n4BKEYM+;_Ht13gb?#4@iuG26uK zzss^^w?DMtHP@c!Y~o|^Tr2dV{-LV`;(q}F6^t?9Oy>*Is~|@veub@;q5i!FzH<-@ z&Px)p-o_3hk4e_UYk1(qzeB3deV)kjt31w)rHAt-nq_no%`!S}*kA$O#O&d`WH*v6 z=Rl-CpSg4zehtG6>0NT7ezIGsANl`Cdl&e)s;cillMd~)L?%FlD1koCh?;ErwG6F2a;+G#|sRUYC!29jhe4^Xw{f%K}I~7o6zk_P%pXo)RNRVUI)2x zByC;e$25=6j}VsyKkNGRANYHw!FX8M-+P%;Lt}$)ab4$fN12 z;OekJ z#G6^2Ux8hSahB|UkO#`&X8T=UMNM$sSkOO^`w~(Z=?RFkm{z=i%x^o_n?h|P+T%^N z#WS)NjwXbM&Gwz^wUXd~l^}ecqd$M-OE$Clx4VZFR*p~(U*>@D9{f4U>e^bM4)i#(AW~!=bQzv(Go+$Sy0EO_WS$iiNi)Iq=6eIX4B^;l3)XcWFT)~SP%mv+wcyAxT!F$qN)(U%d}%b2)KT1gf&)jR z6F*BOeehyjBTAyp1>7%;eDzMf8pkVxD_A~?E4c1@hWfNuz6@MxuC(;R=Al8GfK(Y_ ziQrYw;VPS1C*PLLn9P9t#^r0j(>J`0c+v1A2omaQRT6xDsp;bK-mrB+u15Kcr}P=G zsaCn=w4b|@nLz8bx4+xL9St)Y+6AAb5c5j7pOF#h6AbvTsd?vdNI=#7nr~3^N6~yX z(?_KPal@XADDpBzB7LZtOiEKezvEgZcTe7iN(^0UOieh{(udh84^ucujrs8WPSR|q zUPK}_NC1<06`J%-!cTCy@wno>(E&f^2ea&9`+L=bS7OBk`iEL75J&+d#RNKgiH*8^ zM_8&D(bu@L)qDi+qnvF+=5)zUXaGnG*<)9brs++jqB{5xK_*>m|Nb2tvy>jTQaIj% zVl@6eQ|^x!{qw4UF0Ouy#vELSP)YlFYb>aLYCjFx1Qy<3Q4u^cMg1%q?xzOT5nOZ- zQbc=DRqEPMbpa3;YtoVair^@g7F~TO(NMN)7G_@LXe+Gm+fj)a(kAd!_D9 zA@xk>k<@<~CIdzFnWoZ|^5d6lX*@yROf$tJ1#p=_4;8>NIx&{)RrxzdlwYiJ09IW7 zQz~Bprh29H{s8uJqxEa}Uu2(S@C28#(Zl@*w_u;w!iO)XK7f7xO7?*k#;SE-N?R$x zQ}0F!`YW3Ert|(!TY1&uZiWME2-`>53i#+ljj zy+q@`ahkgQKi}2@s*w>SP)oQ~P8XL59yOvHK%@ z67$+ClzKDb;^5_v&|x~xS}9|~KHd-*7WI)p{+KgyA3ALYTtBK{_lId_c_sLPW%%8$aG5uL`9{XojC>WS8ja~kf z>gMg2pW-DZI%O5E?h~)D`TJOyGZ<2ICEhL7-FsZ+1aVYXH0%WeHo;6;h?{~jXW6iv@AN{ZwLJB@KNff+-5EP)B;?Ju^^gv$O#J2JjcY37H z^bg@&-P!SM#Wx{ScG5S9o0X&Oj~XxoR|irAKOCz8JNr2#Vg`u9r|NCEP~5nhy^7NcV6B@%{R^zh<2t z-e2>Ke%)Ea02P#C?)$cQFp)%Jtp9HiH98OBwvN_ocFRNd8}Q5xeVXKLOv&!=s^axE zPwQh!TxIUkSKjOUvwRm-Cd+@r=UbRpVrH_y1TwYU_m1FMzLQKJ#~5kM=>sLB1#CNP zrm41rwtDusw%8gyNj0}~VX=n7z*g%c9FZGJ*E$V7@_RV&COoubN_jklHF<+Ff44f2 zd(Hyu*-Smux3eqdTd52%rY%3ucQM!(^%-i*=hz4hx1MCbFSX%oBA1Zf00#oE7pGCb zyXFtnV;DzMN?)b#nFz~jg73V;%5|Sext^DG2&9B_KKxK`{3wx9d=d?s(yKdcAqdh=Yx)Mq_XS6h7yY^Mb!+aarlq<~j7Clq38LY6h23)qk`*xaX^y4!4UwTf)Me422E3uaJ(E6H-Zn zW&?N!jf+iLgU1PO`jNi!j~oe{W{9qWj8X7nue;_}-gxfpld6(lhmUp!;SR|7R*v|L zi}|u-H*n2?OQ`C%E*Ye~lpqQ*!f_^&E%=kmPC}K;;PhEpGJ7Hrvb;Y_XMA^FxAB4 zrsOs6qS6%!jz(R3B;T@MC5uxmM_leT2{li<6w`8d4&Q5;KT|c6jt9+0k(p}jBh6cr znWtb)!nb0%ulz0d2fl}^oFWNd2PSC2B-|u>9|1-(nVuG`yrehhsVVe5 zimZXmHQxH%bV`7Ri|K46UfV}v^IazzHoJdG3zVOo0k;3ucX2A|ktHZCaiNUKt$EGW z7gMNX;$(PH=MR}9r^y|YEi;<|ieKz2?^dd2wynR$5WzNJj%G1trZ1kI&$-B}UZl=6 zkfUUkVwDb(!qCNR%-Eb9>gs&rH2PTKXx!n`N-u~h@izEp(2maS%=X&jxsxcJouX8l zwv!{p^rZ?&9x9Ma@UQ0XP#I@eg{l&w59`m9z{rLENNX`>7G$e)aCvYYT_ouMRz zBE=o)Jn1|(ThXIFy}nU1N_PG+TX9`}oY@1|DfC-*4RiCG-cAwXBq<~AxqO7uWV=Eie*#~Mu<3CB-?S+W&;m}*kGCsIYP7*@MD zU~)X$9wYtiQa0I#n7|3|uC;&7Y6VjdLv@Jw3*H1Nd>#je_~hdBYQCW$ z*QDQxNyi)It;wvbAF-_gDV_u1R&x?nYPtmS;6^0`=WG`=>$l-lxaXb2&wn-$28_AI z7i_5MMJ)siSpd1(3orDZK(jJmq9q+4o-QSAAszlqZZhg@^N-k38cUr9GmP=a>?nz) zQ?l|T&*hUHf=?BL=oxKS(Ka`c-{WoP4XGo9dv&G6n?O9~k zWRN$kCjT2g$1a*tv9Ku+oCv1c(9#d(F5+dezen^94~buICr^Xc2_p9EKC5JRoLd%C z`cRAwP1yR8?4F0N7lr4s%c0NrIbMJVEZ?5xWvLCy!>5?cLA>z2DHzn&24x0v zoj<2djt=>klHF$~py>5Ax6`5J7imd$AEP;ymXM)ZNE{cNdJO(Pi6Hg$j7RqDhkE9Q zqZW-<%Fx#=qSg9!)D4Ft285G>xAQ9M{ENH}nGKr(WFO^~$*NP7Up%<)?NP~vALlhH zemb+@xnjooq@4!a3jt>lKT~8~)HNlpa^|_cV>e|sjHZA#mgl0+%V^O2q`@V~Yt;Qq z48qhGM&4+~qpif>GrCD|!cczxFdu0CY}5dpStqZewx;93%^z~(yiF}>r$>gHD;GR{ zk>j;%^zQWdP8P;O$@^u`XhPlYY0|D||4lKk@_MirDyPsaHs2Tn-)3vwf|;ltI1NIQ zqT{H{kPMfz0f6NOI){PI;+?EcfmiN9uuGvcUG|*JaC`=bTDl!zChQO#XMuY$)C~Mr z?o_Yc>iWsGdRRibD}CN0=NA0aAN(x*HW2(E{6RX=o6J7!NkSP1sMJwGW5giL}M_JtQ0xFS?ZXC0}=(z0YjBypzkPfozwSweu%J8%N$Ht;CWHksohaNd&a z`8_io0Jpeu*Qng>s_G=!Eqj(N7bBFS2g%9KSFZwnN;JSJO4fgM8hE7el~Az}b`gmx zK@C?ml=I4VZl9WHq@lc}a&Ws6;&bj=m~e)rIbM>U#@Prja_O5D$)oHH43xp35*VWyxd;BOZLM z-H}r}M!5|XaI*(1uSr98wi|qZTn&E}9QI6A3$aWSUr*N8GuRbK_IyBJ8IlF9rW+$3 zuvJDp_=2hBuO6)uFm9aB77r@vUI+N1A@`K5C{=fi3l)tZRt^SI+4nl8>;AclrZ}em zYrdFWti~iv6l!R4!z^{+v_wM;@MkgnCD%H+a`P(sMHA<(pK^r752+!jEmPTiuUDH( zKk458%)PIV+Ppq&Q=6SCD{8_FC90Efs-V-_3Z&4 zLf#bgQnKeSDxj&OXnN7q@*R`aWKX5Qd_ew);ZE;xbqZY7=cb{aO{k&#H;U#hjetQJ zE_OTC>q%26_XT)txLgA{BGtP7hm_YO%#fsKJrFqrG~u+_qXW;ml^E1PGrK;f+R@{W zYgKX*f9SKt2AOp>cM}J%#lpe@O*W)DGM({Q`e3fVgL%7OrtB~YUV@1Gk^rn1Nbm%7 z$$eZTkeZarq{Rs4B6!bn*y}!lqWR@LJHTJc(r*}tVu6PA>3)p@Xl*IpJ=`8cICH)t zoW+An!`c1!>Q7sfA$OnWIIia|0MlGOfPc1gqd!_|cWnerXbDK|UUR;w-5=$;X^4A9 z@uUJzvgaUaV8K7Xj9{H3qne?x-p?GfbRhOmPo7CA6mBCD{xAmt_&d)0o{(>@}b42CJ zqr5QT%`fxFHc`&nv_6*pGgzCXhM-SV-!t*p8uD^CigWBTz0|RUd~g7k;Mrq^-%NOG zaU`D|l%32CCOY)5S~wIC#YX&2r6Y=GG}ush$~7lQCw)P}11Bsj5~6SNkUMX0%8sZJ zMHnwQK#dEnM(!f;O=IQek>6)~tGI&+uJ}n(GKKxE%u6z0mCK{ttEvGVmBB}9M9SAX zEl|-`Q4Eo=>4nE+hQ|K}$8JgT>_;sq zN~^6muG0Sb?dNdIZbSZ1%Bu|Sez(YR5uN!9*eYb7j_Vs^ zetc!$3kP{9hfASnZ2O3a09*NI9|S1HGti3m^Lv5MeoMRt z>D1g3tRib55jifMo}FfjV_=xkc?+*HFUH*7<|Ds=AcUQYL7<3*G=zQ!3t#-1-glPg ze_Ip}Ab2W6c!>XdmqypU2-59ff8Yr60z$+1k4jTV|0tHOUHtH3u4^AaQCdfZ_yWZR z1=G}eTltS-sV6dn_V&s6WC}Bg1aWteaHWkv^I_G-I~S zWR--wzO2vCw(0yF^_c(jYkEUA!~sQxY8o0oV95DH6nJfLUA1u81kBByiA6_SM8^JS z{qBCBpz(Hj+k?|k)mRGa;VHNM4?F$y=e#_Dl$rSlS>@d4;s>E2{|>VOc_NaXg1i;<++u)0CZ0Y!P1bOGoMp z$)66TE(+tbX`aoyXO0o2mVFhjA4(k+d>z{jI`pR$zipOXkL%_zqu~hg^6X&buVhm` zhZ-+FU&Apu`e}uK>t#9xS6VN%^a4LzHPuMo!OZQgx9E>|21)CeJJn{|^oR#`W|>Fe zcNx4|&j=f6PWGJftdncH4{8~6{^{_y9Br(`)*%OAyNW1C$6$qc1tC~6FJe?PKCMD4 z{43)=7aJVsFDUmW)i6_Q;B36}k?@;H-n}sHQG_|0Nqk`$yYM~>-CFM-nHNe4sPqZ{%603R7fZ)JGWJ#P%5rbMa8}04a=@=3OgB>FP9F~IpP5IC67hv-SBbzo z(Ss5~kl*CL2P{f&MA1t^`%ONM_TWtGbMSKdOd&|fFs+y`S?M6h(H!R1qsi{uX_tKpZ=-G! zUK3+WF}eH)diLxnVuNSI2i$HTbgnAo+owGHL#gAGON5N0vA*XMV*`R`v_Dg&J;t-Z z_cxfZUyc1n>%{a{z3^?*;^h4{E!gjByawz1Ahs>i+OI&!y}+FwaO^iQ)u^@Kb4_pj zuf$L!+NCDAQ>%zjCurf<1nD3^)dbR6rgXJc+Vd@q&g}keN@Tg2=zSwH3D)mh^ z!?f#G%n!DI@Y*{?%N!7@7s1vwyd02V7zW~-?O8DrqWOL?J4yueypT|m5*&(as*h;3=XB& zTQi{&6us%Z+*BY^zv=kN@pP^5e}doq)p7Zw`I^}^#DvgsLy6ybQ}b)7mzy7P>F0x( za(V1`9=r_nRlsIyR#FVvx$ZFaKIZdxD|Tf{S?Xl0=%@{!l9F{w$$snEVbYQg6d1`n z_`3Ktan~^dRo*d_d6dBv8ku-z{OVPUj)$ohp1}0-A;12*=K5t-Ddon;$}LH83uDJsKCDr&;3B zzM+Gf2Ns<)u``i9Uz>qdS51dK;n?tgz!UJo4YcAU=U-+`ym{cNmrMc9jQgW4XJ&TN zJ)v1Uc8nJsP}4g8vh0;0Hb}rF09lECdIT8g{-=3ARI@XAQHEf%?(BJJ;aT1zeR~g@ zxFCMjNBUkUT^Sp7;$zQn(tEVi6K87Y@wjl;(R*Z6>CV4o<0~Dv`i)CWo^q0>Go51j z6!z-K_A3hQk3*BiSCU2VnHWcF065h5Bg;=Ml%JS+c6|C|PZq2JBRDjPv8@dpf6T_0 zgm9FtL@OMGg$o=DhT+Jz*?s4w+-__P~o?3CTxM_8Ea~s-yY{+!$Zj% z)-b6Vm=^yfTeVF5nw>J_mwnxjU)$W5dRy~`h(`(6LKAH({pz9lH$yy!a#88WZ}Q7- zY~GN1rMa)Dc<+SOF5atfeyAS8)CN0`5HtPHmrbQs(``*=P#IAdokrH7ie>EgF1luS zN%~z*k4buPI5C7^x~33!q{!r-?}j&YoQqD5!mN@!Ya;tAh&+xCFq#=aOHUl(hh zSqtYIJZ_4nL*S?pRv>9`%o(Fd(Tp4%!_y)Mv}_CcP7^_upxEc&O0hm>{-><^D-SNP z{t~V~EgP!Ug!Sj9;rgiGnNwZA=}J2iGhz;Ptuu1bF1VHX#MZSqi5`p4p%))%8^zTH z`3LvYpAkHazrx1#Q<{$qe2e))hxmsF7o(@`_W0xa_T6MGgSj|nzdjv8RF zD<*7_F}SJN-o#IhMH98V75vlg6LqiVe;DfLb@iqeIOr`aiv5kJuOIdc9*S)}fbKD; zI^(+nSR)_6l`}9T*40ng5>^cnRajrugQpgFqAIwqT)1lbqR~rSqwsKPTzQ>Eddo#L z;br4DlbCq$5+t~3qgy5Oq31p5KbX)m zj?QX{-}iiJ>{Wg&QIdsGY;VXDE(e{rhM1@1H&Tn!>4h3N>@YzA$ zTPm>r?9WJK_Kxz-Po%c^Gs?Ju$veL+U7KHT^?lYrlsi4nH8)eO-02B!6`5+~PA^N9 zJ78&=X1y_2KT7-2nn3acq6jqRI`0vPG8jSBr)*XoHNzpw26KKq*?l^Xe}fNUsP45a z@!QYtwyRL9eglblWWVz>!ub*83x63dgk{|4mnFN$QmTN$Hh+e4xC((}vo`AF#3@u$ zrxR1$v7>tQx;cDqXxvKzIUXk#-Ii0g1=JB0|6~0Y`u1A2Z`)5$vxnlzZr^^A#@5jI zK}%AJKgIC47d$4rwUjel?%}v~vio=T(<+<}^!M|#2&Y5dm_- zi{Pfwr6sykf^{r@uw?g35HWiu$*xD+NMYRe{}9!yzQ0$%PEBsO=V9{ zc+8Wl*q;=iOjQJbWq9~}itNArI?tY7rW)N=qmwioPMxK^pDROi53w6*3DDqmg`ZT>5pdiCem&4g=}?k4GXjJ z6X>Bl8$VSY0k}q=;#0uQ_n3!vBOcyhEJ!XHM?6So-E5mQu>1EWJ0I{~2i(-=T~uiB zHpjN{+3xL%y|wcxzID(GeX_{i=ivL2C>yLiAi7GO6C>~lkN@`rk zX_y)eBMuD`GiQ*Y93Ya>GA|Vowe| z(@RNR8>fk(oR-BGllat8f+bY;0O9|PWz&E#aT-#lmZ(^ZsuAR*Vj)~c#|0GUrX+et zPb&j?Ln7I;p08X3&{&e}zL&4c<;%Vxb7{8XSA6pL4Wa%{YmK^%Ej)}pzH`0WAS-0g zJ8=6%w*dW9McI?%sw{2+`pFK8m!=Yz42+?>fl~d9rAGCS5zh!{(M=c=!^{V0gRc%Mq~Ft-IToIZAV5#X;=lpv7{05QZCOJB;Bs4vC<#EfB$ zQ26?WJ)%j2pyrMCTx1v69tEw4+6#e9o&j|}g40ff(^N0SlnnykCq;EiOHS_wSSSQu zB*9s3)P%+OK1m}EUdBMC;acLYL@$jgTYo4|=9^XEn7o+i9TH<142o>GskW5RhKMU< z60s*Oo9Z!yuTF*L8xyFC-inQ3#)D`kMwW{|seeN1N3j^qR{X**jSV&rc%{i}*YHB~ z6fPC^zgDvp@k&##56csM$kE(T#Ap!$c~uqxC{WMr69!?Kb_W2-C1`rpV(8^xWhh$C{3 z3K>p+(a3+2%dxJn7ECvK+xa9ok7QHKRF+>Rz4_n4{Qy*?=)Y_$cX&vr2;o{f83!bS zcflF4ft-#%foF)Et+-<6ld;Fc^L^QhAA?U51`knqas8g5+{3JW_zD@ENqyUzdz$>kFjQ#QCe+5JnW#T0f~FY3qM zqVGngqGb0Xi5d(bWb%5Xx~Qnh)?ddP8T|^faW*}|9wg+p7CapQ%*&`MkVzjoZKDdp zDqd>clPkfc&fM5`rCn4c9ko+Yv)PI+e$Hh`v{6mHL~s&Umr|jc2U4DLhq>YmAK|44 z1WR@=rKRB4G0IXOPn|uWp6bj+QwVuwYBy9CfghGt8G8qJsWF-j9vmV{pcQvf5CZ1( z3ykqUyrD(`3R))Xl2ufB$EC?`rGE(O)Po?H%bN&qpaxXbtq(q-mW0*l4fc)trucVSyvbtT32_0Zl#60ilvjkzA3tX}3V7_fUvq=lQxp|| z0L_SkQw0nY1MlYOx#KOKM0%^yYQU)#l!WI7LMBZ1bcfRoRowvsA%TKN5qzo!th*35 zqRl8h4|!G0B<76xsb{5wFO`j7!!9L0irhmy(Kv(r9;4iWs1aKq{9bSW1vP%byZ=Ou zEM-KgoRW=Le_wMgiWhrQ0MWCf^C)`Yz`UE+r}va#o>g=y*mgS`dH@SjY9yJtYXx*c zFALl92!z;<2b=a9u)_AF5!jw1V&t-b&}(Shhe|j9+j`U}P-z||MIu>4xj&-adIbaE zyG6Z`BObJ?J^M4?s|)EH+25&}MZrc=GT{Hc0DXJE8Q!6tm)Scex$G7( zzYfp6e*E<{iy0p<)`t2QyT+NuGT(+x<3c$%1H+u3;!1XGo&=t+!Mg1fR$y6VEm!lq zh2J{frS-}PYnfn6Nl-P|ZKv}RuP+-vj|WZJ)>u5YO*w(C4M2M~{vpJK7HX5-Er87Z z2!t&JJZR0v|6w)pP11TRAPcSzS{$jkiEpr_K%K{Y!s{UL{nW{ka^JhBJM54;FKbd zj7~~hDQ9%5V6c?-Vgoo$R3;^kS{WIgmmjM5ihp5mlIpxBS{s=@#+ZxklsygPsZn=3 zjJpnHJ6nK*z{-<2sbEN&-6g1P{?hB+gM!EIiZy*BAhR=C_%L=5EBwaIPX{FTcig)c z(b1!AD3Q~71+N9qYlUx_uLb!L)}k4~)*QjFKrXQ<@PFN) z=neX`m?(pBndJDj&vBlQj14hm_B_@hCePa%eIsDTsEg$_nx*`ooOk9mU-!R7MVA?h1$GB7kHp z5=w8=&L^|+(<56vem(`}YdS_IXW#2&GWYqSbq883>{~j~1Uq6cnK`x8$qXf}8^pQu z>d1e*sV^8G+q8MGd5{Yumi`aun&@bfTq^&4^I&Rh_#pilwOi{3fLR;1Mci8%u_lUI zBg2*&UT(#MT0H*JA?^@_n~%A*b1}^)lgqXJPs6tM4c$Hh+=;3XB~Ii!hiU&iB!?3X8(cME|O=Itah z7bu0o@>$fHcotutg&C6?Pcjz|^=_m;Yjv&q(<>PRjivv=8y+21~X$ z66LsaBC@Zs3&e6d4%^_t8Gnb2^q>V^gZ44{sh_*LsJ!4*dCJ}smKD6uPy~2yqPXc* z@svPh4h(uJr!rIE8OnTxGSP6;;j24b^;vo)h^Tcz_zF+5YU!wv1V7xbi}nN9ZV8@x zQ^LOF9E2S^5O!_R_63tO|10557(;ewE1&V;u2(<~&*k7>rZXu~Sq z)4gn1n6*(9&Yv2m3>Rl8KY(l1S~M~KBE^(K_OlYaC=_=XAH(^OW}_3eYMd3Uc|&-a ze>Qj_qXi<;3T`e$FSO%-L87N)sLh5@W(f1Ta`Rq(4ZAIb!BB}DjoHqbgyiz;9S6>e zT(5eM{Q<7ZaJ{Mqy5Q50j4ow(&eEG~*_haRO%Aef!&ZZnqe3K>P$4NrN~uApKj~G- zq~dzxo>4my)abben1ae05u;(Tr1J~2>2j8pwJvWOUes{ma@cjfFe?xrR_|;k;aAeW zzV!}hanH=H+Teb%3H_^0_VipCwWIoihc=eDHf->MKCB-srf%+h=v1^P>-e>bE*pd6 zUKd@S?6CN6j_KSkoHEO#5WzNbYQ-nEC9az1e#ZG|G$*Nlh@KGH&jbH*CbiBf6Lw5^ zIa((-D@>7W9r4q~25h320(c`vci+q7o9D-`ex~PTYb15ZfKDw+0va+?;;~GWUyfxs zL$l5NXE#Y)(}c%HZ=GMWL6A*JB$w)VT~wYa;}=#w*>j%6dv$)J#z@iJM1B|I1Bd06 z`1jXr{2zrcE%iF(cykWISCFO};r2S-jtS7I+epfL6{iFat>-z=|Vt_THj4_f~?Zj&c33fyGRP5gy2=&prtr*KWS z>_)%h>vF;n0!xUiw$W;6*iMCZ&)-JfH;VhKb@QMqZO&WUHwa%SD6Vtmosbi(H;mRzF62EVmf zC1L-GF}~MleXjtD>zTU8}$FEL&?MA zH`VDL?RqwT=fu-z_B>?dNL|y*X3(0r$CaLO%(L`s_Bc0Z7>@#io}?dx)ek#Z7|(av zs@JsMn|UkdAD3#OGNJ2E%}Zx0nyMbptYWGCx!1-Yv#+(@E0Aof*QhLs6CptQNy=4b zCw<*>JwNucc84u+;RCtnpiFO%yUIM-a~!={!sH_5%GXH0Agv6x9XzxLYq&|7`R{b( z2~v8$7niT+lEa?W1FhfKExe$ys|KVGOE9(xUuO8(R8I-XIO>h-VF6h?Wx-W1FdfY0 z5X|~A&aA_^K7J{Guo!TfAPe@is?q)h` z;R!m)rVY16fV!B9?@O=?7&?~T>Y$9Fz3xSuk~D|tndv{3vG>#+OI=iqNfqbcv@TMB zyzy_aDlc4I+(t~3W9!+Oy$UgJXH?U;{|O}6R>;%#1yl1DzJST;-fNq+QBv*Fh}Fk7 zhzq5Tj2i%--_t$1-zH6n(`(rT)l?yKlL}0+uq($Subti{H{v98-uD^Ea7$)ym6NkkWswP z%KG;Jwu{tGx-+z>z)ZGc3^2!kWr3oA zUWqOIvwz%#)$)J+s)V03E7>+S57_|g|AoVd!E4W}@9(x) z-wO6_vHqK^|9XCpIB4klpQmdvUQYc*4D|IiE(E+9%)!p_I+T{CW^v79FCyYP4VO^3FCtk-Sz> zM-v`0yw&Ye%EEGgbhh5C+6UE0EU-Iq{#Lh3Z~VA&*w3Whs1q2M3zXwz78V~LFcKc1 zZIRW1ESqzzD)k2`c{MND?Z&psueqc*YBImd>4ym~Pk5;LiOYNHp75Fm+|?KPTaZt_ zQ&W?=HLFEW_!<&a<H-Q3iS&XS%!!cbqG~J{po%<6wl~`5|}p-%mIwgRkx(mWSTV zviz;8DjQ1jL%}+@o3SXZ9Z|n_JPl~`w;4TkzJSSDg9}Aj2~XUe7!qMh2H$*6IA}SA z`Du0PRB&*fe+V6zk4FC>r5eaq!Vf`KQzh z_)v?J#b^Nhd40xf2n8$&Dp~R6?{(!Pf5%+TPoHd11{2{e#Yo68u_tzUOLA2cv-+;? zE$M^v$M8d6xfE&_3T4Tm-~&FBPh(Fk{aimTH^98*`)Ei!7P0M${U_7g%c&s$w~)Tk zdaW2gtDg~m=Fzjm4@cYQ)=b|YKOY5rE?O6gMqL)6h;!t1#Yn1?GE#zw{ZWJ*f}gW# zWncWvDZ!{}`-mPL_3)(m~MR&hJ4L}HWyAh4$ ze(=;^HOeK_gtpbN|J(BA!rYn|3MqBaVotYhrxAG+YrJs&n~hXuxB?AS+R-+hf1iyW zSY~ZaqAggg$t0@9yEW5GTe9`C5XBN>ADMv1X9g)yN>DgYDt`5*%gkPqOzd2YCO_2Gu{@-cLHf z`#;(HH=1Z)avk#oo8? z|Ndja4>*h8we~y;aCdjGn=Ir2TJB}kSY}<~6VY)qcYi~0u(kJ|0z9tG0z4Yz04O%$ zN!YE%cbfw!#HZfFoe8g8?=I;L?)!l7_t=LI5z)TUL8mC(;dA~DX?kqa$=blT^53Vt z-=)X<&?`L86+H5^Mzx4y@UNZa@-x=>YLlshNvvitdXJ{1b$)@6)c|C6M=WpN|E1|4Ep+hyu{NFzhiy zn~c~&(jY64J;GZGSpDv0%MACm9DAWnU@T{yYUo%ew!azo4%;o}s8iuYlmDVj2wk&Syl!37|JE?)? zV5JmiHuI8GKDG?I;kzoHdOzp9&jr^qZ>xM?FfM*L?!|Bx@7J--58?%zGxaHR{LWj+ zhJlr4ziBA{Q{>_?xf{f~SmQgl?%e#Y?eE%{za4qudH&{tKVAG5Jo`rtet9F#NLWvh z0*@B3DCSC;O(nwb+kw}3&dof|{@eGy#*lw&gRHeVkv3^Zj>Hk|a(AdOL91Uw27>F@ z?~CR$h2m*VVmSc7Nk=fnn%aI6O*vD&1-Byx0dsKs!VmeTX+Weh-?|`nF~lS;atD9= zt!5&Baz=`hT7RNeB@!FF8#23)&Z%~xzd|Y! zrKX+uaxmb0HG-_HW@rmzJdhm$(sj&0b=;m5IKjRe3y%ah3pU=-Ywf5QoTjoP%aQ7` zB$%&qyt4&DVZEgDuI0hco)GM_Pc(TcoJ9o#Wfy=VVd7|U=k}f*J2z$T6NZvgw*!14 z0zzBXex}J0q0EC5Hj^-|xqs1n)yQXP#7c(^QOiJLuF>AmX}zv0I5W{-MOCvV)@F#- z`Zx8zLw#&vkX8<^6~Nef!k32UiCX-w130N!)QOOT1qOnPc0kmt2p8SbwBgp<{P1|Fn$`d)dUyiVXN_V zYDuRZy87t9X!?5j_{h)UfC329Dp7kk(w+eOSG8wSTXoKHt;hYTBE!%MAwT(BZ8rK_5xI zI{-u-1&GuFt(&S`1^(CwV|jOu)1pQ!ZSBJ6&8Ir#9=(5)2KHOH&Aede0kv1e_s+>3 z95eCXHkF+-6#RtN^`H_p4r>SRm$FWzBRZ08ReiHVWEfXL#r`( zq}6yDn0ht;J$aF}UVbq3^8MieBK!N6_uBmbe$D@GE{hD(2LYzU?sG@dmF3BDQ?Y0| za>ABgJW6jbIkD_W7C&P*G{2sHm1C`1Ec#IS-rs$(_UFureSNvg34MJ**?Wh8YeJv5 zVdrz+hPq9ggV>tBZET@$$;PL68+Eck2l?W?6E;|V=7oe`a(tBd z`82OpDC61tYRLO5Z5V9l*uQ^QFFt`#IhHAPbW~p9Eg8L}qRCAk#cf?ZLbdNR{>UDE zWs`<~>+z&!!GhQa7Ymlm#b6vf9H!Bqcpl~Li3T6)hO&htTQR_D zRkvu(U2H!&e^RaH8s?pvV5Y$p2QDamvgJT)%w`M>V9aJ_0|8K$KkoWT@L^D6MVUEu zD}9k?x19cJXw-7M$X+d^Y#e@S%Y=wNe|c2+SbCh{Lt$`+6Kx~>Yn)7T5op!^eHRKZ zThdeT?~TbAjIjtI8%H)_2sx69=GYoRDdRu(`0veTegF&5Z=#RNG-Px9FXw3WUirjp zTD`}!nRb1H4i}t5nT#L^mVW^g&Vb1+03RB6G`_u$Xnc3pjU3-aBZ1RYogJq6e0xGsEvln-X3_eSM|xE1^*1>MrJTAe%} zmgCw#^iq*OBa)9telL72Qu9)drfcAQ@m0ZhWa}V97qlun){V{PY`#h?&Gb3$O-YV) z74_}xok|~f01TF>| z&w9Zdt}lacm<24vM37DkGuI`%7t{VQz=vy55gH%GsD1SH5MajvRifpDkZ_*VDPx&r1x3&ntb{uX;AWi)!ARp)x41YwtK24 zRcC=SE5is%@{0@O|DBEheMYZZ=mi#nr zHg(UCN9|uHB-t(0+IP@KLfQL;C4OOj9P!(4Hwyl_@7<5zekU8<*b^$+820108~5iQ zlMLl&u>pkqHm$<}fAjw3L*W0i{lDe6Lk!;gYewLEd@-z|&jImGWaPg1K8UixXXt!i zeE$?>C494$x^JD))Img!r`G=izR%{sVb|K-@7WLEpD=^FSZemechCO7*Z^+VIg29s z-X1c`*Y__U0zZ!$|6acFf082r|0j^j|9L-#uw#dee4pqmw_fhFQuP`SwvXmlyEe0| znZ7~b2n%R<26{y&CnDXcBd)gDJ9%UsljU`k+<*3AeaFOb$%EL5PJ`aB{gmLf0fGG8 zcMIhDU@Ra{Se;#QGqzMPms!kyB>3@Zeq>iX3A5gVJe36J=yzm{Xur(BY2{tf5De8H zG{CQ?MJ?_o0Wg5bK~nb7k);jMG!%?djj&9|$TAWZbr$?p$Fnn0t7Wvxod^TFhb-D5 z`;&zqARuVPLR256EAxlh{Erd4zPfAgV%kVunqBnzpw>PgMrl2dL0#_Q)48h0l03jh z$?mMW;yI8es`VYxXgVNqL-09{llD&?U*df!j#W^B!Cg*j#M=P6Ql@g$3(LmzO}zsK zCM}qF%w<5~;37(!L~Bsv7!=03Vc0>h$gAAnm|C>XKPR65R)m++N8+V`y8+I|HV&?KdmtDinDInQgiE+(T;yXbf%wmO1Z65w$}~ryG|+C zE7Pr)QhJd*%{9AQ;yyHuSWo$togozY%Yzy#zh%7HH^HPr`Djut-^U($lTePXwciWN zm+e=6n$i;&y7^eJ&dM(c%Reof*BM)GV9c2#%U^Hhr&#&g;7(V*;k|Hz4A)9@VWl@b z;U+-h!CbSLSyxM+m$MQk#bwcc)5n5VYwz`AG``wkcA-5@1^@T$Mf341YlVedX;m{Z z3?ZLPt+%u51=g}d!9S36H@>bHwYa5FWtRVtacCMaduvEZ%MAZg)N;Cw!>TL;;5kp7>J!F)ZL%L%D! z-JZ?7;uf5W%q#cU*OV(%lDR3*5qVdR$HC`%&=amfB1@V#rQSmTnTA0CnV=!<&XK@)?)-xs{EhXMde!M#7`Eq*iL`wvJHVamtG&#Kl)@2hoDwC z*1k9W$Ncpn+k1gI8?x8Cpg2T6n|V&~12-G;f?G|t&}2|9_<5Ln4U`q?b14F)sP?F; zQ9eY8Hu$ZcKzV#ySXCE-N}YH??*FVftsofHC3f+of;;$tD7YL{x^p5@Fl(Mf2|he z7tuKDsZhxTX;{(J0QXx{O*dNe5iGH?A98@K<_XPJ>z-?Um5dPLsB+h0iOX}+NiV>M z_{4*E17i_*grl%qj`vwtOj8Fi)gVl##uO{b2Ukq<*OqfOO$(?0BzP4sUdD9!6v_Vx9tFM8X%SEoJ)*R()zJKmAad~^(4u2U?nJR65N zv<@&wN?oMbkF&R9c-sN0%3Jl^mFjS%c%vone!ED${x!mmf1R+Us%jGMsv;Bd@4TRU zb@~Wwget{;ZLqNZs#qVl*VpxBzfkVC-l0&*a)b5|?>aR!z%w-w!kO@yU`dSG43snc zyRQ@Kb^3IfdigNY(xG3U250{D*NGS!fmfb8OIWno!@u*o1nn{nU&Xr?uU0Mdu$_lq zZT^SqJlTD;%73-mpL=g2`{f1-kKfVy%S4Q{h$v488C->l49;){-D~g-@S5&Qa(@f; zLUx6r@JLLF4rtob$MamjUb<;ooo9b?YCl9U5C&Ac#K>*(Ylls7|Hi}iu$S!-^=$t_ zrNzbil=Skv+KbmrSRLRhMdYgXu?M31mYvB$+M?QgntwhL*>4`O{)8<6a|N$L_-W75 zSN{iKriP8l-d7WJ_HR3XdsKeHmV2N`NiMD~k+c7%KdTXJVKH~W@rOD|F+S*l$P0R;(SnXJ96*E?F3;|OE*Q%iY<-bQ zfv>UDyQBv^_JCW?qyXRjl>%y@du23GzN)DH?Q210&x|Rj{rJ9Dt730SW4z@p5$L(I zC90Q~d@N|ZSEPBaLZnFq9hm-+vc=iEpM4zRYwvGV>rQIP-b0(#2Iu1A`3)m3aY(~% zYTcY&Q0;fDOk}TYU`R*qXuStzpjp$#GyjZmJkw=Et<<3sGSl3X*l!F)_N%QoyR7pM z7|5~|5=}@Va)|ec1)Djy6@Q6Y7Cbx^Y_6uq%4GL$`a%F7iXF|0+jG$+p6g$T_RNInX9yS$cHZ9T1@1wAyJr=Fg!a5!8+WT;aXC%+^ z*9Kkp2>Bm4ybxazsj=YC)(Xpw$Y1!eV7e79rLgFGC+idPkS-AiO<3J*lLbEZ4z&Bq z*a7IR<^5sS!s^4+LV0khTIhE)_U{od(K)(P)M_3E6F z%}=B_;&x+#OQ2@^OHH=3QyK<%VpUsjWZWhP|GR^hW2x^-08Tp{>RBUnvqS~>M>YSq z#?lL=F4mRXA-YJ7XP)6o-y0J=HZ5ndzh-}2Yp_uNUa@R$E_D@VANs?qgQI^f9RKc6 z7N^sg9#AzRYb{zPB&j~*!CcOwWs25!(zmO%x?xhaJHCQHtWrbQ&=5N?@Aca>-2`cv z#sC^pYYy$d-q*5Cvh%)F#x)slde8j07;#to3otiHu8@p$ma z6qw6aOsO-S0kSeSFvX$R-7_AZ=@^(&DXI-j(ISQqvp=GM?U~gfTmx+u6QuY|E`>0u zbnE%qsJ2wF?N=J<&E*zi)F@sUs|ohbIbK}L5=KNlzYhu$vmr^cK6lS}_d(Yk)5 zY+>>o{$wi}x_12;FH&;(O}qh=RJQe?MbJoAlbvw*2@^DxV=2Zn;reD|^k^?im^fEyl118xUl*%^xv{f7L>+-rKn1*1{=Zw(>WJgZGE|2EM1 zX|7^Ry1R%;B%~t+bExM}B|0d%?34OBBXLiO0N*6`%67k9%?NFR(VtSIA+P+D_TsQk zm)$KSo|W*YR>WTO&eEFy>sFS{B_UKICxi}t5@pV_9qULMe3bw-=mtV80-p4qaxjgk zwxPIMUf@%b8<<|)jZ(AIP>TO0xU!0NDH}iTbHo z_g1$16b(nwP3kK`d+S2buHTGcM@Z=8GEv@xu#V#DsX$5)s$k8O(T?ulNTa18QgfOb zahLB~1f6zp<;QnePg15DjxB?V8X zGW~6pAM9bkA^Ji9A>fjEB4D~CN4#NV=Z)ms+$Fq$T5<^z7&zqUVEL_Tlgkw2r9QU; z4A&g7nelsXGj~ahV;;ahYJN5KE_bQYq;ct2?E>4>G@g5}HNQIGq&WRo?{RPAL|{j| z0!;Jk$?g^OQ@0hlI6~)plB>!}mn=Os4=3o?{3#4Fm5Pe)IRs+9roy=sg#rj6 z29*?tO#O*Zh^do3pAZhuN_bo~K#VrR*4@TjHepBZNMIyJYITV3r1wppN9YX&F~f7CBl?=p^^QuBsTl$J;ApIj zu@%4vraEmL4z-!9vA$(}n-a?P$>4p3bH%XzEMxoYSJ(CD4g%h;A<1&GCrOcksbvf; z;+ouUY~Kia$Ktu$c$CcqPHD4S8|dIgX2ikNdAX$OnFzBLNLXQHT1)e zGt$oTSn7QPZE~lTWZSA-0KhRbq2jsgG~8lx-co$fQ&{ z@^sUYPhVi{v}~OeP|$e~Jlc?5VHmZU+Z;>RGX|KN`$QfGO>i~G$clRF{APB=g$|&^ zes#6^7F?owGvm!isB$vBMe4iScNyD;7#fa-E&gdl?`C|X%dE366S>XgMDO0 zCYSA|I4>@irr6H+tgmJxq5*Vc*P@y^;;skuM?KKgQ1a}#qn00HnHofKM=qc{?Y04u7&YN-xAVK>-DLx|7=o!HW4P=(a=*A4x1A z`Vx=Tp=G>Y|s4$3?Ki1aqb?Zm9#a(-C@vFbsJUY2l&I)miWa7ZY|0{#nfIkg* zBsRDYU>l@Ug{8j=)F*#)8?I-i(2h;=C3CayyD0>2M=DvlDyLPjgCUJCOR07y@00%c)`P^qH%)KS$`<0WWEE3PB zT<-m9(&Dm&*`Un9)nrp@eR8TzrEUOje;;-em(U$b12UJRiNs(QqI(QX;~(L~Jh@yZ zsPW7;C@iMSvFRMeaqlTjE}JSqf_rDqm@z|aymMRMp7Cm&GjMg=vi0W~?*izNXpJIX ze39lR&WvAm=SX@fr+h@O8#aToBZyYa+%aPKycec^MA6{OD$|z8-3tarwsdznBJL2-n@19XoRZ^4^Fuw7)XE&u5{$k>bHv?o+q3J)>^hjKBH4Wm zU36AucD*gxEh(^-%~c(lqIIj1vvn&%GP7%3>PoxCg8KoajpTy0+@BJhP>avhgcH>^ zImqn#TzU%%PSnt}6de9B8-~@^!_V=ssD%nzpg8+GmwwvX^0u2)aXc2iy(zhrYmPCt z(H6^RI7u$FWIL(Duxv!B^dzcF$f!*ML~1 z-_2`Mb%1TtrogAF#X8O%G!?dFwWwsUu1PXL(C@$W+#L)iWwt-%HIl>j3mo3k zh7_EDFy_Sc`RYxRO&5J>b%D(5y zb-gPobLN$f-R3>s_wr%MRd*gg>pM&^fqs@{o`0p%EWP;^~HOJuFm-EYqMFfL3?CnXp+kB{@e(Ap5=#fyS}%?2WjZkv+9laBAh{?>c6m1J zaoPF_vbKNCi=Ky&AVTA{EP0i`&D*d3C>BX;$X;?+vOxpH@?esG1`ei&3jfS_?9sYM zvKrt=HbG` zI;d~9uvXA^+~;*ru`%p#91S|KmsxIr)^RT3q2Lp6NXYKbF;DS5c4E{Cei!aL(rf7} z6{XnYVX@rBQl0B5QTO{;U)?KaB~T{zs#g{bxGMNzSemg_0RnuZsGL?IgJQutP1JPY zyl9?o4sMNYU_UN9C)QswuAl8t)dHd7xZG_}+v!;+kH;{^5%M_DGFxa_>*!lSbM?U; zoU86yJ8KWL#Sl)eYRJ5B_2TkZ`JY3t!s(iQ4lB*KQRSQcq&uW+l3sspH`PvRz?wqKfyd9NU9k&8YqXJMg zxoWAs_b1gX>8MGL-P!e`AWC*KzYgUz=m`4UkP*}Iv7=W9a9oJQUIzGsHcNiJW*m#kk6 z&=!Ce)#g*`Tx-30z|tW>B);4W7&(VZ+mA{B&MvH|oZY}U8LKHu5$sPi zX+SMiLMrSYH3_gK`JY7Vn|k1^CmLuYgsBJn4KcgwA+$sGY0sy<2)D)gf8?tC5zSiL zw%=>$r)YzE%RNZF&`z3!PO1jwc0P18Z|Rp)qo!5SR2$csrmAAh)j5&^IX&cU<}Pup zvzs0enayA3;7^fncr&dv%EkB$`eu}*=JjOHC#jlSOSj$l;?CkzLnmX)O1@gY5Cbqr z&P?}a3-7My9UvRi8{%`<6hE<%gr`8c5KR!RPGd7_lt2XqFL$k7h*NFRkz-Ebxss`^W^NP`2yFD2M?Q`(joU)Uxf$CVlV9_Icq)IN_KU*vx4|o%nI`^i=iBh& z08ooXm}to~4Sm<{Jn!tT zmitF~^WxqSm>>Hc`6V5Zt>TEadnUic;(nE#WtG~!ClfEp-x=D&>T9l>aHrw0Vp>@y zK4l?#oB12c7flr44(M82_7CQy(amF0EhFh6Xdq51jc@!&oCe&2ik z-E+@9_uO;ujfS5PkD+JtZ1=b5Ae7B6wEm_2=&als zy(`xmy|!IYpq_Kp!wP{2jHqgBLD@yRfAT4OkTp;uappDz`t1dxkW^f?scfyS7R)G`a~F7C;)Qj!%1e(}8SvMEBtT zo0F5uA~(6a;R~lzu7lhDT%)h9ESDeAhOfdq(D1$b2{Lhb6#lR&iaG|Y^E&LYz(6k` z3(?N&Ze%Xiag(SN|HF9w`|zsu-3ZT!7?cGv%jzYlH_e>1@m zKRTA9jCHvApw^EbukZ(<&QC%*no{GD&O%RAvu7B=7y!f)f87nooR4=X znsT(DHgVpXHQ{^nI4TYx~=^h zxzhZ9(a!@6$4jf#e!X+;*BvO|rv1kF{7v@xyEKo#8(;05KeIfdaW+$Q$mJo&T~6ouNTTC_lsJ;cZkOnNh-e)*4m;hC1!#n2*HNvEw@_V%Nw{6_{2Dk5& z%W`g?1!rSBr)GRbvjW+sTAy#ExiNo-?u*&Tx5E~n!o)^>8(JX)CM)eLOcfrDcMO@T zQx<))5|*B3o&4Ae9xC9@fnh2Kn$0f&x6p|C_9%5Z4iz?7%k&jNAqLb7=$U|JZfNV!BlPH)aBbAHIDEva_;Zhy^Q_1{zwHs~Y zXY(~_5VG_0$3wS&aUOeh+5akfoG#h<4Na~)h4N{dYcy%(trn))qXm~g5m3pcdFAc= z27QDXBdnO>9Zg@me7cjo8l&Vt87!V1l~#fJdoL5PGwa}wpWcpE>PbqeONnMSL0apS z?3hPHM?qfxSBRdmQi5C&>nGWY@SO|m7`-P@vg4M^pgYCAvb9>j<)ngF^$Q{&B1Z*F z9~W?TEGRV6n!Pos5cnUXumz3YP?kq%e-HY(GKu7C0?KePJe4xio{mjQJ3)`Lo2g3_ zb?~K}-x}VmIrJz^jHP#mS(L0N8PCR?VPejfX>SR}oof1#wY7f-X-R? z#8$dm90BI+anQdnG_1YBO3PaEDQ8>savDP>fcRgq4oNX;e6gpE8X6beVO9C_U&S}Q zeGJ(1ABY8IMh)}+>YOIz97)JYOV6-g*_vF+1p{iMlX%I7O!%u5j|fJy7w>oiX*9@^ zNTMeN05zNzsN^&$evV8IQjBF(a*)=(Mkfc!>pz>z%+w-hP#i!ukI1tIUezP$AAXga z@vnxZR4`e0?PVy4hNxu&JuNsH*5`7cBU0k{P^rN24q}*G36WFhzR_m+x z+w7OyFaDMsa5ONy(1J%i>1v)#()Gd@s{j61U^R#Poc`EglU8`|zvGsn>g1v*1eUf30{y)|Fzrp9A6Tf}- zrk;9+;FuG~v%=t%STFZZYJ>BV1<;)RKFOPD@CJTsc*qg2*6X?@c=ZNv?SI7ox1rB% zU-o8`_V4qVPhYS;soao{t`+Au16d1;+Rq(H%v1-%_|&uhpuKyOcF2wrdxZDACeQ@1&JxnYJU)?c0W*fiXL+oqwSDy8=fpu4d=>F)<;!42w0X?Y#AD z;-9kU?spaUjoD1)G*(y0JXHE{$WbtsH~uNs9gf~Jd;72fITIj(y&XjBVK-Skh$Ny= z?%P}06=xJn))iW%ZgA&C9-xiTGvDAWC#qn^cRF&lp)Vb3=9k%;4b-P$02lK9WW#qP z5#gP}D>n6tT7NP7Wv9D&cPdCB?F~Jm)?3~5Uh-f3UDbCzty8kOkRFSe$Vy&53&SuD z3F3CBeL{ajQ2ku=TYjZhoxR^M_@~PL#$q!*ZW(9Kq87B|aK4vNSxaiA5WD%r5-_tI z6K(oik~Q^1cQuMern+G0e-zx@UX zF&wLY=z3o(qO8d9KBpCCSw!a3g{@#(@r5ojQS@|x4MR`BXL5m2tpnug$*+Z=p6ev6sVbV@2RSN5 zS(D_y@<^mzb%3Xo#XC{AZ8$|aoBKDU88q<~T6c$dG@^g1>|uQ9gHy*T&FBCrc|FR~ z#gs&mTGAJ21-w(OkcFAT>KAYzL@%Uh$CE;h{#3B=3@VenUVlIbU>z_R%H>}mgkTl6 zB%frTTy;b5_CL$|1l3eUZLp=%zoN86L7CFmoe*-Wa=uiB>0Myg&fyw{%=xGa`oW3n z-t|{YD~@`r%|h(Q;Z}i#*dJ(MAL&##rxiI{aciE)!C+eP-o4fV0$Xu+Hn0`{ffRsM z<=KimsUIl8VvB+R6^P;8Wbo!|a|0>BpRgi)HrKx6+L?l8 zu2{%i=-L+_dSwOrRGu`qf~y7_YB_5Q?X6DMCO3ROq5MZ9$}Zs)t-dQhpHM1io(LHE zgk>$M1KHCZ$^HoWr@71bmmzjs9};gES={f+aMLOPl*b$TOZPcYRhCGB%FQesLnXU3 zn*Kq(_~MG>a@!0$=KyFdI;HRY5%km&RtyJ49*rcPjvd{1#k?Zeas50pZvk6RwqG-4 zsov?x$}WAi6aB@7+OiV)%ksX@Shc2ClH3Gc+85Xb>t#0HEx1bBe9`ODX4#NBI%B=W z<;M$0Lr8kYV~RyEJn>&|FT~6bvWfh$|0y9IRe8m~RRpE34_vr5)b?#B`9z)!t(LIK_$8h%;=^mr>z-#ffm1!I1 zzmBe#{ix6%mOSzC5n#1<{v?UD{55=$Rk7o^1h#oa>g1wWbzkKzgr1rOu!TQh z2pR4lI?oaP*repJaFUB<;th4h@rGz|<`JO98%722GZX#4Gupg_gGoHd^0^gS_l~$i zE%^Q`HZQD(?>feHJ4@MbOE{zDPG;QH9Yf@ILyP>hFn4&OC$s2ruI=LuLyF_vWcWpC zvLQO51RX%MXhFp#d)maXDFpC```Wq(T^U?4w>4I;mAs-fK7dauiTXr_BPRgPWhRvTTcc5+;pN zQy{gyHCzeVP8_4%zzyY#D}#Nr@rL2W*^e#19_vq=+7(%7Jo;IEZ4;b70FS_xX_^MER99K*I`V}m@?0UQT4E93!NSDFx z)?hYjS=TtN9nSKJL;My&fW7naLQg70dP>vw+1>5E;b+{=qhX~85EbRczh353kz0=e zlP>;R5$nqSzfTwG{F`4(1JAwzyk+3b3)gY3*MHQ1h@r51ilf$W9=-D>N|d`nG-6gRY)F;kb46oO>^KM; ziG~eF`bW3Mg;)O`Do&vc;PG_Z3E3NkG#6kg`7{?URnTmrKf|VAvGbVuo+$bp-Gx8N8}? z@G1g$ZDfl*N4VI@E%)WY^A0mu@4O%l45wyHrW|nkdy@%Xrf}Ai@ioM*_*IsSuXDf3 zlkpAiSMOx}EBC7+87~^>-wT6e9KAX(&u<6UN@d<6lH8^&`W5JCrE=7Y-Orp6K0iHI zI@52i8Y5C~?UU?|aP(=mRH&b|3!h9`*kZx`(Q#9mF23;56T(s@1?TT}z<-S4|73Xq zej-7ptB!^ZmMamdZ#4q=X1eQ$STj%B5UF39+!_Tfe*cq1QBCnqP|a&?67NmmmQ(`f z)b{;mtCe8R+T8~&T_ZidO|!_iD}Z;Y!P~zL9<&NhdbYvrKx+qpoM@pIPzQ7E)7#t6 zV7~CY$*00vuRa=W-b`OAr}LK}_4}m|$wO(kaB8kpB6&2tgj2Jn6v@8UGAXG=vIo{5 zoswd3H=koftwe7o@K;LyR->I4Q3v#4NfPnAyV-cf`JbSNuzJc4x7$gEP-EnzOH-zc zt#Rwpv;*M3-x`<7>K}fCyjQL9SS{E8oDB)S@1*ZSi>Ko# z1zT=)qJw>IFRz$k-dC9af0UOx$9E^MQg7bHlGnKBjB4dHNzuxZL_CK6z;-v}g2i%u zX&%N+Pl@Q(f=hYholHSnPSfy|+dI-xUI1>>t_H)q4!6Fev?7V$Ab$q4&66%qnWdxk z_NV)fqJ_%TG&#M($1Z49I=3#E3G@qUOE%At(MZiu_dv(`2#$toU(sxjmwfdcOcZ0w zy5=KLOh~@Bw~nbq_GP<|6h>+gU>&`u${X`5$+b-U$;aVFY?p|>6gdIY1nZy{<+T<+jXGr#LdlDAwbBTKT+ z`VOnv^kBX4Xts7wS+w#QlhZf$S4XIf8yfLH_19ef&2twC;pHF%geC9%3XeY>-{*Eq z6AoczEa%}S*q3(i0`cYm1{0%TJtSd(4g-*_U&zV=aeD+%ktBdZegw-OIe!y>!8_4v z6j=@57Nd||lt9ZUtt{@ge~@AMi*5N6TAVCVYty2s@OfX%Wv-e0=YmY=yr*?L$%558 zrpuJyT-0Z6swT>mG;}1|sIz4?3@gAvActA6T5^~gv?Mi5`(48+=51(Bs!p5jC{&{b zud2YI%H<;|U!si972b6hN`$pfyEdbecj1jpF!+4l8l#H4Lqg}xH>xsF^_)@lO!4yK zHFN}X9=VTR7j{fpISPx+1tC8)kpEq_Ls7r&Af`H!IGsSp`gj@RRdJ;G4F2GV$zf0E ztbycbslg@m-m;WkUR|0RtYiKBuq)?(p5R(C?0LWGVzGlnwGPp8z`8`5ZvYr!XND+E z#w}P&tqFcD4j}Qm85&x^y9W@oXf>Ufd&8W4VI=hd)}Cq;YWsf1W&9j?{wmaa}lpE%npVqWSUHyY^XYI1!Q1W)3lv zBJIk?UV&nDGxI3dG^W_0)A3ly8sP@H#+i`z+7g3fPt@i=}xM=`sHy zJy?ro(lM{wLC~arQs(+eX{ycyXi7oFUeRo1J#oAkF9^B=jCj2s4MsGv3e&_k6;SpNkcgq>3RN; zUyp1|tX?aKUa>a#iuY7|Lk;X#i_Lb_u)xPg87||an*(Mj@-GvVp=qGl zTXj4U{Ol@QW>^|KFf|dakM)WVE-&_rxFOEVWU17k+tD4lW#*JrV{$YsTdF$u3=w9v zfi)J2UsPT!WWQpCKKo)P{))Wd+t?Y+{twZsJ*DFqaB*XxT5;l%H_=x0EkR7revI}? z%?-)LX4u4wR4$v>g`UMFy>9q6nzp4zT)eA^JkJ zCYle?LVYiWa}!xxef!?ZcQm$l{10OCYjZ@QA!)*4C+O~z{<3RtWw0ej#x=ofhhfV~}Q@v%p` z>@=u4f?v|F{~8r$f0`znJtAK=xVhWi4;uKdli02e|MMOHERMX0JqGLd1BPc4vGz7$ z6@40lX5d7SoB3omDqm2(d~LOL9|QjUQ*trOJR*UT?GEw9ST+tmv~epyqx<@@-O$se z#a;{8D7Y@*x|(lom0UCW2_B}=Pn<0t#)8JIF;f^eV8%D-s;ioqcI6c+wWaA{f1kcRG0It5=%bTFh`$JS_K$~4tT1P#JETg#Z;+eD5-V^_BIy)qV&x5v%A&7LA zw=1gBtTgG^h@gRDjY0EzBm-%EK~(0XWVuF%eBhdvJB8~ikZm`2zAIFcBAlb?UZsLT z02qgmu28TZ8(%pN+D3VY7;SGpiON42O&}?0;b>~aXs)vv$H!x#$1)C2wEK%k@ntk` z&*sh8_~LPk;KD;UM|wZ8P7r$|ApRgnd{rLtB!Z|df90BZw`6s4tfB$|Z+!X- zWZd9)@1zmQKGZjzQyKD(Om-0_vx_?l6XZcp6lqr4{LfKuUJW=)bZ8rNm@6!Qhq^XM z?`z#rR65_MZG;8C-6;6ZyGYSE6y2^L@~s4Vy_jiEY)I1lCgG{+h{s%^C+NeOp9K0I zK#4T}6D1$hk~vBO#}9U1BaqKGtm^anm%Ys&;M!tsp@f(|`G@@KBA6j%JLLHn z_MNxvIQ7pzS5Bh^faoV>-T`N*U0!+&bR$Sy4m+=YV7RHLpGBUUNw+|vvzZv=lkGQi z+x&;~1DO8^P*FNmmr5*pY#41J@@Th|zYFWm{ro$?gZWCX{;gL3CwcXsEUaH=S90`OY;=5MR~v^ow<`}S zaXZcmiX^n3Gqt^WpsXXj1v%Q!?8WyjBtreHA$-sPosgbWWoPYZEyl?sLFq$jdV+hK zCNM8)n$CW0$Qn@6l#tCz4an!S2tG6C(T5-7zs;F5`Cq~Mw(U%Yqb6f@=IwPBr*ygSH@#uHP|h)8!#PmuoxP^~2h2a- zetCA8&(DeB$LKJMy_RR+Ku#6}IwMyt+v>{E9cHqrEp>h=7h}Amvx~|JU_U+S-gL>a z%yK!*$CZ2R{`>AbF!Jb?oJRZk>g1XQ8}=qd!)a3sHg@T=FdaIPOpZPaUi`2x8+!;1 z_ilQgBME*EN#6Yrz~+KQe`Uibe#>v6Y0}QADf6)_mWj~aUHANH5Vj-#`!vbrMk-i* z(n^L&Drri^tE~UVex9D;HLTs-T2}#smcJy8Tl;TB9}f?9-iRx#_pjUg@(%A8^1iLq zIwaF-2n5p)G2q{{Dsd_AZ|{v+;^)&jG#kOY)Ren1Ld6S{H|WVatL10yV=O#R8M!ax zqNA~2F1^V=+k?Mrg@_+_Ntr* zqqtLI2z3cDGDIDe8l*EYEFj!P5b+9w8XL`RprHv?_EHVfWL-%uBITD{9+a$!B%TzN z7b!u`fZDMsc|h+8iq=LFH&B#x)%rQr0NxMpWTNk#sQJ_)8(x>!<$~C=aANWO6(Q$r)uYA zre;WL$Y4e69fGCWxnGShtAV@1`nSvNHFNjSn(?0C`Pq{2$i|Gh_4l7c+(YTh3ZLk>ywU?022-bX2ut^|K;CM<+J~z%28DD^P|X% zLT$|NkAGbhJ7v=7zMHcp^pDsX=}DZ(e&r!_&;IF}Ltoew`ODI-ZbPJ-prPOx3DRuq z;v0&td_MVEzmKorT#?xR>vd$D)*g!@gWPORu1fE?%hTcx67^RV>Js}9rTPI~zJGes z=Ez^Ji1zQwxcm8A%z7--Guxwu7ro=Fi#aApvuQ5M0v|}c$X__jyek0&j6^>8z<A3Rm7h&I14xYE}Bmue$K=G9$ zDL>FcnaBVFE1IzHBoc%|%j4S(fk z=vYLmmk_@f(cv2~AW7_TCGFO{G`C%o8dqF`kVGtYC++U{w&C zp;Be`bvklxKH8ru@@>^)Y6&DpPmqLH+;0ojKTM6sz&BMpGsYnHLjY8Py%J(gT%tn0 z`lm0O@!m~(JU(oeum&P*`9tX9UQRzYtjy_0op=uP`BYz@M-s@OFVA%or#XwH%kWfV z)-VUqt%tk$tNLw)cm6O@UJm83VtdqqF5uQn9??|T5=X+)0^$;_-n?s&UWYs8{Rx1@ zPh5Vv!aWnc9tQuh`;ZK`w``t|WBaiMD$I2BaRz#-$Nt7=qCaOh*+5E9RyN&fF`A`0s zg062ao^T;v)cH)qIK_he6%a@if%Z%~%p|#w9R;TkAPsLPuxd3_Vuv$TpeZS$0H=c+ zSXAbiEdk;C!3Ud4akz!M9;5|qe}l#aA8Z$pnLJhXFyu7ZV*$B|6L=|mE<^%0m3fQ+ z_P#)8R`Lg>uXEf?g-F}Bhk6|o-}KYSHBZ2XcrHVh@zukg;32kRoG9`=p5v*ztDf8M~5w`F1Wdl6C?Z+f3>ZTcB{mH8X`ir*`%g1^fOw?ogaJ3#o-1x5%~}Jom2L7I0(82o zH6YZ!XC%TzL7@xNUBq!C*vn>ftdqfz!`*&ofG)FBw3fJ8tgNE@Qq`QvmekB>9e*=|m@U%m99nGzd3eJnwc_;mK(Vwww0Ds= zqvUIh1sgMyAEjy|k1mY-tz_`}1>s0yK1Bo~y8|6H@@Q$~(P#Mf)5-r0H?5w$@sL=i z@6(ADu_I8-v`)gUrW}Ji0u}%^8()GUN^1bhEYxc1y$dtb=@d23guHVN(Zs1 z_s}i+$g!B1-o^eAoY*&jQ2GGQ9$8;MxVR#@EVgsDhVd@)=n65aF`!+Flj)(=rkaaX6>WpcA%f~$d7ib;a>;3c3u1Vo&8EU)j>>Nr+xb%_)IA zDy21JZRnRVQCPv9(YcF)ZfaP36V%Nc(i8J>5xe(Fl7mYK;<>{}TXm5j@CLI>g