diff --git a/bin/classmap_generator.php b/bin/classmap_generator.php new file mode 100644 index 00000000..4dd5c6d4 --- /dev/null +++ b/bin/classmap_generator.php @@ -0,0 +1,248 @@ + ] Library to parse; if none provided, assumes + * current directory + * --output|-o [ ] Where to write autoload file; if not provided, + * assumes "autoload_classmap.php" in library directory + * --append|-a Append to autoload file if it exists + * --overwrite|-w Whether or not to overwrite existing autoload + * file + * --ignore|-i [ ] Comma-separated namespaces to ignore + */ + +$libPath = dirname(__FILE__) . '/../library'; +if (!is_dir($libPath)) { + // Try to load StandardAutoloader from include_path + if (false === include('Zend/Loader/StandardAutoloader.php')) { + echo "Unable to locate autoloader via include_path; aborting" . PHP_EOL; + exit(2); + } +} else { + // Try to load StandardAutoloader from library + if (false === include(dirname(__FILE__) . '/../library/Zend/Loader/StandardAutoloader.php')) { + echo "Unable to locate autoloader via library; aborting" . PHP_EOL; + exit(2); + } +} + +// Ensure library/ is on include_path +set_include_path(implode(PATH_SEPARATOR, array( + realpath($libPath), + get_include_path(), +))); + +$libraryPath = getcwd(); + +// Setup autoloading +$loader = new Zend_Loader_StandardAutoloader(array('autoregister_zf' => true)); +$loader->setFallbackAutoloader(true); +$loader->register(); + +$rules = array( + 'help|h' => 'Get usage message', + 'library|l-s' => 'Library to parse; if none provided, assumes current directory', + 'output|o-s' => 'Where to write autoload file; if not provided, assumes "autoload_classmap.php" in library directory', + 'append|a' => 'Append to autoload file if it exists', + 'overwrite|w' => 'Whether or not to overwrite existing autoload file', + 'ignore|i-s' => 'Comma-separated namespaces to ignore', +); + +try { + $opts = new Zend_Console_Getopt($rules); + $opts->parse(); +} catch (Zend_Console_Getopt_Exception $e) { + echo $e->getUsageMessage(); + exit(2); +} + +if ($opts->getOption('h')) { + echo $opts->getUsageMessage(); + exit(0); +} + +$ignoreNamespaces = array(); +if (isset($opts->i)) { + $ignoreNamespaces = explode(',', $opts->i); +} + +$relativePathForClassmap = ''; +if (isset($opts->l)) { + if (!is_dir($opts->l)) { + echo 'Invalid library directory provided' . PHP_EOL + . PHP_EOL; + echo $opts->getUsageMessage(); + exit(2); + } + $libraryPath = $opts->l; +} +$libraryPath = str_replace(DIRECTORY_SEPARATOR, '/', realpath($libraryPath)); + +$usingStdout = false; +$appending = $opts->getOption('a'); +$output = $libraryPath . '/autoload_classmap.php'; +if (isset($opts->o)) { + $output = $opts->o; + if ('-' == $output) { + $output = STDOUT; + $usingStdout = true; + } elseif (is_dir($output)) { + echo 'Invalid output file provided' . PHP_EOL + . PHP_EOL; + echo $opts->getUsageMessage(); + exit(2); + } elseif (!is_writeable(dirname($output))) { + echo "Cannot write to '$output'; aborting." . PHP_EOL + . PHP_EOL + . $opts->getUsageMessage(); + exit(2); + } elseif (file_exists($output) && !$opts->getOption('w') && !$appending) { + echo "Autoload file already exists at '$output'," . PHP_EOL + . "but 'overwrite' or 'appending' flag was not specified; aborting." . PHP_EOL + . PHP_EOL + . $opts->getUsageMessage(); + exit(2); + } else { + // We need to add the $libraryPath into the relative path that is created in the classmap file. + $classmapPath = str_replace(DIRECTORY_SEPARATOR, '/', realpath(dirname($output))); + + // Simple case: $libraryPathCompare is in $classmapPathCompare + if (strpos($libraryPath, $classmapPath) === 0) { + $relativePathForClassmap = substr($libraryPath, strlen($classmapPath) + 1) . '/'; + } else { + $libraryPathParts = explode('/', $libraryPath); + $classmapPathParts = explode('/', $classmapPath); + + // Find the common part + $count = count($classmapPathParts); + for ($i = 0; $i < $count; $i++) { + if (!isset($libraryPathParts[$i]) || $libraryPathParts[$i] != $classmapPathParts[$i]) { + // Common part end + break; + } + } + + // Add parent dirs for the subdirs of classmap + $relativePathForClassmap = str_repeat('../', $count - $i); + + // Add library subdirs + $count = count($libraryPathParts); + for (; $i < $count; $i++) { + $relativePathForClassmap .= $libraryPathParts[$i] . '/'; + } + } + } +} + +if (!$usingStdout) { + if ($appending) { + echo "Appending to class file map '$output' for library in '$libraryPath'..." . PHP_EOL; + } else { + echo "Creating class file map for library in '$libraryPath'..." . PHP_EOL; + } +} + +// Get the ClassFileLocator, and pass it the library path +$l = new Zend_File_ClassFileLocator($libraryPath); + +// Iterate over each element in the path, and create a map of +// classname => filename, where the filename is relative to the library path +$map = new stdClass; +foreach ($l as $file) { + $filename = str_replace($libraryPath . '/', '', str_replace(DIRECTORY_SEPARATOR, '/', $file->getPath()) . '/' . $file->getFilename()); + + // Add in relative path to library + $filename = $relativePathForClassmap . $filename; + + foreach ($file->getClasses() as $class) { + foreach ($ignoreNamespaces as $ignoreNs) { + if ($ignoreNs == substr($class, 0, strlen($ignoreNs))) { + continue 2; + } + } + + $map->{$class} = $filename; + } +} + +if ($appending) { + $content = var_export((array) $map, true) . ';'; + + // Prefix with dirname(__FILE__); modify the generated content + $content = preg_replace("#(=> ')#", "=> dirname(__FILE__) . '/", $content); + + // Fix \' strings from injected DIRECTORY_SEPARATOR usage in iterator_apply op + $content = str_replace("\\'", "'", $content); + + // Convert to an array and remove the first "array(" + $content = explode("\n", $content); + array_shift($content); + + // Load existing class map file and remove the closing "bracket ");" from it + $existing = file($output, FILE_IGNORE_NEW_LINES); + array_pop($existing); + + // Merge + $content = implode("\n", array_merge($existing, $content)); +} else { + // Create a file with the class/file map. + // Stupid syntax highlighters make separating < from PHP declaration necessary + $content = '<' . "?php\n" + . "// Generated by ZF's ./bin/classmap_generator.php\n" + . 'return ' . var_export((array) $map, true) . ';'; + + // Prefix with dirname(__FILE__); modify the generated content + $content = preg_replace("#(=> ')#", "=> dirname(__FILE__) . '/", $content); + + // Fix \' strings from injected DIRECTORY_SEPARATOR usage in iterator_apply op + $content = str_replace("\\'", "'", $content); +} + +// Remove unnecessary double-backslashes +$content = str_replace('\\\\', '\\', $content); + +// Exchange "array (" width "array(" +$content = str_replace('array (', 'array(', $content); + +// Align "=>" operators to match coding standard +preg_match_all('(\n\s+([^=]+)=>)', $content, $matches, PREG_SET_ORDER); +$maxWidth = 0; + +foreach ($matches as $match) { + $maxWidth = max($maxWidth, strlen($match[1])); +} + +$content = preg_replace('(\n\s+([^=]+)=>)e', "'\n \\1' . str_repeat(' ', " . $maxWidth . " - strlen('\\1')) . '=>'", $content); + +// Make the file end by EOL +$content = rtrim($content, "\n") . "\n"; + +// Write the contents to disk +file_put_contents($output, $content); + +if (!$usingStdout) { + echo "Wrote classmap file to '" . realpath($output) . "'" . PHP_EOL; +} diff --git a/bin/zf.bat b/bin/zf.bat new file mode 100644 index 00000000..2a08bc62 --- /dev/null +++ b/bin/zf.bat @@ -0,0 +1,44 @@ +@ECHO off +REM Zend Framework +REM +REM LICENSE +REM +REM This source file is subject to the new BSD license that is bundled +REM with this package in the file LICENSE.txt. +REM It is also available through the world-wide-web at this URL: +REM http://framework.zend.com/license/new-bsd +REM If you did not receive a copy of the license and are unable to +REM obtain it through the world-wide-web, please send an email +REM to license@zend.com so we can send you a copy immediately. +REM +REM Zend +REM Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) +REM http://framework.zend.com/license/new-bsd New BSD License + + +REM Test to see if this was installed via pear +SET ZTMPZTMPZTMPZ=@ph +SET TMPZTMPZTMP=%ZTMPZTMPZTMPZ%p_bin@ +REM below @php_bin@ +FOR %%x IN ("@php_bin@") DO (if %%x=="%TMPZTMPZTMP%" GOTO :NON_PEAR_INSTALLED) + +GOTO PEAR_INSTALLED + +:NON_PEAR_INSTALLED +REM Assume php.exe is executable, and that zf.php will reside in the +REM same file as this one +SET PHP_BIN=php.exe +SET PHP_DIR=%~dp0 +GOTO RUN + +:PEAR_INSTALLED +REM Assume this was installed via PEAR and use replacements php_bin & php_dir +SET PHP_BIN=@php_bin@ +SET PHP_DIR=@php_dir@ +GOTO RUN + +:RUN +SET ZF_SCRIPT=%PHP_DIR%\zf.php +"%PHP_BIN%" -d safe_mode=Off -f "%ZF_SCRIPT%" -- %* + + diff --git a/bin/zf.php b/bin/zf.php new file mode 100644 index 00000000..0d8d43f7 --- /dev/null +++ b/bin/zf.php @@ -0,0 +1,624 @@ +bootstrap(); + $zf->run(); + } + + /** + * bootstrap() + * + * @return ZF + */ + public function bootstrap() + { + // detect settings + $this->_mode = $this->_detectMode(); + $this->_homeDirectory = $this->_detectHomeDirectory(); + $this->_storageDirectory = $this->_detectStorageDirectory(); + $this->_configFile = $this->_detectConfigFile(); + + // setup + $this->_setupPHPRuntime(); + $this->_setupToolRuntime(); + } + + /** + * run() + * + * @return ZF + */ + public function run() + { + switch ($this->_mode) { + case 'runError': + $this->_runError(); + $this->_runInfo(); + break; + case 'runSetup': + if ($this->_runSetup() === false) { + $this->_runInfo(); + } + break; + case 'runInfo': + $this->_runInfo(); + break; + case 'runTool': + default: + $this->_runTool(); + break; + } + + return $this; + } + + /** + * _detectMode() + * + * @return ZF + */ + protected function _detectMode() + { + $arguments = $_SERVER['argv']; + + $mode = 'runTool'; + + if (!isset($arguments[0])) { + return $mode; + } + + if ($arguments[0] == $_SERVER['PHP_SELF']) { + $this->_executable = array_shift($arguments); + } + + if (!isset($arguments[0])) { + return $mode; + } + + if ($arguments[0] == '--setup') { + $mode = 'runSetup'; + } elseif ($arguments[0] == '--info') { + $mode = 'runInfo'; + } + + return $mode; + } + + + /** + * _detectHomeDirectory() - detect the home directory in a variety of different places + * + * @param bool $mustExist Should the returned value already exist in the file system + * @param bool $returnMessages Should it log messages for output later + * @return string + */ + protected function _detectHomeDirectory($mustExist = true, $returnMessages = true) + { + $homeDirectory = null; + + $homeDirectory = getenv('ZF_HOME'); // check env var ZF_HOME + if ($homeDirectory) { + $this->_logMessage('Home directory found in environment variable ZF_HOME with value ' . $homeDirectory, $returnMessages); + if (!$mustExist || ($mustExist && file_exists($homeDirectory))) { + return $homeDirectory; + } else { + $this->_logMessage('Home directory does not exist at ' . $homeDirectory, $returnMessages); + } + } + + $homeDirectory = getenv('HOME'); // HOME environment variable + + if ($homeDirectory) { + $this->_logMessage('Home directory found in environment variable HOME with value ' . $homeDirectory, $returnMessages); + if (!$mustExist || ($mustExist && file_exists($homeDirectory))) { + return $homeDirectory; + } else { + $this->_logMessage('Home directory does not exist at ' . $homeDirectory, $returnMessages); + } + + } + + $homeDirectory = getenv('HOMEPATH'); + + if ($homeDirectory) { + $this->_logMessage('Home directory found in environment variable HOMEPATH with value ' . $homeDirectory, $returnMessages); + if (!$mustExist || ($mustExist && file_exists($homeDirectory))) { + return $homeDirectory; + } else { + $this->_logMessage('Home directory does not exist at ' . $homeDirectory, $returnMessages); + } + } + + $homeDirectory = getenv('USERPROFILE'); + + if ($homeDirectory) { + $this->_logMessage('Home directory found in environment variable USERPROFILE with value ' . $homeDirectory, $returnMessages); + if (!$mustExist || ($mustExist && file_exists($homeDirectory))) { + return $homeDirectory; + } else { + $this->_logMessage('Home directory does not exist at ' . $homeDirectory, $returnMessages); + } + } + + return false; + } + + /** + * _detectStorageDirectory() - Detect where the storage directory is from a variaty of possiblities + * + * @param bool $mustExist Should the returned value already exist in the file system + * @param bool $returnMessages Should it log messages for output later + * @return string + */ + protected function _detectStorageDirectory($mustExist = true, $returnMessages = true) + { + $storageDirectory = false; + + $storageDirectory = getenv('ZF_STORAGE_DIR'); + if ($storageDirectory) { + $this->_logMessage('Storage directory path found in environment variable ZF_STORAGE_DIR with value ' . $storageDirectory, $returnMessages); + if (!$mustExist || ($mustExist && file_exists($storageDirectory))) { + return $storageDirectory; + } else { + $this->_logMessage('Storage directory does not exist at ' . $storageDirectory, $returnMessages); + } + } + + $homeDirectory = ($this->_homeDirectory) ? $this->_homeDirectory : $this->_detectHomeDirectory(true, false); + + if ($homeDirectory) { + $storageDirectory = $homeDirectory . '/.zf/'; + $this->_logMessage('Storage directory assumed in home directory at location ' . $storageDirectory, $returnMessages); + if (!$mustExist || ($mustExist && file_exists($storageDirectory))) { + return $storageDirectory; + } else { + $this->_logMessage('Storage directory does not exist at ' . $storageDirectory, $returnMessages); + } + } + + return false; + } + + /** + * _detectConfigFile() - Detect config file location from a variety of possibilities + * + * @param bool $mustExist Should the returned value already exist in the file system + * @param bool $returnMessages Should it log messages for output later + * @return string + */ + protected function _detectConfigFile($mustExist = true, $returnMessages = true) + { + $configFile = null; + + $configFile = getenv('ZF_CONFIG_FILE'); + if ($configFile) { + $this->_logMessage('Config file found environment variable ZF_CONFIG_FILE at ' . $configFile, $returnMessages); + if (!$mustExist || ($mustExist && file_exists($configFile))) { + return $configFile; + } else { + $this->_logMessage('Config file does not exist at ' . $configFile, $returnMessages); + } + } + + $homeDirectory = ($this->_homeDirectory) ? $this->_homeDirectory : $this->_detectHomeDirectory(true, false); + if ($homeDirectory) { + $configFile = $homeDirectory . '/.zf.ini'; + $this->_logMessage('Config file assumed in home directory at location ' . $configFile, $returnMessages); + if (!$mustExist || ($mustExist && file_exists($configFile))) { + return $configFile; + } else { + $this->_logMessage('Config file does not exist at ' . $configFile, $returnMessages); + } + } + + $storageDirectory = ($this->_storageDirectory) ? $this->_storageDirectory : $this->_detectStorageDirectory(true, false); + if ($storageDirectory) { + $configFile = $storageDirectory . '/zf.ini'; + $this->_logMessage('Config file assumed in storage directory at location ' . $configFile, $returnMessages); + if (!$mustExist || ($mustExist && file_exists($configFile))) { + return $configFile; + } else { + $this->_logMessage('Config file does not exist at ' . $configFile, $returnMessages); + } + } + + return false; + } + + + /** + * _setupPHPRuntime() - parse the config file if it exists for php ini values to set + * + * @return void + */ + protected function _setupPHPRuntime() + { + // set php runtime settings + ini_set('display_errors', true); + + // support the changing of the current working directory, necessary for some providers + $cwd = getenv('ZEND_TOOL_CURRENT_WORKING_DIRECTORY'); + if ($cwd != '' && realpath($cwd)) { + chdir($cwd); + } + + if (!$this->_configFile) { + return; + } + $zfINISettings = parse_ini_file($this->_configFile); + $phpINISettings = ini_get_all(); + foreach ($zfINISettings as $zfINIKey => $zfINIValue) { + if (substr($zfINIKey, 0, 4) === 'php.') { + $phpINIKey = substr($zfINIKey, 4); + if (array_key_exists($phpINIKey, $phpINISettings)) { + ini_set($phpINIKey, $zfINIValue); + } + } + } + } + + /** + * _setupToolRuntime() - setup the tools include_path and load the proper framwork parts that + * enable Zend_Tool to work. + * + * @return void + */ + protected function _setupToolRuntime() + { + + $includePathPrepend = getenv('ZEND_TOOL_INCLUDE_PATH_PREPEND'); + $includePathFull = getenv('ZEND_TOOL_INCLUDE_PATH'); + + // check if the user has not provided anything + if (!($includePathPrepend || $includePathFull)) { + if ($this->_tryClientLoad()) { + return; + } + } + + // if ZF is not in the include_path, but relative to this file, put it in the include_path + if ($includePathPrepend || $includePathFull) { + if (isset($includePathPrepend) && ($includePathPrepend !== false)) { + set_include_path($includePathPrepend . PATH_SEPARATOR . get_include_path()); + } elseif (isset($includePathFull) && ($includePathFull !== false)) { + set_include_path($includePathFull); + } + } + + if ($this->_tryClientLoad()) { + return; + } + + $zfIncludePath['relativePath'] = dirname(__FILE__) . '/../library/'; + if (file_exists($zfIncludePath['relativePath'] . 'Zend/Tool/Framework/Client/Console.php')) { + set_include_path(realpath($zfIncludePath['relativePath']) . PATH_SEPARATOR . get_include_path()); + } + + if (!$this->_tryClientLoad()) { + $this->_mode = 'runError'; + return; + } + } + + /** + * _tryClientLoad() - Attempt to load the Zend_Tool_Framework_Client_Console to enable the tool to run. + * + * This method will return false if its not loaded to allow the consumer to alter the environment in such + * a way that it can be called again to try loading the proper file/class. + * + * @return bool if the client is actuall loaded or not + */ + protected function _tryClientLoad() + { + $this->_clientLoaded = false; + $fh = @fopen('Zend/Tool/Framework/Client/Console.php', 'r', true); + if (!$fh) { + return $this->_clientLoaded; // false + } else { + fclose($fh); + unset($fh); + include 'Zend/Tool/Framework/Client/Console.php'; + $this->_clientLoaded = class_exists('Zend_Tool_Framework_Client_Console'); + } + + return $this->_clientLoaded; + } + + /** + * _runError() - Output the error screen that tells the user that the tool was not setup + * in a sane way + * + * @return void + */ + protected function _runError() + { + + echo <<_messages) . PHP_EOL; + + echo PHP_EOL; + + echo 'To change the setup of this tool, run: "zf --setup"'; + + echo PHP_EOL; + + } + + /** + * _runSetup() - parse the request to see which setup command to run + * + * @return void + */ + protected function _runSetup() + { + $setupCommand = (isset($_SERVER['argv'][2])) ? $_SERVER['argv'][2] : null; + + switch ($setupCommand) { + case 'storage-directory': + $this->_runSetupStorageDirectory(); + break; + case 'config-file': + $this->_runSetupConfigFile(); + break; + default: + $this->_runSetupMoreInfo(); + break; + } + } + + /** + * _runSetupStorageDirectory() - if the storage directory does not exist, create it + * + * @return void + */ + protected function _runSetupStorageDirectory() + { + $storageDirectory = $this->_detectStorageDirectory(false, false); + + if (file_exists($storageDirectory)) { + echo 'Directory already exists at ' . $storageDirectory . PHP_EOL + . 'Cannot create storage directory.'; + return; + } + + mkdir($storageDirectory); + + echo 'Storage directory created at ' . $storageDirectory . PHP_EOL; + } + + /** + * _runSetupConfigFile() + * + * @return void + */ + protected function _runSetupConfigFile() + { + $configFile = $this->_detectConfigFile(false, false); + + if (file_exists($configFile)) { + echo 'File already exists at ' . $configFile . PHP_EOL + . 'Cannot write new config file.'; + return; + } + + $includePath = get_include_path(); + + $contents = 'php.include_path = "' . $includePath . '"'; + + file_put_contents($configFile, $contents); + + $iniValues = ini_get_all(); + if ($iniValues['include_path']['global_value'] != $iniValues['include_path']['local_value']) { + echo 'NOTE: the php include_path to be used with the tool has been written' . PHP_EOL + . 'to the config file, using ZEND_TOOL_INCLUDE_PATH (or other include_path setters)' . PHP_EOL + . 'is no longer necessary.' . PHP_EOL . PHP_EOL; + } + + echo 'Config file written to ' . $configFile . PHP_EOL; + } + + /** + * _runSetupMoreInfo() - return more information about what can be setup, and what is setup + * + * @return void + */ + protected function _runSetupMoreInfo() + { + $homeDirectory = $this->_detectHomeDirectory(false, false); + $storageDirectory = $this->_detectStorageDirectory(false, false); + $configFile = $this->_detectConfigFile(false, false); + + echo <<_configFile) && $this->_configFile) { + $configOptions['configOptions']['configFilepath'] = $this->_configFile; + } + if (isset($this->_storageDirectory) && $this->_storageDirectory) { + $configOptions['storageOptions']['directory'] = $this->_storageDirectory; + } + + // ensure that zf.php loads the Zend_Tool_Project features + $configOptions['classesToLoad'] = 'Zend_Tool_Project_Provider_Manifest'; + + $console = new Zend_Tool_Framework_Client_Console($configOptions); + $console->dispatch(); + } + + /** + * _logMessage() - Internal method used to log setup and information messages. + * + * @param string $message + * @param bool $storeMessage + * @return void + */ + protected function _logMessage($message, $storeMessage = true) + { + if (!$storeMessage) { + return; + } + + $this->_messages[] = $message; + } + + +} + +if (!getenv('ZF_NO_MAIN')) { + ZF::main(); +} diff --git a/bin/zf.sh b/bin/zf.sh new file mode 100644 index 00000000..28a42ec5 --- /dev/null +++ b/bin/zf.sh @@ -0,0 +1,45 @@ +#!/bin/sh + +############################################################################# +# Zend Framework +# +# LICENSE +# +# This source file is subject to the new BSD license that is bundled +# with this package in the file LICENSE.txt. +# It is also available through the world-wide-web at this URL: +# http://framework.zend.com/license/new-bsd +# If you did not receive a copy of the license and are unable to +# obtain it through the world-wide-web, please send an email +# to license@zend.com so we can send you a copy immediately. +# +# Zend +# Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) +# http://framework.zend.com/license/new-bsd New BSD License +############################################################################# + + +# find php: pear first, command -v second, straight up php lastly +if test "@php_bin@" != '@'php_bin'@'; then + PHP_BIN="@php_bin@" +elif command -v php 1>/dev/null 2>/dev/null; then + PHP_BIN=`command -v php` +else + PHP_BIN=php +fi + +# find zf.php: pear first, same directory 2nd, +if test "@php_dir@" != '@'php_dir'@'; then + PHP_DIR="@php_dir@" +else + SELF_LINK="$0" + SELF_LINK_TMP="$(readlink "$SELF_LINK")" + while test -n "$SELF_LINK_TMP"; do + SELF_LINK="$SELF_LINK_TMP" + SELF_LINK_TMP="$(readlink "$SELF_LINK")" + done + PHP_DIR="$(dirname "$SELF_LINK")" +fi + +"$PHP_BIN" -d safe_mode=Off -f "$PHP_DIR/zf.php" -- "$@" + diff --git a/library/Metier/insee/classMInsee.php b/library/Metier/insee/classMInsee.php index 2b45cbbb..024732fd 100644 --- a/library/Metier/insee/classMInsee.php +++ b/library/Metier/insee/classMInsee.php @@ -4226,7 +4226,7 @@ class MInsee $where.=" AND e.ROLE IN('".implode("','",$tabCodRol)."') "; } } - else { + elseif ( !empty($rubrique) ) { return false; } } @@ -4258,7 +4258,7 @@ class MInsee $where.= implode(' OR ',$tabTmp); $where.= ')'; } - else { + elseif ( !empty($rubrique) ) { return false; } } diff --git a/library/Metier/partenaires/classMRnvp.php b/library/Metier/partenaires/classMRnvp.php index eaadbbcc..d68d09ad 100644 --- a/library/Metier/partenaires/classMRnvp.php +++ b/library/Metier/partenaires/classMRnvp.php @@ -3,12 +3,31 @@ class MRnvp { protected $iDb; protected $iInsee; - + public $tabDevises=array(); public $nomTronque=0; - - function __construct() - { + + protected $tabAdrCQ=array( + 10=>'Adresse correcte', + 20=>'Adresse correcte (Voie non reconue dans un CEDEX ou BP)', + 21=>'Adresse correcte mais numéro de facade hors borne (petite ville)', + 22=>'Adresse correcte mais numéro de facade absent (petite ville)', + 23=>'Adresse correcte mais numéro de facade hors borne (grande ville)', + 24=>'Adresse correcte mais numéro de facade absent (grande ville)', + 30=>'Voie non reconnue (petite ville)', + 31=>'Voie non reconnue (petite ville, quartier reconnu)', + 40=>'Voie absente (petite ville, quartier reconnu)', + 41=>'Voie absente (petite ville)', + 50=>'Voie non reconnue (grande ville)', + 51=>'Voie non reconnue (grande ville, quartier reconnu)', + 60=>'Voie absente (grande ville, quartier reconnu)', + 61=>'Voie absente (grande ville)', + 70=>'Voie présente mais Cp/Ville non corrigeable', + 80=>'Voie absente et Cp/Ville non corrigeable', + 90=>'Adresse à l\'étranger', + ); + + function __construct() { $this->iDb = new WDB(); $this->iInsee = new MInsee($this->iDb); } @@ -23,10 +42,10 @@ class MRnvp $tabDevises=array(); foreach($rep as $k=>$dev) $tabDevises[$dev['devInpi']*1]=$dev['devIso']; - + return $tabDevises; } - + /** * Récupération du code ISO de la devise numérique de l'Inpi * @param integer $numDeviseInpi @@ -39,7 +58,7 @@ class MRnvp else return ''; } - + /** * @todo Corriger les adresses présentes dans CEDEXA (toutes les lignes) * @todo Ligne 3, acheter HEXALIGNE3 @@ -83,19 +102,26 @@ class MRnvp // Ligne 3, acheter HEXALIGNE3 $L3=$adrL3; - + // Ligne 5 et 7 par défaut $L7=$adrL7; $L5=$adrL5; - + // Ligne 6 : CP + Localité $idAdr56=false; $tabAdr56k=$tabAdr56L=array(); $cp=substr(trim($adrL6),0,5); - $cp2=substr($cp,0,2); - $ville=trim(strtr(substr($adrL6,5),array(' SAINT '=>' ST ',' SAINTE '=>' STE '))); + if ($cp*1>0) { + $cp2=substr($cp,0,2); + $ville=trim(strtr(substr($adrL6,5),array(' SAINT '=>' ST ',' SAINTE '=>' STE '))); + } else { + $cp=$cp2=''; + $ville=trim(strtr($adrL6,array(' SAINT '=>' ST ',' SAINTE '=>' STE '))); + } + $ville=preg_replace('/ CEDEX\s?.*$/ui','',$ville); $tabRetI=array( + 'operateurRnvp'=>'SED', 'in_cp'=>$cp, 'in_dep'=>$cp2, 'in_ville'=>$ville, @@ -107,7 +133,7 @@ class MRnvp 'in_L6'=>$adrL6, 'in_L7'=>$adrL7); //$dureeM=round(microtime(1)-$tDeb,3); - + $tD=microtime(1); $ret=$this->iDb->select('villes.hexaviaVilles', "idAdr56, codeInseeCom, libCom$norme, codeInseeGlobal, indPluridis, libLigne5n$norme, indRoudis, codePostal, libLigne6n$norme, codeInseePre, codeMaj$norme, dateMaj$norme, MATCH (codePostal, libCom38) AGAINST ('$cp $ville' IN NATURAL LANGUAGE MODE) AS score", @@ -117,8 +143,7 @@ class MRnvp $tabRetE=array( 'dureeV'=> round(microtime(1)-$tD,3), 'errRNVPcode'=>'V0', - 'errRNVPlib'=>'Aucune correspondance CP VILLE' - ); + 'errRNVPlib'=> "Aucune correspondance CP VILLE (cp=$cp, ville=$ville)"); $erreur=true; } else { foreach($ret as $i=>$iRet) { @@ -194,7 +219,7 @@ class MRnvp } } if ($erreur) return array_merge($tabRetI,$tabRetE); - + // Ligne 4 : Découpage N° Répétition TypeVoie et LibelléVoie $tD=microtime(1); $matriculeHexavia=false; @@ -258,9 +283,9 @@ class MRnvp if ($iRet['score']>17 && isset($ret[$i+1]) && $iRet['score']>$ret[$i+1]['score']) break; } } - + $dureeR=round(microtime(1)-$tD,3); - + if (!$matriculeHexavia) { if ($debug) print_r($ret); if ($debug) echo ("Plusieurs correspondances Voies pour $adrL4 $adrL6 dans cette commune ('$strAdr56') !".EOL); @@ -268,13 +293,13 @@ class MRnvp $tabRetE=array( 'dureeRnvp'=>round(microtime(1)-$tDeb,3), 'errRNVPcode'=>'R2', 'errRNVPlib'=>"Plusieurs correspondances Voies pour $adrL4 $adrL6 dans cette commune ('$strAdr56')"); - + return array_merge($tabRetI,$tabRetV,$tabRetE); } } if (!$matriculeHexavia && @strlen($L4)==0) $L4=$adrL4; - + $tD=microtime(1); $tabLen=$tabMaxLen=array(); $tabLen[1]=strlen($L1); @@ -317,7 +342,7 @@ class MRnvp } } $dureeN=round(microtime(1)-$tD,3); - + $tabRetR = array( 'L1'=>$L1, 'L2'=>$L2, @@ -338,12 +363,12 @@ class MRnvp 'dureeRnvp'=>round(microtime(1)-$tDeb,3), 'dureeM'=>$dureeM*1.0, ); - + $tabRet = array_merge($tabRetI,$tabRetV,$tabRetR,$tabRetE); - + return $tabRet; } - + /** Retourne le tableau des abbréviations existantes par type d'abréviation */ function getAbreviations($typeAbrev) @@ -377,12 +402,12 @@ class MRnvp //print_r($tabRet);die(); return $tabRet; } - + /** Normalise une raison sociale ou un nom **/ function normaliseRS($nomLong, $taille=38, $debug=false) { - $nomCourt=preg_replace('/[^A-Z0-9%\'\"\-&\*\/\s]/','',trim(strtoupper($nomLong))); + $nomCourt=preg_replace('/[^A-Z0-9%@&\'\(\)\"\-\*\/\s\+]/','',trim(strtoupper($nomLong))); $tabMots=split("[^[:alpha:]]+", $nomCourt); $passage=0; $this->nomTronque=0; @@ -399,7 +424,7 @@ class MRnvp } if ($debug) echo "1-Voies=$nomCourt".EOL; if (strlen($nomCourt)<=$taille) break; - + //print_r($tabMots); // 2. Remplacement des Titres par leurs abréviation $tabTmp=$this->getAbreviations('T'); @@ -412,14 +437,14 @@ class MRnvp } if ($debug) echo "2a-Titres=$nomCourt".EOL; if (strlen($nomCourt)<=$taille) break; - + // 2. Remplacement des Formes Juridiques $tabTmp=$this->getAbreviations('J'); foreach ($tabTmp as $lib=>$abr) $nomCourt=trim(str_replace(" $lib ", ' '.$abr.' ', " $nomCourt ")); if ($debug) echo "2b-FJ=$nomCourt".EOL; if (strlen($nomCourt)<=$taille) break; - + // 4. Suppression des articles $tabTmp=$this->getAbreviations('A'); foreach ($tabTmp as $lib=>$abr) { @@ -451,10 +476,10 @@ class MRnvp } if ($debug) echo "5-Autres Noms=$nomCourt".EOL; if (strlen($nomCourt)<=$taille) break; - + $nomCourt=substr($nomCourt,0,$taille); $this->nomTronque=1; - + //die($nomCourt); /** @todo A finir Tronquer ou abréger dans cette ordre @@ -465,21 +490,21 @@ class MRnvp - tronquer à 4 caractères les types de voie non normalisés - tronquer les extensions de voie - réduire le nom de la voie en supprimant les mots de la gauche vers la droite - + Gérer les pluriels pour les voies, nom, titres, et formes juridiques **/ $passage++; } return $nomCourt; } - - + + // Code Insee de la commune libCom32 Libellé de la commune (Ancienne norme 32) libCom38 Libellé function getLibCommune($codeInsee, $norme=38) { if ($norme<>32 && $norme<>38) { return 'La norme doit être 32 ou 38 caractères (38 par défaut)'.EOL; } - + $ret=$this->iDb->select('villes.hexaviaVilles', "libCom32 , libCom38", "codeInseeCom='$codeInsee' LIMIT 0,1",false, MYSQL_ASSOC); @@ -496,6 +521,16 @@ class MRnvp else return $ret[0]['libCom38']; } + function getCPCommune($codeInsee) + { + $ret=$this->iDb->select('villes.hexaviaVilles', + "codePostal", + "codeInseeCom='$codeInsee' GROUP BY codePostal",false, MYSQL_ASSOC); + $nbRet=count($ret); + if ($nbRet==1) return $ret[0]['codePostal']; + return false; + } + function getCodCommune($libelleCommune, $depOuCp='', $debug=false) { $norme=38; @@ -529,10 +564,32 @@ class MRnvp } return $codeCommune; } - - function normaliseAdresse76310($L1,$L2,$L3,$L4,$L5,$L6,$L7='') { - //ini_set('soap.wsdl_cache_enabled', 0); - $client = new SoapClient('http://www.rnvp-en-ligne.com/service.asmx?wsdl'); + + function normaliseAdresse76310($L1,$L2,$L3,$L4,$L5,$L6,$L7='') + { + $tDeb=microtime(1); + $tabRetR=$tabRetE=array(); + + $cp=substr(trim($L6),0,5); + $cp2=substr($cp,0,2); + $ville=trim(strtr(substr($L6,5),array(' SAINT '=>' ST ',' SAINTE '=>' STE '))); + $ville=preg_replace('/ CEDEX\s?.*$/ui','',$ville); + $tabRetI=array( 'operateurRnvp'=>'76310WEB', + 'in_cp'=>$cp, + 'in_dep'=>$cp2, + 'in_ville'=>$ville, + 'in_L1'=>trim($L1), + 'in_L2'=>trim($L2), + 'in_L3'=>trim($L3), + 'in_L4'=>trim($L4), + 'in_L5'=>trim($L5), + 'in_L6'=>trim($L6), + 'in_L7'=>trim($L7)); + + //$client = new SoapClient('http://www.rnvp-en-ligne.com/service.asmx?wsdl'); + $client = new SoapClient('http://www.rnvp-en-ligne.com/service_v5.asmx?wsdl'); + $nbEssais=1; + $array = array ( 'pi_session' => '-1', 'pi_user' => 'SDPROD', @@ -550,21 +607,109 @@ class MRnvp 'pio_cpville' => utf8_encode($L6), // Ligne 6 'pio_pays' => utf8_encode($L7), // Ligne 7 /* 'po_tnp' => '', - 'po_sex' => '', - 'po_civlong' => '', - 'po_cp' => '', - 'po_ville' => '', - 'po_insee' => '', - 'po_cqtnp' => '', - 'po_cqadrs' => '', - 'po_risquerestru' => '', - 'po_poidsmodif' => '', - 'po_rejet' => '', - 'po_etranger' => ''*/ - ); - $result = $client->Elfyweb_RNVP_Standard($array); - return ($result); + 'po_sex' => '', + 'po_civlong' => '', + 'po_cp' => '', + 'po_ville' => '', + 'po_insee' => '', + 'po_cqtnp' => '', + 'po_cqadrs' => '', + 'po_risquerestru' => '', + 'po_poidsmodif' => '', + 'po_rejet' => '', + 'po_etranger' => ''*/ + ); + while(1) { + try { + //$result = $client->Elfyweb_RNVP_Standard($array); + $result = $client->Elfyweb_RNVP_Expert_V50($array); + //print_r($result); + $tabRetR=array( 'L1'=>$L1, + 'L2'=>$L2, + 'L3'=>strtoupper(utf8_decode($result->pio_cadrs)), + 'L4'=>strtoupper(utf8_decode($result->pio_adresse)), + 'L5'=>strtoupper(utf8_decode($result->pio_lieudit)), + 'L6'=>strtoupper(utf8_decode($result->pio_cpville)), +/* [po_risquerestru] => 0 + [po_poidsmodif] => 0 + [po_rejet] => + [po_etranger] =>*/ + 'Cp'=>$result->po_cp, + 'Ville'=>$result->po_ville, + 'Insee'=>$result->po_insee, + /*'CQadrs'=>$result->po_cqadrs, + 'CQadrsLib'=>$this->tabAdrCQ[$result->po_cqadrs], + 'CQAdrRnvp'=>$this->getLibQualiteAdresse76310($result->po_cqadrs, $result->rejet),*/ + 'dureeRnvp'=>round(microtime(1)-$tDeb,3), + ); + if (@$result->pio_pays<>'FRA') $tabRet['L7']=$result->pio_pays; + break; + } catch (SoapFault $fault) { + $nbEssais++; + if ($nbEssai<5) continue; + $tabRetE=array( 'dureeRnvp'=>round(microtime(1)-$tDeb,3), + 'errRNVPcode'=>'S0', + 'errRNVPlib'=>"Erreur SOAP : ".print_r($fault,1)); + } + } + $tabRet=array_merge($tabRetI,$tabRetR,$tabRetE); + return $tabRet; + } + + function getLibQualiteAdresse76310($cqadrs, $correctionDouteuse) + { + switch ($cqadrs*1) { + case 10: // Adresse correcte + case 20: // Adresse correcte (Voie non reconue dans un CEDEX ou BP) + case 21: // Adresse correcte mais numéro de facade hors borne (petite ville) + case 22: // Adresse correcte mais numéro de facade absent (petite ville) + case 23: // Adresse correcte mais numéro de facade hors borne (grande ville) + case 24: // Adresse correcte mais numéro de facade absent (grande ville) + $cqRnvpSed=1; + break; + case 31: // Voie non reconnue (petite ville, quartier reconnu) + case 51: // Voie non reconnue (grande ville, quartier reconnu) + $cqRnvpSed=2; + break; + case 30: // Voie non reconnue (petite ville) + case 50: // Voie non reconnue (grande ville) + $cqRnvpSed=3; + break; + case 40: // Voie absente (petite ville, quartier reconnu) + case 41: // Voie absente (petite ville) + case 60: // Voie absente (grande ville, quartier reconnu) + case 61: // Voie absente (grande ville) + $cqRnvpSed=4; + break; + case 70: // Voie présente mais Cp/Ville non corrigeable + case 80: // Voie absente et Cp/Ville non corrigeable + $cqRnvpSed=5; + break; + default: + $cqRnvpSed=0; + break; + } + + if ($correctionDouteuse=='D') $cqRnvpSed=0; + return $cqRnvpSed; + } + + function getAdresseRnvpSource($source, $source_id, $num=0) + { + $ret=$this->iDb->select( + 'villes.rnvpSources', + 'id, source, source_id, num, L1rnvp, L2rnvp, L3rnvp, L4rnvp, L5rnvp, L6rnvp, L7rnvp, Pays, dateInsert, + operateurRnvp, dateEnvoiRnvp, dateRetourRnvp, codeRetour, NumVoie, BisTer, TypeVoieCourt, TypeVoieLong, LibVoie, + Cp, Ville, Insee, CQadrs, CorrectionImportante, CorrectionDouteuse, HexaCle, CQL3, InseeGlobal, OldInsee, + IsInseeReconstitue, NumDept, IdHexavia, IdHexaposte, Iris_Rivoli, Iris_Ilot99, Iris_CodeIris, Iris_Canton, + Iris_Zus, Iris_Zfu, CqIris, dateUpdate', + "source=$source AND source_id=$source_id AND num=$num LIMIT 0,1",false, MYSQL_ASSOC); + $tabRet=$ret[0]; + $tabRet['CQadrsLib']=$this->tabAdrCQ[$tabRet['CQadrs']]; + + $tabRet['CQAdrRnvp']=$this->getLibQualiteAdresse76310($tabRet['CQadrs'], $tabRet['CorrectionDouteuse']); + + return $tabRet; } - } ?> \ No newline at end of file diff --git a/library/Metier/partenaires/classMTva.php b/library/Metier/partenaires/classMTva.php index 6241c18b..867858a5 100644 --- a/library/Metier/partenaires/classMTva.php +++ b/library/Metier/partenaires/classMTva.php @@ -17,7 +17,7 @@ class MTva $this->vatDefined = false; return false; } - + if ( $db === null ) { $this->iDb = new WDB(); } else { @@ -39,7 +39,7 @@ class MTva return false; } - $info = $this->iDb->select('sdv1.siren_tva', "cle, DATE_FORMAT(dateMod,'%Y%m%d') as DateMAJ", "siren=$siren", false, MYSQL_ASSOC); + $info = $this->iDb->select('sdv1.siren_tva', "LPAD(cle,2,0) AS cle, DATE_FORMAT(dateMod,'%Y%m%d') as DateMAJ", "siren=$siren", false, MYSQL_ASSOC); $tab=$info[0]; if (count($tab)>0) { //sendMail('production@scores-decisions.com', 'ylenaour@scores-decisions.com', "classMTva sur $siren en cache", print_r($tab, true)); diff --git a/library/Scores/autoload_classmap.php b/library/Scores/autoload_classmap.php deleted file mode 100644 index 4e74cbe0..00000000 --- a/library/Scores/autoload_classmap.php +++ /dev/null @@ -1,15 +0,0 @@ - dirname(__FILE__) . '//Auth/Adapter/Db.php', - 'Scores_Auth_Adapter_Ws' => dirname(__FILE__) . '//Auth/Adapter/Ws.php', - 'Scores_Locale_String' => dirname(__FILE__) . '//Locale/String.php', - 'Scores_Mail_Method' => dirname(__FILE__) . '//Mail/Method.php', - 'Scores_Validate_IpInNetwork' => dirname(__FILE__) . '//Validate/IpInNetwork.php', - 'Scores_Wkhtml_Pdf' => dirname(__FILE__) . '//Wkhtml/Pdf.php', - 'Scores_Ws_Doc' => dirname(__FILE__) . '//Ws/Doc.php', - 'Scores_Ws_Exception' => dirname(__FILE__) . '//Ws/Exception.php', - 'Scores_Ws_Form_GetIdentite' => dirname(__FILE__) . '//Ws/Form/GetIdentite.php', - 'Scores_Ws_Server' => dirname(__FILE__) . '//Ws/Server.php', - 'Scores_Ws_Trigger' => dirname(__FILE__) . '//Ws/Trigger.php', -); diff --git a/library/SdMetier/autoload_classmap.php b/library/SdMetier/autoload_classmap.php deleted file mode 100644 index f6954e4d..00000000 --- a/library/SdMetier/autoload_classmap.php +++ /dev/null @@ -1,14 +0,0 @@ - dirname(__FILE__) . '//Graydon/Service.php', - 'SdMetier_Infogreffe_DocAC' => dirname(__FILE__) . '//Infogreffe/DocAC.php', - 'SdMetier_Infogreffe_DocBI' => dirname(__FILE__) . '//Infogreffe/DocBI.php', - 'SdMetier_Infogreffe_DocST' => dirname(__FILE__) . '//Infogreffe/DocST.php', - 'SdMetier_Infogreffe_Service' => dirname(__FILE__) . '//Infogreffe/Service.php', - 'SdMetier_Intersud_Service' => dirname(__FILE__) . '//Intersud/Service.php', - 'SdMetier_Rnvp_Detail' => dirname(__FILE__) . '//Rnvp/Detail.php', - 'SdMetier_Search_Engine' => dirname(__FILE__) . '//Search/Engine.php', - 'SdMetier_Sfr_Compile' => dirname(__FILE__) . '//Sfr/Compile.php', - 'SdMetier_Sfr_Scoring' => dirname(__FILE__) . '//Sfr/Scoring.php', -); diff --git a/library/autoload_classmap.php b/library/autoload_classmap.php new file mode 100644 index 00000000..99436226 --- /dev/null +++ b/library/autoload_classmap.php @@ -0,0 +1,2513 @@ + dirname(__FILE__) . '/../application/Bootstrap.php', + 'DoublonController' => dirname(__FILE__) . '/../application/controllers/DoublonController.php', + 'EnvoiController' => dirname(__FILE__) . '/../application/controllers/EnvoiController.php', + 'ErrorController' => dirname(__FILE__) . '/../application/controllers/ErrorController.php', + 'IndexController' => dirname(__FILE__) . '/../application/controllers/IndexController.php', + 'ProfilController' => dirname(__FILE__) . '/../application/controllers/ProfilController.php', + 'Application_Model_Commandes' => dirname(__FILE__) . '/../application/models/Commandes.php', + 'Application_Model_JoLiens' => dirname(__FILE__) . '/../application/models/JoLiens.php', + 'Application_Model_JoLiensDoc' => dirname(__FILE__) . '/../application/models/JoLiensDoc.php', + 'Application_Model_JoLiensRef' => dirname(__FILE__) . '/../application/models/JoLiensRef.php', + 'Application_Model_JoTabPays' => dirname(__FILE__) . '/../application/models/JoTabPays.php', + 'Application_Model_Profil' => dirname(__FILE__) . '/../application/models/Profil.php', + 'Application_Model_Sdv1TabIdLocal' => dirname(__FILE__) . '/../application/models/Sdv1TabIdLocal.php', + 'Zend_Acl_Assert_Interface' => dirname(__FILE__) . '/Zend/Acl/Assert/Interface.php', + 'Zend_Acl_Exception' => dirname(__FILE__) . '/Zend/Acl/Exception.php', + 'Zend_Acl_Resource_Interface' => dirname(__FILE__) . '/Zend/Acl/Resource/Interface.php', + 'Zend_Acl_Resource' => dirname(__FILE__) . '/Zend/Acl/Resource.php', + 'Zend_Acl_Role_Interface' => dirname(__FILE__) . '/Zend/Acl/Role/Interface.php', + 'Zend_Acl_Role_Registry_Exception' => dirname(__FILE__) . '/Zend/Acl/Role/Registry/Exception.php', + 'Zend_Acl_Role_Registry' => dirname(__FILE__) . '/Zend/Acl/Role/Registry.php', + 'Zend_Acl_Role' => dirname(__FILE__) . '/Zend/Acl/Role.php', + 'Zend_Acl' => dirname(__FILE__) . '/Zend/Acl.php', + 'Zend_Amf_Adobe_Auth' => dirname(__FILE__) . '/Zend/Amf/Adobe/Auth.php', + 'Zend_Amf_Adobe_DbInspector' => dirname(__FILE__) . '/Zend/Amf/Adobe/DbInspector.php', + 'Zend_Amf_Adobe_Introspector' => dirname(__FILE__) . '/Zend/Amf/Adobe/Introspector.php', + 'Zend_Amf_Auth_Abstract' => dirname(__FILE__) . '/Zend/Amf/Auth/Abstract.php', + 'Zend_Amf_Constants' => dirname(__FILE__) . '/Zend/Amf/Constants.php', + 'Zend_Amf_Exception' => dirname(__FILE__) . '/Zend/Amf/Exception.php', + 'Zend_Amf_Parse_Amf0_Deserializer' => dirname(__FILE__) . '/Zend/Amf/Parse/Amf0/Deserializer.php', + 'Zend_Amf_Parse_Amf0_Serializer' => dirname(__FILE__) . '/Zend/Amf/Parse/Amf0/Serializer.php', + 'Zend_Amf_Parse_Amf3_Deserializer' => dirname(__FILE__) . '/Zend/Amf/Parse/Amf3/Deserializer.php', + 'Zend_Amf_Parse_Amf3_Serializer' => dirname(__FILE__) . '/Zend/Amf/Parse/Amf3/Serializer.php', + 'Zend_Amf_Parse_Deserializer' => dirname(__FILE__) . '/Zend/Amf/Parse/Deserializer.php', + 'Zend_Amf_Parse_InputStream' => dirname(__FILE__) . '/Zend/Amf/Parse/InputStream.php', + 'Zend_Amf_Parse_OutputStream' => dirname(__FILE__) . '/Zend/Amf/Parse/OutputStream.php', + 'Zend_Amf_Parse_Resource_MysqliResult' => dirname(__FILE__) . '/Zend/Amf/Parse/Resource/MysqliResult.php', + 'Zend_Amf_Parse_Resource_MysqlResult' => dirname(__FILE__) . '/Zend/Amf/Parse/Resource/MysqlResult.php', + 'Zend_Amf_Parse_Resource_Stream' => dirname(__FILE__) . '/Zend/Amf/Parse/Resource/Stream.php', + 'Zend_Amf_Parse_Serializer' => dirname(__FILE__) . '/Zend/Amf/Parse/Serializer.php', + 'Zend_Amf_Parse_TypeLoader' => dirname(__FILE__) . '/Zend/Amf/Parse/TypeLoader.php', + 'Zend_Amf_Request_Http' => dirname(__FILE__) . '/Zend/Amf/Request/Http.php', + 'Zend_Amf_Request' => dirname(__FILE__) . '/Zend/Amf/Request.php', + 'Zend_Amf_Response_Http' => dirname(__FILE__) . '/Zend/Amf/Response/Http.php', + 'Zend_Amf_Response' => dirname(__FILE__) . '/Zend/Amf/Response.php', + 'Zend_Amf_Server_Exception' => dirname(__FILE__) . '/Zend/Amf/Server/Exception.php', + 'Zend_Amf_Server' => dirname(__FILE__) . '/Zend/Amf/Server.php', + 'Zend_Amf_Util_BinaryStream' => dirname(__FILE__) . '/Zend/Amf/Util/BinaryStream.php', + 'Zend_Amf_Value_ByteArray' => dirname(__FILE__) . '/Zend/Amf/Value/ByteArray.php', + 'Zend_Amf_Value_MessageBody' => dirname(__FILE__) . '/Zend/Amf/Value/MessageBody.php', + 'Zend_Amf_Value_MessageHeader' => dirname(__FILE__) . '/Zend/Amf/Value/MessageHeader.php', + 'Zend_Amf_Value_Messaging_AbstractMessage' => dirname(__FILE__) . '/Zend/Amf/Value/Messaging/AbstractMessage.php', + 'Zend_Amf_Value_Messaging_AcknowledgeMessage' => dirname(__FILE__) . '/Zend/Amf/Value/Messaging/AcknowledgeMessage.php', + 'Zend_Amf_Value_Messaging_ArrayCollection' => dirname(__FILE__) . '/Zend/Amf/Value/Messaging/ArrayCollection.php', + 'Zend_Amf_Value_Messaging_AsyncMessage' => dirname(__FILE__) . '/Zend/Amf/Value/Messaging/AsyncMessage.php', + 'Zend_Amf_Value_Messaging_CommandMessage' => dirname(__FILE__) . '/Zend/Amf/Value/Messaging/CommandMessage.php', + 'Zend_Amf_Value_Messaging_ErrorMessage' => dirname(__FILE__) . '/Zend/Amf/Value/Messaging/ErrorMessage.php', + 'Zend_Amf_Value_Messaging_RemotingMessage' => dirname(__FILE__) . '/Zend/Amf/Value/Messaging/RemotingMessage.php', + 'Zend_Amf_Value_TraitsInfo' => dirname(__FILE__) . '/Zend/Amf/Value/TraitsInfo.php', + 'Zend_Application_Bootstrap_Bootstrap' => dirname(__FILE__) . '/Zend/Application/Bootstrap/Bootstrap.php', + 'Zend_Application_Bootstrap_BootstrapAbstract' => dirname(__FILE__) . '/Zend/Application/Bootstrap/BootstrapAbstract.php', + 'Zend_Application_Bootstrap_Bootstrapper' => dirname(__FILE__) . '/Zend/Application/Bootstrap/Bootstrapper.php', + 'Zend_Application_Bootstrap_Exception' => dirname(__FILE__) . '/Zend/Application/Bootstrap/Exception.php', + 'Zend_Application_Bootstrap_ResourceBootstrapper' => dirname(__FILE__) . '/Zend/Application/Bootstrap/ResourceBootstrapper.php', + 'Zend_Application_Exception' => dirname(__FILE__) . '/Zend/Application/Exception.php', + 'Zend_Application_Module_Autoloader' => dirname(__FILE__) . '/Zend/Application/Module/Autoloader.php', + 'Zend_Application_Module_Bootstrap' => dirname(__FILE__) . '/Zend/Application/Module/Bootstrap.php', + 'Zend_Application_Resource_Cachemanager' => dirname(__FILE__) . '/Zend/Application/Resource/Cachemanager.php', + 'Zend_Application_Resource_Db' => dirname(__FILE__) . '/Zend/Application/Resource/Db.php', + 'Zend_Application_Resource_Dojo' => dirname(__FILE__) . '/Zend/Application/Resource/Dojo.php', + 'Zend_Application_Resource_Exception' => dirname(__FILE__) . '/Zend/Application/Resource/Exception.php', + 'Zend_Application_Resource_Frontcontroller' => dirname(__FILE__) . '/Zend/Application/Resource/Frontcontroller.php', + 'Zend_Application_Resource_Layout' => dirname(__FILE__) . '/Zend/Application/Resource/Layout.php', + 'Zend_Application_Resource_Locale' => dirname(__FILE__) . '/Zend/Application/Resource/Locale.php', + 'Zend_Application_Resource_Log' => dirname(__FILE__) . '/Zend/Application/Resource/Log.php', + 'Zend_Application_Resource_Mail' => dirname(__FILE__) . '/Zend/Application/Resource/Mail.php', + 'Zend_Application_Resource_Modules' => dirname(__FILE__) . '/Zend/Application/Resource/Modules.php', + 'Zend_Application_Resource_Multidb' => dirname(__FILE__) . '/Zend/Application/Resource/Multidb.php', + 'Zend_Application_Resource_Navigation' => dirname(__FILE__) . '/Zend/Application/Resource/Navigation.php', + 'Zend_Application_Resource_Resource' => dirname(__FILE__) . '/Zend/Application/Resource/Resource.php', + 'Zend_Application_Resource_ResourceAbstract' => dirname(__FILE__) . '/Zend/Application/Resource/ResourceAbstract.php', + 'Zend_Application_Resource_Router' => dirname(__FILE__) . '/Zend/Application/Resource/Router.php', + 'Zend_Application_Resource_Session' => dirname(__FILE__) . '/Zend/Application/Resource/Session.php', + 'Zend_Application_Resource_Translate' => dirname(__FILE__) . '/Zend/Application/Resource/Translate.php', + 'Zend_Application_Resource_UserAgent' => dirname(__FILE__) . '/Zend/Application/Resource/Useragent.php', + 'Zend_Application_Resource_View' => dirname(__FILE__) . '/Zend/Application/Resource/View.php', + 'Zend_Application' => dirname(__FILE__) . '/Zend/Application.php', + 'Zend_Auth_Adapter_DbTable' => dirname(__FILE__) . '/Zend/Auth/Adapter/DbTable.php', + 'Zend_Auth_Adapter_Digest' => dirname(__FILE__) . '/Zend/Auth/Adapter/Digest.php', + 'Zend_Auth_Adapter_Exception' => dirname(__FILE__) . '/Zend/Auth/Adapter/Exception.php', + 'Zend_Auth_Adapter_Http_Resolver_Exception' => dirname(__FILE__) . '/Zend/Auth/Adapter/Http/Resolver/Exception.php', + 'Zend_Auth_Adapter_Http_Resolver_File' => dirname(__FILE__) . '/Zend/Auth/Adapter/Http/Resolver/File.php', + 'Zend_Auth_Adapter_Http_Resolver_Interface' => dirname(__FILE__) . '/Zend/Auth/Adapter/Http/Resolver/Interface.php', + 'Zend_Auth_Adapter_Http' => dirname(__FILE__) . '/Zend/Auth/Adapter/Http.php', + 'Zend_Auth_Adapter_Interface' => dirname(__FILE__) . '/Zend/Auth/Adapter/Interface.php', + 'Zend_Auth_Adapter_Ldap' => dirname(__FILE__) . '/Zend/Auth/Adapter/Ldap.php', + 'Zend_Auth_Adapter_OpenId' => dirname(__FILE__) . '/Zend/Auth/Adapter/OpenId.php', + 'Zend_Auth_Exception' => dirname(__FILE__) . '/Zend/Auth/Exception.php', + 'Zend_Auth_Result' => dirname(__FILE__) . '/Zend/Auth/Result.php', + 'Zend_Auth_Storage_Exception' => dirname(__FILE__) . '/Zend/Auth/Storage/Exception.php', + 'Zend_Auth_Storage_Interface' => dirname(__FILE__) . '/Zend/Auth/Storage/Interface.php', + 'Zend_Auth_Storage_NonPersistent' => dirname(__FILE__) . '/Zend/Auth/Storage/NonPersistent.php', + 'Zend_Auth_Storage_Session' => dirname(__FILE__) . '/Zend/Auth/Storage/Session.php', + 'Zend_Auth' => dirname(__FILE__) . '/Zend/Auth.php', + 'Zend_Barcode_Exception' => dirname(__FILE__) . '/Zend/Barcode/Exception.php', + 'Zend_Barcode_Object_Code128' => dirname(__FILE__) . '/Zend/Barcode/Object/Code128.php', + 'Zend_Barcode_Object_Code25' => dirname(__FILE__) . '/Zend/Barcode/Object/Code25.php', + 'Zend_Barcode_Object_Code25interleaved' => dirname(__FILE__) . '/Zend/Barcode/Object/Code25interleaved.php', + 'Zend_Barcode_Object_Code39' => dirname(__FILE__) . '/Zend/Barcode/Object/Code39.php', + 'Zend_Barcode_Object_Ean13' => dirname(__FILE__) . '/Zend/Barcode/Object/Ean13.php', + 'Zend_Barcode_Object_Ean2' => dirname(__FILE__) . '/Zend/Barcode/Object/Ean2.php', + 'Zend_Barcode_Object_Ean5' => dirname(__FILE__) . '/Zend/Barcode/Object/Ean5.php', + 'Zend_Barcode_Object_Ean8' => dirname(__FILE__) . '/Zend/Barcode/Object/Ean8.php', + 'Zend_Barcode_Object_Error' => dirname(__FILE__) . '/Zend/Barcode/Object/Error.php', + 'Zend_Barcode_Object_Exception' => dirname(__FILE__) . '/Zend/Barcode/Object/Exception.php', + 'Zend_Barcode_Object_Identcode' => dirname(__FILE__) . '/Zend/Barcode/Object/Identcode.php', + 'Zend_Barcode_Object_Itf14' => dirname(__FILE__) . '/Zend/Barcode/Object/Itf14.php', + 'Zend_Barcode_Object_Leitcode' => dirname(__FILE__) . '/Zend/Barcode/Object/Leitcode.php', + 'Zend_Barcode_Object_ObjectAbstract' => dirname(__FILE__) . '/Zend/Barcode/Object/ObjectAbstract.php', + 'Zend_Barcode_Object_Planet' => dirname(__FILE__) . '/Zend/Barcode/Object/Planet.php', + 'Zend_Barcode_Object_Postnet' => dirname(__FILE__) . '/Zend/Barcode/Object/Postnet.php', + 'Zend_Barcode_Object_Royalmail' => dirname(__FILE__) . '/Zend/Barcode/Object/Royalmail.php', + 'Zend_Barcode_Object_Upca' => dirname(__FILE__) . '/Zend/Barcode/Object/Upca.php', + 'Zend_Barcode_Object_Upce' => dirname(__FILE__) . '/Zend/Barcode/Object/Upce.php', + 'Zend_Barcode_Renderer_Exception' => dirname(__FILE__) . '/Zend/Barcode/Renderer/Exception.php', + 'Zend_Barcode_Renderer_Image' => dirname(__FILE__) . '/Zend/Barcode/Renderer/Image.php', + 'Zend_Barcode_Renderer_Pdf' => dirname(__FILE__) . '/Zend/Barcode/Renderer/Pdf.php', + 'Zend_Barcode_Renderer_RendererAbstract' => dirname(__FILE__) . '/Zend/Barcode/Renderer/RendererAbstract.php', + 'Zend_Barcode_Renderer_Svg' => dirname(__FILE__) . '/Zend/Barcode/Renderer/Svg.php', + 'Zend_Barcode' => dirname(__FILE__) . '/Zend/Barcode.php', + 'Zend_Cache_Backend_Apc' => dirname(__FILE__) . '/Zend/Cache/Backend/Apc.php', + 'Zend_Cache_Backend_BlackHole' => dirname(__FILE__) . '/Zend/Cache/Backend/BlackHole.php', + 'Zend_Cache_Backend_ExtendedInterface' => dirname(__FILE__) . '/Zend/Cache/Backend/ExtendedInterface.php', + 'Zend_Cache_Backend_File' => dirname(__FILE__) . '/Zend/Cache/Backend/File.php', + 'Zend_Cache_Backend_Interface' => dirname(__FILE__) . '/Zend/Cache/Backend/Interface.php', + 'Zend_Cache_Backend_Libmemcached' => dirname(__FILE__) . '/Zend/Cache/Backend/Libmemcached.php', + 'Zend_Cache_Backend_Memcached' => dirname(__FILE__) . '/Zend/Cache/Backend/Memcached.php', + 'Zend_Cache_Backend_Sqlite' => dirname(__FILE__) . '/Zend/Cache/Backend/Sqlite.php', + 'Zend_Cache_Backend_Static' => dirname(__FILE__) . '/Zend/Cache/Backend/Static.php', + 'Zend_Cache_Backend_Test' => dirname(__FILE__) . '/Zend/Cache/Backend/Test.php', + 'Zend_Cache_Backend_TwoLevels' => dirname(__FILE__) . '/Zend/Cache/Backend/TwoLevels.php', + 'Zend_Cache_Backend_WinCache' => dirname(__FILE__) . '/Zend/Cache/Backend/WinCache.php', + 'Zend_Cache_Backend_Xcache' => dirname(__FILE__) . '/Zend/Cache/Backend/Xcache.php', + 'Zend_Cache_Backend_ZendPlatform' => dirname(__FILE__) . '/Zend/Cache/Backend/ZendPlatform.php', + 'Zend_Cache_Backend_ZendServer_Disk' => dirname(__FILE__) . '/Zend/Cache/Backend/ZendServer/Disk.php', + 'Zend_Cache_Backend_ZendServer_ShMem' => dirname(__FILE__) . '/Zend/Cache/Backend/ZendServer/ShMem.php', + 'Zend_Cache_Backend_ZendServer' => dirname(__FILE__) . '/Zend/Cache/Backend/ZendServer.php', + 'Zend_Cache_Backend' => dirname(__FILE__) . '/Zend/Cache/Backend.php', + 'Zend_Cache_Core' => dirname(__FILE__) . '/Zend/Cache/Core.php', + 'Zend_Cache_Exception' => dirname(__FILE__) . '/Zend/Cache/Exception.php', + 'Zend_Cache_Frontend_Capture' => dirname(__FILE__) . '/Zend/Cache/Frontend/Capture.php', + 'Zend_Cache_Frontend_Class' => dirname(__FILE__) . '/Zend/Cache/Frontend/Class.php', + 'Zend_Cache_Frontend_File' => dirname(__FILE__) . '/Zend/Cache/Frontend/File.php', + 'Zend_Cache_Frontend_Function' => dirname(__FILE__) . '/Zend/Cache/Frontend/Function.php', + 'Zend_Cache_Frontend_Output' => dirname(__FILE__) . '/Zend/Cache/Frontend/Output.php', + 'Zend_Cache_Frontend_Page' => dirname(__FILE__) . '/Zend/Cache/Frontend/Page.php', + 'Zend_Cache_Manager' => dirname(__FILE__) . '/Zend/Cache/Manager.php', + 'Zend_Cache' => dirname(__FILE__) . '/Zend/Cache.php', + 'Zend_Captcha_Adapter' => dirname(__FILE__) . '/Zend/Captcha/Adapter.php', + 'Zend_Captcha_Base' => dirname(__FILE__) . '/Zend/Captcha/Base.php', + 'Zend_Captcha_Dumb' => dirname(__FILE__) . '/Zend/Captcha/Dumb.php', + 'Zend_Captcha_Exception' => dirname(__FILE__) . '/Zend/Captcha/Exception.php', + 'Zend_Captcha_Figlet' => dirname(__FILE__) . '/Zend/Captcha/Figlet.php', + 'Zend_Captcha_Image' => dirname(__FILE__) . '/Zend/Captcha/Image.php', + 'Zend_Captcha_ReCaptcha' => dirname(__FILE__) . '/Zend/Captcha/ReCaptcha.php', + 'Zend_Captcha_Word' => dirname(__FILE__) . '/Zend/Captcha/Word.php', + 'Zend_Cloud_AbstractFactory' => dirname(__FILE__) . '/Zend/Cloud/AbstractFactory.php', + 'Zend_Cloud_DocumentService_Adapter_AbstractAdapter' => dirname(__FILE__) . '/Zend/Cloud/DocumentService/Adapter/AbstractAdapter.php', + 'Zend_Cloud_DocumentService_Adapter_SimpleDb_Query' => dirname(__FILE__) . '/Zend/Cloud/DocumentService/Adapter/SimpleDb/Query.php', + 'Zend_Cloud_DocumentService_Adapter_SimpleDb' => dirname(__FILE__) . '/Zend/Cloud/DocumentService/Adapter/SimpleDb.php', + 'Zend_Cloud_DocumentService_Adapter_WindowsAzure_Query' => dirname(__FILE__) . '/Zend/Cloud/DocumentService/Adapter/WindowsAzure/Query.php', + 'Zend_Cloud_DocumentService_Adapter_WindowsAzure' => dirname(__FILE__) . '/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php', + 'Zend_Cloud_DocumentService_Adapter' => dirname(__FILE__) . '/Zend/Cloud/DocumentService/Adapter.php', + 'Zend_Cloud_DocumentService_Document' => dirname(__FILE__) . '/Zend/Cloud/DocumentService/Document.php', + 'Zend_Cloud_DocumentService_DocumentSet' => dirname(__FILE__) . '/Zend/Cloud/DocumentService/DocumentSet.php', + 'Zend_Cloud_DocumentService_Exception' => dirname(__FILE__) . '/Zend/Cloud/DocumentService/Exception.php', + 'Zend_Cloud_DocumentService_Factory' => dirname(__FILE__) . '/Zend/Cloud/DocumentService/Factory.php', + 'Zend_Cloud_DocumentService_Query' => dirname(__FILE__) . '/Zend/Cloud/DocumentService/Query.php', + 'Zend_Cloud_DocumentService_QueryAdapter' => dirname(__FILE__) . '/Zend/Cloud/DocumentService/QueryAdapter.php', + 'Zend_Cloud_Exception' => dirname(__FILE__) . '/Zend/Cloud/Exception.php', + 'Zend_Cloud_Infrastructure_Adapter_AbstractAdapter' => dirname(__FILE__) . '/Zend/Cloud/Infrastructure/Adapter/AbstractAdapter.php', + 'Zend_Cloud_Infrastructure_Adapter_Ec2' => dirname(__FILE__) . '/Zend/Cloud/Infrastructure/Adapter/Ec2.php', + 'Zend_Cloud_Infrastructure_Adapter_Rackspace' => dirname(__FILE__) . '/Zend/Cloud/Infrastructure/Adapter/Rackspace.php', + 'Zend_Cloud_Infrastructure_Adapter' => dirname(__FILE__) . '/Zend/Cloud/Infrastructure/Adapter.php', + 'Zend_Cloud_Infrastructure_Exception' => dirname(__FILE__) . '/Zend/Cloud/Infrastructure/Exception.php', + 'Zend_Cloud_Infrastructure_Factory' => dirname(__FILE__) . '/Zend/Cloud/Infrastructure/Factory.php', + 'Zend_Cloud_Infrastructure_Image' => dirname(__FILE__) . '/Zend/Cloud/Infrastructure/Image.php', + 'Zend_Cloud_Infrastructure_ImageList' => dirname(__FILE__) . '/Zend/Cloud/Infrastructure/ImageList.php', + 'Zend_Cloud_Infrastructure_Instance' => dirname(__FILE__) . '/Zend/Cloud/Infrastructure/Instance.php', + 'Zend_Cloud_Infrastructure_InstanceList' => dirname(__FILE__) . '/Zend/Cloud/Infrastructure/InstanceList.php', + 'Zend_Cloud_OperationNotAvailableException' => dirname(__FILE__) . '/Zend/Cloud/OperationNotAvailableException.php', + 'Zend_Cloud_QueueService_Adapter_AbstractAdapter' => dirname(__FILE__) . '/Zend/Cloud/QueueService/Adapter/AbstractAdapter.php', + 'Zend_Cloud_QueueService_Adapter_Sqs' => dirname(__FILE__) . '/Zend/Cloud/QueueService/Adapter/Sqs.php', + 'Zend_Cloud_QueueService_Adapter_WindowsAzure' => dirname(__FILE__) . '/Zend/Cloud/QueueService/Adapter/WindowsAzure.php', + 'Zend_Cloud_QueueService_Adapter_ZendQueue' => dirname(__FILE__) . '/Zend/Cloud/QueueService/Adapter/ZendQueue.php', + 'Zend_Cloud_QueueService_Adapter' => dirname(__FILE__) . '/Zend/Cloud/QueueService/Adapter.php', + 'Zend_Cloud_QueueService_Exception' => dirname(__FILE__) . '/Zend/Cloud/QueueService/Exception.php', + 'Zend_Cloud_QueueService_Factory' => dirname(__FILE__) . '/Zend/Cloud/QueueService/Factory.php', + 'Zend_Cloud_QueueService_Message' => dirname(__FILE__) . '/Zend/Cloud/QueueService/Message.php', + 'Zend_Cloud_QueueService_MessageSet' => dirname(__FILE__) . '/Zend/Cloud/QueueService/MessageSet.php', + 'Zend_Cloud_StorageService_Adapter_FileSystem' => dirname(__FILE__) . '/Zend/Cloud/StorageService/Adapter/FileSystem.php', + 'Zend_Cloud_StorageService_Adapter_Rackspace' => dirname(__FILE__) . '/Zend/Cloud/StorageService/Adapter/Rackspace.php', + 'Zend_Cloud_StorageService_Adapter_S3' => dirname(__FILE__) . '/Zend/Cloud/StorageService/Adapter/S3.php', + 'Zend_Cloud_StorageService_Adapter_WindowsAzure' => dirname(__FILE__) . '/Zend/Cloud/StorageService/Adapter/WindowsAzure.php', + 'Zend_Cloud_StorageService_Adapter' => dirname(__FILE__) . '/Zend/Cloud/StorageService/Adapter.php', + 'Zend_Cloud_StorageService_Exception' => dirname(__FILE__) . '/Zend/Cloud/StorageService/Exception.php', + 'Zend_Cloud_StorageService_Factory' => dirname(__FILE__) . '/Zend/Cloud/StorageService/Factory.php', + 'Zend_CodeGenerator_Abstract' => dirname(__FILE__) . '/Zend/CodeGenerator/Abstract.php', + 'Zend_CodeGenerator_Exception' => dirname(__FILE__) . '/Zend/CodeGenerator/Exception.php', + 'Zend_CodeGenerator_Php_Abstract' => dirname(__FILE__) . '/Zend/CodeGenerator/Php/Abstract.php', + 'Zend_CodeGenerator_Php_Body' => dirname(__FILE__) . '/Zend/CodeGenerator/Php/Body.php', + 'Zend_CodeGenerator_Php_Class' => dirname(__FILE__) . '/Zend/CodeGenerator/Php/Class.php', + 'Zend_CodeGenerator_Php_Docblock_Tag_License' => dirname(__FILE__) . '/Zend/CodeGenerator/Php/Docblock/Tag/License.php', + 'Zend_CodeGenerator_Php_Docblock_Tag_Param' => dirname(__FILE__) . '/Zend/CodeGenerator/Php/Docblock/Tag/Param.php', + 'Zend_CodeGenerator_Php_Docblock_Tag_Return' => dirname(__FILE__) . '/Zend/CodeGenerator/Php/Docblock/Tag/Return.php', + 'Zend_CodeGenerator_Php_Docblock_Tag' => dirname(__FILE__) . '/Zend/CodeGenerator/Php/Docblock/Tag.php', + 'Zend_CodeGenerator_Php_Docblock' => dirname(__FILE__) . '/Zend/CodeGenerator/Php/Docblock.php', + 'Zend_CodeGenerator_Php_Exception' => dirname(__FILE__) . '/Zend/CodeGenerator/Php/Exception.php', + 'Zend_CodeGenerator_Php_File' => dirname(__FILE__) . '/Zend/CodeGenerator/Php/File.php', + 'Zend_CodeGenerator_Php_Member_Abstract' => dirname(__FILE__) . '/Zend/CodeGenerator/Php/Member/Abstract.php', + 'Zend_CodeGenerator_Php_Member_Container' => dirname(__FILE__) . '/Zend/CodeGenerator/Php/Member/Container.php', + 'Zend_CodeGenerator_Php_Method' => dirname(__FILE__) . '/Zend/CodeGenerator/Php/Method.php', + 'Zend_CodeGenerator_Php_Parameter_DefaultValue' => dirname(__FILE__) . '/Zend/CodeGenerator/Php/Parameter/DefaultValue.php', + 'Zend_CodeGenerator_Php_Parameter' => dirname(__FILE__) . '/Zend/CodeGenerator/Php/Parameter.php', + 'Zend_CodeGenerator_Php_Property_DefaultValue' => dirname(__FILE__) . '/Zend/CodeGenerator/Php/Property/DefaultValue.php', + 'Zend_CodeGenerator_Php_Property' => dirname(__FILE__) . '/Zend/CodeGenerator/Php/Property.php', + 'Zend_Config_Exception' => dirname(__FILE__) . '/Zend/Config/Exception.php', + 'Zend_Config_Ini' => dirname(__FILE__) . '/Zend/Config/Ini.php', + 'Zend_Config_Json' => dirname(__FILE__) . '/Zend/Config/Json.php', + 'Zend_Config_Writer_Array' => dirname(__FILE__) . '/Zend/Config/Writer/Array.php', + 'Zend_Config_Writer_FileAbstract' => dirname(__FILE__) . '/Zend/Config/Writer/FileAbstract.php', + 'Zend_Config_Writer_Ini' => dirname(__FILE__) . '/Zend/Config/Writer/Ini.php', + 'Zend_Config_Writer_Json' => dirname(__FILE__) . '/Zend/Config/Writer/Json.php', + 'Zend_Config_Writer_Xml' => dirname(__FILE__) . '/Zend/Config/Writer/Xml.php', + 'Zend_Config_Writer_Yaml' => dirname(__FILE__) . '/Zend/Config/Writer/Yaml.php', + 'Zend_Config_Writer' => dirname(__FILE__) . '/Zend/Config/Writer.php', + 'Zend_Config_Xml' => dirname(__FILE__) . '/Zend/Config/Xml.php', + 'Zend_Config_Yaml' => dirname(__FILE__) . '/Zend/Config/Yaml.php', + 'Zend_Config' => dirname(__FILE__) . '/Zend/Config.php', + 'Zend_Console_Getopt_Exception' => dirname(__FILE__) . '/Zend/Console/Getopt/Exception.php', + 'Zend_Console_Getopt' => dirname(__FILE__) . '/Zend/Console/Getopt.php', + 'Zend_Controller_Action_Exception' => dirname(__FILE__) . '/Zend/Controller/Action/Exception.php', + 'Zend_Controller_Action_Helper_Abstract' => dirname(__FILE__) . '/Zend/Controller/Action/Helper/Abstract.php', + 'Zend_Controller_Action_Helper_ActionStack' => dirname(__FILE__) . '/Zend/Controller/Action/Helper/ActionStack.php', + 'Zend_Controller_Action_Helper_AjaxContext' => dirname(__FILE__) . '/Zend/Controller/Action/Helper/AjaxContext.php', + 'Zend_Controller_Action_Helper_AutoComplete_Abstract' => dirname(__FILE__) . '/Zend/Controller/Action/Helper/AutoComplete/Abstract.php', + 'Zend_Controller_Action_Helper_AutoCompleteDojo' => dirname(__FILE__) . '/Zend/Controller/Action/Helper/AutoCompleteDojo.php', + 'Zend_Controller_Action_Helper_AutoCompleteScriptaculous' => dirname(__FILE__) . '/Zend/Controller/Action/Helper/AutoCompleteScriptaculous.php', + 'Zend_Controller_Action_Helper_Cache' => dirname(__FILE__) . '/Zend/Controller/Action/Helper/Cache.php', + 'Zend_Controller_Action_Helper_ContextSwitch' => dirname(__FILE__) . '/Zend/Controller/Action/Helper/ContextSwitch.php', + 'Zend_Controller_Action_Helper_FlashMessenger' => dirname(__FILE__) . '/Zend/Controller/Action/Helper/FlashMessenger.php', + 'Zend_Controller_Action_Helper_Json' => dirname(__FILE__) . '/Zend/Controller/Action/Helper/Json.php', + 'Zend_Controller_Action_Helper_Redirector' => dirname(__FILE__) . '/Zend/Controller/Action/Helper/Redirector.php', + 'Zend_Controller_Action_Helper_Url' => dirname(__FILE__) . '/Zend/Controller/Action/Helper/Url.php', + 'Zend_Controller_Action_Helper_ViewRenderer' => dirname(__FILE__) . '/Zend/Controller/Action/Helper/ViewRenderer.php', + 'Zend_Controller_Action_HelperBroker_PriorityStack' => dirname(__FILE__) . '/Zend/Controller/Action/HelperBroker/PriorityStack.php', + 'Zend_Controller_Action_HelperBroker' => dirname(__FILE__) . '/Zend/Controller/Action/HelperBroker.php', + 'Zend_Controller_Action_Interface' => dirname(__FILE__) . '/Zend/Controller/Action/Interface.php', + 'Zend_Controller_Action' => dirname(__FILE__) . '/Zend/Controller/Action.php', + 'Zend_Controller_Dispatcher_Abstract' => dirname(__FILE__) . '/Zend/Controller/Dispatcher/Abstract.php', + 'Zend_Controller_Dispatcher_Exception' => dirname(__FILE__) . '/Zend/Controller/Dispatcher/Exception.php', + 'Zend_Controller_Dispatcher_Interface' => dirname(__FILE__) . '/Zend/Controller/Dispatcher/Interface.php', + 'Zend_Controller_Dispatcher_Standard' => dirname(__FILE__) . '/Zend/Controller/Dispatcher/Standard.php', + 'Zend_Controller_Exception' => dirname(__FILE__) . '/Zend/Controller/Exception.php', + 'Zend_Controller_Front' => dirname(__FILE__) . '/Zend/Controller/Front.php', + 'Zend_Controller_Plugin_Abstract' => dirname(__FILE__) . '/Zend/Controller/Plugin/Abstract.php', + 'Zend_Controller_Plugin_ActionStack' => dirname(__FILE__) . '/Zend/Controller/Plugin/ActionStack.php', + 'Zend_Controller_Plugin_Broker' => dirname(__FILE__) . '/Zend/Controller/Plugin/Broker.php', + 'Zend_Controller_Plugin_ErrorHandler' => dirname(__FILE__) . '/Zend/Controller/Plugin/ErrorHandler.php', + 'Zend_Controller_Plugin_PutHandler' => dirname(__FILE__) . '/Zend/Controller/Plugin/PutHandler.php', + 'Zend_Controller_Request_Abstract' => dirname(__FILE__) . '/Zend/Controller/Request/Abstract.php', + 'Zend_Controller_Request_Apache404' => dirname(__FILE__) . '/Zend/Controller/Request/Apache404.php', + 'Zend_Controller_Request_Exception' => dirname(__FILE__) . '/Zend/Controller/Request/Exception.php', + 'Zend_Controller_Request_Http' => dirname(__FILE__) . '/Zend/Controller/Request/Http.php', + 'Zend_Controller_Request_HttpTestCase' => dirname(__FILE__) . '/Zend/Controller/Request/HttpTestCase.php', + 'Zend_Controller_Request_Simple' => dirname(__FILE__) . '/Zend/Controller/Request/Simple.php', + 'Zend_Controller_Response_Abstract' => dirname(__FILE__) . '/Zend/Controller/Response/Abstract.php', + 'Zend_Controller_Response_Cli' => dirname(__FILE__) . '/Zend/Controller/Response/Cli.php', + 'Zend_Controller_Response_Exception' => dirname(__FILE__) . '/Zend/Controller/Response/Exception.php', + 'Zend_Controller_Response_Http' => dirname(__FILE__) . '/Zend/Controller/Response/Http.php', + 'Zend_Controller_Response_HttpTestCase' => dirname(__FILE__) . '/Zend/Controller/Response/HttpTestCase.php', + 'Zend_Controller_Router_Abstract' => dirname(__FILE__) . '/Zend/Controller/Router/Abstract.php', + 'Zend_Controller_Router_Exception' => dirname(__FILE__) . '/Zend/Controller/Router/Exception.php', + 'Zend_Controller_Router_Interface' => dirname(__FILE__) . '/Zend/Controller/Router/Interface.php', + 'Zend_Controller_Router_Rewrite' => dirname(__FILE__) . '/Zend/Controller/Router/Rewrite.php', + 'Zend_Controller_Router_Route_Abstract' => dirname(__FILE__) . '/Zend/Controller/Router/Route/Abstract.php', + 'Zend_Controller_Router_Route_Chain' => dirname(__FILE__) . '/Zend/Controller/Router/Route/Chain.php', + 'Zend_Controller_Router_Route_Hostname' => dirname(__FILE__) . '/Zend/Controller/Router/Route/Hostname.php', + 'Zend_Controller_Router_Route_Interface' => dirname(__FILE__) . '/Zend/Controller/Router/Route/Interface.php', + 'Zend_Controller_Router_Route_Module' => dirname(__FILE__) . '/Zend/Controller/Router/Route/Module.php', + 'Zend_Controller_Router_Route_Regex' => dirname(__FILE__) . '/Zend/Controller/Router/Route/Regex.php', + 'Zend_Controller_Router_Route_Static' => dirname(__FILE__) . '/Zend/Controller/Router/Route/Static.php', + 'Zend_Controller_Router_Route' => dirname(__FILE__) . '/Zend/Controller/Router/Route.php', + 'Zend_Crypt_DiffieHellman_Exception' => dirname(__FILE__) . '/Zend/Crypt/DiffieHellman/Exception.php', + 'Zend_Crypt_DiffieHellman' => dirname(__FILE__) . '/Zend/Crypt/DiffieHellman.php', + 'Zend_Crypt_Exception' => dirname(__FILE__) . '/Zend/Crypt/Exception.php', + 'Zend_Crypt_Hmac_Exception' => dirname(__FILE__) . '/Zend/Crypt/Hmac/Exception.php', + 'Zend_Crypt_Hmac' => dirname(__FILE__) . '/Zend/Crypt/Hmac.php', + 'Zend_Crypt_Math_BigInteger_Bcmath' => dirname(__FILE__) . '/Zend/Crypt/Math/BigInteger/Bcmath.php', + 'Zend_Crypt_Math_BigInteger_Exception' => dirname(__FILE__) . '/Zend/Crypt/Math/BigInteger/Exception.php', + 'Zend_Crypt_Math_BigInteger_Gmp' => dirname(__FILE__) . '/Zend/Crypt/Math/BigInteger/Gmp.php', + 'Zend_Crypt_Math_BigInteger_Interface' => dirname(__FILE__) . '/Zend/Crypt/Math/BigInteger/Interface.php', + 'Zend_Crypt_Math_BigInteger' => dirname(__FILE__) . '/Zend/Crypt/Math/BigInteger.php', + 'Zend_Crypt_Math_Exception' => dirname(__FILE__) . '/Zend/Crypt/Math/Exception.php', + 'Zend_Crypt_Math' => dirname(__FILE__) . '/Zend/Crypt/Math.php', + 'Zend_Crypt_Rsa_Exception' => dirname(__FILE__) . '/Zend/Crypt/Rsa/Exception.php', + 'Zend_Crypt_Rsa_Key_Private' => dirname(__FILE__) . '/Zend/Crypt/Rsa/Key/Private.php', + 'Zend_Crypt_Rsa_Key_Public' => dirname(__FILE__) . '/Zend/Crypt/Rsa/Key/Public.php', + 'Zend_Crypt_Rsa_Key' => dirname(__FILE__) . '/Zend/Crypt/Rsa/Key.php', + 'Zend_Crypt_Rsa' => dirname(__FILE__) . '/Zend/Crypt/Rsa.php', + 'Zend_Crypt' => dirname(__FILE__) . '/Zend/Crypt.php', + 'Zend_Currency_CurrencyInterface' => dirname(__FILE__) . '/Zend/Currency/CurrencyInterface.php', + 'Zend_Currency_Exception' => dirname(__FILE__) . '/Zend/Currency/Exception.php', + 'Zend_Currency' => dirname(__FILE__) . '/Zend/Currency.php', + 'Zend_Date_Cities' => dirname(__FILE__) . '/Zend/Date/Cities.php', + 'Zend_Date_DateObject' => dirname(__FILE__) . '/Zend/Date/DateObject.php', + 'Zend_Date_Exception' => dirname(__FILE__) . '/Zend/Date/Exception.php', + 'Zend_Date' => dirname(__FILE__) . '/Zend/Date.php', + 'Zend_Db_Adapter_Abstract' => dirname(__FILE__) . '/Zend/Db/Adapter/Abstract.php', + 'Zend_Db_Adapter_Db2_Exception' => dirname(__FILE__) . '/Zend/Db/Adapter/Db2/Exception.php', + 'Zend_Db_Adapter_Db2' => dirname(__FILE__) . '/Zend/Db/Adapter/Db2.php', + 'Zend_Db_Adapter_Exception' => dirname(__FILE__) . '/Zend/Db/Adapter/Exception.php', + 'Zend_Db_Adapter_Mysqli_Exception' => dirname(__FILE__) . '/Zend/Db/Adapter/Mysqli/Exception.php', + 'Zend_Db_Adapter_Mysqli' => dirname(__FILE__) . '/Zend/Db/Adapter/Mysqli.php', + 'Zend_Db_Adapter_Oracle_Exception' => dirname(__FILE__) . '/Zend/Db/Adapter/Oracle/Exception.php', + 'Zend_Db_Adapter_Oracle' => dirname(__FILE__) . '/Zend/Db/Adapter/Oracle.php', + 'Zend_Db_Adapter_Pdo_Abstract' => dirname(__FILE__) . '/Zend/Db/Adapter/Pdo/Abstract.php', + 'Zend_Db_Adapter_Pdo_Ibm_Db2' => dirname(__FILE__) . '/Zend/Db/Adapter/Pdo/Ibm/Db2.php', + 'Zend_Db_Adapter_Pdo_Ibm_Ids' => dirname(__FILE__) . '/Zend/Db/Adapter/Pdo/Ibm/Ids.php', + 'Zend_Db_Adapter_Pdo_Ibm' => dirname(__FILE__) . '/Zend/Db/Adapter/Pdo/Ibm.php', + 'Zend_Db_Adapter_Pdo_Mssql' => dirname(__FILE__) . '/Zend/Db/Adapter/Pdo/Mssql.php', + 'Zend_Db_Adapter_Pdo_Mysql' => dirname(__FILE__) . '/Zend/Db/Adapter/Pdo/Mysql.php', + 'Zend_Db_Adapter_Pdo_Oci' => dirname(__FILE__) . '/Zend/Db/Adapter/Pdo/Oci.php', + 'Zend_Db_Adapter_Pdo_Pgsql' => dirname(__FILE__) . '/Zend/Db/Adapter/Pdo/Pgsql.php', + 'Zend_Db_Adapter_Pdo_Sqlite' => dirname(__FILE__) . '/Zend/Db/Adapter/Pdo/Sqlite.php', + 'Zend_Db_Adapter_Sqlsrv_Exception' => dirname(__FILE__) . '/Zend/Db/Adapter/Sqlsrv/Exception.php', + 'Zend_Db_Adapter_Sqlsrv' => dirname(__FILE__) . '/Zend/Db/Adapter/Sqlsrv.php', + 'Zend_Db_Exception' => dirname(__FILE__) . '/Zend/Db/Exception.php', + 'Zend_Db_Expr' => dirname(__FILE__) . '/Zend/Db/Expr.php', + 'Zend_Db_Profiler_Exception' => dirname(__FILE__) . '/Zend/Db/Profiler/Exception.php', + 'Zend_Db_Profiler_Firebug' => dirname(__FILE__) . '/Zend/Db/Profiler/Firebug.php', + 'Zend_Db_Profiler_Query' => dirname(__FILE__) . '/Zend/Db/Profiler/Query.php', + 'Zend_Db_Profiler' => dirname(__FILE__) . '/Zend/Db/Profiler.php', + 'Zend_Db_Select_Exception' => dirname(__FILE__) . '/Zend/Db/Select/Exception.php', + 'Zend_Db_Select' => dirname(__FILE__) . '/Zend/Db/Select.php', + 'Zend_Db_Statement_Db2_Exception' => dirname(__FILE__) . '/Zend/Db/Statement/Db2/Exception.php', + 'Zend_Db_Statement_Db2' => dirname(__FILE__) . '/Zend/Db/Statement/Db2.php', + 'Zend_Db_Statement_Exception' => dirname(__FILE__) . '/Zend/Db/Statement/Exception.php', + 'Zend_Db_Statement_Interface' => dirname(__FILE__) . '/Zend/Db/Statement/Interface.php', + 'Zend_Db_Statement_Mysqli_Exception' => dirname(__FILE__) . '/Zend/Db/Statement/Mysqli/Exception.php', + 'Zend_Db_Statement_Mysqli' => dirname(__FILE__) . '/Zend/Db/Statement/Mysqli.php', + 'Zend_Db_Statement_Oracle_Exception' => dirname(__FILE__) . '/Zend/Db/Statement/Oracle/Exception.php', + 'Zend_Db_Statement_Oracle' => dirname(__FILE__) . '/Zend/Db/Statement/Oracle.php', + 'Zend_Db_Statement_Pdo_Ibm' => dirname(__FILE__) . '/Zend/Db/Statement/Pdo/Ibm.php', + 'Zend_Db_Statement_Pdo_Oci' => dirname(__FILE__) . '/Zend/Db/Statement/Pdo/Oci.php', + 'Zend_Db_Statement_Pdo' => dirname(__FILE__) . '/Zend/Db/Statement/Pdo.php', + 'Zend_Db_Statement_Sqlsrv_Exception' => dirname(__FILE__) . '/Zend/Db/Statement/Sqlsrv/Exception.php', + 'Zend_Db_Statement_Sqlsrv' => dirname(__FILE__) . '/Zend/Db/Statement/Sqlsrv.php', + 'Zend_Db_Statement' => dirname(__FILE__) . '/Zend/Db/Statement.php', + 'Zend_Db_Table_Abstract' => dirname(__FILE__) . '/Zend/Db/Table/Abstract.php', + 'Zend_Db_Table_Definition' => dirname(__FILE__) . '/Zend/Db/Table/Definition.php', + 'Zend_Db_Table_Exception' => dirname(__FILE__) . '/Zend/Db/Table/Exception.php', + 'Zend_Db_Table_Row_Abstract' => dirname(__FILE__) . '/Zend/Db/Table/Row/Abstract.php', + 'Zend_Db_Table_Row_Exception' => dirname(__FILE__) . '/Zend/Db/Table/Row/Exception.php', + 'Zend_Db_Table_Row' => dirname(__FILE__) . '/Zend/Db/Table/Row.php', + 'Zend_Db_Table_Rowset_Abstract' => dirname(__FILE__) . '/Zend/Db/Table/Rowset/Abstract.php', + 'Zend_Db_Table_Rowset_Exception' => dirname(__FILE__) . '/Zend/Db/Table/Rowset/Exception.php', + 'Zend_Db_Table_Rowset' => dirname(__FILE__) . '/Zend/Db/Table/Rowset.php', + 'Zend_Db_Table_Select_Exception' => dirname(__FILE__) . '/Zend/Db/Table/Select/Exception.php', + 'Zend_Db_Table_Select' => dirname(__FILE__) . '/Zend/Db/Table/Select.php', + 'Zend_Db_Table' => dirname(__FILE__) . '/Zend/Db/Table.php', + 'Zend_Db' => dirname(__FILE__) . '/Zend/Db.php', + 'Zend_Debug' => dirname(__FILE__) . '/Zend/Debug.php', + 'Zend_Dojo_BuildLayer' => dirname(__FILE__) . '/Zend/Dojo/BuildLayer.php', + 'Zend_Dojo_Data' => dirname(__FILE__) . '/Zend/Dojo/Data.php', + 'Zend_Dojo_Exception' => dirname(__FILE__) . '/Zend/Dojo/Exception.php', + 'Zend_Dojo_Form_Decorator_AccordionContainer' => dirname(__FILE__) . '/Zend/Dojo/Form/Decorator/AccordionContainer.php', + 'Zend_Dojo_Form_Decorator_AccordionPane' => dirname(__FILE__) . '/Zend/Dojo/Form/Decorator/AccordionPane.php', + 'Zend_Dojo_Form_Decorator_BorderContainer' => dirname(__FILE__) . '/Zend/Dojo/Form/Decorator/BorderContainer.php', + 'Zend_Dojo_Form_Decorator_ContentPane' => dirname(__FILE__) . '/Zend/Dojo/Form/Decorator/ContentPane.php', + 'Zend_Dojo_Form_Decorator_DijitContainer' => dirname(__FILE__) . '/Zend/Dojo/Form/Decorator/DijitContainer.php', + 'Zend_Dojo_Form_Decorator_DijitElement' => dirname(__FILE__) . '/Zend/Dojo/Form/Decorator/DijitElement.php', + 'Zend_Dojo_Form_Decorator_DijitForm' => dirname(__FILE__) . '/Zend/Dojo/Form/Decorator/DijitForm.php', + 'Zend_Dojo_Form_Decorator_SplitContainer' => dirname(__FILE__) . '/Zend/Dojo/Form/Decorator/SplitContainer.php', + 'Zend_Dojo_Form_Decorator_StackContainer' => dirname(__FILE__) . '/Zend/Dojo/Form/Decorator/StackContainer.php', + 'Zend_Dojo_Form_Decorator_TabContainer' => dirname(__FILE__) . '/Zend/Dojo/Form/Decorator/TabContainer.php', + 'Zend_Dojo_Form_DisplayGroup' => dirname(__FILE__) . '/Zend/Dojo/Form/DisplayGroup.php', + 'Zend_Dojo_Form_Element_Button' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/Button.php', + 'Zend_Dojo_Form_Element_CheckBox' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/CheckBox.php', + 'Zend_Dojo_Form_Element_ComboBox' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/ComboBox.php', + 'Zend_Dojo_Form_Element_CurrencyTextBox' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/CurrencyTextBox.php', + 'Zend_Dojo_Form_Element_DateTextBox' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/DateTextBox.php', + 'Zend_Dojo_Form_Element_Dijit' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/Dijit.php', + 'Zend_Dojo_Form_Element_DijitMulti' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/DijitMulti.php', + 'Zend_Dojo_Form_Element_Editor' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/Editor.php', + 'Zend_Dojo_Form_Element_FilteringSelect' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/FilteringSelect.php', + 'Zend_Dojo_Form_Element_HorizontalSlider' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/HorizontalSlider.php', + 'Zend_Dojo_Form_Element_NumberSpinner' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/NumberSpinner.php', + 'Zend_Dojo_Form_Element_NumberTextBox' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/NumberTextBox.php', + 'Zend_Dojo_Form_Element_PasswordTextBox' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/PasswordTextBox.php', + 'Zend_Dojo_Form_Element_RadioButton' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/RadioButton.php', + 'Zend_Dojo_Form_Element_SimpleTextarea' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/SimpleTextarea.php', + 'Zend_Dojo_Form_Element_Slider' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/Slider.php', + 'Zend_Dojo_Form_Element_SubmitButton' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/SubmitButton.php', + 'Zend_Dojo_Form_Element_Textarea' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/Textarea.php', + 'Zend_Dojo_Form_Element_TextBox' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/TextBox.php', + 'Zend_Dojo_Form_Element_TimeTextBox' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/TimeTextBox.php', + 'Zend_Dojo_Form_Element_ValidationTextBox' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/ValidationTextBox.php', + 'Zend_Dojo_Form_Element_VerticalSlider' => dirname(__FILE__) . '/Zend/Dojo/Form/Element/VerticalSlider.php', + 'Zend_Dojo_Form_SubForm' => dirname(__FILE__) . '/Zend/Dojo/Form/SubForm.php', + 'Zend_Dojo_Form' => dirname(__FILE__) . '/Zend/Dojo/Form.php', + 'Zend_Dojo_View_Exception' => dirname(__FILE__) . '/Zend/Dojo/View/Exception.php', + 'Zend_Dojo_View_Helper_AccordionContainer' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/AccordionContainer.php', + 'Zend_Dojo_View_Helper_AccordionPane' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/AccordionPane.php', + 'Zend_Dojo_View_Helper_BorderContainer' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/BorderContainer.php', + 'Zend_Dojo_View_Helper_Button' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/Button.php', + 'Zend_Dojo_View_Helper_CheckBox' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/CheckBox.php', + 'Zend_Dojo_View_Helper_ComboBox' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/ComboBox.php', + 'Zend_Dojo_View_Helper_ContentPane' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/ContentPane.php', + 'Zend_Dojo_View_Helper_CurrencyTextBox' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/CurrencyTextBox.php', + 'Zend_Dojo_View_Helper_CustomDijit' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/CustomDijit.php', + 'Zend_Dojo_View_Helper_DateTextBox' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/DateTextBox.php', + 'Zend_Dojo_View_Helper_Dijit' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/Dijit.php', + 'Zend_Dojo_View_Helper_DijitContainer' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/DijitContainer.php', + 'Zend_Dojo_View_Helper_Dojo_Container' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/Dojo/Container.php', + 'Zend_Dojo_View_Helper_Dojo' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/Dojo.php', + 'Zend_Dojo_View_Helper_Editor' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/Editor.php', + 'Zend_Dojo_View_Helper_FilteringSelect' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/FilteringSelect.php', + 'Zend_Dojo_View_Helper_Form' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/Form.php', + 'Zend_Dojo_View_Helper_HorizontalSlider' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/HorizontalSlider.php', + 'Zend_Dojo_View_Helper_NumberSpinner' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/NumberSpinner.php', + 'Zend_Dojo_View_Helper_NumberTextBox' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/NumberTextBox.php', + 'Zend_Dojo_View_Helper_PasswordTextBox' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/PasswordTextBox.php', + 'Zend_Dojo_View_Helper_RadioButton' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/RadioButton.php', + 'Zend_Dojo_View_Helper_SimpleTextarea' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/SimpleTextarea.php', + 'Zend_Dojo_View_Helper_Slider' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/Slider.php', + 'Zend_Dojo_View_Helper_SplitContainer' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/SplitContainer.php', + 'Zend_Dojo_View_Helper_StackContainer' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/StackContainer.php', + 'Zend_Dojo_View_Helper_SubmitButton' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/SubmitButton.php', + 'Zend_Dojo_View_Helper_TabContainer' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/TabContainer.php', + 'Zend_Dojo_View_Helper_Textarea' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/Textarea.php', + 'Zend_Dojo_View_Helper_TextBox' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/TextBox.php', + 'Zend_Dojo_View_Helper_TimeTextBox' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/TimeTextBox.php', + 'Zend_Dojo_View_Helper_ValidationTextBox' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/ValidationTextBox.php', + 'Zend_Dojo_View_Helper_VerticalSlider' => dirname(__FILE__) . '/Zend/Dojo/View/Helper/VerticalSlider.php', + 'Zend_Dojo' => dirname(__FILE__) . '/Zend/Dojo.php', + 'Zend_Dom_Exception' => dirname(__FILE__) . '/Zend/Dom/Exception.php', + 'Zend_Dom_Query_Css2Xpath' => dirname(__FILE__) . '/Zend/Dom/Query/Css2Xpath.php', + 'Zend_Dom_Query_Result' => dirname(__FILE__) . '/Zend/Dom/Query/Result.php', + 'Zend_Dom_Query' => dirname(__FILE__) . '/Zend/Dom/Query.php', + 'Zend_EventManager_Event' => dirname(__FILE__) . '/Zend/EventManager/Event.php', + 'Zend_EventManager_EventCollection' => dirname(__FILE__) . '/Zend/EventManager/EventCollection.php', + 'Zend_EventManager_EventDescription' => dirname(__FILE__) . '/Zend/EventManager/EventDescription.php', + 'Zend_EventManager_EventManager' => dirname(__FILE__) . '/Zend/EventManager/EventManager.php', + 'Zend_EventManager_EventManagerAware' => dirname(__FILE__) . '/Zend/EventManager/EventManagerAware.php', + 'Zend_EventManager_Exception_InvalidArgumentException' => dirname(__FILE__) . '/Zend/EventManager/Exception/InvalidArgumentException.php', + 'Zend_EventManager_Exception' => dirname(__FILE__) . '/Zend/EventManager/Exception.php', + 'Zend_EventManager_Filter_FilterIterator' => dirname(__FILE__) . '/Zend/EventManager/Filter/FilterIterator.php', + 'Zend_EventManager_Filter' => dirname(__FILE__) . '/Zend/EventManager/Filter.php', + 'Zend_EventManager_FilterChain' => dirname(__FILE__) . '/Zend/EventManager/FilterChain.php', + 'Zend_EventManager_GlobalEventManager' => dirname(__FILE__) . '/Zend/EventManager/GlobalEventManager.php', + 'Zend_EventManager_ListenerAggregate' => dirname(__FILE__) . '/Zend/EventManager/ListenerAggregate.php', + 'SplStack' => dirname(__FILE__) . '/Zend/EventManager/ResponseCollection.php', + 'Zend_EventManager_ResponseCollection' => dirname(__FILE__) . '/Zend/EventManager/ResponseCollection.php', + 'Zend_EventManager_SharedEventCollection' => dirname(__FILE__) . '/Zend/EventManager/SharedEventCollection.php', + 'Zend_EventManager_SharedEventCollectionAware' => dirname(__FILE__) . '/Zend/EventManager/SharedEventCollectionAware.php', + 'Zend_EventManager_SharedEventManager' => dirname(__FILE__) . '/Zend/EventManager/SharedEventManager.php', + 'Zend_EventManager_StaticEventManager' => dirname(__FILE__) . '/Zend/EventManager/StaticEventManager.php', + 'Zend_Exception' => dirname(__FILE__) . '/Zend/Exception.php', + 'Zend_Feed_Abstract' => dirname(__FILE__) . '/Zend/Feed/Abstract.php', + 'Zend_Feed_Atom' => dirname(__FILE__) . '/Zend/Feed/Atom.php', + 'Zend_Feed_Builder_Entry' => dirname(__FILE__) . '/Zend/Feed/Builder/Entry.php', + 'Zend_Feed_Builder_Exception' => dirname(__FILE__) . '/Zend/Feed/Builder/Exception.php', + 'Zend_Feed_Builder_Header_Itunes' => dirname(__FILE__) . '/Zend/Feed/Builder/Header/Itunes.php', + 'Zend_Feed_Builder_Header' => dirname(__FILE__) . '/Zend/Feed/Builder/Header.php', + 'Zend_Feed_Builder_Interface' => dirname(__FILE__) . '/Zend/Feed/Builder/Interface.php', + 'Zend_Feed_Builder' => dirname(__FILE__) . '/Zend/Feed/Builder.php', + 'Zend_Feed_Element' => dirname(__FILE__) . '/Zend/Feed/Element.php', + 'Zend_Feed_Entry_Abstract' => dirname(__FILE__) . '/Zend/Feed/Entry/Abstract.php', + 'Zend_Feed_Entry_Atom' => dirname(__FILE__) . '/Zend/Feed/Entry/Atom.php', + 'Zend_Feed_Entry_Rss' => dirname(__FILE__) . '/Zend/Feed/Entry/Rss.php', + 'Zend_Feed_Exception' => dirname(__FILE__) . '/Zend/Feed/Exception.php', + 'Zend_Feed_Pubsubhubbub_CallbackAbstract' => dirname(__FILE__) . '/Zend/Feed/Pubsubhubbub/CallbackAbstract.php', + 'Zend_Feed_Pubsubhubbub_CallbackInterface' => dirname(__FILE__) . '/Zend/Feed/Pubsubhubbub/CallbackInterface.php', + 'Zend_Feed_Pubsubhubbub_Exception' => dirname(__FILE__) . '/Zend/Feed/Pubsubhubbub/Exception.php', + 'Zend_Feed_Pubsubhubbub_HttpResponse' => dirname(__FILE__) . '/Zend/Feed/Pubsubhubbub/HttpResponse.php', + 'Zend_Feed_Pubsubhubbub_Model_ModelAbstract' => dirname(__FILE__) . '/Zend/Feed/Pubsubhubbub/Model/ModelAbstract.php', + 'Zend_Feed_Pubsubhubbub_Model_Subscription' => dirname(__FILE__) . '/Zend/Feed/Pubsubhubbub/Model/Subscription.php', + 'Zend_Feed_Pubsubhubbub_Model_SubscriptionInterface' => dirname(__FILE__) . '/Zend/Feed/Pubsubhubbub/Model/SubscriptionInterface.php', + 'Zend_Feed_Pubsubhubbub_Publisher' => dirname(__FILE__) . '/Zend/Feed/Pubsubhubbub/Publisher.php', + 'Zend_Feed_Pubsubhubbub_Subscriber_Callback' => dirname(__FILE__) . '/Zend/Feed/Pubsubhubbub/Subscriber/Callback.php', + 'Zend_Feed_Pubsubhubbub_Subscriber' => dirname(__FILE__) . '/Zend/Feed/Pubsubhubbub/Subscriber.php', + 'Zend_Feed_Pubsubhubbub' => dirname(__FILE__) . '/Zend/Feed/Pubsubhubbub.php', + 'Zend_Feed_Reader_Collection_Author' => dirname(__FILE__) . '/Zend/Feed/Reader/Collection/Author.php', + 'Zend_Feed_Reader_Collection_Category' => dirname(__FILE__) . '/Zend/Feed/Reader/Collection/Category.php', + 'Zend_Feed_Reader_Collection_CollectionAbstract' => dirname(__FILE__) . '/Zend/Feed/Reader/Collection/CollectionAbstract.php', + 'Zend_Feed_Reader_Collection' => dirname(__FILE__) . '/Zend/Feed/Reader/Collection.php', + 'Zend_Feed_Reader_Entry_Atom' => dirname(__FILE__) . '/Zend/Feed/Reader/Entry/Atom.php', + 'Zend_Feed_Reader_Entry_Rss' => dirname(__FILE__) . '/Zend/Feed/Reader/Entry/Rss.php', + 'Zend_Feed_Reader_EntryAbstract' => dirname(__FILE__) . '/Zend/Feed/Reader/EntryAbstract.php', + 'Zend_Feed_Reader_EntryInterface' => dirname(__FILE__) . '/Zend/Feed/Reader/EntryInterface.php', + 'Zend_Feed_Reader_Extension_Atom_Entry' => dirname(__FILE__) . '/Zend/Feed/Reader/Extension/Atom/Entry.php', + 'Zend_Feed_Reader_Extension_Atom_Feed' => dirname(__FILE__) . '/Zend/Feed/Reader/Extension/Atom/Feed.php', + 'Zend_Feed_Reader_Extension_Content_Entry' => dirname(__FILE__) . '/Zend/Feed/Reader/Extension/Content/Entry.php', + 'Zend_Feed_Reader_Extension_CreativeCommons_Entry' => dirname(__FILE__) . '/Zend/Feed/Reader/Extension/CreativeCommons/Entry.php', + 'Zend_Feed_Reader_Extension_CreativeCommons_Feed' => dirname(__FILE__) . '/Zend/Feed/Reader/Extension/CreativeCommons/Feed.php', + 'Zend_Feed_Reader_Extension_DublinCore_Entry' => dirname(__FILE__) . '/Zend/Feed/Reader/Extension/DublinCore/Entry.php', + 'Zend_Feed_Reader_Extension_DublinCore_Feed' => dirname(__FILE__) . '/Zend/Feed/Reader/Extension/DublinCore/Feed.php', + 'Zend_Feed_Reader_Extension_EntryAbstract' => dirname(__FILE__) . '/Zend/Feed/Reader/Extension/EntryAbstract.php', + 'Zend_Feed_Reader_Extension_FeedAbstract' => dirname(__FILE__) . '/Zend/Feed/Reader/Extension/FeedAbstract.php', + 'Zend_Feed_Reader_Extension_Podcast_Entry' => dirname(__FILE__) . '/Zend/Feed/Reader/Extension/Podcast/Entry.php', + 'Zend_Feed_Reader_Extension_Podcast_Feed' => dirname(__FILE__) . '/Zend/Feed/Reader/Extension/Podcast/Feed.php', + 'Zend_Feed_Reader_Extension_Slash_Entry' => dirname(__FILE__) . '/Zend/Feed/Reader/Extension/Slash/Entry.php', + 'Zend_Feed_Reader_Extension_Syndication_Feed' => dirname(__FILE__) . '/Zend/Feed/Reader/Extension/Syndication/Feed.php', + 'Zend_Feed_Reader_Extension_Thread_Entry' => dirname(__FILE__) . '/Zend/Feed/Reader/Extension/Thread/Entry.php', + 'Zend_Feed_Reader_Extension_WellFormedWeb_Entry' => dirname(__FILE__) . '/Zend/Feed/Reader/Extension/WellFormedWeb/Entry.php', + 'Zend_Feed_Reader_Feed_Atom_Source' => dirname(__FILE__) . '/Zend/Feed/Reader/Feed/Atom/Source.php', + 'Zend_Feed_Reader_Feed_Atom' => dirname(__FILE__) . '/Zend/Feed/Reader/Feed/Atom.php', + 'Zend_Feed_Reader_Feed_Rss' => dirname(__FILE__) . '/Zend/Feed/Reader/Feed/Rss.php', + 'Zend_Feed_Reader_FeedAbstract' => dirname(__FILE__) . '/Zend/Feed/Reader/FeedAbstract.php', + 'Zend_Feed_Reader_FeedInterface' => dirname(__FILE__) . '/Zend/Feed/Reader/FeedInterface.php', + 'Zend_Feed_Reader_FeedSet' => dirname(__FILE__) . '/Zend/Feed/Reader/FeedSet.php', + 'Zend_Feed_Reader' => dirname(__FILE__) . '/Zend/Feed/Reader.php', + 'Zend_Feed_Rss' => dirname(__FILE__) . '/Zend/Feed/Rss.php', + 'Zend_Feed_Writer_Deleted' => dirname(__FILE__) . '/Zend/Feed/Writer/Deleted.php', + 'Zend_Feed_Writer_Entry' => dirname(__FILE__) . '/Zend/Feed/Writer/Entry.php', + 'Zend_Feed_Writer_Exception_InvalidMethodException' => dirname(__FILE__) . '/Zend/Feed/Writer/Exception/InvalidMethodException.php', + 'Zend_Feed_Writer_Extension_Atom_Renderer_Feed' => dirname(__FILE__) . '/Zend/Feed/Writer/Extension/Atom/Renderer/Feed.php', + 'Zend_Feed_Writer_Extension_Content_Renderer_Entry' => dirname(__FILE__) . '/Zend/Feed/Writer/Extension/Content/Renderer/Entry.php', + 'Zend_Feed_Writer_Extension_DublinCore_Renderer_Entry' => dirname(__FILE__) . '/Zend/Feed/Writer/Extension/DublinCore/Renderer/Entry.php', + 'Zend_Feed_Writer_Extension_DublinCore_Renderer_Feed' => dirname(__FILE__) . '/Zend/Feed/Writer/Extension/DublinCore/Renderer/Feed.php', + 'Zend_Feed_Writer_Extension_ITunes_Entry' => dirname(__FILE__) . '/Zend/Feed/Writer/Extension/ITunes/Entry.php', + 'Zend_Feed_Writer_Extension_ITunes_Feed' => dirname(__FILE__) . '/Zend/Feed/Writer/Extension/ITunes/Feed.php', + 'Zend_Feed_Writer_Extension_ITunes_Renderer_Entry' => dirname(__FILE__) . '/Zend/Feed/Writer/Extension/ITunes/Renderer/Entry.php', + 'Zend_Feed_Writer_Extension_ITunes_Renderer_Feed' => dirname(__FILE__) . '/Zend/Feed/Writer/Extension/ITunes/Renderer/Feed.php', + 'Zend_Feed_Writer_Extension_RendererAbstract' => dirname(__FILE__) . '/Zend/Feed/Writer/Extension/RendererAbstract.php', + 'Zend_Feed_Writer_Extension_RendererInterface' => dirname(__FILE__) . '/Zend/Feed/Writer/Extension/RendererInterface.php', + 'Zend_Feed_Writer_Extension_Slash_Renderer_Entry' => dirname(__FILE__) . '/Zend/Feed/Writer/Extension/Slash/Renderer/Entry.php', + 'Zend_Feed_Writer_Extension_Threading_Renderer_Entry' => dirname(__FILE__) . '/Zend/Feed/Writer/Extension/Threading/Renderer/Entry.php', + 'Zend_Feed_Writer_Extension_WellFormedWeb_Renderer_Entry' => dirname(__FILE__) . '/Zend/Feed/Writer/Extension/WellFormedWeb/Renderer/Entry.php', + 'Zend_Feed_Writer_Feed_FeedAbstract' => dirname(__FILE__) . '/Zend/Feed/Writer/Feed/FeedAbstract.php', + 'Zend_Feed_Writer_Feed' => dirname(__FILE__) . '/Zend/Feed/Writer/Feed.php', + 'Zend_Feed_Writer_Renderer_Entry_Atom_Deleted' => dirname(__FILE__) . '/Zend/Feed/Writer/Renderer/Entry/Atom/Deleted.php', + 'Zend_Feed_Writer_Renderer_Entry_Atom' => dirname(__FILE__) . '/Zend/Feed/Writer/Renderer/Entry/Atom.php', + 'Zend_Feed_Writer_Renderer_Entry_Rss' => dirname(__FILE__) . '/Zend/Feed/Writer/Renderer/Entry/Rss.php', + 'Zend_Feed_Writer_Renderer_Feed_Atom_AtomAbstract' => dirname(__FILE__) . '/Zend/Feed/Writer/Renderer/Feed/Atom/AtomAbstract.php', + 'Zend_Feed_Writer_Renderer_Feed_Atom_Source' => dirname(__FILE__) . '/Zend/Feed/Writer/Renderer/Feed/Atom/Source.php', + 'Zend_Feed_Writer_Renderer_Feed_Atom' => dirname(__FILE__) . '/Zend/Feed/Writer/Renderer/Feed/Atom.php', + 'Zend_Feed_Writer_Renderer_Feed_Rss' => dirname(__FILE__) . '/Zend/Feed/Writer/Renderer/Feed/Rss.php', + 'Zend_Feed_Writer_Renderer_RendererAbstract' => dirname(__FILE__) . '/Zend/Feed/Writer/Renderer/RendererAbstract.php', + 'Zend_Feed_Writer_Renderer_RendererInterface' => dirname(__FILE__) . '/Zend/Feed/Writer/Renderer/RendererInterface.php', + 'Zend_Feed_Writer_Source' => dirname(__FILE__) . '/Zend/Feed/Writer/Source.php', + 'Zend_Feed_Writer' => dirname(__FILE__) . '/Zend/Feed/Writer.php', + 'Zend_Feed' => dirname(__FILE__) . '/Zend/Feed.php', + 'Zend_File_ClassFileLocator' => dirname(__FILE__) . '/Zend/File/ClassFileLocator.php', + 'Zend_File_PhpClassFile' => dirname(__FILE__) . '/Zend/File/PhpClassFile.php', + 'Zend_File_Transfer_Adapter_Abstract' => dirname(__FILE__) . '/Zend/File/Transfer/Adapter/Abstract.php', + 'Zend_File_Transfer_Adapter_Http' => dirname(__FILE__) . '/Zend/File/Transfer/Adapter/Http.php', + 'Zend_File_Transfer_Exception' => dirname(__FILE__) . '/Zend/File/Transfer/Exception.php', + 'Zend_File_Transfer' => dirname(__FILE__) . '/Zend/File/Transfer.php', + 'Zend_Filter_Alnum' => dirname(__FILE__) . '/Zend/Filter/Alnum.php', + 'Zend_Filter_Alpha' => dirname(__FILE__) . '/Zend/Filter/Alpha.php', + 'Zend_Filter_BaseName' => dirname(__FILE__) . '/Zend/Filter/BaseName.php', + 'Zend_Filter_Boolean' => dirname(__FILE__) . '/Zend/Filter/Boolean.php', + 'Zend_Filter_Callback' => dirname(__FILE__) . '/Zend/Filter/Callback.php', + 'Zend_Filter_Compress_Bz2' => dirname(__FILE__) . '/Zend/Filter/Compress/Bz2.php', + 'Zend_Filter_Compress_CompressAbstract' => dirname(__FILE__) . '/Zend/Filter/Compress/CompressAbstract.php', + 'Zend_Filter_Compress_CompressInterface' => dirname(__FILE__) . '/Zend/Filter/Compress/CompressInterface.php', + 'Zend_Filter_Compress_Gz' => dirname(__FILE__) . '/Zend/Filter/Compress/Gz.php', + 'Zend_Filter_Compress_Lzf' => dirname(__FILE__) . '/Zend/Filter/Compress/Lzf.php', + 'Zend_Filter_Compress_Rar' => dirname(__FILE__) . '/Zend/Filter/Compress/Rar.php', + 'Zend_Filter_Compress_Tar' => dirname(__FILE__) . '/Zend/Filter/Compress/Tar.php', + 'Zend_Filter_Compress_Zip' => dirname(__FILE__) . '/Zend/Filter/Compress/Zip.php', + 'Zend_Filter_Compress' => dirname(__FILE__) . '/Zend/Filter/Compress.php', + 'Zend_Filter_Decompress' => dirname(__FILE__) . '/Zend/Filter/Decompress.php', + 'Zend_Filter_Decrypt' => dirname(__FILE__) . '/Zend/Filter/Decrypt.php', + 'Zend_Filter_Digits' => dirname(__FILE__) . '/Zend/Filter/Digits.php', + 'Zend_Filter_Dir' => dirname(__FILE__) . '/Zend/Filter/Dir.php', + 'Zend_Filter_Encrypt_Interface' => dirname(__FILE__) . '/Zend/Filter/Encrypt/Interface.php', + 'Zend_Filter_Encrypt_Mcrypt' => dirname(__FILE__) . '/Zend/Filter/Encrypt/Mcrypt.php', + 'Zend_Filter_Encrypt_Openssl' => dirname(__FILE__) . '/Zend/Filter/Encrypt/Openssl.php', + 'Zend_Filter_Encrypt' => dirname(__FILE__) . '/Zend/Filter/Encrypt.php', + 'Zend_Filter_Exception' => dirname(__FILE__) . '/Zend/Filter/Exception.php', + 'Zend_Filter_File_Decrypt' => dirname(__FILE__) . '/Zend/Filter/File/Decrypt.php', + 'Zend_Filter_File_Encrypt' => dirname(__FILE__) . '/Zend/Filter/File/Encrypt.php', + 'Zend_Filter_File_LowerCase' => dirname(__FILE__) . '/Zend/Filter/File/LowerCase.php', + 'Zend_Filter_File_Rename' => dirname(__FILE__) . '/Zend/Filter/File/Rename.php', + 'Zend_Filter_File_UpperCase' => dirname(__FILE__) . '/Zend/Filter/File/UpperCase.php', + 'Zend_Filter_HtmlEntities' => dirname(__FILE__) . '/Zend/Filter/HtmlEntities.php', + 'Zend_Filter_Inflector' => dirname(__FILE__) . '/Zend/Filter/Inflector.php', + 'Zend_Filter_Input' => dirname(__FILE__) . '/Zend/Filter/Input.php', + 'Zend_Filter_Int' => dirname(__FILE__) . '/Zend/Filter/Int.php', + 'Zend_Filter_Interface' => dirname(__FILE__) . '/Zend/Filter/Interface.php', + 'Zend_Filter_LocalizedToNormalized' => dirname(__FILE__) . '/Zend/Filter/LocalizedToNormalized.php', + 'Zend_Filter_NormalizedToLocalized' => dirname(__FILE__) . '/Zend/Filter/NormalizedToLocalized.php', + 'Zend_Filter_Null' => dirname(__FILE__) . '/Zend/Filter/Null.php', + 'Zend_Filter_PregReplace' => dirname(__FILE__) . '/Zend/Filter/PregReplace.php', + 'Zend_Filter_RealPath' => dirname(__FILE__) . '/Zend/Filter/RealPath.php', + 'Zend_Filter_StringToLower' => dirname(__FILE__) . '/Zend/Filter/StringToLower.php', + 'Zend_Filter_StringToUpper' => dirname(__FILE__) . '/Zend/Filter/StringToUpper.php', + 'Zend_Filter_StringTrim' => dirname(__FILE__) . '/Zend/Filter/StringTrim.php', + 'Zend_Filter_StripNewlines' => dirname(__FILE__) . '/Zend/Filter/StripNewlines.php', + 'Zend_Filter_StripTags' => dirname(__FILE__) . '/Zend/Filter/StripTags.php', + 'Zend_Filter_Word_CamelCaseToDash' => dirname(__FILE__) . '/Zend/Filter/Word/CamelCaseToDash.php', + 'Zend_Filter_Word_CamelCaseToSeparator' => dirname(__FILE__) . '/Zend/Filter/Word/CamelCaseToSeparator.php', + 'Zend_Filter_Word_CamelCaseToUnderscore' => dirname(__FILE__) . '/Zend/Filter/Word/CamelCaseToUnderscore.php', + 'Zend_Filter_Word_DashToCamelCase' => dirname(__FILE__) . '/Zend/Filter/Word/DashToCamelCase.php', + 'Zend_Filter_Word_DashToSeparator' => dirname(__FILE__) . '/Zend/Filter/Word/DashToSeparator.php', + 'Zend_Filter_Word_DashToUnderscore' => dirname(__FILE__) . '/Zend/Filter/Word/DashToUnderscore.php', + 'Zend_Filter_Word_Separator_Abstract' => dirname(__FILE__) . '/Zend/Filter/Word/Separator/Abstract.php', + 'Zend_Filter_Word_SeparatorToCamelCase' => dirname(__FILE__) . '/Zend/Filter/Word/SeparatorToCamelCase.php', + 'Zend_Filter_Word_SeparatorToDash' => dirname(__FILE__) . '/Zend/Filter/Word/SeparatorToDash.php', + 'Zend_Filter_Word_SeparatorToSeparator' => dirname(__FILE__) . '/Zend/Filter/Word/SeparatorToSeparator.php', + 'Zend_Filter_Word_UnderscoreToCamelCase' => dirname(__FILE__) . '/Zend/Filter/Word/UnderscoreToCamelCase.php', + 'Zend_Filter_Word_UnderscoreToDash' => dirname(__FILE__) . '/Zend/Filter/Word/UnderscoreToDash.php', + 'Zend_Filter_Word_UnderscoreToSeparator' => dirname(__FILE__) . '/Zend/Filter/Word/UnderscoreToSeparator.php', + 'Zend_Filter' => dirname(__FILE__) . '/Zend/Filter.php', + 'Zend_Form_Decorator_Abstract' => dirname(__FILE__) . '/Zend/Form/Decorator/Abstract.php', + 'Zend_Form_Decorator_Callback' => dirname(__FILE__) . '/Zend/Form/Decorator/Callback.php', + 'Zend_Form_Decorator_Captcha_ReCaptcha' => dirname(__FILE__) . '/Zend/Form/Decorator/Captcha/ReCaptcha.php', + 'Zend_Form_Decorator_Captcha_Word' => dirname(__FILE__) . '/Zend/Form/Decorator/Captcha/Word.php', + 'Zend_Form_Decorator_Captcha' => dirname(__FILE__) . '/Zend/Form/Decorator/Captcha.php', + 'Zend_Form_Decorator_Description' => dirname(__FILE__) . '/Zend/Form/Decorator/Description.php', + 'Zend_Form_Decorator_DtDdWrapper' => dirname(__FILE__) . '/Zend/Form/Decorator/DtDdWrapper.php', + 'Zend_Form_Decorator_Errors' => dirname(__FILE__) . '/Zend/Form/Decorator/Errors.php', + 'Zend_Form_Decorator_Exception' => dirname(__FILE__) . '/Zend/Form/Decorator/Exception.php', + 'Zend_Form_Decorator_Fieldset' => dirname(__FILE__) . '/Zend/Form/Decorator/Fieldset.php', + 'Zend_Form_Decorator_File' => dirname(__FILE__) . '/Zend/Form/Decorator/File.php', + 'Zend_Form_Decorator_Form' => dirname(__FILE__) . '/Zend/Form/Decorator/Form.php', + 'Zend_Form_Decorator_FormElements' => dirname(__FILE__) . '/Zend/Form/Decorator/FormElements.php', + 'Zend_Form_Decorator_FormErrors' => dirname(__FILE__) . '/Zend/Form/Decorator/FormErrors.php', + 'Zend_Form_Decorator_HtmlTag' => dirname(__FILE__) . '/Zend/Form/Decorator/HtmlTag.php', + 'Zend_Form_Decorator_Image' => dirname(__FILE__) . '/Zend/Form/Decorator/Image.php', + 'Zend_Form_Decorator_Interface' => dirname(__FILE__) . '/Zend/Form/Decorator/Interface.php', + 'Zend_Form_Decorator_Label' => dirname(__FILE__) . '/Zend/Form/Decorator/Label.php', + 'Zend_Form_Decorator_Marker_File_Interface' => dirname(__FILE__) . '/Zend/Form/Decorator/Marker/File/Interface.php', + 'Zend_Form_Decorator_PrepareElements' => dirname(__FILE__) . '/Zend/Form/Decorator/PrepareElements.php', + 'Zend_Form_Decorator_Tooltip' => dirname(__FILE__) . '/Zend/Form/Decorator/Tooltip.php', + 'Zend_Form_Decorator_ViewHelper' => dirname(__FILE__) . '/Zend/Form/Decorator/ViewHelper.php', + 'Zend_Form_Decorator_ViewScript' => dirname(__FILE__) . '/Zend/Form/Decorator/ViewScript.php', + 'Zend_Form_DisplayGroup' => dirname(__FILE__) . '/Zend/Form/DisplayGroup.php', + 'Zend_Form_Element_Button' => dirname(__FILE__) . '/Zend/Form/Element/Button.php', + 'Zend_Form_Element_Captcha' => dirname(__FILE__) . '/Zend/Form/Element/Captcha.php', + 'Zend_Form_Element_Checkbox' => dirname(__FILE__) . '/Zend/Form/Element/Checkbox.php', + 'Zend_Form_Element_Exception' => dirname(__FILE__) . '/Zend/Form/Element/Exception.php', + 'Zend_Form_Element_File' => dirname(__FILE__) . '/Zend/Form/Element/File.php', + 'Zend_Form_Element_Hash' => dirname(__FILE__) . '/Zend/Form/Element/Hash.php', + 'Zend_Form_Element_Hidden' => dirname(__FILE__) . '/Zend/Form/Element/Hidden.php', + 'Zend_Form_Element_Image' => dirname(__FILE__) . '/Zend/Form/Element/Image.php', + 'Zend_Form_Element_Multi' => dirname(__FILE__) . '/Zend/Form/Element/Multi.php', + 'Zend_Form_Element_MultiCheckbox' => dirname(__FILE__) . '/Zend/Form/Element/MultiCheckbox.php', + 'Zend_Form_Element_Multiselect' => dirname(__FILE__) . '/Zend/Form/Element/Multiselect.php', + 'Zend_Form_Element_Note' => dirname(__FILE__) . '/Zend/Form/Element/Note.php', + 'Zend_Form_Element_Password' => dirname(__FILE__) . '/Zend/Form/Element/Password.php', + 'Zend_Form_Element_Radio' => dirname(__FILE__) . '/Zend/Form/Element/Radio.php', + 'Zend_Form_Element_Reset' => dirname(__FILE__) . '/Zend/Form/Element/Reset.php', + 'Zend_Form_Element_Select' => dirname(__FILE__) . '/Zend/Form/Element/Select.php', + 'Zend_Form_Element_Submit' => dirname(__FILE__) . '/Zend/Form/Element/Submit.php', + 'Zend_Form_Element_Text' => dirname(__FILE__) . '/Zend/Form/Element/Text.php', + 'Zend_Form_Element_Textarea' => dirname(__FILE__) . '/Zend/Form/Element/Textarea.php', + 'Zend_Form_Element_Xhtml' => dirname(__FILE__) . '/Zend/Form/Element/Xhtml.php', + 'Zend_Form_Element' => dirname(__FILE__) . '/Zend/Form/Element.php', + 'Zend_Form_Exception' => dirname(__FILE__) . '/Zend/Form/Exception.php', + 'Zend_Form_SubForm' => dirname(__FILE__) . '/Zend/Form/SubForm.php', + 'Zend_Form' => dirname(__FILE__) . '/Zend/Form.php', + 'Zend_Gdata_Analytics_AccountEntry' => dirname(__FILE__) . '/Zend/Gdata/Analytics/AccountEntry.php', + 'Zend_Gdata_Analytics_AccountFeed' => dirname(__FILE__) . '/Zend/Gdata/Analytics/AccountFeed.php', + 'Zend_Gdata_Analytics_AccountQuery' => dirname(__FILE__) . '/Zend/Gdata/Analytics/AccountQuery.php', + 'Zend_Gdata_Analytics_DataEntry' => dirname(__FILE__) . '/Zend/Gdata/Analytics/DataEntry.php', + 'Zend_Gdata_Analytics_DataFeed' => dirname(__FILE__) . '/Zend/Gdata/Analytics/DataFeed.php', + 'Zend_Gdata_Analytics_DataQuery' => dirname(__FILE__) . '/Zend/Gdata/Analytics/DataQuery.php', + 'Zend_Gdata_Analytics_Extension_Dimension' => dirname(__FILE__) . '/Zend/Gdata/Analytics/Extension/Dimension.php', + 'Zend_Gdata_Analytics_Goal' => dirname(__FILE__) . '/Zend/Gdata/Analytics/Extension/Goal.php', + 'Zend_Gdata_Analytics_Extension_Metric' => dirname(__FILE__) . '/Zend/Gdata/Analytics/Extension/Metric.php', + 'Zend_Gdata_Analytics_Extension_Property' => dirname(__FILE__) . '/Zend/Gdata/Analytics/Extension/Property.php', + 'Zend_Gdata_Analytics_Extension_TableId' => dirname(__FILE__) . '/Zend/Gdata/Analytics/Extension/TableId.php', + 'Zend_Gdata_Analytics' => dirname(__FILE__) . '/Zend/Gdata/Analytics.php', + 'Zend_Gdata_App_AuthException' => dirname(__FILE__) . '/Zend/Gdata/App/AuthException.php', + 'Zend_Gdata_App_BadMethodCallException' => dirname(__FILE__) . '/Zend/Gdata/App/BadMethodCallException.php', + 'Zend_Gdata_App_Base' => dirname(__FILE__) . '/Zend/Gdata/App/Base.php', + 'Zend_Gdata_App_BaseMediaSource' => dirname(__FILE__) . '/Zend/Gdata/App/BaseMediaSource.php', + 'Zend_Gdata_App_CaptchaRequiredException' => dirname(__FILE__) . '/Zend/Gdata/App/CaptchaRequiredException.php', + 'Zend_Gdata_App_Entry' => dirname(__FILE__) . '/Zend/Gdata/App/Entry.php', + 'Zend_Gdata_App_Exception' => dirname(__FILE__) . '/Zend/Gdata/App/Exception.php', + 'Zend_Gdata_App_Extension_Author' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Author.php', + 'Zend_Gdata_App_Extension_Category' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Category.php', + 'Zend_Gdata_App_Extension_Content' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Content.php', + 'Zend_Gdata_App_Extension_Contributor' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Contributor.php', + 'Zend_Gdata_App_Extension_Control' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Control.php', + 'Zend_Gdata_App_Extension_Draft' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Draft.php', + 'Zend_Gdata_App_Extension_Edited' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Edited.php', + 'Zend_Gdata_App_Extension_Element' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Element.php', + 'Zend_Gdata_App_Extension_Email' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Email.php', + 'Zend_Gdata_App_Extension_Generator' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Generator.php', + 'Zend_Gdata_App_Extension_Icon' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Icon.php', + 'Zend_Gdata_App_Extension_Id' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Id.php', + 'Zend_Gdata_App_Extension_Link' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Link.php', + 'Zend_Gdata_App_Extension_Logo' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Logo.php', + 'Zend_Gdata_App_Extension_Name' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Name.php', + 'Zend_Gdata_App_Extension_Person' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Person.php', + 'Zend_Gdata_App_Extension_Published' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Published.php', + 'Zend_Gdata_App_Extension_Rights' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Rights.php', + 'Zend_Gdata_App_Extension_Source' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Source.php', + 'Zend_Gdata_App_Extension_Subtitle' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Subtitle.php', + 'Zend_Gdata_App_Extension_Summary' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Summary.php', + 'Zend_Gdata_App_Extension_Text' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Text.php', + 'Zend_Gdata_App_Extension_Title' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Title.php', + 'Zend_Gdata_App_Extension_Updated' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Updated.php', + 'Zend_Gdata_App_Extension_Uri' => dirname(__FILE__) . '/Zend/Gdata/App/Extension/Uri.php', + 'Zend_Gdata_App_Extension' => dirname(__FILE__) . '/Zend/Gdata/App/Extension.php', + 'Zend_Gdata_App_Feed' => dirname(__FILE__) . '/Zend/Gdata/App/Feed.php', + 'Zend_Gdata_App_FeedEntryParent' => dirname(__FILE__) . '/Zend/Gdata/App/FeedEntryParent.php', + 'Zend_Gdata_App_FeedSourceParent' => dirname(__FILE__) . '/Zend/Gdata/App/FeedSourceParent.php', + 'Zend_Gdata_App_HttpException' => dirname(__FILE__) . '/Zend/Gdata/App/HttpException.php', + 'Zend_Gdata_App_InvalidArgumentException' => dirname(__FILE__) . '/Zend/Gdata/App/InvalidArgumentException.php', + 'Zend_Gdata_App_IOException' => dirname(__FILE__) . '/Zend/Gdata/App/IOException.php', + 'Zend_Gdata_App_LoggingHttpClientAdapterSocket' => dirname(__FILE__) . '/Zend/Gdata/App/LoggingHttpClientAdapterSocket.php', + 'Zend_Gdata_App_MediaEntry' => dirname(__FILE__) . '/Zend/Gdata/App/MediaEntry.php', + 'Zend_Gdata_App_MediaFileSource' => dirname(__FILE__) . '/Zend/Gdata/App/MediaFileSource.php', + 'Zend_Gdata_App_MediaSource' => dirname(__FILE__) . '/Zend/Gdata/App/MediaSource.php', + 'Zend_Gdata_App_Util' => dirname(__FILE__) . '/Zend/Gdata/App/Util.php', + 'Zend_Gdata_App_VersionException' => dirname(__FILE__) . '/Zend/Gdata/App/VersionException.php', + 'Zend_Gdata_App' => dirname(__FILE__) . '/Zend/Gdata/App.php', + 'Zend_Gdata_AuthSub' => dirname(__FILE__) . '/Zend/Gdata/AuthSub.php', + 'Zend_Gdata_Books_CollectionEntry' => dirname(__FILE__) . '/Zend/Gdata/Books/CollectionEntry.php', + 'Zend_Gdata_Books_CollectionFeed' => dirname(__FILE__) . '/Zend/Gdata/Books/CollectionFeed.php', + 'Zend_Gdata_Books_Extension_AnnotationLink' => dirname(__FILE__) . '/Zend/Gdata/Books/Extension/AnnotationLink.php', + 'Zend_Gdata_Books_Extension_BooksCategory' => dirname(__FILE__) . '/Zend/Gdata/Books/Extension/BooksCategory.php', + 'Zend_Gdata_Books_Extension_BooksLink' => dirname(__FILE__) . '/Zend/Gdata/Books/Extension/BooksLink.php', + 'Zend_Gdata_Books_Extension_Embeddability' => dirname(__FILE__) . '/Zend/Gdata/Books/Extension/Embeddability.php', + 'Zend_Gdata_Books_Extension_InfoLink' => dirname(__FILE__) . '/Zend/Gdata/Books/Extension/InfoLink.php', + 'Zend_Gdata_Books_Extension_PreviewLink' => dirname(__FILE__) . '/Zend/Gdata/Books/Extension/PreviewLink.php', + 'Zend_Gdata_Books_Extension_Review' => dirname(__FILE__) . '/Zend/Gdata/Books/Extension/Review.php', + 'Zend_Gdata_Books_Extension_ThumbnailLink' => dirname(__FILE__) . '/Zend/Gdata/Books/Extension/ThumbnailLink.php', + 'Zend_Gdata_Books_Extension_Viewability' => dirname(__FILE__) . '/Zend/Gdata/Books/Extension/Viewability.php', + 'Zend_Gdata_Books_VolumeEntry' => dirname(__FILE__) . '/Zend/Gdata/Books/VolumeEntry.php', + 'Zend_Gdata_Books_VolumeFeed' => dirname(__FILE__) . '/Zend/Gdata/Books/VolumeFeed.php', + 'Zend_Gdata_Books_VolumeQuery' => dirname(__FILE__) . '/Zend/Gdata/Books/VolumeQuery.php', + 'Zend_Gdata_Books' => dirname(__FILE__) . '/Zend/Gdata/Books.php', + 'Zend_Gdata_Calendar_EventEntry' => dirname(__FILE__) . '/Zend/Gdata/Calendar/EventEntry.php', + 'Zend_Gdata_Calendar_EventFeed' => dirname(__FILE__) . '/Zend/Gdata/Calendar/EventFeed.php', + 'Zend_Gdata_Calendar_EventQuery' => dirname(__FILE__) . '/Zend/Gdata/Calendar/EventQuery.php', + 'Zend_Gdata_Calendar_Extension_AccessLevel' => dirname(__FILE__) . '/Zend/Gdata/Calendar/Extension/AccessLevel.php', + 'Zend_Gdata_Calendar_Extension_Color' => dirname(__FILE__) . '/Zend/Gdata/Calendar/Extension/Color.php', + 'Zend_Gdata_Calendar_Extension_Hidden' => dirname(__FILE__) . '/Zend/Gdata/Calendar/Extension/Hidden.php', + 'Zend_Gdata_Calendar_Extension_Link' => dirname(__FILE__) . '/Zend/Gdata/Calendar/Extension/Link.php', + 'Zend_Gdata_Calendar_Extension_QuickAdd' => dirname(__FILE__) . '/Zend/Gdata/Calendar/Extension/QuickAdd.php', + 'Zend_Gdata_Calendar_Extension_Selected' => dirname(__FILE__) . '/Zend/Gdata/Calendar/Extension/Selected.php', + 'Zend_Gdata_Calendar_Extension_SendEventNotifications' => dirname(__FILE__) . '/Zend/Gdata/Calendar/Extension/SendEventNotifications.php', + 'Zend_Gdata_Calendar_Extension_Timezone' => dirname(__FILE__) . '/Zend/Gdata/Calendar/Extension/Timezone.php', + 'Zend_Gdata_Calendar_Extension_WebContent' => dirname(__FILE__) . '/Zend/Gdata/Calendar/Extension/WebContent.php', + 'Zend_Gdata_Calendar_ListEntry' => dirname(__FILE__) . '/Zend/Gdata/Calendar/ListEntry.php', + 'Zend_Gdata_Calendar_ListFeed' => dirname(__FILE__) . '/Zend/Gdata/Calendar/ListFeed.php', + 'Zend_Gdata_Calendar' => dirname(__FILE__) . '/Zend/Gdata/Calendar.php', + 'Zend_Gdata_ClientLogin' => dirname(__FILE__) . '/Zend/Gdata/ClientLogin.php', + 'Zend_Gdata_Docs_DocumentListEntry' => dirname(__FILE__) . '/Zend/Gdata/Docs/DocumentListEntry.php', + 'Zend_Gdata_Docs_DocumentListFeed' => dirname(__FILE__) . '/Zend/Gdata/Docs/DocumentListFeed.php', + 'Zend_Gdata_Docs_Query' => dirname(__FILE__) . '/Zend/Gdata/Docs/Query.php', + 'Zend_Gdata_Docs' => dirname(__FILE__) . '/Zend/Gdata/Docs.php', + 'Zend_Gdata_DublinCore_Extension_Creator' => dirname(__FILE__) . '/Zend/Gdata/DublinCore/Extension/Creator.php', + 'Zend_Gdata_DublinCore_Extension_Date' => dirname(__FILE__) . '/Zend/Gdata/DublinCore/Extension/Date.php', + 'Zend_Gdata_DublinCore_Extension_Description' => dirname(__FILE__) . '/Zend/Gdata/DublinCore/Extension/Description.php', + 'Zend_Gdata_DublinCore_Extension_Format' => dirname(__FILE__) . '/Zend/Gdata/DublinCore/Extension/Format.php', + 'Zend_Gdata_DublinCore_Extension_Identifier' => dirname(__FILE__) . '/Zend/Gdata/DublinCore/Extension/Identifier.php', + 'Zend_Gdata_DublinCore_Extension_Language' => dirname(__FILE__) . '/Zend/Gdata/DublinCore/Extension/Language.php', + 'Zend_Gdata_DublinCore_Extension_Publisher' => dirname(__FILE__) . '/Zend/Gdata/DublinCore/Extension/Publisher.php', + 'Zend_Gdata_DublinCore_Extension_Rights' => dirname(__FILE__) . '/Zend/Gdata/DublinCore/Extension/Rights.php', + 'Zend_Gdata_DublinCore_Extension_Subject' => dirname(__FILE__) . '/Zend/Gdata/DublinCore/Extension/Subject.php', + 'Zend_Gdata_DublinCore_Extension_Title' => dirname(__FILE__) . '/Zend/Gdata/DublinCore/Extension/Title.php', + 'Zend_Gdata_DublinCore' => dirname(__FILE__) . '/Zend/Gdata/DublinCore.php', + 'Zend_Gdata_Entry' => dirname(__FILE__) . '/Zend/Gdata/Entry.php', + 'Zend_Gdata_Exif_Entry' => dirname(__FILE__) . '/Zend/Gdata/Exif/Entry.php', + 'Zend_Gdata_Exif_Extension_Distance' => dirname(__FILE__) . '/Zend/Gdata/Exif/Extension/Distance.php', + 'Zend_Gdata_Exif_Extension_Exposure' => dirname(__FILE__) . '/Zend/Gdata/Exif/Extension/Exposure.php', + 'Zend_Gdata_Exif_Extension_Flash' => dirname(__FILE__) . '/Zend/Gdata/Exif/Extension/Flash.php', + 'Zend_Gdata_Exif_Extension_FocalLength' => dirname(__FILE__) . '/Zend/Gdata/Exif/Extension/FocalLength.php', + 'Zend_Gdata_Exif_Extension_FStop' => dirname(__FILE__) . '/Zend/Gdata/Exif/Extension/FStop.php', + 'Zend_Gdata_Exif_Extension_ImageUniqueId' => dirname(__FILE__) . '/Zend/Gdata/Exif/Extension/ImageUniqueId.php', + 'Zend_Gdata_Exif_Extension_Iso' => dirname(__FILE__) . '/Zend/Gdata/Exif/Extension/Iso.php', + 'Zend_Gdata_Exif_Extension_Make' => dirname(__FILE__) . '/Zend/Gdata/Exif/Extension/Make.php', + 'Zend_Gdata_Exif_Extension_Model' => dirname(__FILE__) . '/Zend/Gdata/Exif/Extension/Model.php', + 'Zend_Gdata_Exif_Extension_Tags' => dirname(__FILE__) . '/Zend/Gdata/Exif/Extension/Tags.php', + 'Zend_Gdata_Exif_Extension_Time' => dirname(__FILE__) . '/Zend/Gdata/Exif/Extension/Time.php', + 'Zend_Gdata_Exif_Feed' => dirname(__FILE__) . '/Zend/Gdata/Exif/Feed.php', + 'Zend_Gdata_Exif' => dirname(__FILE__) . '/Zend/Gdata/Exif.php', + 'Zend_Gdata_Extension_AttendeeStatus' => dirname(__FILE__) . '/Zend/Gdata/Extension/AttendeeStatus.php', + 'Zend_Gdata_Extension_AttendeeType' => dirname(__FILE__) . '/Zend/Gdata/Extension/AttendeeType.php', + 'Zend_Gdata_Extension_Comments' => dirname(__FILE__) . '/Zend/Gdata/Extension/Comments.php', + 'Zend_Gdata_Extension_EntryLink' => dirname(__FILE__) . '/Zend/Gdata/Extension/EntryLink.php', + 'Zend_Gdata_Extension_EventStatus' => dirname(__FILE__) . '/Zend/Gdata/Extension/EventStatus.php', + 'Zend_Gdata_Extension_ExtendedProperty' => dirname(__FILE__) . '/Zend/Gdata/Extension/ExtendedProperty.php', + 'Zend_Gdata_Extension_FeedLink' => dirname(__FILE__) . '/Zend/Gdata/Extension/FeedLink.php', + 'Zend_Gdata_Extension_OpenSearchItemsPerPage' => dirname(__FILE__) . '/Zend/Gdata/Extension/OpenSearchItemsPerPage.php', + 'Zend_Gdata_Extension_OpenSearchStartIndex' => dirname(__FILE__) . '/Zend/Gdata/Extension/OpenSearchStartIndex.php', + 'Zend_Gdata_Extension_OpenSearchTotalResults' => dirname(__FILE__) . '/Zend/Gdata/Extension/OpenSearchTotalResults.php', + 'Zend_Gdata_Extension_OriginalEvent' => dirname(__FILE__) . '/Zend/Gdata/Extension/OriginalEvent.php', + 'Zend_Gdata_Extension_Rating' => dirname(__FILE__) . '/Zend/Gdata/Extension/Rating.php', + 'Zend_Gdata_Extension_Recurrence' => dirname(__FILE__) . '/Zend/Gdata/Extension/Recurrence.php', + 'Zend_Gdata_Extension_RecurrenceException' => dirname(__FILE__) . '/Zend/Gdata/Extension/RecurrenceException.php', + 'Zend_Gdata_Extension_Reminder' => dirname(__FILE__) . '/Zend/Gdata/Extension/Reminder.php', + 'Zend_Gdata_Extension_Transparency' => dirname(__FILE__) . '/Zend/Gdata/Extension/Transparency.php', + 'Zend_Gdata_Extension_Visibility' => dirname(__FILE__) . '/Zend/Gdata/Extension/Visibility.php', + 'Zend_Gdata_Extension_When' => dirname(__FILE__) . '/Zend/Gdata/Extension/When.php', + 'Zend_Gdata_Extension_Where' => dirname(__FILE__) . '/Zend/Gdata/Extension/Where.php', + 'Zend_Gdata_Extension_Who' => dirname(__FILE__) . '/Zend/Gdata/Extension/Who.php', + 'Zend_Gdata_Extension' => dirname(__FILE__) . '/Zend/Gdata/Extension.php', + 'Zend_Gdata_Feed' => dirname(__FILE__) . '/Zend/Gdata/Feed.php', + 'Zend_Gdata_Gapps_EmailListEntry' => dirname(__FILE__) . '/Zend/Gdata/Gapps/EmailListEntry.php', + 'Zend_Gdata_Gapps_EmailListFeed' => dirname(__FILE__) . '/Zend/Gdata/Gapps/EmailListFeed.php', + 'Zend_Gdata_Gapps_EmailListQuery' => dirname(__FILE__) . '/Zend/Gdata/Gapps/EmailListQuery.php', + 'Zend_Gdata_Gapps_EmailListRecipientEntry' => dirname(__FILE__) . '/Zend/Gdata/Gapps/EmailListRecipientEntry.php', + 'Zend_Gdata_Gapps_EmailListRecipientFeed' => dirname(__FILE__) . '/Zend/Gdata/Gapps/EmailListRecipientFeed.php', + 'Zend_Gdata_Gapps_EmailListRecipientQuery' => dirname(__FILE__) . '/Zend/Gdata/Gapps/EmailListRecipientQuery.php', + 'Zend_Gdata_Gapps_Error' => dirname(__FILE__) . '/Zend/Gdata/Gapps/Error.php', + 'Zend_Gdata_Gapps_Extension_EmailList' => dirname(__FILE__) . '/Zend/Gdata/Gapps/Extension/EmailList.php', + 'Zend_Gdata_Gapps_Extension_Login' => dirname(__FILE__) . '/Zend/Gdata/Gapps/Extension/Login.php', + 'Zend_Gdata_Gapps_Extension_Name' => dirname(__FILE__) . '/Zend/Gdata/Gapps/Extension/Name.php', + 'Zend_Gdata_Gapps_Extension_Nickname' => dirname(__FILE__) . '/Zend/Gdata/Gapps/Extension/Nickname.php', + 'Zend_Gdata_Gapps_Extension_Property' => dirname(__FILE__) . '/Zend/Gdata/Gapps/Extension/Property.php', + 'Zend_Gdata_Gapps_Extension_Quota' => dirname(__FILE__) . '/Zend/Gdata/Gapps/Extension/Quota.php', + 'Zend_Gdata_Gapps_GroupEntry' => dirname(__FILE__) . '/Zend/Gdata/Gapps/GroupEntry.php', + 'Zend_Gdata_Gapps_GroupFeed' => dirname(__FILE__) . '/Zend/Gdata/Gapps/GroupFeed.php', + 'Zend_Gdata_Gapps_GroupQuery' => dirname(__FILE__) . '/Zend/Gdata/Gapps/GroupQuery.php', + 'Zend_Gdata_Gapps_MemberEntry' => dirname(__FILE__) . '/Zend/Gdata/Gapps/MemberEntry.php', + 'Zend_Gdata_Gapps_MemberFeed' => dirname(__FILE__) . '/Zend/Gdata/Gapps/MemberFeed.php', + 'Zend_Gdata_Gapps_MemberQuery' => dirname(__FILE__) . '/Zend/Gdata/Gapps/MemberQuery.php', + 'Zend_Gdata_Gapps_NicknameEntry' => dirname(__FILE__) . '/Zend/Gdata/Gapps/NicknameEntry.php', + 'Zend_Gdata_Gapps_NicknameFeed' => dirname(__FILE__) . '/Zend/Gdata/Gapps/NicknameFeed.php', + 'Zend_Gdata_Gapps_NicknameQuery' => dirname(__FILE__) . '/Zend/Gdata/Gapps/NicknameQuery.php', + 'Zend_Gdata_Gapps_OwnerEntry' => dirname(__FILE__) . '/Zend/Gdata/Gapps/OwnerEntry.php', + 'Zend_Gdata_Gapps_OwnerFeed' => dirname(__FILE__) . '/Zend/Gdata/Gapps/OwnerFeed.php', + 'Zend_Gdata_Gapps_OwnerQuery' => dirname(__FILE__) . '/Zend/Gdata/Gapps/OwnerQuery.php', + 'Zend_Gdata_Gapps_Query' => dirname(__FILE__) . '/Zend/Gdata/Gapps/Query.php', + 'Zend_Gdata_Gapps_ServiceException' => dirname(__FILE__) . '/Zend/Gdata/Gapps/ServiceException.php', + 'Zend_Gdata_Gapps_UserEntry' => dirname(__FILE__) . '/Zend/Gdata/Gapps/UserEntry.php', + 'Zend_Gdata_Gapps_UserFeed' => dirname(__FILE__) . '/Zend/Gdata/Gapps/UserFeed.php', + 'Zend_Gdata_Gapps_UserQuery' => dirname(__FILE__) . '/Zend/Gdata/Gapps/UserQuery.php', + 'Zend_Gdata_Gapps' => dirname(__FILE__) . '/Zend/Gdata/Gapps.php', + 'Zend_Gdata_Gbase_Entry' => dirname(__FILE__) . '/Zend/Gdata/Gbase/Entry.php', + 'Zend_Gdata_Gbase_Extension_BaseAttribute' => dirname(__FILE__) . '/Zend/Gdata/Gbase/Extension/BaseAttribute.php', + 'Zend_Gdata_Gbase_Feed' => dirname(__FILE__) . '/Zend/Gdata/Gbase/Feed.php', + 'Zend_Gdata_Gbase_ItemEntry' => dirname(__FILE__) . '/Zend/Gdata/Gbase/ItemEntry.php', + 'Zend_Gdata_Gbase_ItemFeed' => dirname(__FILE__) . '/Zend/Gdata/Gbase/ItemFeed.php', + 'Zend_Gdata_Gbase_ItemQuery' => dirname(__FILE__) . '/Zend/Gdata/Gbase/ItemQuery.php', + 'Zend_Gdata_Gbase_Query' => dirname(__FILE__) . '/Zend/Gdata/Gbase/Query.php', + 'Zend_Gdata_Gbase_SnippetEntry' => dirname(__FILE__) . '/Zend/Gdata/Gbase/SnippetEntry.php', + 'Zend_Gdata_Gbase_SnippetFeed' => dirname(__FILE__) . '/Zend/Gdata/Gbase/SnippetFeed.php', + 'Zend_Gdata_Gbase_SnippetQuery' => dirname(__FILE__) . '/Zend/Gdata/Gbase/SnippetQuery.php', + 'Zend_Gdata_Gbase' => dirname(__FILE__) . '/Zend/Gdata/Gbase.php', + 'Zend_Gdata_Geo_Entry' => dirname(__FILE__) . '/Zend/Gdata/Geo/Entry.php', + 'Zend_Gdata_Geo_Extension_GeoRssWhere' => dirname(__FILE__) . '/Zend/Gdata/Geo/Extension/GeoRssWhere.php', + 'Zend_Gdata_Geo_Extension_GmlPoint' => dirname(__FILE__) . '/Zend/Gdata/Geo/Extension/GmlPoint.php', + 'Zend_Gdata_Geo_Extension_GmlPos' => dirname(__FILE__) . '/Zend/Gdata/Geo/Extension/GmlPos.php', + 'Zend_Gdata_Geo_Feed' => dirname(__FILE__) . '/Zend/Gdata/Geo/Feed.php', + 'Zend_Gdata_Geo' => dirname(__FILE__) . '/Zend/Gdata/Geo.php', + 'Zend_Gdata_Health_Extension_Ccr' => dirname(__FILE__) . '/Zend/Gdata/Health/Extension/Ccr.php', + 'Zend_Gdata_Health_ProfileEntry' => dirname(__FILE__) . '/Zend/Gdata/Health/ProfileEntry.php', + 'Zend_Gdata_Health_ProfileFeed' => dirname(__FILE__) . '/Zend/Gdata/Health/ProfileFeed.php', + 'Zend_Gdata_Health_ProfileListEntry' => dirname(__FILE__) . '/Zend/Gdata/Health/ProfileListEntry.php', + 'Zend_Gdata_Health_ProfileListFeed' => dirname(__FILE__) . '/Zend/Gdata/Health/ProfileListFeed.php', + 'Zend_Gdata_Health_Query' => dirname(__FILE__) . '/Zend/Gdata/Health/Query.php', + 'Zend_Gdata_Health' => dirname(__FILE__) . '/Zend/Gdata/Health.php', + 'Zend_Gdata_HttpAdapterStreamingProxy' => dirname(__FILE__) . '/Zend/Gdata/HttpAdapterStreamingProxy.php', + 'Zend_Gdata_HttpAdapterStreamingSocket' => dirname(__FILE__) . '/Zend/Gdata/HttpAdapterStreamingSocket.php', + 'Zend_Gdata_HttpClient' => dirname(__FILE__) . '/Zend/Gdata/HttpClient.php', + 'Zend_Gdata_Kind_EventEntry' => dirname(__FILE__) . '/Zend/Gdata/Kind/EventEntry.php', + 'Zend_Gdata_Media_Entry' => dirname(__FILE__) . '/Zend/Gdata/Media/Entry.php', + 'Zend_Gdata_Media_Extension_MediaCategory' => dirname(__FILE__) . '/Zend/Gdata/Media/Extension/MediaCategory.php', + 'Zend_Gdata_Media_Extension_MediaContent' => dirname(__FILE__) . '/Zend/Gdata/Media/Extension/MediaContent.php', + 'Zend_Gdata_Media_Extension_MediaCopyright' => dirname(__FILE__) . '/Zend/Gdata/Media/Extension/MediaCopyright.php', + 'Zend_Gdata_Media_Extension_MediaCredit' => dirname(__FILE__) . '/Zend/Gdata/Media/Extension/MediaCredit.php', + 'Zend_Gdata_Media_Extension_MediaDescription' => dirname(__FILE__) . '/Zend/Gdata/Media/Extension/MediaDescription.php', + 'Zend_Gdata_Media_Extension_MediaGroup' => dirname(__FILE__) . '/Zend/Gdata/Media/Extension/MediaGroup.php', + 'Zend_Gdata_Media_Extension_MediaHash' => dirname(__FILE__) . '/Zend/Gdata/Media/Extension/MediaHash.php', + 'Zend_Gdata_Media_Extension_MediaKeywords' => dirname(__FILE__) . '/Zend/Gdata/Media/Extension/MediaKeywords.php', + 'Zend_Gdata_Media_Extension_MediaPlayer' => dirname(__FILE__) . '/Zend/Gdata/Media/Extension/MediaPlayer.php', + 'Zend_Gdata_Media_Extension_MediaRating' => dirname(__FILE__) . '/Zend/Gdata/Media/Extension/MediaRating.php', + 'Zend_Gdata_Media_Extension_MediaRestriction' => dirname(__FILE__) . '/Zend/Gdata/Media/Extension/MediaRestriction.php', + 'Zend_Gdata_Media_Extension_MediaText' => dirname(__FILE__) . '/Zend/Gdata/Media/Extension/MediaText.php', + 'Zend_Gdata_Media_Extension_MediaThumbnail' => dirname(__FILE__) . '/Zend/Gdata/Media/Extension/MediaThumbnail.php', + 'Zend_Gdata_Media_Extension_MediaTitle' => dirname(__FILE__) . '/Zend/Gdata/Media/Extension/MediaTitle.php', + 'Zend_Gdata_Media_Feed' => dirname(__FILE__) . '/Zend/Gdata/Media/Feed.php', + 'Zend_Gdata_Media' => dirname(__FILE__) . '/Zend/Gdata/Media.php', + 'Zend_Gdata_MediaMimeStream' => dirname(__FILE__) . '/Zend/Gdata/MediaMimeStream.php', + 'Zend_Gdata_MimeBodyString' => dirname(__FILE__) . '/Zend/Gdata/MimeBodyString.php', + 'Zend_Gdata_MimeFile' => dirname(__FILE__) . '/Zend/Gdata/MimeFile.php', + 'Zend_Gdata_Photos_AlbumEntry' => dirname(__FILE__) . '/Zend/Gdata/Photos/AlbumEntry.php', + 'Zend_Gdata_Photos_AlbumFeed' => dirname(__FILE__) . '/Zend/Gdata/Photos/AlbumFeed.php', + 'Zend_Gdata_Photos_AlbumQuery' => dirname(__FILE__) . '/Zend/Gdata/Photos/AlbumQuery.php', + 'Zend_Gdata_Photos_CommentEntry' => dirname(__FILE__) . '/Zend/Gdata/Photos/CommentEntry.php', + 'Zend_Gdata_Photos_Extension_Access' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/Access.php', + 'Zend_Gdata_Photos_Extension_AlbumId' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/AlbumId.php', + 'Zend_Gdata_Photos_Extension_BytesUsed' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/BytesUsed.php', + 'Zend_Gdata_Photos_Extension_Checksum' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/Checksum.php', + 'Zend_Gdata_Photos_Extension_Client' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/Client.php', + 'Zend_Gdata_Photos_Extension_CommentCount' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/CommentCount.php', + 'Zend_Gdata_Photos_Extension_CommentingEnabled' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/CommentingEnabled.php', + 'Zend_Gdata_Photos_Extension_Height' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/Height.php', + 'Zend_Gdata_Photos_Extension_Id' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/Id.php', + 'Zend_Gdata_Photos_Extension_Location' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/Location.php', + 'Zend_Gdata_Photos_Extension_MaxPhotosPerAlbum' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/MaxPhotosPerAlbum.php', + 'Zend_Gdata_Photos_Extension_Name' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/Name.php', + 'Zend_Gdata_Photos_Extension_Nickname' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/Nickname.php', + 'Zend_Gdata_Photos_Extension_NumPhotos' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/NumPhotos.php', + 'Zend_Gdata_Photos_Extension_NumPhotosRemaining' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/NumPhotosRemaining.php', + 'Zend_Gdata_Photos_Extension_PhotoId' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/PhotoId.php', + 'Zend_Gdata_Photos_Extension_Position' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/Position.php', + 'Zend_Gdata_Photos_Extension_QuotaCurrent' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/QuotaCurrent.php', + 'Zend_Gdata_Photos_Extension_QuotaLimit' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/QuotaLimit.php', + 'Zend_Gdata_Photos_Extension_Rotation' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/Rotation.php', + 'Zend_Gdata_Photos_Extension_Size' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/Size.php', + 'Zend_Gdata_Photos_Extension_Thumbnail' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/Thumbnail.php', + 'Zend_Gdata_Photos_Extension_Timestamp' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/Timestamp.php', + 'Zend_Gdata_Photos_Extension_User' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/User.php', + 'Zend_Gdata_Photos_Extension_Version' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/Version.php', + 'Zend_Gdata_Photos_Extension_Weight' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/Weight.php', + 'Zend_Gdata_Photos_Extension_Width' => dirname(__FILE__) . '/Zend/Gdata/Photos/Extension/Width.php', + 'Zend_Gdata_Photos_PhotoEntry' => dirname(__FILE__) . '/Zend/Gdata/Photos/PhotoEntry.php', + 'Zend_Gdata_Photos_PhotoFeed' => dirname(__FILE__) . '/Zend/Gdata/Photos/PhotoFeed.php', + 'Zend_Gdata_Photos_PhotoQuery' => dirname(__FILE__) . '/Zend/Gdata/Photos/PhotoQuery.php', + 'Zend_Gdata_Photos_TagEntry' => dirname(__FILE__) . '/Zend/Gdata/Photos/TagEntry.php', + 'Zend_Gdata_Photos_UserEntry' => dirname(__FILE__) . '/Zend/Gdata/Photos/UserEntry.php', + 'Zend_Gdata_Photos_UserFeed' => dirname(__FILE__) . '/Zend/Gdata/Photos/UserFeed.php', + 'Zend_Gdata_Photos_UserQuery' => dirname(__FILE__) . '/Zend/Gdata/Photos/UserQuery.php', + 'Zend_Gdata_Photos' => dirname(__FILE__) . '/Zend/Gdata/Photos.php', + 'Zend_Gdata_Query' => dirname(__FILE__) . '/Zend/Gdata/Query.php', + 'Zend_Gdata_Spreadsheets_CellEntry' => dirname(__FILE__) . '/Zend/Gdata/Spreadsheets/CellEntry.php', + 'Zend_Gdata_Spreadsheets_CellFeed' => dirname(__FILE__) . '/Zend/Gdata/Spreadsheets/CellFeed.php', + 'Zend_Gdata_Spreadsheets_CellQuery' => dirname(__FILE__) . '/Zend/Gdata/Spreadsheets/CellQuery.php', + 'Zend_Gdata_Spreadsheets_DocumentQuery' => dirname(__FILE__) . '/Zend/Gdata/Spreadsheets/DocumentQuery.php', + 'Zend_Gdata_Spreadsheets_Extension_Cell' => dirname(__FILE__) . '/Zend/Gdata/Spreadsheets/Extension/Cell.php', + 'Zend_Gdata_Spreadsheets_Extension_ColCount' => dirname(__FILE__) . '/Zend/Gdata/Spreadsheets/Extension/ColCount.php', + 'Zend_Gdata_Spreadsheets_Extension_Custom' => dirname(__FILE__) . '/Zend/Gdata/Spreadsheets/Extension/Custom.php', + 'Zend_Gdata_Spreadsheets_Extension_RowCount' => dirname(__FILE__) . '/Zend/Gdata/Spreadsheets/Extension/RowCount.php', + 'Zend_Gdata_Spreadsheets_ListEntry' => dirname(__FILE__) . '/Zend/Gdata/Spreadsheets/ListEntry.php', + 'Zend_Gdata_Spreadsheets_ListFeed' => dirname(__FILE__) . '/Zend/Gdata/Spreadsheets/ListFeed.php', + 'Zend_Gdata_Spreadsheets_ListQuery' => dirname(__FILE__) . '/Zend/Gdata/Spreadsheets/ListQuery.php', + 'Zend_Gdata_Spreadsheets_SpreadsheetEntry' => dirname(__FILE__) . '/Zend/Gdata/Spreadsheets/SpreadsheetEntry.php', + 'Zend_Gdata_Spreadsheets_SpreadsheetFeed' => dirname(__FILE__) . '/Zend/Gdata/Spreadsheets/SpreadsheetFeed.php', + 'Zend_Gdata_Spreadsheets_WorksheetEntry' => dirname(__FILE__) . '/Zend/Gdata/Spreadsheets/WorksheetEntry.php', + 'Zend_Gdata_Spreadsheets_WorksheetFeed' => dirname(__FILE__) . '/Zend/Gdata/Spreadsheets/WorksheetFeed.php', + 'Zend_Gdata_Spreadsheets' => dirname(__FILE__) . '/Zend/Gdata/Spreadsheets.php', + 'Zend_Gdata_YouTube_ActivityEntry' => dirname(__FILE__) . '/Zend/Gdata/YouTube/ActivityEntry.php', + 'Zend_Gdata_YouTube_ActivityFeed' => dirname(__FILE__) . '/Zend/Gdata/YouTube/ActivityFeed.php', + 'Zend_Gdata_YouTube_CommentEntry' => dirname(__FILE__) . '/Zend/Gdata/YouTube/CommentEntry.php', + 'Zend_Gdata_YouTube_CommentFeed' => dirname(__FILE__) . '/Zend/Gdata/YouTube/CommentFeed.php', + 'Zend_Gdata_YouTube_ContactEntry' => dirname(__FILE__) . '/Zend/Gdata/YouTube/ContactEntry.php', + 'Zend_Gdata_YouTube_ContactFeed' => dirname(__FILE__) . '/Zend/Gdata/YouTube/ContactFeed.php', + 'Zend_Gdata_YouTube_Extension_AboutMe' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/AboutMe.php', + 'Zend_Gdata_YouTube_Extension_Age' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Age.php', + 'Zend_Gdata_YouTube_Extension_Books' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Books.php', + 'Zend_Gdata_YouTube_Extension_Company' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Company.php', + 'Zend_Gdata_YouTube_Extension_Control' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Control.php', + 'Zend_Gdata_YouTube_Extension_CountHint' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/CountHint.php', + 'Zend_Gdata_YouTube_Extension_Description' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Description.php', + 'Zend_Gdata_YouTube_Extension_Duration' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Duration.php', + 'Zend_Gdata_YouTube_Extension_FirstName' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/FirstName.php', + 'Zend_Gdata_YouTube_Extension_Gender' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Gender.php', + 'Zend_Gdata_YouTube_Extension_Hobbies' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Hobbies.php', + 'Zend_Gdata_YouTube_Extension_Hometown' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Hometown.php', + 'Zend_Gdata_YouTube_Extension_LastName' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/LastName.php', + 'Zend_Gdata_YouTube_Extension_Link' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Link.php', + 'Zend_Gdata_YouTube_Extension_Location' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Location.php', + 'Zend_Gdata_YouTube_Extension_MediaContent' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/MediaContent.php', + 'Zend_Gdata_YouTube_Extension_MediaCredit' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/MediaCredit.php', + 'Zend_Gdata_YouTube_Extension_MediaGroup' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/MediaGroup.php', + 'Zend_Gdata_YouTube_Extension_MediaRating' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/MediaRating.php', + 'Zend_Gdata_YouTube_Extension_Movies' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Movies.php', + 'Zend_Gdata_YouTube_Extension_Music' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Music.php', + 'Zend_Gdata_YouTube_Extension_NoEmbed' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/NoEmbed.php', + 'Zend_Gdata_YouTube_Extension_Occupation' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Occupation.php', + 'Zend_Gdata_YouTube_Extension_PlaylistId' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/PlaylistId.php', + 'Zend_Gdata_YouTube_Extension_PlaylistTitle' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/PlaylistTitle.php', + 'Zend_Gdata_YouTube_Extension_Position' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Position.php', + 'Zend_Gdata_YouTube_Extension_Private' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Private.php', + 'Zend_Gdata_YouTube_Extension_QueryString' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/QueryString.php', + 'Zend_Gdata_YouTube_Extension_Racy' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Racy.php', + 'Zend_Gdata_YouTube_Extension_Recorded' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Recorded.php', + 'Zend_Gdata_YouTube_Extension_Relationship' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Relationship.php', + 'Zend_Gdata_YouTube_Extension_ReleaseDate' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/ReleaseDate.php', + 'Zend_Gdata_YouTube_Extension_School' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/School.php', + 'Zend_Gdata_YouTube_Extension_State' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/State.php', + 'Zend_Gdata_YouTube_Extension_Statistics' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Statistics.php', + 'Zend_Gdata_YouTube_Extension_Status' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Status.php', + 'Zend_Gdata_YouTube_Extension_Token' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Token.php', + 'Zend_Gdata_YouTube_Extension_Uploaded' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Uploaded.php', + 'Zend_Gdata_YouTube_Extension_Username' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/Username.php', + 'Zend_Gdata_YouTube_Extension_VideoId' => dirname(__FILE__) . '/Zend/Gdata/YouTube/Extension/VideoId.php', + 'Zend_Gdata_YouTube_InboxEntry' => dirname(__FILE__) . '/Zend/Gdata/YouTube/InboxEntry.php', + 'Zend_Gdata_YouTube_InboxFeed' => dirname(__FILE__) . '/Zend/Gdata/YouTube/InboxFeed.php', + 'Zend_Gdata_YouTube_MediaEntry' => dirname(__FILE__) . '/Zend/Gdata/YouTube/MediaEntry.php', + 'Zend_Gdata_YouTube_PlaylistListEntry' => dirname(__FILE__) . '/Zend/Gdata/YouTube/PlaylistListEntry.php', + 'Zend_Gdata_YouTube_PlaylistListFeed' => dirname(__FILE__) . '/Zend/Gdata/YouTube/PlaylistListFeed.php', + 'Zend_Gdata_YouTube_PlaylistVideoEntry' => dirname(__FILE__) . '/Zend/Gdata/YouTube/PlaylistVideoEntry.php', + 'Zend_Gdata_YouTube_PlaylistVideoFeed' => dirname(__FILE__) . '/Zend/Gdata/YouTube/PlaylistVideoFeed.php', + 'Zend_Gdata_YouTube_SubscriptionEntry' => dirname(__FILE__) . '/Zend/Gdata/YouTube/SubscriptionEntry.php', + 'Zend_Gdata_YouTube_SubscriptionFeed' => dirname(__FILE__) . '/Zend/Gdata/YouTube/SubscriptionFeed.php', + 'Zend_Gdata_YouTube_UserProfileEntry' => dirname(__FILE__) . '/Zend/Gdata/YouTube/UserProfileEntry.php', + 'Zend_Gdata_YouTube_VideoEntry' => dirname(__FILE__) . '/Zend/Gdata/YouTube/VideoEntry.php', + 'Zend_Gdata_YouTube_VideoFeed' => dirname(__FILE__) . '/Zend/Gdata/YouTube/VideoFeed.php', + 'Zend_Gdata_YouTube_VideoQuery' => dirname(__FILE__) . '/Zend/Gdata/YouTube/VideoQuery.php', + 'Zend_Gdata_YouTube' => dirname(__FILE__) . '/Zend/Gdata/YouTube.php', + 'Zend_Gdata' => dirname(__FILE__) . '/Zend/Gdata.php', + 'Zend_Http_Client_Adapter_Curl' => dirname(__FILE__) . '/Zend/Http/Client/Adapter/Curl.php', + 'Zend_Http_Client_Adapter_Exception' => dirname(__FILE__) . '/Zend/Http/Client/Adapter/Exception.php', + 'Zend_Http_Client_Adapter_Interface' => dirname(__FILE__) . '/Zend/Http/Client/Adapter/Interface.php', + 'Zend_Http_Client_Adapter_Proxy' => dirname(__FILE__) . '/Zend/Http/Client/Adapter/Proxy.php', + 'Zend_Http_Client_Adapter_Socket' => dirname(__FILE__) . '/Zend/Http/Client/Adapter/Socket.php', + 'Zend_Http_Client_Adapter_Stream' => dirname(__FILE__) . '/Zend/Http/Client/Adapter/Stream.php', + 'Zend_Http_Client_Adapter_Test' => dirname(__FILE__) . '/Zend/Http/Client/Adapter/Test.php', + 'Zend_Http_Client_Exception' => dirname(__FILE__) . '/Zend/Http/Client/Exception.php', + 'Zend_Http_Client' => dirname(__FILE__) . '/Zend/Http/Client.php', + 'Zend_Http_Cookie' => dirname(__FILE__) . '/Zend/Http/Cookie.php', + 'Zend_Http_CookieJar' => dirname(__FILE__) . '/Zend/Http/CookieJar.php', + 'Zend_Http_Exception' => dirname(__FILE__) . '/Zend/Http/Exception.php', + 'Zend_Http_Header_Exception_InvalidArgumentException' => dirname(__FILE__) . '/Zend/Http/Header/Exception/InvalidArgumentException.php', + 'Zend_Http_Header_Exception_RuntimeException' => dirname(__FILE__) . '/Zend/Http/Header/Exception/RuntimeException.php', + 'Zend_Http_Header_SetCookie' => dirname(__FILE__) . '/Zend/Http/Header/SetCookie.php', + 'Zend_Http_Response_Stream' => dirname(__FILE__) . '/Zend/Http/Response/Stream.php', + 'Zend_Http_Response' => dirname(__FILE__) . '/Zend/Http/Response.php', + 'Zend_Http_UserAgent_AbstractDevice' => dirname(__FILE__) . '/Zend/Http/UserAgent/AbstractDevice.php', + 'Zend_Http_UserAgent_Bot' => dirname(__FILE__) . '/Zend/Http/UserAgent/Bot.php', + 'Zend_Http_UserAgent_Checker' => dirname(__FILE__) . '/Zend/Http/UserAgent/Checker.php', + 'Zend_Http_UserAgent_Console' => dirname(__FILE__) . '/Zend/Http/UserAgent/Console.php', + 'Zend_Http_UserAgent_Desktop' => dirname(__FILE__) . '/Zend/Http/UserAgent/Desktop.php', + 'Zend_Http_UserAgent_Device' => dirname(__FILE__) . '/Zend/Http/UserAgent/Device.php', + 'Zend_Http_UserAgent_Email' => dirname(__FILE__) . '/Zend/Http/UserAgent/Email.php', + 'Zend_Http_UserAgent_Exception' => dirname(__FILE__) . '/Zend/Http/UserAgent/Exception.php', + 'Zend_Http_UserAgent_Features_Adapter_Browscap' => dirname(__FILE__) . '/Zend/Http/UserAgent/Features/Adapter/Browscap.php', + 'Zend_Http_UserAgent_Features_Adapter_DeviceAtlas' => dirname(__FILE__) . '/Zend/Http/UserAgent/Features/Adapter/DeviceAtlas.php', + 'Zend_Http_UserAgent_Features_Adapter_TeraWurfl' => dirname(__FILE__) . '/Zend/Http/UserAgent/Features/Adapter/TeraWurfl.php', + 'Zend_Http_UserAgent_Features_Adapter' => dirname(__FILE__) . '/Zend/Http/UserAgent/Features/Adapter.php', + 'Zend_Http_UserAgent_Features_Exception' => dirname(__FILE__) . '/Zend/Http/UserAgent/Features/Exception.php', + 'Zend_Http_UserAgent_Feed' => dirname(__FILE__) . '/Zend/Http/UserAgent/Feed.php', + 'Zend_Http_UserAgent_Mobile' => dirname(__FILE__) . '/Zend/Http/UserAgent/Mobile.php', + 'Zend_Http_UserAgent_Offline' => dirname(__FILE__) . '/Zend/Http/UserAgent/Offline.php', + 'Zend_Http_UserAgent_Probe' => dirname(__FILE__) . '/Zend/Http/UserAgent/Probe.php', + 'Zend_Http_UserAgent_Spam' => dirname(__FILE__) . '/Zend/Http/UserAgent/Spam.php', + 'Zend_Http_UserAgent_Storage_Exception' => dirname(__FILE__) . '/Zend/Http/UserAgent/Storage/Exception.php', + 'Zend_Http_UserAgent_Storage_NonPersistent' => dirname(__FILE__) . '/Zend/Http/UserAgent/Storage/NonPersistent.php', + 'Zend_Http_UserAgent_Storage_Session' => dirname(__FILE__) . '/Zend/Http/UserAgent/Storage/Session.php', + 'Zend_Http_UserAgent_Storage' => dirname(__FILE__) . '/Zend/Http/UserAgent/Storage.php', + 'Zend_Http_UserAgent_Text' => dirname(__FILE__) . '/Zend/Http/UserAgent/Text.php', + 'Zend_Http_UserAgent_Validator' => dirname(__FILE__) . '/Zend/Http/UserAgent/Validator.php', + 'Zend_Http_UserAgent' => dirname(__FILE__) . '/Zend/Http/UserAgent.php', + 'Zend_Json_Decoder' => dirname(__FILE__) . '/Zend/Json/Decoder.php', + 'Zend_Json_Encoder' => dirname(__FILE__) . '/Zend/Json/Encoder.php', + 'Zend_Json_Exception' => dirname(__FILE__) . '/Zend/Json/Exception.php', + 'Zend_Json_Expr' => dirname(__FILE__) . '/Zend/Json/Expr.php', + 'Zend_Json_Server_Cache' => dirname(__FILE__) . '/Zend/Json/Server/Cache.php', + 'Zend_Json_Server_Error' => dirname(__FILE__) . '/Zend/Json/Server/Error.php', + 'Zend_Json_Server_Exception' => dirname(__FILE__) . '/Zend/Json/Server/Exception.php', + 'Zend_Json_Server_Request_Http' => dirname(__FILE__) . '/Zend/Json/Server/Request/Http.php', + 'Zend_Json_Server_Request' => dirname(__FILE__) . '/Zend/Json/Server/Request.php', + 'Zend_Json_Server_Response_Http' => dirname(__FILE__) . '/Zend/Json/Server/Response/Http.php', + 'Zend_Json_Server_Response' => dirname(__FILE__) . '/Zend/Json/Server/Response.php', + 'Zend_Json_Server_Smd_Service' => dirname(__FILE__) . '/Zend/Json/Server/Smd/Service.php', + 'Zend_Json_Server_Smd' => dirname(__FILE__) . '/Zend/Json/Server/Smd.php', + 'Zend_Json_Server' => dirname(__FILE__) . '/Zend/Json/Server.php', + 'Zend_Json' => dirname(__FILE__) . '/Zend/Json.php', + 'Zend_Layout_Controller_Action_Helper_Layout' => dirname(__FILE__) . '/Zend/Layout/Controller/Action/Helper/Layout.php', + 'Zend_Layout_Controller_Plugin_Layout' => dirname(__FILE__) . '/Zend/Layout/Controller/Plugin/Layout.php', + 'Zend_Layout_Exception' => dirname(__FILE__) . '/Zend/Layout/Exception.php', + 'Zend_Layout' => dirname(__FILE__) . '/Zend/Layout.php', + 'Zend_Ldap_Attribute' => dirname(__FILE__) . '/Zend/Ldap/Attribute.php', + 'Zend_Ldap_Collection_Iterator_Default' => dirname(__FILE__) . '/Zend/Ldap/Collection/Iterator/Default.php', + 'Zend_Ldap_Collection' => dirname(__FILE__) . '/Zend/Ldap/Collection.php', + 'Zend_Ldap_Converter_Exception' => dirname(__FILE__) . '/Zend/Ldap/Converter/Exception.php', + 'Zend_Ldap_Converter' => dirname(__FILE__) . '/Zend/Ldap/Converter.php', + 'Zend_Ldap_Dn' => dirname(__FILE__) . '/Zend/Ldap/Dn.php', + 'Zend_Ldap_Exception' => dirname(__FILE__) . '/Zend/Ldap/Exception.php', + 'Zend_Ldap_Filter_Abstract' => dirname(__FILE__) . '/Zend/Ldap/Filter/Abstract.php', + 'Zend_Ldap_Filter_And' => dirname(__FILE__) . '/Zend/Ldap/Filter/And.php', + 'Zend_Ldap_Filter_Exception' => dirname(__FILE__) . '/Zend/Ldap/Filter/Exception.php', + 'Zend_Ldap_Filter_Logical' => dirname(__FILE__) . '/Zend/Ldap/Filter/Logical.php', + 'Zend_Ldap_Filter_Mask' => dirname(__FILE__) . '/Zend/Ldap/Filter/Mask.php', + 'Zend_Ldap_Filter_Not' => dirname(__FILE__) . '/Zend/Ldap/Filter/Not.php', + 'Zend_Ldap_Filter_Or' => dirname(__FILE__) . '/Zend/Ldap/Filter/Or.php', + 'Zend_Ldap_Filter_String' => dirname(__FILE__) . '/Zend/Ldap/Filter/String.php', + 'Zend_Ldap_Filter' => dirname(__FILE__) . '/Zend/Ldap/Filter.php', + 'Zend_Ldap_Ldif_Encoder' => dirname(__FILE__) . '/Zend/Ldap/Ldif/Encoder.php', + 'Zend_Ldap_Node_Abstract' => dirname(__FILE__) . '/Zend/Ldap/Node/Abstract.php', + 'Zend_Ldap_Node_ChildrenIterator' => dirname(__FILE__) . '/Zend/Ldap/Node/ChildrenIterator.php', + 'Zend_Ldap_Node_Collection' => dirname(__FILE__) . '/Zend/Ldap/Node/Collection.php', + 'Zend_Ldap_Node_RootDse_ActiveDirectory' => dirname(__FILE__) . '/Zend/Ldap/Node/RootDse/ActiveDirectory.php', + 'Zend_Ldap_Node_RootDse_eDirectory' => dirname(__FILE__) . '/Zend/Ldap/Node/RootDse/eDirectory.php', + 'Zend_Ldap_Node_RootDse_OpenLdap' => dirname(__FILE__) . '/Zend/Ldap/Node/RootDse/OpenLdap.php', + 'Zend_Ldap_Node_RootDse' => dirname(__FILE__) . '/Zend/Ldap/Node/RootDse.php', + 'Zend_Ldap_Node_Schema_ActiveDirectory' => dirname(__FILE__) . '/Zend/Ldap/Node/Schema/ActiveDirectory.php', + 'Zend_Ldap_Node_Schema_AttributeType_ActiveDirectory' => dirname(__FILE__) . '/Zend/Ldap/Node/Schema/AttributeType/ActiveDirectory.php', + 'Zend_Ldap_Node_Schema_AttributeType_Interface' => dirname(__FILE__) . '/Zend/Ldap/Node/Schema/AttributeType/Interface.php', + 'Zend_Ldap_Node_Schema_AttributeType_OpenLdap' => dirname(__FILE__) . '/Zend/Ldap/Node/Schema/AttributeType/OpenLdap.php', + 'Zend_Ldap_Node_Schema_Item' => dirname(__FILE__) . '/Zend/Ldap/Node/Schema/Item.php', + 'Zend_Ldap_Node_Schema_ObjectClass_ActiveDirectory' => dirname(__FILE__) . '/Zend/Ldap/Node/Schema/ObjectClass/ActiveDirectory.php', + 'Zend_Ldap_Node_Schema_ObjectClass_Interface' => dirname(__FILE__) . '/Zend/Ldap/Node/Schema/ObjectClass/Interface.php', + 'Zend_Ldap_Node_Schema_ObjectClass_OpenLdap' => dirname(__FILE__) . '/Zend/Ldap/Node/Schema/ObjectClass/OpenLdap.php', + 'Zend_Ldap_Node_Schema_OpenLdap' => dirname(__FILE__) . '/Zend/Ldap/Node/Schema/OpenLdap.php', + 'Zend_Ldap_Node_Schema' => dirname(__FILE__) . '/Zend/Ldap/Node/Schema.php', + 'Zend_Ldap_Node' => dirname(__FILE__) . '/Zend/Ldap/Node.php', + 'Zend_Ldap' => dirname(__FILE__) . '/Zend/Ldap.php', + 'Zend_Loader_Autoloader_Interface' => dirname(__FILE__) . '/Zend/Loader/Autoloader/Interface.php', + 'Zend_Loader_Autoloader_Resource' => dirname(__FILE__) . '/Zend/Loader/Autoloader/Resource.php', + 'Zend_Loader_Autoloader' => dirname(__FILE__) . '/Zend/Loader/Autoloader.php', + 'Zend_Loader_AutoloaderFactory' => dirname(__FILE__) . '/Zend/Loader/AutoloaderFactory.php', + 'Zend_Loader_ClassMapAutoloader' => dirname(__FILE__) . '/Zend/Loader/ClassMapAutoloader.php', + 'Zend_Loader_Exception_InvalidArgumentException' => dirname(__FILE__) . '/Zend/Loader/Exception/InvalidArgumentException.php', + 'Zend_Loader_Exception' => dirname(__FILE__) . '/Zend/Loader/Exception.php', + 'Zend_Loader_PluginLoader_Exception' => dirname(__FILE__) . '/Zend/Loader/PluginLoader/Exception.php', + 'Zend_Loader_PluginLoader_Interface' => dirname(__FILE__) . '/Zend/Loader/PluginLoader/Interface.php', + 'Zend_Loader_PluginLoader' => dirname(__FILE__) . '/Zend/Loader/PluginLoader.php', + 'Zend_Loader_SplAutoloader' => dirname(__FILE__) . '/Zend/Loader/SplAutoloader.php', + 'Zend_Loader_StandardAutoloader' => dirname(__FILE__) . '/Zend/Loader/StandardAutoloader.php', + 'Zend_Loader' => dirname(__FILE__) . '/Zend/Loader.php', + 'Zend_Locale_Data_Translation' => dirname(__FILE__) . '/Zend/Locale/Data/Translation.php', + 'Zend_Locale_Data' => dirname(__FILE__) . '/Zend/Locale/Data.php', + 'Zend_Locale_Exception' => dirname(__FILE__) . '/Zend/Locale/Exception.php', + 'Zend_Locale_Format' => dirname(__FILE__) . '/Zend/Locale/Format.php', + 'Zend_Locale_Math_Exception' => dirname(__FILE__) . '/Zend/Locale/Math/Exception.php', + 'Zend_Locale_Math_PhpMath' => dirname(__FILE__) . '/Zend/Locale/Math/PhpMath.php', + 'Zend_Locale_Math' => dirname(__FILE__) . '/Zend/Locale/Math.php', + 'Zend_Locale' => dirname(__FILE__) . '/Zend/Locale.php', + 'Zend_Log_Exception' => dirname(__FILE__) . '/Zend/Log/Exception.php', + 'Zend_Log_FactoryInterface' => dirname(__FILE__) . '/Zend/Log/FactoryInterface.php', + 'Zend_Log_Filter_Abstract' => dirname(__FILE__) . '/Zend/Log/Filter/Abstract.php', + 'Zend_Log_Filter_Interface' => dirname(__FILE__) . '/Zend/Log/Filter/Interface.php', + 'Zend_Log_Filter_Message' => dirname(__FILE__) . '/Zend/Log/Filter/Message.php', + 'Zend_Log_Filter_Priority' => dirname(__FILE__) . '/Zend/Log/Filter/Priority.php', + 'Zend_Log_Filter_Suppress' => dirname(__FILE__) . '/Zend/Log/Filter/Suppress.php', + 'Zend_Log_Formatter_Abstract' => dirname(__FILE__) . '/Zend/Log/Formatter/Abstract.php', + 'Zend_Log_Formatter_Firebug' => dirname(__FILE__) . '/Zend/Log/Formatter/Firebug.php', + 'Zend_Log_Formatter_Interface' => dirname(__FILE__) . '/Zend/Log/Formatter/Interface.php', + 'Zend_Log_Formatter_Simple' => dirname(__FILE__) . '/Zend/Log/Formatter/Simple.php', + 'Zend_Log_Formatter_Xml' => dirname(__FILE__) . '/Zend/Log/Formatter/Xml.php', + 'Zend_Log_Writer_Abstract' => dirname(__FILE__) . '/Zend/Log/Writer/Abstract.php', + 'Zend_Log_Writer_Db' => dirname(__FILE__) . '/Zend/Log/Writer/Db.php', + 'Zend_Log_Writer_Firebug' => dirname(__FILE__) . '/Zend/Log/Writer/Firebug.php', + 'Zend_Log_Writer_Mail' => dirname(__FILE__) . '/Zend/Log/Writer/Mail.php', + 'Zend_Log_Writer_Mock' => dirname(__FILE__) . '/Zend/Log/Writer/Mock.php', + 'Zend_Log_Writer_Null' => dirname(__FILE__) . '/Zend/Log/Writer/Null.php', + 'Zend_Log_Writer_Stream' => dirname(__FILE__) . '/Zend/Log/Writer/Stream.php', + 'Zend_Log_Writer_Syslog' => dirname(__FILE__) . '/Zend/Log/Writer/Syslog.php', + 'Zend_Log_Writer_ZendMonitor' => dirname(__FILE__) . '/Zend/Log/Writer/ZendMonitor.php', + 'Zend_Log' => dirname(__FILE__) . '/Zend/Log.php', + 'Zend_Mail_Exception' => dirname(__FILE__) . '/Zend/Mail/Exception.php', + 'Zend_Mail_Message_File' => dirname(__FILE__) . '/Zend/Mail/Message/File.php', + 'Zend_Mail_Message_Interface' => dirname(__FILE__) . '/Zend/Mail/Message/Interface.php', + 'Zend_Mail_Message' => dirname(__FILE__) . '/Zend/Mail/Message.php', + 'Zend_Mail_Part_File' => dirname(__FILE__) . '/Zend/Mail/Part/File.php', + 'Zend_Mail_Part_Interface' => dirname(__FILE__) . '/Zend/Mail/Part/Interface.php', + 'Zend_Mail_Part' => dirname(__FILE__) . '/Zend/Mail/Part.php', + 'Zend_Mail_Protocol_Abstract' => dirname(__FILE__) . '/Zend/Mail/Protocol/Abstract.php', + 'Zend_Mail_Protocol_Exception' => dirname(__FILE__) . '/Zend/Mail/Protocol/Exception.php', + 'Zend_Mail_Protocol_Imap' => dirname(__FILE__) . '/Zend/Mail/Protocol/Imap.php', + 'Zend_Mail_Protocol_Pop3' => dirname(__FILE__) . '/Zend/Mail/Protocol/Pop3.php', + 'Zend_Mail_Protocol_Smtp_Auth_Crammd5' => dirname(__FILE__) . '/Zend/Mail/Protocol/Smtp/Auth/Crammd5.php', + 'Zend_Mail_Protocol_Smtp_Auth_Login' => dirname(__FILE__) . '/Zend/Mail/Protocol/Smtp/Auth/Login.php', + 'Zend_Mail_Protocol_Smtp_Auth_Plain' => dirname(__FILE__) . '/Zend/Mail/Protocol/Smtp/Auth/Plain.php', + 'Zend_Mail_Protocol_Smtp' => dirname(__FILE__) . '/Zend/Mail/Protocol/Smtp.php', + 'Zend_Mail_Storage_Abstract' => dirname(__FILE__) . '/Zend/Mail/Storage/Abstract.php', + 'Zend_Mail_Storage_Exception' => dirname(__FILE__) . '/Zend/Mail/Storage/Exception.php', + 'Zend_Mail_Storage_Folder_Interface' => dirname(__FILE__) . '/Zend/Mail/Storage/Folder/Interface.php', + 'Zend_Mail_Storage_Folder_Maildir' => dirname(__FILE__) . '/Zend/Mail/Storage/Folder/Maildir.php', + 'Zend_Mail_Storage_Folder_Mbox' => dirname(__FILE__) . '/Zend/Mail/Storage/Folder/Mbox.php', + 'Zend_Mail_Storage_Folder' => dirname(__FILE__) . '/Zend/Mail/Storage/Folder.php', + 'Zend_Mail_Storage_Imap' => dirname(__FILE__) . '/Zend/Mail/Storage/Imap.php', + 'Zend_Mail_Storage_Maildir' => dirname(__FILE__) . '/Zend/Mail/Storage/Maildir.php', + 'Zend_Mail_Storage_Mbox' => dirname(__FILE__) . '/Zend/Mail/Storage/Mbox.php', + 'Zend_Mail_Storage_Pop3' => dirname(__FILE__) . '/Zend/Mail/Storage/Pop3.php', + 'Zend_Mail_Storage_Writable_Interface' => dirname(__FILE__) . '/Zend/Mail/Storage/Writable/Interface.php', + 'Zend_Mail_Storage_Writable_Maildir' => dirname(__FILE__) . '/Zend/Mail/Storage/Writable/Maildir.php', + 'Zend_Mail_Storage' => dirname(__FILE__) . '/Zend/Mail/Storage.php', + 'Zend_Mail_Transport_Abstract' => dirname(__FILE__) . '/Zend/Mail/Transport/Abstract.php', + 'Zend_Mail_Transport_Exception' => dirname(__FILE__) . '/Zend/Mail/Transport/Exception.php', + 'Zend_Mail_Transport_File' => dirname(__FILE__) . '/Zend/Mail/Transport/File.php', + 'Zend_Mail_Transport_Sendmail' => dirname(__FILE__) . '/Zend/Mail/Transport/Sendmail.php', + 'Zend_Mail_Transport_Smtp' => dirname(__FILE__) . '/Zend/Mail/Transport/Smtp.php', + 'Zend_Mail' => dirname(__FILE__) . '/Zend/Mail.php', + 'Zend_Markup_Exception' => dirname(__FILE__) . '/Zend/Markup/Exception.php', + 'Zend_Markup_Parser_Bbcode' => dirname(__FILE__) . '/Zend/Markup/Parser/Bbcode.php', + 'Zend_Markup_Parser_Exception' => dirname(__FILE__) . '/Zend/Markup/Parser/Exception.php', + 'Zend_Markup_Parser_ParserInterface' => dirname(__FILE__) . '/Zend/Markup/Parser/ParserInterface.php', + 'Zend_Markup_Renderer_Exception' => dirname(__FILE__) . '/Zend/Markup/Renderer/Exception.php', + 'Zend_Markup_Renderer_Html_Code' => dirname(__FILE__) . '/Zend/Markup/Renderer/Html/Code.php', + 'Zend_Markup_Renderer_Html_HtmlAbstract' => dirname(__FILE__) . '/Zend/Markup/Renderer/Html/HtmlAbstract.php', + 'Zend_Markup_Renderer_Html_Img' => dirname(__FILE__) . '/Zend/Markup/Renderer/Html/Img.php', + 'Zend_Markup_Renderer_Html_List' => dirname(__FILE__) . '/Zend/Markup/Renderer/Html/List.php', + 'Zend_Markup_Renderer_Html_Url' => dirname(__FILE__) . '/Zend/Markup/Renderer/Html/Url.php', + 'Zend_Markup_Renderer_Html' => dirname(__FILE__) . '/Zend/Markup/Renderer/Html.php', + 'Zend_Markup_Renderer_RendererAbstract' => dirname(__FILE__) . '/Zend/Markup/Renderer/RendererAbstract.php', + 'Zend_Markup_Renderer_TokenConverterInterface' => dirname(__FILE__) . '/Zend/Markup/Renderer/TokenConverterInterface.php', + 'Zend_Markup_Token' => dirname(__FILE__) . '/Zend/Markup/Token.php', + 'Zend_Markup_TokenList' => dirname(__FILE__) . '/Zend/Markup/TokenList.php', + 'Zend_Markup' => dirname(__FILE__) . '/Zend/Markup.php', + 'Zend_Measure_Abstract' => dirname(__FILE__) . '/Zend/Measure/Abstract.php', + 'Zend_Measure_Acceleration' => dirname(__FILE__) . '/Zend/Measure/Acceleration.php', + 'Zend_Measure_Angle' => dirname(__FILE__) . '/Zend/Measure/Angle.php', + 'Zend_Measure_Area' => dirname(__FILE__) . '/Zend/Measure/Area.php', + 'Zend_Measure_Binary' => dirname(__FILE__) . '/Zend/Measure/Binary.php', + 'Zend_Measure_Capacitance' => dirname(__FILE__) . '/Zend/Measure/Capacitance.php', + 'Zend_Measure_Cooking_Volume' => dirname(__FILE__) . '/Zend/Measure/Cooking/Volume.php', + 'Zend_Measure_Cooking_Weight' => dirname(__FILE__) . '/Zend/Measure/Cooking/Weight.php', + 'Zend_Measure_Current' => dirname(__FILE__) . '/Zend/Measure/Current.php', + 'Zend_Measure_Density' => dirname(__FILE__) . '/Zend/Measure/Density.php', + 'Zend_Measure_Energy' => dirname(__FILE__) . '/Zend/Measure/Energy.php', + 'Zend_Measure_Exception' => dirname(__FILE__) . '/Zend/Measure/Exception.php', + 'Zend_Measure_Flow_Mass' => dirname(__FILE__) . '/Zend/Measure/Flow/Mass.php', + 'Zend_Measure_Flow_Mole' => dirname(__FILE__) . '/Zend/Measure/Flow/Mole.php', + 'Zend_Measure_Flow_Volume' => dirname(__FILE__) . '/Zend/Measure/Flow/Volume.php', + 'Zend_Measure_Force' => dirname(__FILE__) . '/Zend/Measure/Force.php', + 'Zend_Measure_Frequency' => dirname(__FILE__) . '/Zend/Measure/Frequency.php', + 'Zend_Measure_Illumination' => dirname(__FILE__) . '/Zend/Measure/Illumination.php', + 'Zend_Measure_Length' => dirname(__FILE__) . '/Zend/Measure/Length.php', + 'Zend_Measure_Lightness' => dirname(__FILE__) . '/Zend/Measure/Lightness.php', + 'Zend_Measure_Number' => dirname(__FILE__) . '/Zend/Measure/Number.php', + 'Zend_Measure_Power' => dirname(__FILE__) . '/Zend/Measure/Power.php', + 'Zend_Measure_Pressure' => dirname(__FILE__) . '/Zend/Measure/Pressure.php', + 'Zend_Measure_Speed' => dirname(__FILE__) . '/Zend/Measure/Speed.php', + 'Zend_Measure_Temperature' => dirname(__FILE__) . '/Zend/Measure/Temperature.php', + 'Zend_Measure_Time' => dirname(__FILE__) . '/Zend/Measure/Time.php', + 'Zend_Measure_Torque' => dirname(__FILE__) . '/Zend/Measure/Torque.php', + 'Zend_Measure_Viscosity_Dynamic' => dirname(__FILE__) . '/Zend/Measure/Viscosity/Dynamic.php', + 'Zend_Measure_Viscosity_Kinematic' => dirname(__FILE__) . '/Zend/Measure/Viscosity/Kinematic.php', + 'Zend_Measure_Volume' => dirname(__FILE__) . '/Zend/Measure/Volume.php', + 'Zend_Measure_Weight' => dirname(__FILE__) . '/Zend/Measure/Weight.php', + 'Zend_Memory_AccessController' => dirname(__FILE__) . '/Zend/Memory/AccessController.php', + 'Zend_Memory_Container_Interface' => dirname(__FILE__) . '/Zend/Memory/Container/Interface.php', + 'Zend_Memory_Container_Locked' => dirname(__FILE__) . '/Zend/Memory/Container/Locked.php', + 'Zend_Memory_Container_Movable' => dirname(__FILE__) . '/Zend/Memory/Container/Movable.php', + 'Zend_Memory_Container' => dirname(__FILE__) . '/Zend/Memory/Container.php', + 'Zend_Memory_Exception' => dirname(__FILE__) . '/Zend/Memory/Exception.php', + 'Zend_Memory_Manager' => dirname(__FILE__) . '/Zend/Memory/Manager.php', + 'Zend_Memory_Value' => dirname(__FILE__) . '/Zend/Memory/Value.php', + 'Zend_Memory' => dirname(__FILE__) . '/Zend/Memory.php', + 'Zend_Mime_Decode' => dirname(__FILE__) . '/Zend/Mime/Decode.php', + 'Zend_Mime_Exception' => dirname(__FILE__) . '/Zend/Mime/Exception.php', + 'Zend_Mime_Message' => dirname(__FILE__) . '/Zend/Mime/Message.php', + 'Zend_Mime_Part' => dirname(__FILE__) . '/Zend/Mime/Part.php', + 'Zend_Mime' => dirname(__FILE__) . '/Zend/Mime.php', + 'Zend_Mobile_Exception' => dirname(__FILE__) . '/Zend/Mobile/Exception.php', + 'Zend_Mobile_Push_Abstract' => dirname(__FILE__) . '/Zend/Mobile/Push/Abstract.php', + 'Zend_Mobile_Push_Apns' => dirname(__FILE__) . '/Zend/Mobile/Push/Apns.php', + 'Zend_Mobile_Push_Exception_DeviceQuotaExceeded' => dirname(__FILE__) . '/Zend/Mobile/Push/Exception/DeviceQuotaExceeded.php', + 'Zend_Mobile_Push_Exception_InvalidAuthToken' => dirname(__FILE__) . '/Zend/Mobile/Push/Exception/InvalidAuthToken.php', + 'Zend_Mobile_Push_Exception_InvalidPayload' => dirname(__FILE__) . '/Zend/Mobile/Push/Exception/InvalidPayload.php', + 'Zend_Mobile_Push_Exception_InvalidRegistration' => dirname(__FILE__) . '/Zend/Mobile/Push/Exception/InvalidRegistration.php', + 'Zend_Mobile_Push_Exception_InvalidToken' => dirname(__FILE__) . '/Zend/Mobile/Push/Exception/InvalidToken.php', + 'Zend_Mobile_Push_Exception_InvalidTopic' => dirname(__FILE__) . '/Zend/Mobile/Push/Exception/InvalidTopic.php', + 'Zend_Mobile_Push_Exception_QuotaExceeded' => dirname(__FILE__) . '/Zend/Mobile/Push/Exception/QuotaExceeded.php', + 'Zend_Mobile_Push_Exception_ServerUnavailable' => dirname(__FILE__) . '/Zend/Mobile/Push/Exception/ServerUnavailable.php', + 'Zend_Mobile_Push_Exception' => dirname(__FILE__) . '/Zend/Mobile/Push/Exception.php', + 'Zend_Mobile_Push_Gcm' => dirname(__FILE__) . '/Zend/Mobile/Push/Gcm.php', + 'Zend_Mobile_Push_Interface' => dirname(__FILE__) . '/Zend/Mobile/Push/Interface.php', + 'Zend_Mobile_Push_Message_Abstract' => dirname(__FILE__) . '/Zend/Mobile/Push/Message/Abstract.php', + 'Zend_Mobile_Push_Message_Apns' => dirname(__FILE__) . '/Zend/Mobile/Push/Message/Apns.php', + 'Zend_Mobile_Push_Message_Exception' => dirname(__FILE__) . '/Zend/Mobile/Push/Message/Exception.php', + 'Zend_Mobile_Push_Message_Gcm' => dirname(__FILE__) . '/Zend/Mobile/Push/Message/Gcm.php', + 'Zend_Mobile_Push_Message_Interface' => dirname(__FILE__) . '/Zend/Mobile/Push/Message/Interface.php', + 'Zend_Mobile_Push_Message_Mpns_Raw' => dirname(__FILE__) . '/Zend/Mobile/Push/Message/Mpns/Raw.php', + 'Zend_Mobile_Push_Message_Mpns_Tile' => dirname(__FILE__) . '/Zend/Mobile/Push/Message/Mpns/Tile.php', + 'Zend_Mobile_Push_Message_Mpns_Toast' => dirname(__FILE__) . '/Zend/Mobile/Push/Message/Mpns/Toast.php', + 'Zend_Mobile_Push_Message_Mpns' => dirname(__FILE__) . '/Zend/Mobile/Push/Message/Mpns.php', + 'Zend_Mobile_Push_Mpns' => dirname(__FILE__) . '/Zend/Mobile/Push/Mpns.php', + 'Zend_Mobile_Push_Response_Gcm' => dirname(__FILE__) . '/Zend/Mobile/Push/Response/Gcm.php', + 'Zend_Mobile_Push_Test_ApnsProxy' => dirname(__FILE__) . '/Zend/Mobile/Push/Test/ApnsProxy.php', + 'Zend_Navigation_Container' => dirname(__FILE__) . '/Zend/Navigation/Container.php', + 'Zend_Navigation_Exception' => dirname(__FILE__) . '/Zend/Navigation/Exception.php', + 'Zend_Navigation_Page_Mvc' => dirname(__FILE__) . '/Zend/Navigation/Page/Mvc.php', + 'Zend_Navigation_Page_Uri' => dirname(__FILE__) . '/Zend/Navigation/Page/Uri.php', + 'Zend_Navigation_Page' => dirname(__FILE__) . '/Zend/Navigation/Page.php', + 'Zend_Navigation' => dirname(__FILE__) . '/Zend/Navigation.php', + 'Zend_Oauth_Client' => dirname(__FILE__) . '/Zend/Oauth/Client.php', + 'Zend_Oauth_Config_ConfigInterface' => dirname(__FILE__) . '/Zend/Oauth/Config/ConfigInterface.php', + 'Zend_Oauth_Config' => dirname(__FILE__) . '/Zend/Oauth/Config.php', + 'Zend_Oauth_Consumer' => dirname(__FILE__) . '/Zend/Oauth/Consumer.php', + 'Zend_Oauth_Exception' => dirname(__FILE__) . '/Zend/Oauth/Exception.php', + 'Zend_Oauth_Http_AccessToken' => dirname(__FILE__) . '/Zend/Oauth/Http/AccessToken.php', + 'Zend_Oauth_Http_RequestToken' => dirname(__FILE__) . '/Zend/Oauth/Http/RequestToken.php', + 'Zend_Oauth_Http_UserAuthorization' => dirname(__FILE__) . '/Zend/Oauth/Http/UserAuthorization.php', + 'Zend_Oauth_Http_Utility' => dirname(__FILE__) . '/Zend/Oauth/Http/Utility.php', + 'Zend_Oauth_Http' => dirname(__FILE__) . '/Zend/Oauth/Http.php', + 'Zend_Oauth_Signature_Hmac' => dirname(__FILE__) . '/Zend/Oauth/Signature/Hmac.php', + 'Zend_Oauth_Signature_Plaintext' => dirname(__FILE__) . '/Zend/Oauth/Signature/Plaintext.php', + 'Zend_Oauth_Signature_Rsa' => dirname(__FILE__) . '/Zend/Oauth/Signature/Rsa.php', + 'Zend_Oauth_Signature_SignatureAbstract' => dirname(__FILE__) . '/Zend/Oauth/Signature/SignatureAbstract.php', + 'Zend_Oauth_Token_Access' => dirname(__FILE__) . '/Zend/Oauth/Token/Access.php', + 'Zend_Oauth_Token_AuthorizedRequest' => dirname(__FILE__) . '/Zend/Oauth/Token/AuthorizedRequest.php', + 'Zend_Oauth_Token_Request' => dirname(__FILE__) . '/Zend/Oauth/Token/Request.php', + 'Zend_Oauth_Token' => dirname(__FILE__) . '/Zend/Oauth/Token.php', + 'Zend_Oauth' => dirname(__FILE__) . '/Zend/Oauth.php', + 'Zend_OpenId_Consumer_Storage_File' => dirname(__FILE__) . '/Zend/OpenId/Consumer/Storage/File.php', + 'Zend_OpenId_Consumer_Storage' => dirname(__FILE__) . '/Zend/OpenId/Consumer/Storage.php', + 'Zend_OpenId_Consumer' => dirname(__FILE__) . '/Zend/OpenId/Consumer.php', + 'Zend_OpenId_Exception' => dirname(__FILE__) . '/Zend/OpenId/Exception.php', + 'Zend_OpenId_Extension_Sreg' => dirname(__FILE__) . '/Zend/OpenId/Extension/Sreg.php', + 'Zend_OpenId_Extension' => dirname(__FILE__) . '/Zend/OpenId/Extension.php', + 'Zend_OpenId_Provider_Storage_File' => dirname(__FILE__) . '/Zend/OpenId/Provider/Storage/File.php', + 'Zend_OpenId_Provider_Storage' => dirname(__FILE__) . '/Zend/OpenId/Provider/Storage.php', + 'Zend_OpenId_Provider_User_Session' => dirname(__FILE__) . '/Zend/OpenId/Provider/User/Session.php', + 'Zend_OpenId_Provider_User' => dirname(__FILE__) . '/Zend/OpenId/Provider/User.php', + 'Zend_OpenId_Provider' => dirname(__FILE__) . '/Zend/OpenId/Provider.php', + 'Zend_OpenId' => dirname(__FILE__) . '/Zend/OpenId.php', + 'Zend_Paginator_Adapter_Array' => dirname(__FILE__) . '/Zend/Paginator/Adapter/Array.php', + 'Zend_Paginator_Adapter_DbSelect' => dirname(__FILE__) . '/Zend/Paginator/Adapter/DbSelect.php', + 'Zend_Paginator_Adapter_DbTableSelect' => dirname(__FILE__) . '/Zend/Paginator/Adapter/DbTableSelect.php', + 'Zend_Paginator_Adapter_Interface' => dirname(__FILE__) . '/Zend/Paginator/Adapter/Interface.php', + 'Zend_Paginator_Adapter_Iterator' => dirname(__FILE__) . '/Zend/Paginator/Adapter/Iterator.php', + 'Zend_Paginator_Adapter_Null' => dirname(__FILE__) . '/Zend/Paginator/Adapter/Null.php', + 'Zend_Paginator_AdapterAggregate' => dirname(__FILE__) . '/Zend/Paginator/AdapterAggregate.php', + 'Zend_Paginator_Exception' => dirname(__FILE__) . '/Zend/Paginator/Exception.php', + 'Zend_Paginator_ScrollingStyle_All' => dirname(__FILE__) . '/Zend/Paginator/ScrollingStyle/All.php', + 'Zend_Paginator_ScrollingStyle_Elastic' => dirname(__FILE__) . '/Zend/Paginator/ScrollingStyle/Elastic.php', + 'Zend_Paginator_ScrollingStyle_Interface' => dirname(__FILE__) . '/Zend/Paginator/ScrollingStyle/Interface.php', + 'Zend_Paginator_ScrollingStyle_Jumping' => dirname(__FILE__) . '/Zend/Paginator/ScrollingStyle/Jumping.php', + 'Zend_Paginator_ScrollingStyle_Sliding' => dirname(__FILE__) . '/Zend/Paginator/ScrollingStyle/Sliding.php', + 'Zend_Paginator_SerializableLimitIterator' => dirname(__FILE__) . '/Zend/Paginator/SerializableLimitIterator.php', + 'Zend_Paginator' => dirname(__FILE__) . '/Zend/Paginator.php', + 'Zend_Pdf_Action_GoTo' => dirname(__FILE__) . '/Zend/Pdf/Action/GoTo.php', + 'Zend_Pdf_Action_GoTo3DView' => dirname(__FILE__) . '/Zend/Pdf/Action/GoTo3DView.php', + 'Zend_Pdf_Action_GoToE' => dirname(__FILE__) . '/Zend/Pdf/Action/GoToE.php', + 'Zend_Pdf_Action_GoToR' => dirname(__FILE__) . '/Zend/Pdf/Action/GoToR.php', + 'Zend_Pdf_Action_Hide' => dirname(__FILE__) . '/Zend/Pdf/Action/Hide.php', + 'Zend_Pdf_Action_ImportData' => dirname(__FILE__) . '/Zend/Pdf/Action/ImportData.php', + 'Zend_Pdf_Action_JavaScript' => dirname(__FILE__) . '/Zend/Pdf/Action/JavaScript.php', + 'Zend_Pdf_Action_Launch' => dirname(__FILE__) . '/Zend/Pdf/Action/Launch.php', + 'Zend_Pdf_Action_Movie' => dirname(__FILE__) . '/Zend/Pdf/Action/Movie.php', + 'Zend_Pdf_Action_Named' => dirname(__FILE__) . '/Zend/Pdf/Action/Named.php', + 'Zend_Pdf_Action_Rendition' => dirname(__FILE__) . '/Zend/Pdf/Action/Rendition.php', + 'Zend_Pdf_Action_ResetForm' => dirname(__FILE__) . '/Zend/Pdf/Action/ResetForm.php', + 'Zend_Pdf_Action_SetOCGState' => dirname(__FILE__) . '/Zend/Pdf/Action/SetOCGState.php', + 'Zend_Pdf_Action_Sound' => dirname(__FILE__) . '/Zend/Pdf/Action/Sound.php', + 'Zend_Pdf_Action_SubmitForm' => dirname(__FILE__) . '/Zend/Pdf/Action/SubmitForm.php', + 'Zend_Pdf_Action_Thread' => dirname(__FILE__) . '/Zend/Pdf/Action/Thread.php', + 'Zend_Pdf_Action_Trans' => dirname(__FILE__) . '/Zend/Pdf/Action/Trans.php', + 'Zend_Pdf_Action_Unknown' => dirname(__FILE__) . '/Zend/Pdf/Action/Unknown.php', + 'Zend_Pdf_Action_URI' => dirname(__FILE__) . '/Zend/Pdf/Action/URI.php', + 'Zend_Pdf_Action' => dirname(__FILE__) . '/Zend/Pdf/Action.php', + 'Zend_Pdf_Annotation_FileAttachment' => dirname(__FILE__) . '/Zend/Pdf/Annotation/FileAttachment.php', + 'Zend_Pdf_Annotation_Link' => dirname(__FILE__) . '/Zend/Pdf/Annotation/Link.php', + 'Zend_Pdf_Annotation_Markup' => dirname(__FILE__) . '/Zend/Pdf/Annotation/Markup.php', + 'Zend_Pdf_Annotation_Text' => dirname(__FILE__) . '/Zend/Pdf/Annotation/Text.php', + 'Zend_Pdf_Annotation' => dirname(__FILE__) . '/Zend/Pdf/Annotation.php', + 'Zend_Pdf_Canvas_Abstract' => dirname(__FILE__) . '/Zend/Pdf/Canvas/Abstract.php', + 'Zend_Pdf_Canvas_Interface' => dirname(__FILE__) . '/Zend/Pdf/Canvas/Interface.php', + 'Zend_Pdf_Canvas' => dirname(__FILE__) . '/Zend/Pdf/Canvas.php', + 'Zend_Pdf_Cmap_ByteEncoding_Static' => dirname(__FILE__) . '/Zend/Pdf/Cmap/ByteEncoding/Static.php', + 'Zend_Pdf_Cmap_ByteEncoding' => dirname(__FILE__) . '/Zend/Pdf/Cmap/ByteEncoding.php', + 'Zend_Pdf_Cmap_SegmentToDelta' => dirname(__FILE__) . '/Zend/Pdf/Cmap/SegmentToDelta.php', + 'Zend_Pdf_Cmap_TrimmedTable' => dirname(__FILE__) . '/Zend/Pdf/Cmap/TrimmedTable.php', + 'Zend_Pdf_Cmap' => dirname(__FILE__) . '/Zend/Pdf/Cmap.php', + 'Zend_Pdf_Color_Cmyk' => dirname(__FILE__) . '/Zend/Pdf/Color/Cmyk.php', + 'Zend_Pdf_Color_GrayScale' => dirname(__FILE__) . '/Zend/Pdf/Color/GrayScale.php', + 'Zend_Pdf_Color_Html' => dirname(__FILE__) . '/Zend/Pdf/Color/Html.php', + 'Zend_Pdf_Color_Rgb' => dirname(__FILE__) . '/Zend/Pdf/Color/Rgb.php', + 'Zend_Pdf_Color' => dirname(__FILE__) . '/Zend/Pdf/Color.php', + 'Zend_Pdf_Destination_Explicit' => dirname(__FILE__) . '/Zend/Pdf/Destination/Explicit.php', + 'Zend_Pdf_Destination_Fit' => dirname(__FILE__) . '/Zend/Pdf/Destination/Fit.php', + 'Zend_Pdf_Destination_FitBoundingBox' => dirname(__FILE__) . '/Zend/Pdf/Destination/FitBoundingBox.php', + 'Zend_Pdf_Destination_FitBoundingBoxHorizontally' => dirname(__FILE__) . '/Zend/Pdf/Destination/FitBoundingBoxHorizontally.php', + 'Zend_Pdf_Destination_FitBoundingBoxVertically' => dirname(__FILE__) . '/Zend/Pdf/Destination/FitBoundingBoxVertically.php', + 'Zend_Pdf_Destination_FitHorizontally' => dirname(__FILE__) . '/Zend/Pdf/Destination/FitHorizontally.php', + 'Zend_Pdf_Destination_FitRectangle' => dirname(__FILE__) . '/Zend/Pdf/Destination/FitRectangle.php', + 'Zend_Pdf_Destination_FitVertically' => dirname(__FILE__) . '/Zend/Pdf/Destination/FitVertically.php', + 'Zend_Pdf_Destination_Named' => dirname(__FILE__) . '/Zend/Pdf/Destination/Named.php', + 'Zend_Pdf_Destination_Unknown' => dirname(__FILE__) . '/Zend/Pdf/Destination/Unknown.php', + 'Zend_Pdf_Destination_Zoom' => dirname(__FILE__) . '/Zend/Pdf/Destination/Zoom.php', + 'Zend_Pdf_Destination' => dirname(__FILE__) . '/Zend/Pdf/Destination.php', + 'Zend_Pdf_Element_Array' => dirname(__FILE__) . '/Zend/Pdf/Element/Array.php', + 'Zend_Pdf_Element_Boolean' => dirname(__FILE__) . '/Zend/Pdf/Element/Boolean.php', + 'Zend_Pdf_Element_Dictionary' => dirname(__FILE__) . '/Zend/Pdf/Element/Dictionary.php', + 'Zend_Pdf_Element_Name' => dirname(__FILE__) . '/Zend/Pdf/Element/Name.php', + 'Zend_Pdf_Element_Null' => dirname(__FILE__) . '/Zend/Pdf/Element/Null.php', + 'Zend_Pdf_Element_Numeric' => dirname(__FILE__) . '/Zend/Pdf/Element/Numeric.php', + 'Zend_Pdf_Element_Object_Stream' => dirname(__FILE__) . '/Zend/Pdf/Element/Object/Stream.php', + 'Zend_Pdf_Element_Object' => dirname(__FILE__) . '/Zend/Pdf/Element/Object.php', + 'Zend_Pdf_Element_Reference_Context' => dirname(__FILE__) . '/Zend/Pdf/Element/Reference/Context.php', + 'Zend_Pdf_Element_Reference_Table' => dirname(__FILE__) . '/Zend/Pdf/Element/Reference/Table.php', + 'Zend_Pdf_Element_Reference' => dirname(__FILE__) . '/Zend/Pdf/Element/Reference.php', + 'Zend_Pdf_Element_Stream' => dirname(__FILE__) . '/Zend/Pdf/Element/Stream.php', + 'Zend_Pdf_Element_String_Binary' => dirname(__FILE__) . '/Zend/Pdf/Element/String/Binary.php', + 'Zend_Pdf_Element_String' => dirname(__FILE__) . '/Zend/Pdf/Element/String.php', + 'Zend_Pdf_Element' => dirname(__FILE__) . '/Zend/Pdf/Element.php', + 'Zend_Pdf_ElementFactory_Interface' => dirname(__FILE__) . '/Zend/Pdf/ElementFactory/Interface.php', + 'Zend_Pdf_ElementFactory_Proxy' => dirname(__FILE__) . '/Zend/Pdf/ElementFactory/Proxy.php', + 'Zend_Pdf_ElementFactory' => dirname(__FILE__) . '/Zend/Pdf/ElementFactory.php', + 'Zend_Pdf_Exception' => dirname(__FILE__) . '/Zend/Pdf/Exception.php', + 'Zend_Pdf_FileParser_Font_OpenType_TrueType' => dirname(__FILE__) . '/Zend/Pdf/FileParser/Font/OpenType/TrueType.php', + 'Zend_Pdf_FileParser_Font_OpenType' => dirname(__FILE__) . '/Zend/Pdf/FileParser/Font/OpenType.php', + 'Zend_Pdf_FileParser_Font' => dirname(__FILE__) . '/Zend/Pdf/FileParser/Font.php', + 'Zend_Pdf_FileParser_Image_Png' => dirname(__FILE__) . '/Zend/Pdf/FileParser/Image/Png.php', + 'Zend_Pdf_FileParser_Image' => dirname(__FILE__) . '/Zend/Pdf/FileParser/Image.php', + 'Zend_Pdf_FileParser' => dirname(__FILE__) . '/Zend/Pdf/FileParser.php', + 'Zend_Pdf_FileParserDataSource_File' => dirname(__FILE__) . '/Zend/Pdf/FileParserDataSource/File.php', + 'Zend_Pdf_FileParserDataSource_String' => dirname(__FILE__) . '/Zend/Pdf/FileParserDataSource/String.php', + 'Zend_Pdf_FileParserDataSource' => dirname(__FILE__) . '/Zend/Pdf/FileParserDataSource.php', + 'Zend_Pdf_Filter_Ascii85' => dirname(__FILE__) . '/Zend/Pdf/Filter/Ascii85.php', + 'Zend_Pdf_Filter_AsciiHex' => dirname(__FILE__) . '/Zend/Pdf/Filter/AsciiHex.php', + 'Zend_Pdf_Filter_Compression_Flate' => dirname(__FILE__) . '/Zend/Pdf/Filter/Compression/Flate.php', + 'Zend_Pdf_Filter_Compression_Lzw' => dirname(__FILE__) . '/Zend/Pdf/Filter/Compression/Lzw.php', + 'Zend_Pdf_Filter_Compression' => dirname(__FILE__) . '/Zend/Pdf/Filter/Compression.php', + 'Zend_Pdf_Filter_Interface' => dirname(__FILE__) . '/Zend/Pdf/Filter/Interface.php', + 'Zend_Pdf_Filter_RunLength' => dirname(__FILE__) . '/Zend/Pdf/Filter/RunLength.php', + 'Zend_Pdf_Font' => dirname(__FILE__) . '/Zend/Pdf/Font.php', + 'Zend_Pdf_Image' => dirname(__FILE__) . '/Zend/Pdf/Image.php', + 'Zend_Pdf_NameTree' => dirname(__FILE__) . '/Zend/Pdf/NameTree.php', + 'Zend_Pdf_Outline_Created' => dirname(__FILE__) . '/Zend/Pdf/Outline/Created.php', + 'Zend_Pdf_Outline_Loaded' => dirname(__FILE__) . '/Zend/Pdf/Outline/Loaded.php', + 'Zend_Pdf_Outline' => dirname(__FILE__) . '/Zend/Pdf/Outline.php', + 'Zend_Pdf_Page' => dirname(__FILE__) . '/Zend/Pdf/Page.php', + 'Zend_Pdf_Parser' => dirname(__FILE__) . '/Zend/Pdf/Parser.php', + 'Zend_Pdf_RecursivelyIteratableObjectsContainer' => dirname(__FILE__) . '/Zend/Pdf/RecursivelyIteratableObjectsContainer.php', + 'Zend_Pdf_Resource_ContentStream' => dirname(__FILE__) . '/Zend/Pdf/Resource/ContentStream.php', + 'Zend_Pdf_Resource_Extractor' => dirname(__FILE__) . '/Zend/Pdf/Resource/Extractor.php', + 'Zend_Pdf_Resource_Font_CidFont_TrueType' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/CidFont/TrueType.php', + 'Zend_Pdf_Resource_Font_CidFont' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/CidFont.php', + 'Zend_Pdf_Resource_Font_Extracted' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Extracted.php', + 'Zend_Pdf_Resource_Font_FontDescriptor' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/FontDescriptor.php', + 'Zend_Pdf_Resource_Font_Simple_Parsed_TrueType' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Simple/Parsed/TrueType.php', + 'Zend_Pdf_Resource_Font_Simple_Parsed' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Simple/Parsed.php', + 'Zend_Pdf_Resource_Font_Simple_Standard_Courier' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Simple/Standard/Courier.php', + 'Zend_Pdf_Resource_Font_Simple_Standard_CourierBold' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Simple/Standard/CourierBold.php', + 'Zend_Pdf_Resource_Font_Simple_Standard_CourierBoldOblique' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Simple/Standard/CourierBoldOblique.php', + 'Zend_Pdf_Resource_Font_Simple_Standard_CourierOblique' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Simple/Standard/CourierOblique.php', + 'Zend_Pdf_Resource_Font_Simple_Standard_Helvetica' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Simple/Standard/Helvetica.php', + 'Zend_Pdf_Resource_Font_Simple_Standard_HelveticaBold' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaBold.php', + 'Zend_Pdf_Resource_Font_Simple_Standard_HelveticaBoldOblique' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaBoldOblique.php', + 'Zend_Pdf_Resource_Font_Simple_Standard_HelveticaOblique' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaOblique.php', + 'Zend_Pdf_Resource_Font_Simple_Standard_Symbol' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Simple/Standard/Symbol.php', + 'Zend_Pdf_Resource_Font_Simple_Standard_TimesBold' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Simple/Standard/TimesBold.php', + 'Zend_Pdf_Resource_Font_Simple_Standard_TimesBoldItalic' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Simple/Standard/TimesBoldItalic.php', + 'Zend_Pdf_Resource_Font_Simple_Standard_TimesItalic' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Simple/Standard/TimesItalic.php', + 'Zend_Pdf_Resource_Font_Simple_Standard_TimesRoman' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Simple/Standard/TimesRoman.php', + 'Zend_Pdf_Resource_Font_Simple_Standard_ZapfDingbats' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Simple/Standard/ZapfDingbats.php', + 'Zend_Pdf_Resource_Font_Simple_Standard' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Simple/Standard.php', + 'Zend_Pdf_Resource_Font_Simple' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Simple.php', + 'Zend_Pdf_Resource_Font_Type0' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font/Type0.php', + 'Zend_Pdf_Resource_Font' => dirname(__FILE__) . '/Zend/Pdf/Resource/Font.php', + 'Zend_Pdf_Resource_GraphicsState' => dirname(__FILE__) . '/Zend/Pdf/Resource/GraphicsState.php', + 'Zend_Pdf_Resource_Image_Jpeg' => dirname(__FILE__) . '/Zend/Pdf/Resource/Image/Jpeg.php', + 'Zend_Pdf_Resource_Image_Png' => dirname(__FILE__) . '/Zend/Pdf/Resource/Image/Png.php', + 'Zend_Pdf_Resource_Image_Tiff' => dirname(__FILE__) . '/Zend/Pdf/Resource/Image/Tiff.php', + 'Zend_Pdf_Resource_Image' => dirname(__FILE__) . '/Zend/Pdf/Resource/Image.php', + 'Zend_Pdf_Resource_ImageFactory' => dirname(__FILE__) . '/Zend/Pdf/Resource/ImageFactory.php', + 'Zend_Pdf_Resource_Unified' => dirname(__FILE__) . '/Zend/Pdf/Resource/Unified.php', + 'Zend_Pdf_Resource' => dirname(__FILE__) . '/Zend/Pdf/Resource.php', + 'Zend_Pdf_StringParser' => dirname(__FILE__) . '/Zend/Pdf/StringParser.php', + 'Zend_Pdf_Style' => dirname(__FILE__) . '/Zend/Pdf/Style.php', + 'Zend_Pdf_Target' => dirname(__FILE__) . '/Zend/Pdf/Target.php', + 'Zend_Pdf_Trailer_Generator' => dirname(__FILE__) . '/Zend/Pdf/Trailer/Generator.php', + 'Zend_Pdf_Trailer_Keeper' => dirname(__FILE__) . '/Zend/Pdf/Trailer/Keeper.php', + 'Zend_Pdf_Trailer' => dirname(__FILE__) . '/Zend/Pdf/Trailer.php', + 'Zend_Pdf_UpdateInfoContainer' => dirname(__FILE__) . '/Zend/Pdf/UpdateInfoContainer.php', + 'Zend_Pdf' => dirname(__FILE__) . '/Zend/Pdf.php', + 'Zend_ProgressBar_Adapter_Console' => dirname(__FILE__) . '/Zend/ProgressBar/Adapter/Console.php', + 'Zend_ProgressBar_Adapter_Exception' => dirname(__FILE__) . '/Zend/ProgressBar/Adapter/Exception.php', + 'Zend_ProgressBar_Adapter_JsPull' => dirname(__FILE__) . '/Zend/ProgressBar/Adapter/JsPull.php', + 'Zend_ProgressBar_Adapter_JsPush' => dirname(__FILE__) . '/Zend/ProgressBar/Adapter/JsPush.php', + 'Zend_ProgressBar_Adapter' => dirname(__FILE__) . '/Zend/ProgressBar/Adapter.php', + 'Zend_ProgressBar_Exception' => dirname(__FILE__) . '/Zend/ProgressBar/Exception.php', + 'Zend_ProgressBar' => dirname(__FILE__) . '/Zend/ProgressBar.php', + 'Zend_Queue_Adapter_Activemq' => dirname(__FILE__) . '/Zend/Queue/Adapter/Activemq.php', + 'Zend_Queue_Adapter_AdapterAbstract' => dirname(__FILE__) . '/Zend/Queue/Adapter/AdapterAbstract.php', + 'Zend_Queue_Adapter_AdapterInterface' => dirname(__FILE__) . '/Zend/Queue/Adapter/AdapterInterface.php', + 'Zend_Queue_Adapter_Array' => dirname(__FILE__) . '/Zend/Queue/Adapter/Array.php', + 'Zend_Queue_Adapter_Db_Message' => dirname(__FILE__) . '/Zend/Queue/Adapter/Db/Message.php', + 'Zend_Queue_Adapter_Db_Queue' => dirname(__FILE__) . '/Zend/Queue/Adapter/Db/Queue.php', + 'Zend_Queue_Adapter_Db' => dirname(__FILE__) . '/Zend/Queue/Adapter/Db.php', + 'Zend_Queue_Adapter_Memcacheq' => dirname(__FILE__) . '/Zend/Queue/Adapter/Memcacheq.php', + 'Zend_Queue_Adapter_Null' => dirname(__FILE__) . '/Zend/Queue/Adapter/Null.php', + 'Zend_Queue_Adapter_PlatformJobQueue' => dirname(__FILE__) . '/Zend/Queue/Adapter/PlatformJobQueue.php', + 'Zend_Queue_Exception' => dirname(__FILE__) . '/Zend/Queue/Exception.php', + 'Zend_Queue_Message_Iterator' => dirname(__FILE__) . '/Zend/Queue/Message/Iterator.php', + 'Zend_Queue_Message_PlatformJob' => dirname(__FILE__) . '/Zend/Queue/Message/PlatformJob.php', + 'Zend_Queue_Message' => dirname(__FILE__) . '/Zend/Queue/Message.php', + 'Zend_Queue_Stomp_Client_Connection' => dirname(__FILE__) . '/Zend/Queue/Stomp/Client/Connection.php', + 'Zend_Queue_Stomp_Client_ConnectionInterface' => dirname(__FILE__) . '/Zend/Queue/Stomp/Client/ConnectionInterface.php', + 'Zend_Queue_Stomp_Client' => dirname(__FILE__) . '/Zend/Queue/Stomp/Client.php', + 'Zend_Queue_Stomp_Frame' => dirname(__FILE__) . '/Zend/Queue/Stomp/Frame.php', + 'Zend_Queue_Stomp_FrameInterface' => dirname(__FILE__) . '/Zend/Queue/Stomp/FrameInterface.php', + 'Zend_Queue' => dirname(__FILE__) . '/Zend/Queue.php', + 'Zend_Reflection_Class' => dirname(__FILE__) . '/Zend/Reflection/Class.php', + 'Zend_Reflection_Docblock_Tag_Param' => dirname(__FILE__) . '/Zend/Reflection/Docblock/Tag/Param.php', + 'Zend_Reflection_Docblock_Tag_Return' => dirname(__FILE__) . '/Zend/Reflection/Docblock/Tag/Return.php', + 'Zend_Reflection_Docblock_Tag' => dirname(__FILE__) . '/Zend/Reflection/Docblock/Tag.php', + 'Zend_Reflection_Docblock' => dirname(__FILE__) . '/Zend/Reflection/Docblock.php', + 'Zend_Reflection_Exception' => dirname(__FILE__) . '/Zend/Reflection/Exception.php', + 'Zend_Reflection_Extension' => dirname(__FILE__) . '/Zend/Reflection/Extension.php', + 'Zend_Reflection_File' => dirname(__FILE__) . '/Zend/Reflection/File.php', + 'Zend_Reflection_Function' => dirname(__FILE__) . '/Zend/Reflection/Function.php', + 'Zend_Reflection_Method' => dirname(__FILE__) . '/Zend/Reflection/Method.php', + 'Zend_Reflection_Parameter' => dirname(__FILE__) . '/Zend/Reflection/Parameter.php', + 'Zend_Reflection_Property' => dirname(__FILE__) . '/Zend/Reflection/Property.php', + 'Zend_Registry' => dirname(__FILE__) . '/Zend/Registry.php', + 'Zend_Rest_Client_Exception' => dirname(__FILE__) . '/Zend/Rest/Client/Exception.php', + 'Zend_Rest_Client_Result_Exception' => dirname(__FILE__) . '/Zend/Rest/Client/Result/Exception.php', + 'Zend_Rest_Client_Result' => dirname(__FILE__) . '/Zend/Rest/Client/Result.php', + 'Zend_Rest_Client' => dirname(__FILE__) . '/Zend/Rest/Client.php', + 'Zend_Rest_Controller' => dirname(__FILE__) . '/Zend/Rest/Controller.php', + 'Zend_Rest_Exception' => dirname(__FILE__) . '/Zend/Rest/Exception.php', + 'Zend_Rest_Route' => dirname(__FILE__) . '/Zend/Rest/Route.php', + 'Zend_Rest_Server_Exception' => dirname(__FILE__) . '/Zend/Rest/Server/Exception.php', + 'Zend_Rest_Server' => dirname(__FILE__) . '/Zend/Rest/Server.php', + 'Zend_Search_Exception' => dirname(__FILE__) . '/Zend/Search/Exception.php', + 'Zend_Search_Lucene_Analysis_Analyzer_Common_Text_CaseInsensitive' => dirname(__FILE__) . '/Zend/Search/Lucene/Analysis/Analyzer/Common/Text/CaseInsensitive.php', + 'Zend_Search_Lucene_Analysis_Analyzer_Common_Text' => dirname(__FILE__) . '/Zend/Search/Lucene/Analysis/Analyzer/Common/Text.php', + 'Zend_Search_Lucene_Analysis_Analyzer_Common_TextNum_CaseInsensitive' => dirname(__FILE__) . '/Zend/Search/Lucene/Analysis/Analyzer/Common/TextNum/CaseInsensitive.php', + 'Zend_Search_Lucene_Analysis_Analyzer_Common_TextNum' => dirname(__FILE__) . '/Zend/Search/Lucene/Analysis/Analyzer/Common/TextNum.php', + 'Zend_Search_Lucene_Analysis_Analyzer_Common_Utf8_CaseInsensitive' => dirname(__FILE__) . '/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8/CaseInsensitive.php', + 'Zend_Search_Lucene_Analysis_Analyzer_Common_Utf8' => dirname(__FILE__) . '/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8.php', + 'Zend_Search_Lucene_Analysis_Analyzer_Common_Utf8Num_CaseInsensitive' => dirname(__FILE__) . '/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8Num/CaseInsensitive.php', + 'Zend_Search_Lucene_Analysis_Analyzer_Common_Utf8Num' => dirname(__FILE__) . '/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8Num.php', + 'Zend_Search_Lucene_Analysis_Analyzer_Common' => dirname(__FILE__) . '/Zend/Search/Lucene/Analysis/Analyzer/Common.php', + 'Zend_Search_Lucene_Analysis_Analyzer' => dirname(__FILE__) . '/Zend/Search/Lucene/Analysis/Analyzer.php', + 'Zend_Search_Lucene_Analysis_Token' => dirname(__FILE__) . '/Zend/Search/Lucene/Analysis/Token.php', + 'Zend_Search_Lucene_Analysis_TokenFilter_LowerCase' => dirname(__FILE__) . '/Zend/Search/Lucene/Analysis/TokenFilter/LowerCase.php', + 'Zend_Search_Lucene_Analysis_TokenFilter_LowerCaseUtf8' => dirname(__FILE__) . '/Zend/Search/Lucene/Analysis/TokenFilter/LowerCaseUtf8.php', + 'Zend_Search_Lucene_Analysis_TokenFilter_ShortWords' => dirname(__FILE__) . '/Zend/Search/Lucene/Analysis/TokenFilter/ShortWords.php', + 'Zend_Search_Lucene_Analysis_TokenFilter_StopWords' => dirname(__FILE__) . '/Zend/Search/Lucene/Analysis/TokenFilter/StopWords.php', + 'Zend_Search_Lucene_Analysis_TokenFilter' => dirname(__FILE__) . '/Zend/Search/Lucene/Analysis/TokenFilter.php', + 'Zend_Search_Lucene_Document_Docx' => dirname(__FILE__) . '/Zend/Search/Lucene/Document/Docx.php', + 'Zend_Search_Lucene_Document_Exception' => dirname(__FILE__) . '/Zend/Search/Lucene/Document/Exception.php', + 'Zend_Search_Lucene_Document_Html' => dirname(__FILE__) . '/Zend/Search/Lucene/Document/Html.php', + 'Zend_Search_Lucene_Document_OpenXml' => dirname(__FILE__) . '/Zend/Search/Lucene/Document/OpenXml.php', + 'Zend_Search_Lucene_Document_Pptx' => dirname(__FILE__) . '/Zend/Search/Lucene/Document/Pptx.php', + 'Zend_Search_Lucene_Document_Xlsx' => dirname(__FILE__) . '/Zend/Search/Lucene/Document/Xlsx.php', + 'Zend_Search_Lucene_Document' => dirname(__FILE__) . '/Zend/Search/Lucene/Document.php', + 'Zend_Search_Lucene_Exception' => dirname(__FILE__) . '/Zend/Search/Lucene/Exception.php', + 'Zend_Search_Lucene_Field' => dirname(__FILE__) . '/Zend/Search/Lucene/Field.php', + 'Zend_Search_Lucene_FSM' => dirname(__FILE__) . '/Zend/Search/Lucene/FSM.php', + 'Zend_Search_Lucene_FSMAction' => dirname(__FILE__) . '/Zend/Search/Lucene/FSMAction.php', + 'Zend_Search_Lucene_Index_DictionaryLoader' => dirname(__FILE__) . '/Zend/Search/Lucene/Index/DictionaryLoader.php', + 'Zend_Search_Lucene_Index_DocsFilter' => dirname(__FILE__) . '/Zend/Search/Lucene/Index/DocsFilter.php', + 'Zend_Search_Lucene_Index_FieldInfo' => dirname(__FILE__) . '/Zend/Search/Lucene/Index/FieldInfo.php', + 'Zend_Search_Lucene_Index_SegmentInfo' => dirname(__FILE__) . '/Zend/Search/Lucene/Index/SegmentInfo.php', + 'Zend_Search_Lucene_Index_SegmentMerger' => dirname(__FILE__) . '/Zend/Search/Lucene/Index/SegmentMerger.php', + 'Zend_Search_Lucene_Index_SegmentWriter_DocumentWriter' => dirname(__FILE__) . '/Zend/Search/Lucene/Index/SegmentWriter/DocumentWriter.php', + 'Zend_Search_Lucene_Index_SegmentWriter_StreamWriter' => dirname(__FILE__) . '/Zend/Search/Lucene/Index/SegmentWriter/StreamWriter.php', + 'Zend_Search_Lucene_Index_SegmentWriter' => dirname(__FILE__) . '/Zend/Search/Lucene/Index/SegmentWriter.php', + 'Zend_Search_Lucene_Index_Term' => dirname(__FILE__) . '/Zend/Search/Lucene/Index/Term.php', + 'Zend_Search_Lucene_Index_TermInfo' => dirname(__FILE__) . '/Zend/Search/Lucene/Index/TermInfo.php', + 'Zend_Search_Lucene_Index_TermsPriorityQueue' => dirname(__FILE__) . '/Zend/Search/Lucene/Index/TermsPriorityQueue.php', + 'Zend_Search_Lucene_Index_TermsStream_Interface' => dirname(__FILE__) . '/Zend/Search/Lucene/Index/TermsStream/Interface.php', + 'Zend_Search_Lucene_Index_Writer' => dirname(__FILE__) . '/Zend/Search/Lucene/Index/Writer.php', + 'Zend_Search_Lucene_Interface' => dirname(__FILE__) . '/Zend/Search/Lucene/Interface.php', + 'Zend_Search_Lucene_LockManager' => dirname(__FILE__) . '/Zend/Search/Lucene/LockManager.php', + 'Zend_Search_Lucene_MultiSearcher' => dirname(__FILE__) . '/Zend/Search/Lucene/MultiSearcher.php', + 'Zend_Search_Lucene_Interface_MultiSearcher' => dirname(__FILE__) . '/Zend/Search/Lucene/MultiSearcher.php', + 'Zend_Search_Lucene_PriorityQueue' => dirname(__FILE__) . '/Zend/Search/Lucene/PriorityQueue.php', + 'Zend_Search_Lucene_Proxy' => dirname(__FILE__) . '/Zend/Search/Lucene/Proxy.php', + 'Zend_Search_Lucene_Search_BooleanExpressionRecognizer' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/BooleanExpressionRecognizer.php', + 'Zend_Search_Lucene_Search_Highlighter_Default' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Highlighter/Default.php', + 'Zend_Search_Lucene_Search_Highlighter_Interface' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Highlighter/Interface.php', + 'Zend_Search_Lucene_Search_Query_Boolean' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Query/Boolean.php', + 'Zend_Search_Lucene_Search_Query_Empty' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Query/Empty.php', + 'Zend_Search_Lucene_Search_Query_Fuzzy' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Query/Fuzzy.php', + 'Zend_Search_Lucene_Search_Query_Insignificant' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Query/Insignificant.php', + 'Zend_Search_Lucene_Search_Query_MultiTerm' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Query/MultiTerm.php', + 'Zend_Search_Lucene_Search_Query_Phrase' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Query/Phrase.php', + 'Zend_Search_Lucene_Search_Query_Preprocessing_Fuzzy' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Query/Preprocessing/Fuzzy.php', + 'Zend_Search_Lucene_Search_Query_Preprocessing_Phrase' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Query/Preprocessing/Phrase.php', + 'Zend_Search_Lucene_Search_Query_Preprocessing_Term' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Query/Preprocessing/Term.php', + 'Zend_Search_Lucene_Search_Query_Preprocessing' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Query/Preprocessing.php', + 'Zend_Search_Lucene_Search_Query_Range' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Query/Range.php', + 'Zend_Search_Lucene_Search_Query_Term' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Query/Term.php', + 'Zend_Search_Lucene_Search_Query_Wildcard' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Query/Wildcard.php', + 'Zend_Search_Lucene_Search_Query' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Query.php', + 'Zend_Search_Lucene_Search_QueryEntry_Phrase' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/QueryEntry/Phrase.php', + 'Zend_Search_Lucene_Search_QueryEntry_Subquery' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/QueryEntry/Subquery.php', + 'Zend_Search_Lucene_Search_QueryEntry_Term' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/QueryEntry/Term.php', + 'Zend_Search_Lucene_Search_QueryEntry' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/QueryEntry.php', + 'Zend_Search_Lucene_Search_QueryHit' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/QueryHit.php', + 'Zend_Search_Lucene_Search_QueryLexer' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/QueryLexer.php', + 'Zend_Search_Lucene_Search_QueryParser' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/QueryParser.php', + 'Zend_Search_Lucene_Search_QueryParserContext' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/QueryParserContext.php', + 'Zend_Search_Lucene_Search_QueryParserException' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/QueryParserException.php', + 'Zend_Search_Lucene_Search_QueryToken' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/QueryToken.php', + 'Zend_Search_Lucene_Search_Similarity_Default' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Similarity/Default.php', + 'Zend_Search_Lucene_Search_Similarity' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Similarity.php', + 'Zend_Search_Lucene_Search_Weight_Boolean' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Weight/Boolean.php', + 'Zend_Search_Lucene_Search_Weight_Empty' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Weight/Empty.php', + 'Zend_Search_Lucene_Search_Weight_MultiTerm' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Weight/MultiTerm.php', + 'Zend_Search_Lucene_Search_Weight_Phrase' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Weight/Phrase.php', + 'Zend_Search_Lucene_Search_Weight_Term' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Weight/Term.php', + 'Zend_Search_Lucene_Search_Weight' => dirname(__FILE__) . '/Zend/Search/Lucene/Search/Weight.php', + 'Zend_Search_Lucene_Storage_Directory_Filesystem' => dirname(__FILE__) . '/Zend/Search/Lucene/Storage/Directory/Filesystem.php', + 'Zend_Search_Lucene_Storage_Directory' => dirname(__FILE__) . '/Zend/Search/Lucene/Storage/Directory.php', + 'Zend_Search_Lucene_Storage_File_Filesystem' => dirname(__FILE__) . '/Zend/Search/Lucene/Storage/File/Filesystem.php', + 'Zend_Search_Lucene_Storage_File_Memory' => dirname(__FILE__) . '/Zend/Search/Lucene/Storage/File/Memory.php', + 'Zend_Search_Lucene_Storage_File' => dirname(__FILE__) . '/Zend/Search/Lucene/Storage/File.php', + 'Zend_Search_Lucene_TermStreamsPriorityQueue' => dirname(__FILE__) . '/Zend/Search/Lucene/TermStreamsPriorityQueue.php', + 'Zend_Search_Lucene' => dirname(__FILE__) . '/Zend/Search/Lucene.php', + 'Zend_Serializer_Adapter_AdapterAbstract' => dirname(__FILE__) . '/Zend/Serializer/Adapter/AdapterAbstract.php', + 'Zend_Serializer_Adapter_AdapterInterface' => dirname(__FILE__) . '/Zend/Serializer/Adapter/AdapterInterface.php', + 'Zend_Serializer_Adapter_Amf0' => dirname(__FILE__) . '/Zend/Serializer/Adapter/Amf0.php', + 'Zend_Serializer_Adapter_Amf3' => dirname(__FILE__) . '/Zend/Serializer/Adapter/Amf3.php', + 'Zend_Serializer_Adapter_Igbinary' => dirname(__FILE__) . '/Zend/Serializer/Adapter/Igbinary.php', + 'Zend_Serializer_Adapter_Json' => dirname(__FILE__) . '/Zend/Serializer/Adapter/Json.php', + 'Zend_Serializer_Adapter_PhpCode' => dirname(__FILE__) . '/Zend/Serializer/Adapter/PhpCode.php', + 'Zend_Serializer_Adapter_PhpSerialize' => dirname(__FILE__) . '/Zend/Serializer/Adapter/PhpSerialize.php', + 'Zend_Serializer_Adapter_PythonPickle' => dirname(__FILE__) . '/Zend/Serializer/Adapter/PythonPickle.php', + 'Zend_Serializer_Adapter_Wddx' => dirname(__FILE__) . '/Zend/Serializer/Adapter/Wddx.php', + 'Zend_Serializer_Exception' => dirname(__FILE__) . '/Zend/Serializer/Exception.php', + 'Zend_Serializer' => dirname(__FILE__) . '/Zend/Serializer.php', + 'Zend_Server_Abstract' => dirname(__FILE__) . '/Zend/Server/Abstract.php', + 'Zend_Server_Cache' => dirname(__FILE__) . '/Zend/Server/Cache.php', + 'Zend_Server_Definition' => dirname(__FILE__) . '/Zend/Server/Definition.php', + 'Zend_Server_Exception' => dirname(__FILE__) . '/Zend/Server/Exception.php', + 'Zend_Server_Interface' => dirname(__FILE__) . '/Zend/Server/Interface.php', + 'Zend_Server_Method_Callback' => dirname(__FILE__) . '/Zend/Server/Method/Callback.php', + 'Zend_Server_Method_Definition' => dirname(__FILE__) . '/Zend/Server/Method/Definition.php', + 'Zend_Server_Method_Parameter' => dirname(__FILE__) . '/Zend/Server/Method/Parameter.php', + 'Zend_Server_Method_Prototype' => dirname(__FILE__) . '/Zend/Server/Method/Prototype.php', + 'Zend_Server_Reflection_Class' => dirname(__FILE__) . '/Zend/Server/Reflection/Class.php', + 'Zend_Server_Reflection_Exception' => dirname(__FILE__) . '/Zend/Server/Reflection/Exception.php', + 'Zend_Server_Reflection_Function_Abstract' => dirname(__FILE__) . '/Zend/Server/Reflection/Function/Abstract.php', + 'Zend_Server_Reflection_Function' => dirname(__FILE__) . '/Zend/Server/Reflection/Function.php', + 'Zend_Server_Reflection_Method' => dirname(__FILE__) . '/Zend/Server/Reflection/Method.php', + 'Zend_Server_Reflection_Node' => dirname(__FILE__) . '/Zend/Server/Reflection/Node.php', + 'Zend_Server_Reflection_Parameter' => dirname(__FILE__) . '/Zend/Server/Reflection/Parameter.php', + 'Zend_Server_Reflection_Prototype' => dirname(__FILE__) . '/Zend/Server/Reflection/Prototype.php', + 'Zend_Server_Reflection_ReturnValue' => dirname(__FILE__) . '/Zend/Server/Reflection/ReturnValue.php', + 'Zend_Server_Reflection' => dirname(__FILE__) . '/Zend/Server/Reflection.php', + 'Zend_Service_Abstract' => dirname(__FILE__) . '/Zend/Service/Abstract.php', + 'Zend_Service_Akismet' => dirname(__FILE__) . '/Zend/Service/Akismet.php', + 'Zend_Service_Amazon_Abstract' => dirname(__FILE__) . '/Zend/Service/Amazon/Abstract.php', + 'Zend_Service_Amazon_Accessories' => dirname(__FILE__) . '/Zend/Service/Amazon/Accessories.php', + 'Zend_Service_Amazon_Authentication_Exception' => dirname(__FILE__) . '/Zend/Service/Amazon/Authentication/Exception.php', + 'Zend_Service_Amazon_Authentication_S3' => dirname(__FILE__) . '/Zend/Service/Amazon/Authentication/S3.php', + 'Zend_Service_Amazon_Authentication_V1' => dirname(__FILE__) . '/Zend/Service/Amazon/Authentication/V1.php', + 'Zend_Service_Amazon_Authentication_V2' => dirname(__FILE__) . '/Zend/Service/Amazon/Authentication/V2.php', + 'Zend_Service_Amazon_Authentication' => dirname(__FILE__) . '/Zend/Service/Amazon/Authentication.php', + 'Zend_Service_Amazon_CustomerReview' => dirname(__FILE__) . '/Zend/Service/Amazon/CustomerReview.php', + 'Zend_Service_Amazon_Ec2_Abstract' => dirname(__FILE__) . '/Zend/Service/Amazon/Ec2/Abstract.php', + 'Zend_Service_Amazon_Ec2_Availabilityzones' => dirname(__FILE__) . '/Zend/Service/Amazon/Ec2/Availabilityzones.php', + 'Zend_Service_Amazon_Ec2_CloudWatch' => dirname(__FILE__) . '/Zend/Service/Amazon/Ec2/CloudWatch.php', + 'Zend_Service_Amazon_Ec2_Ebs' => dirname(__FILE__) . '/Zend/Service/Amazon/Ec2/Ebs.php', + 'Zend_Service_Amazon_Ec2_Elasticip' => dirname(__FILE__) . '/Zend/Service/Amazon/Ec2/Elasticip.php', + 'Zend_Service_Amazon_Ec2_Exception' => dirname(__FILE__) . '/Zend/Service/Amazon/Ec2/Exception.php', + 'Zend_Service_Amazon_Ec2_Image' => dirname(__FILE__) . '/Zend/Service/Amazon/Ec2/Image.php', + 'Zend_Service_Amazon_Ec2_Instance_Reserved' => dirname(__FILE__) . '/Zend/Service/Amazon/Ec2/Instance/Reserved.php', + 'Zend_Service_Amazon_Ec2_Instance_Windows' => dirname(__FILE__) . '/Zend/Service/Amazon/Ec2/Instance/Windows.php', + 'Zend_Service_Amazon_Ec2_Instance' => dirname(__FILE__) . '/Zend/Service/Amazon/Ec2/Instance.php', + 'Zend_Service_Amazon_Ec2_Keypair' => dirname(__FILE__) . '/Zend/Service/Amazon/Ec2/Keypair.php', + 'Zend_Service_Amazon_Ec2_Region' => dirname(__FILE__) . '/Zend/Service/Amazon/Ec2/Region.php', + 'Zend_Service_Amazon_Ec2_Response' => dirname(__FILE__) . '/Zend/Service/Amazon/Ec2/Response.php', + 'Zend_Service_Amazon_Ec2_Securitygroups' => dirname(__FILE__) . '/Zend/Service/Amazon/Ec2/Securitygroups.php', + 'Zend_Service_Amazon_Ec2' => dirname(__FILE__) . '/Zend/Service/Amazon/Ec2.php', + 'Zend_Service_Amazon_EditorialReview' => dirname(__FILE__) . '/Zend/Service/Amazon/EditorialReview.php', + 'Zend_Service_Amazon_Exception' => dirname(__FILE__) . '/Zend/Service/Amazon/Exception.php', + 'Zend_Service_Amazon_Image' => dirname(__FILE__) . '/Zend/Service/Amazon/Image.php', + 'Zend_Service_Amazon_Item' => dirname(__FILE__) . '/Zend/Service/Amazon/Item.php', + 'Zend_Service_Amazon_ListmaniaList' => dirname(__FILE__) . '/Zend/Service/Amazon/ListmaniaList.php', + 'Zend_Service_Amazon_Offer' => dirname(__FILE__) . '/Zend/Service/Amazon/Offer.php', + 'Zend_Service_Amazon_OfferSet' => dirname(__FILE__) . '/Zend/Service/Amazon/OfferSet.php', + 'Zend_Service_Amazon_Query' => dirname(__FILE__) . '/Zend/Service/Amazon/Query.php', + 'Zend_Service_Amazon_ResultSet' => dirname(__FILE__) . '/Zend/Service/Amazon/ResultSet.php', + 'Zend_Service_Amazon_S3_Exception' => dirname(__FILE__) . '/Zend/Service/Amazon/S3/Exception.php', + 'Zend_Service_Amazon_S3_Stream' => dirname(__FILE__) . '/Zend/Service/Amazon/S3/Stream.php', + 'Zend_Service_Amazon_S3' => dirname(__FILE__) . '/Zend/Service/Amazon/S3.php', + 'Zend_Service_Amazon_SimilarProduct' => dirname(__FILE__) . '/Zend/Service/Amazon/SimilarProduct.php', + 'Zend_Service_Amazon_SimpleDb_Attribute' => dirname(__FILE__) . '/Zend/Service/Amazon/SimpleDb/Attribute.php', + 'Zend_Service_Amazon_SimpleDb_Exception' => dirname(__FILE__) . '/Zend/Service/Amazon/SimpleDb/Exception.php', + 'Zend_Service_Amazon_SimpleDb_Page' => dirname(__FILE__) . '/Zend/Service/Amazon/SimpleDb/Page.php', + 'Zend_Service_Amazon_SimpleDb_Response' => dirname(__FILE__) . '/Zend/Service/Amazon/SimpleDb/Response.php', + 'Zend_Service_Amazon_SimpleDb' => dirname(__FILE__) . '/Zend/Service/Amazon/SimpleDb.php', + 'Zend_Service_Amazon_Sqs_Exception' => dirname(__FILE__) . '/Zend/Service/Amazon/Sqs/Exception.php', + 'Zend_Service_Amazon_Sqs' => dirname(__FILE__) . '/Zend/Service/Amazon/Sqs.php', + 'Zend_Service_Amazon' => dirname(__FILE__) . '/Zend/Service/Amazon.php', + 'Zend_Service_Audioscrobbler' => dirname(__FILE__) . '/Zend/Service/Audioscrobbler.php', + 'Zend_Service_Console_Command_ParameterSource_Argv' => dirname(__FILE__) . '/Zend/Service/Console/Command/ParameterSource/Argv.php', + 'Zend_Service_Console_Command_ParameterSource_ConfigFile' => dirname(__FILE__) . '/Zend/Service/Console/Command/ParameterSource/ConfigFile.php', + 'Zend_Service_Console_Command_ParameterSource_Env' => dirname(__FILE__) . '/Zend/Service/Console/Command/ParameterSource/Env.php', + 'Zend_Service_Console_Command_ParameterSource_ParameterSourceInterface' => dirname(__FILE__) . '/Zend/Service/Console/Command/ParameterSource/ParameterSourceInterface.php', + 'Zend_Service_Console_Command_ParameterSource_Prompt' => dirname(__FILE__) . '/Zend/Service/Console/Command/ParameterSource/Prompt.php', + 'Zend_Service_Console_Command_ParameterSource_StdIn' => dirname(__FILE__) . '/Zend/Service/Console/Command/ParameterSource/StdIn.php', + 'Zend_Service_Console_Command' => dirname(__FILE__) . '/Zend/Service/Console/Command.php', + 'Zend_Service_Console_Exception' => dirname(__FILE__) . '/Zend/Service/Console/Exception.php', + 'Zend_Service_Delicious_Exception' => dirname(__FILE__) . '/Zend/Service/Delicious/Exception.php', + 'Zend_Service_Delicious_Post' => dirname(__FILE__) . '/Zend/Service/Delicious/Post.php', + 'Zend_Service_Delicious_PostList' => dirname(__FILE__) . '/Zend/Service/Delicious/PostList.php', + 'Zend_Service_Delicious_SimplePost' => dirname(__FILE__) . '/Zend/Service/Delicious/SimplePost.php', + 'Zend_Service_Delicious' => dirname(__FILE__) . '/Zend/Service/Delicious.php', + 'Zend_Service_DeveloperGarden_BaseUserService_AccountBalance' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/BaseUserService/AccountBalance.php', + 'Zend_Service_DeveloperGarden_BaseUserService' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/BaseUserService.php', + 'Zend_Service_DeveloperGarden_Client_ClientAbstract' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Client/ClientAbstract.php', + 'Zend_Service_DeveloperGarden_Client_Exception' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Client/Exception.php', + 'Zend_Service_DeveloperGarden_Client_Soap' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Client/Soap.php', + 'Zend_Service_DeveloperGarden_ConferenceCall_ConferenceAccount' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/ConferenceCall/ConferenceAccount.php', + 'Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/ConferenceCall/ConferenceDetail.php', + 'Zend_Service_DeveloperGarden_ConferenceCall_ConferenceSchedule' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/ConferenceCall/ConferenceSchedule.php', + 'Zend_Service_DeveloperGarden_ConferenceCall_Exception' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/ConferenceCall/Exception.php', + 'Zend_Service_DeveloperGarden_ConferenceCall_Participant' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/ConferenceCall/Participant.php', + 'Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/ConferenceCall/ParticipantDetail.php', + 'Zend_Service_DeveloperGarden_ConferenceCall_ParticipantStatus' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/ConferenceCall/ParticipantStatus.php', + 'Zend_Service_DeveloperGarden_ConferenceCall' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/ConferenceCall.php', + 'Zend_Service_DeveloperGarden_Credential' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Credential.php', + 'Zend_Service_DeveloperGarden_Exception' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Exception.php', + 'Zend_Service_DeveloperGarden_IpLocation_IpAddress' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/IpLocation/IpAddress.php', + 'Zend_Service_DeveloperGarden_IpLocation' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/IpLocation.php', + 'Zend_Service_DeveloperGarden_LocalSearch_Exception' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/LocalSearch/Exception.php', + 'Zend_Service_DeveloperGarden_LocalSearch_SearchParameters' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/LocalSearch/SearchParameters.php', + 'Zend_Service_DeveloperGarden_LocalSearch' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/LocalSearch.php', + 'Zend_Service_DeveloperGarden_Request_BaseUserService_ChangeQuotaPool' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/BaseUserService/ChangeQuotaPool.php', + 'Zend_Service_DeveloperGarden_Request_BaseUserService_GetAccountBalance' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/BaseUserService/GetAccountBalance.php', + 'Zend_Service_DeveloperGarden_Request_BaseUserService_GetQuotaInformation' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/BaseUserService/GetQuotaInformation.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_AddConferenceTemplateParticipantRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/AddConferenceTemplateParticipantRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_CommitConferenceRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/CommitConferenceRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_CreateConferenceRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/CreateConferenceRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_CreateConferenceTemplateRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/CreateConferenceTemplateRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_GetConferenceListRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetConferenceListRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_GetConferenceStatusRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetConferenceStatusRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_GetConferenceTemplateListRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetConferenceTemplateListRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_GetConferenceTemplateParticipantRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetConferenceTemplateParticipantRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_GetConferenceTemplateRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetConferenceTemplateRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_GetParticipantStatusRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetParticipantStatusRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_GetRunningConferenceRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/GetRunningConferenceRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_NewParticipantRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/NewParticipantRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_RemoveConferenceRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/RemoveConferenceRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_RemoveConferenceTemplateParticipantRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/RemoveConferenceTemplateParticipantRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_RemoveConferenceTemplateRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/RemoveConferenceTemplateRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_RemoveParticipantRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/RemoveParticipantRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_UpdateConferenceRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/UpdateConferenceRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_UpdateConferenceTemplateParticipantRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/UpdateConferenceTemplateParticipantRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_UpdateConferenceTemplateRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/UpdateConferenceTemplateRequest.php', + 'Zend_Service_DeveloperGarden_Request_ConferenceCall_UpdateParticipantRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/ConferenceCall/UpdateParticipantRequest.php', + 'Zend_Service_DeveloperGarden_Request_Exception' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/Exception.php', + 'Zend_Service_DeveloperGarden_Request_IpLocation_LocateIPRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/IpLocation/LocateIPRequest.php', + 'Zend_Service_DeveloperGarden_Request_LocalSearch_LocalSearchRequest' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/LocalSearch/LocalSearchRequest.php', + 'Zend_Service_DeveloperGarden_Request_RequestAbstract' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/RequestAbstract.php', + 'Zend_Service_DeveloperGarden_Request_SendSms_SendFlashSMS' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/SendSms/SendFlashSMS.php', + 'Zend_Service_DeveloperGarden_Request_SendSms_SendSMS' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/SendSms/SendSMS.php', + 'Zend_Service_DeveloperGarden_Request_SendSms_SendSmsAbstract' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/SendSms/SendSmsAbstract.php', + 'Zend_Service_DeveloperGarden_Request_SmsValidation_GetValidatedNumbers' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/SmsValidation/GetValidatedNumbers.php', + 'Zend_Service_DeveloperGarden_Request_SmsValidation_Invalidate' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/SmsValidation/Invalidate.php', + 'Zend_Service_DeveloperGarden_Request_SmsValidation_SendValidationKeyword' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/SmsValidation/SendValidationKeyword.php', + 'Zend_Service_DeveloperGarden_Request_SmsValidation_Validate' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/SmsValidation/Validate.php', + 'Zend_Service_DeveloperGarden_Request_VoiceButler_CallStatus' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/VoiceButler/CallStatus.php', + 'Zend_Service_DeveloperGarden_Request_VoiceButler_NewCall' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/VoiceButler/NewCall.php', + 'Zend_Service_DeveloperGarden_Request_VoiceButler_NewCallSequenced' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/VoiceButler/NewCallSequenced.php', + 'Zend_Service_DeveloperGarden_Request_VoiceButler_TearDownCall' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/VoiceButler/TearDownCall.php', + 'Zend_Service_DeveloperGarden_Request_VoiceButler_VoiceButlerAbstract' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Request/VoiceButler/VoiceButlerAbstract.php', + 'Zend_Service_DeveloperGarden_Response_BaseType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/BaseType.php', + 'Zend_Service_DeveloperGarden_Response_BaseUserService_ChangeQuotaPoolResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/BaseUserService/ChangeQuotaPoolResponse.php', + 'Zend_Service_DeveloperGarden_Response_BaseUserService_GetAccountBalanceResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/BaseUserService/GetAccountBalanceResponse.php', + 'Zend_Service_DeveloperGarden_Response_BaseUserService_GetQuotaInformationResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/BaseUserService/GetQuotaInformationResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_AddConferenceTemplateParticipantResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/AddConferenceTemplateParticipantResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_AddConferenceTemplateParticipantResponseType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/AddConferenceTemplateParticipantResponseType.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_CCSResponseType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/CCSResponseType.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_CommitConferenceResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/CommitConferenceResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_ConferenceCallAbstract' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/ConferenceCallAbstract.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_CreateConferenceResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/CreateConferenceResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_CreateConferenceResponseType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/CreateConferenceResponseType.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_CreateConferenceTemplateResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/CreateConferenceTemplateResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_CreateConferenceTemplateResponseType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/CreateConferenceTemplateResponseType.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_GetConferenceListResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceListResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_GetConferenceListResponseType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceListResponseType.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_GetConferenceStatusResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceStatusResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_GetConferenceStatusResponseType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceStatusResponseType.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_GetConferenceTemplateListResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceTemplateListResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_GetConferenceTemplateListResponseType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceTemplateListResponseType.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_GetConferenceTemplateParticipantResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceTemplateParticipantResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_GetConferenceTemplateParticipantResponseType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceTemplateParticipantResponseType.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_GetConferenceTemplateResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceTemplateResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_GetConferenceTemplateResponseType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetConferenceTemplateResponseType.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_GetParticipantStatusResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetParticipantStatusResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_GetParticipantStatusResponseType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetParticipantStatusResponseType.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_GetRunningConferenceResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetRunningConferenceResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_GetRunningConferenceResponseType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/GetRunningConferenceResponseType.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_NewParticipantResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/NewParticipantResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_NewParticipantResponseType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/NewParticipantResponseType.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_RemoveConferenceResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/RemoveConferenceResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_RemoveConferenceTemplateParticipantResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/RemoveConferenceTemplateParticipantResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_RemoveConferenceTemplateResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/RemoveConferenceTemplateResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_RemoveParticipantResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/RemoveParticipantResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_UpdateConferenceResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/UpdateConferenceResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_UpdateConferenceTemplateParticipantResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/UpdateConferenceTemplateParticipantResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_UpdateConferenceTemplateResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/UpdateConferenceTemplateResponse.php', + 'Zend_Service_DeveloperGarden_Response_ConferenceCall_UpdateParticipantResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ConferenceCall/UpdateParticipantResponse.php', + 'Zend_Service_DeveloperGarden_Response_Exception' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/Exception.php', + 'Zend_Service_DeveloperGarden_Response_IpLocation_CityType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/IpLocation/CityType.php', + 'Zend_Service_DeveloperGarden_Response_IpLocation_GeoCoordinatesType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/IpLocation/GeoCoordinatesType.php', + 'Zend_Service_DeveloperGarden_Response_IpLocation_IPAddressLocationType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/IpLocation/IPAddressLocationType.php', + 'Zend_Service_DeveloperGarden_Response_IpLocation_LocateIPResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/IpLocation/LocateIPResponse.php', + 'Zend_Service_DeveloperGarden_Response_IpLocation_LocateIPResponseType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/IpLocation/LocateIPResponseType.php', + 'Zend_Service_DeveloperGarden_Response_IpLocation_RegionType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/IpLocation/RegionType.php', + 'Zend_Service_DeveloperGarden_Response_LocalSearch_LocalSearchResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/LocalSearch/LocalSearchResponse.php', + 'Zend_Service_DeveloperGarden_Response_LocalSearch_LocalSearchResponseType' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/LocalSearch/LocalSearchResponseType.php', + 'Zend_Service_DeveloperGarden_Response_ResponseAbstract' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/ResponseAbstract.php', + 'Zend_Service_DeveloperGarden_Response_SecurityTokenServer_Exception' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/SecurityTokenServer/Exception.php', + 'Zend_Service_DeveloperGarden_Response_SecurityTokenServer_GetTokensResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/SecurityTokenServer/GetTokensResponse.php', + 'Zend_Service_DeveloperGarden_Response_SecurityTokenServer_Interface' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/SecurityTokenServer/Interface.php', + 'Zend_Service_DeveloperGarden_Response_SecurityTokenServer_SecurityTokenResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/SecurityTokenServer/SecurityTokenResponse.php', + 'Zend_Service_DeveloperGarden_Response_SendSms_SendFlashSMSResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/SendSms/SendFlashSMSResponse.php', + 'Zend_Service_DeveloperGarden_Response_SendSms_SendSmsAbstract' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/SendSms/SendSmsAbstract.php', + 'Zend_Service_DeveloperGarden_Response_SendSms_SendSMSResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/SendSms/SendSMSResponse.php', + 'Zend_Service_DeveloperGarden_Response_SmsValidation_GetValidatedNumbersResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/SmsValidation/GetValidatedNumbersResponse.php', + 'Zend_Service_DeveloperGarden_Response_SmsValidation_ValidateResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/SmsValidation/InvalidateResponse.php', + 'Zend_Service_DeveloperGarden_Response_SmsValidation_SendValidationKeywordResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/SmsValidation/SendValidationKeywordResponse.php', + 'Zend_Service_DeveloperGarden_Response_SmsValidation_ValidatedNumber' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/SmsValidation/ValidatedNumber.php', + 'Zend_Service_DeveloperGarden_Response_SmsValidation_InvalidateResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/SmsValidation/ValidateResponse.php', + 'Zend_Service_DeveloperGarden_Response_VoiceButler_CallStatus2Response' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/VoiceButler/CallStatus2Response.php', + 'Zend_Service_DeveloperGarden_Response_VoiceButler_CallStatusResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/VoiceButler/CallStatusResponse.php', + 'Zend_Service_DeveloperGarden_Response_VoiceButler_NewCallResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/VoiceButler/NewCallResponse.php', + 'Zend_Service_DeveloperGarden_Response_VoiceButler_NewCallSequencedResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/VoiceButler/NewCallSequencedResponse.php', + 'Zend_Service_DeveloperGarden_Response_VoiceButler_TearDownCallResponse' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/VoiceButler/TearDownCallResponse.php', + 'Zend_Service_DeveloperGarden_Response_VoiceButler_VoiceButlerAbstract' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/Response/VoiceButler/VoiceButlerAbstract.php', + 'Zend_Service_DeveloperGarden_SecurityTokenServer_Cache' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/SecurityTokenServer/Cache.php', + 'Zend_Service_DeveloperGarden_SecurityTokenServer' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/SecurityTokenServer.php', + 'Zend_Service_DeveloperGarden_SendSms' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/SendSms.php', + 'Zend_Service_DeveloperGarden_SmsValidation' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/SmsValidation.php', + 'Zend_Service_DeveloperGarden_VoiceCall' => dirname(__FILE__) . '/Zend/Service/DeveloperGarden/VoiceCall.php', + 'Zend_Service_Ebay_Abstract' => dirname(__FILE__) . '/Zend/Service/Ebay/Abstract.php', + 'Zend_Service_Ebay_Exception' => dirname(__FILE__) . '/Zend/Service/Ebay/Exception.php', + 'Zend_Service_Ebay_Finding_Abstract' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Abstract.php', + 'Zend_Service_Ebay_Finding_Aspect_Histogram_Container' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Aspect/Histogram/Container.php', + 'Zend_Service_Ebay_Finding_Aspect_Histogram_Value_Set' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Aspect/Histogram/Value/Set.php', + 'Zend_Service_Ebay_Finding_Aspect_Histogram_Value' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Aspect/Histogram/Value.php', + 'Zend_Service_Ebay_Finding_Aspect_Set' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Aspect/Set.php', + 'Zend_Service_Ebay_Finding_Aspect' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Aspect.php', + 'Zend_Service_Ebay_Finding_Category_Histogram_Container' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Category/Histogram/Container.php', + 'Zend_Service_Ebay_Finding_Category_Histogram_Set' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Category/Histogram/Set.php', + 'Zend_Service_Ebay_Finding_Category_Histogram' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Category/Histogram.php', + 'Zend_Service_Ebay_Finding_Category' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Category.php', + 'Zend_Service_Ebay_Finding_Error_Data_Set' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Error/Data/Set.php', + 'Zend_Service_Ebay_Finding_Error_Data' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Error/Data.php', + 'Zend_Service_Ebay_Finding_Error_Message' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Error/Message.php', + 'Zend_Service_Ebay_Finding_Exception' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Exception.php', + 'Zend_Service_Ebay_Finding_ListingInfo' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/ListingInfo.php', + 'Zend_Service_Ebay_Finding_PaginationOutput' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/PaginationOutput.php', + 'Zend_Service_Ebay_Finding_Response_Abstract' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Response/Abstract.php', + 'Zend_Service_Ebay_Finding_Response_Histograms' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Response/Histograms.php', + 'Zend_Service_Ebay_Finding_Response_Items' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Response/Items.php', + 'Zend_Service_Ebay_Finding_Response_Keywords' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Response/Keywords.php', + 'Zend_Service_Ebay_Finding_Search_Item_Set' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Search/Item/Set.php', + 'Zend_Service_Ebay_Finding_Search_Item' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Search/Item.php', + 'Zend_Service_Ebay_Finding_Search_Result' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Search/Result.php', + 'Zend_Service_Ebay_Finding_SellerInfo' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/SellerInfo.php', + 'Zend_Service_Ebay_Finding_SellingStatus' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/SellingStatus.php', + 'Zend_Service_Ebay_Finding_Set_Abstract' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Set/Abstract.php', + 'Zend_Service_Ebay_Finding_ShippingInfo' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/ShippingInfo.php', + 'Zend_Service_Ebay_Finding_Storefront' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding/Storefront.php', + 'Zend_Service_Ebay_Finding' => dirname(__FILE__) . '/Zend/Service/Ebay/Finding.php', + 'Zend_Service_Exception' => dirname(__FILE__) . '/Zend/Service/Exception.php', + 'Zend_Service_Flickr_Image' => dirname(__FILE__) . '/Zend/Service/Flickr/Image.php', + 'Zend_Service_Flickr_Result' => dirname(__FILE__) . '/Zend/Service/Flickr/Result.php', + 'Zend_Service_Flickr_ResultSet' => dirname(__FILE__) . '/Zend/Service/Flickr/ResultSet.php', + 'Zend_Service_Flickr' => dirname(__FILE__) . '/Zend/Service/Flickr.php', + 'Zend_Service_LiveDocx_Exception' => dirname(__FILE__) . '/Zend/Service/LiveDocx/Exception.php', + 'Zend_Service_LiveDocx_MailMerge' => dirname(__FILE__) . '/Zend/Service/LiveDocx/MailMerge.php', + 'Zend_Service_LiveDocx' => dirname(__FILE__) . '/Zend/Service/LiveDocx.php', + 'Zend_Service_Rackspace_Abstract' => dirname(__FILE__) . '/Zend/Service/Rackspace/Abstract.php', + 'Zend_Service_Rackspace_Exception' => dirname(__FILE__) . '/Zend/Service/Rackspace/Exception.php', + 'Zend_Service_Rackspace_Files_Container' => dirname(__FILE__) . '/Zend/Service/Rackspace/Files/Container.php', + 'Zend_Service_Rackspace_Files_ContainerList' => dirname(__FILE__) . '/Zend/Service/Rackspace/Files/ContainerList.php', + 'Zend_Service_Rackspace_Files_Exception' => dirname(__FILE__) . '/Zend/Service/Rackspace/Files/Exception.php', + 'Zend_Service_Rackspace_Files_Object' => dirname(__FILE__) . '/Zend/Service/Rackspace/Files/Object.php', + 'Zend_Service_Rackspace_Files_ObjectList' => dirname(__FILE__) . '/Zend/Service/Rackspace/Files/ObjectList.php', + 'Zend_Service_Rackspace_Files' => dirname(__FILE__) . '/Zend/Service/Rackspace/Files.php', + 'Zend_Service_Rackspace_Servers_Exception' => dirname(__FILE__) . '/Zend/Service/Rackspace/Servers/Exception.php', + 'Zend_Service_Rackspace_Servers_Image' => dirname(__FILE__) . '/Zend/Service/Rackspace/Servers/Image.php', + 'Zend_Service_Rackspace_Servers_ImageList' => dirname(__FILE__) . '/Zend/Service/Rackspace/Servers/ImageList.php', + 'Zend_Service_Rackspace_Servers_Server' => dirname(__FILE__) . '/Zend/Service/Rackspace/Servers/Server.php', + 'Zend_Service_Rackspace_Servers_ServerList' => dirname(__FILE__) . '/Zend/Service/Rackspace/Servers/ServerList.php', + 'Zend_Service_Rackspace_Servers_SharedIpGroup' => dirname(__FILE__) . '/Zend/Service/Rackspace/Servers/SharedIpGroup.php', + 'Zend_Service_Rackspace_Servers_SharedIpGroupList' => dirname(__FILE__) . '/Zend/Service/Rackspace/Servers/SharedIpGroupList.php', + 'Zend_Service_Rackspace_Servers' => dirname(__FILE__) . '/Zend/Service/Rackspace/Servers.php', + 'Zend_Service_ReCaptcha_Exception' => dirname(__FILE__) . '/Zend/Service/ReCaptcha/Exception.php', + 'Zend_Service_ReCaptcha_MailHide_Exception' => dirname(__FILE__) . '/Zend/Service/ReCaptcha/MailHide/Exception.php', + 'Zend_Service_ReCaptcha_MailHide' => dirname(__FILE__) . '/Zend/Service/ReCaptcha/MailHide.php', + 'Zend_Service_ReCaptcha_Response' => dirname(__FILE__) . '/Zend/Service/ReCaptcha/Response.php', + 'Zend_Service_ReCaptcha' => dirname(__FILE__) . '/Zend/Service/ReCaptcha.php', + 'Zend_Service_ShortUrl_AbstractShortener' => dirname(__FILE__) . '/Zend/Service/ShortUrl/AbstractShortener.php', + 'Zend_Service_ShortUrl_BitLy' => dirname(__FILE__) . '/Zend/Service/ShortUrl/BitLy.php', + 'Zend_Service_ShortUrl_Exception' => dirname(__FILE__) . '/Zend/Service/ShortUrl/Exception.php', + 'Zend_Service_ShortUrl_IsGd' => dirname(__FILE__) . '/Zend/Service/ShortUrl/IsGd.php', + 'Zend_Service_ShortUrl_JdemCz' => dirname(__FILE__) . '/Zend/Service/ShortUrl/JdemCz.php', + 'Zend_Service_ShortUrl_MetamarkNet' => dirname(__FILE__) . '/Zend/Service/ShortUrl/MetamarkNet.php', + 'Zend_Service_ShortUrl_Shortener' => dirname(__FILE__) . '/Zend/Service/ShortUrl/Shortener.php', + 'Zend_Service_ShortUrl_TinyUrlCom' => dirname(__FILE__) . '/Zend/Service/ShortUrl/TinyUrlCom.php', + 'Zend_Service_SlideShare_Exception' => dirname(__FILE__) . '/Zend/Service/SlideShare/Exception.php', + 'Zend_Service_SlideShare_SlideShow' => dirname(__FILE__) . '/Zend/Service/SlideShare/SlideShow.php', + 'Zend_Service_SlideShare' => dirname(__FILE__) . '/Zend/Service/SlideShare.php', + 'Zend_Service_SqlAzure_Exception' => dirname(__FILE__) . '/Zend/Service/SqlAzure/Exception.php', + 'Zend_Service_SqlAzure_Management_Client' => dirname(__FILE__) . '/Zend/Service/SqlAzure/Management/Client.php', + 'Zend_Service_SqlAzure_Management_Exception' => dirname(__FILE__) . '/Zend/Service/SqlAzure/Management/Exception.php', + 'Zend_Service_SqlAzure_Management_FirewallRuleInstance' => dirname(__FILE__) . '/Zend/Service/SqlAzure/Management/FirewallRuleInstance.php', + 'Zend_Service_SqlAzure_Management_ServerInstance' => dirname(__FILE__) . '/Zend/Service/SqlAzure/Management/ServerInstance.php', + 'Zend_Service_SqlAzure_Management_ServiceEntityAbstract' => dirname(__FILE__) . '/Zend/Service/SqlAzure/Management/ServiceEntityAbstract.php', + 'Zend_Service_StrikeIron_Base' => dirname(__FILE__) . '/Zend/Service/StrikeIron/Base.php', + 'Zend_Service_StrikeIron_Decorator' => dirname(__FILE__) . '/Zend/Service/StrikeIron/Decorator.php', + 'Zend_Service_StrikeIron_Exception' => dirname(__FILE__) . '/Zend/Service/StrikeIron/Exception.php', + 'Zend_Service_StrikeIron_SalesUseTaxBasic' => dirname(__FILE__) . '/Zend/Service/StrikeIron/SalesUseTaxBasic.php', + 'Zend_Service_StrikeIron_USAddressVerification' => dirname(__FILE__) . '/Zend/Service/StrikeIron/USAddressVerification.php', + 'Zend_Service_StrikeIron_ZipCodeInfo' => dirname(__FILE__) . '/Zend/Service/StrikeIron/ZipCodeInfo.php', + 'Zend_Service_StrikeIron' => dirname(__FILE__) . '/Zend/Service/StrikeIron.php', + 'Zend_Service_Technorati_Author' => dirname(__FILE__) . '/Zend/Service/Technorati/Author.php', + 'Zend_Service_Technorati_BlogInfoResult' => dirname(__FILE__) . '/Zend/Service/Technorati/BlogInfoResult.php', + 'Zend_Service_Technorati_CosmosResult' => dirname(__FILE__) . '/Zend/Service/Technorati/CosmosResult.php', + 'Zend_Service_Technorati_CosmosResultSet' => dirname(__FILE__) . '/Zend/Service/Technorati/CosmosResultSet.php', + 'Zend_Service_Technorati_DailyCountsResult' => dirname(__FILE__) . '/Zend/Service/Technorati/DailyCountsResult.php', + 'Zend_Service_Technorati_DailyCountsResultSet' => dirname(__FILE__) . '/Zend/Service/Technorati/DailyCountsResultSet.php', + 'Zend_Service_Technorati_Exception' => dirname(__FILE__) . '/Zend/Service/Technorati/Exception.php', + 'Zend_Service_Technorati_GetInfoResult' => dirname(__FILE__) . '/Zend/Service/Technorati/GetInfoResult.php', + 'Zend_Service_Technorati_KeyInfoResult' => dirname(__FILE__) . '/Zend/Service/Technorati/KeyInfoResult.php', + 'Zend_Service_Technorati_Result' => dirname(__FILE__) . '/Zend/Service/Technorati/Result.php', + 'Zend_Service_Technorati_ResultSet' => dirname(__FILE__) . '/Zend/Service/Technorati/ResultSet.php', + 'Zend_Service_Technorati_SearchResult' => dirname(__FILE__) . '/Zend/Service/Technorati/SearchResult.php', + 'Zend_Service_Technorati_SearchResultSet' => dirname(__FILE__) . '/Zend/Service/Technorati/SearchResultSet.php', + 'Zend_Service_Technorati_TagResult' => dirname(__FILE__) . '/Zend/Service/Technorati/TagResult.php', + 'Zend_Service_Technorati_TagResultSet' => dirname(__FILE__) . '/Zend/Service/Technorati/TagResultSet.php', + 'Zend_Service_Technorati_TagsResult' => dirname(__FILE__) . '/Zend/Service/Technorati/TagsResult.php', + 'Zend_Service_Technorati_TagsResultSet' => dirname(__FILE__) . '/Zend/Service/Technorati/TagsResultSet.php', + 'Zend_Service_Technorati_Utils' => dirname(__FILE__) . '/Zend/Service/Technorati/Utils.php', + 'Zend_Service_Technorati_Weblog' => dirname(__FILE__) . '/Zend/Service/Technorati/Weblog.php', + 'Zend_Service_Technorati' => dirname(__FILE__) . '/Zend/Service/Technorati.php', + 'Zend_Service_Twitter_Exception' => dirname(__FILE__) . '/Zend/Service/Twitter/Exception.php', + 'Zend_Service_Twitter_Response' => dirname(__FILE__) . '/Zend/Service/Twitter/Response.php', + 'Zend_Service_Twitter' => dirname(__FILE__) . '/Zend/Service/Twitter.php', + 'Zend_Service_WindowsAzure_CommandLine_Certificate' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/CommandLine/Certificate.php', + 'Zend_Service_WindowsAzure_CommandLine_Deployment' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/CommandLine/Deployment.php', + 'Zend_Service_WindowsAzure_CommandLine_GetAsynchronousOperation' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/CommandLine/GetAsynchronousOperation.php', + 'Zend_Service_WindowsAzure_CommandLine_Package' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/CommandLine/Package.php', + 'Zend_Service_WindowsAzure_CommandLine_PackageScaffolder_PackageScaffolderAbstract' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/CommandLine/PackageScaffolder/PackageScaffolderAbstract.php', + 'Scaffolder' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/index.php', + 'Zend_Service_WindowsAzure_CommandLine_Service' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/CommandLine/Service.php', + 'Zend_Service_WindowsAzure_CommandLine_Storage' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/CommandLine/Storage.php', + 'Zend_Service_WindowsAzure_Credentials_CredentialsAbstract' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Credentials/CredentialsAbstract.php', + 'Zend_Service_WindowsAzure_Credentials_Exception' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Credentials/Exception.php', + 'Zend_Service_WindowsAzure_Credentials_SharedAccessSignature' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Credentials/SharedAccessSignature.php', + 'Zend_Service_WindowsAzure_Credentials_SharedKey' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Credentials/SharedKey.php', + 'Zend_Service_WindowsAzure_Credentials_SharedKeyLite' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Credentials/SharedKeyLite.php', + 'Zend_Service_WindowsAzure_Diagnostics_ConfigurationDataSources' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Diagnostics/ConfigurationDataSources.php', + 'Zend_Service_WindowsAzure_Diagnostics_ConfigurationDiagnosticInfrastructureLogs' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Diagnostics/ConfigurationDiagnosticInfrastructureLogs.php', + 'Zend_Service_WindowsAzure_Diagnostics_ConfigurationDirectories' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Diagnostics/ConfigurationDirectories.php', + 'Zend_Service_WindowsAzure_Diagnostics_ConfigurationInstance' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Diagnostics/ConfigurationInstance.php', + 'Zend_Service_WindowsAzure_Diagnostics_ConfigurationLogs' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Diagnostics/ConfigurationLogs.php', + 'Zend_Service_WindowsAzure_Diagnostics_ConfigurationObjectBaseAbstract' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Diagnostics/ConfigurationObjectBaseAbstract.php', + 'Zend_Service_WindowsAzure_Diagnostics_ConfigurationPerformanceCounters' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Diagnostics/ConfigurationPerformanceCounters.php', + 'Zend_Service_WindowsAzure_Diagnostics_ConfigurationWindowsEventLog' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Diagnostics/ConfigurationWindowsEventLog.php', + 'Zend_Service_WindowsAzure_Diagnostics_DirectoryConfigurationSubscription' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Diagnostics/DirectoryConfigurationSubscription.php', + 'Zend_Service_WindowsAzure_Diagnostics_Exception' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Diagnostics/Exception.php', + 'Zend_Service_WindowsAzure_Diagnostics_LogLevel' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Diagnostics/LogLevel.php', + 'Zend_Service_WindowsAzure_Diagnostics_Manager' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Diagnostics/Manager.php', + 'Zend_Service_WindowsAzure_Diagnostics_PerformanceCounterSubscription' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Diagnostics/PerformanceCounterSubscription.php', + 'Zend_Service_WindowsAzure_Exception' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Exception.php', + 'Zend_Service_WindowsAzure_Log_Exception' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Log/Exception.php', + 'Zend_Service_WindowsAzure_Log_Formatter_WindowsAzure' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Log/Formatter/WindowsAzure.php', + 'Zend_Service_WindowsAzure_Log_Writer_WindowsAzure' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Log/Writer/WindowsAzure.php', + 'Zend_Service_WindowsAzure_Management_AffinityGroupInstance' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Management/AffinityGroupInstance.php', + 'Zend_Service_WindowsAzure_Management_CertificateInstance' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Management/CertificateInstance.php', + 'Zend_Service_WindowsAzure_Management_Client' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Management/Client.php', + 'Zend_Service_WindowsAzure_Management_DeploymentInstance' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Management/DeploymentInstance.php', + 'Zend_Service_WindowsAzure_Management_Exception' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Management/Exception.php', + 'Zend_Service_WindowsAzure_Management_HostedServiceInstance' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Management/HostedServiceInstance.php', + 'Zend_Service_WindowsAzure_Management_LocationInstance' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Management/LocationInstance.php', + 'Zend_Service_WindowsAzure_Management_OperatingSystemFamilyInstance' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Management/OperatingSystemFamilyInstance.php', + 'Zend_Service_WindowsAzure_Management_OperatingSystemInstance' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Management/OperatingSystemInstance.php', + 'Zend_Service_WindowsAzure_Management_OperationStatusInstance' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Management/OperationStatusInstance.php', + 'Zend_Service_WindowsAzure_Management_ServiceEntityAbstract' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Management/ServiceEntityAbstract.php', + 'Zend_Service_WindowsAzure_Management_StorageServiceInstance' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Management/StorageServiceInstance.php', + 'Zend_Service_WindowsAzure_Management_SubscriptionOperationInstance' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Management/SubscriptionOperationInstance.php', + 'Zend_Service_WindowsAzure_RetryPolicy_Exception' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/RetryPolicy/Exception.php', + 'Zend_Service_WindowsAzure_RetryPolicy_NoRetry' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/RetryPolicy/NoRetry.php', + 'Zend_Service_WindowsAzure_RetryPolicy_RetryN' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/RetryPolicy/RetryN.php', + 'Zend_Service_WindowsAzure_RetryPolicy_RetryPolicyAbstract' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/RetryPolicy/RetryPolicyAbstract.php', + 'Zend_Service_WindowsAzure_SessionHandler' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/SessionHandler.php', + 'Zend_Service_WindowsAzure_Storage_Batch' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage/Batch.php', + 'Zend_Service_WindowsAzure_Storage_BatchStorageAbstract' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage/BatchStorageAbstract.php', + 'Zend_Service_WindowsAzure_Storage_Blob_Stream' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage/Blob/Stream.php', + 'Zend_Service_WindowsAzure_Storage_Blob' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage/Blob.php', + 'Zend_Service_WindowsAzure_Storage_BlobContainer' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage/BlobContainer.php', + 'Zend_Service_WindowsAzure_Storage_BlobInstance' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage/BlobInstance.php', + 'Zend_Service_WindowsAzure_Storage_DynamicTableEntity' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage/DynamicTableEntity.php', + 'Zend_Service_WindowsAzure_Storage_LeaseInstance' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage/LeaseInstance.php', + 'Zend_Service_WindowsAzure_Storage_PageRegionInstance' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage/PageRegionInstance.php', + 'Zend_Service_WindowsAzure_Storage_Queue' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage/Queue.php', + 'Zend_Service_WindowsAzure_Storage_QueueInstance' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage/QueueInstance.php', + 'Zend_Service_WindowsAzure_Storage_QueueMessage' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage/QueueMessage.php', + 'Zend_Service_WindowsAzure_Storage_SignedIdentifier' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage/SignedIdentifier.php', + 'Zend_Service_WindowsAzure_Storage_StorageEntityAbstract' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage/StorageEntityAbstract.php', + 'Zend_Service_WindowsAzure_Storage_Table' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage/Table.php', + 'Zend_Service_WindowsAzure_Storage_TableEntity' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage/TableEntity.php', + 'Zend_Service_WindowsAzure_Storage_TableEntityQuery' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage/TableEntityQuery.php', + 'Zend_Service_WindowsAzure_Storage_TableInstance' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage/TableInstance.php', + 'Zend_Service_WindowsAzure_Storage' => dirname(__FILE__) . '/Zend/Service/WindowsAzure/Storage.php', + 'Zend_Service_Yahoo_Image' => dirname(__FILE__) . '/Zend/Service/Yahoo/Image.php', + 'Zend_Service_Yahoo_ImageResult' => dirname(__FILE__) . '/Zend/Service/Yahoo/ImageResult.php', + 'Zend_Service_Yahoo_ImageResultSet' => dirname(__FILE__) . '/Zend/Service/Yahoo/ImageResultSet.php', + 'Zend_Service_Yahoo_InlinkDataResult' => dirname(__FILE__) . '/Zend/Service/Yahoo/InlinkDataResult.php', + 'Zend_Service_Yahoo_InlinkDataResultSet' => dirname(__FILE__) . '/Zend/Service/Yahoo/InlinkDataResultSet.php', + 'Zend_Service_Yahoo_LocalResult' => dirname(__FILE__) . '/Zend/Service/Yahoo/LocalResult.php', + 'Zend_Service_Yahoo_LocalResultSet' => dirname(__FILE__) . '/Zend/Service/Yahoo/LocalResultSet.php', + 'Zend_Service_Yahoo_NewsResult' => dirname(__FILE__) . '/Zend/Service/Yahoo/NewsResult.php', + 'Zend_Service_Yahoo_NewsResultSet' => dirname(__FILE__) . '/Zend/Service/Yahoo/NewsResultSet.php', + 'Zend_Service_Yahoo_PageDataResult' => dirname(__FILE__) . '/Zend/Service/Yahoo/PageDataResult.php', + 'Zend_Service_Yahoo_PageDataResultSet' => dirname(__FILE__) . '/Zend/Service/Yahoo/PageDataResultSet.php', + 'Zend_Service_Yahoo_Result' => dirname(__FILE__) . '/Zend/Service/Yahoo/Result.php', + 'Zend_Service_Yahoo_ResultSet' => dirname(__FILE__) . '/Zend/Service/Yahoo/ResultSet.php', + 'Zend_Service_Yahoo_VideoResult' => dirname(__FILE__) . '/Zend/Service/Yahoo/VideoResult.php', + 'Zend_Service_Yahoo_VideoResultSet' => dirname(__FILE__) . '/Zend/Service/Yahoo/VideoResultSet.php', + 'Zend_Service_Yahoo_WebResult' => dirname(__FILE__) . '/Zend/Service/Yahoo/WebResult.php', + 'Zend_Service_Yahoo_WebResultSet' => dirname(__FILE__) . '/Zend/Service/Yahoo/WebResultSet.php', + 'Zend_Service_Yahoo' => dirname(__FILE__) . '/Zend/Service/Yahoo.php', + 'Zend_Session_Abstract' => dirname(__FILE__) . '/Zend/Session/Abstract.php', + 'Zend_Session_Exception' => dirname(__FILE__) . '/Zend/Session/Exception.php', + 'Zend_Session_Namespace' => dirname(__FILE__) . '/Zend/Session/Namespace.php', + 'Zend_Session_SaveHandler_DbTable' => dirname(__FILE__) . '/Zend/Session/SaveHandler/DbTable.php', + 'Zend_Session_SaveHandler_Exception' => dirname(__FILE__) . '/Zend/Session/SaveHandler/Exception.php', + 'Zend_Session_SaveHandler_Interface' => dirname(__FILE__) . '/Zend/Session/SaveHandler/Interface.php', + 'Zend_Session_Validator_Abstract' => dirname(__FILE__) . '/Zend/Session/Validator/Abstract.php', + 'Zend_Session_Validator_HttpUserAgent' => dirname(__FILE__) . '/Zend/Session/Validator/HttpUserAgent.php', + 'Zend_Session_Validator_Interface' => dirname(__FILE__) . '/Zend/Session/Validator/Interface.php', + 'Zend_Session' => dirname(__FILE__) . '/Zend/Session.php', + 'Zend_Soap_AutoDiscover_Exception' => dirname(__FILE__) . '/Zend/Soap/AutoDiscover/Exception.php', + 'Zend_Soap_AutoDiscover' => dirname(__FILE__) . '/Zend/Soap/AutoDiscover.php', + 'Zend_Soap_Client_Common' => dirname(__FILE__) . '/Zend/Soap/Client/Common.php', + 'Zend_Soap_Client_DotNet' => dirname(__FILE__) . '/Zend/Soap/Client/DotNet.php', + 'Zend_Soap_Client_Exception' => dirname(__FILE__) . '/Zend/Soap/Client/Exception.php', + 'Zend_Soap_Client_Local' => dirname(__FILE__) . '/Zend/Soap/Client/Local.php', + 'Zend_Soap_Client' => dirname(__FILE__) . '/Zend/Soap/Client.php', + 'Zend_Soap_Server_Exception' => dirname(__FILE__) . '/Zend/Soap/Server/Exception.php', + 'Zend_Soap_Server_Proxy' => dirname(__FILE__) . '/Zend/Soap/Server/Proxy.php', + 'Zend_Soap_Server' => dirname(__FILE__) . '/Zend/Soap/Server.php', + 'Zend_Soap_Wsdl_Exception' => dirname(__FILE__) . '/Zend/Soap/Wsdl/Exception.php', + 'Zend_Soap_Wsdl_Strategy_Abstract' => dirname(__FILE__) . '/Zend/Soap/Wsdl/Strategy/Abstract.php', + 'Zend_Soap_Wsdl_Strategy_AnyType' => dirname(__FILE__) . '/Zend/Soap/Wsdl/Strategy/AnyType.php', + 'Zend_Soap_Wsdl_Strategy_ArrayOfTypeComplex' => dirname(__FILE__) . '/Zend/Soap/Wsdl/Strategy/ArrayOfTypeComplex.php', + 'Zend_Soap_Wsdl_Strategy_ArrayOfTypeSequence' => dirname(__FILE__) . '/Zend/Soap/Wsdl/Strategy/ArrayOfTypeSequence.php', + 'Zend_Soap_Wsdl_Strategy_Composite' => dirname(__FILE__) . '/Zend/Soap/Wsdl/Strategy/Composite.php', + 'Zend_Soap_Wsdl_Strategy_DefaultComplexType' => dirname(__FILE__) . '/Zend/Soap/Wsdl/Strategy/DefaultComplexType.php', + 'Zend_Soap_Wsdl_Strategy_Interface' => dirname(__FILE__) . '/Zend/Soap/Wsdl/Strategy/Interface.php', + 'Zend_Soap_Wsdl' => dirname(__FILE__) . '/Zend/Soap/Wsdl.php', + 'Zend_Stdlib_CallbackHandler' => dirname(__FILE__) . '/Zend/Stdlib/CallbackHandler.php', + 'Zend_Stdlib_Exception_InvalidCallbackException' => dirname(__FILE__) . '/Zend/Stdlib/Exception/InvalidCallbackException.php', + 'Zend_Stdlib_Exception' => dirname(__FILE__) . '/Zend/Stdlib/Exception.php', + 'Zend_Stdlib_PriorityQueue' => dirname(__FILE__) . '/Zend/Stdlib/PriorityQueue.php', + 'SplPriorityQueue' => dirname(__FILE__) . '/Zend/Stdlib/SplPriorityQueue.php', + 'Zend_Stdlib_SplPriorityQueue' => dirname(__FILE__) . '/Zend/Stdlib/SplPriorityQueue.php', + 'Zend_Tag_Cloud_Decorator_Cloud' => dirname(__FILE__) . '/Zend/Tag/Cloud/Decorator/Cloud.php', + 'Zend_Tag_Cloud_Decorator_Exception' => dirname(__FILE__) . '/Zend/Tag/Cloud/Decorator/Exception.php', + 'Zend_Tag_Cloud_Decorator_HtmlCloud' => dirname(__FILE__) . '/Zend/Tag/Cloud/Decorator/HtmlCloud.php', + 'Zend_Tag_Cloud_Decorator_HtmlTag' => dirname(__FILE__) . '/Zend/Tag/Cloud/Decorator/HtmlTag.php', + 'Zend_Tag_Cloud_Decorator_Tag' => dirname(__FILE__) . '/Zend/Tag/Cloud/Decorator/Tag.php', + 'Zend_Tag_Cloud_Exception' => dirname(__FILE__) . '/Zend/Tag/Cloud/Exception.php', + 'Zend_Tag_Cloud' => dirname(__FILE__) . '/Zend/Tag/Cloud.php', + 'Zend_Tag_Exception' => dirname(__FILE__) . '/Zend/Tag/Exception.php', + 'Zend_Tag_Item' => dirname(__FILE__) . '/Zend/Tag/Item.php', + 'Zend_Tag_ItemList' => dirname(__FILE__) . '/Zend/Tag/ItemList.php', + 'Zend_Tag_Taggable' => dirname(__FILE__) . '/Zend/Tag/Taggable.php', + 'Zend_Test_DbAdapter' => dirname(__FILE__) . '/Zend/Test/DbAdapter.php', + 'Zend_Test_DbStatement' => dirname(__FILE__) . '/Zend/Test/DbStatement.php', + 'Zend_Test_PHPUnit_Constraint_DomQuery' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Constraint/DomQuery.php', + 'Zend_Test_PHPUnit_Constraint_DomQuery34' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Constraint/DomQuery34.php', + 'Zend_Test_PHPUnit_Constraint_DomQuery37' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Constraint/DomQuery37.php', + 'Zend_Test_PHPUnit_Constraint_DomQuery41' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Constraint/DomQuery41.php', + 'Zend_Test_PHPUnit_Constraint_Exception' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Constraint/Exception.php', + 'Zend_Test_PHPUnit_Constraint_Redirect' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Constraint/Redirect.php', + 'Zend_Test_PHPUnit_Constraint_Redirect34' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Constraint/Redirect34.php', + 'Zend_Test_PHPUnit_Constraint_Redirect37' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Constraint/Redirect37.php', + 'Zend_Test_PHPUnit_Constraint_Redirect41' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Constraint/Redirect41.php', + 'Zend_Test_PHPUnit_Constraint_ResponseHeader' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Constraint/ResponseHeader.php', + 'Zend_Test_PHPUnit_Constraint_ResponseHeader34' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Constraint/ResponseHeader34.php', + 'Zend_Test_PHPUnit_Constraint_ResponseHeader37' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Constraint/ResponseHeader37.php', + 'Zend_Test_PHPUnit_Constraint_ResponseHeader41' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Constraint/ResponseHeader41.php', + 'Zend_Test_PHPUnit_ControllerTestCase' => dirname(__FILE__) . '/Zend/Test/PHPUnit/ControllerTestCase.php', + 'Zend_Test_PHPUnit_DatabaseTestCase' => dirname(__FILE__) . '/Zend/Test/PHPUnit/DatabaseTestCase.php', + 'Zend_Test_PHPUnit_Db_Connection' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Db/Connection.php', + 'Zend_Test_PHPUnit_Db_DataSet_DbRowset' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Db/DataSet/DbRowset.php', + 'Zend_Test_PHPUnit_Db_DataSet_DbTable' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Db/DataSet/DbTable.php', + 'Zend_Test_PHPUnit_Db_DataSet_DbTableDataSet' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Db/DataSet/DbTableDataSet.php', + 'Zend_Test_PHPUnit_Db_DataSet_QueryDataSet' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Db/DataSet/QueryDataSet.php', + 'Zend_Test_PHPUnit_Db_DataSet_QueryTable' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Db/DataSet/QueryTable.php', + 'Zend_Test_PHPUnit_Db_Exception' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Db/Exception.php', + 'Zend_Test_PHPUnit_Db_Metadata_Generic' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Db/Metadata/Generic.php', + 'Zend_Test_PHPUnit_Db_Operation_DeleteAll' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Db/Operation/DeleteAll.php', + 'Zend_Test_PHPUnit_Db_Operation_Insert' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Db/Operation/Insert.php', + 'Zend_Test_PHPUnit_Db_Operation_Truncate' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Db/Operation/Truncate.php', + 'Zend_Test_PHPUnit_Db_SimpleTester' => dirname(__FILE__) . '/Zend/Test/PHPUnit/Db/SimpleTester.php', + 'Zend_Text_Exception' => dirname(__FILE__) . '/Zend/Text/Exception.php', + 'Zend_Text_Figlet_Exception' => dirname(__FILE__) . '/Zend/Text/Figlet/Exception.php', + 'Zend_Text_Figlet' => dirname(__FILE__) . '/Zend/Text/Figlet.php', + 'Zend_Text_MultiByte' => dirname(__FILE__) . '/Zend/Text/MultiByte.php', + 'Zend_Text_Table_Column' => dirname(__FILE__) . '/Zend/Text/Table/Column.php', + 'Zend_Text_Table_Decorator_Ascii' => dirname(__FILE__) . '/Zend/Text/Table/Decorator/Ascii.php', + 'Zend_Text_Table_Decorator_Interface' => dirname(__FILE__) . '/Zend/Text/Table/Decorator/Interface.php', + 'Zend_Text_Table_Decorator_Unicode' => dirname(__FILE__) . '/Zend/Text/Table/Decorator/Unicode.php', + 'Zend_Text_Table_Exception' => dirname(__FILE__) . '/Zend/Text/Table/Exception.php', + 'Zend_Text_Table_Row' => dirname(__FILE__) . '/Zend/Text/Table/Row.php', + 'Zend_Text_Table' => dirname(__FILE__) . '/Zend/Text/Table.php', + 'Zend_TimeSync_Exception' => dirname(__FILE__) . '/Zend/TimeSync/Exception.php', + 'Zend_TimeSync_Ntp' => dirname(__FILE__) . '/Zend/TimeSync/Ntp.php', + 'Zend_TimeSync_Protocol' => dirname(__FILE__) . '/Zend/TimeSync/Protocol.php', + 'Zend_TimeSync_Sntp' => dirname(__FILE__) . '/Zend/TimeSync/Sntp.php', + 'Zend_TimeSync' => dirname(__FILE__) . '/Zend/TimeSync.php', + 'Zend_Tool_Framework_Action_Base' => dirname(__FILE__) . '/Zend/Tool/Framework/Action/Base.php', + 'Zend_Tool_Framework_Action_Exception' => dirname(__FILE__) . '/Zend/Tool/Framework/Action/Exception.php', + 'Zend_Tool_Framework_Action_Interface' => dirname(__FILE__) . '/Zend/Tool/Framework/Action/Interface.php', + 'Zend_Tool_Framework_Action_Repository' => dirname(__FILE__) . '/Zend/Tool/Framework/Action/Repository.php', + 'Zend_Tool_Framework_Client_Abstract' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Abstract.php', + 'Zend_Tool_Framework_Client_Config' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Config.php', + 'Zend_Tool_Framework_Client_Console_ArgumentParser' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Console/ArgumentParser.php', + 'Zend_Tool_Framework_Client_Console_HelpSystem' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Console/HelpSystem.php', + 'Zend_Tool_Framework_Client_Console_Manifest' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Console/Manifest.php', + 'Zend_Tool_Framework_Client_Console_ResponseDecorator_AlignCenter' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Console/ResponseDecorator/AlignCenter.php', + 'Zend_Tool_Framework_Client_Console_ResponseDecorator_Blockize' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Console/ResponseDecorator/Blockize.php', + 'Zend_Tool_Framework_Client_Console_ResponseDecorator_Colorizer' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Console/ResponseDecorator/Colorizer.php', + 'Zend_Tool_Framework_Client_Console_ResponseDecorator_Indention' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Console/ResponseDecorator/Indention.php', + 'Zend_Tool_Framework_Client_Console' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Console.php', + 'Zend_Tool_Framework_Client_Exception' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Exception.php', + 'Zend_Tool_Framework_Client_Interactive_InputHandler' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Interactive/InputHandler.php', + 'Zend_Tool_Framework_Client_Interactive_InputInterface' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Interactive/InputInterface.php', + 'Zend_Tool_Framework_Client_Interactive_InputRequest' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Interactive/InputRequest.php', + 'Zend_Tool_Framework_Client_Interactive_InputResponse' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Interactive/InputResponse.php', + 'Zend_Tool_Framework_Client_Interactive_OutputInterface' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Interactive/OutputInterface.php', + 'Zend_Tool_Framework_Client_Manifest' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Manifest.php', + 'Zend_Tool_Framework_Client_Request' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Request.php', + 'Zend_Tool_Framework_Client_Response_ContentDecorator_Interface' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Response/ContentDecorator/Interface.php', + 'Zend_Tool_Framework_Client_Response_ContentDecorator_Separator' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Response/ContentDecorator/Separator.php', + 'Zend_Tool_Framework_Client_Response' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Response.php', + 'Zend_Tool_Framework_Client_Storage_AdapterInterface' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Storage/AdapterInterface.php', + 'Zend_Tool_Framework_Client_Storage_Directory' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Storage/Directory.php', + 'Zend_Tool_Framework_Client_Storage' => dirname(__FILE__) . '/Zend/Tool/Framework/Client/Storage.php', + 'Zend_Tool_Framework_Exception' => dirname(__FILE__) . '/Zend/Tool/Framework/Exception.php', + 'Zend_Tool_Framework_Loader_Abstract' => dirname(__FILE__) . '/Zend/Tool/Framework/Loader/Abstract.php', + 'Zend_Tool_Framework_Loader_BasicLoader' => dirname(__FILE__) . '/Zend/Tool/Framework/Loader/BasicLoader.php', + 'Zend_Tool_Framework_Loader_IncludePathLoader_RecursiveFilterIterator' => dirname(__FILE__) . '/Zend/Tool/Framework/Loader/IncludePathLoader/RecursiveFilterIterator.php', + 'Zend_Tool_Framework_Loader_IncludePathLoader' => dirname(__FILE__) . '/Zend/Tool/Framework/Loader/IncludePathLoader.php', + 'Zend_Tool_Framework_Loader_Interface' => dirname(__FILE__) . '/Zend/Tool/Framework/Loader/Interface.php', + 'Zend_Tool_Framework_Manifest_ActionManifestable' => dirname(__FILE__) . '/Zend/Tool/Framework/Manifest/ActionManifestable.php', + 'Zend_Tool_Framework_Manifest_ActionMetadata' => dirname(__FILE__) . '/Zend/Tool/Framework/Manifest/ActionMetadata.php', + 'Zend_Tool_Framework_Manifest_Exception' => dirname(__FILE__) . '/Zend/Tool/Framework/Manifest/Exception.php', + 'Zend_Tool_Framework_Manifest_Indexable' => dirname(__FILE__) . '/Zend/Tool/Framework/Manifest/Indexable.php', + 'Zend_Tool_Framework_Manifest_Interface' => dirname(__FILE__) . '/Zend/Tool/Framework/Manifest/Interface.php', + 'Zend_Tool_Framework_Manifest_Metadata' => dirname(__FILE__) . '/Zend/Tool/Framework/Manifest/Metadata.php', + 'Zend_Tool_Framework_Manifest_MetadataManifestable' => dirname(__FILE__) . '/Zend/Tool/Framework/Manifest/MetadataManifestable.php', + 'Zend_Tool_Framework_Manifest_ProviderManifestable' => dirname(__FILE__) . '/Zend/Tool/Framework/Manifest/ProviderManifestable.php', + 'Zend_Tool_Framework_Manifest_ProviderMetadata' => dirname(__FILE__) . '/Zend/Tool/Framework/Manifest/ProviderMetadata.php', + 'Zend_Tool_Framework_Manifest_Repository' => dirname(__FILE__) . '/Zend/Tool/Framework/Manifest/Repository.php', + 'Zend_Tool_Framework_Metadata_Attributable' => dirname(__FILE__) . '/Zend/Tool/Framework/Metadata/Attributable.php', + 'Zend_Tool_Framework_Metadata_Basic' => dirname(__FILE__) . '/Zend/Tool/Framework/Metadata/Basic.php', + 'Zend_Tool_Framework_Metadata_Dynamic' => dirname(__FILE__) . '/Zend/Tool/Framework/Metadata/Dynamic.php', + 'Zend_Tool_Framework_Metadata_Interface' => dirname(__FILE__) . '/Zend/Tool/Framework/Metadata/Interface.php', + 'Zend_Tool_Framework_Metadata_Tool' => dirname(__FILE__) . '/Zend/Tool/Framework/Metadata/Tool.php', + 'Zend_Tool_Framework_Provider_Abstract' => dirname(__FILE__) . '/Zend/Tool/Framework/Provider/Abstract.php', + 'Zend_Tool_Framework_Provider_DocblockManifestInterface' => dirname(__FILE__) . '/Zend/Tool/Framework/Provider/DocblockManifestable.php', + 'Zend_Tool_Framework_Provider_Exception' => dirname(__FILE__) . '/Zend/Tool/Framework/Provider/Exception.php', + 'Zend_Tool_Framework_Provider_Initializable' => dirname(__FILE__) . '/Zend/Tool/Framework/Provider/Initializable.php', + 'Zend_Tool_Framework_Provider_Interactable' => dirname(__FILE__) . '/Zend/Tool/Framework/Provider/Interactable.php', + 'Zend_Tool_Framework_Provider_Interface' => dirname(__FILE__) . '/Zend/Tool/Framework/Provider/Interface.php', + 'Zend_Tool_Framework_Provider_Pretendable' => dirname(__FILE__) . '/Zend/Tool/Framework/Provider/Pretendable.php', + 'Zend_Tool_Framework_Provider_Repository' => dirname(__FILE__) . '/Zend/Tool/Framework/Provider/Repository.php', + 'Zend_Tool_Framework_Provider_Signature' => dirname(__FILE__) . '/Zend/Tool/Framework/Provider/Signature.php', + 'Zend_Tool_Framework_Registry_EnabledInterface' => dirname(__FILE__) . '/Zend/Tool/Framework/Registry/EnabledInterface.php', + 'Zend_Tool_Framework_Registry_Exception' => dirname(__FILE__) . '/Zend/Tool/Framework/Registry/Exception.php', + 'Zend_Tool_Framework_Registry_Interface' => dirname(__FILE__) . '/Zend/Tool/Framework/Registry/Interface.php', + 'Zend_Tool_Framework_Registry' => dirname(__FILE__) . '/Zend/Tool/Framework/Registry.php', + 'Zend_Tool_Framework_System_Action_Create' => dirname(__FILE__) . '/Zend/Tool/Framework/System/Action/Create.php', + 'Zend_Tool_Framework_System_Action_Delete' => dirname(__FILE__) . '/Zend/Tool/Framework/System/Action/Delete.php', + 'Zend_Tool_Framework_System_Manifest' => dirname(__FILE__) . '/Zend/Tool/Framework/System/Manifest.php', + 'Zend_Tool_Framework_System_Provider_Config' => dirname(__FILE__) . '/Zend/Tool/Framework/System/Provider/Config.php', + 'Zend_Tool_Framework_System_Provider_Manifest' => dirname(__FILE__) . '/Zend/Tool/Framework/System/Provider/Manifest.php', + 'Zend_Tool_Framework_System_Provider_Phpinfo' => dirname(__FILE__) . '/Zend/Tool/Framework/System/Provider/Phpinfo.php', + 'Zend_Tool_Framework_System_Provider_Version' => dirname(__FILE__) . '/Zend/Tool/Framework/System/Provider/Version.php', + 'Zend_Tool_Project_Context_Content_Engine_CodeGenerator' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Content/Engine/CodeGenerator.php', + 'Zend_Tool_Project_Context_Content_Engine_Phtml' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Content/Engine/Phtml.php', + 'Zend_Tool_Project_Context_Content_Engine' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Content/Engine.php', + 'Zend_Tool_Project_Context_Exception' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Exception.php', + 'Zend_Tool_Project_Context_Filesystem_Abstract' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Filesystem/Abstract.php', + 'Zend_Tool_Project_Context_Filesystem_Directory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Filesystem/Directory.php', + 'Zend_Tool_Project_Context_Filesystem_File' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Filesystem/File.php', + 'Zend_Tool_Project_Context_Interface' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Interface.php', + 'Zend_Tool_Project_Context_Repository' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Repository.php', + 'Zend_Tool_Project_Context_System_Interface' => dirname(__FILE__) . '/Zend/Tool/Project/Context/System/Interface.php', + 'Zend_Tool_Project_Context_System_NotOverwritable' => dirname(__FILE__) . '/Zend/Tool/Project/Context/System/NotOverwritable.php', + 'Zend_Tool_Project_Context_System_ProjectDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/System/ProjectDirectory.php', + 'Zend_Tool_Project_Context_System_ProjectProfileFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/System/ProjectProfileFile.php', + 'Zend_Tool_Project_Context_System_ProjectProvidersDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/System/ProjectProvidersDirectory.php', + 'Zend_Tool_Project_Context_System_TopLevelRestrictable' => dirname(__FILE__) . '/Zend/Tool/Project/Context/System/TopLevelRestrictable.php', + 'Zend_Tool_Project_Context_Zf_AbstractClassFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/AbstractClassFile.php', + 'Zend_Tool_Project_Context_Zf_ActionMethod' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ActionMethod.php', + 'Zend_Tool_Project_Context_Zf_ApisDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ApisDirectory.php', + 'Zend_Tool_Project_Context_Zf_ApplicationConfigFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php', + 'Zend_Tool_Project_Context_Zf_ApplicationDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ApplicationDirectory.php', + 'Zend_Tool_Project_Context_Zf_BootstrapFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/BootstrapFile.php', + 'Zend_Tool_Project_Context_Zf_CacheDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/CacheDirectory.php', + 'Zend_Tool_Project_Context_Zf_ConfigFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ConfigFile.php', + 'Zend_Tool_Project_Context_Zf_ConfigsDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ConfigsDirectory.php', + 'Zend_Tool_Project_Context_Zf_ControllerFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ControllerFile.php', + 'Zend_Tool_Project_Context_Zf_ControllersDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ControllersDirectory.php', + 'Zend_Tool_Project_Context_Zf_DataDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/DataDirectory.php', + 'Zend_Tool_Project_Context_Zf_DbTableDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/DbTableDirectory.php', + 'Zend_Tool_Project_Context_Zf_DbTableFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/DbTableFile.php', + 'Zend_Tool_Project_Context_Zf_DocsDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/DocsDirectory.php', + 'Zend_Tool_Project_Context_Zf_FormFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/FormFile.php', + 'Zend_Tool_Project_Context_Zf_FormsDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/FormsDirectory.php', + 'Zend_Tool_Project_Context_Zf_HtaccessFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/HtaccessFile.php', + 'Zend_Tool_Project_Context_Zf_LayoutScriptFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/LayoutScriptFile.php', + 'Zend_Tool_Project_Context_Zf_LayoutScriptsDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/LayoutScriptsDirectory.php', + 'Zend_Tool_Project_Context_Zf_LayoutsDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/LayoutsDirectory.php', + 'Zend_Tool_Project_Context_Zf_LibraryDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/LibraryDirectory.php', + 'Zend_Tool_Project_Context_Zf_LocalesDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/LocalesDirectory.php', + 'Zend_Tool_Project_Context_Zf_LogsDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/LogsDirectory.php', + 'Zend_Tool_Project_Context_Zf_ModelFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ModelFile.php', + 'Zend_Tool_Project_Context_Zf_ModelsDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ModelsDirectory.php', + 'Zend_Tool_Project_Context_Zf_ModuleDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ModuleDirectory.php', + 'Zend_Tool_Project_Context_Zf_ModulesDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ModulesDirectory.php', + 'Zend_Tool_Project_Context_Zf_ProjectProviderFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ProjectProviderFile.php', + 'Zend_Tool_Project_Context_Zf_PublicDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/PublicDirectory.php', + 'Zend_Tool_Project_Context_Zf_PublicImagesDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/PublicImagesDirectory.php', + 'Zend_Tool_Project_Context_Zf_PublicIndexFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/PublicIndexFile.php', + 'Zend_Tool_Project_Context_Zf_PublicScriptsDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/PublicScriptsDirectory.php', + 'Zend_Tool_Project_Context_Zf_PublicStylesheetsDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/PublicStylesheetsDirectory.php', + 'Zend_Tool_Project_Context_Zf_SearchIndexesDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/SearchIndexesDirectory.php', + 'Zend_Tool_Project_Context_Zf_ServicesDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ServicesDirectory.php', + 'Zend_Tool_Project_Context_Zf_SessionsDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/SessionsDirectory.php', + 'Zend_Tool_Project_Context_Zf_TemporaryDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/TemporaryDirectory.php', + 'Zend_Tool_Project_Context_Zf_TestApplicationActionMethod' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/TestApplicationActionMethod.php', + 'Zend_Tool_Project_Context_Zf_TestApplicationBootstrapFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/TestApplicationBootstrapFile.php', + 'Zend_Tool_Project_Context_Zf_TestApplicationControllerDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/TestApplicationControllerDirectory.php', + 'Zend_Tool_Project_Context_Zf_TestApplicationControllerFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/TestApplicationControllerFile.php', + 'Zend_Tool_Project_Context_Zf_TestApplicationDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/TestApplicationDirectory.php', + 'Zend_Tool_Project_Context_Zf_TestApplicationModuleDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/TestApplicationModuleDirectory.php', + 'Zend_Tool_Project_Context_Zf_TestApplicationModulesDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/TestApplicationModulesDirectory.php', + 'Zend_Tool_Project_Context_Zf_TestLibraryBootstrapFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/TestLibraryBootstrapFile.php', + 'Zend_Tool_Project_Context_Zf_TestLibraryDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/TestLibraryDirectory.php', + 'Zend_Tool_Project_Context_Zf_TestLibraryFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/TestLibraryFile.php', + 'Zend_Tool_Project_Context_Zf_TestLibraryNamespaceDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/TestLibraryNamespaceDirectory.php', + 'Zend_Tool_Project_Context_Zf_TestPHPUnitBootstrapFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/TestPHPUnitBootstrapFile.php', + 'Zend_Tool_Project_Context_Zf_TestPHPUnitConfigFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/TestPHPUnitConfigFile.php', + 'Zend_Tool_Project_Context_Zf_TestsDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/TestsDirectory.php', + 'Zend_Tool_Project_Context_Zf_UploadsDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/UploadsDirectory.php', + 'Zend_Tool_Project_Context_Zf_ViewControllerScriptsDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ViewControllerScriptsDirectory.php', + 'Zend_Tool_Project_Context_Zf_ViewFiltersDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ViewFiltersDirectory.php', + 'Zend_Tool_Project_Context_Zf_ViewHelpersDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ViewHelpersDirectory.php', + 'Zend_Tool_Project_Context_Zf_ViewScriptFile' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ViewScriptFile.php', + 'Zend_Tool_Project_Context_Zf_ViewScriptsDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ViewScriptsDirectory.php', + 'Zend_Tool_Project_Context_Zf_ViewsDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ViewsDirectory.php', + 'Zend_Tool_Project_Context_Zf_ZfStandardLibraryDirectory' => dirname(__FILE__) . '/Zend/Tool/Project/Context/Zf/ZfStandardLibraryDirectory.php', + 'Zend_Tool_Project_Exception' => dirname(__FILE__) . '/Zend/Tool/Project/Exception.php', + 'Zend_Tool_Project_Profile_Exception' => dirname(__FILE__) . '/Zend/Tool/Project/Profile/Exception.php', + 'Zend_Tool_Project_Profile_FileParser_Interface' => dirname(__FILE__) . '/Zend/Tool/Project/Profile/FileParser/Interface.php', + 'Zend_Tool_Project_Profile_FileParser_Xml' => dirname(__FILE__) . '/Zend/Tool/Project/Profile/FileParser/Xml.php', + 'Zend_Tool_Project_Profile_Iterator_ContextFilter' => dirname(__FILE__) . '/Zend/Tool/Project/Profile/Iterator/ContextFilter.php', + 'Zend_Tool_Project_Profile_Iterator_EnabledResourceFilter' => dirname(__FILE__) . '/Zend/Tool/Project/Profile/Iterator/EnabledResourceFilter.php', + 'Zend_Tool_Project_Profile_Resource_Container' => dirname(__FILE__) . '/Zend/Tool/Project/Profile/Resource/Container.php', + 'Zend_Tool_Project_Profile_Resource_SearchConstraints' => dirname(__FILE__) . '/Zend/Tool/Project/Profile/Resource/SearchConstraints.php', + 'Zend_Tool_Project_Profile_Resource' => dirname(__FILE__) . '/Zend/Tool/Project/Profile/Resource.php', + 'Zend_Tool_Project_Profile' => dirname(__FILE__) . '/Zend/Tool/Project/Profile.php', + 'Zend_Tool_Project_Provider_Abstract' => dirname(__FILE__) . '/Zend/Tool/Project/Provider/Abstract.php', + 'Zend_Tool_Project_Provider_Action' => dirname(__FILE__) . '/Zend/Tool/Project/Provider/Action.php', + 'Zend_Tool_Project_Provider_Application' => dirname(__FILE__) . '/Zend/Tool/Project/Provider/Application.php', + 'Zend_Tool_Project_Provider_Controller' => dirname(__FILE__) . '/Zend/Tool/Project/Provider/Controller.php', + 'Zend_Tool_Project_Provider_DbAdapter' => dirname(__FILE__) . '/Zend/Tool/Project/Provider/DbAdapter.php', + 'Zend_Tool_Project_Provider_DbTable' => dirname(__FILE__) . '/Zend/Tool/Project/Provider/DbTable.php', + 'Zend_Tool_Project_Provider_Exception' => dirname(__FILE__) . '/Zend/Tool/Project/Provider/Exception.php', + 'Zend_Tool_Project_Provider_Form' => dirname(__FILE__) . '/Zend/Tool/Project/Provider/Form.php', + 'Zend_Tool_Project_Provider_Layout' => dirname(__FILE__) . '/Zend/Tool/Project/Provider/Layout.php', + 'Zend_Tool_Project_Provider_Manifest' => dirname(__FILE__) . '/Zend/Tool/Project/Provider/Manifest.php', + 'Zend_Tool_Project_Provider_Model' => dirname(__FILE__) . '/Zend/Tool/Project/Provider/Model.php', + 'Zend_Tool_Project_Provider_Module' => dirname(__FILE__) . '/Zend/Tool/Project/Provider/Module.php', + 'Zend_Tool_Project_Provider_Profile' => dirname(__FILE__) . '/Zend/Tool/Project/Provider/Profile.php', + 'Zend_Tool_Project_Provider_Project' => dirname(__FILE__) . '/Zend/Tool/Project/Provider/Project.php', + 'Zend_Tool_Project_Provider_ProjectProvider' => dirname(__FILE__) . '/Zend/Tool/Project/Provider/ProjectProvider.php', + 'Zend_Tool_Project_Provider_Test' => dirname(__FILE__) . '/Zend/Tool/Project/Provider/Test.php', + 'Zend_Tool_Project_Provider_View' => dirname(__FILE__) . '/Zend/Tool/Project/Provider/View.php', + 'Zend_Translate_Adapter_Array' => dirname(__FILE__) . '/Zend/Translate/Adapter/Array.php', + 'Zend_Translate_Adapter_Csv' => dirname(__FILE__) . '/Zend/Translate/Adapter/Csv.php', + 'Zend_Translate_Adapter_Gettext' => dirname(__FILE__) . '/Zend/Translate/Adapter/Gettext.php', + 'Zend_Translate_Adapter_Ini' => dirname(__FILE__) . '/Zend/Translate/Adapter/Ini.php', + 'Zend_Translate_Adapter_Qt' => dirname(__FILE__) . '/Zend/Translate/Adapter/Qt.php', + 'Zend_Translate_Adapter_Tbx' => dirname(__FILE__) . '/Zend/Translate/Adapter/Tbx.php', + 'Zend_Translate_Adapter_Tmx' => dirname(__FILE__) . '/Zend/Translate/Adapter/Tmx.php', + 'Zend_Translate_Adapter_Xliff' => dirname(__FILE__) . '/Zend/Translate/Adapter/Xliff.php', + 'Zend_Translate_Adapter_XmlTm' => dirname(__FILE__) . '/Zend/Translate/Adapter/XmlTm.php', + 'Zend_Translate_Adapter' => dirname(__FILE__) . '/Zend/Translate/Adapter.php', + 'Zend_Translate_Exception' => dirname(__FILE__) . '/Zend/Translate/Exception.php', + 'Zend_Translate_Plural' => dirname(__FILE__) . '/Zend/Translate/Plural.php', + 'Zend_Translate' => dirname(__FILE__) . '/Zend/Translate.php', + 'Zend_Uri_Exception' => dirname(__FILE__) . '/Zend/Uri/Exception.php', + 'Zend_Uri_Http' => dirname(__FILE__) . '/Zend/Uri/Http.php', + 'Zend_Uri' => dirname(__FILE__) . '/Zend/Uri.php', + 'Zend_Validate_Abstract' => dirname(__FILE__) . '/Zend/Validate/Abstract.php', + 'Zend_Validate_Alnum' => dirname(__FILE__) . '/Zend/Validate/Alnum.php', + 'Zend_Validate_Alpha' => dirname(__FILE__) . '/Zend/Validate/Alpha.php', + 'Zend_Validate_Barcode_AdapterAbstract' => dirname(__FILE__) . '/Zend/Validate/Barcode/AdapterAbstract.php', + 'Zend_Validate_Barcode_AdapterInterface' => dirname(__FILE__) . '/Zend/Validate/Barcode/AdapterInterface.php', + 'Zend_Validate_Barcode_Code25' => dirname(__FILE__) . '/Zend/Validate/Barcode/Code25.php', + 'Zend_Validate_Barcode_Code25interleaved' => dirname(__FILE__) . '/Zend/Validate/Barcode/Code25interleaved.php', + 'Zend_Validate_Barcode_Code39' => dirname(__FILE__) . '/Zend/Validate/Barcode/Code39.php', + 'Zend_Validate_Barcode_Code39ext' => dirname(__FILE__) . '/Zend/Validate/Barcode/Code39ext.php', + 'Zend_Validate_Barcode_Code93' => dirname(__FILE__) . '/Zend/Validate/Barcode/Code93.php', + 'Zend_Validate_Barcode_Code93ext' => dirname(__FILE__) . '/Zend/Validate/Barcode/Code93ext.php', + 'Zend_Validate_Barcode_Ean12' => dirname(__FILE__) . '/Zend/Validate/Barcode/Ean12.php', + 'Zend_Validate_Barcode_Ean13' => dirname(__FILE__) . '/Zend/Validate/Barcode/Ean13.php', + 'Zend_Validate_Barcode_Ean14' => dirname(__FILE__) . '/Zend/Validate/Barcode/Ean14.php', + 'Zend_Validate_Barcode_Ean18' => dirname(__FILE__) . '/Zend/Validate/Barcode/Ean18.php', + 'Zend_Validate_Barcode_Ean2' => dirname(__FILE__) . '/Zend/Validate/Barcode/Ean2.php', + 'Zend_Validate_Barcode_Ean5' => dirname(__FILE__) . '/Zend/Validate/Barcode/Ean5.php', + 'Zend_Validate_Barcode_Ean8' => dirname(__FILE__) . '/Zend/Validate/Barcode/Ean8.php', + 'Zend_Validate_Barcode_Gtin12' => dirname(__FILE__) . '/Zend/Validate/Barcode/Gtin12.php', + 'Zend_Validate_Barcode_Gtin13' => dirname(__FILE__) . '/Zend/Validate/Barcode/Gtin13.php', + 'Zend_Validate_Barcode_Gtin14' => dirname(__FILE__) . '/Zend/Validate/Barcode/Gtin14.php', + 'Zend_Validate_Barcode_Identcode' => dirname(__FILE__) . '/Zend/Validate/Barcode/Identcode.php', + 'Zend_Validate_Barcode_IntelligentMail' => dirname(__FILE__) . '/Zend/Validate/Barcode/Intelligentmail.php', + 'Zend_Validate_Barcode_Issn' => dirname(__FILE__) . '/Zend/Validate/Barcode/Issn.php', + 'Zend_Validate_Barcode_Itf14' => dirname(__FILE__) . '/Zend/Validate/Barcode/Itf14.php', + 'Zend_Validate_Barcode_Leitcode' => dirname(__FILE__) . '/Zend/Validate/Barcode/Leitcode.php', + 'Zend_Validate_Barcode_Planet' => dirname(__FILE__) . '/Zend/Validate/Barcode/Planet.php', + 'Zend_Validate_Barcode_Postnet' => dirname(__FILE__) . '/Zend/Validate/Barcode/Postnet.php', + 'Zend_Validate_Barcode_Royalmail' => dirname(__FILE__) . '/Zend/Validate/Barcode/Royalmail.php', + 'Zend_Validate_Barcode_Sscc' => dirname(__FILE__) . '/Zend/Validate/Barcode/Sscc.php', + 'Zend_Validate_Barcode_Upca' => dirname(__FILE__) . '/Zend/Validate/Barcode/Upca.php', + 'Zend_Validate_Barcode_Upce' => dirname(__FILE__) . '/Zend/Validate/Barcode/Upce.php', + 'Zend_Validate_Barcode' => dirname(__FILE__) . '/Zend/Validate/Barcode.php', + 'Zend_Validate_Between' => dirname(__FILE__) . '/Zend/Validate/Between.php', + 'Zend_Validate_Callback' => dirname(__FILE__) . '/Zend/Validate/Callback.php', + 'Zend_Validate_Ccnum' => dirname(__FILE__) . '/Zend/Validate/Ccnum.php', + 'Zend_Validate_CreditCard' => dirname(__FILE__) . '/Zend/Validate/CreditCard.php', + 'Zend_Validate_Date' => dirname(__FILE__) . '/Zend/Validate/Date.php', + 'Zend_Validate_Db_Abstract' => dirname(__FILE__) . '/Zend/Validate/Db/Abstract.php', + 'Zend_Validate_Db_NoRecordExists' => dirname(__FILE__) . '/Zend/Validate/Db/NoRecordExists.php', + 'Zend_Validate_Db_RecordExists' => dirname(__FILE__) . '/Zend/Validate/Db/RecordExists.php', + 'Zend_Validate_Digits' => dirname(__FILE__) . '/Zend/Validate/Digits.php', + 'Zend_Validate_EmailAddress' => dirname(__FILE__) . '/Zend/Validate/EmailAddress.php', + 'Zend_Validate_Exception' => dirname(__FILE__) . '/Zend/Validate/Exception.php', + 'Zend_Validate_File_Count' => dirname(__FILE__) . '/Zend/Validate/File/Count.php', + 'Zend_Validate_File_Crc32' => dirname(__FILE__) . '/Zend/Validate/File/Crc32.php', + 'Zend_Validate_File_ExcludeExtension' => dirname(__FILE__) . '/Zend/Validate/File/ExcludeExtension.php', + 'Zend_Validate_File_ExcludeMimeType' => dirname(__FILE__) . '/Zend/Validate/File/ExcludeMimeType.php', + 'Zend_Validate_File_Exists' => dirname(__FILE__) . '/Zend/Validate/File/Exists.php', + 'Zend_Validate_File_Extension' => dirname(__FILE__) . '/Zend/Validate/File/Extension.php', + 'Zend_Validate_File_FilesSize' => dirname(__FILE__) . '/Zend/Validate/File/FilesSize.php', + 'Zend_Validate_File_Hash' => dirname(__FILE__) . '/Zend/Validate/File/Hash.php', + 'Zend_Validate_File_ImageSize' => dirname(__FILE__) . '/Zend/Validate/File/ImageSize.php', + 'Zend_Validate_File_IsCompressed' => dirname(__FILE__) . '/Zend/Validate/File/IsCompressed.php', + 'Zend_Validate_File_IsImage' => dirname(__FILE__) . '/Zend/Validate/File/IsImage.php', + 'Zend_Validate_File_Md5' => dirname(__FILE__) . '/Zend/Validate/File/Md5.php', + 'Zend_Validate_File_MimeType' => dirname(__FILE__) . '/Zend/Validate/File/MimeType.php', + 'Zend_Validate_File_NotExists' => dirname(__FILE__) . '/Zend/Validate/File/NotExists.php', + 'Zend_Validate_File_Sha1' => dirname(__FILE__) . '/Zend/Validate/File/Sha1.php', + 'Zend_Validate_File_Size' => dirname(__FILE__) . '/Zend/Validate/File/Size.php', + 'Zend_Validate_File_Upload' => dirname(__FILE__) . '/Zend/Validate/File/Upload.php', + 'Zend_Validate_File_WordCount' => dirname(__FILE__) . '/Zend/Validate/File/WordCount.php', + 'Zend_Validate_Float' => dirname(__FILE__) . '/Zend/Validate/Float.php', + 'Zend_Validate_GreaterThan' => dirname(__FILE__) . '/Zend/Validate/GreaterThan.php', + 'Zend_Validate_Hex' => dirname(__FILE__) . '/Zend/Validate/Hex.php', + 'Zend_Validate_Hostname' => dirname(__FILE__) . '/Zend/Validate/Hostname.php', + 'Zend_Validate_Iban' => dirname(__FILE__) . '/Zend/Validate/Iban.php', + 'Zend_Validate_Identical' => dirname(__FILE__) . '/Zend/Validate/Identical.php', + 'Zend_Validate_InArray' => dirname(__FILE__) . '/Zend/Validate/InArray.php', + 'Zend_Validate_Int' => dirname(__FILE__) . '/Zend/Validate/Int.php', + 'Zend_Validate_Interface' => dirname(__FILE__) . '/Zend/Validate/Interface.php', + 'Zend_Validate_Ip' => dirname(__FILE__) . '/Zend/Validate/Ip.php', + 'Zend_Validate_Isbn' => dirname(__FILE__) . '/Zend/Validate/Isbn.php', + 'Zend_Validate_Ldap_Dn' => dirname(__FILE__) . '/Zend/Validate/Ldap/Dn.php', + 'Zend_Validate_LessThan' => dirname(__FILE__) . '/Zend/Validate/LessThan.php', + 'Zend_Validate_NotEmpty' => dirname(__FILE__) . '/Zend/Validate/NotEmpty.php', + 'Zend_Validate_PostCode' => dirname(__FILE__) . '/Zend/Validate/PostCode.php', + 'Zend_Validate_Regex' => dirname(__FILE__) . '/Zend/Validate/Regex.php', + 'Zend_Validate_Sitemap_Changefreq' => dirname(__FILE__) . '/Zend/Validate/Sitemap/Changefreq.php', + 'Zend_Validate_Sitemap_Lastmod' => dirname(__FILE__) . '/Zend/Validate/Sitemap/Lastmod.php', + 'Zend_Validate_Sitemap_Loc' => dirname(__FILE__) . '/Zend/Validate/Sitemap/Loc.php', + 'Zend_Validate_Sitemap_Priority' => dirname(__FILE__) . '/Zend/Validate/Sitemap/Priority.php', + 'Zend_Validate_StringLength' => dirname(__FILE__) . '/Zend/Validate/StringLength.php', + 'Zend_Validate' => dirname(__FILE__) . '/Zend/Validate.php', + 'Zend_Version' => dirname(__FILE__) . '/Zend/Version.php', + 'Zend_View_Abstract' => dirname(__FILE__) . '/Zend/View/Abstract.php', + 'Zend_View_Exception' => dirname(__FILE__) . '/Zend/View/Exception.php', + 'Zend_View_Helper_Abstract' => dirname(__FILE__) . '/Zend/View/Helper/Abstract.php', + 'Zend_View_Helper_Action' => dirname(__FILE__) . '/Zend/View/Helper/Action.php', + 'Zend_View_Helper_BaseUrl' => dirname(__FILE__) . '/Zend/View/Helper/BaseUrl.php', + 'Zend_View_Helper_Currency' => dirname(__FILE__) . '/Zend/View/Helper/Currency.php', + 'Zend_View_Helper_Cycle' => dirname(__FILE__) . '/Zend/View/Helper/Cycle.php', + 'Zend_View_Helper_DeclareVars' => dirname(__FILE__) . '/Zend/View/Helper/DeclareVars.php', + 'Zend_View_Helper_Doctype' => dirname(__FILE__) . '/Zend/View/Helper/Doctype.php', + 'Zend_View_Helper_Fieldset' => dirname(__FILE__) . '/Zend/View/Helper/Fieldset.php', + 'Zend_View_Helper_Form' => dirname(__FILE__) . '/Zend/View/Helper/Form.php', + 'Zend_View_Helper_FormButton' => dirname(__FILE__) . '/Zend/View/Helper/FormButton.php', + 'Zend_View_Helper_FormCheckbox' => dirname(__FILE__) . '/Zend/View/Helper/FormCheckbox.php', + 'Zend_View_Helper_FormElement' => dirname(__FILE__) . '/Zend/View/Helper/FormElement.php', + 'Zend_View_Helper_FormErrors' => dirname(__FILE__) . '/Zend/View/Helper/FormErrors.php', + 'Zend_View_Helper_FormFile' => dirname(__FILE__) . '/Zend/View/Helper/FormFile.php', + 'Zend_View_Helper_FormHidden' => dirname(__FILE__) . '/Zend/View/Helper/FormHidden.php', + 'Zend_View_Helper_FormImage' => dirname(__FILE__) . '/Zend/View/Helper/FormImage.php', + 'Zend_View_Helper_FormLabel' => dirname(__FILE__) . '/Zend/View/Helper/FormLabel.php', + 'Zend_View_Helper_FormMultiCheckbox' => dirname(__FILE__) . '/Zend/View/Helper/FormMultiCheckbox.php', + 'Zend_View_Helper_FormNote' => dirname(__FILE__) . '/Zend/View/Helper/FormNote.php', + 'Zend_View_Helper_FormPassword' => dirname(__FILE__) . '/Zend/View/Helper/FormPassword.php', + 'Zend_View_Helper_FormRadio' => dirname(__FILE__) . '/Zend/View/Helper/FormRadio.php', + 'Zend_View_Helper_FormReset' => dirname(__FILE__) . '/Zend/View/Helper/FormReset.php', + 'Zend_View_Helper_FormSelect' => dirname(__FILE__) . '/Zend/View/Helper/FormSelect.php', + 'Zend_View_Helper_FormSubmit' => dirname(__FILE__) . '/Zend/View/Helper/FormSubmit.php', + 'Zend_View_Helper_FormText' => dirname(__FILE__) . '/Zend/View/Helper/FormText.php', + 'Zend_View_Helper_FormTextarea' => dirname(__FILE__) . '/Zend/View/Helper/FormTextarea.php', + 'Zend_View_Helper_Gravatar' => dirname(__FILE__) . '/Zend/View/Helper/Gravatar.php', + 'Zend_View_Helper_HeadLink' => dirname(__FILE__) . '/Zend/View/Helper/HeadLink.php', + 'Zend_View_Helper_HeadMeta' => dirname(__FILE__) . '/Zend/View/Helper/HeadMeta.php', + 'Zend_View_Helper_HeadScript' => dirname(__FILE__) . '/Zend/View/Helper/HeadScript.php', + 'Zend_View_Helper_HeadStyle' => dirname(__FILE__) . '/Zend/View/Helper/HeadStyle.php', + 'Zend_View_Helper_HeadTitle' => dirname(__FILE__) . '/Zend/View/Helper/HeadTitle.php', + 'Zend_View_Helper_HtmlElement' => dirname(__FILE__) . '/Zend/View/Helper/HtmlElement.php', + 'Zend_View_Helper_HtmlFlash' => dirname(__FILE__) . '/Zend/View/Helper/HtmlFlash.php', + 'Zend_View_Helper_HtmlList' => dirname(__FILE__) . '/Zend/View/Helper/HtmlList.php', + 'Zend_View_Helper_HtmlObject' => dirname(__FILE__) . '/Zend/View/Helper/HtmlObject.php', + 'Zend_View_Helper_HtmlPage' => dirname(__FILE__) . '/Zend/View/Helper/HtmlPage.php', + 'Zend_View_Helper_HtmlQuicktime' => dirname(__FILE__) . '/Zend/View/Helper/HtmlQuicktime.php', + 'Zend_View_Helper_InlineScript' => dirname(__FILE__) . '/Zend/View/Helper/InlineScript.php', + 'Zend_View_Helper_Interface' => dirname(__FILE__) . '/Zend/View/Helper/Interface.php', + 'Zend_View_Helper_Json' => dirname(__FILE__) . '/Zend/View/Helper/Json.php', + 'Zend_View_Helper_Layout' => dirname(__FILE__) . '/Zend/View/Helper/Layout.php', + 'Zend_View_Helper_Navigation_Breadcrumbs' => dirname(__FILE__) . '/Zend/View/Helper/Navigation/Breadcrumbs.php', + 'Zend_View_Helper_Navigation_Helper' => dirname(__FILE__) . '/Zend/View/Helper/Navigation/Helper.php', + 'Zend_View_Helper_Navigation_HelperAbstract' => dirname(__FILE__) . '/Zend/View/Helper/Navigation/HelperAbstract.php', + 'Zend_View_Helper_Navigation_Links' => dirname(__FILE__) . '/Zend/View/Helper/Navigation/Links.php', + 'Zend_View_Helper_Navigation_Menu' => dirname(__FILE__) . '/Zend/View/Helper/Navigation/Menu.php', + 'Zend_View_Helper_Navigation_Sitemap' => dirname(__FILE__) . '/Zend/View/Helper/Navigation/Sitemap.php', + 'Zend_View_Helper_Navigation' => dirname(__FILE__) . '/Zend/View/Helper/Navigation.php', + 'Zend_View_Helper_PaginationControl' => dirname(__FILE__) . '/Zend/View/Helper/PaginationControl.php', + 'Zend_View_Helper_Partial_Exception' => dirname(__FILE__) . '/Zend/View/Helper/Partial/Exception.php', + 'Zend_View_Helper_Partial' => dirname(__FILE__) . '/Zend/View/Helper/Partial.php', + 'Zend_View_Helper_PartialLoop' => dirname(__FILE__) . '/Zend/View/Helper/PartialLoop.php', + 'Zend_View_Helper_Placeholder_Container_Abstract' => dirname(__FILE__) . '/Zend/View/Helper/Placeholder/Container/Abstract.php', + 'Zend_View_Helper_Placeholder_Container_Exception' => dirname(__FILE__) . '/Zend/View/Helper/Placeholder/Container/Exception.php', + 'Zend_View_Helper_Placeholder_Container_Standalone' => dirname(__FILE__) . '/Zend/View/Helper/Placeholder/Container/Standalone.php', + 'Zend_View_Helper_Placeholder_Container' => dirname(__FILE__) . '/Zend/View/Helper/Placeholder/Container.php', + 'Zend_View_Helper_Placeholder_Registry_Exception' => dirname(__FILE__) . '/Zend/View/Helper/Placeholder/Registry/Exception.php', + 'Zend_View_Helper_Placeholder_Registry' => dirname(__FILE__) . '/Zend/View/Helper/Placeholder/Registry.php', + 'Zend_View_Helper_Placeholder' => dirname(__FILE__) . '/Zend/View/Helper/Placeholder.php', + 'Zend_View_Helper_RenderToPlaceholder' => dirname(__FILE__) . '/Zend/View/Helper/RenderToPlaceholder.php', + 'Zend_View_Helper_ServerUrl' => dirname(__FILE__) . '/Zend/View/Helper/ServerUrl.php', + 'Zend_View_Helper_Translate' => dirname(__FILE__) . '/Zend/View/Helper/Translate.php', + 'Zend_View_Helper_Url' => dirname(__FILE__) . '/Zend/View/Helper/Url.php', + 'Zend_View_Helper_UserAgent' => dirname(__FILE__) . '/Zend/View/Helper/UserAgent.php', + 'Zend_View_Interface' => dirname(__FILE__) . '/Zend/View/Interface.php', + 'Zend_View_Stream' => dirname(__FILE__) . '/Zend/View/Stream.php', + 'Zend_View' => dirname(__FILE__) . '/Zend/View.php', + 'Zend_Wildfire_Channel_HttpHeaders' => dirname(__FILE__) . '/Zend/Wildfire/Channel/HttpHeaders.php', + 'Zend_Wildfire_Channel_Interface' => dirname(__FILE__) . '/Zend/Wildfire/Channel/Interface.php', + 'Zend_Wildfire_Exception' => dirname(__FILE__) . '/Zend/Wildfire/Exception.php', + 'Zend_Wildfire_Plugin_FirePhp_Message' => dirname(__FILE__) . '/Zend/Wildfire/Plugin/FirePhp/Message.php', + 'Zend_Wildfire_Plugin_FirePhp_TableMessage' => dirname(__FILE__) . '/Zend/Wildfire/Plugin/FirePhp/TableMessage.php', + 'Zend_Wildfire_Plugin_FirePhp' => dirname(__FILE__) . '/Zend/Wildfire/Plugin/FirePhp.php', + 'Zend_Wildfire_Plugin_Interface' => dirname(__FILE__) . '/Zend/Wildfire/Plugin/Interface.php', + 'Zend_Wildfire_Protocol_JsonStream' => dirname(__FILE__) . '/Zend/Wildfire/Protocol/JsonStream.php', + 'Zend_Xml_Exception' => dirname(__FILE__) . '/Zend/Xml/Exception.php', + 'Zend_Xml_Security' => dirname(__FILE__) . '/Zend/Xml/Security.php', + 'Zend_XmlRpc_Client_Exception' => dirname(__FILE__) . '/Zend/XmlRpc/Client/Exception.php', + 'Zend_XmlRpc_Client_FaultException' => dirname(__FILE__) . '/Zend/XmlRpc/Client/FaultException.php', + 'Zend_XmlRpc_Client_HttpException' => dirname(__FILE__) . '/Zend/XmlRpc/Client/HttpException.php', + 'Zend_XmlRpc_Client_IntrospectException' => dirname(__FILE__) . '/Zend/XmlRpc/Client/IntrospectException.php', + 'Zend_XmlRpc_Client_ServerIntrospection' => dirname(__FILE__) . '/Zend/XmlRpc/Client/ServerIntrospection.php', + 'Zend_XmlRpc_Client_ServerProxy' => dirname(__FILE__) . '/Zend/XmlRpc/Client/ServerProxy.php', + 'Zend_XmlRpc_Client' => dirname(__FILE__) . '/Zend/XmlRpc/Client.php', + 'Zend_XmlRpc_Exception' => dirname(__FILE__) . '/Zend/XmlRpc/Exception.php', + 'Zend_XmlRpc_Fault' => dirname(__FILE__) . '/Zend/XmlRpc/Fault.php', + 'Zend_XmlRpc_Generator_DomDocument' => dirname(__FILE__) . '/Zend/XmlRpc/Generator/DomDocument.php', + 'Zend_XmlRpc_Generator_GeneratorAbstract' => dirname(__FILE__) . '/Zend/XmlRpc/Generator/GeneratorAbstract.php', + 'Zend_XmlRpc_Generator_XmlWriter' => dirname(__FILE__) . '/Zend/XmlRpc/Generator/XmlWriter.php', + 'Zend_XmlRpc_Request_Http' => dirname(__FILE__) . '/Zend/XmlRpc/Request/Http.php', + 'Zend_XmlRpc_Request_Stdin' => dirname(__FILE__) . '/Zend/XmlRpc/Request/Stdin.php', + 'Zend_XmlRpc_Request' => dirname(__FILE__) . '/Zend/XmlRpc/Request.php', + 'Zend_XmlRpc_Response_Http' => dirname(__FILE__) . '/Zend/XmlRpc/Response/Http.php', + 'Zend_XmlRpc_Response' => dirname(__FILE__) . '/Zend/XmlRpc/Response.php', + 'Zend_XmlRpc_Server_Cache' => dirname(__FILE__) . '/Zend/XmlRpc/Server/Cache.php', + 'Zend_XmlRpc_Server_Exception' => dirname(__FILE__) . '/Zend/XmlRpc/Server/Exception.php', + 'Zend_XmlRpc_Server_Fault' => dirname(__FILE__) . '/Zend/XmlRpc/Server/Fault.php', + 'Zend_XmlRpc_Server_System' => dirname(__FILE__) . '/Zend/XmlRpc/Server/System.php', + 'Zend_XmlRpc_Server' => dirname(__FILE__) . '/Zend/XmlRpc/Server.php', + 'Zend_XmlRpc_Value_Array' => dirname(__FILE__) . '/Zend/XmlRpc/Value/Array.php', + 'Zend_XmlRpc_Value_Base64' => dirname(__FILE__) . '/Zend/XmlRpc/Value/Base64.php', + 'Zend_XmlRpc_Value_BigInteger' => dirname(__FILE__) . '/Zend/XmlRpc/Value/BigInteger.php', + 'Zend_XmlRpc_Value_Boolean' => dirname(__FILE__) . '/Zend/XmlRpc/Value/Boolean.php', + 'Zend_XmlRpc_Value_Collection' => dirname(__FILE__) . '/Zend/XmlRpc/Value/Collection.php', + 'Zend_XmlRpc_Value_DateTime' => dirname(__FILE__) . '/Zend/XmlRpc/Value/DateTime.php', + 'Zend_XmlRpc_Value_Double' => dirname(__FILE__) . '/Zend/XmlRpc/Value/Double.php', + 'Zend_XmlRpc_Value_Exception' => dirname(__FILE__) . '/Zend/XmlRpc/Value/Exception.php', + 'Zend_XmlRpc_Value_Integer' => dirname(__FILE__) . '/Zend/XmlRpc/Value/Integer.php', + 'Zend_XmlRpc_Value_Nil' => dirname(__FILE__) . '/Zend/XmlRpc/Value/Nil.php', + 'Zend_XmlRpc_Value_Scalar' => dirname(__FILE__) . '/Zend/XmlRpc/Value/Scalar.php', + 'Zend_XmlRpc_Value_String' => dirname(__FILE__) . '/Zend/XmlRpc/Value/String.php', + 'Zend_XmlRpc_Value_Struct' => dirname(__FILE__) . '/Zend/XmlRpc/Value/Struct.php', + 'Zend_XmlRpc_Value' => dirname(__FILE__) . '/Zend/XmlRpc/Value.php', + 'Scores_Auth_Adapter_Db' => dirname(__FILE__) . '/Scores/Auth/Adapter/Db.php', + 'Scores_Auth_Adapter_Ws' => dirname(__FILE__) . '/Scores/Auth/Adapter/Ws.php', + 'Enrichissement' => dirname(__FILE__) . '/Scores/Enrichissement.php', + 'Scores_Locale_String' => dirname(__FILE__) . '/Scores/Locale/String.php', + 'Scores_Mail_Method' => dirname(__FILE__) . '/Scores/Mail/Method.php', + 'Scores_Validate_IpInNetwork' => dirname(__FILE__) . '/Scores/Validate/IpInNetwork.php', + 'Scores_Wkhtml_Pdf' => dirname(__FILE__) . '/Scores/Wkhtml/Pdf.php', + 'Scores_Ws_Discover' => dirname(__FILE__) . '/Scores/Ws/Discover.php', + 'Scores_Ws_Doc' => dirname(__FILE__) . '/Scores/Ws/Doc.php', + 'Scores_Ws_Exception' => dirname(__FILE__) . '/Scores/Ws/Exception.php', + 'Scores_Ws_Form_GetIdentite' => dirname(__FILE__) . '/Scores/Ws/Form/GetIdentite.php', + 'Scores_Ws_Server' => dirname(__FILE__) . '/Scores/Ws/Server.php', + 'Scores_Ws_Trigger' => dirname(__FILE__) . '/Scores/Ws/Trigger.php', + 'SdMetier_Graydon_Service' => dirname(__FILE__) . '/SdMetier/Graydon/Service.php', + 'SdMetier_Infogreffe_DocAC' => dirname(__FILE__) . '/SdMetier/Infogreffe/DocAC.php', + 'SdMetier_Infogreffe_DocBI' => dirname(__FILE__) . '/SdMetier/Infogreffe/DocBI.php', + 'SdMetier_Infogreffe_DocST' => dirname(__FILE__) . '/SdMetier/Infogreffe/DocST.php', + 'SdMetier_Infogreffe_Service' => dirname(__FILE__) . '/SdMetier/Infogreffe/Service.php', + 'SdMetier_Intersud_Service' => dirname(__FILE__) . '/SdMetier/Intersud/Service.php', + 'SdMetier_Rnvp_Detail' => dirname(__FILE__) . '/SdMetier/Rnvp/Detail.php', + 'SdMetier_Scoring_Calcul' => dirname(__FILE__) . '/SdMetier/Scoring/Calcul.php', + 'SdMetier_Scoring_Comment_Abstract' => dirname(__FILE__) . '/SdMetier/Scoring/Comment/Abstract.php', + 'SdMetier_Scoring_Comment_Interface' => dirname(__FILE__) . '/SdMetier/Scoring/Comment/Interface.php', + 'SdMetier_Scoring_Formule_Abstract' => dirname(__FILE__) . '/SdMetier/Scoring/Formule/Abstract.php', + 'SdMetier_Scoring_Formule_Interface' => dirname(__FILE__) . '/SdMetier/Scoring/Formule/Interface.php', + 'SdMetier_Scoring_Vars' => dirname(__FILE__) . '/SdMetier/Scoring/Vars.php', + 'SdMetier_Search_Engine' => dirname(__FILE__) . '/SdMetier/Search/Engine.php', + 'SdMetier_Sfr_Compile' => dirname(__FILE__) . '/SdMetier/Sfr/Compile.php', + 'SdMetier_Sfr_Scoring' => dirname(__FILE__) . '/SdMetier/Sfr/Scoring.php', +); diff --git a/public/index.php b/public/index.php index 8d30a35c..ededfc93 100644 --- a/public/index.php +++ b/public/index.php @@ -13,8 +13,26 @@ set_include_path(implode(PATH_SEPARATOR, array( get_include_path(), ))); -/** Zend_Application */ -require_once 'Zend/Application.php'; +//Use classmap autoloader - useful with opcode and realpath cache +require_once 'Zend/Loader/AutoloaderFactory.php'; +require_once 'Zend/Loader/ClassMapAutoloader.php'; +Zend_Loader_AutoloaderFactory::factory(array( + 'Zend_Loader_ClassMapAutoloader' => array( + __DIR__ . '/../library/autoload_classmap.php', + ), + 'Zend_Loader_StandardAutoloader' => array( + 'prefixes' => array( + 'Zend' => __DIR__ . '/../library/Zend', + 'Scores' => __DIR__ . '/../library/Scores', + 'SdMetier' => __DIR__ . '/../library/SdMetier', + 'Metier' => __DIR__ . '/../library/Metier', + ), + 'fallback_autoloader' => true + ) +)); + +// Zend_Application - Use it if you don't have autoloaders +//require_once 'Zend/Application.php'; // Create application, bootstrap, and run $application = new Zend_Application( diff --git a/scripts/build/classmap.php b/scripts/build/classmap.php new file mode 100644 index 00000000..241fdc65 --- /dev/null +++ b/scripts/build/classmap.php @@ -0,0 +1,33 @@ + array( + __DIR__ . '/../../library/autoload_classmap.php', + ), + 'Zend_Loader_StandardAutoloader' => array( + 'prefixes' => array( + 'Zend' => __DIR__ . '/../../library/Zend', + 'Scores' => __DIR__ . '/../../library/Scores', + 'SdMetier' => __DIR__ . '/../../library/SdMetier', + 'Metier' => __DIR__ . '/../../library/Metier', + ), + 'fallback_autoloader' => true + ) +)); + +// Zend_Application - Use it if you don't have autoloaders +//require_once 'Zend/Application.php'; // Create application, bootstrap, and run $application = new Zend_Application( diff --git a/scripts/build/index.php b/scripts/build/index.php index b9e1f0ff..760a6a24 100644 --- a/scripts/build/index.php +++ b/scripts/build/index.php @@ -18,8 +18,26 @@ if (APPLICATION_ENV != 'production'){ } require_once '../config/config.php'; -/** Zend_Application */ -require_once 'Zend/Application.php'; +//Use classmap autoloader - useful with opcode and realpath cache +require_once 'Zend/Loader/AutoloaderFactory.php'; +require_once 'Zend/Loader/ClassMapAutoloader.php'; +Zend_Loader_AutoloaderFactory::factory(array( + 'Zend_Loader_ClassMapAutoloader' => array( + __DIR__ . '/../../library/autoload_classmap.php', + ), + 'Zend_Loader_StandardAutoloader' => array( + 'prefixes' => array( + 'Zend' => __DIR__ . '/../../library/Zend', + 'Scores' => __DIR__ . '/../../library/Scores', + 'SdMetier' => __DIR__ . '/../../library/SdMetier', + 'Metier' => __DIR__ . '/../../library/Metier', + ), + 'fallback_autoloader' => true + ) +)); + +// Zend_Application - Use it if you don't have autoloaders +//require_once 'Zend/Application.php'; // Create application, bootstrap, and run $application = new Zend_Application( diff --git a/scripts/cron.php b/scripts/cron.php index 36da2384..1b5cddf5 100644 --- a/scripts/cron.php +++ b/scripts/cron.php @@ -14,8 +14,26 @@ set_include_path(implode(PATH_SEPARATOR, array( get_include_path(), ))); -/** Zend_Application */ -require_once 'Zend/Application.php'; +//Use classmap autoloader - useful with opcode and realpath cache +require_once 'Zend/Loader/AutoloaderFactory.php'; +require_once 'Zend/Loader/ClassMapAutoloader.php'; +Zend_Loader_AutoloaderFactory::factory(array( + 'Zend_Loader_ClassMapAutoloader' => array( + __DIR__ . '/../library/autoload_classmap.php', + ), + 'Zend_Loader_StandardAutoloader' => array( + 'prefixes' => array( + 'Zend' => __DIR__ . '/../library/Zend', + 'Scores' => __DIR__ . '/../library/Scores', + 'SdMetier' => __DIR__ . '/../library/SdMetier', + 'Metier' => __DIR__ . '/../library/Metier', + ), + 'fallback_autoloader' => true + ) +)); + +// Zend_Application - Use it if you don't have autoloaders +//require_once 'Zend/Application.php'; // Create application, bootstrap, and run $application = new Zend_Application( diff --git a/scripts/jobs/enrichissement.php b/scripts/jobs/enrichissement.php index 0b80dd1d..8d0b63c7 100644 --- a/scripts/jobs/enrichissement.php +++ b/scripts/jobs/enrichissement.php @@ -15,8 +15,26 @@ set_include_path(implode(PATH_SEPARATOR, array( get_include_path(), ))); -/** Zend_Application */ -require_once 'Zend/Application.php'; +//Use classmap autoloader - useful with opcode and realpath cache +require_once 'Zend/Loader/AutoloaderFactory.php'; +require_once 'Zend/Loader/ClassMapAutoloader.php'; +Zend_Loader_AutoloaderFactory::factory(array( + 'Zend_Loader_ClassMapAutoloader' => array( + __DIR__ . '/../../library/autoload_classmap.php', + ), + 'Zend_Loader_StandardAutoloader' => array( + 'prefixes' => array( + 'Zend' => __DIR__ . '/../../library/Zend', + 'Scores' => __DIR__ . '/../../library/Scores', + 'SdMetier' => __DIR__ . '/../../library/SdMetier', + 'Metier' => __DIR__ . '/../../library/Metier', + ), + 'fallback_autoloader' => true + ) +)); + +// Zend_Application - Use it if you don't have autoloaders +//require_once 'Zend/Application.php'; // Create application, bootstrap, and run $application = new Zend_Application(