File manager - Edit - /home/u478019808/domains/bestandroidphones.store/public_html/static/img/logo/hostinger-wp-cli-packages.tar
Back
.github/workflows/sca.yml 0000644 00000000305 15025041042 0011421 0 ustar 00 name: sca-scan on: pull_request: branches: [master, main, staging] workflow_dispatch: jobs: run-sca: uses: hostinger/sca-configs/.github/workflows/sca.yml@main secrets: inherit vendor/composer/autoload_real.php 0000644 00000004654 15025041042 0013216 0 ustar 00 <?php // autoload_real.php @generated by Composer class ComposerAutoloaderInit0d5b0c5f7fa174a56939476a28326e77 { private static $loader; public static function loadClassLoader($class) { if ('Composer\Autoload\ClassLoader' === $class) { require __DIR__ . '/ClassLoader.php'; } } /** * @return \Composer\Autoload\ClassLoader */ public static function getLoader() { if (null !== self::$loader) { return self::$loader; } spl_autoload_register(array('ComposerAutoloaderInit0d5b0c5f7fa174a56939476a28326e77', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(); spl_autoload_unregister(array('ComposerAutoloaderInit0d5b0c5f7fa174a56939476a28326e77', 'loadClassLoader')); $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); if ($useStaticLoader) { require_once __DIR__ . '/autoload_static.php'; call_user_func(\Composer\Autoload\ComposerStaticInit0d5b0c5f7fa174a56939476a28326e77::getInitializer($loader)); } else { $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { $loader->set($namespace, $path); } $map = require __DIR__ . '/autoload_psr4.php'; foreach ($map as $namespace => $path) { $loader->setPsr4($namespace, $path); } $classMap = require __DIR__ . '/autoload_classmap.php'; if ($classMap) { $loader->addClassMap($classMap); } } $loader->register(true); if ($useStaticLoader) { $includeFiles = Composer\Autoload\ComposerStaticInit0d5b0c5f7fa174a56939476a28326e77::$files; } else { $includeFiles = require __DIR__ . '/autoload_files.php'; } foreach ($includeFiles as $fileIdentifier => $file) { composerRequire0d5b0c5f7fa174a56939476a28326e77($fileIdentifier, $file); } return $loader; } } function composerRequire0d5b0c5f7fa174a56939476a28326e77($fileIdentifier, $file) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { require $file; $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; } } vendor/composer/autoload_classmap.php 0000644 00000000223 15025041042 0014062 0 ustar 00 <?php // autoload_classmap.php @generated by Composer $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( ); vendor/composer/LICENSE 0000644 00000002056 15025041042 0010671 0 ustar 00 Copyright (c) Nils Adermann, Jordi Boggiano Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. vendor/composer/autoload_files.php 0000644 00000000337 15025041042 0013367 0 ustar 00 <?php // autoload_files.php @generated by Composer $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( '50a6172b9de1037c714a743f3763f660' => $baseDir . '/hostinger-command.php', ); vendor/composer/ClassLoader.php 0000644 00000032241 15025041042 0012570 0 ustar 00 <?php /* * This file is part of Composer. * * (c) Nils Adermann <naderman@naderman.de> * Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Autoload; /** * ClassLoader implements a PSR-0, PSR-4 and classmap class loader. * * $loader = new \Composer\Autoload\ClassLoader(); * * // register classes with namespaces * $loader->add('Symfony\Component', __DIR__.'/component'); * $loader->add('Symfony', __DIR__.'/framework'); * * // activate the autoloader * $loader->register(); * * // to enable searching the include path (eg. for PEAR packages) * $loader->setUseIncludePath(true); * * In this example, if you try to use a class in the Symfony\Component * namespace or one of its children (Symfony\Component\Console for instance), * the autoloader will first look for the class under the component/ * directory, and it will then fallback to the framework/ directory if not * found before giving up. * * This class is loosely based on the Symfony UniversalClassLoader. * * @author Fabien Potencier <fabien@symfony.com> * @author Jordi Boggiano <j.boggiano@seld.be> * @see http://www.php-fig.org/psr/psr-0/ * @see http://www.php-fig.org/psr/psr-4/ */ class ClassLoader { // PSR-4 private $prefixLengthsPsr4 = array(); private $prefixDirsPsr4 = array(); private $fallbackDirsPsr4 = array(); // PSR-0 private $prefixesPsr0 = array(); private $fallbackDirsPsr0 = array(); private $useIncludePath = false; private $classMap = array(); private $classMapAuthoritative = false; private $missingClasses = array(); private $apcuPrefix; public function getPrefixes() { if (!empty($this->prefixesPsr0)) { return call_user_func_array('array_merge', array_values($this->prefixesPsr0)); } return array(); } public function getPrefixesPsr4() { return $this->prefixDirsPsr4; } public function getFallbackDirs() { return $this->fallbackDirsPsr0; } public function getFallbackDirsPsr4() { return $this->fallbackDirsPsr4; } public function getClassMap() { return $this->classMap; } /** * @param array $classMap Class to filename map */ public function addClassMap(array $classMap) { if ($this->classMap) { $this->classMap = array_merge($this->classMap, $classMap); } else { $this->classMap = $classMap; } } /** * Registers a set of PSR-0 directories for a given prefix, either * appending or prepending to the ones previously set for this prefix. * * @param string $prefix The prefix * @param array|string $paths The PSR-0 root directories * @param bool $prepend Whether to prepend the directories */ public function add($prefix, $paths, $prepend = false) { if (!$prefix) { if ($prepend) { $this->fallbackDirsPsr0 = array_merge( (array) $paths, $this->fallbackDirsPsr0 ); } else { $this->fallbackDirsPsr0 = array_merge( $this->fallbackDirsPsr0, (array) $paths ); } return; } $first = $prefix[0]; if (!isset($this->prefixesPsr0[$first][$prefix])) { $this->prefixesPsr0[$first][$prefix] = (array) $paths; return; } if ($prepend) { $this->prefixesPsr0[$first][$prefix] = array_merge( (array) $paths, $this->prefixesPsr0[$first][$prefix] ); } else { $this->prefixesPsr0[$first][$prefix] = array_merge( $this->prefixesPsr0[$first][$prefix], (array) $paths ); } } /** * Registers a set of PSR-4 directories for a given namespace, either * appending or prepending to the ones previously set for this namespace. * * @param string $prefix The prefix/namespace, with trailing '\\' * @param array|string $paths The PSR-4 base directories * @param bool $prepend Whether to prepend the directories * * @throws \InvalidArgumentException */ public function addPsr4($prefix, $paths, $prepend = false) { if (!$prefix) { // Register directories for the root namespace. if ($prepend) { $this->fallbackDirsPsr4 = array_merge( (array) $paths, $this->fallbackDirsPsr4 ); } else { $this->fallbackDirsPsr4 = array_merge( $this->fallbackDirsPsr4, (array) $paths ); } } elseif (!isset($this->prefixDirsPsr4[$prefix])) { // Register directories for a new namespace. $length = strlen($prefix); if ('\\' !== $prefix[$length - 1]) { throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); } $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; $this->prefixDirsPsr4[$prefix] = (array) $paths; } elseif ($prepend) { // Prepend directories for an already registered namespace. $this->prefixDirsPsr4[$prefix] = array_merge( (array) $paths, $this->prefixDirsPsr4[$prefix] ); } else { // Append directories for an already registered namespace. $this->prefixDirsPsr4[$prefix] = array_merge( $this->prefixDirsPsr4[$prefix], (array) $paths ); } } /** * Registers a set of PSR-0 directories for a given prefix, * replacing any others previously set for this prefix. * * @param string $prefix The prefix * @param array|string $paths The PSR-0 base directories */ public function set($prefix, $paths) { if (!$prefix) { $this->fallbackDirsPsr0 = (array) $paths; } else { $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; } } /** * Registers a set of PSR-4 directories for a given namespace, * replacing any others previously set for this namespace. * * @param string $prefix The prefix/namespace, with trailing '\\' * @param array|string $paths The PSR-4 base directories * * @throws \InvalidArgumentException */ public function setPsr4($prefix, $paths) { if (!$prefix) { $this->fallbackDirsPsr4 = (array) $paths; } else { $length = strlen($prefix); if ('\\' !== $prefix[$length - 1]) { throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); } $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; $this->prefixDirsPsr4[$prefix] = (array) $paths; } } /** * Turns on searching the include path for class files. * * @param bool $useIncludePath */ public function setUseIncludePath($useIncludePath) { $this->useIncludePath = $useIncludePath; } /** * Can be used to check if the autoloader uses the include path to check * for classes. * * @return bool */ public function getUseIncludePath() { return $this->useIncludePath; } /** * Turns off searching the prefix and fallback directories for classes * that have not been registered with the class map. * * @param bool $classMapAuthoritative */ public function setClassMapAuthoritative($classMapAuthoritative) { $this->classMapAuthoritative = $classMapAuthoritative; } /** * Should class lookup fail if not found in the current class map? * * @return bool */ public function isClassMapAuthoritative() { return $this->classMapAuthoritative; } /** * APCu prefix to use to cache found/not-found classes, if the extension is enabled. * * @param string|null $apcuPrefix */ public function setApcuPrefix($apcuPrefix) { $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; } /** * The APCu prefix in use, or null if APCu caching is not enabled. * * @return string|null */ public function getApcuPrefix() { return $this->apcuPrefix; } /** * Registers this instance as an autoloader. * * @param bool $prepend Whether to prepend the autoloader or not */ public function register($prepend = false) { spl_autoload_register(array($this, 'loadClass'), true, $prepend); } /** * Unregisters this instance as an autoloader. */ public function unregister() { spl_autoload_unregister(array($this, 'loadClass')); } /** * Loads the given class or interface. * * @param string $class The name of the class * @return bool|null True if loaded, null otherwise */ public function loadClass($class) { if ($file = $this->findFile($class)) { includeFile($file); return true; } } /** * Finds the path to the file where the class is defined. * * @param string $class The name of the class * * @return string|false The path if found, false otherwise */ public function findFile($class) { // class map lookup if (isset($this->classMap[$class])) { return $this->classMap[$class]; } if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { return false; } if (null !== $this->apcuPrefix) { $file = apcu_fetch($this->apcuPrefix.$class, $hit); if ($hit) { return $file; } } $file = $this->findFileWithExtension($class, '.php'); // Search for Hack files if we are running on HHVM if (false === $file && defined('HHVM_VERSION')) { $file = $this->findFileWithExtension($class, '.hh'); } if (null !== $this->apcuPrefix) { apcu_add($this->apcuPrefix.$class, $file); } if (false === $file) { // Remember that this class does not exist. $this->missingClasses[$class] = true; } return $file; } private function findFileWithExtension($class, $ext) { // PSR-4 lookup $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; $first = $class[0]; if (isset($this->prefixLengthsPsr4[$first])) { $subPath = $class; while (false !== $lastPos = strrpos($subPath, '\\')) { $subPath = substr($subPath, 0, $lastPos); $search = $subPath . '\\'; if (isset($this->prefixDirsPsr4[$search])) { $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); foreach ($this->prefixDirsPsr4[$search] as $dir) { if (file_exists($file = $dir . $pathEnd)) { return $file; } } } } } // PSR-4 fallback dirs foreach ($this->fallbackDirsPsr4 as $dir) { if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { return $file; } } // PSR-0 lookup if (false !== $pos = strrpos($class, '\\')) { // namespaced class name $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1) . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); } else { // PEAR-like class name $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; } if (isset($this->prefixesPsr0[$first])) { foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { if (0 === strpos($class, $prefix)) { foreach ($dirs as $dir) { if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { return $file; } } } } } // PSR-0 fallback dirs foreach ($this->fallbackDirsPsr0 as $dir) { if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { return $file; } } // PSR-0 include paths. if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) { return $file; } return false; } } /** * Scope isolated include. * * Prevents access to $this/self from included files. */ function includeFile($file) { include $file; } vendor/composer/autoload_psr4.php 0000644 00000000305 15025041042 0013150 0 ustar 00 <?php // autoload_psr4.php @generated by Composer $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( 'Hostinger\\WPCLI\\' => array($baseDir . '/src'), ); vendor/composer/autoload_namespaces.php 0000644 00000000225 15025041042 0014400 0 ustar 00 <?php // autoload_namespaces.php @generated by Composer $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( ); vendor/composer/autoload_static.php 0000644 00000001711 15025041042 0013551 0 ustar 00 <?php // autoload_static.php @generated by Composer namespace Composer\Autoload; class ComposerStaticInit0d5b0c5f7fa174a56939476a28326e77 { public static $files = array ( '50a6172b9de1037c714a743f3763f660' => __DIR__ . '/../..' . '/hostinger-command.php', ); public static $prefixLengthsPsr4 = array ( 'H' => array ( 'Hostinger\\WPCLI\\' => 16, ), ); public static $prefixDirsPsr4 = array ( 'Hostinger\\WPCLI\\' => array ( 0 => __DIR__ . '/../..' . '/src', ), ); public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { $loader->prefixLengthsPsr4 = ComposerStaticInit0d5b0c5f7fa174a56939476a28326e77::$prefixLengthsPsr4; $loader->prefixDirsPsr4 = ComposerStaticInit0d5b0c5f7fa174a56939476a28326e77::$prefixDirsPsr4; }, null, ClassLoader::class); } } vendor/autoload.php 0000644 00000000262 15025041042 0010353 0 ustar 00 <?php // autoload.php @generated by Composer require_once __DIR__ . '/composer/autoload_real.php'; return ComposerAutoloaderInit0d5b0c5f7fa174a56939476a28326e77::getLoader(); wp-cli.yml 0000644 00000000043 15025041042 0006450 0 ustar 00 require: - hostinger-command.php hostinger-command.php 0000644 00000005164 15025041042 0010672 0 ustar 00 <?php use Hostinger\WPCLI\Woocommerce\GetOrdersCommand; use Hostinger\WPCLI\Woocommerce\GetWooOrdersCommand; use Hostinger\WPCLI\Woocommerce\GetOrdersUpdatedCommand; if ( ! class_exists( 'WP_CLI' ) ) { return; } $wpcli_hostinger_autoloader = __DIR__ . '/vendor/autoload.php'; if ( file_exists( $wpcli_hostinger_autoloader ) ) { require_once $wpcli_hostinger_autoloader; } if ( class_exists( GetOrdersCommand::class ) ) { WP_CLI::add_command( 'hostinger woocommerce get-orders', GetOrdersCommand::class, [ 'shortdesc' => 'Retrieve WooCommerce orders based on date range.', 'longdesc' => "Fetch all WooCommerce orders either from a specific date or for a set number of days.\n\n" . "## EXAMPLES\n\n" . " wp hostinger woocommerce get-orders --from-date=2025-01-01\n" . " Retrieves all orders from 2025-01-01 until now.\n\n" . " wp hostinger woocommerce get-orders --days=7\n" . " Retrieves all orders from the past 7 days.", 'when' => 'after_wp_load', ] ); } if ( class_exists( GetWooOrdersCommand::class ) ) { WP_CLI::add_command( 'hostinger woocommerce get-woo-orders', GetWooOrdersCommand::class, [ 'shortdesc' => 'Retrieve WooCommerce orders based on date range.', 'longdesc' => "Fetch all WooCommerce orders either from a specific date or for a set number of days.\n\n" . "## EXAMPLES\n\n" . " wp hostinger woocommerce get-woo-orders --from-date=2025-01-01\n" . " Retrieves all orders from 2025-01-01 until now.\n\n" . " wp hostinger woocommerce get-woo-orders --days=7\n" . " Retrieves all orders from the past 7 days.", 'when' => 'after_wp_load', ] ); } if ( class_exists( GetOrdersUpdatedCommand::class ) ) { WP_CLI::add_command( 'hostinger woocommerce get-woo-orders-latest', GetOrdersUpdatedCommand::class, [ 'shortdesc' => 'Retrieve WooCommerce orders based on date range.', 'longdesc' => "Fetch all WooCommerce orders either from a specific date or for a set number of days.\n\n" . "## EXAMPLES\n\n" . " wp hostinger woocommerce get-woo-orders-latest --from-date=2025-01-01\n" . " Retrieves all orders from 2025-01-01 until now.\n\n" . " wp hostinger woocommerce get-woo-orders-latest --days=7\n" . " Retrieves all orders from the past 7 days.", 'when' => 'after_wp_load', ] ); } .gitignore 0000644 00000000017 15025041042 0006523 0 ustar 00 /vendor/ .idea/ composer.json 0000644 00000000546 15025041042 0007264 0 ustar 00 { "name": "hostinger/hostinger-command", "description": "WP-CLI command to retrieve WooCommerce orders.", "type": "wp-cli-package", "version": "1.0.4", "license": "MIT", "autoload": { "psr-4": { "Hostinger\\WPCLI\\": "src/" }, "files": [ "hostinger-command.php" ] }, "require": { "wp-cli/wp-cli": "^2.0" } } .git/description 0000644 00000000111 15025041042 0007635 0 ustar 00 Unnamed repository; edit this file 'description' to name the repository. .git/info/exclude 0000644 00000000360 15025041042 0007704 0 ustar 00 # git ls-files --others --exclude-from=.git/info/exclude # Lines that start with '#' are comments. # For a project mostly in C, the following would be a good set of # exclude patterns (uncomment them if you want to use them): # *.[oa] # *~ .git/packed-refs 0000644 00000000160 15025041042 0007502 0 ustar 00 # pack-refs with: peeled fully-peeled sorted 53d04e2df0adb069d63ec885c985f8b379e593e9 refs/remotes/origin/main .git/refs/remotes/origin/main 0000644 00000000051 15025041042 0012145 0 ustar 00 50392c3ca47db0b59cdfdf6df081c3a542f1e2eb .git/refs/remotes/origin/HEAD 0000644 00000000036 15025041042 0011725 0 ustar 00 ref: refs/remotes/origin/main .git/refs/tags/1.0.4 0000644 00000000051 15025041042 0007652 0 ustar 00 50392c3ca47db0b59cdfdf6df081c3a542f1e2eb .git/refs/heads/main 0000644 00000000051 15025041042 0010264 0 ustar 00 50392c3ca47db0b59cdfdf6df081c3a542f1e2eb .git/config 0000644 00000000431 15025041042 0006564 0 ustar 00 [core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true [remote "origin"] url = git@github.com:hostinger/hostinger-wp-cli-packages.git fetch = +refs/heads/main:refs/remotes/origin/main [branch "main"] remote = origin merge = refs/heads/main .git/hooks/sendemail-validate.sample 0000755 00000004410 15025041042 0013456 0 ustar 00 #!/usr/bin/sh # An example hook script to validate a patch (and/or patch series) before # sending it via email. # # The hook should exit with non-zero status after issuing an appropriate # message if it wants to prevent the email(s) from being sent. # # To enable this hook, rename this file to "sendemail-validate". # # By default, it will only check that the patch(es) can be applied on top of # the default upstream branch without conflicts in a secondary worktree. After # validation (successful or not) of the last patch of a series, the worktree # will be deleted. # # The following config variables can be set to change the default remote and # remote ref that are used to apply the patches against: # # sendemail.validateRemote (default: origin) # sendemail.validateRemoteRef (default: HEAD) # # Replace the TODO placeholders with appropriate checks according to your # needs. validate_cover_letter () { file="$1" # TODO: Replace with appropriate checks (e.g. spell checking). true } validate_patch () { file="$1" # Ensure that the patch applies without conflicts. git am -3 "$file" || return # TODO: Replace with appropriate checks for this patch # (e.g. checkpatch.pl). true } validate_series () { # TODO: Replace with appropriate checks for the whole series # (e.g. quick build, coding style checks, etc.). true } # main ------------------------------------------------------------------------- if test "$GIT_SENDEMAIL_FILE_COUNTER" = 1 then remote=$(git config --default origin --get sendemail.validateRemote) && ref=$(git config --default HEAD --get sendemail.validateRemoteRef) && worktree=$(mktemp --tmpdir -d sendemail-validate.XXXXXXX) && git worktree add -fd --checkout "$worktree" "refs/remotes/$remote/$ref" && git config --replace-all sendemail.validateWorktree "$worktree" else worktree=$(git config --get sendemail.validateWorktree) fi || { echo "sendemail-validate: error: failed to prepare worktree" >&2 exit 1 } unset GIT_DIR GIT_WORK_TREE cd "$worktree" && if grep -q "^diff --git " "$1" then validate_patch "$1" else validate_cover_letter "$1" fi && if test "$GIT_SENDEMAIL_FILE_COUNTER" = "$GIT_SENDEMAIL_FILE_TOTAL" then git config --unset-all sendemail.validateWorktree && trap 'git worktree remove -ff "$worktree"' EXIT && validate_series fi .git/hooks/applypatch-msg.sample 0000755 00000000742 15025041042 0012663 0 ustar 00 #!/usr/bin/sh # # An example hook script to check the commit log message taken by # applypatch from an e-mail message. # # The hook should exit with non-zero status after issuing an # appropriate message if it wants to stop the commit. The hook is # allowed to edit the commit message file. # # To enable this hook, rename this file to "applypatch-msg". . git-sh-setup commitmsg="$(git rev-parse --git-path hooks/commit-msg)" test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"} : .git/hooks/pre-merge-commit.sample 0000755 00000000644 15025041042 0013104 0 ustar 00 #!/usr/bin/sh # # An example hook script to verify what is about to be committed. # Called by "git merge" with no arguments. The hook should # exit with non-zero status after issuing an appropriate message to # stderr if it wants to stop the merge commit. # # To enable this hook, rename this file to "pre-merge-commit". . git-sh-setup test -x "$GIT_DIR/hooks/pre-commit" && exec "$GIT_DIR/hooks/pre-commit" : .git/hooks/pre-rebase.sample 0000755 00000011446 15025041042 0011762 0 ustar 00 #!/usr/bin/sh # # Copyright (c) 2006, 2008 Junio C Hamano # # The "pre-rebase" hook is run just before "git rebase" starts doing # its job, and can prevent the command from running by exiting with # non-zero status. # # The hook is called with the following parameters: # # $1 -- the upstream the series was forked from. # $2 -- the branch being rebased (or empty when rebasing the current branch). # # This sample shows how to prevent topic branches that are already # merged to 'next' branch from getting rebased, because allowing it # would result in rebasing already published history. publish=next basebranch="$1" if test "$#" = 2 then topic="refs/heads/$2" else topic=`git symbolic-ref HEAD` || exit 0 ;# we do not interrupt rebasing detached HEAD fi case "$topic" in refs/heads/??/*) ;; *) exit 0 ;# we do not interrupt others. ;; esac # Now we are dealing with a topic branch being rebased # on top of master. Is it OK to rebase it? # Does the topic really exist? git show-ref -q "$topic" || { echo >&2 "No such branch $topic" exit 1 } # Is topic fully merged to master? not_in_master=`git rev-list --pretty=oneline ^master "$topic"` if test -z "$not_in_master" then echo >&2 "$topic is fully merged to master; better remove it." exit 1 ;# we could allow it, but there is no point. fi # Is topic ever merged to next? If so you should not be rebasing it. only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` only_next_2=`git rev-list ^master ${publish} | sort` if test "$only_next_1" = "$only_next_2" then not_in_topic=`git rev-list "^$topic" master` if test -z "$not_in_topic" then echo >&2 "$topic is already up to date with master" exit 1 ;# we could allow it, but there is no point. else exit 0 fi else not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` /usr/bin/perl -e ' my $topic = $ARGV[0]; my $msg = "* $topic has commits already merged to public branch:\n"; my (%not_in_next) = map { /^([0-9a-f]+) /; ($1 => 1); } split(/\n/, $ARGV[1]); for my $elem (map { /^([0-9a-f]+) (.*)$/; [$1 => $2]; } split(/\n/, $ARGV[2])) { if (!exists $not_in_next{$elem->[0]}) { if ($msg) { print STDERR $msg; undef $msg; } print STDERR " $elem->[1]\n"; } } ' "$topic" "$not_in_next" "$not_in_master" exit 1 fi <<\DOC_END This sample hook safeguards topic branches that have been published from being rewound. The workflow assumed here is: * Once a topic branch forks from "master", "master" is never merged into it again (either directly or indirectly). * Once a topic branch is fully cooked and merged into "master", it is deleted. If you need to build on top of it to correct earlier mistakes, a new topic branch is created by forking at the tip of the "master". This is not strictly necessary, but it makes it easier to keep your history simple. * Whenever you need to test or publish your changes to topic branches, merge them into "next" branch. The script, being an example, hardcodes the publish branch name to be "next", but it is trivial to make it configurable via $GIT_DIR/config mechanism. With this workflow, you would want to know: (1) ... if a topic branch has ever been merged to "next". Young topic branches can have stupid mistakes you would rather clean up before publishing, and things that have not been merged into other branches can be easily rebased without affecting other people. But once it is published, you would not want to rewind it. (2) ... if a topic branch has been fully merged to "master". Then you can delete it. More importantly, you should not build on top of it -- other people may already want to change things related to the topic as patches against your "master", so if you need further changes, it is better to fork the topic (perhaps with the same name) afresh from the tip of "master". Let's look at this example: o---o---o---o---o---o---o---o---o---o "next" / / / / / a---a---b A / / / / / / / / c---c---c---c B / / / / \ / / / / b---b C \ / / / / / \ / ---o---o---o---o---o---o---o---o---o---o---o "master" A, B and C are topic branches. * A has one fix since it was merged up to "next". * B has finished. It has been fully merged up to "master" and "next", and is ready to be deleted. * C has not merged to "next" at all. We would want to allow C to be rebased, refuse A, and encourage B to be deleted. To compute (1): git rev-list ^master ^topic next git rev-list ^master next if these match, topic has not merged in next at all. To compute (2): git rev-list master..topic if this is empty, it is fully merged to "master". DOC_END .git/hooks/post-update.sample 0000755 00000000301 15025041042 0012166 0 ustar 00 #!/usr/bin/sh # # An example hook script to prepare a packed repository for use over # dumb transports. # # To enable this hook, rename this file to "post-update". exec git update-server-info .git/hooks/fsmonitor-watchman.sample 0000755 00000011166 15025041042 0013554 0 ustar 00 #!/usr/bin/perl use strict; use warnings; use IPC::Open2; # An example hook script to integrate Watchman # (https://facebook.github.io/watchman/) with git to speed up detecting # new and modified files. # # The hook is passed a version (currently 2) and last update token # formatted as a string and outputs to stdout a new update token and # all files that have been modified since the update token. Paths must # be relative to the root of the working tree and separated by a single NUL. # # To enable this hook, rename this file to "query-watchman" and set # 'git config core.fsmonitor .git/hooks/query-watchman' # my ($version, $last_update_token) = @ARGV; # Uncomment for debugging # print STDERR "$0 $version $last_update_token\n"; # Check the hook interface version if ($version ne 2) { die "Unsupported query-fsmonitor hook version '$version'.\n" . "Falling back to scanning...\n"; } my $git_work_tree = get_working_dir(); my $retry = 1; my $json_pkg; eval { require JSON::XS; $json_pkg = "JSON::XS"; 1; } or do { require JSON::PP; $json_pkg = "JSON::PP"; }; launch_watchman(); sub launch_watchman { my $o = watchman_query(); if (is_work_tree_watched($o)) { output_result($o->{clock}, @{$o->{files}}); } } sub output_result { my ($clockid, @files) = @_; # Uncomment for debugging watchman output # open (my $fh, ">", ".git/watchman-output.out"); # binmode $fh, ":utf8"; # print $fh "$clockid\n@files\n"; # close $fh; binmode STDOUT, ":utf8"; print $clockid; print "\0"; local $, = "\0"; print @files; } sub watchman_clock { my $response = qx/watchman clock "$git_work_tree"/; die "Failed to get clock id on '$git_work_tree'.\n" . "Falling back to scanning...\n" if $? != 0; return $json_pkg->new->utf8->decode($response); } sub watchman_query { my $pid = open2(\*CHLD_OUT, \*CHLD_IN, 'watchman -j --no-pretty') or die "open2() failed: $!\n" . "Falling back to scanning...\n"; # In the query expression below we're asking for names of files that # changed since $last_update_token but not from the .git folder. # # To accomplish this, we're using the "since" generator to use the # recency index to select candidate nodes and "fields" to limit the # output to file names only. Then we're using the "expression" term to # further constrain the results. my $last_update_line = ""; if (substr($last_update_token, 0, 1) eq "c") { $last_update_token = "\"$last_update_token\""; $last_update_line = qq[\n"since": $last_update_token,]; } my $query = <<" END"; ["query", "$git_work_tree", {$last_update_line "fields": ["name"], "expression": ["not", ["dirname", ".git"]] }] END # Uncomment for debugging the watchman query # open (my $fh, ">", ".git/watchman-query.json"); # print $fh $query; # close $fh; print CHLD_IN $query; close CHLD_IN; my $response = do {local $/; <CHLD_OUT>}; # Uncomment for debugging the watch response # open ($fh, ">", ".git/watchman-response.json"); # print $fh $response; # close $fh; die "Watchman: command returned no output.\n" . "Falling back to scanning...\n" if $response eq ""; die "Watchman: command returned invalid output: $response\n" . "Falling back to scanning...\n" unless $response =~ /^\{/; return $json_pkg->new->utf8->decode($response); } sub is_work_tree_watched { my ($output) = @_; my $error = $output->{error}; if ($retry > 0 and $error and $error =~ m/unable to resolve root .* directory (.*) is not watched/) { $retry--; my $response = qx/watchman watch "$git_work_tree"/; die "Failed to make watchman watch '$git_work_tree'.\n" . "Falling back to scanning...\n" if $? != 0; $output = $json_pkg->new->utf8->decode($response); $error = $output->{error}; die "Watchman: $error.\n" . "Falling back to scanning...\n" if $error; # Uncomment for debugging watchman output # open (my $fh, ">", ".git/watchman-output.out"); # close $fh; # Watchman will always return all files on the first query so # return the fast "everything is dirty" flag to git and do the # Watchman query just to get it over with now so we won't pay # the cost in git to look up each individual file. my $o = watchman_clock(); $error = $output->{error}; die "Watchman: $error.\n" . "Falling back to scanning...\n" if $error; output_result($o->{clock}, ("/")); $last_update_token = $o->{clock}; eval { launch_watchman() }; return 0; } die "Watchman: $error.\n" . "Falling back to scanning...\n" if $error; return 1; } sub get_working_dir { my $working_dir; if ($^O =~ 'msys' || $^O =~ 'cygwin') { $working_dir = Win32::GetCwd(); $working_dir =~ tr/\\/\//; } else { require Cwd; $working_dir = Cwd::cwd(); } return $working_dir; } .git/hooks/pre-applypatch.sample 0000755 00000000654 15025041042 0012665 0 ustar 00 #!/usr/bin/sh # # An example hook script to verify what is about to be committed # by applypatch from an e-mail message. # # The hook should exit with non-zero status after issuing an # appropriate message if it wants to stop the commit. # # To enable this hook, rename this file to "pre-applypatch". . git-sh-setup precommit="$(git rev-parse --git-path hooks/pre-commit)" test -x "$precommit" && exec "$precommit" ${1+"$@"} : .git/hooks/update.sample 0000755 00000007106 15025041042 0011215 0 ustar 00 #!/usr/bin/sh # # An example hook script to block unannotated tags from entering. # Called by "git receive-pack" with arguments: refname sha1-old sha1-new # # To enable this hook, rename this file to "update". # # Config # ------ # hooks.allowunannotated # This boolean sets whether unannotated tags will be allowed into the # repository. By default they won't be. # hooks.allowdeletetag # This boolean sets whether deleting tags will be allowed in the # repository. By default they won't be. # hooks.allowmodifytag # This boolean sets whether a tag may be modified after creation. By default # it won't be. # hooks.allowdeletebranch # This boolean sets whether deleting branches will be allowed in the # repository. By default they won't be. # hooks.denycreatebranch # This boolean sets whether remotely creating branches will be denied # in the repository. By default this is allowed. # # --- Command line refname="$1" oldrev="$2" newrev="$3" # --- Safety check if [ -z "$GIT_DIR" ]; then echo "Don't run this script from the command line." >&2 echo " (if you want, you could supply GIT_DIR then run" >&2 echo " $0 <ref> <oldrev> <newrev>)" >&2 exit 1 fi if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then echo "usage: $0 <ref> <oldrev> <newrev>" >&2 exit 1 fi # --- Config allowunannotated=$(git config --type=bool hooks.allowunannotated) allowdeletebranch=$(git config --type=bool hooks.allowdeletebranch) denycreatebranch=$(git config --type=bool hooks.denycreatebranch) allowdeletetag=$(git config --type=bool hooks.allowdeletetag) allowmodifytag=$(git config --type=bool hooks.allowmodifytag) # check for no description projectdesc=$(sed -e '1q' "$GIT_DIR/description") case "$projectdesc" in "Unnamed repository"* | "") echo "*** Project description file hasn't been set" >&2 exit 1 ;; esac # --- Check types # if $newrev is 0000...0000, it's a commit to delete a ref. zero=$(git hash-object --stdin </dev/null | tr '[0-9a-f]' '0') if [ "$newrev" = "$zero" ]; then newrev_type=delete else newrev_type=$(git cat-file -t $newrev) fi case "$refname","$newrev_type" in refs/tags/*,commit) # un-annotated tag short_refname=${refname##refs/tags/} if [ "$allowunannotated" != "true" ]; then echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 exit 1 fi ;; refs/tags/*,delete) # delete tag if [ "$allowdeletetag" != "true" ]; then echo "*** Deleting a tag is not allowed in this repository" >&2 exit 1 fi ;; refs/tags/*,tag) # annotated tag if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 then echo "*** Tag '$refname' already exists." >&2 echo "*** Modifying a tag is not allowed in this repository." >&2 exit 1 fi ;; refs/heads/*,commit) # branch if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then echo "*** Creating a branch is not allowed in this repository" >&2 exit 1 fi ;; refs/heads/*,delete) # delete branch if [ "$allowdeletebranch" != "true" ]; then echo "*** Deleting a branch is not allowed in this repository" >&2 exit 1 fi ;; refs/remotes/*,commit) # tracking branch ;; refs/remotes/*,delete) # delete tracking branch if [ "$allowdeletebranch" != "true" ]; then echo "*** Deleting a tracking branch is not allowed in this repository" >&2 exit 1 fi ;; *) # Anything else (is there anything else?) echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 exit 1 ;; esac # --- Finished exit 0 .git/hooks/commit-msg.sample 0000755 00000001604 15025041042 0012004 0 ustar 00 #!/usr/bin/sh # # An example hook script to check the commit log message. # Called by "git commit" with one argument, the name of the file # that has the commit message. The hook should exit with non-zero # status after issuing an appropriate message if it wants to stop the # commit. The hook is allowed to edit the commit message file. # # To enable this hook, rename this file to "commit-msg". # Uncomment the below to add a Signed-off-by line to the message. # Doing this in a hook is a bad idea in general, but the prepare-commit-msg # hook is more suited to it. # # SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') # grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" # This example catches duplicate Signed-off-by lines. test "" = "$(grep '^Signed-off-by: ' "$1" | sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { echo >&2 Duplicate Signed-off-by lines. exit 1 } .git/hooks/prepare-commit-msg.sample 0000755 00000002730 15025041042 0013441 0 ustar 00 #!/usr/bin/sh # # An example hook script to prepare the commit log message. # Called by "git commit" with the name of the file that has the # commit message, followed by the description of the commit # message's source. The hook's purpose is to edit the commit # message file. If the hook fails with a non-zero status, # the commit is aborted. # # To enable this hook, rename this file to "prepare-commit-msg". # This hook includes three examples. The first one removes the # "# Please enter the commit message..." help message. # # The second includes the output of "git diff --name-status -r" # into the message, just before the "git status" output. It is # commented because it doesn't cope with --amend or with squashed # commits. # # The third example adds a Signed-off-by line to the message, that can # still be edited. This is rarely a good idea. COMMIT_MSG_FILE=$1 COMMIT_SOURCE=$2 SHA1=$3 /usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE" # case "$COMMIT_SOURCE,$SHA1" in # ,|template,) # /usr/bin/perl -i.bak -pe ' # print "\n" . `git diff --cached --name-status -r` # if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;; # *) ;; # esac # SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') # git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE" # if test -z "$COMMIT_SOURCE" # then # /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE" # fi .git/hooks/pre-commit.sample 0000755 00000003165 15025041042 0012010 0 ustar 00 #!/usr/bin/sh # # An example hook script to verify what is about to be committed. # Called by "git commit" with no arguments. The hook should # exit with non-zero status after issuing an appropriate message if # it wants to stop the commit. # # To enable this hook, rename this file to "pre-commit". if git rev-parse --verify HEAD >/dev/null 2>&1 then against=HEAD else # Initial commit: diff against an empty tree object against=$(git hash-object -t tree /dev/null) fi # If you want to allow non-ASCII filenames set this variable to true. allownonascii=$(git config --type=bool hooks.allownonascii) # Redirect output to stderr. exec 1>&2 # Cross platform projects tend to avoid non-ASCII filenames; prevent # them from being added to the repository. We exploit the fact that the # printable range starts at the space character and ends with tilde. if [ "$allownonascii" != "true" ] && # Note that the use of brackets around a tr range is ok here, (it's # even required, for portability to Solaris 10's /usr/bin/tr), since # the square bracket bytes happen to fall in the designated range. test $(git diff-index --cached --name-only --diff-filter=A -z $against | LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 then cat <<\EOF Error: Attempt to add a non-ASCII file name. This can cause problems if you want to work with people on other platforms. To be portable it is advisable to rename the file. If you know what you are doing you can disable this check using: git config hooks.allownonascii true EOF exit 1 fi # If there are whitespace errors, print the offending file names and fail. exec git diff-index --check --cached $against -- .git/hooks/pre-push.sample 0000755 00000002542 15025041042 0011475 0 ustar 00 #!/usr/bin/sh # An example hook script to verify what is about to be pushed. Called by "git # push" after it has checked the remote status, but before anything has been # pushed. If this script exits with a non-zero status nothing will be pushed. # # This hook is called with the following parameters: # # $1 -- Name of the remote to which the push is being done # $2 -- URL to which the push is being done # # If pushing without using a named remote those arguments will be equal. # # Information about the commits which are being pushed is supplied as lines to # the standard input in the form: # # <local ref> <local oid> <remote ref> <remote oid> # # This sample shows how to prevent push of commits where the log message starts # with "WIP" (work in progress). remote="$1" url="$2" zero=$(git hash-object --stdin </dev/null | tr '[0-9a-f]' '0') while read local_ref local_oid remote_ref remote_oid do if test "$local_oid" = "$zero" then # Handle delete : else if test "$remote_oid" = "$zero" then # New branch, examine all commits range="$local_oid" else # Update to existing branch, examine new commits range="$remote_oid..$local_oid" fi # Check for WIP commit commit=$(git rev-list -n 1 --grep '^WIP' "$range") if test -n "$commit" then echo >&2 "Found WIP commit in $local_ref, not pushing" exit 1 fi fi done exit 0 .git/hooks/pre-receive.sample 0000755 00000001044 15025041042 0012134 0 ustar 00 #!/usr/bin/sh # # An example hook script to make use of push options. # The example simply echoes all push options that start with 'echoback=' # and rejects all pushes when the "reject" push option is used. # # To enable this hook, rename this file to "pre-receive". if test -n "$GIT_PUSH_OPTION_COUNT" then i=0 while test "$i" -lt "$GIT_PUSH_OPTION_COUNT" do eval "value=\$GIT_PUSH_OPTION_$i" case "$value" in echoback=*) echo "echo from the pre-receive-hook: ${value#*=}" >&2 ;; reject) exit 1 esac i=$((i + 1)) done fi .git/hooks/push-to-checkout.sample 0000755 00000005343 15025041042 0013136 0 ustar 00 #!/usr/bin/sh # An example hook script to update a checked-out tree on a git push. # # This hook is invoked by git-receive-pack(1) when it reacts to git # push and updates reference(s) in its repository, and when the push # tries to update the branch that is currently checked out and the # receive.denyCurrentBranch configuration variable is set to # updateInstead. # # By default, such a push is refused if the working tree and the index # of the remote repository has any difference from the currently # checked out commit; when both the working tree and the index match # the current commit, they are updated to match the newly pushed tip # of the branch. This hook is to be used to override the default # behaviour; however the code below reimplements the default behaviour # as a starting point for convenient modification. # # The hook receives the commit with which the tip of the current # branch is going to be updated: commit=$1 # It can exit with a non-zero status to refuse the push (when it does # so, it must not modify the index or the working tree). die () { echo >&2 "$*" exit 1 } # Or it can make any necessary changes to the working tree and to the # index to bring them to the desired state when the tip of the current # branch is updated to the new commit, and exit with a zero status. # # For example, the hook can simply run git read-tree -u -m HEAD "$1" # in order to emulate git fetch that is run in the reverse direction # with git push, as the two-tree form of git read-tree -u -m is # essentially the same as git switch or git checkout that switches # branches while keeping the local changes in the working tree that do # not interfere with the difference between the branches. # The below is a more-or-less exact translation to shell of the C code # for the default behaviour for git's push-to-checkout hook defined in # the push_to_deploy() function in builtin/receive-pack.c. # # Note that the hook will be executed from the repository directory, # not from the working tree, so if you want to perform operations on # the working tree, you will have to adapt your code accordingly, e.g. # by adding "cd .." or using relative paths. if ! git update-index -q --ignore-submodules --refresh then die "Up-to-date check failed" fi if ! git diff-files --quiet --ignore-submodules -- then die "Working directory has unstaged changes" fi # This is a rough translation of: # # head_has_history() ? "HEAD" : EMPTY_TREE_SHA1_HEX if git cat-file -e HEAD 2>/dev/null then head=HEAD else head=$(git hash-object -t tree --stdin </dev/null) fi if ! git diff-index --quiet --cached --ignore-submodules $head -- then die "Working directory has staged changes" fi if ! git read-tree -u -m "$commit" then die "Could not update working tree to new HEAD" fi .git/objects/01/4a38f44d00e8ef42fc2f5abc5273b9e1f52bbf 0000444 00000001042 15025041042 0014671 0 ustar 00 x�U[o�0�9��!e��nT�J-�1`��*A���4�R;��B��;Nz[[.���yq���r�q���y��<z�� �+ �{e����hx|v����t�:��ڏ:Am�i�ˤ����M͎�E�-&�j�HaC�sc�ƚ}FCF�p@�_ХіZ��K�{Rq.X6��xiU�8р0���1hCpx�2Q�p��M�}����7A�����1-u�M�u^�����+4�O�L"KH�U���m�j��݂��|N�dJ�M��%�h����� ����ghN�i�%T��ArP�[�q<�o�Ba3�&�j L��HE� +Z���т,�czQ���iG2����c�r���ۃ�/�?�N>m{�*`������Qt�:�£�����\FS��W�]b@)��A�j+�][u ��y7�����U�2h�vA�Eͪ��!����1���_?!�=�����R�!�@'��%DK1�E��ڽӹ��#�?��t6ۜ�#�����4�g���n�G�# .git/objects/51/b01d9da12e87545d86f5980457fa26b243e29a 0000444 00000004466 15025041042 0014271 0 ustar 00 x��o��u?���B(�V�t�*��!��Cc�.�@1�:[\(�v<���{��}�<��h����okq˾����?�p�]o���b��mQr��hU��s��՛���^�Rl6\����Q�r��*����� @� ʺh[�������`���ͪ5���~t���v�uU���)U%��U����R�lR���h[Q��f�� � |�;6eϘ#矫V�S��( *���yD"�.��18�Z�� �l�_���`��P`O���;!9�]Ӏ�Z.�,�ؾvB~!���dTrY���9� �➫ܯOA�@e02"�3���r��*�y!���[!�Ǻ� �Z��D�O�3�-�C���[E�2"����fX�� e'%o��AP�c�ݜ�<�M���U]5�߭hr 'V��`���_��_��o�����/��x�VV;���m��_�(�4��b�݅��Zf�1Gd7��5]]� �<�h10T��!�3�������D�PL�t�b[)vՊ3^�5�l>wb2�?�\�BBEP\&W3�z��U�ߠ �>��?/��=�g��UR Ump�X���VB�����T�����?I5g���/�1C����q�ܾ0^C\{�j�F}�> ����N6l�t4����L Z� Ե�0�#4Np�a���H�P�6,]T!���6�¤��r��'.e��C����1O#��o����?����H{���Yq�A���x�)ɲ����QE�RGx`�VՔu�B�Q��C�=���L=n��8k�bK�Lrcc&]�z��8ܖ�'�ߗ�� .k�58�m�4�+yXg_�do�JUE]�z��o��k�Q�j���.M��Կ�f����\�D�\�� ]�'0$�ҁ�c6:q�uUsL�H���:��"I�|�+B�_���Bٺ�om?�ԕ3QN&�N��nD�d��� m�*r T�DC�����Vv� -���+)Js���#E�F��+Z�u0��c~јzݒ�m���PG�J�d����(�Kf�&� Q���fV �{}C�,겫!$�bs�=� �*Cw����x܀�s�k�j�Rt �ͷ04�E��3fW��S"N�Mc*P��eϙ�C�a��c|)66���fI5ۈ�rΦ�r�p�t��LIW-�fL�||�&�����$Q�6k9h/#p !��j:c�ls~�� ��-�y+%i2{��>7�ړ��\6zD��:�Tm�}�,(diw��F'.]���mW���9�\Y�m�J�M���^��� ���-j�ڎ�g�8�tE�tpH<Hx�(?�~|v<"���T�8Ih�a�_ i�$/>�*�!�fl��vl���i��/�w ��H��{�-�fr@�$dGp�]\�C���z��z��9�eo� �4� [∧y��c��T���A/=]F�A�u�Z�c�I�lRV�'&��vC�� ��ұ�C��K���Y�B7�R�D�[�A���BqK=L�,�n�DjA��hIw] �/cM�Ipp�=���ʳ��ݖ�iyDNXf��eA썓���1X�etHc�5��{�` �谮��jv��O��v���ϱ�B���բP~N�"�#,��=��@wA��en�W��0������Ŝ�9H�� ����J��}^5 )��r�f� &��C���=,c��(8��q�N�9��ƕ0ؙ.0���*<`Pc�S���3�F ���`r�����&�h�gp�`N��*�s<���i�Rp8�� �� C����l�h����Zp�?���ѝ��YO �lc���`�oͧF<4� �,��|F#�xq� ����c�^�����,{ֺ��_ȁ�gahډ髌6�zrB4S�H��� ]�;��O���='����m1� �A�k�H��(����h@�}�K�9�5}-����dW.\b����;a�����A#!�aY�h�?N�I��t?�|W��k�X*l��dIqz;i�fTLE���=X� n������EN�#��8w�c���nEЅ.��u�}>�ڡ��7G���@�'�/����DŽv6{L�S-�_ �s=���/�N\w�uʾ ճ�W�l|��LɪvL:G:�"�GX�8�'�. � �G_�0�`ɰ��8hX�̈́����̽�����2^L0�Qo�(�����'���Xb�,]<[�����q�G~l?3-��uW�zi�Mp��i�.��1����<�4��]K������LI��R7��_�?�j7�"d85ib�(6���� .git/objects/23/e22bc49fd0f4f6d266313c0404c8a49dacac1d 0000444 00000001563 15025041042 0014611 0 ustar 00 x}�ɮ�F E��+J�&����[I�`l&�l�a�L����yݝEQ��H��nN��5�4��ا)@q�& �,�$� �,��4B�K���Q���%��O�p"���B��b^�b��#1DqQ���B�&l�4m��&�:@�"�cif�/�m�~�h�>��#�c1Eq[� �P�@� Q�I?�iT<j���?�o�[˻|�9��=�N�Oଞ�EWO���~p`��,I�V�l�6�y�߷��6?M쭨$I�`Kj�J �˱��4_ʫdPE�\��u��-#�sy��yt�=z�d�'�]����Y֢ll9�7��F}����K �]\�&ٔ���wyu3�w(���C�i)q^���Q��!�X�/u$� ��UeE8p�z���~Տwr�*N/v����7�)kB R`�j����~�t��w+�Ɲl�|����S��m���U�=N����C��!�ST�zx\��0 ����XG��U)������F������q�+�s��֮xn.�[F�R��( ��+/�M�4�w�R1]�:s�W�zS0�6�Y)b�R�N�6�+5R&nk��,����Ʌ}��t+t�%zyF���)1�*�s��I���pծ5mN&�h%@d�m[��WYVo܅̴9y��aiTo��-ԛ���gA(��;&T�ge�zQ�J l^���fz+��&��vD�GI��~��������Y|S+ӳ�O� ��D�\���Q��bA��l���q.b�>��Bljzx{�a�ޏ����D�"b̈́ ]��i�/�^Upe��c��g�k[�����F�4���K�1����~�2�D1���$�vq�w8�pp�|4�HF};)�9��o��mb .git/objects/1e/0a0eba5bfcbf1e2d10425c99aa5c4d79ec01e1 0000444 00000000354 15025041042 0015015 0 ustar 00 xeO�N!�_A8[�&�k/6i�L��jB�gKd�Ƙ�w��� �73{�ly�p��0Ɲ�?2~�1w l/?��8*7��L j4!�2�ۉ�f�f K�!$4p�y�"%��q ���Hߡx}��A�u��;m>}#rYQk4�XD�s��)y��@)r�"���H��_���v��s䈺�E1�F�{7"�^�H���2Cռ��8���`5��>m}��ۭ\d��L�/\Eh� .git/objects/11/835ae78d8d9bebdc4bc08b5a7068539ea5c2a5 0000444 00000000407 15025041042 0014634 0 ustar 00 x+)JMU023g01 ��̒��$ލ 6�[/;~�z�wY���OC3����T����&���뾽d֔��֜� �� rut�u��Ma��N�~7g��M���/ޞW��(9?� �8�H/�8?�!���(������r�M�{� U��_\����Z�Ԓ����W�Q���e�ŗ��{�?�Q{��w>�����d��lWϽ�vo��Ʀ�I�7���R�W^�����W��ð�g��O�ӗ�f/�2�\��[�� ��o� .git/objects/5e/80c54009c45a30e1db563edd098e926eea4850 0000444 00000000354 15025041042 0014411 0 ustar 00 xeO�N!�_A8[�&�k/6i�L��jB�gKd�Ƙ�w��� �73{�����a�;5d��c2� �^~B�qTn�י8@�hB2�e~��͚��<CHh���~EJ@ �� e=��C� B[#��� uw&�|�F.䲢�hp����犩S�֫�R�-D��H��_���v��s䈺�E1�F�{7"�^�H���2Cռ��8���`5��>m}��ۭ\d��L�/]h� .git/objects/5e/78cffc99f01a92fe245e78bf46b3f5265484b9 0000444 00000000100 15025041042 0014521 0 ustar 00 x+)JMU0�`040031QpO-�/JI-*v���M�K�+�(`8#bx�l��C�2�!W�8�#����� .git/objects/50/392c3ca47db0b59cdfdf6df081c3a542f1e2eb 0000444 00000001545 15025041042 0014760 0 ustar 00 x}S��V̙�xR.�P�}�&�<0ۘ�`�o,f3����g)�(-�ԪRZU��u]���h꧱Gdb�<��(��L$�%)��(K������ȘIX��z�|�1� ��I�(fK�)�<#!�͢8�48���hm�Q3F���G��_yJ(�g�)��6 ��4m��j���c��$m�'�����J '��>���@+F}���d�W�w�P���#���f��A3���x�D�PV td������ 9�4q���vU�@]�(y�E�G��VCv�d5�$�`�jⷑ��"��@���*�N��&a\�칃�Ql��Q��00©�lt1p�='�t� %�b���l1oTXTp��(W\�%��6�%�Oʨw�wc���~�쀁G�B��ki�k��̊���&Y(3q�>��p��/��D� G�{��H<�X�2|deN.��{�����\�y�K�2 �{�v��bύOS����Zi�~�0pFp���%H�[�����E�?��k��ӆOѭ�=� Omf���L!�`��}���z�O� ���Rcy���?�|��ǎ�ѻ4B�l�W��*��QO6�U�H�kօ��9-J���f�<߳y�S{1��q�uu��&!?�8=�¥[��"*�#:_��J��~�n�{���L?�%��n�$�����Z�Xx���yF{�g�y�;_�_�1ت�r�9�ǟ�衠۽�~��ب�/%�k���%sk��@�n���v������M�~)�᭮����ѷ�!։κ#��>�����DI?�����,����Q?�����n���Gy1|/]�=JF���i"���:jR���4�+����gt .git/objects/3b/11b99bc54692cf456c0c7301fb794fd71d5988 0000444 00000001532 15025041042 0014352 0 ustar 00 x}��ΫF���)Z�&�o�Q]3ؘр�]3��OO�&�,���S�R�tN%}�V��bX�,�F-d��,�a�S �C#:�9��,��91�)��oSg,��<g���9C:�\B'�8���R�h�:<�m~��E���/�m��i��)��WQ-�%}��[��)�BE|�g�%��V-������ʊ�����WI;Ͱ��9�74K<��;'