Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 88

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 215

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 216

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 217

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 218

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 219

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 220
PK!zķˆˆcarbon/extension.neonnuÕIw¶“services: - class: Carbon\PHPStan\MacroExtension tags: - phpstan.broker.methodsClassReflectionExtension PK!A_£ŅŅcarbon/readme.mdnuÕIw¶“# Carbon [![Latest Stable Version](https://img.shields.io/packagist/v/nesbot/carbon.svg?style=flat-square)](https://packagist.org/packages/nesbot/carbon) [![Total Downloads](https://img.shields.io/packagist/dt/nesbot/carbon.svg?style=flat-square)](https://packagist.org/packages/nesbot/carbon) [![GitHub Actions](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Fbriannesbitt%2FCarbon%2Fbadge&style=flat-square&label=Build&logo=none)](https://actions-badge.atrox.dev/briannesbitt/Carbon/goto) [![StyleCI](https://github.styleci.io/repos/5724990/shield?style=flat-square)](https://github.styleci.io/repos/5724990) [![codecov.io](https://img.shields.io/codecov/c/github/briannesbitt/Carbon.svg?style=flat-square)](https://codecov.io/github/briannesbitt/Carbon?branch=master) [![PHPStan](https://img.shields.io/badge/PHPStan-enabled-44CC11.svg?longCache=true&style=flat-square)](https://github.com/phpstan/phpstan) [![Tidelift](https://tidelift.com/badges/github/briannesbitt/Carbon)](https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme) An international PHP extension for DateTime. [http://carbon.nesbot.com](http://carbon.nesbot.com) ```php toDateTimeString()); printf("Right now in Vancouver is %s", Carbon::now('America/Vancouver')); //implicit __toString() $tomorrow = Carbon::now()->addDay(); $lastWeek = Carbon::now()->subWeek(); $nextSummerOlympics = Carbon::createFromDate(2016)->addYears(4); $officialDate = Carbon::now()->toRfc2822String(); $howOldAmI = Carbon::createFromDate(1975, 5, 21)->age; $noonTodayLondonTime = Carbon::createFromTime(12, 0, 0, 'Europe/London'); $internetWillBlowUpOn = Carbon::create(2038, 01, 19, 3, 14, 7, 'GMT'); // Don't really want this to happen so mock now Carbon::setTestNow(Carbon::createFromDate(2000, 1, 1)); // comparisons are always done in UTC if (Carbon::now()->gte($internetWillBlowUpOn)) { die(); } // Phew! Return to normal behaviour Carbon::setTestNow(); if (Carbon::now()->isWeekend()) { echo 'Party!'; } // Over 200 languages (and over 500 regional variants) supported: echo Carbon::now()->subMinutes(2)->diffForHumans(); // '2 minutes ago' echo Carbon::now()->subMinutes(2)->locale('zh_CN')->diffForHumans(); // '2分钟前' echo Carbon::parse('2019-07-23 14:51')->isoFormat('LLLL'); // 'Tuesday, July 23, 2019 2:51 PM' echo Carbon::parse('2019-07-23 14:51')->locale('fr_FR')->isoFormat('LLLL'); // 'mardi 23 juillet 2019 14:51' // ... but also does 'from now', 'after' and 'before' // rolling up to seconds, minutes, hours, days, months, years $daysSinceEpoch = Carbon::createFromTimestamp(0)->diffInDays(); ``` [Get supported nesbot/carbon with the Tidelift Subscription](https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme) ## Installation ### With Composer ``` $ composer require nesbot/carbon ``` ```json { "require": { "nesbot/carbon": "^2.16" } } ``` ```php ### Translators [Thanks to people helping us to translate Carbon in so many languages](https://carbon.nesbot.com/contribute/translators/) ### Backers Thank you to all our backers! šŸ™ [[Become a backer](https://opencollective.com/Carbon#backer)] ### Sponsors Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/Carbon#sponsor)] ## Carbon for enterprise Available as part of the Tidelift Subscription. The maintainers of ``Carbon`` and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=enterprise&utm_term=repo) PK!^¬ Tcarbon/LICENSEnuÕIw¶“Copyright (C) Brian Nesbitt 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. PK!óT>Õcarbon/phpmd.xmlnuÕIw¶“ Mess detection rules for Carbon PK!ÖÉ$Īcarbon/contributing.mdnuÕIw¶“# Contributing to Carbon ## Issue Contributions Please report any security issue using [Tidelift security contact](https://tidelift.com/security). Tidelift will coordinate the fix and disclosure. Please don't disclose security bugs publicly until they have been handled by us. For any other bug or issue, please click this link and follow the template: [Create new issue](https://github.com/briannesbitt/Carbon/issues/new) You may think this template does not apply to your case but please think again. A long description will never be as clear as a code chunk with the output you expect from it (for either bug report or new features). ## Code Contributions ### Where to begin We use the label **good first issue** to tag issues that could be a good fit for new contributors, see if there are such issues now following this link: https://github.com/briannesbitt/Carbon/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22 Else, check the roadmap to see what we plan to do in next releases: https://github.com/briannesbitt/Carbon/issues/1681 ### Develop locally, then submit changes Fork the [GitHub project](https://github.com/briannesbitt/Carbon) and download it locally: ```shell git clone https://github.com//Carbon.git cd Carbon git remote add upstream https://github.com/briannesbitt/Carbon.git ``` Replace `` with your GitHub username. Then, you can work on the master or create a specific branch for your development: ```shell git checkout -b my-feature-branch -t origin/master ``` You can now edit the "Carbon" directory contents. Before committing, please set your name and your e-mail (use the same e-mail address as in your GitHub account): ```shell git config --global user.name "Your Name" git config --global user.email "your.email.address@example.com" ``` The ```--global``` argument will apply this setting for all your git repositories, remove it to set only your Carbon fork with those settings. Now you can commit your modifications as you usually do with git: ```shell git add --all git commit -m "The commit message log" ``` If your patch fixes an open issue, please insert ```#``` immediately followed by the issue number: ```shell git commit -m "#21 Fix this or that" ``` Use git rebase (not git merge) to sync your work from time to time: ```shell git fetch origin git rebase origin/master ``` Please add some tests for bug fixes and features (so it will ensure next developments will not break your code), then check all is right with phpunit: Install PHP if you haven't yet, then install composer: https://getcomposer.org/download/ Update dependencies: ``` ./composer.phar update ``` Or if you installed composer globally: ``` composer update ``` Then call phpunit: ``` ./vendor/bin/phpunit ``` Make sure all tests succeed before submitting your pull-request, else we will not be able to merge it. Push your work on your remote GitHub fork with: ``` git push origin my-feature-branch ``` Go to https://github.com/yourusername/Carbon and select your feature branch. Click the 'Pull Request' button and fill out the form. We will review it within a few days. And we thank you in advance for your help. ## Versioning ### Note about Semantic Versioning and breaking changes As a developer, you must understand every change is a breaking change. What is a bug for someone is expected in someone else's workflow. The consequence of a change strongly depends on the usage. [Semantic Versioning](https://semver.org/) relies to public API. In PHP, the public API of a class is its public methods. However, if you extend a class, you can access protected methods, then if you use reflexion, you can access private methods. So anything can become a public API if you force it to be. That doesn't mean we should handle any possible usage, else we would have to publish a major release for each change and it would no longer make sense. So before any complain about a breaking change, be warned, we do not guarantee a strict Semantic Versioning as you may expect, we're following a pragmatic interpretation of Semantic Versioning that allows the software to evolve in a reliable way with reasonable maintenance effort. Concretely, we consider a change as breaking if it makes fail one of our unit test. We will do our best to avoid incompatibilities with libraries that extends Carbon classes (such as Laravel that is continuously tested thanks to Travis CI, [see the compatibility matrix](https://github.com/kylekatarnls/carbon-laravel/tree/master#carbon-1-dev-version-1next)). If you're the owner of a library that strongly depends on Carbon, we recommend you to run unit tests daily requiring `"nesbot/carbon": "dev-master"` (for `^2`) or `"nesbot/carbon": "dev-version-1.next"` (for `^1`), this way you can detect incompatibilities earlier and report it to us before we tag a release. We'll pay attention and try to fix it to make update to next minor releases as soft as possible. We reserve the right to publish emergency patches within 24 hours after a release if a tag that does not respect this pattern would have been released despite our vigilance. In this very rare and particular case, we would mark the tag as broken on GitHub and backward compatibility would be based on previous stable tag. Last, you must understand that Carbon extends PHP natives classes, that means Carbon can be impacted by any change that occurs in the date/time API of PHP. We watch new PHP versions and handle those changes as quickly as possible when detected, but as PHP does not follow the semantic versioning pattern, it basically means any releases (including patches) can have unexpected consequences on Carbon methods results. ### Long term support To benefit the better support, require Carbon using major version range (`^1` or `^2`). By requiring `1.26.*`, `~1.26.0` or limited range such as `>=1.20 <1.33`, you fall to low priority support (only security and critical issues will be fixed), our prior support goes to next minor releases of each major version. It applies to bug fixes and low-cost features. Other new features will only be added in the last stable release. At the opposite, we recommend you to restrain to a major number, as there is no compatibility guarantee from a major version to the next. It means requiring `>=2`, as it allows any newer version, will probably leads to errors on releasing our next major version. Open milestones can be patched if a minor bug is detected while if you're on a closed milestone, we'll more likely ask you to update first to an open one. See currently open milestones: https://github.com/briannesbitt/Carbon/milestones PK!ČqlŹ Ź carbon/composer.jsonnuÕIw¶“{ "name": "nesbot/carbon", "type": "library", "description": "An API extension for DateTime that supports 281 different languages.", "keywords": [ "date", "time", "DateTime" ], "homepage": "http://carbon.nesbot.com", "support": { "issues": "https://github.com/briannesbitt/Carbon/issues", "source": "https://github.com/briannesbitt/Carbon" }, "license": "MIT", "authors": [ { "name": "Brian Nesbitt", "email": "brian@nesbot.com", "homepage": "http://nesbot.com" }, { "name": "kylekatarnls", "homepage": "http://github.com/kylekatarnls" } ], "prefer-stable": true, "minimum-stability": "dev", "bin": ["bin/carbon"], "require": { "php": "^7.1.8 || ^8.0", "ext-json": "*", "symfony/polyfill-mbstring": "^1.0", "symfony/translation": "^3.4 || ^4.0 || ^5.0" }, "require-dev": { "doctrine/orm": "^2.7", "friendsofphp/php-cs-fixer": "^2.14 || ^3.0", "kylekatarnls/multi-tester": "^2.0", "phpmd/phpmd": "^2.9", "phpstan/extension-installer": "^1.0", "phpstan/phpstan": "^0.12.54", "phpunit/phpunit": "^7.5.20 || ^8.5.14", "squizlabs/php_codesniffer": "^3.4" }, "autoload": { "psr-4": { "Carbon\\": "src/Carbon/" } }, "autoload-dev": { "files": [ "tests/Laravel/ServiceProvider.php" ], "psr-4": { "Tests\\": "tests/" } }, "config": { "process-timeout": 0, "sort-packages": true }, "scripts": { "test": [ "@phpunit", "@style-check" ], "style-check": [ "@phpcs", "@phpstan", "@phpmd" ], "phpunit": "phpunit --verbose", "phpcs": "php-cs-fixer fix -v --diff --dry-run", "phpstan": "phpstan analyse --configuration phpstan.neon", "phpmd": "phpmd src text /phpmd.xml", "phpdoc": "php phpdoc.php" }, "extra": { "branch-alias": { "dev-master": "2.x-dev", "dev-3.x": "3.x-dev" }, "laravel": { "providers": [ "Carbon\\Laravel\\ServiceProvider" ] }, "phpstan": { "includes": [ "extension.neon" ] } } } PK!{mu0]]carbon/bin/carbon.batnuÕIw¶“@ECHO OFF setlocal DISABLEDELAYEDEXPANSION SET BIN_TARGET=%~dp0/carbon php "%BIN_TARGET%" %* PK!#ėŖ²zzcarbon/bin/carbonnu™½Ģ—ż#!/usr/bin/env php * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon; use DateTimeInterface; interface CarbonConverterInterface { public function convertDate(DateTimeInterface $dateTime, bool $negated = false): CarbonInterface; } PK!ŸqWņ`ņ`$carbon/src/Carbon/CarbonInterval.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon; use Carbon\Exceptions\BadFluentConstructorException; use Carbon\Exceptions\BadFluentSetterException; use Carbon\Exceptions\InvalidCastException; use Carbon\Exceptions\InvalidIntervalException; use Carbon\Exceptions\ParseErrorException; use Carbon\Exceptions\UnitNotConfiguredException; use Carbon\Exceptions\UnknownGetterException; use Carbon\Exceptions\UnknownSetterException; use Carbon\Exceptions\UnknownUnitException; use Carbon\Traits\IntervalRounding; use Carbon\Traits\IntervalStep; use Carbon\Traits\Mixin; use Carbon\Traits\Options; use Closure; use DateInterval; use Exception; use ReflectionException; use Throwable; /** * A simple API extension for DateInterval. * The implementation provides helpers to handle weeks but only days are saved. * Weeks are calculated based on the total days of the current instance. * * @property int $years Total years of the current interval. * @property int $months Total months of the current interval. * @property int $weeks Total weeks of the current interval calculated from the days. * @property int $dayz Total days of the current interval (weeks * 7 + days). * @property int $hours Total hours of the current interval. * @property int $minutes Total minutes of the current interval. * @property int $seconds Total seconds of the current interval. * @property int $microseconds Total microseconds of the current interval. * @property int $milliseconds Total microseconds of the current interval. * @property int $microExcludeMilli Remaining microseconds without the milliseconds. * @property int $dayzExcludeWeeks Total days remaining in the final week of the current instance (days % 7). * @property int $daysExcludeWeeks alias of dayzExcludeWeeks * @property-read float $totalYears Number of years equivalent to the interval. * @property-read float $totalMonths Number of months equivalent to the interval. * @property-read float $totalWeeks Number of weeks equivalent to the interval. * @property-read float $totalDays Number of days equivalent to the interval. * @property-read float $totalDayz Alias for totalDays. * @property-read float $totalHours Number of hours equivalent to the interval. * @property-read float $totalMinutes Number of minutes equivalent to the interval. * @property-read float $totalSeconds Number of seconds equivalent to the interval. * @property-read float $totalMilliseconds Number of milliseconds equivalent to the interval. * @property-read float $totalMicroseconds Number of microseconds equivalent to the interval. * @property-read string $locale locale of the current instance * * @method static CarbonInterval years($years = 1) Create instance specifying a number of years or modify the number of years if called on an instance. * @method static CarbonInterval year($years = 1) Alias for years() * @method static CarbonInterval months($months = 1) Create instance specifying a number of months or modify the number of months if called on an instance. * @method static CarbonInterval month($months = 1) Alias for months() * @method static CarbonInterval weeks($weeks = 1) Create instance specifying a number of weeks or modify the number of weeks if called on an instance. * @method static CarbonInterval week($weeks = 1) Alias for weeks() * @method static CarbonInterval days($days = 1) Create instance specifying a number of days or modify the number of days if called on an instance. * @method static CarbonInterval dayz($days = 1) Alias for days() * @method static CarbonInterval daysExcludeWeeks($days = 1) Create instance specifying a number of days or modify the number of days (keeping the current number of weeks) if called on an instance. * @method static CarbonInterval dayzExcludeWeeks($days = 1) Alias for daysExcludeWeeks() * @method static CarbonInterval day($days = 1) Alias for days() * @method static CarbonInterval hours($hours = 1) Create instance specifying a number of hours or modify the number of hours if called on an instance. * @method static CarbonInterval hour($hours = 1) Alias for hours() * @method static CarbonInterval minutes($minutes = 1) Create instance specifying a number of minutes or modify the number of minutes if called on an instance. * @method static CarbonInterval minute($minutes = 1) Alias for minutes() * @method static CarbonInterval seconds($seconds = 1) Create instance specifying a number of seconds or modify the number of seconds if called on an instance. * @method static CarbonInterval second($seconds = 1) Alias for seconds() * @method static CarbonInterval milliseconds($milliseconds = 1) Create instance specifying a number of milliseconds or modify the number of milliseconds if called on an instance. * @method static CarbonInterval millisecond($milliseconds = 1) Alias for milliseconds() * @method static CarbonInterval microseconds($microseconds = 1) Create instance specifying a number of microseconds or modify the number of microseconds if called on an instance. * @method static CarbonInterval microsecond($microseconds = 1) Alias for microseconds() * @method $this addYears(int $years) Add given number of years to the current interval * @method $this subYears(int $years) Subtract given number of years to the current interval * @method $this addMonths(int $months) Add given number of months to the current interval * @method $this subMonths(int $months) Subtract given number of months to the current interval * @method $this addWeeks(int|float $weeks) Add given number of weeks to the current interval * @method $this subWeeks(int|float $weeks) Subtract given number of weeks to the current interval * @method $this addDays(int|float $days) Add given number of days to the current interval * @method $this subDays(int|float $days) Subtract given number of days to the current interval * @method $this addHours(int|float $hours) Add given number of hours to the current interval * @method $this subHours(int|float $hours) Subtract given number of hours to the current interval * @method $this addMinutes(int|float $minutes) Add given number of minutes to the current interval * @method $this subMinutes(int|float $minutes) Subtract given number of minutes to the current interval * @method $this addSeconds(int|float $seconds) Add given number of seconds to the current interval * @method $this subSeconds(int|float $seconds) Subtract given number of seconds to the current interval * @method $this addMilliseconds(int|float $milliseconds) Add given number of milliseconds to the current interval * @method $this subMilliseconds(int|float $milliseconds) Subtract given number of milliseconds to the current interval * @method $this addMicroseconds(int|float $microseconds) Add given number of microseconds to the current interval * @method $this subMicroseconds(int|float $microseconds) Subtract given number of microseconds to the current interval * @method $this roundYear(int|float $precision = 1, string $function = "round") Round the current instance year with given precision using the given function. * @method $this roundYears(int|float $precision = 1, string $function = "round") Round the current instance year with given precision using the given function. * @method $this floorYear(int|float $precision = 1) Truncate the current instance year with given precision. * @method $this floorYears(int|float $precision = 1) Truncate the current instance year with given precision. * @method $this ceilYear(int|float $precision = 1) Ceil the current instance year with given precision. * @method $this ceilYears(int|float $precision = 1) Ceil the current instance year with given precision. * @method $this roundMonth(int|float $precision = 1, string $function = "round") Round the current instance month with given precision using the given function. * @method $this roundMonths(int|float $precision = 1, string $function = "round") Round the current instance month with given precision using the given function. * @method $this floorMonth(int|float $precision = 1) Truncate the current instance month with given precision. * @method $this floorMonths(int|float $precision = 1) Truncate the current instance month with given precision. * @method $this ceilMonth(int|float $precision = 1) Ceil the current instance month with given precision. * @method $this ceilMonths(int|float $precision = 1) Ceil the current instance month with given precision. * @method $this roundWeek(int|float $precision = 1, string $function = "round") Round the current instance day with given precision using the given function. * @method $this roundWeeks(int|float $precision = 1, string $function = "round") Round the current instance day with given precision using the given function. * @method $this floorWeek(int|float $precision = 1) Truncate the current instance day with given precision. * @method $this floorWeeks(int|float $precision = 1) Truncate the current instance day with given precision. * @method $this ceilWeek(int|float $precision = 1) Ceil the current instance day with given precision. * @method $this ceilWeeks(int|float $precision = 1) Ceil the current instance day with given precision. * @method $this roundDay(int|float $precision = 1, string $function = "round") Round the current instance day with given precision using the given function. * @method $this roundDays(int|float $precision = 1, string $function = "round") Round the current instance day with given precision using the given function. * @method $this floorDay(int|float $precision = 1) Truncate the current instance day with given precision. * @method $this floorDays(int|float $precision = 1) Truncate the current instance day with given precision. * @method $this ceilDay(int|float $precision = 1) Ceil the current instance day with given precision. * @method $this ceilDays(int|float $precision = 1) Ceil the current instance day with given precision. * @method $this roundHour(int|float $precision = 1, string $function = "round") Round the current instance hour with given precision using the given function. * @method $this roundHours(int|float $precision = 1, string $function = "round") Round the current instance hour with given precision using the given function. * @method $this floorHour(int|float $precision = 1) Truncate the current instance hour with given precision. * @method $this floorHours(int|float $precision = 1) Truncate the current instance hour with given precision. * @method $this ceilHour(int|float $precision = 1) Ceil the current instance hour with given precision. * @method $this ceilHours(int|float $precision = 1) Ceil the current instance hour with given precision. * @method $this roundMinute(int|float $precision = 1, string $function = "round") Round the current instance minute with given precision using the given function. * @method $this roundMinutes(int|float $precision = 1, string $function = "round") Round the current instance minute with given precision using the given function. * @method $this floorMinute(int|float $precision = 1) Truncate the current instance minute with given precision. * @method $this floorMinutes(int|float $precision = 1) Truncate the current instance minute with given precision. * @method $this ceilMinute(int|float $precision = 1) Ceil the current instance minute with given precision. * @method $this ceilMinutes(int|float $precision = 1) Ceil the current instance minute with given precision. * @method $this roundSecond(int|float $precision = 1, string $function = "round") Round the current instance second with given precision using the given function. * @method $this roundSeconds(int|float $precision = 1, string $function = "round") Round the current instance second with given precision using the given function. * @method $this floorSecond(int|float $precision = 1) Truncate the current instance second with given precision. * @method $this floorSeconds(int|float $precision = 1) Truncate the current instance second with given precision. * @method $this ceilSecond(int|float $precision = 1) Ceil the current instance second with given precision. * @method $this ceilSeconds(int|float $precision = 1) Ceil the current instance second with given precision. * @method $this roundMillennium(int|float $precision = 1, string $function = "round") Round the current instance millennium with given precision using the given function. * @method $this roundMillennia(int|float $precision = 1, string $function = "round") Round the current instance millennium with given precision using the given function. * @method $this floorMillennium(int|float $precision = 1) Truncate the current instance millennium with given precision. * @method $this floorMillennia(int|float $precision = 1) Truncate the current instance millennium with given precision. * @method $this ceilMillennium(int|float $precision = 1) Ceil the current instance millennium with given precision. * @method $this ceilMillennia(int|float $precision = 1) Ceil the current instance millennium with given precision. * @method $this roundCentury(int|float $precision = 1, string $function = "round") Round the current instance century with given precision using the given function. * @method $this roundCenturies(int|float $precision = 1, string $function = "round") Round the current instance century with given precision using the given function. * @method $this floorCentury(int|float $precision = 1) Truncate the current instance century with given precision. * @method $this floorCenturies(int|float $precision = 1) Truncate the current instance century with given precision. * @method $this ceilCentury(int|float $precision = 1) Ceil the current instance century with given precision. * @method $this ceilCenturies(int|float $precision = 1) Ceil the current instance century with given precision. * @method $this roundDecade(int|float $precision = 1, string $function = "round") Round the current instance decade with given precision using the given function. * @method $this roundDecades(int|float $precision = 1, string $function = "round") Round the current instance decade with given precision using the given function. * @method $this floorDecade(int|float $precision = 1) Truncate the current instance decade with given precision. * @method $this floorDecades(int|float $precision = 1) Truncate the current instance decade with given precision. * @method $this ceilDecade(int|float $precision = 1) Ceil the current instance decade with given precision. * @method $this ceilDecades(int|float $precision = 1) Ceil the current instance decade with given precision. * @method $this roundQuarter(int|float $precision = 1, string $function = "round") Round the current instance quarter with given precision using the given function. * @method $this roundQuarters(int|float $precision = 1, string $function = "round") Round the current instance quarter with given precision using the given function. * @method $this floorQuarter(int|float $precision = 1) Truncate the current instance quarter with given precision. * @method $this floorQuarters(int|float $precision = 1) Truncate the current instance quarter with given precision. * @method $this ceilQuarter(int|float $precision = 1) Ceil the current instance quarter with given precision. * @method $this ceilQuarters(int|float $precision = 1) Ceil the current instance quarter with given precision. * @method $this roundMillisecond(int|float $precision = 1, string $function = "round") Round the current instance millisecond with given precision using the given function. * @method $this roundMilliseconds(int|float $precision = 1, string $function = "round") Round the current instance millisecond with given precision using the given function. * @method $this floorMillisecond(int|float $precision = 1) Truncate the current instance millisecond with given precision. * @method $this floorMilliseconds(int|float $precision = 1) Truncate the current instance millisecond with given precision. * @method $this ceilMillisecond(int|float $precision = 1) Ceil the current instance millisecond with given precision. * @method $this ceilMilliseconds(int|float $precision = 1) Ceil the current instance millisecond with given precision. * @method $this roundMicrosecond(int|float $precision = 1, string $function = "round") Round the current instance microsecond with given precision using the given function. * @method $this roundMicroseconds(int|float $precision = 1, string $function = "round") Round the current instance microsecond with given precision using the given function. * @method $this floorMicrosecond(int|float $precision = 1) Truncate the current instance microsecond with given precision. * @method $this floorMicroseconds(int|float $precision = 1) Truncate the current instance microsecond with given precision. * @method $this ceilMicrosecond(int|float $precision = 1) Ceil the current instance microsecond with given precision. * @method $this ceilMicroseconds(int|float $precision = 1) Ceil the current instance microsecond with given precision. */ class CarbonInterval extends DateInterval implements CarbonConverterInterface { use IntervalRounding; use IntervalStep; use Mixin { Mixin::mixin as baseMixin; } use Options; /** * Interval spec period designators */ const PERIOD_PREFIX = 'P'; const PERIOD_YEARS = 'Y'; const PERIOD_MONTHS = 'M'; const PERIOD_DAYS = 'D'; const PERIOD_TIME_PREFIX = 'T'; const PERIOD_HOURS = 'H'; const PERIOD_MINUTES = 'M'; const PERIOD_SECONDS = 'S'; /** * A translator to ... er ... translate stuff * * @var \Symfony\Component\Translation\TranslatorInterface */ protected static $translator; /** * @var array|null */ protected static $cascadeFactors; /** * @var array */ protected static $formats = [ 'y' => 'y', 'Y' => 'y', 'o' => 'y', 'm' => 'm', 'n' => 'm', 'W' => 'weeks', 'd' => 'd', 'j' => 'd', 'z' => 'd', 'h' => 'h', 'g' => 'h', 'H' => 'h', 'G' => 'h', 'i' => 'i', 's' => 's', 'u' => 'micro', 'v' => 'milli', ]; /** * @var array|null */ private static $flipCascadeFactors; /** * The registered macros. * * @var array */ protected static $macros = []; /** * Timezone handler for settings() method. * * @var mixed */ protected $tzName; /** * Set the instance's timezone from a string or object and add/subtract the offset difference. * * @param \DateTimeZone|string $tzName * * @return static */ public function shiftTimezone($tzName) { $this->tzName = $tzName; return $this; } /** * Mapping of units and factors for cascading. * * Should only be modified by changing the factors or referenced constants. * * @return array */ public static function getCascadeFactors() { return static::$cascadeFactors ?: [ 'milliseconds' => [Carbon::MICROSECONDS_PER_MILLISECOND, 'microseconds'], 'seconds' => [Carbon::MILLISECONDS_PER_SECOND, 'milliseconds'], 'minutes' => [Carbon::SECONDS_PER_MINUTE, 'seconds'], 'hours' => [Carbon::MINUTES_PER_HOUR, 'minutes'], 'dayz' => [Carbon::HOURS_PER_DAY, 'hours'], 'weeks' => [Carbon::DAYS_PER_WEEK, 'dayz'], 'months' => [Carbon::WEEKS_PER_MONTH, 'weeks'], 'years' => [Carbon::MONTHS_PER_YEAR, 'months'], ]; } private static function standardizeUnit($unit) { $unit = rtrim($unit, 'sz').'s'; return $unit === 'days' ? 'dayz' : $unit; } private static function getFlipCascadeFactors() { if (!self::$flipCascadeFactors) { self::$flipCascadeFactors = []; foreach (static::getCascadeFactors() as $to => [$factor, $from]) { self::$flipCascadeFactors[self::standardizeUnit($from)] = [self::standardizeUnit($to), $factor]; } } return self::$flipCascadeFactors; } /** * Set default cascading factors for ->cascade() method. * * @param array $cascadeFactors */ public static function setCascadeFactors(array $cascadeFactors) { self::$flipCascadeFactors = null; static::$cascadeFactors = $cascadeFactors; } /////////////////////////////////////////////////////////////////// //////////////////////////// CONSTRUCTORS ///////////////////////// /////////////////////////////////////////////////////////////////// /** * Create a new CarbonInterval instance. * * @param int|null $years * @param int|null $months * @param int|null $weeks * @param int|null $days * @param int|null $hours * @param int|null $minutes * @param int|null $seconds * @param int|null $microseconds * * @throws Exception when the interval_spec (passed as $years) cannot be parsed as an interval. */ public function __construct($years = 1, $months = null, $weeks = null, $days = null, $hours = null, $minutes = null, $seconds = null, $microseconds = null) { if ($years instanceof Closure) { $this->step = $years; $years = null; } if ($years instanceof DateInterval) { parent::__construct(static::getDateIntervalSpec($years)); $this->f = $years->f; static::copyNegativeUnits($years, $this); return; } $spec = $years; if (!\is_string($spec) || \floatval($years) || preg_match('/^[0-9.]/', $years)) { $spec = static::PERIOD_PREFIX; $spec .= $years > 0 ? $years.static::PERIOD_YEARS : ''; $spec .= $months > 0 ? $months.static::PERIOD_MONTHS : ''; $specDays = 0; $specDays += $weeks > 0 ? $weeks * static::getDaysPerWeek() : 0; $specDays += $days > 0 ? $days : 0; $spec .= $specDays > 0 ? $specDays.static::PERIOD_DAYS : ''; if ($hours > 0 || $minutes > 0 || $seconds > 0) { $spec .= static::PERIOD_TIME_PREFIX; $spec .= $hours > 0 ? $hours.static::PERIOD_HOURS : ''; $spec .= $minutes > 0 ? $minutes.static::PERIOD_MINUTES : ''; $spec .= $seconds > 0 ? $seconds.static::PERIOD_SECONDS : ''; } if ($spec === static::PERIOD_PREFIX) { // Allow the zero interval. $spec .= '0'.static::PERIOD_YEARS; } } parent::__construct($spec); if (!\is_null($microseconds)) { $this->f = $microseconds / Carbon::MICROSECONDS_PER_SECOND; } } /** * Returns the factor for a given source-to-target couple. * * @param string $source * @param string $target * * @return int|null */ public static function getFactor($source, $target) { $source = self::standardizeUnit($source); $target = self::standardizeUnit($target); $factors = static::getFlipCascadeFactors(); if (isset($factors[$source])) { [$to, $factor] = $factors[$source]; if ($to === $target) { return $factor; } return $factor * static::getFactor($to, $target); } return null; } /** * Returns current config for days per week. * * @return int */ public static function getDaysPerWeek() { return static::getFactor('dayz', 'weeks') ?: Carbon::DAYS_PER_WEEK; } /** * Returns current config for hours per day. * * @return int */ public static function getHoursPerDay() { return static::getFactor('hours', 'dayz') ?: Carbon::HOURS_PER_DAY; } /** * Returns current config for minutes per hour. * * @return int */ public static function getMinutesPerHour() { return static::getFactor('minutes', 'hours') ?: Carbon::MINUTES_PER_HOUR; } /** * Returns current config for seconds per minute. * * @return int */ public static function getSecondsPerMinute() { return static::getFactor('seconds', 'minutes') ?: Carbon::SECONDS_PER_MINUTE; } /** * Returns current config for microseconds per second. * * @return int */ public static function getMillisecondsPerSecond() { return static::getFactor('milliseconds', 'seconds') ?: Carbon::MILLISECONDS_PER_SECOND; } /** * Returns current config for microseconds per second. * * @return int */ public static function getMicrosecondsPerMillisecond() { return static::getFactor('microseconds', 'milliseconds') ?: Carbon::MICROSECONDS_PER_MILLISECOND; } /** * Create a new CarbonInterval instance from specific values. * This is an alias for the constructor that allows better fluent * syntax as it allows you to do CarbonInterval::create(1)->fn() rather than * (new CarbonInterval(1))->fn(). * * @param int $years * @param int $months * @param int $weeks * @param int $days * @param int $hours * @param int $minutes * @param int $seconds * @param int $microseconds * * @throws Exception when the interval_spec (passed as $years) cannot be parsed as an interval. * * @return static */ public static function create($years = 1, $months = null, $weeks = null, $days = null, $hours = null, $minutes = null, $seconds = null, $microseconds = null) { return new static($years, $months, $weeks, $days, $hours, $minutes, $seconds, $microseconds); } /** * Parse a string into a new CarbonInterval object according to the specified format. * * @example * ``` * echo Carboninterval::createFromFormat('H:i', '1:30'); * ``` * * @param string $format Format of the $interval input string * @param string $interval Input string to convert into an interval * * @throws Exception when the $interval cannot be parsed as an interval. * * @return static */ public static function createFromFormat(string $format, ?string $interval) { $instance = new static(0); $length = mb_strlen($format); if (preg_match('/s([,.])([uv])$/', $format, $match)) { $interval = explode($match[1], $interval); $index = \count($interval) - 1; $interval[$index] = str_pad($interval[$index], $match[2] === 'v' ? 3 : 6, '0'); $interval = implode($match[1], $interval); } for ($index = 0; $index < $length; $index++) { $expected = mb_substr($format, $index, 1); $nextCharacter = mb_substr($interval, 0, 1); $unit = static::$formats[$expected] ?? null; if ($unit) { if (!preg_match('/^-?\d+/', $interval, $match)) { throw new ParseErrorException('number', $nextCharacter); } $interval = mb_substr($interval, mb_strlen($match[0])); $instance->$unit += \intval($match[0]); continue; } if ($nextCharacter !== $expected) { throw new ParseErrorException( "'$expected'", $nextCharacter, 'Allowed substitutes for interval formats are '.implode(', ', array_keys(static::$formats))."\n". 'See https://www.php.net/manual/en/function.date.php for their meaning' ); } $interval = mb_substr($interval, 1); } if ($interval !== '') { throw new ParseErrorException( 'end of string', $interval ); } return $instance; } /** * Get a copy of the instance. * * @return static */ public function copy() { $date = new static(0); $date->copyProperties($this); $date->step = $this->step; return $date; } /** * Get a copy of the instance. * * @return static */ public function clone() { return $this->copy(); } /** * Provide static helpers to create instances. Allows CarbonInterval::years(3). * * Note: This is done using the magic method to allow static and instance methods to * have the same names. * * @param string $method magic method name called * @param array $parameters parameters list * * @return static|null */ public static function __callStatic($method, $parameters) { try { $interval = new static(0); $localStrictModeEnabled = $interval->localStrictModeEnabled; $interval->localStrictModeEnabled = true; $result = static::hasMacro($method) ? static::bindMacroContext(null, function () use (&$method, &$parameters, &$interval) { return $interval->callMacro($method, $parameters); }) : $interval->$method(...$parameters); $interval->localStrictModeEnabled = $localStrictModeEnabled; return $result; } catch (BadFluentSetterException $exception) { if (Carbon::isStrictModeEnabled()) { throw new BadFluentConstructorException($method, 0, $exception); } return null; } } /** * Return the current context from inside a macro callee or a new one if static. * * @return static */ protected static function this() { return end(static::$macroContextStack) ?: new static(0); } /** * Creates a CarbonInterval from string. * * Format: * * Suffix | Unit | Example | DateInterval expression * -------|---------|---------|------------------------ * y | years | 1y | P1Y * mo | months | 3mo | P3M * w | weeks | 2w | P2W * d | days | 28d | P28D * h | hours | 4h | PT4H * m | minutes | 12m | PT12M * s | seconds | 59s | PT59S * * e. g. `1w 3d 4h 32m 23s` is converted to 10 days 4 hours 32 minutes and 23 seconds. * * Special cases: * - An empty string will return a zero interval * - Fractions are allowed for weeks, days, hours and minutes and will be converted * and rounded to the next smaller value (caution: 0.5w = 4d) * * @param string $intervalDefinition * * @return static */ public static function fromString($intervalDefinition) { if (empty($intervalDefinition)) { return new static(0); } $years = 0; $months = 0; $weeks = 0; $days = 0; $hours = 0; $minutes = 0; $seconds = 0; $milliseconds = 0; $microseconds = 0; $pattern = '/(\d+(?:\.\d+)?)\h*([^\d\h]*)/i'; preg_match_all($pattern, $intervalDefinition, $parts, PREG_SET_ORDER); while ([$part, $value, $unit] = array_shift($parts)) { $intValue = \intval($value); $fraction = \floatval($value) - $intValue; // Fix calculation precision switch (round($fraction, 6)) { case 1: $fraction = 0; $intValue++; break; case 0: $fraction = 0; break; } switch ($unit === 'µs' ? 'µs' : strtolower($unit)) { case 'millennia': case 'millennium': $years += $intValue * CarbonInterface::YEARS_PER_MILLENNIUM; break; case 'century': case 'centuries': $years += $intValue * CarbonInterface::YEARS_PER_CENTURY; break; case 'decade': case 'decades': $years += $intValue * CarbonInterface::YEARS_PER_DECADE; break; case 'year': case 'years': case 'y': $years += $intValue; break; case 'quarter': case 'quarters': $months += $intValue * CarbonInterface::MONTHS_PER_QUARTER; break; case 'month': case 'months': case 'mo': $months += $intValue; break; case 'week': case 'weeks': case 'w': $weeks += $intValue; if ($fraction) { $parts[] = [null, $fraction * static::getDaysPerWeek(), 'd']; } break; case 'day': case 'days': case 'd': $days += $intValue; if ($fraction) { $parts[] = [null, $fraction * static::getHoursPerDay(), 'h']; } break; case 'hour': case 'hours': case 'h': $hours += $intValue; if ($fraction) { $parts[] = [null, $fraction * static::getMinutesPerHour(), 'm']; } break; case 'minute': case 'minutes': case 'm': $minutes += $intValue; if ($fraction) { $parts[] = [null, $fraction * static::getSecondsPerMinute(), 's']; } break; case 'second': case 'seconds': case 's': $seconds += $intValue; if ($fraction) { $parts[] = [null, $fraction * static::getMillisecondsPerSecond(), 'ms']; } break; case 'millisecond': case 'milliseconds': case 'milli': case 'ms': $milliseconds += $intValue; if ($fraction) { $microseconds += round($fraction * static::getMicrosecondsPerMillisecond()); } break; case 'microsecond': case 'microseconds': case 'micro': case 'µs': $microseconds += $intValue; break; default: throw new InvalidIntervalException( sprintf('Invalid part %s in definition %s', $part, $intervalDefinition) ); } } return new static($years, $months, $weeks, $days, $hours, $minutes, $seconds, $milliseconds * Carbon::MICROSECONDS_PER_MILLISECOND + $microseconds); } /** * Creates a CarbonInterval from string using a different locale. * * @param string $interval interval string in the given language (may also contain English). * @param string|null $locale if locale is null or not specified, current global locale will be used instead. * * @return static */ public static function parseFromLocale($interval, $locale = null) { return static::fromString(Carbon::translateTimeString($interval, $locale ?: static::getLocale(), 'en')); } private static function castIntervalToClass(DateInterval $interval, string $className) { $mainClass = DateInterval::class; if (!is_a($className, $mainClass, true)) { throw new InvalidCastException("$className is not a sub-class of $mainClass."); } $microseconds = $interval->f; $instance = new $className(static::getDateIntervalSpec($interval)); if ($microseconds) { $instance->f = $microseconds; } if ($interval instanceof self && is_a($className, self::class, true)) { static::copyStep($interval, $instance); } static::copyNegativeUnits($interval, $instance); return $instance; } private static function copyNegativeUnits(DateInterval $from, DateInterval $to): void { $to->invert = $from->invert; foreach (['y', 'm', 'd', 'h', 'i', 's'] as $unit) { if ($from->$unit < 0) { $to->$unit *= -1; } } } private static function copyStep(self $from, self $to): void { $to->setStep($from->getStep()); } /** * Cast the current instance into the given class. * * @param string $className The $className::instance() method will be called to cast the current object. * * @return DateInterval */ public function cast(string $className) { return self::castIntervalToClass($this, $className); } /** * Create a CarbonInterval instance from a DateInterval one. Can not instance * DateInterval objects created from DateTime::diff() as you can't externally * set the $days field. * * @param DateInterval $interval * * @return static */ public static function instance(DateInterval $interval) { return self::castIntervalToClass($interval, static::class); } /** * Make a CarbonInterval instance from given variable if possible. * * Always return a new instance. Parse only strings and only these likely to be intervals (skip dates * and recurrences). Throw an exception for invalid format, but otherwise return null. * * @param mixed|int|DateInterval|string|Closure|null $interval interval or number of the given $unit * @param string|null $unit if specified, $interval must be an integer * * @return static|null */ public static function make($interval, $unit = null) { if ($unit) { $interval = "$interval ".Carbon::pluralUnit($unit); } if ($interval instanceof DateInterval) { return static::instance($interval); } if ($interval instanceof Closure) { return new static($interval); } if (!\is_string($interval)) { return null; } return static::makeFromString($interval); } protected static function makeFromString(string $interval) { $interval = preg_replace('/\s+/', ' ', trim($interval)); if (preg_match('/^P[T0-9]/', $interval)) { return new static($interval); } if (preg_match('/^(?:\h*\d+(?:\.\d+)?\h*[a-z]+)+$/i', $interval)) { return static::fromString($interval); } /** @var static $interval */ $interval = static::createFromDateString($interval); return !$interval || $interval->isEmpty() ? null : $interval; } protected function resolveInterval($interval) { if (!($interval instanceof self)) { return self::make($interval); } return $interval; } /** * Sets up a DateInterval from the relative parts of the string. * * @param string $time * * @return static * * @link http://php.net/manual/en/dateinterval.createfromdatestring.php */ public static function createFromDateString($time) { $interval = @parent::createFromDateString(strtr($time, [ ',' => ' ', ' and ' => ' ', ])); if ($interval instanceof DateInterval) { $interval = static::instance($interval); } return $interval; } /////////////////////////////////////////////////////////////////// ///////////////////////// GETTERS AND SETTERS ///////////////////// /////////////////////////////////////////////////////////////////// /** * Get a part of the CarbonInterval object. * * @param string $name * * @throws UnknownGetterException * * @return int|float|string */ public function get($name) { if (substr($name, 0, 5) === 'total') { return $this->total(substr($name, 5)); } switch ($name) { case 'years': return $this->y; case 'months': return $this->m; case 'dayz': return $this->d; case 'hours': return $this->h; case 'minutes': return $this->i; case 'seconds': return $this->s; case 'milli': case 'milliseconds': return (int) (round($this->f * Carbon::MICROSECONDS_PER_SECOND) / Carbon::MICROSECONDS_PER_MILLISECOND); case 'micro': case 'microseconds': return (int) round($this->f * Carbon::MICROSECONDS_PER_SECOND); case 'microExcludeMilli': return (int) round($this->f * Carbon::MICROSECONDS_PER_SECOND) % Carbon::MICROSECONDS_PER_MILLISECOND; case 'weeks': return (int) ($this->d / static::getDaysPerWeek()); case 'daysExcludeWeeks': case 'dayzExcludeWeeks': return $this->d % static::getDaysPerWeek(); case 'locale': return $this->getTranslatorLocale(); default: throw new UnknownGetterException($name); } } /** * Get a part of the CarbonInterval object. * * @param string $name * * @throws UnknownGetterException * * @return int|float|string */ public function __get($name) { return $this->get($name); } /** * Set a part of the CarbonInterval object. * * @param string|array $name * @param int $value * * @throws UnknownSetterException * * @return $this */ public function set($name, $value = null) { $properties = \is_array($name) ? $name : [$name => $value]; foreach ($properties as $key => $value) { switch (Carbon::singularUnit(rtrim($key, 'z'))) { case 'year': $this->y = $value; break; case 'month': $this->m = $value; break; case 'week': $this->d = $value * static::getDaysPerWeek(); break; case 'day': $this->d = $value; break; case 'daysexcludeweek': case 'dayzexcludeweek': $this->d = $this->weeks * static::getDaysPerWeek() + $value; break; case 'hour': $this->h = $value; break; case 'minute': $this->i = $value; break; case 'second': $this->s = $value; break; case 'milli': case 'millisecond': $this->microseconds = $value * Carbon::MICROSECONDS_PER_MILLISECOND + $this->microseconds % Carbon::MICROSECONDS_PER_MILLISECOND; break; case 'micro': case 'microsecond': $this->f = $value / Carbon::MICROSECONDS_PER_SECOND; break; default: if ($this->localStrictModeEnabled ?? Carbon::isStrictModeEnabled()) { throw new UnknownSetterException($key); } $this->$key = $value; } } return $this; } /** * Set a part of the CarbonInterval object. * * @param string $name * @param int $value * * @throws UnknownSetterException */ public function __set($name, $value) { $this->set($name, $value); } /** * Allow setting of weeks and days to be cumulative. * * @param int $weeks Number of weeks to set * @param int $days Number of days to set * * @return static */ public function weeksAndDays($weeks, $days) { $this->dayz = ($weeks * static::getDaysPerWeek()) + $days; return $this; } /** * Returns true if the interval is empty for each unit. * * @return bool */ public function isEmpty() { return $this->years === 0 && $this->months === 0 && $this->dayz === 0 && !$this->days && $this->hours === 0 && $this->minutes === 0 && $this->seconds === 0 && $this->microseconds === 0; } /** * Register a custom macro. * * @example * ``` * CarbonInterval::macro('twice', function () { * return $this->times(2); * }); * echo CarbonInterval::hours(2)->twice(); * ``` * * @param string $name * @param object|callable $macro * * @return void */ public static function macro($name, $macro) { static::$macros[$name] = $macro; } /** * Register macros from a mixin object. * * @example * ``` * CarbonInterval::mixin(new class { * public function daysToHours() { * return function () { * $this->hours += $this->days; * $this->days = 0; * * return $this; * }; * } * public function hoursToDays() { * return function () { * $this->days += $this->hours; * $this->hours = 0; * * return $this; * }; * } * }); * echo CarbonInterval::hours(5)->hoursToDays() . "\n"; * echo CarbonInterval::days(5)->daysToHours() . "\n"; * ``` * * @param object|string $mixin * * @throws ReflectionException * * @return void */ public static function mixin($mixin) { static::baseMixin($mixin); } /** * Check if macro is registered. * * @param string $name * * @return bool */ public static function hasMacro($name) { return isset(static::$macros[$name]); } /** * Call given macro. * * @param string $name * @param array $parameters * * @return mixed */ protected function callMacro($name, $parameters) { $macro = static::$macros[$name]; if ($macro instanceof Closure) { $boundMacro = @$macro->bindTo($this, static::class) ?: @$macro->bindTo(null, static::class); return ($boundMacro ?: $macro)(...$parameters); } return $macro(...$parameters); } /** * Allow fluent calls on the setters... CarbonInterval::years(3)->months(5)->day(). * * Note: This is done using the magic method to allow static and instance methods to * have the same names. * * @param string $method magic method name called * @param array $parameters parameters list * * @throws BadFluentSetterException|Throwable * * @return static */ public function __call($method, $parameters) { if (static::hasMacro($method)) { return static::bindMacroContext($this, function () use (&$method, &$parameters) { return $this->callMacro($method, $parameters); }); } $roundedValue = $this->callRoundMethod($method, $parameters); if ($roundedValue !== null) { return $roundedValue; } if (preg_match('/^(?add|sub)(?[A-Z].*)$/', $method, $match)) { return $this->{$match['method']}($parameters[0], $match['unit']); } try { $this->set($method, \count($parameters) === 0 ? 1 : $parameters[0]); } catch (UnknownSetterException $exception) { if ($this->localStrictModeEnabled ?? Carbon::isStrictModeEnabled()) { throw new BadFluentSetterException($method, 0, $exception); } } return $this; } protected function getForHumansInitialVariables($syntax, $short) { if (\is_array($syntax)) { return $syntax; } if (\is_int($short)) { return [ 'parts' => $short, 'short' => false, ]; } if (\is_bool($syntax)) { return [ 'short' => $syntax, 'syntax' => CarbonInterface::DIFF_ABSOLUTE, ]; } return []; } /** * @param mixed $syntax * @param mixed $short * @param mixed $parts * @param mixed $options * * @return array */ protected function getForHumansParameters($syntax = null, $short = false, $parts = -1, $options = null) { $optionalSpace = ' '; $default = $this->getTranslationMessage('list.0') ?? $this->getTranslationMessage('list') ?? ' '; $join = $default === '' ? '' : ' '; $altNumbers = false; $aUnit = false; $minimumUnit = 's'; extract($this->getForHumansInitialVariables($syntax, $short)); if (\is_null($syntax)) { $syntax = CarbonInterface::DIFF_ABSOLUTE; } if ($parts === -1) { $parts = INF; } if (\is_null($options)) { $options = static::getHumanDiffOptions(); } if ($join === false) { $join = ' '; } elseif ($join === true) { $join = [ $default, $this->getTranslationMessage('list.1') ?? $default, ]; } if ($altNumbers) { if ($altNumbers !== true) { $language = new Language($this->locale); $altNumbers = \in_array($language->getCode(), (array) $altNumbers); } } if (\is_array($join)) { [$default, $last] = $join; if ($default !== ' ') { $optionalSpace = ''; } $join = function ($list) use ($default, $last) { if (\count($list) < 2) { return implode('', $list); } $end = array_pop($list); return implode($default, $list).$last.$end; }; } if (\is_string($join)) { if ($join !== ' ') { $optionalSpace = ''; } $glue = $join; $join = function ($list) use ($glue) { return implode($glue, $list); }; } $interpolations = [ ':optional-space' => $optionalSpace, ]; return [$syntax, $short, $parts, $options, $join, $aUnit, $altNumbers, $interpolations, $minimumUnit]; } protected static function getRoundingMethodFromOptions(int $options): ?string { if ($options & CarbonInterface::ROUND) { return 'round'; } if ($options & CarbonInterface::CEIL) { return 'ceil'; } if ($options & CarbonInterface::FLOOR) { return 'floor'; } return null; } /** * Returns interval values as an array where key are the unit names and values the counts. * * @return int[] */ public function toArray() { return [ 'years' => $this->years, 'months' => $this->months, 'weeks' => $this->weeks, 'days' => $this->daysExcludeWeeks, 'hours' => $this->hours, 'minutes' => $this->minutes, 'seconds' => $this->seconds, 'microseconds' => $this->microseconds, ]; } /** * Returns interval non-zero values as an array where key are the unit names and values the counts. * * @return int[] */ public function getNonZeroValues() { return array_filter($this->toArray(), 'intval'); } /** * Returns interval values as an array where key are the unit names and values the counts * from the biggest non-zero one the the smallest non-zero one. * * @return int[] */ public function getValuesSequence() { $nonZeroValues = $this->getNonZeroValues(); if ($nonZeroValues === []) { return []; } $keys = array_keys($nonZeroValues); $firstKey = $keys[0]; $lastKey = $keys[\count($keys) - 1]; $values = []; $record = false; foreach ($this->toArray() as $unit => $count) { if ($unit === $firstKey) { $record = true; } if ($record) { $values[$unit] = $count; } if ($unit === $lastKey) { $record = false; } } return $values; } /** * Get the current interval in a human readable format in the current locale. * * @example * ``` * echo CarbonInterval::fromString('4d 3h 40m')->forHumans() . "\n"; * echo CarbonInterval::fromString('4d 3h 40m')->forHumans(['parts' => 2]) . "\n"; * echo CarbonInterval::fromString('4d 3h 40m')->forHumans(['parts' => 3, 'join' => true]) . "\n"; * echo CarbonInterval::fromString('4d 3h 40m')->forHumans(['short' => true]) . "\n"; * echo CarbonInterval::fromString('1d 24h')->forHumans(['join' => ' or ']) . "\n"; * echo CarbonInterval::fromString('1d 24h')->forHumans(['minimumUnit' => 'hour']) . "\n"; * ``` * * @param int|array $syntax if array passed, parameters will be extracted from it, the array may contains: * - 'syntax' entry (see below) * - 'short' entry (see below) * - 'parts' entry (see below) * - 'options' entry (see below) * - 'aUnit' entry, prefer "an hour" over "1 hour" if true * - 'join' entry determines how to join multiple parts of the string * ` - if $join is a string, it's used as a joiner glue * ` - if $join is a callable/closure, it get the list of string and should return a string * ` - if $join is an array, the first item will be the default glue, and the second item * ` will be used instead of the glue for the last item * ` - if $join is true, it will be guessed from the locale ('list' translation file entry) * ` - if $join is missing, a space will be used as glue * - 'minimumUnit' entry determines the smallest unit of time to display can be long or * ` short form of the units, e.g. 'hour' or 'h' (default value: s) * if int passed, it add modifiers: * Possible values: * - CarbonInterface::DIFF_ABSOLUTE no modifiers * - CarbonInterface::DIFF_RELATIVE_TO_NOW add ago/from now modifier * - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier * Default value: CarbonInterface::DIFF_ABSOLUTE * @param bool $short displays short format of time units * @param int $parts maximum number of parts to display (default value: -1: no limits) * @param int $options human diff options * * @throws Exception * * @return string */ public function forHumans($syntax = null, $short = false, $parts = -1, $options = null) { [$syntax, $short, $parts, $options, $join, $aUnit, $altNumbers, $interpolations, $minimumUnit] = $this->getForHumansParameters($syntax, $short, $parts, $options); $interval = []; $syntax = (int) ($syntax === null ? CarbonInterface::DIFF_ABSOLUTE : $syntax); $absolute = $syntax === CarbonInterface::DIFF_ABSOLUTE; $relativeToNow = $syntax === CarbonInterface::DIFF_RELATIVE_TO_NOW; $count = 1; $unit = $short ? 's' : 'second'; $isFuture = $this->invert === 1; $transId = $relativeToNow ? ($isFuture ? 'from_now' : 'ago') : ($isFuture ? 'after' : 'before'); /** @var \Symfony\Component\Translation\Translator $translator */ $translator = $this->getLocalTranslator(); $handleDeclensions = function ($unit, $count) use ($interpolations, $transId, $translator, $altNumbers, $absolute) { if (!$absolute) { // Some languages have special pluralization for past and future tense. $key = $unit.'_'.$transId; $result = $this->translate($key, $interpolations, $count, $translator, $altNumbers); if ($result !== $key) { return $result; } } $result = $this->translate($unit, $interpolations, $count, $translator, $altNumbers); if ($result !== $unit) { return $result; } return null; }; $intervalValues = $this; $method = static::getRoundingMethodFromOptions($options); if ($method) { $previousCount = INF; while ( \count($intervalValues->getNonZeroValues()) > $parts && ($count = \count($keys = array_keys($intervalValues->getValuesSequence()))) > 1 ) { $intervalValues = $this->copy()->roundUnit( $keys[min($count, $previousCount - 1) - 2], 1, $method ); $previousCount = $count; } } $diffIntervalArray = [ ['value' => $intervalValues->years, 'unit' => 'year', 'unitShort' => 'y'], ['value' => $intervalValues->months, 'unit' => 'month', 'unitShort' => 'm'], ['value' => $intervalValues->weeks, 'unit' => 'week', 'unitShort' => 'w'], ['value' => $intervalValues->daysExcludeWeeks, 'unit' => 'day', 'unitShort' => 'd'], ['value' => $intervalValues->hours, 'unit' => 'hour', 'unitShort' => 'h'], ['value' => $intervalValues->minutes, 'unit' => 'minute', 'unitShort' => 'min'], ['value' => $intervalValues->seconds, 'unit' => 'second', 'unitShort' => 's'], ['value' => $intervalValues->milliseconds, 'unit' => 'millisecond', 'unitShort' => 'ms'], ['value' => $intervalValues->microExcludeMilli, 'unit' => 'microsecond', 'unitShort' => 'µs'], ]; $transChoice = function ($short, $unitData) use ($absolute, $handleDeclensions, $translator, $aUnit, $altNumbers, $interpolations) { $count = $unitData['value']; if ($short) { $result = $handleDeclensions($unitData['unitShort'], $count); if ($result !== null) { return $result; } } elseif ($aUnit) { $result = $handleDeclensions('a_'.$unitData['unit'], $count); if ($result !== null) { return $result; } } if (!$absolute) { return $handleDeclensions($unitData['unit'], $count); } return $this->translate($unitData['unit'], $interpolations, $count, $translator, $altNumbers); }; $fallbackUnit = ['second', 's']; foreach ($diffIntervalArray as $diffIntervalData) { if ($diffIntervalData['value'] > 0) { $unit = $short ? $diffIntervalData['unitShort'] : $diffIntervalData['unit']; $count = $diffIntervalData['value']; $interval[] = $transChoice($short, $diffIntervalData); } elseif ($options & CarbonInterface::SEQUENTIAL_PARTS_ONLY && \count($interval) > 0) { break; } // break the loop after we get the required number of parts in array if (\count($interval) >= $parts) { break; } // break the loop after we have reached the minimum unit if (\in_array($minimumUnit, [$diffIntervalData['unit'], $diffIntervalData['unitShort']])) { $fallbackUnit = [$diffIntervalData['unit'], $diffIntervalData['unitShort']]; break; } } if (\count($interval) === 0) { if ($relativeToNow && $options & CarbonInterface::JUST_NOW) { $key = 'diff_now'; $translation = $this->translate($key, $interpolations, null, $translator); if ($translation !== $key) { return $translation; } } $count = $options & CarbonInterface::NO_ZERO_DIFF ? 1 : 0; $unit = $fallbackUnit[$short ? 1 : 0]; $interval[] = $this->translate($unit, $interpolations, $count, $translator, $altNumbers); } // join the interval parts by a space $time = $join($interval); unset($diffIntervalArray, $interval); if ($absolute) { return $time; } $isFuture = $this->invert === 1; $transId = $relativeToNow ? ($isFuture ? 'from_now' : 'ago') : ($isFuture ? 'after' : 'before'); if ($parts === 1) { if ($relativeToNow && $unit === 'day') { if ($count === 1 && $options & CarbonInterface::ONE_DAY_WORDS) { $key = $isFuture ? 'diff_tomorrow' : 'diff_yesterday'; $translation = $this->translate($key, $interpolations, null, $translator); if ($translation !== $key) { return $translation; } } if ($count === 2 && $options & CarbonInterface::TWO_DAY_WORDS) { $key = $isFuture ? 'diff_after_tomorrow' : 'diff_before_yesterday'; $translation = $this->translate($key, $interpolations, null, $translator); if ($translation !== $key) { return $translation; } } } $aTime = $aUnit ? $handleDeclensions('a_'.$unit, $count) : null; $time = $aTime ?: $handleDeclensions($unit, $count) ?: $time; } $time = [':time' => $time]; return $this->translate($transId, array_merge($time, $interpolations, $time), null, $translator); } /** * Format the instance as a string using the forHumans() function. * * @throws Exception * * @return string */ public function __toString() { $format = $this->localToStringFormat; if ($format) { if ($format instanceof Closure) { return $format($this); } return $this->format($format); } return $this->forHumans(); } /** * Return native DateInterval PHP object matching the current instance. * * @example * ``` * var_dump(CarbonInterval::hours(2)->toDateInterval()); * ``` * * @return DateInterval */ public function toDateInterval() { return self::castIntervalToClass($this, DateInterval::class); } /** * Convert the interval to a CarbonPeriod. * * @param array ...$params Start date, [end date or recurrences] and optional settings. * * @return CarbonPeriod */ public function toPeriod(...$params) { return CarbonPeriod::create($this, ...$params); } /** * Invert the interval. * * @param bool|int $inverted if a parameter is passed, the passed value casted as 1 or 0 is used * as the new value of the ->invert property. * * @return $this */ public function invert($inverted = null) { $this->invert = (\func_num_args() === 0 ? !$this->invert : $inverted) ? 1 : 0; return $this; } protected function solveNegativeInterval() { if (!$this->isEmpty() && $this->years <= 0 && $this->months <= 0 && $this->dayz <= 0 && $this->hours <= 0 && $this->minutes <= 0 && $this->seconds <= 0 && $this->microseconds <= 0) { $this->years *= -1; $this->months *= -1; $this->dayz *= -1; $this->hours *= -1; $this->minutes *= -1; $this->seconds *= -1; $this->microseconds *= -1; $this->invert(); } return $this; } /** * Add the passed interval to the current instance. * * @param string|DateInterval $unit * @param int|float $value * * @return $this */ public function add($unit, $value = 1) { if (is_numeric($unit)) { [$value, $unit] = [$unit, $value]; } if (\is_string($unit) && !preg_match('/^\s*\d/', $unit)) { $unit = "$value $unit"; $value = 1; } $interval = static::make($unit); if (!$interval) { throw new InvalidIntervalException('This type of data cannot be added/subtracted.'); } if ($value !== 1) { $interval->times($value); } $sign = ($this->invert === 1) !== ($interval->invert === 1) ? -1 : 1; $this->years += $interval->y * $sign; $this->months += $interval->m * $sign; $this->dayz += ($interval->days === false ? $interval->d : $interval->days) * $sign; $this->hours += $interval->h * $sign; $this->minutes += $interval->i * $sign; $this->seconds += $interval->s * $sign; $this->microseconds += $interval->microseconds * $sign; $this->solveNegativeInterval(); return $this; } /** * Subtract the passed interval to the current instance. * * @param string|DateInterval $unit * @param int|float $value * * @return $this */ public function sub($unit, $value = 1) { if (is_numeric($unit)) { [$value, $unit] = [$unit, $value]; } return $this->add($unit, -\floatval($value)); } /** * Subtract the passed interval to the current instance. * * @param string|DateInterval $unit * @param int|float $value * * @return $this */ public function subtract($unit, $value = 1) { return $this->sub($unit, $value); } /** * Add given parameters to the current interval. * * @param int $years * @param int $months * @param int|float $weeks * @param int|float $days * @param int|float $hours * @param int|float $minutes * @param int|float $seconds * @param int|float $microseconds * * @return $this */ public function plus( $years = 0, $months = 0, $weeks = 0, $days = 0, $hours = 0, $minutes = 0, $seconds = 0, $microseconds = 0 ): self { return $this->add(" $years years $months months $weeks weeks $days days $hours hours $minutes minutes $seconds seconds $microseconds microseconds "); } /** * Add given parameters to the current interval. * * @param int $years * @param int $months * @param int|float $weeks * @param int|float $days * @param int|float $hours * @param int|float $minutes * @param int|float $seconds * @param int|float $microseconds * * @return $this */ public function minus( $years = 0, $months = 0, $weeks = 0, $days = 0, $hours = 0, $minutes = 0, $seconds = 0, $microseconds = 0 ): self { return $this->sub(" $years years $months months $weeks weeks $days days $hours hours $minutes minutes $seconds seconds $microseconds microseconds "); } /** * Multiply current instance given number of times. times() is naive, it multiplies each unit * (so day can be greater than 31, hour can be greater than 23, etc.) and the result is rounded * separately for each unit. * * Use times() when you want a fast and approximated calculation that does not cascade units. * * For a precise and cascaded calculation, * * @see multiply() * * @param float|int $factor * * @return $this */ public function times($factor) { if ($factor < 0) { $this->invert = $this->invert ? 0 : 1; $factor = -$factor; } $this->years = (int) round($this->years * $factor); $this->months = (int) round($this->months * $factor); $this->dayz = (int) round($this->dayz * $factor); $this->hours = (int) round($this->hours * $factor); $this->minutes = (int) round($this->minutes * $factor); $this->seconds = (int) round($this->seconds * $factor); $this->microseconds = (int) round($this->microseconds * $factor); return $this; } /** * Divide current instance by a given divider. shares() is naive, it divides each unit separately * and the result is rounded for each unit. So 5 hours and 20 minutes shared by 3 becomes 2 hours * and 7 minutes. * * Use shares() when you want a fast and approximated calculation that does not cascade units. * * For a precise and cascaded calculation, * * @see divide() * * @param float|int $divider * * @return $this */ public function shares($divider) { return $this->times(1 / $divider); } protected function copyProperties(self $interval, $ignoreSign = false) { $this->years = $interval->years; $this->months = $interval->months; $this->dayz = $interval->dayz; $this->hours = $interval->hours; $this->minutes = $interval->minutes; $this->seconds = $interval->seconds; $this->microseconds = $interval->microseconds; if (!$ignoreSign) { $this->invert = $interval->invert; } return $this; } /** * Multiply and cascade current instance by a given factor. * * @param float|int $factor * * @return $this */ public function multiply($factor) { if ($factor < 0) { $this->invert = $this->invert ? 0 : 1; $factor = -$factor; } $yearPart = (int) floor($this->years * $factor); // Split calculation to prevent imprecision if ($yearPart) { $this->years -= $yearPart / $factor; } return $this->copyProperties( static::create($yearPart) ->microseconds(abs($this->totalMicroseconds) * $factor) ->cascade(), true ); } /** * Divide and cascade current instance by a given divider. * * @param float|int $divider * * @return $this */ public function divide($divider) { return $this->multiply(1 / $divider); } /** * Get the interval_spec string of a date interval. * * @param DateInterval $interval * * @return string */ public static function getDateIntervalSpec(DateInterval $interval) { $date = array_filter([ static::PERIOD_YEARS => abs($interval->y), static::PERIOD_MONTHS => abs($interval->m), static::PERIOD_DAYS => abs($interval->d), ]); $time = array_filter([ static::PERIOD_HOURS => abs($interval->h), static::PERIOD_MINUTES => abs($interval->i), static::PERIOD_SECONDS => abs($interval->s), ]); $specString = static::PERIOD_PREFIX; foreach ($date as $key => $value) { $specString .= $value.$key; } if (\count($time) > 0) { $specString .= static::PERIOD_TIME_PREFIX; foreach ($time as $key => $value) { $specString .= $value.$key; } } return $specString === static::PERIOD_PREFIX ? 'PT0S' : $specString; } /** * Get the interval_spec string. * * @return string */ public function spec() { return static::getDateIntervalSpec($this); } /** * Comparing 2 date intervals. * * @param DateInterval $first * @param DateInterval $second * * @return int */ public static function compareDateIntervals(DateInterval $first, DateInterval $second) { $current = Carbon::now(); $passed = $current->copy()->add($second); $current->add($first); if ($current < $passed) { return -1; } if ($current > $passed) { return 1; } return 0; } /** * Comparing with passed interval. * * @param DateInterval $interval * * @return int */ public function compare(DateInterval $interval) { return static::compareDateIntervals($this, $interval); } private function invertCascade(array $values) { return $this->set(array_map(function ($value) { return -$value; }, $values))->doCascade(true)->invert(); } private function doCascade(bool $deep) { $originalData = $this->toArray(); $originalData['milliseconds'] = (int) ($originalData['microseconds'] / static::getMicrosecondsPerMillisecond()); $originalData['microseconds'] = $originalData['microseconds'] % static::getMicrosecondsPerMillisecond(); $originalData['daysExcludeWeeks'] = $originalData['days']; unset($originalData['days']); $newData = $originalData; foreach (static::getFlipCascadeFactors() as $source => [$target, $factor]) { foreach (['source', 'target'] as $key) { if ($$key === 'dayz') { $$key = 'daysExcludeWeeks'; } } $value = $newData[$source]; $modulo = ($factor + ($value % $factor)) % $factor; $newData[$source] = $modulo; $newData[$target] += ($value - $modulo) / $factor; } $positive = null; if (!$deep) { foreach ($newData as $value) { if ($value) { if ($positive === null) { $positive = ($value > 0); continue; } if (($value > 0) !== $positive) { return $this->invertCascade($originalData) ->solveNegativeInterval(); } } } } return $this->set($newData) ->solveNegativeInterval(); } /** * Convert overflowed values into bigger units. * * @return $this */ public function cascade() { return $this->doCascade(false); } public function hasNegativeValues(): bool { foreach ($this->toArray() as $value) { if ($value < 0) { return true; } } return false; } public function hasPositiveValues(): bool { foreach ($this->toArray() as $value) { if ($value > 0) { return true; } } return false; } /** * Get amount of given unit equivalent to the interval. * * @param string $unit * * @throws UnknownUnitException|UnitNotConfiguredException * * @return float */ public function total($unit) { $realUnit = $unit = strtolower($unit); if (\in_array($unit, ['days', 'weeks'])) { $realUnit = 'dayz'; } elseif (!\in_array($unit, ['microseconds', 'milliseconds', 'seconds', 'minutes', 'hours', 'dayz', 'months', 'years'])) { throw new UnknownUnitException($unit); } $result = 0; $cumulativeFactor = 0; $unitFound = false; $factors = static::getFlipCascadeFactors(); $daysPerWeek = static::getDaysPerWeek(); $values = [ 'years' => $this->years, 'months' => $this->months, 'weeks' => (int) ($this->d / $daysPerWeek), 'dayz' => (int) ($this->d % $daysPerWeek), 'hours' => $this->hours, 'minutes' => $this->minutes, 'seconds' => $this->seconds, 'milliseconds' => (int) ($this->microseconds / Carbon::MICROSECONDS_PER_MILLISECOND), 'microseconds' => (int) ($this->microseconds % Carbon::MICROSECONDS_PER_MILLISECOND), ]; if (isset($factors['dayz']) && $factors['dayz'][0] !== 'weeks') { $values['dayz'] += $values['weeks'] * $daysPerWeek; $values['weeks'] = 0; } foreach ($factors as $source => [$target, $factor]) { if ($source === $realUnit) { $unitFound = true; $value = $values[$source]; $result += $value; $cumulativeFactor = 1; } if ($factor === false) { if ($unitFound) { break; } $result = 0; $cumulativeFactor = 0; continue; } if ($target === $realUnit) { $unitFound = true; } if ($cumulativeFactor) { $cumulativeFactor *= $factor; $result += $values[$target] * $cumulativeFactor; continue; } $value = $values[$source]; $result = ($result + $value) / $factor; } if (isset($target) && !$cumulativeFactor) { $result += $values[$target]; } if (!$unitFound) { throw new UnitNotConfiguredException($unit); } if ($this->invert) { $result *= -1; } if ($unit === 'weeks') { return $result / $daysPerWeek; } return $result; } /** * Determines if the instance is equal to another * * @param CarbonInterval|DateInterval|mixed $interval * * @see equalTo() * * @return bool */ public function eq($interval): bool { return $this->equalTo($interval); } /** * Determines if the instance is equal to another * * @param CarbonInterval|DateInterval|mixed $interval * * @return bool */ public function equalTo($interval): bool { $interval = $this->resolveInterval($interval); return $interval !== null && $this->totalMicroseconds === $interval->totalMicroseconds; } /** * Determines if the instance is not equal to another * * @param CarbonInterval|DateInterval|mixed $interval * * @see notEqualTo() * * @return bool */ public function ne($interval): bool { return $this->notEqualTo($interval); } /** * Determines if the instance is not equal to another * * @param CarbonInterval|DateInterval|mixed $interval * * @return bool */ public function notEqualTo($interval): bool { return !$this->eq($interval); } /** * Determines if the instance is greater (longer) than another * * @param CarbonInterval|DateInterval|mixed $interval * * @see greaterThan() * * @return bool */ public function gt($interval): bool { return $this->greaterThan($interval); } /** * Determines if the instance is greater (longer) than another * * @param CarbonInterval|DateInterval|mixed $interval * * @return bool */ public function greaterThan($interval): bool { $interval = $this->resolveInterval($interval); return $interval === null || $this->totalMicroseconds > $interval->totalMicroseconds; } /** * Determines if the instance is greater (longer) than or equal to another * * @param CarbonInterval|DateInterval|mixed $interval * * @see greaterThanOrEqualTo() * * @return bool */ public function gte($interval): bool { return $this->greaterThanOrEqualTo($interval); } /** * Determines if the instance is greater (longer) than or equal to another * * @param CarbonInterval|DateInterval|mixed $interval * * @return bool */ public function greaterThanOrEqualTo($interval): bool { return $this->greaterThan($interval) || $this->equalTo($interval); } /** * Determines if the instance is less (shorter) than another * * @param CarbonInterval|DateInterval|mixed $interval * * @see lessThan() * * @return bool */ public function lt($interval): bool { return $this->lessThan($interval); } /** * Determines if the instance is less (shorter) than another * * @param CarbonInterval|DateInterval|mixed $interval * * @return bool */ public function lessThan($interval): bool { $interval = $this->resolveInterval($interval); return $interval !== null && $this->totalMicroseconds < $interval->totalMicroseconds; } /** * Determines if the instance is less (shorter) than or equal to another * * @param CarbonInterval|DateInterval|mixed $interval * * @see lessThanOrEqualTo() * * @return bool */ public function lte($interval): bool { return $this->lessThanOrEqualTo($interval); } /** * Determines if the instance is less (shorter) than or equal to another * * @param CarbonInterval|DateInterval|mixed $interval * * @return bool */ public function lessThanOrEqualTo($interval): bool { return $this->lessThan($interval) || $this->equalTo($interval); } /** * Determines if the instance is between two others. * * The third argument allow you to specify if bounds are included or not (true by default) * but for when you including/excluding bounds may produce different results in your application, * we recommend to use the explicit methods ->betweenIncluded() or ->betweenExcluded() instead. * * @example * ``` * CarbonInterval::hours(48)->between(CarbonInterval::day(), CarbonInterval::days(3)); // true * CarbonInterval::hours(48)->between(CarbonInterval::day(), CarbonInterval::hours(36)); // false * CarbonInterval::hours(48)->between(CarbonInterval::day(), CarbonInterval::days(2)); // true * CarbonInterval::hours(48)->between(CarbonInterval::day(), CarbonInterval::days(2), false); // false * ``` * * @param CarbonInterval|DateInterval|mixed $interval1 * @param CarbonInterval|DateInterval|mixed $interval2 * @param bool $equal Indicates if an equal to comparison should be done * * @return bool */ public function between($interval1, $interval2, $equal = true): bool { return $equal ? $this->greaterThanOrEqualTo($interval1) && $this->lessThanOrEqualTo($interval2) : $this->greaterThan($interval1) && $this->lessThan($interval2); } /** * Determines if the instance is between two others, bounds excluded. * * @example * ``` * CarbonInterval::hours(48)->betweenExcluded(CarbonInterval::day(), CarbonInterval::days(3)); // true * CarbonInterval::hours(48)->betweenExcluded(CarbonInterval::day(), CarbonInterval::hours(36)); // false * CarbonInterval::hours(48)->betweenExcluded(CarbonInterval::day(), CarbonInterval::days(2)); // true * ``` * * @param CarbonInterval|DateInterval|mixed $interval1 * @param CarbonInterval|DateInterval|mixed $interval2 * * @return bool */ public function betweenIncluded($interval1, $interval2): bool { return $this->between($interval1, $interval2, true); } /** * Determines if the instance is between two others, bounds excluded. * * @example * ``` * CarbonInterval::hours(48)->betweenExcluded(CarbonInterval::day(), CarbonInterval::days(3)); // true * CarbonInterval::hours(48)->betweenExcluded(CarbonInterval::day(), CarbonInterval::hours(36)); // false * CarbonInterval::hours(48)->betweenExcluded(CarbonInterval::day(), CarbonInterval::days(2)); // false * ``` * * @param CarbonInterval|DateInterval|mixed $interval1 * @param CarbonInterval|DateInterval|mixed $interval2 * * @return bool */ public function betweenExcluded($interval1, $interval2): bool { return $this->between($interval1, $interval2, false); } /** * Determines if the instance is between two others * * @example * ``` * CarbonInterval::hours(48)->isBetween(CarbonInterval::day(), CarbonInterval::days(3)); // true * CarbonInterval::hours(48)->isBetween(CarbonInterval::day(), CarbonInterval::hours(36)); // false * CarbonInterval::hours(48)->isBetween(CarbonInterval::day(), CarbonInterval::days(2)); // true * CarbonInterval::hours(48)->isBetween(CarbonInterval::day(), CarbonInterval::days(2), false); // false * ``` * * @param CarbonInterval|DateInterval|mixed $interval1 * @param CarbonInterval|DateInterval|mixed $interval2 * @param bool $equal Indicates if an equal to comparison should be done * * @return bool */ public function isBetween($interval1, $interval2, $equal = true): bool { return $this->between($interval1, $interval2, $equal); } /** * Round the current instance at the given unit with given precision if specified and the given function. * * @param string $unit * @param float|int|string|DateInterval|null $precision * @param string $function * * @throws Exception * * @return $this */ public function roundUnit($unit, $precision = 1, $function = 'round') { $base = CarbonImmutable::parse('2000-01-01 00:00:00', 'UTC') ->roundUnit($unit, $precision, $function); $next = $base->add($this); $inverted = $next < $base; if ($inverted) { $next = $base->sub($this); } $this->copyProperties( $next ->roundUnit($unit, $precision, $function) ->diffAsCarbonInterval($base) ); return $this->invert($inverted); } /** * Truncate the current instance at the given unit with given precision if specified. * * @param string $unit * @param float|int|string|DateInterval|null $precision * * @throws Exception * * @return $this */ public function floorUnit($unit, $precision = 1) { return $this->roundUnit($unit, $precision, 'floor'); } /** * Ceil the current instance at the given unit with given precision if specified. * * @param string $unit * @param float|int|string|DateInterval|null $precision * * @throws Exception * * @return $this */ public function ceilUnit($unit, $precision = 1) { return $this->roundUnit($unit, $precision, 'ceil'); } /** * Round the current instance second with given precision if specified. * * @param float|int|string|DateInterval|null $precision * @param string $function * * @throws Exception * * @return $this */ public function round($precision = 1, $function = 'round') { return $this->roundWith($precision, $function); } /** * Round the current instance second with given precision if specified. * * @param float|int|string|DateInterval|null $precision * * @throws Exception * * @return $this */ public function floor($precision = 1) { return $this->round($precision, 'floor'); } /** * Ceil the current instance second with given precision if specified. * * @param float|int|string|DateInterval|null $precision * * @throws Exception * * @return $this */ public function ceil($precision = 1) { return $this->round($precision, 'ceil'); } } PK!Ÿ4Ž]  8carbon/src/Carbon/Exceptions/NotLocaleAwareException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; use InvalidArgumentException as BaseInvalidArgumentException; class NotLocaleAwareException extends BaseInvalidArgumentException implements InvalidArgumentException { /** * Constructor. * * @param mixed $object * @param int $code * @param Exception|null $previous */ public function __construct($object, $code = 0, Exception $previous = null) { $dump = \is_object($object) ? \get_class($object) : \gettype($object); parent::__construct("$dump does neither implements Symfony\Contracts\Translation\LocaleAwareInterface nor getLocale() method.", $code, $previous); } } PK!…_ęBµµ;carbon/src/Carbon/Exceptions/UnitNotConfiguredException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; class UnitNotConfiguredException extends UnitException { /** * Constructor. * * @param string $unit * @param int $code * @param Exception|null $previous */ public function __construct($unit, $code = 0, Exception $previous = null) { parent::__construct("Unit $unit have no configuration to get total from other units.", $code, $previous); } } PK!®ź²zĶĶ5carbon/src/Carbon/Exceptions/UnreachableException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; use RuntimeException as BaseRuntimeException; class UnreachableException extends BaseRuntimeException implements RuntimeException { /** * Constructor. * * @param string $message * @param int $code * @param Exception|null $previous */ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, $code, $previous); } } PK!|ŠŠĶńń3carbon/src/Carbon/Exceptions/ImmutableException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; use RuntimeException as BaseRuntimeException; class ImmutableException extends BaseRuntimeException implements RuntimeException { /** * Constructor. * * @param string $value the immutable type/value * @param int $code * @param Exception|null $previous */ public function __construct($value, $code = 0, Exception $previous = null) { parent::__construct("$value is immutable.", $code, $previous); } } PK!h‹Zäńń9carbon/src/Carbon/Exceptions/InvalidTimeZoneException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; use InvalidArgumentException as BaseInvalidArgumentException; class InvalidTimeZoneException extends BaseInvalidArgumentException implements InvalidArgumentException { /** * Constructor. * * @param string $message * @param int $code * @param Exception|null $previous */ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, $code, $previous); } } PK!·žN=ģģ4carbon/src/Carbon/Exceptions/NotAPeriodException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; use InvalidArgumentException as BaseInvalidArgumentException; class NotAPeriodException extends BaseInvalidArgumentException implements InvalidArgumentException { /** * Constructor. * * @param string $message * @param int $code * @param Exception|null $previous */ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, $code, $previous); } } PK!H1¼/  7carbon/src/Carbon/Exceptions/UnknownGetterException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; use InvalidArgumentException as BaseInvalidArgumentException; class UnknownGetterException extends BaseInvalidArgumentException implements InvalidArgumentException { /** * Constructor. * * @param string $name getter name * @param int $code * @param Exception|null $previous */ public function __construct($name, $code = 0, Exception $previous = null) { parent::__construct("Unknown getter '$name'", $code, $previous); } } PK!wĒŅ ńń9carbon/src/Carbon/Exceptions/InvalidIntervalException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; use InvalidArgumentException as BaseInvalidArgumentException; class InvalidIntervalException extends BaseInvalidArgumentException implements InvalidArgumentException { /** * Constructor. * * @param string $message * @param int $code * @param Exception|null $previous */ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, $code, $previous); } } PK!ø Z4carbon/src/Carbon/Exceptions/ParseErrorException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; use InvalidArgumentException as BaseInvalidArgumentException; class ParseErrorException extends BaseInvalidArgumentException implements InvalidArgumentException { /** * Constructor. * * @param string $expected * @param string $actual * @param int $code * @param Exception|null $previous */ public function __construct($expected, $actual, $help = '', $code = 0, Exception $previous = null) { $actual = $actual === '' ? 'data is missing' : "get '$actual'"; parent::__construct(trim("Format expected $expected but $actual\n$help"), $code, $previous); } } PK!|; * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; use InvalidArgumentException as BaseInvalidArgumentException; class InvalidFormatException extends BaseInvalidArgumentException implements InvalidArgumentException { /** * Constructor. * * @param string $message * @param int $code * @param Exception|null $previous */ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, $code, $previous); } } PK!1YVß771carbon/src/Carbon/Exceptions/RuntimeException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; interface RuntimeException extends Exception { } PK! žPżż7carbon/src/Carbon/Exceptions/UnknownMethodException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use BadMethodCallException as BaseBadMethodCallException; use Exception; class UnknownMethodException extends BaseBadMethodCallException implements BadMethodCallException { /** * Constructor. * * @param string $method * @param int $code * @param Exception|null $previous */ public function __construct($method, $code = 0, Exception $previous = null) { parent::__construct("Method $method does not exist.", $code, $previous); } } PK!e½Y‹‹9carbon/src/Carbon/Exceptions/NotACarbonClassException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Carbon\CarbonInterface; use Exception; use InvalidArgumentException as BaseInvalidArgumentException; class NotACarbonClassException extends BaseInvalidArgumentException implements InvalidArgumentException { /** * Constructor. * * @param string $className * @param int $code * @param Exception|null $previous */ public function __construct($className, $code = 0, Exception $previous = null) { parent::__construct(sprintf( 'Given class does not implement %s: %s', CarbonInterface::class, $className ), $code, $previous); } } PK!łįĒgęę.carbon/src/Carbon/Exceptions/UnitException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; use InvalidArgumentException as BaseInvalidArgumentException; class UnitException extends BaseInvalidArgumentException implements InvalidArgumentException { /** * Constructor. * * @param string $message * @param int $code * @param Exception|null $previous */ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, $code, $previous); } } PK!ĀĆ4§§4carbon/src/Carbon/Exceptions/OutOfRangeException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; use InvalidArgumentException as BaseInvalidArgumentException; // This will extends OutOfRangeException instead of InvalidArgumentException since 3.0.0 // use OutOfRangeException as BaseOutOfRangeException; class OutOfRangeException extends BaseInvalidArgumentException implements InvalidArgumentException { /** * The unit or name of the value. * * @var string */ private $unit; /** * The range minimum. * * @var mixed */ private $min; /** * The range maximum. * * @var mixed */ private $max; /** * The invalid value. * * @var mixed */ private $value; /** * Constructor. * * @param string $unit * @param mixed $min * @param mixed $max * @param mixed $value * @param int $code * @param Exception|null $previous */ public function __construct($unit, $min, $max, $value, $code = 0, Exception $previous = null) { $this->unit = $unit; $this->min = $min; $this->max = $max; $this->value = $value; parent::__construct("$unit must be between $min and $max, $value given", $code, $previous); } /** * @return mixed */ public function getMax() { return $this->max; } /** * @return mixed */ public function getMin() { return $this->min; } /** * @return mixed */ public function getUnit() { return $this->unit; } /** * @return mixed */ public function getValue() { return $this->value; } } PK!}yųOO5carbon/src/Carbon/Exceptions/InvalidDateException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; use InvalidArgumentException as BaseInvalidArgumentException; class InvalidDateException extends BaseInvalidArgumentException implements InvalidArgumentException { /** * The invalid field. * * @var string */ private $field; /** * The invalid value. * * @var mixed */ private $value; /** * Constructor. * * @param string $field * @param mixed $value * @param int $code * @param Exception|null $previous */ public function __construct($field, $value, $code = 0, Exception $previous = null) { $this->field = $field; $this->value = $value; parent::__construct($field.' : '.$value.' is not a valid value.', $code, $previous); } /** * Get the invalid field. * * @return string */ public function getField() { return $this->field; } /** * Get the invalid value. * * @return mixed */ public function getValue() { return $this->value; } } PK!md“øųų@carbon/src/Carbon/Exceptions/InvalidPeriodParameterException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; use InvalidArgumentException as BaseInvalidArgumentException; class InvalidPeriodParameterException extends BaseInvalidArgumentException implements InvalidArgumentException { /** * Constructor. * * @param string $message * @param int $code * @param Exception|null $previous */ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, $code, $previous); } } PK!ā£Heķķ5carbon/src/Carbon/Exceptions/InvalidCastException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; use InvalidArgumentException as BaseInvalidArgumentException; class InvalidCastException extends BaseInvalidArgumentException implements InvalidArgumentException { /** * Constructor. * * @param string $message * @param int $code * @param Exception|null $previous */ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, $code, $previous); } } PK!kÕ.ƒ==7carbon/src/Carbon/Exceptions/BadMethodCallException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; interface BadMethodCallException extends Exception { } PK!øø^óó;carbon/src/Carbon/Exceptions/InvalidPeriodDateException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; use InvalidArgumentException as BaseInvalidArgumentException; class InvalidPeriodDateException extends BaseInvalidArgumentException implements InvalidArgumentException { /** * Constructor. * * @param string $message * @param int $code * @param Exception|null $previous */ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, $code, $previous); } } PK!‚µ¹*carbon/src/Carbon/Exceptions/Exception.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; interface Exception { } PK!Ü Lż  9carbon/src/Carbon/Exceptions/BadFluentSetterException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use BadMethodCallException as BaseBadMethodCallException; use Exception; class BadFluentSetterException extends BaseBadMethodCallException implements BadMethodCallException { /** * Constructor. * * @param string $method * @param int $code * @param Exception|null $previous */ public function __construct($method, $code = 0, Exception $previous = null) { parent::__construct(sprintf("Unknown fluent setter '%s'", $method), $code, $previous); } } PK!Ø >carbon/src/Carbon/Exceptions/BadFluentConstructorException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use BadMethodCallException as BaseBadMethodCallException; use Exception; class BadFluentConstructorException extends BaseBadMethodCallException implements BadMethodCallException { /** * Constructor. * * @param string $method * @param int $code * @param Exception|null $previous */ public function __construct($method, $code = 0, Exception $previous = null) { parent::__construct(sprintf("Unknown fluent constructor '%s'.", $method), $code, $previous); } } PK!6„öķķ5carbon/src/Carbon/Exceptions/InvalidTypeException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; use InvalidArgumentException as BaseInvalidArgumentException; class InvalidTypeException extends BaseInvalidArgumentException implements InvalidArgumentException { /** * Constructor. * * @param string $message * @param int $code * @param Exception|null $previous */ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, $code, $previous); } } PK!š’’;carbon/src/Carbon/Exceptions/BadComparisonUnitException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; class BadComparisonUnitException extends UnitException { /** * Constructor. * * @param string $unit * @param int $code * @param Exception|null $previous */ public function __construct($unit, $code = 0, Exception $previous = null) { parent::__construct("Bad comparison unit: '$unit'", $code, $previous); } } PK!;Ėaģ……5carbon/src/Carbon/Exceptions/UnknownUnitException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; class UnknownUnitException extends UnitException { /** * Constructor. * * @param string $unit * @param int $code * @param Exception|null $previous */ public function __construct($unit, $code = 0, Exception $previous = null) { parent::__construct("Unknown unit '$unit'.", $code, $previous); } } PK!b…??9carbon/src/Carbon/Exceptions/InvalidArgumentException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; interface InvalidArgumentException extends Exception { } PK!źƒłĢ7carbon/src/Carbon/Exceptions/UnknownSetterException.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Exceptions; use Exception; use InvalidArgumentException as BaseInvalidArgumentException; class UnknownSetterException extends BaseInvalidArgumentException implements BadMethodCallException { /** * Constructor. * * @param string $name setter name * @param int $code * @param Exception|null $previous */ public function __construct($name, $code = 0, Exception $previous = null) { parent::__construct("Unknown setter '$name'", $code, $previous); } } PK!~›a'¬Ó¬Ócarbon/src/Carbon/Factory.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon; use Closure; use ReflectionMethod; /** * A factory to generate Carbon instances with common settings. * * * * @method bool canBeCreatedFromFormat($date, $format) Checks if the (date)time string is in a given format and valid to create a * new instance. * @method Carbon|false create($year = 0, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0, $tz = null) Create a new Carbon instance from a specific date and time. * If any of $year, $month or $day are set to null their now() values will * be used. * If $hour is null it will be set to its now() value and the default * values for $minute and $second will be their now() values. * If $hour is not null then the default values for $minute and $second * will be 0. * @method Carbon createFromDate($year = null, $month = null, $day = null, $tz = null) Create a Carbon instance from just a date. The time portion is set to now. * @method Carbon|false createFromFormat($format, $time, $tz = null) Create a Carbon instance from a specific format. * @method Carbon|false createFromIsoFormat($format, $time, $tz = null, $locale = 'en', $translator = null) Create a Carbon instance from a specific ISO format (same replacements as ->isoFormat()). * @method Carbon|false createFromLocaleFormat($format, $locale, $time, $tz = null) Create a Carbon instance from a specific format and a string in a given language. * @method Carbon|false createFromLocaleIsoFormat($format, $locale, $time, $tz = null) Create a Carbon instance from a specific ISO format and a string in a given language. * @method Carbon createFromTime($hour = 0, $minute = 0, $second = 0, $tz = null) Create a Carbon instance from just a time. The date portion is set to today. * @method Carbon createFromTimeString($time, $tz = null) Create a Carbon instance from a time string. The date portion is set to today. * @method Carbon createFromTimestamp($timestamp, $tz = null) Create a Carbon instance from a timestamp and set the timezone (use default one if not specified). * Timestamp input can be given as int, float or a string containing one or more numbers. * @method Carbon createFromTimestampMs($timestamp, $tz = null) Create a Carbon instance from a timestamp in milliseconds. * Timestamp input can be given as int, float or a string containing one or more numbers. * @method Carbon createFromTimestampMsUTC($timestamp) Create a Carbon instance from a timestamp in milliseconds. * Timestamp input can be given as int, float or a string containing one or more numbers. * @method Carbon createFromTimestampUTC($timestamp) Create a Carbon instance from an timestamp keeping the timezone to UTC. * Timestamp input can be given as int, float or a string containing one or more numbers. * @method Carbon createMidnightDate($year = null, $month = null, $day = null, $tz = null) Create a Carbon instance from just a date. The time portion is set to midnight. * @method Carbon|false createSafe($year = null, $month = null, $day = null, $hour = null, $minute = null, $second = null, $tz = null) Create a new safe Carbon instance from a specific date and time. * If any of $year, $month or $day are set to null their now() values will * be used. * If $hour is null it will be set to its now() value and the default * values for $minute and $second will be their now() values. * If $hour is not null then the default values for $minute and $second * will be 0. * If one of the set values is not valid, an InvalidDateException * will be thrown. * @method Carbon disableHumanDiffOption($humanDiffOption) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * @method Carbon enableHumanDiffOption($humanDiffOption) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * @method mixed executeWithLocale($locale, $func) Set the current locale to the given, execute the passed function, reset the locale to previous one, * then return the result of the closure (or null if the closure was void). * @method Carbon fromSerialized($value) Create an instance from a serialized string. * @method void genericMacro($macro, $priority = 0) Register a custom macro. * @method array getAvailableLocales() Returns the list of internally available locales and already loaded custom locales. * (It will ignore custom translator dynamic loading.) * @method Language[] getAvailableLocalesInfo() Returns list of Language object for each available locale. This object allow you to get the ISO name, native * name, region and variant of the locale. * @method array getDays() Get the days of the week * @method string|null getFallbackLocale() Get the fallback locale. * @method array getFormatsToIsoReplacements() List of replacements from date() format to isoFormat(). * @method int getHumanDiffOptions() Return default humanDiff() options (merged flags as integer). * @method array getIsoUnits() Returns list of locale units for ISO formatting. * @method Carbon getLastErrors() {@inheritdoc} * @method string getLocale() Get the current translator locale. * @method callable|null getMacro($name) Get the raw callable macro registered globally for a given name. * @method int getMidDayAt() get midday/noon hour * @method Closure|Carbon getTestNow() Get the Carbon instance (real or mock) to be returned when a "now" * instance is created. * @method string getTimeFormatByPrecision($unitPrecision) Return a format from H:i to H:i:s.u according to given unit precision. * @method string getTranslationMessageWith($translator, string $key, string $locale = null, string $default = null) Returns raw translation message for a given key. * @method \Symfony\Component\Translation\TranslatorInterface getTranslator() Get the default translator instance in use. * @method int getWeekEndsAt() Get the last day of week * @method int getWeekStartsAt() Get the first day of week * @method array getWeekendDays() Get weekend days * @method bool hasFormat($date, $format) Checks if the (date)time string is in a given format. * @method bool hasFormatWithModifiers($date, $format) Checks if the (date)time string is in a given format. * @method bool hasMacro($name) Checks if macro is registered globally. * @method bool hasRelativeKeywords($time) Determine if a time string will produce a relative date. * @method bool hasTestNow() Determine if there is a valid test instance set. A valid test instance * is anything that is not null. * @method Carbon instance($date) Create a Carbon instance from a DateTime one. * @method bool isImmutable() Returns true if the current class/instance is immutable. * @method bool isModifiableUnit($unit) Returns true if a property can be changed via setter. * @method bool isMutable() Returns true if the current class/instance is mutable. * @method bool isStrictModeEnabled() Returns true if the strict mode is globally in use, false else. * (It can be overridden in specific instances.) * @method bool localeHasDiffOneDayWords($locale) Returns true if the given locale is internally supported and has words for 1-day diff (just now, yesterday, tomorrow). * Support is considered enabled if the 3 words are translated in the given locale. * @method bool localeHasDiffSyntax($locale) Returns true if the given locale is internally supported and has diff syntax support (ago, from now, before, after). * Support is considered enabled if the 4 sentences are translated in the given locale. * @method bool localeHasDiffTwoDayWords($locale) Returns true if the given locale is internally supported and has words for 2-days diff (before yesterday, after tomorrow). * Support is considered enabled if the 2 words are translated in the given locale. * @method bool localeHasPeriodSyntax($locale) Returns true if the given locale is internally supported and has period syntax support (X times, every X, from X, to X). * Support is considered enabled if the 4 sentences are translated in the given locale. * @method bool localeHasShortUnits($locale) Returns true if the given locale is internally supported and has short-units support. * Support is considered enabled if either year, day or hour has a short variant translated. * @method void macro($name, $macro) Register a custom macro. * @method Carbon|null make($var) Make a Carbon instance from given variable if possible. * Always return a new instance. Parse only strings and only these likely to be dates (skip intervals * and recurrences). Throw an exception for invalid format, but otherwise return null. * @method Carbon maxValue() Create a Carbon instance for the greatest supported date. * @method Carbon minValue() Create a Carbon instance for the lowest supported date. * @method void mixin($mixin) Mix another object into the class. * @method Carbon now($tz = null) Get a Carbon instance for the current date and time. * @method Carbon parse($time = null, $tz = null) Create a carbon instance from a string. * This is an alias for the constructor that allows better fluent syntax * as it allows you to do Carbon::parse('Monday next week')->fn() rather * than (new Carbon('Monday next week'))->fn(). * @method Carbon parseFromLocale($time, $locale = null, $tz = null) Create a carbon instance from a localized string (in French, Japanese, Arabic, etc.). * @method string pluralUnit(string $unit) Returns standardized plural of a given singular/plural unit name (in English). * @method Carbon|false rawCreateFromFormat($format, $time, $tz = null) Create a Carbon instance from a specific format. * @method Carbon rawParse($time = null, $tz = null) Create a carbon instance from a string. * This is an alias for the constructor that allows better fluent syntax * as it allows you to do Carbon::parse('Monday next week')->fn() rather * than (new Carbon('Monday next week'))->fn(). * @method Carbon resetMacros() Remove all macros and generic macros. * @method void resetMonthsOverflow() @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * Or you can use method variants: addMonthsWithOverflow/addMonthsNoOverflow, same variants * are available for quarters, years, decade, centuries, millennia (singular and plural forms). * @method void resetToStringFormat() Reset the format used to the default when type juggling a Carbon instance to a string * @method void resetYearsOverflow() @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * Or you can use method variants: addYearsWithOverflow/addYearsNoOverflow, same variants * are available for quarters, years, decade, centuries, millennia (singular and plural forms). * @method void serializeUsing($callback) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather transform Carbon object before the serialization. * JSON serialize all Carbon instances using the given callback. * @method Carbon setFallbackLocale($locale) Set the fallback locale. * @method Carbon setHumanDiffOptions($humanDiffOptions) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * @method bool setLocale($locale) Set the current translator locale and indicate if the source locale file exists. * Pass 'auto' as locale to use closest language from the current LC_TIME locale. * @method void setMidDayAt($hour) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather consider mid-day is always 12pm, then if you need to test if it's an other * hour, test it explicitly: * $date->format('G') == 13 * or to set explicitly to a given hour: * $date->setTime(13, 0, 0, 0) * Set midday/noon hour * @method Carbon setTestNow($testNow = null) Set a Carbon instance (real or mock) to be returned when a "now" * instance is created. The provided instance will be returned * specifically under the following conditions: * - A call to the static now() method, ex. Carbon::now() * - When a null (or blank string) is passed to the constructor or parse(), ex. new Carbon(null) * - When the string "now" is passed to the constructor or parse(), ex. new Carbon('now') * - When a string containing the desired time is passed to Carbon::parse(). * Note the timezone parameter was left out of the examples above and * has no affect as the mock value will be returned regardless of its value. * To clear the test instance call this method using the default * parameter of null. * /!\ Use this method for unit tests only. * @method void setToStringFormat($format) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather let Carbon object being casted to string with DEFAULT_TO_STRING_FORMAT, and * use other method or custom format passed to format() method if you need to dump an other string * format. * Set the default format used when type juggling a Carbon instance to a string * @method void setTranslator(\Symfony\Component\Translation\TranslatorInterface $translator) Set the default translator instance to use. * @method Carbon setUtf8($utf8) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use UTF-8 language packages on every machine. * Set if UTF8 will be used for localized date/time. * @method void setWeekEndsAt($day) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * Use $weekStartsAt optional parameter instead when using startOfWeek, floorWeek, ceilWeek * or roundWeek method. You can also use the 'first_day_of_week' locale setting to change the * start of week according to current locale selected and implicitly the end of week. * Set the last day of week * @method void setWeekStartsAt($day) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * Use $weekEndsAt optional parameter instead when using endOfWeek method. You can also use the * 'first_day_of_week' locale setting to change the start of week according to current locale * selected and implicitly the end of week. * Set the first day of week * @method void setWeekendDays($days) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather consider week-end is always saturday and sunday, and if you have some custom * week-end days to handle, give to those days an other name and create a macro for them: * ``` * Carbon::macro('isDayOff', function ($date) { * return $date->isSunday() || $date->isMonday(); * }); * Carbon::macro('isNotDayOff', function ($date) { * return !$date->isDayOff(); * }); * if ($someDate->isDayOff()) ... * if ($someDate->isNotDayOff()) ... * // Add 5 not-off days * $count = 5; * while ($someDate->isDayOff() || ($count-- > 0)) { * $someDate->addDay(); * } * ``` * Set weekend days * @method bool shouldOverflowMonths() Get the month overflow global behavior (can be overridden in specific instances). * @method bool shouldOverflowYears() Get the month overflow global behavior (can be overridden in specific instances). * @method string singularUnit(string $unit) Returns standardized singular of a given singular/plural unit name (in English). * @method Carbon today($tz = null) Create a Carbon instance for today. * @method Carbon tomorrow($tz = null) Create a Carbon instance for tomorrow. * @method string translateTimeString($timeString, $from = null, $to = null, $mode = CarbonInterface::TRANSLATE_ALL) Translate a time string from a locale to an other. * @method string translateWith(\Symfony\Component\Translation\TranslatorInterface $translator, string $key, array $parameters = [], $number = null) Translate using translation string or callback available. * @method void useMonthsOverflow($monthsOverflow = true) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * Or you can use method variants: addMonthsWithOverflow/addMonthsNoOverflow, same variants * are available for quarters, years, decade, centuries, millennia (singular and plural forms). * @method Carbon useStrictMode($strictModeEnabled = true) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * @method void useYearsOverflow($yearsOverflow = true) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * Or you can use method variants: addYearsWithOverflow/addYearsNoOverflow, same variants * are available for quarters, years, decade, centuries, millennia (singular and plural forms). * @method Carbon withTestNow($testNow = null, $callback = null) Temporarily sets a static date to be used within the callback. * Using setTestNow to set the date, executing the callback, then * clearing the test instance. * /!\ Use this method for unit tests only. * @method Carbon yesterday($tz = null) Create a Carbon instance for yesterday. * * */ class Factory { protected $className = Carbon::class; protected $settings = []; public function __construct(array $settings = [], string $className = null) { if ($className) { $this->className = $className; } $this->settings = $settings; } public function getClassName() { return $this->className; } public function setClassName(string $className) { $this->className = $className; return $this; } public function className(string $className = null) { return $className === null ? $this->getClassName() : $this->setClassName($className); } public function getSettings() { return $this->settings; } public function setSettings(array $settings) { $this->settings = $settings; return $this; } public function settings(array $settings = null) { return $settings === null ? $this->getSettings() : $this->setSettings($settings); } public function mergeSettings(array $settings) { $this->settings = array_merge($this->settings, $settings); return $this; } public function __call($name, $arguments) { $method = new ReflectionMethod($this->className, $name); $settings = $this->settings; if ($settings && isset($settings['timezone'])) { $tzParameters = array_filter($method->getParameters(), function ($parameter) { return \in_array($parameter->getName(), ['tz', 'timezone'], true); }); if (\count($tzParameters)) { array_splice($arguments, key($tzParameters), 0, [$settings['timezone']]); unset($settings['timezone']); } } $result = $this->className::$name(...$arguments); return $result instanceof CarbonInterface && !empty($settings) ? $result->settings($settings) : $result; } } PK!@•<“&­&­%carbon/src/Carbon/CarbonInterface.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon; use BadMethodCallException; use Carbon\Exceptions\BadComparisonUnitException; use Carbon\Exceptions\ImmutableException; use Carbon\Exceptions\InvalidDateException; use Carbon\Exceptions\InvalidFormatException; use Carbon\Exceptions\UnknownGetterException; use Carbon\Exceptions\UnknownMethodException; use Carbon\Exceptions\UnknownSetterException; use Closure; use DateInterval; use DateTime; use DateTimeImmutable; use DateTimeInterface; use DateTimeZone; use JsonSerializable; use ReflectionException; use Throwable; /** * Common interface for Carbon and CarbonImmutable. * * * * @property int $year * @property int $yearIso * @property int $month * @property int $day * @property int $hour * @property int $minute * @property int $second * @property int $micro * @property int $microsecond * @property int|float|string $timestamp seconds since the Unix Epoch * @property string $englishDayOfWeek the day of week in English * @property string $shortEnglishDayOfWeek the abbreviated day of week in English * @property string $englishMonth the month in English * @property string $shortEnglishMonth the abbreviated month in English * @property string $localeDayOfWeek the day of week in current locale LC_TIME * @property string $shortLocaleDayOfWeek the abbreviated day of week in current locale LC_TIME * @property string $localeMonth the month in current locale LC_TIME * @property string $shortLocaleMonth the abbreviated month in current locale LC_TIME * @property int $milliseconds * @property int $millisecond * @property int $milli * @property int $week 1 through 53 * @property int $isoWeek 1 through 53 * @property int $weekYear year according to week format * @property int $isoWeekYear year according to ISO week format * @property int $dayOfYear 1 through 366 * @property int $age does a diffInYears() with default parameters * @property int $offset the timezone offset in seconds from UTC * @property int $offsetMinutes the timezone offset in minutes from UTC * @property int $offsetHours the timezone offset in hours from UTC * @property CarbonTimeZone $timezone the current timezone * @property CarbonTimeZone $tz alias of $timezone * @property-read int $dayOfWeek 0 (for Sunday) through 6 (for Saturday) * @property-read int $dayOfWeekIso 1 (for Monday) through 7 (for Sunday) * @property-read int $weekOfYear ISO-8601 week number of year, weeks starting on Monday * @property-read int $daysInMonth number of days in the given month * @property-read string $latinMeridiem "am"/"pm" (Ante meridiem or Post meridiem latin lowercase mark) * @property-read string $latinUpperMeridiem "AM"/"PM" (Ante meridiem or Post meridiem latin uppercase mark) * @property-read string $timezoneAbbreviatedName the current timezone abbreviated name * @property-read string $tzAbbrName alias of $timezoneAbbreviatedName * @property-read string $dayName long name of weekday translated according to Carbon locale, in english if no translation available for current language * @property-read string $shortDayName short name of weekday translated according to Carbon locale, in english if no translation available for current language * @property-read string $minDayName very short name of weekday translated according to Carbon locale, in english if no translation available for current language * @property-read string $monthName long name of month translated according to Carbon locale, in english if no translation available for current language * @property-read string $shortMonthName short name of month translated according to Carbon locale, in english if no translation available for current language * @property-read string $meridiem lowercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language * @property-read string $upperMeridiem uppercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language * @property-read int $noZeroHour current hour from 1 to 24 * @property-read int $weeksInYear 51 through 53 * @property-read int $isoWeeksInYear 51 through 53 * @property-read int $weekOfMonth 1 through 5 * @property-read int $weekNumberInMonth 1 through 5 * @property-read int $firstWeekDay 0 through 6 * @property-read int $lastWeekDay 0 through 6 * @property-read int $daysInYear 365 or 366 * @property-read int $quarter the quarter of this instance, 1 - 4 * @property-read int $decade the decade of this instance * @property-read int $century the century of this instance * @property-read int $millennium the millennium of this instance * @property-read bool $dst daylight savings time indicator, true if DST, false otherwise * @property-read bool $local checks if the timezone is local, true if local, false otherwise * @property-read bool $utc checks if the timezone is UTC, true if UTC, false otherwise * @property-read string $timezoneName the current timezone name * @property-read string $tzName alias of $timezoneName * @property-read string $locale locale of the current instance * * @method bool isUtc() Check if the current instance has UTC timezone. (Both isUtc and isUTC cases are valid.) * @method bool isLocal() Check if the current instance has non-UTC timezone. * @method bool isValid() Check if the current instance is a valid date. * @method bool isDST() Check if the current instance is in a daylight saving time. * @method bool isSunday() Checks if the instance day is sunday. * @method bool isMonday() Checks if the instance day is monday. * @method bool isTuesday() Checks if the instance day is tuesday. * @method bool isWednesday() Checks if the instance day is wednesday. * @method bool isThursday() Checks if the instance day is thursday. * @method bool isFriday() Checks if the instance day is friday. * @method bool isSaturday() Checks if the instance day is saturday. * @method bool isSameYear(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same year as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentYear() Checks if the instance is in the same year as the current moment. * @method bool isNextYear() Checks if the instance is in the same year as the current moment next year. * @method bool isLastYear() Checks if the instance is in the same year as the current moment last year. * @method bool isSameWeek(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same week as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentWeek() Checks if the instance is in the same week as the current moment. * @method bool isNextWeek() Checks if the instance is in the same week as the current moment next week. * @method bool isLastWeek() Checks if the instance is in the same week as the current moment last week. * @method bool isSameDay(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same day as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentDay() Checks if the instance is in the same day as the current moment. * @method bool isNextDay() Checks if the instance is in the same day as the current moment next day. * @method bool isLastDay() Checks if the instance is in the same day as the current moment last day. * @method bool isSameHour(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same hour as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentHour() Checks if the instance is in the same hour as the current moment. * @method bool isNextHour() Checks if the instance is in the same hour as the current moment next hour. * @method bool isLastHour() Checks if the instance is in the same hour as the current moment last hour. * @method bool isSameMinute(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same minute as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentMinute() Checks if the instance is in the same minute as the current moment. * @method bool isNextMinute() Checks if the instance is in the same minute as the current moment next minute. * @method bool isLastMinute() Checks if the instance is in the same minute as the current moment last minute. * @method bool isSameSecond(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same second as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentSecond() Checks if the instance is in the same second as the current moment. * @method bool isNextSecond() Checks if the instance is in the same second as the current moment next second. * @method bool isLastSecond() Checks if the instance is in the same second as the current moment last second. * @method bool isSameMicro(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same microsecond as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentMicro() Checks if the instance is in the same microsecond as the current moment. * @method bool isNextMicro() Checks if the instance is in the same microsecond as the current moment next microsecond. * @method bool isLastMicro() Checks if the instance is in the same microsecond as the current moment last microsecond. * @method bool isSameMicrosecond(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same microsecond as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentMicrosecond() Checks if the instance is in the same microsecond as the current moment. * @method bool isNextMicrosecond() Checks if the instance is in the same microsecond as the current moment next microsecond. * @method bool isLastMicrosecond() Checks if the instance is in the same microsecond as the current moment last microsecond. * @method bool isCurrentMonth() Checks if the instance is in the same month as the current moment. * @method bool isNextMonth() Checks if the instance is in the same month as the current moment next month. * @method bool isLastMonth() Checks if the instance is in the same month as the current moment last month. * @method bool isCurrentQuarter() Checks if the instance is in the same quarter as the current moment. * @method bool isNextQuarter() Checks if the instance is in the same quarter as the current moment next quarter. * @method bool isLastQuarter() Checks if the instance is in the same quarter as the current moment last quarter. * @method bool isSameDecade(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same decade as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentDecade() Checks if the instance is in the same decade as the current moment. * @method bool isNextDecade() Checks if the instance is in the same decade as the current moment next decade. * @method bool isLastDecade() Checks if the instance is in the same decade as the current moment last decade. * @method bool isSameCentury(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same century as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentCentury() Checks if the instance is in the same century as the current moment. * @method bool isNextCentury() Checks if the instance is in the same century as the current moment next century. * @method bool isLastCentury() Checks if the instance is in the same century as the current moment last century. * @method bool isSameMillennium(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same millennium as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentMillennium() Checks if the instance is in the same millennium as the current moment. * @method bool isNextMillennium() Checks if the instance is in the same millennium as the current moment next millennium. * @method bool isLastMillennium() Checks if the instance is in the same millennium as the current moment last millennium. * @method CarbonInterface years(int $value) Set current instance year to the given value. * @method CarbonInterface year(int $value) Set current instance year to the given value. * @method CarbonInterface setYears(int $value) Set current instance year to the given value. * @method CarbonInterface setYear(int $value) Set current instance year to the given value. * @method CarbonInterface months(int $value) Set current instance month to the given value. * @method CarbonInterface month(int $value) Set current instance month to the given value. * @method CarbonInterface setMonths(int $value) Set current instance month to the given value. * @method CarbonInterface setMonth(int $value) Set current instance month to the given value. * @method CarbonInterface days(int $value) Set current instance day to the given value. * @method CarbonInterface day(int $value) Set current instance day to the given value. * @method CarbonInterface setDays(int $value) Set current instance day to the given value. * @method CarbonInterface setDay(int $value) Set current instance day to the given value. * @method CarbonInterface hours(int $value) Set current instance hour to the given value. * @method CarbonInterface hour(int $value) Set current instance hour to the given value. * @method CarbonInterface setHours(int $value) Set current instance hour to the given value. * @method CarbonInterface setHour(int $value) Set current instance hour to the given value. * @method CarbonInterface minutes(int $value) Set current instance minute to the given value. * @method CarbonInterface minute(int $value) Set current instance minute to the given value. * @method CarbonInterface setMinutes(int $value) Set current instance minute to the given value. * @method CarbonInterface setMinute(int $value) Set current instance minute to the given value. * @method CarbonInterface seconds(int $value) Set current instance second to the given value. * @method CarbonInterface second(int $value) Set current instance second to the given value. * @method CarbonInterface setSeconds(int $value) Set current instance second to the given value. * @method CarbonInterface setSecond(int $value) Set current instance second to the given value. * @method CarbonInterface millis(int $value) Set current instance millisecond to the given value. * @method CarbonInterface milli(int $value) Set current instance millisecond to the given value. * @method CarbonInterface setMillis(int $value) Set current instance millisecond to the given value. * @method CarbonInterface setMilli(int $value) Set current instance millisecond to the given value. * @method CarbonInterface milliseconds(int $value) Set current instance millisecond to the given value. * @method CarbonInterface millisecond(int $value) Set current instance millisecond to the given value. * @method CarbonInterface setMilliseconds(int $value) Set current instance millisecond to the given value. * @method CarbonInterface setMillisecond(int $value) Set current instance millisecond to the given value. * @method CarbonInterface micros(int $value) Set current instance microsecond to the given value. * @method CarbonInterface micro(int $value) Set current instance microsecond to the given value. * @method CarbonInterface setMicros(int $value) Set current instance microsecond to the given value. * @method CarbonInterface setMicro(int $value) Set current instance microsecond to the given value. * @method CarbonInterface microseconds(int $value) Set current instance microsecond to the given value. * @method CarbonInterface microsecond(int $value) Set current instance microsecond to the given value. * @method CarbonInterface setMicroseconds(int $value) Set current instance microsecond to the given value. * @method CarbonInterface setMicrosecond(int $value) Set current instance microsecond to the given value. * @method CarbonInterface addYears(int $value = 1) Add years (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addYear() Add one year to the instance (using date interval). * @method CarbonInterface subYears(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subYear() Sub one year to the instance (using date interval). * @method CarbonInterface addYearsWithOverflow(int $value = 1) Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addYearWithOverflow() Add one year to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subYearsWithOverflow(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subYearWithOverflow() Sub one year to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addYearsWithoutOverflow(int $value = 1) Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addYearWithoutOverflow() Add one year to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subYearsWithoutOverflow(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subYearWithoutOverflow() Sub one year to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addYearsWithNoOverflow(int $value = 1) Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addYearWithNoOverflow() Add one year to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subYearsWithNoOverflow(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subYearWithNoOverflow() Sub one year to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addYearsNoOverflow(int $value = 1) Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addYearNoOverflow() Add one year to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subYearsNoOverflow(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subYearNoOverflow() Sub one year to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMonths(int $value = 1) Add months (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addMonth() Add one month to the instance (using date interval). * @method CarbonInterface subMonths(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subMonth() Sub one month to the instance (using date interval). * @method CarbonInterface addMonthsWithOverflow(int $value = 1) Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addMonthWithOverflow() Add one month to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subMonthsWithOverflow(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subMonthWithOverflow() Sub one month to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addMonthsWithoutOverflow(int $value = 1) Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMonthWithoutOverflow() Add one month to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMonthsWithoutOverflow(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMonthWithoutOverflow() Sub one month to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMonthsWithNoOverflow(int $value = 1) Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMonthWithNoOverflow() Add one month to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMonthsWithNoOverflow(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMonthWithNoOverflow() Sub one month to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMonthsNoOverflow(int $value = 1) Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMonthNoOverflow() Add one month to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMonthsNoOverflow(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMonthNoOverflow() Sub one month to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addDays(int $value = 1) Add days (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addDay() Add one day to the instance (using date interval). * @method CarbonInterface subDays(int $value = 1) Sub days (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subDay() Sub one day to the instance (using date interval). * @method CarbonInterface addHours(int $value = 1) Add hours (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addHour() Add one hour to the instance (using date interval). * @method CarbonInterface subHours(int $value = 1) Sub hours (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subHour() Sub one hour to the instance (using date interval). * @method CarbonInterface addMinutes(int $value = 1) Add minutes (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addMinute() Add one minute to the instance (using date interval). * @method CarbonInterface subMinutes(int $value = 1) Sub minutes (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subMinute() Sub one minute to the instance (using date interval). * @method CarbonInterface addSeconds(int $value = 1) Add seconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addSecond() Add one second to the instance (using date interval). * @method CarbonInterface subSeconds(int $value = 1) Sub seconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subSecond() Sub one second to the instance (using date interval). * @method CarbonInterface addMillis(int $value = 1) Add milliseconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addMilli() Add one millisecond to the instance (using date interval). * @method CarbonInterface subMillis(int $value = 1) Sub milliseconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subMilli() Sub one millisecond to the instance (using date interval). * @method CarbonInterface addMilliseconds(int $value = 1) Add milliseconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addMillisecond() Add one millisecond to the instance (using date interval). * @method CarbonInterface subMilliseconds(int $value = 1) Sub milliseconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subMillisecond() Sub one millisecond to the instance (using date interval). * @method CarbonInterface addMicros(int $value = 1) Add microseconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addMicro() Add one microsecond to the instance (using date interval). * @method CarbonInterface subMicros(int $value = 1) Sub microseconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subMicro() Sub one microsecond to the instance (using date interval). * @method CarbonInterface addMicroseconds(int $value = 1) Add microseconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addMicrosecond() Add one microsecond to the instance (using date interval). * @method CarbonInterface subMicroseconds(int $value = 1) Sub microseconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subMicrosecond() Sub one microsecond to the instance (using date interval). * @method CarbonInterface addMillennia(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addMillennium() Add one millennium to the instance (using date interval). * @method CarbonInterface subMillennia(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subMillennium() Sub one millennium to the instance (using date interval). * @method CarbonInterface addMillenniaWithOverflow(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addMillenniumWithOverflow() Add one millennium to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subMillenniaWithOverflow(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subMillenniumWithOverflow() Sub one millennium to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addMillenniaWithoutOverflow(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMillenniumWithoutOverflow() Add one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMillenniaWithoutOverflow(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMillenniumWithoutOverflow() Sub one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMillenniaWithNoOverflow(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMillenniumWithNoOverflow() Add one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMillenniaWithNoOverflow(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMillenniumWithNoOverflow() Sub one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMillenniaNoOverflow(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMillenniumNoOverflow() Add one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMillenniaNoOverflow(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMillenniumNoOverflow() Sub one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addCenturies(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addCentury() Add one century to the instance (using date interval). * @method CarbonInterface subCenturies(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subCentury() Sub one century to the instance (using date interval). * @method CarbonInterface addCenturiesWithOverflow(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addCenturyWithOverflow() Add one century to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subCenturiesWithOverflow(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subCenturyWithOverflow() Sub one century to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addCenturiesWithoutOverflow(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addCenturyWithoutOverflow() Add one century to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subCenturiesWithoutOverflow(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subCenturyWithoutOverflow() Sub one century to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addCenturiesWithNoOverflow(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addCenturyWithNoOverflow() Add one century to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subCenturiesWithNoOverflow(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subCenturyWithNoOverflow() Sub one century to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addCenturiesNoOverflow(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addCenturyNoOverflow() Add one century to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subCenturiesNoOverflow(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subCenturyNoOverflow() Sub one century to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addDecades(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addDecade() Add one decade to the instance (using date interval). * @method CarbonInterface subDecades(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subDecade() Sub one decade to the instance (using date interval). * @method CarbonInterface addDecadesWithOverflow(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addDecadeWithOverflow() Add one decade to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subDecadesWithOverflow(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subDecadeWithOverflow() Sub one decade to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addDecadesWithoutOverflow(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addDecadeWithoutOverflow() Add one decade to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subDecadesWithoutOverflow(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subDecadeWithoutOverflow() Sub one decade to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addDecadesWithNoOverflow(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addDecadeWithNoOverflow() Add one decade to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subDecadesWithNoOverflow(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subDecadeWithNoOverflow() Sub one decade to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addDecadesNoOverflow(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addDecadeNoOverflow() Add one decade to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subDecadesNoOverflow(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subDecadeNoOverflow() Sub one decade to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addQuarters(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addQuarter() Add one quarter to the instance (using date interval). * @method CarbonInterface subQuarters(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subQuarter() Sub one quarter to the instance (using date interval). * @method CarbonInterface addQuartersWithOverflow(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addQuarterWithOverflow() Add one quarter to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subQuartersWithOverflow(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subQuarterWithOverflow() Sub one quarter to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addQuartersWithoutOverflow(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addQuarterWithoutOverflow() Add one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subQuartersWithoutOverflow(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subQuarterWithoutOverflow() Sub one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addQuartersWithNoOverflow(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addQuarterWithNoOverflow() Add one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subQuartersWithNoOverflow(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subQuarterWithNoOverflow() Sub one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addQuartersNoOverflow(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addQuarterNoOverflow() Add one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subQuartersNoOverflow(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subQuarterNoOverflow() Sub one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addWeeks(int $value = 1) Add weeks (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addWeek() Add one week to the instance (using date interval). * @method CarbonInterface subWeeks(int $value = 1) Sub weeks (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subWeek() Sub one week to the instance (using date interval). * @method CarbonInterface addWeekdays(int $value = 1) Add weekdays (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addWeekday() Add one weekday to the instance (using date interval). * @method CarbonInterface subWeekdays(int $value = 1) Sub weekdays (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subWeekday() Sub one weekday to the instance (using date interval). * @method CarbonInterface addRealMicros(int $value = 1) Add microseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealMicro() Add one microsecond to the instance (using timestamp). * @method CarbonInterface subRealMicros(int $value = 1) Sub microseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealMicro() Sub one microsecond to the instance (using timestamp). * @method CarbonPeriod microsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each microsecond or every X microseconds if a factor is given. * @method CarbonInterface addRealMicroseconds(int $value = 1) Add microseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealMicrosecond() Add one microsecond to the instance (using timestamp). * @method CarbonInterface subRealMicroseconds(int $value = 1) Sub microseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealMicrosecond() Sub one microsecond to the instance (using timestamp). * @method CarbonPeriod microsecondsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each microsecond or every X microseconds if a factor is given. * @method CarbonInterface addRealMillis(int $value = 1) Add milliseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealMilli() Add one millisecond to the instance (using timestamp). * @method CarbonInterface subRealMillis(int $value = 1) Sub milliseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealMilli() Sub one millisecond to the instance (using timestamp). * @method CarbonPeriod millisUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millisecond or every X milliseconds if a factor is given. * @method CarbonInterface addRealMilliseconds(int $value = 1) Add milliseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealMillisecond() Add one millisecond to the instance (using timestamp). * @method CarbonInterface subRealMilliseconds(int $value = 1) Sub milliseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealMillisecond() Sub one millisecond to the instance (using timestamp). * @method CarbonPeriod millisecondsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millisecond or every X milliseconds if a factor is given. * @method CarbonInterface addRealSeconds(int $value = 1) Add seconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealSecond() Add one second to the instance (using timestamp). * @method CarbonInterface subRealSeconds(int $value = 1) Sub seconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealSecond() Sub one second to the instance (using timestamp). * @method CarbonPeriod secondsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each second or every X seconds if a factor is given. * @method CarbonInterface addRealMinutes(int $value = 1) Add minutes (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealMinute() Add one minute to the instance (using timestamp). * @method CarbonInterface subRealMinutes(int $value = 1) Sub minutes (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealMinute() Sub one minute to the instance (using timestamp). * @method CarbonPeriod minutesUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each minute or every X minutes if a factor is given. * @method CarbonInterface addRealHours(int $value = 1) Add hours (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealHour() Add one hour to the instance (using timestamp). * @method CarbonInterface subRealHours(int $value = 1) Sub hours (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealHour() Sub one hour to the instance (using timestamp). * @method CarbonPeriod hoursUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each hour or every X hours if a factor is given. * @method CarbonInterface addRealDays(int $value = 1) Add days (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealDay() Add one day to the instance (using timestamp). * @method CarbonInterface subRealDays(int $value = 1) Sub days (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealDay() Sub one day to the instance (using timestamp). * @method CarbonPeriod daysUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each day or every X days if a factor is given. * @method CarbonInterface addRealWeeks(int $value = 1) Add weeks (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealWeek() Add one week to the instance (using timestamp). * @method CarbonInterface subRealWeeks(int $value = 1) Sub weeks (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealWeek() Sub one week to the instance (using timestamp). * @method CarbonPeriod weeksUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each week or every X weeks if a factor is given. * @method CarbonInterface addRealMonths(int $value = 1) Add months (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealMonth() Add one month to the instance (using timestamp). * @method CarbonInterface subRealMonths(int $value = 1) Sub months (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealMonth() Sub one month to the instance (using timestamp). * @method CarbonPeriod monthsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each month or every X months if a factor is given. * @method CarbonInterface addRealQuarters(int $value = 1) Add quarters (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealQuarter() Add one quarter to the instance (using timestamp). * @method CarbonInterface subRealQuarters(int $value = 1) Sub quarters (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealQuarter() Sub one quarter to the instance (using timestamp). * @method CarbonPeriod quartersUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each quarter or every X quarters if a factor is given. * @method CarbonInterface addRealYears(int $value = 1) Add years (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealYear() Add one year to the instance (using timestamp). * @method CarbonInterface subRealYears(int $value = 1) Sub years (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealYear() Sub one year to the instance (using timestamp). * @method CarbonPeriod yearsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each year or every X years if a factor is given. * @method CarbonInterface addRealDecades(int $value = 1) Add decades (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealDecade() Add one decade to the instance (using timestamp). * @method CarbonInterface subRealDecades(int $value = 1) Sub decades (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealDecade() Sub one decade to the instance (using timestamp). * @method CarbonPeriod decadesUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each decade or every X decades if a factor is given. * @method CarbonInterface addRealCenturies(int $value = 1) Add centuries (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealCentury() Add one century to the instance (using timestamp). * @method CarbonInterface subRealCenturies(int $value = 1) Sub centuries (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealCentury() Sub one century to the instance (using timestamp). * @method CarbonPeriod centuriesUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each century or every X centuries if a factor is given. * @method CarbonInterface addRealMillennia(int $value = 1) Add millennia (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealMillennium() Add one millennium to the instance (using timestamp). * @method CarbonInterface subRealMillennia(int $value = 1) Sub millennia (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealMillennium() Sub one millennium to the instance (using timestamp). * @method CarbonPeriod millenniaUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millennium or every X millennia if a factor is given. * @method CarbonInterface roundYear(float $precision = 1, string $function = "round") Round the current instance year with given precision using the given function. * @method CarbonInterface roundYears(float $precision = 1, string $function = "round") Round the current instance year with given precision using the given function. * @method CarbonInterface floorYear(float $precision = 1) Truncate the current instance year with given precision. * @method CarbonInterface floorYears(float $precision = 1) Truncate the current instance year with given precision. * @method CarbonInterface ceilYear(float $precision = 1) Ceil the current instance year with given precision. * @method CarbonInterface ceilYears(float $precision = 1) Ceil the current instance year with given precision. * @method CarbonInterface roundMonth(float $precision = 1, string $function = "round") Round the current instance month with given precision using the given function. * @method CarbonInterface roundMonths(float $precision = 1, string $function = "round") Round the current instance month with given precision using the given function. * @method CarbonInterface floorMonth(float $precision = 1) Truncate the current instance month with given precision. * @method CarbonInterface floorMonths(float $precision = 1) Truncate the current instance month with given precision. * @method CarbonInterface ceilMonth(float $precision = 1) Ceil the current instance month with given precision. * @method CarbonInterface ceilMonths(float $precision = 1) Ceil the current instance month with given precision. * @method CarbonInterface roundDay(float $precision = 1, string $function = "round") Round the current instance day with given precision using the given function. * @method CarbonInterface roundDays(float $precision = 1, string $function = "round") Round the current instance day with given precision using the given function. * @method CarbonInterface floorDay(float $precision = 1) Truncate the current instance day with given precision. * @method CarbonInterface floorDays(float $precision = 1) Truncate the current instance day with given precision. * @method CarbonInterface ceilDay(float $precision = 1) Ceil the current instance day with given precision. * @method CarbonInterface ceilDays(float $precision = 1) Ceil the current instance day with given precision. * @method CarbonInterface roundHour(float $precision = 1, string $function = "round") Round the current instance hour with given precision using the given function. * @method CarbonInterface roundHours(float $precision = 1, string $function = "round") Round the current instance hour with given precision using the given function. * @method CarbonInterface floorHour(float $precision = 1) Truncate the current instance hour with given precision. * @method CarbonInterface floorHours(float $precision = 1) Truncate the current instance hour with given precision. * @method CarbonInterface ceilHour(float $precision = 1) Ceil the current instance hour with given precision. * @method CarbonInterface ceilHours(float $precision = 1) Ceil the current instance hour with given precision. * @method CarbonInterface roundMinute(float $precision = 1, string $function = "round") Round the current instance minute with given precision using the given function. * @method CarbonInterface roundMinutes(float $precision = 1, string $function = "round") Round the current instance minute with given precision using the given function. * @method CarbonInterface floorMinute(float $precision = 1) Truncate the current instance minute with given precision. * @method CarbonInterface floorMinutes(float $precision = 1) Truncate the current instance minute with given precision. * @method CarbonInterface ceilMinute(float $precision = 1) Ceil the current instance minute with given precision. * @method CarbonInterface ceilMinutes(float $precision = 1) Ceil the current instance minute with given precision. * @method CarbonInterface roundSecond(float $precision = 1, string $function = "round") Round the current instance second with given precision using the given function. * @method CarbonInterface roundSeconds(float $precision = 1, string $function = "round") Round the current instance second with given precision using the given function. * @method CarbonInterface floorSecond(float $precision = 1) Truncate the current instance second with given precision. * @method CarbonInterface floorSeconds(float $precision = 1) Truncate the current instance second with given precision. * @method CarbonInterface ceilSecond(float $precision = 1) Ceil the current instance second with given precision. * @method CarbonInterface ceilSeconds(float $precision = 1) Ceil the current instance second with given precision. * @method CarbonInterface roundMillennium(float $precision = 1, string $function = "round") Round the current instance millennium with given precision using the given function. * @method CarbonInterface roundMillennia(float $precision = 1, string $function = "round") Round the current instance millennium with given precision using the given function. * @method CarbonInterface floorMillennium(float $precision = 1) Truncate the current instance millennium with given precision. * @method CarbonInterface floorMillennia(float $precision = 1) Truncate the current instance millennium with given precision. * @method CarbonInterface ceilMillennium(float $precision = 1) Ceil the current instance millennium with given precision. * @method CarbonInterface ceilMillennia(float $precision = 1) Ceil the current instance millennium with given precision. * @method CarbonInterface roundCentury(float $precision = 1, string $function = "round") Round the current instance century with given precision using the given function. * @method CarbonInterface roundCenturies(float $precision = 1, string $function = "round") Round the current instance century with given precision using the given function. * @method CarbonInterface floorCentury(float $precision = 1) Truncate the current instance century with given precision. * @method CarbonInterface floorCenturies(float $precision = 1) Truncate the current instance century with given precision. * @method CarbonInterface ceilCentury(float $precision = 1) Ceil the current instance century with given precision. * @method CarbonInterface ceilCenturies(float $precision = 1) Ceil the current instance century with given precision. * @method CarbonInterface roundDecade(float $precision = 1, string $function = "round") Round the current instance decade with given precision using the given function. * @method CarbonInterface roundDecades(float $precision = 1, string $function = "round") Round the current instance decade with given precision using the given function. * @method CarbonInterface floorDecade(float $precision = 1) Truncate the current instance decade with given precision. * @method CarbonInterface floorDecades(float $precision = 1) Truncate the current instance decade with given precision. * @method CarbonInterface ceilDecade(float $precision = 1) Ceil the current instance decade with given precision. * @method CarbonInterface ceilDecades(float $precision = 1) Ceil the current instance decade with given precision. * @method CarbonInterface roundQuarter(float $precision = 1, string $function = "round") Round the current instance quarter with given precision using the given function. * @method CarbonInterface roundQuarters(float $precision = 1, string $function = "round") Round the current instance quarter with given precision using the given function. * @method CarbonInterface floorQuarter(float $precision = 1) Truncate the current instance quarter with given precision. * @method CarbonInterface floorQuarters(float $precision = 1) Truncate the current instance quarter with given precision. * @method CarbonInterface ceilQuarter(float $precision = 1) Ceil the current instance quarter with given precision. * @method CarbonInterface ceilQuarters(float $precision = 1) Ceil the current instance quarter with given precision. * @method CarbonInterface roundMillisecond(float $precision = 1, string $function = "round") Round the current instance millisecond with given precision using the given function. * @method CarbonInterface roundMilliseconds(float $precision = 1, string $function = "round") Round the current instance millisecond with given precision using the given function. * @method CarbonInterface floorMillisecond(float $precision = 1) Truncate the current instance millisecond with given precision. * @method CarbonInterface floorMilliseconds(float $precision = 1) Truncate the current instance millisecond with given precision. * @method CarbonInterface ceilMillisecond(float $precision = 1) Ceil the current instance millisecond with given precision. * @method CarbonInterface ceilMilliseconds(float $precision = 1) Ceil the current instance millisecond with given precision. * @method CarbonInterface roundMicrosecond(float $precision = 1, string $function = "round") Round the current instance microsecond with given precision using the given function. * @method CarbonInterface roundMicroseconds(float $precision = 1, string $function = "round") Round the current instance microsecond with given precision using the given function. * @method CarbonInterface floorMicrosecond(float $precision = 1) Truncate the current instance microsecond with given precision. * @method CarbonInterface floorMicroseconds(float $precision = 1) Truncate the current instance microsecond with given precision. * @method CarbonInterface ceilMicrosecond(float $precision = 1) Ceil the current instance microsecond with given precision. * @method CarbonInterface ceilMicroseconds(float $precision = 1) Ceil the current instance microsecond with given precision. * @method string shortAbsoluteDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'Absolute' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string longAbsoluteDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (long format, 'Absolute' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string shortRelativeDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'Relative' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string longRelativeDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (long format, 'Relative' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string shortRelativeToNowDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'RelativeToNow' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string longRelativeToNowDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (long format, 'RelativeToNow' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string shortRelativeToOtherDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'RelativeToOther' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string longRelativeToOtherDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (long format, 'RelativeToOther' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * * */ interface CarbonInterface extends DateTimeInterface, JsonSerializable { /** * Diff wording options(expressed in octal). */ public const NO_ZERO_DIFF = 01; public const JUST_NOW = 02; public const ONE_DAY_WORDS = 04; public const TWO_DAY_WORDS = 010; public const SEQUENTIAL_PARTS_ONLY = 020; public const ROUND = 040; public const FLOOR = 0100; public const CEIL = 0200; /** * Diff syntax options. */ public const DIFF_ABSOLUTE = 1; // backward compatibility with true public const DIFF_RELATIVE_AUTO = 0; // backward compatibility with false public const DIFF_RELATIVE_TO_NOW = 2; public const DIFF_RELATIVE_TO_OTHER = 3; /** * Translate string options. */ public const TRANSLATE_MONTHS = 1; public const TRANSLATE_DAYS = 2; public const TRANSLATE_UNITS = 4; public const TRANSLATE_MERIDIEM = 8; public const TRANSLATE_DIFF = 0x10; public const TRANSLATE_ALL = self::TRANSLATE_MONTHS | self::TRANSLATE_DAYS | self::TRANSLATE_UNITS | self::TRANSLATE_MERIDIEM | self::TRANSLATE_DIFF; /** * The day constants. */ public const SUNDAY = 0; public const MONDAY = 1; public const TUESDAY = 2; public const WEDNESDAY = 3; public const THURSDAY = 4; public const FRIDAY = 5; public const SATURDAY = 6; /** * The month constants. * These aren't used by Carbon itself but exist for * convenience sake alone. */ public const JANUARY = 1; public const FEBRUARY = 2; public const MARCH = 3; public const APRIL = 4; public const MAY = 5; public const JUNE = 6; public const JULY = 7; public const AUGUST = 8; public const SEPTEMBER = 9; public const OCTOBER = 10; public const NOVEMBER = 11; public const DECEMBER = 12; /** * Number of X in Y. */ public const YEARS_PER_MILLENNIUM = 1000; public const YEARS_PER_CENTURY = 100; public const YEARS_PER_DECADE = 10; public const MONTHS_PER_YEAR = 12; public const MONTHS_PER_QUARTER = 3; public const WEEKS_PER_YEAR = 52; public const WEEKS_PER_MONTH = 4; public const DAYS_PER_YEAR = 365; public const DAYS_PER_WEEK = 7; public const HOURS_PER_DAY = 24; public const MINUTES_PER_HOUR = 60; public const SECONDS_PER_MINUTE = 60; public const MILLISECONDS_PER_SECOND = 1000; public const MICROSECONDS_PER_MILLISECOND = 1000; public const MICROSECONDS_PER_SECOND = 1000000; /** * Special settings to get the start of week from current locale culture. */ public const WEEK_DAY_AUTO = 'auto'; /** * RFC7231 DateTime format. * * @var string */ public const RFC7231_FORMAT = 'D, d M Y H:i:s \G\M\T'; /** * Default format to use for __toString method when type juggling occurs. * * @var string */ public const DEFAULT_TO_STRING_FORMAT = 'Y-m-d H:i:s'; /** * Format for converting mocked time, includes microseconds. * * @var string */ public const MOCK_DATETIME_FORMAT = 'Y-m-d H:i:s.u'; /** * Pattern detection for ->isoFormat and ::createFromIsoFormat. * * @var string */ public const ISO_FORMAT_REGEXP = '(O[YMDHhms]|[Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY?|g{1,5}|G{1,5}|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?)'; // /** * Dynamically handle calls to the class. * * @param string $method magic method name called * @param array $parameters parameters list * * @throws UnknownMethodException|BadMethodCallException|ReflectionException|Throwable * * @return mixed */ public function __call($method, $parameters); /** * Dynamically handle calls to the class. * * @param string $method magic method name called * @param array $parameters parameters list * * @throws BadMethodCallException * * @return mixed */ public static function __callStatic($method, $parameters); /** * Update constructedObjectId on cloned. */ public function __clone(); /** * Create a new Carbon instance. * * Please see the testing aids section (specifically static::setTestNow()) * for more on the possibility of this constructor returning a test instance. * * @param string|null $time * @param DateTimeZone|string|null $tz * * @throws InvalidFormatException */ public function __construct($time = null, $tz = null); /** * Show truthy properties on var_dump(). * * @return array */ public function __debugInfo(); /** * Get a part of the Carbon object * * @param string $name * * @throws UnknownGetterException * * @return string|int|bool|DateTimeZone|null */ public function __get($name); /** * Check if an attribute exists on the object * * @param string $name * * @return bool */ public function __isset($name); /** * Set a part of the Carbon object * * @param string $name * @param string|int|DateTimeZone $value * * @throws UnknownSetterException|ReflectionException * * @return void */ public function __set($name, $value); /** * The __set_state handler. * * @param string|array $dump * * @return static */ public static function __set_state($dump); /** * Returns the list of properties to dump on serialize() called on. * * @return array */ public function __sleep(); /** * Format the instance as a string using the set format * * @example * ``` * echo Carbon::now(); // Carbon instances can be casted to string * ``` * * @return string */ public function __toString(); /** * Add given units or interval to the current instance. * * @example $date->add('hour', 3) * @example $date->add(15, 'days') * @example $date->add(CarbonInterval::days(4)) * * @param string|DateInterval|Closure|CarbonConverterInterface $unit * @param int $value * @param bool|null $overflow * * @return static */ public function add($unit, $value = 1, $overflow = null); /** * Add seconds to the instance using timestamp. Positive $value travels * forward while negative $value travels into the past. * * @param string $unit * @param int $value * * @return static */ public function addRealUnit($unit, $value = 1); /** * Add given units to the current instance. * * @param string $unit * @param int $value * @param bool|null $overflow * * @return static */ public function addUnit($unit, $value = 1, $overflow = null); /** * Add any unit to a new value without overflowing current other unit given. * * @param string $valueUnit unit name to modify * @param int $value amount to add to the input unit * @param string $overflowUnit unit name to not overflow * * @return static */ public function addUnitNoOverflow($valueUnit, $value, $overflowUnit); /** * Get the difference in a human readable format in the current locale from an other * instance given to now * * @param int|array $syntax if array passed, parameters will be extracted from it, the array may contains: * - 'syntax' entry (see below) * - 'short' entry (see below) * - 'parts' entry (see below) * - 'options' entry (see below) * - 'join' entry determines how to join multiple parts of the string * ` - if $join is a string, it's used as a joiner glue * ` - if $join is a callable/closure, it get the list of string and should return a string * ` - if $join is an array, the first item will be the default glue, and the second item * ` will be used instead of the glue for the last item * ` - if $join is true, it will be guessed from the locale ('list' translation file entry) * ` - if $join is missing, a space will be used as glue * if int passed, it add modifiers: * Possible values: * - CarbonInterface::DIFF_ABSOLUTE no modifiers * - CarbonInterface::DIFF_RELATIVE_TO_NOW add ago/from now modifier * - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier * Default value: CarbonInterface::DIFF_ABSOLUTE * @param bool $short displays short format of time units * @param int $parts maximum number of parts to display (default value: 1: single part) * @param int $options human diff options * * @return string */ public function ago($syntax = null, $short = false, $parts = 1, $options = null); /** * Modify the current instance to the average of a given instance (default now) and the current instance * (second-precision). * * @param \Carbon\Carbon|\DateTimeInterface|null $date * * @return static */ public function average($date = null); /** * Determines if the instance is between two others. * * The third argument allow you to specify if bounds are included or not (true by default) * but for when you including/excluding bounds may produce different results in your application, * we recommend to use the explicit methods ->betweenIncluded() or ->betweenExcluded() instead. * * @example * ``` * Carbon::parse('2018-07-25')->between('2018-07-14', '2018-08-01'); // true * Carbon::parse('2018-07-25')->between('2018-08-01', '2018-08-20'); // false * Carbon::parse('2018-07-25')->between('2018-07-25', '2018-08-01'); // true * Carbon::parse('2018-07-25')->between('2018-07-25', '2018-08-01', false); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date1 * @param \Carbon\Carbon|\DateTimeInterface|mixed $date2 * @param bool $equal Indicates if an equal to comparison should be done * * @return bool */ public function between($date1, $date2, $equal = true): bool; /** * Determines if the instance is between two others, bounds excluded. * * @example * ``` * Carbon::parse('2018-07-25')->betweenExcluded('2018-07-14', '2018-08-01'); // true * Carbon::parse('2018-07-25')->betweenExcluded('2018-08-01', '2018-08-20'); // false * Carbon::parse('2018-07-25')->betweenExcluded('2018-07-25', '2018-08-01'); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date1 * @param \Carbon\Carbon|\DateTimeInterface|mixed $date2 * * @return bool */ public function betweenExcluded($date1, $date2): bool; /** * Determines if the instance is between two others, bounds included. * * @example * ``` * Carbon::parse('2018-07-25')->betweenIncluded('2018-07-14', '2018-08-01'); // true * Carbon::parse('2018-07-25')->betweenIncluded('2018-08-01', '2018-08-20'); // false * Carbon::parse('2018-07-25')->betweenIncluded('2018-07-25', '2018-08-01'); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date1 * @param \Carbon\Carbon|\DateTimeInterface|mixed $date2 * * @return bool */ public function betweenIncluded($date1, $date2): bool; /** * Returns either day of week + time (e.g. "Last Friday at 3:30 PM") if reference time is within 7 days, * or a calendar date (e.g. "10/29/2017") otherwise. * * Language, date and time formats will change according to the current locale. * * @param Carbon|\DateTimeInterface|string|null $referenceTime * @param array $formats * * @return string */ public function calendar($referenceTime = null, array $formats = []); /** * Checks if the (date)time string is in a given format and valid to create a * new instance. * * @example * ``` * Carbon::canBeCreatedFromFormat('11:12:45', 'h:i:s'); // true * Carbon::canBeCreatedFromFormat('13:12:45', 'h:i:s'); // false * ``` * * @param string $date * @param string $format * * @return bool */ public static function canBeCreatedFromFormat($date, $format); /** * Return the Carbon instance passed through, a now instance in the same timezone * if null given or parse the input if string given. * * @param Carbon|\Carbon\CarbonPeriod|\Carbon\CarbonInterval|\DateInterval|\DatePeriod|DateTimeInterface|string|null $date * * @return static */ public function carbonize($date = null); /** * Cast the current instance into the given class. * * @param string $className The $className::instance() method will be called to cast the current object. * * @return DateTimeInterface */ public function cast(string $className); /** * Ceil the current instance second with given precision if specified. * * @param float|int|string|\DateInterval|null $precision * * @return CarbonInterface */ public function ceil($precision = 1); /** * Ceil the current instance at the given unit with given precision if specified. * * @param string $unit * @param float|int $precision * * @return CarbonInterface */ public function ceilUnit($unit, $precision = 1); /** * Ceil the current instance week. * * @param int $weekStartsAt optional start allow you to specify the day of week to use to start the week * * @return CarbonInterface */ public function ceilWeek($weekStartsAt = null); /** * Similar to native modify() method of DateTime but can handle more grammars. * * @example * ``` * echo Carbon::now()->change('next 2pm'); * ``` * * @link https://php.net/manual/en/datetime.modify.php * * @param string $modifier * * @return static */ public function change($modifier); /** * Cleanup properties attached to the public scope of DateTime when a dump of the date is requested. * foreach ($date as $_) {} * serializer($date) * var_export($date) * get_object_vars($date) */ public function cleanupDumpProperties(); /** * @alias copy * * Get a copy of the instance. * * @return static */ public function clone(); /** * Get the closest date from the instance (second-precision). * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date1 * @param \Carbon\Carbon|\DateTimeInterface|mixed $date2 * * @return static */ public function closest($date1, $date2); /** * Get a copy of the instance. * * @return static */ public function copy(); /** * Create a new Carbon instance from a specific date and time. * * If any of $year, $month or $day are set to null their now() values will * be used. * * If $hour is null it will be set to its now() value and the default * values for $minute and $second will be their now() values. * * If $hour is not null then the default values for $minute and $second * will be 0. * * @param int|null $year * @param int|null $month * @param int|null $day * @param int|null $hour * @param int|null $minute * @param int|null $second * @param DateTimeZone|string|null $tz * * @throws InvalidFormatException * * @return static|false */ public static function create($year = 0, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0, $tz = null); /** * Create a Carbon instance from just a date. The time portion is set to now. * * @param int|null $year * @param int|null $month * @param int|null $day * @param DateTimeZone|string|null $tz * * @throws InvalidFormatException * * @return static */ public static function createFromDate($year = null, $month = null, $day = null, $tz = null); /** * Create a Carbon instance from a specific format. * * @param string $format Datetime format * @param string $time * @param DateTimeZone|string|false|null $tz * * @throws InvalidFormatException * * @return static|false */ public static function createFromFormat($format, $time, $tz = null); /** * Create a Carbon instance from a specific ISO format (same replacements as ->isoFormat()). * * @param string $format Datetime format * @param string $time * @param DateTimeZone|string|false|null $tz optional timezone * @param string|null $locale locale to be used for LTS, LT, LL, LLL, etc. macro-formats (en by fault, unneeded if no such macro-format in use) * @param \Symfony\Component\Translation\TranslatorInterface $translator optional custom translator to use for macro-formats * * @throws InvalidFormatException * * @return static|false */ public static function createFromIsoFormat($format, $time, $tz = null, $locale = 'en', $translator = null); /** * Create a Carbon instance from a specific format and a string in a given language. * * @param string $format Datetime format * @param string $locale * @param string $time * @param DateTimeZone|string|false|null $tz * * @throws InvalidFormatException * * @return static|false */ public static function createFromLocaleFormat($format, $locale, $time, $tz = null); /** * Create a Carbon instance from a specific ISO format and a string in a given language. * * @param string $format Datetime ISO format * @param string $locale * @param string $time * @param DateTimeZone|string|false|null $tz * * @throws InvalidFormatException * * @return static|false */ public static function createFromLocaleIsoFormat($format, $locale, $time, $tz = null); /** * Create a Carbon instance from just a time. The date portion is set to today. * * @param int|null $hour * @param int|null $minute * @param int|null $second * @param DateTimeZone|string|null $tz * * @throws InvalidFormatException * * @return static */ public static function createFromTime($hour = 0, $minute = 0, $second = 0, $tz = null); /** * Create a Carbon instance from a time string. The date portion is set to today. * * @param string $time * @param DateTimeZone|string|null $tz * * @throws InvalidFormatException * * @return static */ public static function createFromTimeString($time, $tz = null); /** * Create a Carbon instance from a timestamp and set the timezone (use default one if not specified). * * Timestamp input can be given as int, float or a string containing one or more numbers. * * @param float|int|string $timestamp * @param \DateTimeZone|string|null $tz * * @return static */ public static function createFromTimestamp($timestamp, $tz = null); /** * Create a Carbon instance from a timestamp in milliseconds. * * Timestamp input can be given as int, float or a string containing one or more numbers. * * @param float|int|string $timestamp * @param \DateTimeZone|string|null $tz * * @return static */ public static function createFromTimestampMs($timestamp, $tz = null); /** * Create a Carbon instance from a timestamp in milliseconds. * * Timestamp input can be given as int, float or a string containing one or more numbers. * * @param float|int|string $timestamp * * @return static */ public static function createFromTimestampMsUTC($timestamp); /** * Create a Carbon instance from an timestamp keeping the timezone to UTC. * * Timestamp input can be given as int, float or a string containing one or more numbers. * * @param float|int|string $timestamp * * @return static */ public static function createFromTimestampUTC($timestamp); /** * Create a Carbon instance from just a date. The time portion is set to midnight. * * @param int|null $year * @param int|null $month * @param int|null $day * @param DateTimeZone|string|null $tz * * @throws InvalidFormatException * * @return static */ public static function createMidnightDate($year = null, $month = null, $day = null, $tz = null); /** * Create a new safe Carbon instance from a specific date and time. * * If any of $year, $month or $day are set to null their now() values will * be used. * * If $hour is null it will be set to its now() value and the default * values for $minute and $second will be their now() values. * * If $hour is not null then the default values for $minute and $second * will be 0. * * If one of the set values is not valid, an InvalidDateException * will be thrown. * * @param int|null $year * @param int|null $month * @param int|null $day * @param int|null $hour * @param int|null $minute * @param int|null $second * @param DateTimeZone|string|null $tz * * @throws InvalidDateException * * @return static|false */ public static function createSafe($year = null, $month = null, $day = null, $hour = null, $minute = null, $second = null, $tz = null); /** * Get/set the day of year. * * @param int|null $value new value for day of year if using as setter. * * @return static|int */ public function dayOfYear($value = null); /** * Get the difference as a CarbonInterval instance. * Return absolute interval (always positive) unless you pass false to the second argument. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return CarbonInterval */ public function diffAsCarbonInterval($date = null, $absolute = true); /** * Get the difference by the given interval using a filter closure. * * @param CarbonInterval $ci An interval to traverse by * @param Closure $callback * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffFiltered(CarbonInterval $ci, Closure $callback, $date = null, $absolute = true); /** * Get the difference in a human readable format in the current locale from current instance to an other * instance given (or now if null given). * * @example * ``` * echo Carbon::tomorrow()->diffForHumans() . "\n"; * echo Carbon::tomorrow()->diffForHumans(['parts' => 2]) . "\n"; * echo Carbon::tomorrow()->diffForHumans(['parts' => 3, 'join' => true]) . "\n"; * echo Carbon::tomorrow()->diffForHumans(Carbon::yesterday()) . "\n"; * echo Carbon::tomorrow()->diffForHumans(Carbon::yesterday(), ['short' => true]) . "\n"; * ``` * * @param Carbon|\DateTimeInterface|string|array|null $other if array passed, will be used as parameters array, see $syntax below; * if null passed, now will be used as comparison reference; * if any other type, it will be converted to date and used as reference. * @param int|array $syntax if array passed, parameters will be extracted from it, the array may contains: * - 'syntax' entry (see below) * - 'short' entry (see below) * - 'parts' entry (see below) * - 'options' entry (see below) * - 'join' entry determines how to join multiple parts of the string * ` - if $join is a string, it's used as a joiner glue * ` - if $join is a callable/closure, it get the list of string and should return a string * ` - if $join is an array, the first item will be the default glue, and the second item * ` will be used instead of the glue for the last item * ` - if $join is true, it will be guessed from the locale ('list' translation file entry) * ` - if $join is missing, a space will be used as glue * - 'other' entry (see above) * if int passed, it add modifiers: * Possible values: * - CarbonInterface::DIFF_ABSOLUTE no modifiers * - CarbonInterface::DIFF_RELATIVE_TO_NOW add ago/from now modifier * - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier * Default value: CarbonInterface::DIFF_ABSOLUTE * @param bool $short displays short format of time units * @param int $parts maximum number of parts to display (default value: 1: single unit) * @param int $options human diff options * * @return string */ public function diffForHumans($other = null, $syntax = null, $short = false, $parts = 1, $options = null); /** * Get the difference in days rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInDays($date = null, $absolute = true); /** * Get the difference in days using a filter closure rounded down. * * @param Closure $callback * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInDaysFiltered(Closure $callback, $date = null, $absolute = true); /** * Get the difference in hours rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInHours($date = null, $absolute = true); /** * Get the difference in hours using a filter closure rounded down. * * @param Closure $callback * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInHoursFiltered(Closure $callback, $date = null, $absolute = true); /** * Get the difference in microseconds. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInMicroseconds($date = null, $absolute = true); /** * Get the difference in milliseconds rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInMilliseconds($date = null, $absolute = true); /** * Get the difference in minutes rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInMinutes($date = null, $absolute = true); /** * Get the difference in months rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInMonths($date = null, $absolute = true); /** * Get the difference in quarters rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInQuarters($date = null, $absolute = true); /** * Get the difference in hours rounded down using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInRealHours($date = null, $absolute = true); /** * Get the difference in microseconds using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInRealMicroseconds($date = null, $absolute = true); /** * Get the difference in milliseconds rounded down using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInRealMilliseconds($date = null, $absolute = true); /** * Get the difference in minutes rounded down using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInRealMinutes($date = null, $absolute = true); /** * Get the difference in seconds using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInRealSeconds($date = null, $absolute = true); /** * Get the difference in seconds rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInSeconds($date = null, $absolute = true); /** * Get the difference in weekdays rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInWeekdays($date = null, $absolute = true); /** * Get the difference in weekend days using a filter rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInWeekendDays($date = null, $absolute = true); /** * Get the difference in weeks rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInWeeks($date = null, $absolute = true); /** * Get the difference in years * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInYears($date = null, $absolute = true); /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * @see settings * * @param int $humanDiffOption */ public static function disableHumanDiffOption($humanDiffOption); /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * @see settings * * @param int $humanDiffOption */ public static function enableHumanDiffOption($humanDiffOption); /** * Modify to end of current given unit. * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16.334455') * ->startOf('month') * ->endOf('week', Carbon::FRIDAY); * ``` * * @param string $unit * @param array $params * * @return static */ public function endOf($unit, ...$params); /** * Resets the date to end of the century and time to 23:59:59.999999 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfCentury(); * ``` * * @return static */ public function endOfCentury(); /** * Resets the time to 23:59:59.999999 end of day * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfDay(); * ``` * * @return static */ public function endOfDay(); /** * Resets the date to end of the decade and time to 23:59:59.999999 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfDecade(); * ``` * * @return static */ public function endOfDecade(); /** * Modify to end of current hour, minutes and seconds become 59 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfHour(); * ``` * * @return static */ public function endOfHour(); /** * Resets the date to end of the millennium and time to 23:59:59.999999 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfMillennium(); * ``` * * @return static */ public function endOfMillennium(); /** * Modify to end of current minute, seconds become 59 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfMinute(); * ``` * * @return static */ public function endOfMinute(); /** * Resets the date to end of the month and time to 23:59:59.999999 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfMonth(); * ``` * * @return static */ public function endOfMonth(); /** * Resets the date to end of the quarter and time to 23:59:59.999999 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfQuarter(); * ``` * * @return static */ public function endOfQuarter(); /** * Modify to end of current second, microseconds become 999999 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16.334455') * ->endOfSecond() * ->format('H:i:s.u'); * ``` * * @return static */ public function endOfSecond(); /** * Resets the date to end of week (defined in $weekEndsAt) and time to 23:59:59.999999 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfWeek() . "\n"; * echo Carbon::parse('2018-07-25 12:45:16')->locale('ar')->endOfWeek() . "\n"; * echo Carbon::parse('2018-07-25 12:45:16')->endOfWeek(Carbon::SATURDAY) . "\n"; * ``` * * @param int $weekEndsAt optional start allow you to specify the day of week to use to end the week * * @return static */ public function endOfWeek($weekEndsAt = null); /** * Resets the date to end of the year and time to 23:59:59.999999 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfYear(); * ``` * * @return static */ public function endOfYear(); /** * Determines if the instance is equal to another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->eq('2018-07-25 12:45:16'); // true * Carbon::parse('2018-07-25 12:45:16')->eq(Carbon::parse('2018-07-25 12:45:16')); // true * Carbon::parse('2018-07-25 12:45:16')->eq('2018-07-25 12:45:17'); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see equalTo() * * @return bool */ public function eq($date): bool; /** * Determines if the instance is equal to another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->equalTo('2018-07-25 12:45:16'); // true * Carbon::parse('2018-07-25 12:45:16')->equalTo(Carbon::parse('2018-07-25 12:45:16')); // true * Carbon::parse('2018-07-25 12:45:16')->equalTo('2018-07-25 12:45:17'); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @return bool */ public function equalTo($date): bool; /** * Set the current locale to the given, execute the passed function, reset the locale to previous one, * then return the result of the closure (or null if the closure was void). * * @param string $locale locale ex. en * @param callable $func * * @return mixed */ public static function executeWithLocale($locale, $func); /** * Get the farthest date from the instance (second-precision). * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date1 * @param \Carbon\Carbon|\DateTimeInterface|mixed $date2 * * @return static */ public function farthest($date1, $date2); /** * Modify to the first occurrence of a given day of the week * in the current month. If no dayOfWeek is provided, modify to the * first day of the current month. Use the supplied constants * to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param int|null $dayOfWeek * * @return static */ public function firstOfMonth($dayOfWeek = null); /** * Modify to the first occurrence of a given day of the week * in the current quarter. If no dayOfWeek is provided, modify to the * first day of the current quarter. Use the supplied constants * to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param int|null $dayOfWeek day of the week default null * * @return static */ public function firstOfQuarter($dayOfWeek = null); /** * Modify to the first occurrence of a given day of the week * in the current year. If no dayOfWeek is provided, modify to the * first day of the current year. Use the supplied constants * to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param int|null $dayOfWeek day of the week default null * * @return static */ public function firstOfYear($dayOfWeek = null); /** * Get the difference in days as float (microsecond-precision). * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInDays($date = null, $absolute = true); /** * Get the difference in hours as float (microsecond-precision). * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInHours($date = null, $absolute = true); /** * Get the difference in minutes as float (microsecond-precision). * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInMinutes($date = null, $absolute = true); /** * Get the difference in months as float (microsecond-precision). * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInMonths($date = null, $absolute = true); /** * Get the difference in days as float (microsecond-precision). * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInRealDays($date = null, $absolute = true); /** * Get the difference in hours as float (microsecond-precision) using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInRealHours($date = null, $absolute = true); /** * Get the difference in minutes as float (microsecond-precision) using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInRealMinutes($date = null, $absolute = true); /** * Get the difference in months as float (microsecond-precision) using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInRealMonths($date = null, $absolute = true); /** * Get the difference in seconds as float (microsecond-precision) using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInRealSeconds($date = null, $absolute = true); /** * Get the difference in weeks as float (microsecond-precision). * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInRealWeeks($date = null, $absolute = true); /** * Get the difference in year as float (microsecond-precision) using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInRealYears($date = null, $absolute = true); /** * Get the difference in seconds as float (microsecond-precision). * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInSeconds($date = null, $absolute = true); /** * Get the difference in weeks as float (microsecond-precision). * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInWeeks($date = null, $absolute = true); /** * Get the difference in year as float (microsecond-precision). * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInYears($date = null, $absolute = true); /** * Round the current instance second with given precision if specified. * * @param float|int|string|\DateInterval|null $precision * * @return CarbonInterface */ public function floor($precision = 1); /** * Truncate the current instance at the given unit with given precision if specified. * * @param string $unit * @param float|int $precision * * @return CarbonInterface */ public function floorUnit($unit, $precision = 1); /** * Truncate the current instance week. * * @param int $weekStartsAt optional start allow you to specify the day of week to use to start the week * * @return CarbonInterface */ public function floorWeek($weekStartsAt = null); /** * Format the instance with the current locale. You can set the current * locale using setlocale() http://php.net/setlocale. * * @param string $format * * @return string */ public function formatLocalized($format); /** * @alias diffForHumans * * Get the difference in a human readable format in the current locale from current instance to an other * instance given (or now if null given). * * @param Carbon|\DateTimeInterface|string|array|null $other if array passed, will be used as parameters array, see $syntax below; * if null passed, now will be used as comparison reference; * if any other type, it will be converted to date and used as reference. * @param int|array $syntax if array passed, parameters will be extracted from it, the array may contains: * - 'syntax' entry (see below) * - 'short' entry (see below) * - 'parts' entry (see below) * - 'options' entry (see below) * - 'join' entry determines how to join multiple parts of the string * ` - if $join is a string, it's used as a joiner glue * ` - if $join is a callable/closure, it get the list of string and should return a string * ` - if $join is an array, the first item will be the default glue, and the second item * ` will be used instead of the glue for the last item * ` - if $join is true, it will be guessed from the locale ('list' translation file entry) * ` - if $join is missing, a space will be used as glue * - 'other' entry (see above) * if int passed, it add modifiers: * Possible values: * - CarbonInterface::DIFF_ABSOLUTE no modifiers * - CarbonInterface::DIFF_RELATIVE_TO_NOW add ago/from now modifier * - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier * Default value: CarbonInterface::DIFF_ABSOLUTE * @param bool $short displays short format of time units * @param int $parts maximum number of parts to display (default value: 1: single unit) * @param int $options human diff options * * @return string */ public function from($other = null, $syntax = null, $short = false, $parts = 1, $options = null); /** * Get the difference in a human readable format in the current locale from current * instance to now. * * @param int|array $syntax if array passed, parameters will be extracted from it, the array may contains: * - 'syntax' entry (see below) * - 'short' entry (see below) * - 'parts' entry (see below) * - 'options' entry (see below) * - 'join' entry determines how to join multiple parts of the string * ` - if $join is a string, it's used as a joiner glue * ` - if $join is a callable/closure, it get the list of string and should return a string * ` - if $join is an array, the first item will be the default glue, and the second item * ` will be used instead of the glue for the last item * ` - if $join is true, it will be guessed from the locale ('list' translation file entry) * ` - if $join is missing, a space will be used as glue * if int passed, it add modifiers: * Possible values: * - CarbonInterface::DIFF_ABSOLUTE no modifiers * - CarbonInterface::DIFF_RELATIVE_TO_NOW add ago/from now modifier * - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier * Default value: CarbonInterface::DIFF_ABSOLUTE * @param bool $short displays short format of time units * @param int $parts maximum number of parts to display (default value: 1: single unit) * @param int $options human diff options * * @return string */ public function fromNow($syntax = null, $short = false, $parts = 1, $options = null); /** * Create an instance from a serialized string. * * @param string $value * * @throws InvalidFormatException * * @return static */ public static function fromSerialized($value); /** * Register a custom macro. * * @param object|callable $macro * @param int $priority marco with higher priority is tried first * * @return void */ public static function genericMacro($macro, $priority = 0); /** * Get a part of the Carbon object * * @param string $name * * @throws UnknownGetterException * * @return string|int|bool|DateTimeZone|null */ public function get($name); /** * Returns the alternative number for a given date property if available in the current locale. * * @param string $key date property * * @return string */ public function getAltNumber(string $key): string; /** * Returns the list of internally available locales and already loaded custom locales. * (It will ignore custom translator dynamic loading.) * * @return array */ public static function getAvailableLocales(); /** * Returns list of Language object for each available locale. This object allow you to get the ISO name, native * name, region and variant of the locale. * * @return Language[] */ public static function getAvailableLocalesInfo(); /** * Returns list of calendar formats for ISO formatting. * * @param string|null $locale current locale used if null * * @return array */ public function getCalendarFormats($locale = null); /** * Get the days of the week * * @return array */ public static function getDays(); /** * Get the fallback locale. * * @see https://symfony.com/doc/current/components/translation.html#fallback-locales * * @return string|null */ public static function getFallbackLocale(); /** * List of replacements from date() format to isoFormat(). * * @return array */ public static function getFormatsToIsoReplacements(); /** * Return default humanDiff() options (merged flags as integer). * * @return int */ public static function getHumanDiffOptions(); /** * Returns list of locale formats for ISO formatting. * * @param string|null $locale current locale used if null * * @return array */ public function getIsoFormats($locale = null); /** * Returns list of locale units for ISO formatting. * * @return array */ public static function getIsoUnits(); /** * {@inheritdoc} */ public static function getLastErrors(); /** * Get the raw callable macro registered globally or locally for a given name. * * @param string $name * * @return callable|null */ public function getLocalMacro($name); /** * Get the translator of the current instance or the default if none set. * * @return \Symfony\Component\Translation\TranslatorInterface */ public function getLocalTranslator(); /** * Get the current translator locale. * * @return string */ public static function getLocale(); /** * Get the raw callable macro registered globally for a given name. * * @param string $name * * @return callable|null */ public static function getMacro($name); /** * get midday/noon hour * * @return int */ public static function getMidDayAt(); /** * Returns the offset hour and minute formatted with +/- and a given separator (":" by default). * For example, if the time zone is 9 hours 30 minutes, you'll get "+09:30", with "@@" as first * argument, "+09@@30", with "" as first argument, "+0930". Negative offset will return something * like "-12:00". * * @param string $separator string to place between hours and minutes (":" by default) * * @return string */ public function getOffsetString($separator = ':'); /** * Returns a unit of the instance padded with 0 by default or any other string if specified. * * @param string $unit Carbon unit name * @param int $length Length of the output (2 by default) * @param string $padString String to use for padding ("0" by default) * @param int $padType Side(s) to pad (STR_PAD_LEFT by default) * * @return string */ public function getPaddedUnit($unit, $length = 2, $padString = '0', $padType = 0); /** * Returns a timestamp rounded with the given precision (6 by default). * * @example getPreciseTimestamp() 1532087464437474 (microsecond maximum precision) * @example getPreciseTimestamp(6) 1532087464437474 * @example getPreciseTimestamp(5) 153208746443747 (1/100000 second precision) * @example getPreciseTimestamp(4) 15320874644375 (1/10000 second precision) * @example getPreciseTimestamp(3) 1532087464437 (millisecond precision) * @example getPreciseTimestamp(2) 153208746444 (1/100 second precision) * @example getPreciseTimestamp(1) 15320874644 (1/10 second precision) * @example getPreciseTimestamp(0) 1532087464 (second precision) * @example getPreciseTimestamp(-1) 153208746 (10 second precision) * @example getPreciseTimestamp(-2) 15320875 (100 second precision) * * @param int $precision * * @return float */ public function getPreciseTimestamp($precision = 6); /** * Returns current local settings. * * @return array */ public function getSettings(); /** * Get the Carbon instance (real or mock) to be returned when a "now" * instance is created. * * @return Closure|static the current instance used for testing */ public static function getTestNow(); /** * Return a format from H:i to H:i:s.u according to given unit precision. * * @param string $unitPrecision "minute", "second", "millisecond" or "microsecond" * * @return string */ public static function getTimeFormatByPrecision($unitPrecision); /** * Get the translation of the current week day name (with context for languages with multiple forms). * * @param string|null $context whole format string * @param string $keySuffix "", "_short" or "_min" * @param string|null $defaultValue default value if translation missing * * @return string */ public function getTranslatedDayName($context = null, $keySuffix = '', $defaultValue = null); /** * Get the translation of the current abbreviated week day name (with context for languages with multiple forms). * * @param string|null $context whole format string * * @return string */ public function getTranslatedMinDayName($context = null); /** * Get the translation of the current month day name (with context for languages with multiple forms). * * @param string|null $context whole format string * @param string $keySuffix "" or "_short" * @param string|null $defaultValue default value if translation missing * * @return string */ public function getTranslatedMonthName($context = null, $keySuffix = '', $defaultValue = null); /** * Get the translation of the current short week day name (with context for languages with multiple forms). * * @param string|null $context whole format string * * @return string */ public function getTranslatedShortDayName($context = null); /** * Get the translation of the current short month day name (with context for languages with multiple forms). * * @param string|null $context whole format string * * @return string */ public function getTranslatedShortMonthName($context = null); /** * Returns raw translation message for a given key. * * @param string $key key to find * @param string|null $locale current locale used if null * @param string|null $default default value if translation returns the key * @param \Symfony\Component\Translation\TranslatorInterface $translator an optional translator to use * * @return string */ public function getTranslationMessage(string $key, string $locale = null, string $default = null, $translator = null); /** * Returns raw translation message for a given key. * * @param \Symfony\Component\Translation\TranslatorInterface $translator the translator to use * @param string $key key to find * @param string|null $locale current locale used if null * @param string|null $default default value if translation returns the key * * @return string */ public static function getTranslationMessageWith($translator, string $key, string $locale = null, string $default = null); /** * Get the default translator instance in use. * * @return \Symfony\Component\Translation\TranslatorInterface */ public static function getTranslator(); /** * Get the last day of week * * @return int */ public static function getWeekEndsAt(); /** * Get the first day of week * * @return int */ public static function getWeekStartsAt(); /** * Get weekend days * * @return array */ public static function getWeekendDays(); /** * Determines if the instance is greater (after) than another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->greaterThan('2018-07-25 12:45:15'); // true * Carbon::parse('2018-07-25 12:45:16')->greaterThan('2018-07-25 12:45:16'); // false * Carbon::parse('2018-07-25 12:45:16')->greaterThan('2018-07-25 12:45:17'); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @return bool */ public function greaterThan($date): bool; /** * Determines if the instance is greater (after) than or equal to another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->greaterThanOrEqualTo('2018-07-25 12:45:15'); // true * Carbon::parse('2018-07-25 12:45:16')->greaterThanOrEqualTo('2018-07-25 12:45:16'); // true * Carbon::parse('2018-07-25 12:45:16')->greaterThanOrEqualTo('2018-07-25 12:45:17'); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @return bool */ public function greaterThanOrEqualTo($date): bool; /** * Determines if the instance is greater (after) than another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->gt('2018-07-25 12:45:15'); // true * Carbon::parse('2018-07-25 12:45:16')->gt('2018-07-25 12:45:16'); // false * Carbon::parse('2018-07-25 12:45:16')->gt('2018-07-25 12:45:17'); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see greaterThan() * * @return bool */ public function gt($date): bool; /** * Determines if the instance is greater (after) than or equal to another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->gte('2018-07-25 12:45:15'); // true * Carbon::parse('2018-07-25 12:45:16')->gte('2018-07-25 12:45:16'); // true * Carbon::parse('2018-07-25 12:45:16')->gte('2018-07-25 12:45:17'); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see greaterThanOrEqualTo() * * @return bool */ public function gte($date): bool; /** * Checks if the (date)time string is in a given format. * * @example * ``` * Carbon::hasFormat('11:12:45', 'h:i:s'); // true * Carbon::hasFormat('13:12:45', 'h:i:s'); // false * ``` * * @param string $date * @param string $format * * @return bool */ public static function hasFormat($date, $format); /** * Checks if the (date)time string is in a given format. * * @example * ``` * Carbon::hasFormatWithModifiers('31/08/2015', 'd#m#Y'); // true * Carbon::hasFormatWithModifiers('31/08/2015', 'm#d#Y'); // false * ``` * * @param string $date * @param string $format * * @return bool */ public static function hasFormatWithModifiers($date, $format): bool; /** * Checks if macro is registered globally or locally. * * @param string $name * * @return bool */ public function hasLocalMacro($name); /** * Return true if the current instance has its own translator. * * @return bool */ public function hasLocalTranslator(); /** * Checks if macro is registered globally. * * @param string $name * * @return bool */ public static function hasMacro($name); /** * Determine if a time string will produce a relative date. * * @param string $time * * @return bool true if time match a relative date, false if absolute or invalid time string */ public static function hasRelativeKeywords($time); /** * Determine if there is a valid test instance set. A valid test instance * is anything that is not null. * * @return bool true if there is a test instance, otherwise false */ public static function hasTestNow(); /** * Create a Carbon instance from a DateTime one. * * @param DateTimeInterface $date * * @return static */ public static function instance($date); /** * Returns true if the current date matches the given string. * * @example * ``` * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('2019')); // true * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('2018')); // false * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('2019-06')); // true * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('06-02')); // true * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('2019-06-02')); // true * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('Sunday')); // true * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('June')); // true * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('12:23')); // true * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('12:23:45')); // true * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('12:23:00')); // false * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('12h')); // true * var_dump(Carbon::parse('2019-06-02 15:23:45')->is('3pm')); // true * var_dump(Carbon::parse('2019-06-02 15:23:45')->is('3am')); // false * ``` * * @param string $tester day name, month name, hour, date, etc. as string * * @return bool */ public function is(string $tester); /** * Determines if the instance is greater (after) than another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->isAfter('2018-07-25 12:45:15'); // true * Carbon::parse('2018-07-25 12:45:16')->isAfter('2018-07-25 12:45:16'); // false * Carbon::parse('2018-07-25 12:45:16')->isAfter('2018-07-25 12:45:17'); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see greaterThan() * * @return bool */ public function isAfter($date): bool; /** * Determines if the instance is less (before) than another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->isBefore('2018-07-25 12:45:15'); // false * Carbon::parse('2018-07-25 12:45:16')->isBefore('2018-07-25 12:45:16'); // false * Carbon::parse('2018-07-25 12:45:16')->isBefore('2018-07-25 12:45:17'); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see lessThan() * * @return bool */ public function isBefore($date): bool; /** * Determines if the instance is between two others * * @example * ``` * Carbon::parse('2018-07-25')->isBetween('2018-07-14', '2018-08-01'); // true * Carbon::parse('2018-07-25')->isBetween('2018-08-01', '2018-08-20'); // false * Carbon::parse('2018-07-25')->isBetween('2018-07-25', '2018-08-01'); // true * Carbon::parse('2018-07-25')->isBetween('2018-07-25', '2018-08-01', false); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date1 * @param \Carbon\Carbon|\DateTimeInterface|mixed $date2 * @param bool $equal Indicates if an equal to comparison should be done * * @return bool */ public function isBetween($date1, $date2, $equal = true): bool; /** * Check if its the birthday. Compares the date/month values of the two dates. * * @example * ``` * Carbon::now()->subYears(5)->isBirthday(); // true * Carbon::now()->subYears(5)->subDay()->isBirthday(); // false * Carbon::parse('2019-06-05')->isBirthday(Carbon::parse('2001-06-05')); // true * Carbon::parse('2019-06-05')->isBirthday(Carbon::parse('2001-06-06')); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|null $date The instance to compare with or null to use current day. * * @return bool */ public function isBirthday($date = null); /** * Determines if the instance is in the current unit given. * * @example * ``` * Carbon::now()->isCurrentUnit('hour'); // true * Carbon::now()->subHours(2)->isCurrentUnit('hour'); // false * ``` * * @param string $unit The unit to test. * * @throws BadMethodCallException * * @return bool */ public function isCurrentUnit($unit); /** * Checks if this day is a specific day of the week. * * @example * ``` * Carbon::parse('2019-07-17')->isDayOfWeek(Carbon::WEDNESDAY); // true * Carbon::parse('2019-07-17')->isDayOfWeek(Carbon::FRIDAY); // false * Carbon::parse('2019-07-17')->isDayOfWeek('Wednesday'); // true * Carbon::parse('2019-07-17')->isDayOfWeek('Friday'); // false * ``` * * @param int $dayOfWeek * * @return bool */ public function isDayOfWeek($dayOfWeek); /** * Check if the instance is end of day. * * @example * ``` * Carbon::parse('2019-02-28 23:59:59.999999')->isEndOfDay(); // true * Carbon::parse('2019-02-28 23:59:59.123456')->isEndOfDay(); // true * Carbon::parse('2019-02-28 23:59:59')->isEndOfDay(); // true * Carbon::parse('2019-02-28 23:59:58.999999')->isEndOfDay(); // false * Carbon::parse('2019-02-28 23:59:59.999999')->isEndOfDay(true); // true * Carbon::parse('2019-02-28 23:59:59.123456')->isEndOfDay(true); // false * Carbon::parse('2019-02-28 23:59:59')->isEndOfDay(true); // false * ``` * * @param bool $checkMicroseconds check time at microseconds precision * * @return bool */ public function isEndOfDay($checkMicroseconds = false); /** * Determines if the instance is in the future, ie. greater (after) than now. * * @example * ``` * Carbon::now()->addHours(5)->isFuture(); // true * Carbon::now()->subHours(5)->isFuture(); // false * ``` * * @return bool */ public function isFuture(); /** * Returns true if the current class/instance is immutable. * * @return bool */ public static function isImmutable(); /** * Check if today is the last day of the Month * * @example * ``` * Carbon::parse('2019-02-28')->isLastOfMonth(); // true * Carbon::parse('2019-03-28')->isLastOfMonth(); // false * Carbon::parse('2019-03-30')->isLastOfMonth(); // false * Carbon::parse('2019-03-31')->isLastOfMonth(); // true * Carbon::parse('2019-04-30')->isLastOfMonth(); // true * ``` * * @return bool */ public function isLastOfMonth(); /** * Determines if the instance is a leap year. * * @example * ``` * Carbon::parse('2020-01-01')->isLeapYear(); // true * Carbon::parse('2019-01-01')->isLeapYear(); // false * ``` * * @return bool */ public function isLeapYear(); /** * Determines if the instance is a long year * * @example * ``` * Carbon::parse('2015-01-01')->isLongYear(); // true * Carbon::parse('2016-01-01')->isLongYear(); // false * ``` * * @see https://en.wikipedia.org/wiki/ISO_8601#Week_dates * * @return bool */ public function isLongYear(); /** * Check if the instance is midday. * * @example * ``` * Carbon::parse('2019-02-28 11:59:59.999999')->isMidday(); // false * Carbon::parse('2019-02-28 12:00:00')->isMidday(); // true * Carbon::parse('2019-02-28 12:00:00.999999')->isMidday(); // true * Carbon::parse('2019-02-28 12:00:01')->isMidday(); // false * ``` * * @return bool */ public function isMidday(); /** * Check if the instance is start of day / midnight. * * @example * ``` * Carbon::parse('2019-02-28 00:00:00')->isMidnight(); // true * Carbon::parse('2019-02-28 00:00:00.999999')->isMidnight(); // true * Carbon::parse('2019-02-28 00:00:01')->isMidnight(); // false * ``` * * @return bool */ public function isMidnight(); /** * Returns true if a property can be changed via setter. * * @param string $unit * * @return bool */ public static function isModifiableUnit($unit); /** * Returns true if the current class/instance is mutable. * * @return bool */ public static function isMutable(); /** * Determines if the instance is in the past, ie. less (before) than now. * * @example * ``` * Carbon::now()->subHours(5)->isPast(); // true * Carbon::now()->addHours(5)->isPast(); // false * ``` * * @return bool */ public function isPast(); /** * Compares the formatted values of the two dates. * * @example * ``` * Carbon::parse('2019-06-13')->isSameAs('Y-d', Carbon::parse('2019-12-13')); // true * Carbon::parse('2019-06-13')->isSameAs('Y-d', Carbon::parse('2019-06-14')); // false * ``` * * @param string $format date formats to compare. * @param \Carbon\Carbon|\DateTimeInterface|string|null $date instance to compare with or null to use current day. * * @return bool */ public function isSameAs($format, $date = null); /** * Checks if the passed in date is in the same month as the instanceĀ“s month. * * @example * ``` * Carbon::parse('2019-01-12')->isSameMonth(Carbon::parse('2019-01-01')); // true * Carbon::parse('2019-01-12')->isSameMonth(Carbon::parse('2019-02-01')); // false * Carbon::parse('2019-01-12')->isSameMonth(Carbon::parse('2018-01-01')); // false * Carbon::parse('2019-01-12')->isSameMonth(Carbon::parse('2018-01-01'), false); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|null $date The instance to compare with or null to use the current date. * @param bool $ofSameYear Check if it is the same month in the same year. * * @return bool */ public function isSameMonth($date = null, $ofSameYear = true); /** * Checks if the passed in date is in the same quarter as the instance quarter (and year if needed). * * @example * ``` * Carbon::parse('2019-01-12')->isSameQuarter(Carbon::parse('2019-03-01')); // true * Carbon::parse('2019-01-12')->isSameQuarter(Carbon::parse('2019-04-01')); // false * Carbon::parse('2019-01-12')->isSameQuarter(Carbon::parse('2018-03-01')); // false * Carbon::parse('2019-01-12')->isSameQuarter(Carbon::parse('2018-03-01'), false); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|string|null $date The instance to compare with or null to use current day. * @param bool $ofSameYear Check if it is the same month in the same year. * * @return bool */ public function isSameQuarter($date = null, $ofSameYear = true); /** * Determines if the instance is in the current unit given. * * @example * ``` * Carbon::parse('2019-01-13')->isSameUnit('year', Carbon::parse('2019-12-25')); // true * Carbon::parse('2018-12-13')->isSameUnit('year', Carbon::parse('2019-12-25')); // false * ``` * * @param string $unit singular unit string * @param \Carbon\Carbon|\DateTimeInterface|null $date instance to compare with or null to use current day. * * @throws BadComparisonUnitException * * @return bool */ public function isSameUnit($unit, $date = null); /** * Check if the instance is start of day / midnight. * * @example * ``` * Carbon::parse('2019-02-28 00:00:00')->isStartOfDay(); // true * Carbon::parse('2019-02-28 00:00:00.999999')->isStartOfDay(); // true * Carbon::parse('2019-02-28 00:00:01')->isStartOfDay(); // false * Carbon::parse('2019-02-28 00:00:00.000000')->isStartOfDay(true); // true * Carbon::parse('2019-02-28 00:00:00.000012')->isStartOfDay(true); // false * ``` * * @param bool $checkMicroseconds check time at microseconds precision * * @return bool */ public function isStartOfDay($checkMicroseconds = false); /** * Returns true if the strict mode is globally in use, false else. * (It can be overridden in specific instances.) * * @return bool */ public static function isStrictModeEnabled(); /** * Determines if the instance is today. * * @example * ``` * Carbon::today()->isToday(); // true * Carbon::tomorrow()->isToday(); // false * ``` * * @return bool */ public function isToday(); /** * Determines if the instance is tomorrow. * * @example * ``` * Carbon::tomorrow()->isTomorrow(); // true * Carbon::yesterday()->isTomorrow(); // false * ``` * * @return bool */ public function isTomorrow(); /** * Determines if the instance is a weekday. * * @example * ``` * Carbon::parse('2019-07-14')->isWeekday(); // false * Carbon::parse('2019-07-15')->isWeekday(); // true * ``` * * @return bool */ public function isWeekday(); /** * Determines if the instance is a weekend day. * * @example * ``` * Carbon::parse('2019-07-14')->isWeekend(); // true * Carbon::parse('2019-07-15')->isWeekend(); // false * ``` * * @return bool */ public function isWeekend(); /** * Determines if the instance is yesterday. * * @example * ``` * Carbon::yesterday()->isYesterday(); // true * Carbon::tomorrow()->isYesterday(); // false * ``` * * @return bool */ public function isYesterday(); /** * Format in the current language using ISO replacement patterns. * * @param string $format * @param string|null $originalFormat provide context if a chunk has been passed alone * * @return string */ public function isoFormat(string $format, string $originalFormat = null): string; /** * Get/set the week number using given first day of week and first * day of year included in the first week. Or use ISO format if no settings * given. * * @param int|null $week * @param int|null $dayOfWeek * @param int|null $dayOfYear * * @return int|static */ public function isoWeek($week = null, $dayOfWeek = null, $dayOfYear = null); /** * Set/get the week number of year using given first day of week and first * day of year included in the first week. Or use ISO format if no settings * given. * * @param int|null $year if null, act as a getter, if not null, set the year and return current instance. * @param int|null $dayOfWeek first date of week from 0 (Sunday) to 6 (Saturday) * @param int|null $dayOfYear first day of year included in the week #1 * * @return int|static */ public function isoWeekYear($year = null, $dayOfWeek = null, $dayOfYear = null); /** * Get/set the ISO weekday from 1 (Monday) to 7 (Sunday). * * @param int|null $value new value for weekday if using as setter. * * @return static|int */ public function isoWeekday($value = null); /** * Get the number of weeks of the current week-year using given first day of week and first * day of year included in the first week. Or use ISO format if no settings * given. * * @param int|null $dayOfWeek first date of week from 0 (Sunday) to 6 (Saturday) * @param int|null $dayOfYear first day of year included in the week #1 * * @return int */ public function isoWeeksInYear($dayOfWeek = null, $dayOfYear = null); /** * Prepare the object for JSON serialization. * * @return array|string */ public function jsonSerialize(); /** * Modify to the last occurrence of a given day of the week * in the current month. If no dayOfWeek is provided, modify to the * last day of the current month. Use the supplied constants * to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param int|null $dayOfWeek * * @return static */ public function lastOfMonth($dayOfWeek = null); /** * Modify to the last occurrence of a given day of the week * in the current quarter. If no dayOfWeek is provided, modify to the * last day of the current quarter. Use the supplied constants * to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param int|null $dayOfWeek day of the week default null * * @return static */ public function lastOfQuarter($dayOfWeek = null); /** * Modify to the last occurrence of a given day of the week * in the current year. If no dayOfWeek is provided, modify to the * last day of the current year. Use the supplied constants * to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param int|null $dayOfWeek day of the week default null * * @return static */ public function lastOfYear($dayOfWeek = null); /** * Determines if the instance is less (before) than another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->lessThan('2018-07-25 12:45:15'); // false * Carbon::parse('2018-07-25 12:45:16')->lessThan('2018-07-25 12:45:16'); // false * Carbon::parse('2018-07-25 12:45:16')->lessThan('2018-07-25 12:45:17'); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @return bool */ public function lessThan($date): bool; /** * Determines if the instance is less (before) or equal to another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->lessThanOrEqualTo('2018-07-25 12:45:15'); // false * Carbon::parse('2018-07-25 12:45:16')->lessThanOrEqualTo('2018-07-25 12:45:16'); // true * Carbon::parse('2018-07-25 12:45:16')->lessThanOrEqualTo('2018-07-25 12:45:17'); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @return bool */ public function lessThanOrEqualTo($date): bool; /** * Get/set the locale for the current instance. * * @param string|null $locale * @param string ...$fallbackLocales * * @return $this|string */ public function locale(string $locale = null, ...$fallbackLocales); /** * Returns true if the given locale is internally supported and has words for 1-day diff (just now, yesterday, tomorrow). * Support is considered enabled if the 3 words are translated in the given locale. * * @param string $locale locale ex. en * * @return bool */ public static function localeHasDiffOneDayWords($locale); /** * Returns true if the given locale is internally supported and has diff syntax support (ago, from now, before, after). * Support is considered enabled if the 4 sentences are translated in the given locale. * * @param string $locale locale ex. en * * @return bool */ public static function localeHasDiffSyntax($locale); /** * Returns true if the given locale is internally supported and has words for 2-days diff (before yesterday, after tomorrow). * Support is considered enabled if the 2 words are translated in the given locale. * * @param string $locale locale ex. en * * @return bool */ public static function localeHasDiffTwoDayWords($locale); /** * Returns true if the given locale is internally supported and has period syntax support (X times, every X, from X, to X). * Support is considered enabled if the 4 sentences are translated in the given locale. * * @param string $locale locale ex. en * * @return bool */ public static function localeHasPeriodSyntax($locale); /** * Returns true if the given locale is internally supported and has short-units support. * Support is considered enabled if either year, day or hour has a short variant translated. * * @param string $locale locale ex. en * * @return bool */ public static function localeHasShortUnits($locale); /** * Determines if the instance is less (before) than another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->lt('2018-07-25 12:45:15'); // false * Carbon::parse('2018-07-25 12:45:16')->lt('2018-07-25 12:45:16'); // false * Carbon::parse('2018-07-25 12:45:16')->lt('2018-07-25 12:45:17'); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see lessThan() * * @return bool */ public function lt($date): bool; /** * Determines if the instance is less (before) or equal to another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->lte('2018-07-25 12:45:15'); // false * Carbon::parse('2018-07-25 12:45:16')->lte('2018-07-25 12:45:16'); // true * Carbon::parse('2018-07-25 12:45:16')->lte('2018-07-25 12:45:17'); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see lessThanOrEqualTo() * * @return bool */ public function lte($date): bool; /** * Register a custom macro. * * @example * ``` * $userSettings = [ * 'locale' => 'pt', * 'timezone' => 'America/Sao_Paulo', * ]; * Carbon::macro('userFormat', function () use ($userSettings) { * return $this->copy()->locale($userSettings['locale'])->tz($userSettings['timezone'])->calendar(); * }); * echo Carbon::yesterday()->hours(11)->userFormat(); * ``` * * @param string $name * @param object|callable $macro * * @return void */ public static function macro($name, $macro); /** * Make a Carbon instance from given variable if possible. * * Always return a new instance. Parse only strings and only these likely to be dates (skip intervals * and recurrences). Throw an exception for invalid format, but otherwise return null. * * @param mixed $var * * @throws InvalidFormatException * * @return static|null */ public static function make($var); /** * Get the maximum instance between a given instance (default now) and the current instance. * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @return static */ public function max($date = null); /** * Create a Carbon instance for the greatest supported date. * * @return static */ public static function maxValue(); /** * Get the maximum instance between a given instance (default now) and the current instance. * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see max() * * @return static */ public function maximum($date = null); /** * Return the meridiem of the current time in the current locale. * * @param bool $isLower if true, returns lowercase variant if available in the current locale. * * @return string */ public function meridiem(bool $isLower = false): string; /** * Modify to midday, default to self::$midDayAt * * @return static */ public function midDay(); /** * Get the minimum instance between a given instance (default now) and the current instance. * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @return static */ public function min($date = null); /** * Create a Carbon instance for the lowest supported date. * * @return static */ public static function minValue(); /** * Get the minimum instance between a given instance (default now) and the current instance. * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see min() * * @return static */ public function minimum($date = null); /** * Mix another object into the class. * * @example * ``` * Carbon::mixin(new class { * public function addMoon() { * return function () { * return $this->addDays(30); * }; * } * public function subMoon() { * return function () { * return $this->subDays(30); * }; * } * }); * $fullMoon = Carbon::create('2018-12-22'); * $nextFullMoon = $fullMoon->addMoon(); * $blackMoon = Carbon::create('2019-01-06'); * $previousBlackMoon = $blackMoon->subMoon(); * echo "$nextFullMoon\n"; * echo "$previousBlackMoon\n"; * ``` * * @param object|string $mixin * * @throws ReflectionException * * @return void */ public static function mixin($mixin); /** * Calls \DateTime::modify if mutable or \DateTimeImmutable::modify else. * * @see https://php.net/manual/en/datetime.modify.php */ public function modify($modify); /** * Determines if the instance is not equal to another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->ne('2018-07-25 12:45:16'); // false * Carbon::parse('2018-07-25 12:45:16')->ne(Carbon::parse('2018-07-25 12:45:16')); // false * Carbon::parse('2018-07-25 12:45:16')->ne('2018-07-25 12:45:17'); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see notEqualTo() * * @return bool */ public function ne($date): bool; /** * Modify to the next occurrence of a given modifier such as a day of * the week. If no modifier is provided, modify to the next occurrence * of the current day of the week. Use the supplied constants * to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param string|int|null $modifier * * @return static */ public function next($modifier = null); /** * Go forward to the next weekday. * * @return static */ public function nextWeekday(); /** * Go forward to the next weekend day. * * @return static */ public function nextWeekendDay(); /** * Determines if the instance is not equal to another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->notEqualTo('2018-07-25 12:45:16'); // false * Carbon::parse('2018-07-25 12:45:16')->notEqualTo(Carbon::parse('2018-07-25 12:45:16')); // false * Carbon::parse('2018-07-25 12:45:16')->notEqualTo('2018-07-25 12:45:17'); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @return bool */ public function notEqualTo($date): bool; /** * Get a Carbon instance for the current date and time. * * @param DateTimeZone|string|null $tz * * @return static */ public static function now($tz = null); /** * Returns a present instance in the same timezone. * * @return static */ public function nowWithSameTz(); /** * Modify to the given occurrence of a given day of the week * in the current month. If the calculated occurrence is outside the scope * of the current month, then return false and no modifications are made. * Use the supplied constants to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param int $nth * @param int $dayOfWeek * * @return mixed */ public function nthOfMonth($nth, $dayOfWeek); /** * Modify to the given occurrence of a given day of the week * in the current quarter. If the calculated occurrence is outside the scope * of the current quarter, then return false and no modifications are made. * Use the supplied constants to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param int $nth * @param int $dayOfWeek * * @return mixed */ public function nthOfQuarter($nth, $dayOfWeek); /** * Modify to the given occurrence of a given day of the week * in the current year. If the calculated occurrence is outside the scope * of the current year, then return false and no modifications are made. * Use the supplied constants to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param int $nth * @param int $dayOfWeek * * @return mixed */ public function nthOfYear($nth, $dayOfWeek); /** * Return a property with its ordinal. * * @param string $key * @param string|null $period * * @return string */ public function ordinal(string $key, string $period = null): string; /** * Create a carbon instance from a string. * * This is an alias for the constructor that allows better fluent syntax * as it allows you to do Carbon::parse('Monday next week')->fn() rather * than (new Carbon('Monday next week'))->fn(). * * @param string|DateTimeInterface|null $time * @param DateTimeZone|string|null $tz * * @throws InvalidFormatException * * @return static */ public static function parse($time = null, $tz = null); /** * Create a carbon instance from a localized string (in French, Japanese, Arabic, etc.). * * @param string $time date/time string in the given language (may also contain English). * @param string|null $locale if locale is null or not specified, current global locale will be * used instead. * @param DateTimeZone|string|null $tz optional timezone for the new instance. * * @throws InvalidFormatException * * @return static */ public static function parseFromLocale($time, $locale = null, $tz = null); /** * Returns standardized plural of a given singular/plural unit name (in English). * * @param string $unit * * @return string */ public static function pluralUnit(string $unit): string; /** * Modify to the previous occurrence of a given modifier such as a day of * the week. If no dayOfWeek is provided, modify to the previous occurrence * of the current day of the week. Use the supplied constants * to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param string|int|null $modifier * * @return static */ public function previous($modifier = null); /** * Go backward to the previous weekday. * * @return static */ public function previousWeekday(); /** * Go backward to the previous weekend day. * * @return static */ public function previousWeekendDay(); /** * Create a iterable CarbonPeriod object from current date to a given end date (and optional interval). * * @param \DateTimeInterface|Carbon|CarbonImmutable|null $end period end date * @param int|\DateInterval|string|null $interval period default interval or number of the given $unit * @param string|null $unit if specified, $interval must be an integer * * @return CarbonPeriod */ public function range($end = null, $interval = null, $unit = null); /** * Call native PHP DateTime/DateTimeImmutable add() method. * * @param DateInterval $interval * * @return static */ public function rawAdd(DateInterval $interval); /** * Create a Carbon instance from a specific format. * * @param string $format Datetime format * @param string $time * @param DateTimeZone|string|false|null $tz * * @throws InvalidFormatException * * @return static|false */ public static function rawCreateFromFormat($format, $time, $tz = null); /** * @see https://php.net/manual/en/datetime.format.php * * @param string $format * * @return string */ public function rawFormat($format); /** * Create a carbon instance from a string. * * This is an alias for the constructor that allows better fluent syntax * as it allows you to do Carbon::parse('Monday next week')->fn() rather * than (new Carbon('Monday next week'))->fn(). * * @param string|DateTimeInterface|null $time * @param DateTimeZone|string|null $tz * * @throws InvalidFormatException * * @return static */ public static function rawParse($time = null, $tz = null); /** * Call native PHP DateTime/DateTimeImmutable sub() method. * * @param DateInterval $interval * * @return static */ public function rawSub(DateInterval $interval); /** * Remove all macros and generic macros. */ public static function resetMacros(); /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * Or you can use method variants: addMonthsWithOverflow/addMonthsNoOverflow, same variants * are available for quarters, years, decade, centuries, millennia (singular and plural forms). * @see settings * * Reset the month overflow behavior. * * @return void */ public static function resetMonthsOverflow(); /** * Reset the format used to the default when type juggling a Carbon instance to a string * * @return void */ public static function resetToStringFormat(); /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * Or you can use method variants: addYearsWithOverflow/addYearsNoOverflow, same variants * are available for quarters, years, decade, centuries, millennia (singular and plural forms). * @see settings * * Reset the month overflow behavior. * * @return void */ public static function resetYearsOverflow(); /** * Round the current instance second with given precision if specified. * * @param float|int|string|\DateInterval|null $precision * @param string $function * * @return CarbonInterface */ public function round($precision = 1, $function = 'round'); /** * Round the current instance at the given unit with given precision if specified and the given function. * * @param string $unit * @param float|int $precision * @param string $function * * @return CarbonInterface */ public function roundUnit($unit, $precision = 1, $function = 'round'); /** * Round the current instance week. * * @param int $weekStartsAt optional start allow you to specify the day of week to use to start the week * * @return CarbonInterface */ public function roundWeek($weekStartsAt = null); /** * The number of seconds since midnight. * * @return int */ public function secondsSinceMidnight(); /** * The number of seconds until 23:59:59. * * @return int */ public function secondsUntilEndOfDay(); /** * Return a serialized string of the instance. * * @return string */ public function serialize(); /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather transform Carbon object before the serialization. * * JSON serialize all Carbon instances using the given callback. * * @param callable $callback * * @return void */ public static function serializeUsing($callback); /** * Set a part of the Carbon object * * @param string|array $name * @param string|int|DateTimeZone $value * * @throws ImmutableException|UnknownSetterException * * @return $this */ public function set($name, $value = null); /** * Set the date with gregorian year, month and day numbers. * * @see https://php.net/manual/en/datetime.setdate.php * * @param int $year * @param int $month * @param int $day * * @return static */ public function setDate($year, $month, $day); /** * Set the year, month, and date for this instance to that of the passed instance. * * @param Carbon|DateTimeInterface $date now if null * * @return static */ public function setDateFrom($date = null); /** * Set the date and time all together. * * @param int $year * @param int $month * @param int $day * @param int $hour * @param int $minute * @param int $second * @param int $microseconds * * @return static */ public function setDateTime($year, $month, $day, $hour, $minute, $second = 0, $microseconds = 0); /** * Set the date and time for this instance to that of the passed instance. * * @param Carbon|DateTimeInterface $date * * @return static */ public function setDateTimeFrom($date = null); /** * Set the fallback locale. * * @see https://symfony.com/doc/current/components/translation.html#fallback-locales * * @param string $locale */ public static function setFallbackLocale($locale); /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * @see settings * * @param int $humanDiffOptions */ public static function setHumanDiffOptions($humanDiffOptions); /** * Set a date according to the ISO 8601 standard - using weeks and day offsets rather than specific dates. * * @see https://php.net/manual/en/datetime.setisodate.php * * @param int $year * @param int $week * @param int $day * * @return static */ public function setISODate($year, $week, $day = 1); /** * Set the translator for the current instance. * * @param \Symfony\Component\Translation\TranslatorInterface $translator * * @return $this */ public function setLocalTranslator(\Symfony\Component\Translation\TranslatorInterface $translator); /** * Set the current translator locale and indicate if the source locale file exists. * Pass 'auto' as locale to use closest language from the current LC_TIME locale. * * @param string $locale locale ex. en * * @return bool */ public static function setLocale($locale); /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather consider mid-day is always 12pm, then if you need to test if it's an other * hour, test it explicitly: * $date->format('G') == 13 * or to set explicitly to a given hour: * $date->setTime(13, 0, 0, 0) * * Set midday/noon hour * * @param int $hour midday hour * * @return void */ public static function setMidDayAt($hour); /** * Set a Carbon instance (real or mock) to be returned when a "now" * instance is created. The provided instance will be returned * specifically under the following conditions: * - A call to the static now() method, ex. Carbon::now() * - When a null (or blank string) is passed to the constructor or parse(), ex. new Carbon(null) * - When the string "now" is passed to the constructor or parse(), ex. new Carbon('now') * - When a string containing the desired time is passed to Carbon::parse(). * * Note the timezone parameter was left out of the examples above and * has no affect as the mock value will be returned regardless of its value. * * To clear the test instance call this method using the default * parameter of null. * * /!\ Use this method for unit tests only. * * @param Closure|static|string|false|null $testNow real or mock Carbon instance */ public static function setTestNow($testNow = null); /** * Resets the current time of the DateTime object to a different time. * * @see https://php.net/manual/en/datetime.settime.php * * @param int $hour * @param int $minute * @param int $second * @param int $microseconds * * @return static */ public function setTime($hour, $minute, $second = 0, $microseconds = 0); /** * Set the hour, minute, second and microseconds for this instance to that of the passed instance. * * @param Carbon|DateTimeInterface $date now if null * * @return static */ public function setTimeFrom($date = null); /** * Set the time by time string. * * @param string $time * * @return static */ public function setTimeFromTimeString($time); /** * Set the instance's timestamp. * * Timestamp input can be given as int, float or a string containing one or more numbers. * * @param float|int|string $unixTimestamp * * @return static */ public function setTimestamp($unixTimestamp); /** * Set the instance's timezone from a string or object. * * @param DateTimeZone|string $value * * @return static */ public function setTimezone($value); /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather let Carbon object being casted to string with DEFAULT_TO_STRING_FORMAT, and * use other method or custom format passed to format() method if you need to dump an other string * format. * * Set the default format used when type juggling a Carbon instance to a string * * @param string|Closure|null $format * * @return void */ public static function setToStringFormat($format); /** * Set the default translator instance to use. * * @param \Symfony\Component\Translation\TranslatorInterface $translator * * @return void */ public static function setTranslator(\Symfony\Component\Translation\TranslatorInterface $translator); /** * Set specified unit to new given value. * * @param string $unit year, month, day, hour, minute, second or microsecond * @param int $value new value for given unit * * @return static */ public function setUnit($unit, $value = null); /** * Set any unit to a new value without overflowing current other unit given. * * @param string $valueUnit unit name to modify * @param int $value new value for the input unit * @param string $overflowUnit unit name to not overflow * * @return static */ public function setUnitNoOverflow($valueUnit, $value, $overflowUnit); /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use UTF-8 language packages on every machine. * * Set if UTF8 will be used for localized date/time. * * @param bool $utf8 */ public static function setUtf8($utf8); /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * Use $weekStartsAt optional parameter instead when using startOfWeek, floorWeek, ceilWeek * or roundWeek method. You can also use the 'first_day_of_week' locale setting to change the * start of week according to current locale selected and implicitly the end of week. * * Set the last day of week * * @param int|string $day week end day (or 'auto' to get the day before the first day of week * from Carbon::getLocale() culture). * * @return void */ public static function setWeekEndsAt($day); /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * Use $weekEndsAt optional parameter instead when using endOfWeek method. You can also use the * 'first_day_of_week' locale setting to change the start of week according to current locale * selected and implicitly the end of week. * * Set the first day of week * * @param int|string $day week start day (or 'auto' to get the first day of week from Carbon::getLocale() culture). * * @return void */ public static function setWeekStartsAt($day); /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather consider week-end is always saturday and sunday, and if you have some custom * week-end days to handle, give to those days an other name and create a macro for them: * * ``` * Carbon::macro('isDayOff', function ($date) { * return $date->isSunday() || $date->isMonday(); * }); * Carbon::macro('isNotDayOff', function ($date) { * return !$date->isDayOff(); * }); * if ($someDate->isDayOff()) ... * if ($someDate->isNotDayOff()) ... * // Add 5 not-off days * $count = 5; * while ($someDate->isDayOff() || ($count-- > 0)) { * $someDate->addDay(); * } * ``` * * Set weekend days * * @param array $days * * @return void */ public static function setWeekendDays($days); /** * Set specific options. * - strictMode: true|false|null * - monthOverflow: true|false|null * - yearOverflow: true|false|null * - humanDiffOptions: int|null * - toStringFormat: string|Closure|null * - toJsonFormat: string|Closure|null * - locale: string|null * - timezone: \DateTimeZone|string|int|null * - macros: array|null * - genericMacros: array|null * * @param array $settings * * @return $this|static */ public function settings(array $settings); /** * Set the instance's timezone from a string or object and add/subtract the offset difference. * * @param DateTimeZone|string $value * * @return static */ public function shiftTimezone($value); /** * Get the month overflow global behavior (can be overridden in specific instances). * * @return bool */ public static function shouldOverflowMonths(); /** * Get the month overflow global behavior (can be overridden in specific instances). * * @return bool */ public static function shouldOverflowYears(); /** * @alias diffForHumans * * Get the difference in a human readable format in the current locale from current instance to an other * instance given (or now if null given). */ public function since($other = null, $syntax = null, $short = false, $parts = 1, $options = null); /** * Returns standardized singular of a given singular/plural unit name (in English). * * @param string $unit * * @return string */ public static function singularUnit(string $unit): string; /** * Modify to start of current given unit. * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16.334455') * ->startOf('month') * ->endOf('week', Carbon::FRIDAY); * ``` * * @param string $unit * @param array $params * * @return static */ public function startOf($unit, ...$params); /** * Resets the date to the first day of the century and the time to 00:00:00 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfCentury(); * ``` * * @return static */ public function startOfCentury(); /** * Resets the time to 00:00:00 start of day * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfDay(); * ``` * * @return static */ public function startOfDay(); /** * Resets the date to the first day of the decade and the time to 00:00:00 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfDecade(); * ``` * * @return static */ public function startOfDecade(); /** * Modify to start of current hour, minutes and seconds become 0 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfHour(); * ``` * * @return static */ public function startOfHour(); /** * Resets the date to the first day of the millennium and the time to 00:00:00 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfMillennium(); * ``` * * @return static */ public function startOfMillennium(); /** * Modify to start of current minute, seconds become 0 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfMinute(); * ``` * * @return static */ public function startOfMinute(); /** * Resets the date to the first day of the month and the time to 00:00:00 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfMonth(); * ``` * * @return static */ public function startOfMonth(); /** * Resets the date to the first day of the quarter and the time to 00:00:00 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfQuarter(); * ``` * * @return static */ public function startOfQuarter(); /** * Modify to start of current second, microseconds become 0 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16.334455') * ->startOfSecond() * ->format('H:i:s.u'); * ``` * * @return static */ public function startOfSecond(); /** * Resets the date to the first day of week (defined in $weekStartsAt) and the time to 00:00:00 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfWeek() . "\n"; * echo Carbon::parse('2018-07-25 12:45:16')->locale('ar')->startOfWeek() . "\n"; * echo Carbon::parse('2018-07-25 12:45:16')->startOfWeek(Carbon::SUNDAY) . "\n"; * ``` * * @param int $weekStartsAt optional start allow you to specify the day of week to use to start the week * * @return static */ public function startOfWeek($weekStartsAt = null); /** * Resets the date to the first day of the year and the time to 00:00:00 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfYear(); * ``` * * @return static */ public function startOfYear(); /** * Subtract given units or interval to the current instance. * * @example $date->sub('hour', 3) * @example $date->sub(15, 'days') * @example $date->sub(CarbonInterval::days(4)) * * @param string|DateInterval|Closure|CarbonConverterInterface $unit * @param int $value * @param bool|null $overflow * * @return static */ public function sub($unit, $value = 1, $overflow = null); public function subRealUnit($unit, $value = 1); /** * Subtract given units to the current instance. * * @param string $unit * @param int $value * @param bool|null $overflow * * @return static */ public function subUnit($unit, $value = 1, $overflow = null); /** * Subtract any unit to a new value without overflowing current other unit given. * * @param string $valueUnit unit name to modify * @param int $value amount to subtract to the input unit * @param string $overflowUnit unit name to not overflow * * @return static */ public function subUnitNoOverflow($valueUnit, $value, $overflowUnit); /** * Subtract given units or interval to the current instance. * * @see sub() * * @param string|DateInterval $unit * @param int $value * @param bool|null $overflow * * @return static */ public function subtract($unit, $value = 1, $overflow = null); /** * Get the difference in a human readable format in the current locale from current instance to an other * instance given (or now if null given). * * @return string */ public function timespan($other = null, $timezone = null); /** * Set the instance's timestamp. * * Timestamp input can be given as int, float or a string containing one or more numbers. * * @param float|int|string $unixTimestamp * * @return static */ public function timestamp($unixTimestamp); /** * @alias setTimezone * * @param DateTimeZone|string $value * * @return static */ public function timezone($value); /** * Get the difference in a human readable format in the current locale from an other * instance given (or now if null given) to current instance. * * When comparing a value in the past to default now: * 1 hour from now * 5 months from now * * When comparing a value in the future to default now: * 1 hour ago * 5 months ago * * When comparing a value in the past to another value: * 1 hour after * 5 months after * * When comparing a value in the future to another value: * 1 hour before * 5 months before * * @param Carbon|\DateTimeInterface|string|array|null $other if array passed, will be used as parameters array, see $syntax below; * if null passed, now will be used as comparison reference; * if any other type, it will be converted to date and used as reference. * @param int|array $syntax if array passed, parameters will be extracted from it, the array may contains: * - 'syntax' entry (see below) * - 'short' entry (see below) * - 'parts' entry (see below) * - 'options' entry (see below) * - 'join' entry determines how to join multiple parts of the string * ` - if $join is a string, it's used as a joiner glue * ` - if $join is a callable/closure, it get the list of string and should return a string * ` - if $join is an array, the first item will be the default glue, and the second item * ` will be used instead of the glue for the last item * ` - if $join is true, it will be guessed from the locale ('list' translation file entry) * ` - if $join is missing, a space will be used as glue * - 'other' entry (see above) * if int passed, it add modifiers: * Possible values: * - CarbonInterface::DIFF_ABSOLUTE no modifiers * - CarbonInterface::DIFF_RELATIVE_TO_NOW add ago/from now modifier * - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier * Default value: CarbonInterface::DIFF_ABSOLUTE * @param bool $short displays short format of time units * @param int $parts maximum number of parts to display (default value: 1: single unit) * @param int $options human diff options * * @return string */ public function to($other = null, $syntax = null, $short = false, $parts = 1, $options = null); /** * Get default array representation. * * @example * ``` * var_dump(Carbon::now()->toArray()); * ``` * * @return array */ public function toArray(); /** * Format the instance as ATOM * * @example * ``` * echo Carbon::now()->toAtomString(); * ``` * * @return string */ public function toAtomString(); /** * Format the instance as COOKIE * * @example * ``` * echo Carbon::now()->toCookieString(); * ``` * * @return string */ public function toCookieString(); /** * @alias toDateTime * * Return native DateTime PHP object matching the current instance. * * @example * ``` * var_dump(Carbon::now()->toDate()); * ``` * * @return DateTime */ public function toDate(); /** * Format the instance as date * * @example * ``` * echo Carbon::now()->toDateString(); * ``` * * @return string */ public function toDateString(); /** * Return native DateTime PHP object matching the current instance. * * @example * ``` * var_dump(Carbon::now()->toDateTime()); * ``` * * @return DateTime */ public function toDateTime(); /** * Return native toDateTimeImmutable PHP object matching the current instance. * * @example * ``` * var_dump(Carbon::now()->toDateTimeImmutable()); * ``` * * @return DateTimeImmutable */ public function toDateTimeImmutable(); /** * Format the instance as date and time T-separated with no timezone * * @example * ``` * echo Carbon::now()->toDateTimeLocalString(); * echo "\n"; * echo Carbon::now()->toDateTimeLocalString('minute'); // You can specify precision among: minute, second, millisecond and microsecond * ``` * * @param string $unitPrecision * * @return string */ public function toDateTimeLocalString($unitPrecision = 'second'); /** * Format the instance as date and time * * @example * ``` * echo Carbon::now()->toDateTimeString(); * ``` * * @param string $unitPrecision * * @return string */ public function toDateTimeString($unitPrecision = 'second'); /** * Format the instance with day, date and time * * @example * ``` * echo Carbon::now()->toDayDateTimeString(); * ``` * * @return string */ public function toDayDateTimeString(); /** * Format the instance as a readable date * * @example * ``` * echo Carbon::now()->toFormattedDateString(); * ``` * * @return string */ public function toFormattedDateString(); /** * Return the ISO-8601 string (ex: 1977-04-22T06:00:00Z, if $keepOffset truthy, offset will be kept: * 1977-04-22T01:00:00-05:00). * * @example * ``` * echo Carbon::now('America/Toronto')->toISOString() . "\n"; * echo Carbon::now('America/Toronto')->toISOString(true) . "\n"; * ``` * * @param bool $keepOffset Pass true to keep the date offset. Else forced to UTC. * * @return null|string */ public function toISOString($keepOffset = false); /** * Return a immutable copy of the instance. * * @return CarbonImmutable */ public function toImmutable(); /** * Format the instance as ISO8601 * * @example * ``` * echo Carbon::now()->toIso8601String(); * ``` * * @return string */ public function toIso8601String(); /** * Convert the instance to UTC and return as Zulu ISO8601 * * @example * ``` * echo Carbon::now()->toIso8601ZuluString(); * ``` * * @param string $unitPrecision * * @return string */ public function toIso8601ZuluString($unitPrecision = 'second'); /** * Return the ISO-8601 string (ex: 1977-04-22T06:00:00Z) with UTC timezone. * * @example * ``` * echo Carbon::now('America/Toronto')->toJSON(); * ``` * * @return null|string */ public function toJSON(); /** * Return a mutable copy of the instance. * * @return Carbon */ public function toMutable(); /** * Get the difference in a human readable format in the current locale from an other * instance given to now * * @param int|array $syntax if array passed, parameters will be extracted from it, the array may contains: * - 'syntax' entry (see below) * - 'short' entry (see below) * - 'parts' entry (see below) * - 'options' entry (see below) * - 'join' entry determines how to join multiple parts of the string * ` - if $join is a string, it's used as a joiner glue * ` - if $join is a callable/closure, it get the list of string and should return a string * ` - if $join is an array, the first item will be the default glue, and the second item * ` will be used instead of the glue for the last item * ` - if $join is true, it will be guessed from the locale ('list' translation file entry) * ` - if $join is missing, a space will be used as glue * if int passed, it add modifiers: * Possible values: * - CarbonInterface::DIFF_ABSOLUTE no modifiers * - CarbonInterface::DIFF_RELATIVE_TO_NOW add ago/from now modifier * - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier * Default value: CarbonInterface::DIFF_ABSOLUTE * @param bool $short displays short format of time units * @param int $parts maximum number of parts to display (default value: 1: single part) * @param int $options human diff options * * @return string */ public function toNow($syntax = null, $short = false, $parts = 1, $options = null); /** * Get default object representation. * * @example * ``` * var_dump(Carbon::now()->toObject()); * ``` * * @return object */ public function toObject(); /** * Create a iterable CarbonPeriod object from current date to a given end date (and optional interval). * * @param \DateTimeInterface|Carbon|CarbonImmutable|int|null $end period end date or recurrences count if int * @param int|\DateInterval|string|null $interval period default interval or number of the given $unit * @param string|null $unit if specified, $interval must be an integer * * @return CarbonPeriod */ public function toPeriod($end = null, $interval = null, $unit = null); /** * Format the instance as RFC1036 * * @example * ``` * echo Carbon::now()->toRfc1036String(); * ``` * * @return string */ public function toRfc1036String(); /** * Format the instance as RFC1123 * * @example * ``` * echo Carbon::now()->toRfc1123String(); * ``` * * @return string */ public function toRfc1123String(); /** * Format the instance as RFC2822 * * @example * ``` * echo Carbon::now()->toRfc2822String(); * ``` * * @return string */ public function toRfc2822String(); /** * Format the instance as RFC3339 * * @param bool $extended * * @example * ``` * echo Carbon::now()->toRfc3339String() . "\n"; * echo Carbon::now()->toRfc3339String(true) . "\n"; * ``` * * @return string */ public function toRfc3339String($extended = false); /** * Format the instance as RFC7231 * * @example * ``` * echo Carbon::now()->toRfc7231String(); * ``` * * @return string */ public function toRfc7231String(); /** * Format the instance as RFC822 * * @example * ``` * echo Carbon::now()->toRfc822String(); * ``` * * @return string */ public function toRfc822String(); /** * Format the instance as RFC850 * * @example * ``` * echo Carbon::now()->toRfc850String(); * ``` * * @return string */ public function toRfc850String(); /** * Format the instance as RSS * * @example * ``` * echo Carbon::now()->toRssString(); * ``` * * @return string */ public function toRssString(); /** * Returns english human readable complete date string. * * @example * ``` * echo Carbon::now()->toString(); * ``` * * @return string */ public function toString(); /** * Format the instance as time * * @example * ``` * echo Carbon::now()->toTimeString(); * ``` * * @param string $unitPrecision * * @return string */ public function toTimeString($unitPrecision = 'second'); /** * Format the instance as W3C * * @example * ``` * echo Carbon::now()->toW3cString(); * ``` * * @return string */ public function toW3cString(); /** * Create a Carbon instance for today. * * @param DateTimeZone|string|null $tz * * @return static */ public static function today($tz = null); /** * Create a Carbon instance for tomorrow. * * @param DateTimeZone|string|null $tz * * @return static */ public static function tomorrow($tz = null); /** * Translate using translation string or callback available. * * @param string $key * @param array $parameters * @param null $number * @param \Symfony\Component\Translation\TranslatorInterface $translator * * @return string */ public function translate(string $key, array $parameters = [], $number = null, \Symfony\Component\Translation\TranslatorInterface $translator = null, bool $altNumbers = false): string; /** * Returns the alternative number for a given integer if available in the current locale. * * @param int $number * * @return string */ public function translateNumber(int $number): string; /** * Translate a time string from a locale to an other. * * @param string $timeString date/time/duration string to translate (may also contain English) * @param string|null $from input locale of the $timeString parameter (`Carbon::getLocale()` by default) * @param string|null $to output locale of the result returned (`"en"` by default) * @param int $mode specify what to translate with options: * - self::TRANSLATE_ALL (default) * - CarbonInterface::TRANSLATE_MONTHS * - CarbonInterface::TRANSLATE_DAYS * - CarbonInterface::TRANSLATE_UNITS * - CarbonInterface::TRANSLATE_MERIDIEM * You can use pipe to group: CarbonInterface::TRANSLATE_MONTHS | CarbonInterface::TRANSLATE_DAYS * * @return string */ public static function translateTimeString($timeString, $from = null, $to = null, $mode = self::TRANSLATE_ALL); /** * Translate a time string from the current locale (`$date->locale()`) to an other. * * @param string $timeString time string to translate * @param string|null $to output locale of the result returned ("en" by default) * * @return string */ public function translateTimeStringTo($timeString, $to = null); /** * Translate using translation string or callback available. * * @param \Symfony\Component\Translation\TranslatorInterface $translator * @param string $key * @param array $parameters * @param null $number * * @return string */ public static function translateWith(\Symfony\Component\Translation\TranslatorInterface $translator, string $key, array $parameters = [], $number = null): string; /** * Format as ->format() do (using date replacements patterns from http://php.net/manual/fr/function.date.php) * but translate words whenever possible (months, day names, etc.) using the current locale. * * @param string $format * * @return string */ public function translatedFormat(string $format): string; /** * Set the timezone or returns the timezone name if no arguments passed. * * @param DateTimeZone|string $value * * @return static|string */ public function tz($value = null); /** * @alias getTimestamp * * Returns the UNIX timestamp for the current date. * * @return int */ public function unix(); /** * @alias to * * Get the difference in a human readable format in the current locale from an other * instance given (or now if null given) to current instance. * * @param Carbon|\DateTimeInterface|string|array|null $other if array passed, will be used as parameters array, see $syntax below; * if null passed, now will be used as comparison reference; * if any other type, it will be converted to date and used as reference. * @param int|array $syntax if array passed, parameters will be extracted from it, the array may contains: * - 'syntax' entry (see below) * - 'short' entry (see below) * - 'parts' entry (see below) * - 'options' entry (see below) * - 'join' entry determines how to join multiple parts of the string * ` - if $join is a string, it's used as a joiner glue * ` - if $join is a callable/closure, it get the list of string and should return a string * ` - if $join is an array, the first item will be the default glue, and the second item * ` will be used instead of the glue for the last item * ` - if $join is true, it will be guessed from the locale ('list' translation file entry) * ` - if $join is missing, a space will be used as glue * - 'other' entry (see above) * if int passed, it add modifiers: * Possible values: * - CarbonInterface::DIFF_ABSOLUTE no modifiers * - CarbonInterface::DIFF_RELATIVE_TO_NOW add ago/from now modifier * - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier * Default value: CarbonInterface::DIFF_ABSOLUTE * @param bool $short displays short format of time units * @param int $parts maximum number of parts to display (default value: 1: single unit) * @param int $options human diff options * * @return string */ public function until($other = null, $syntax = null, $short = false, $parts = 1, $options = null); /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * Or you can use method variants: addMonthsWithOverflow/addMonthsNoOverflow, same variants * are available for quarters, years, decade, centuries, millennia (singular and plural forms). * @see settings * * Indicates if months should be calculated with overflow. * * @param bool $monthsOverflow * * @return void */ public static function useMonthsOverflow($monthsOverflow = true); /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * @see settings * * Enable the strict mode (or disable with passing false). * * @param bool $strictModeEnabled */ public static function useStrictMode($strictModeEnabled = true); /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * Or you can use method variants: addYearsWithOverflow/addYearsNoOverflow, same variants * are available for quarters, years, decade, centuries, millennia (singular and plural forms). * @see settings * * Indicates if years should be calculated with overflow. * * @param bool $yearsOverflow * * @return void */ public static function useYearsOverflow($yearsOverflow = true); /** * Set the instance's timezone to UTC. * * @return static */ public function utc(); /** * Returns the minutes offset to UTC if no arguments passed, else set the timezone with given minutes shift passed. * * @param int|null $minuteOffset * * @return int|static */ public function utcOffset(int $minuteOffset = null); /** * Returns the milliseconds timestamps used amongst other by Date javascript objects. * * @return float */ public function valueOf(); /** * Get/set the week number using given first day of week and first * day of year included in the first week. Or use US format if no settings * given (Sunday / Jan 6). * * @param int|null $week * @param int|null $dayOfWeek * @param int|null $dayOfYear * * @return int|static */ public function week($week = null, $dayOfWeek = null, $dayOfYear = null); /** * Set/get the week number of year using given first day of week and first * day of year included in the first week. Or use US format if no settings * given (Sunday / Jan 6). * * @param int|null $year if null, act as a getter, if not null, set the year and return current instance. * @param int|null $dayOfWeek first date of week from 0 (Sunday) to 6 (Saturday) * @param int|null $dayOfYear first day of year included in the week #1 * * @return int|static */ public function weekYear($year = null, $dayOfWeek = null, $dayOfYear = null); /** * Get/set the weekday from 0 (Sunday) to 6 (Saturday). * * @param int|null $value new value for weekday if using as setter. * * @return static|int */ public function weekday($value = null); /** * Get the number of weeks of the current week-year using given first day of week and first * day of year included in the first week. Or use US format if no settings * given (Sunday / Jan 6). * * @param int|null $dayOfWeek first date of week from 0 (Sunday) to 6 (Saturday) * @param int|null $dayOfYear first day of year included in the week #1 * * @return int */ public function weeksInYear($dayOfWeek = null, $dayOfYear = null); /** * Temporarily sets a static date to be used within the callback. * Using setTestNow to set the date, executing the callback, then * clearing the test instance. * * /!\ Use this method for unit tests only. * * @param Closure|static|string|false|null $testNow real or mock Carbon instance * @param Closure|null $callback */ public static function withTestNow($testNow = null, $callback = null); /** * Create a Carbon instance for yesterday. * * @param DateTimeZone|string|null $tz * * @return static */ public static function yesterday($tz = null); // } PK!/F¢—ŚŚ-carbon/src/Carbon/Laravel/ServiceProvider.phpnuÕIw¶“updateLocale(); if (!$this->app->bound('events')) { return; } $service = $this; $events = $this->app['events']; if ($this->isEventDispatcher($events)) { $events->listen(class_exists('Illuminate\Foundation\Events\LocaleUpdated') ? 'Illuminate\Foundation\Events\LocaleUpdated' : 'locale.changed', function () use ($service) { $service->updateLocale(); }); } } public function updateLocale() { $app = $this->app && method_exists($this->app, 'getLocale') ? $this->app : app('translator'); $locale = $app->getLocale(); Carbon::setLocale($locale); CarbonImmutable::setLocale($locale); CarbonPeriod::setLocale($locale); CarbonInterval::setLocale($locale); if (class_exists(IlluminateCarbon::class)) { IlluminateCarbon::setLocale($locale); } if (class_exists(Date::class)) { try { $root = Date::getFacadeRoot(); $root->setLocale($locale); } catch (Throwable $e) { // Non Carbon class in use in Date facade } } } public function register() { // Needed for Laravel < 5.3 compatibility } protected function isEventDispatcher($instance) { return $instance instanceof EventDispatcher || $instance instanceof Dispatcher || $instance instanceof DispatcherContract; } } PK!ŖeL¦6Ģ6Ģ&carbon/src/Carbon/FactoryImmutable.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon; use Closure; /** * A factory to generate CarbonImmutable instances with common settings. * * * * @method bool canBeCreatedFromFormat($date, $format) Checks if the (date)time string is in a given format and valid to create a * new instance. * @method CarbonImmutable|false create($year = 0, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0, $tz = null) Create a new Carbon instance from a specific date and time. * If any of $year, $month or $day are set to null their now() values will * be used. * If $hour is null it will be set to its now() value and the default * values for $minute and $second will be their now() values. * If $hour is not null then the default values for $minute and $second * will be 0. * @method CarbonImmutable createFromDate($year = null, $month = null, $day = null, $tz = null) Create a Carbon instance from just a date. The time portion is set to now. * @method CarbonImmutable|false createFromFormat($format, $time, $tz = null) Create a Carbon instance from a specific format. * @method CarbonImmutable|false createFromIsoFormat($format, $time, $tz = null, $locale = 'en', $translator = null) Create a Carbon instance from a specific ISO format (same replacements as ->isoFormat()). * @method CarbonImmutable|false createFromLocaleFormat($format, $locale, $time, $tz = null) Create a Carbon instance from a specific format and a string in a given language. * @method CarbonImmutable|false createFromLocaleIsoFormat($format, $locale, $time, $tz = null) Create a Carbon instance from a specific ISO format and a string in a given language. * @method CarbonImmutable createFromTime($hour = 0, $minute = 0, $second = 0, $tz = null) Create a Carbon instance from just a time. The date portion is set to today. * @method CarbonImmutable createFromTimeString($time, $tz = null) Create a Carbon instance from a time string. The date portion is set to today. * @method CarbonImmutable createFromTimestamp($timestamp, $tz = null) Create a Carbon instance from a timestamp and set the timezone (use default one if not specified). * Timestamp input can be given as int, float or a string containing one or more numbers. * @method CarbonImmutable createFromTimestampMs($timestamp, $tz = null) Create a Carbon instance from a timestamp in milliseconds. * Timestamp input can be given as int, float or a string containing one or more numbers. * @method CarbonImmutable createFromTimestampMsUTC($timestamp) Create a Carbon instance from a timestamp in milliseconds. * Timestamp input can be given as int, float or a string containing one or more numbers. * @method CarbonImmutable createFromTimestampUTC($timestamp) Create a Carbon instance from an timestamp keeping the timezone to UTC. * Timestamp input can be given as int, float or a string containing one or more numbers. * @method CarbonImmutable createMidnightDate($year = null, $month = null, $day = null, $tz = null) Create a Carbon instance from just a date. The time portion is set to midnight. * @method CarbonImmutable|false createSafe($year = null, $month = null, $day = null, $hour = null, $minute = null, $second = null, $tz = null) Create a new safe Carbon instance from a specific date and time. * If any of $year, $month or $day are set to null their now() values will * be used. * If $hour is null it will be set to its now() value and the default * values for $minute and $second will be their now() values. * If $hour is not null then the default values for $minute and $second * will be 0. * If one of the set values is not valid, an InvalidDateException * will be thrown. * @method CarbonImmutable disableHumanDiffOption($humanDiffOption) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * @method CarbonImmutable enableHumanDiffOption($humanDiffOption) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * @method mixed executeWithLocale($locale, $func) Set the current locale to the given, execute the passed function, reset the locale to previous one, * then return the result of the closure (or null if the closure was void). * @method CarbonImmutable fromSerialized($value) Create an instance from a serialized string. * @method void genericMacro($macro, $priority = 0) Register a custom macro. * @method array getAvailableLocales() Returns the list of internally available locales and already loaded custom locales. * (It will ignore custom translator dynamic loading.) * @method Language[] getAvailableLocalesInfo() Returns list of Language object for each available locale. This object allow you to get the ISO name, native * name, region and variant of the locale. * @method array getDays() Get the days of the week * @method string|null getFallbackLocale() Get the fallback locale. * @method array getFormatsToIsoReplacements() List of replacements from date() format to isoFormat(). * @method int getHumanDiffOptions() Return default humanDiff() options (merged flags as integer). * @method array getIsoUnits() Returns list of locale units for ISO formatting. * @method CarbonImmutable getLastErrors() {@inheritdoc} * @method string getLocale() Get the current translator locale. * @method callable|null getMacro($name) Get the raw callable macro registered globally for a given name. * @method int getMidDayAt() get midday/noon hour * @method Closure|CarbonImmutable getTestNow() Get the Carbon instance (real or mock) to be returned when a "now" * instance is created. * @method string getTimeFormatByPrecision($unitPrecision) Return a format from H:i to H:i:s.u according to given unit precision. * @method string getTranslationMessageWith($translator, string $key, string $locale = null, string $default = null) Returns raw translation message for a given key. * @method \Symfony\Component\Translation\TranslatorInterface getTranslator() Get the default translator instance in use. * @method int getWeekEndsAt() Get the last day of week * @method int getWeekStartsAt() Get the first day of week * @method array getWeekendDays() Get weekend days * @method bool hasFormat($date, $format) Checks if the (date)time string is in a given format. * @method bool hasFormatWithModifiers($date, $format) Checks if the (date)time string is in a given format. * @method bool hasMacro($name) Checks if macro is registered globally. * @method bool hasRelativeKeywords($time) Determine if a time string will produce a relative date. * @method bool hasTestNow() Determine if there is a valid test instance set. A valid test instance * is anything that is not null. * @method CarbonImmutable instance($date) Create a Carbon instance from a DateTime one. * @method bool isImmutable() Returns true if the current class/instance is immutable. * @method bool isModifiableUnit($unit) Returns true if a property can be changed via setter. * @method bool isMutable() Returns true if the current class/instance is mutable. * @method bool isStrictModeEnabled() Returns true if the strict mode is globally in use, false else. * (It can be overridden in specific instances.) * @method bool localeHasDiffOneDayWords($locale) Returns true if the given locale is internally supported and has words for 1-day diff (just now, yesterday, tomorrow). * Support is considered enabled if the 3 words are translated in the given locale. * @method bool localeHasDiffSyntax($locale) Returns true if the given locale is internally supported and has diff syntax support (ago, from now, before, after). * Support is considered enabled if the 4 sentences are translated in the given locale. * @method bool localeHasDiffTwoDayWords($locale) Returns true if the given locale is internally supported and has words for 2-days diff (before yesterday, after tomorrow). * Support is considered enabled if the 2 words are translated in the given locale. * @method bool localeHasPeriodSyntax($locale) Returns true if the given locale is internally supported and has period syntax support (X times, every X, from X, to X). * Support is considered enabled if the 4 sentences are translated in the given locale. * @method bool localeHasShortUnits($locale) Returns true if the given locale is internally supported and has short-units support. * Support is considered enabled if either year, day or hour has a short variant translated. * @method void macro($name, $macro) Register a custom macro. * @method CarbonImmutable|null make($var) Make a Carbon instance from given variable if possible. * Always return a new instance. Parse only strings and only these likely to be dates (skip intervals * and recurrences). Throw an exception for invalid format, but otherwise return null. * @method CarbonImmutable maxValue() Create a Carbon instance for the greatest supported date. * @method CarbonImmutable minValue() Create a Carbon instance for the lowest supported date. * @method void mixin($mixin) Mix another object into the class. * @method CarbonImmutable now($tz = null) Get a Carbon instance for the current date and time. * @method CarbonImmutable parse($time = null, $tz = null) Create a carbon instance from a string. * This is an alias for the constructor that allows better fluent syntax * as it allows you to do Carbon::parse('Monday next week')->fn() rather * than (new Carbon('Monday next week'))->fn(). * @method CarbonImmutable parseFromLocale($time, $locale = null, $tz = null) Create a carbon instance from a localized string (in French, Japanese, Arabic, etc.). * @method string pluralUnit(string $unit) Returns standardized plural of a given singular/plural unit name (in English). * @method CarbonImmutable|false rawCreateFromFormat($format, $time, $tz = null) Create a Carbon instance from a specific format. * @method CarbonImmutable rawParse($time = null, $tz = null) Create a carbon instance from a string. * This is an alias for the constructor that allows better fluent syntax * as it allows you to do Carbon::parse('Monday next week')->fn() rather * than (new Carbon('Monday next week'))->fn(). * @method CarbonImmutable resetMacros() Remove all macros and generic macros. * @method void resetMonthsOverflow() @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * Or you can use method variants: addMonthsWithOverflow/addMonthsNoOverflow, same variants * are available for quarters, years, decade, centuries, millennia (singular and plural forms). * @method void resetToStringFormat() Reset the format used to the default when type juggling a Carbon instance to a string * @method void resetYearsOverflow() @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * Or you can use method variants: addYearsWithOverflow/addYearsNoOverflow, same variants * are available for quarters, years, decade, centuries, millennia (singular and plural forms). * @method void serializeUsing($callback) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather transform Carbon object before the serialization. * JSON serialize all Carbon instances using the given callback. * @method CarbonImmutable setFallbackLocale($locale) Set the fallback locale. * @method CarbonImmutable setHumanDiffOptions($humanDiffOptions) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * @method bool setLocale($locale) Set the current translator locale and indicate if the source locale file exists. * Pass 'auto' as locale to use closest language from the current LC_TIME locale. * @method void setMidDayAt($hour) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather consider mid-day is always 12pm, then if you need to test if it's an other * hour, test it explicitly: * $date->format('G') == 13 * or to set explicitly to a given hour: * $date->setTime(13, 0, 0, 0) * Set midday/noon hour * @method CarbonImmutable setTestNow($testNow = null) Set a Carbon instance (real or mock) to be returned when a "now" * instance is created. The provided instance will be returned * specifically under the following conditions: * - A call to the static now() method, ex. Carbon::now() * - When a null (or blank string) is passed to the constructor or parse(), ex. new Carbon(null) * - When the string "now" is passed to the constructor or parse(), ex. new Carbon('now') * - When a string containing the desired time is passed to Carbon::parse(). * Note the timezone parameter was left out of the examples above and * has no affect as the mock value will be returned regardless of its value. * To clear the test instance call this method using the default * parameter of null. * /!\ Use this method for unit tests only. * @method void setToStringFormat($format) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather let Carbon object being casted to string with DEFAULT_TO_STRING_FORMAT, and * use other method or custom format passed to format() method if you need to dump an other string * format. * Set the default format used when type juggling a Carbon instance to a string * @method void setTranslator(\Symfony\Component\Translation\TranslatorInterface $translator) Set the default translator instance to use. * @method CarbonImmutable setUtf8($utf8) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use UTF-8 language packages on every machine. * Set if UTF8 will be used for localized date/time. * @method void setWeekEndsAt($day) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * Use $weekStartsAt optional parameter instead when using startOfWeek, floorWeek, ceilWeek * or roundWeek method. You can also use the 'first_day_of_week' locale setting to change the * start of week according to current locale selected and implicitly the end of week. * Set the last day of week * @method void setWeekStartsAt($day) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * Use $weekEndsAt optional parameter instead when using endOfWeek method. You can also use the * 'first_day_of_week' locale setting to change the start of week according to current locale * selected and implicitly the end of week. * Set the first day of week * @method void setWeekendDays($days) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather consider week-end is always saturday and sunday, and if you have some custom * week-end days to handle, give to those days an other name and create a macro for them: * ``` * Carbon::macro('isDayOff', function ($date) { * return $date->isSunday() || $date->isMonday(); * }); * Carbon::macro('isNotDayOff', function ($date) { * return !$date->isDayOff(); * }); * if ($someDate->isDayOff()) ... * if ($someDate->isNotDayOff()) ... * // Add 5 not-off days * $count = 5; * while ($someDate->isDayOff() || ($count-- > 0)) { * $someDate->addDay(); * } * ``` * Set weekend days * @method bool shouldOverflowMonths() Get the month overflow global behavior (can be overridden in specific instances). * @method bool shouldOverflowYears() Get the month overflow global behavior (can be overridden in specific instances). * @method string singularUnit(string $unit) Returns standardized singular of a given singular/plural unit name (in English). * @method CarbonImmutable today($tz = null) Create a Carbon instance for today. * @method CarbonImmutable tomorrow($tz = null) Create a Carbon instance for tomorrow. * @method string translateTimeString($timeString, $from = null, $to = null, $mode = CarbonInterface::TRANSLATE_ALL) Translate a time string from a locale to an other. * @method string translateWith(\Symfony\Component\Translation\TranslatorInterface $translator, string $key, array $parameters = [], $number = null) Translate using translation string or callback available. * @method void useMonthsOverflow($monthsOverflow = true) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * Or you can use method variants: addMonthsWithOverflow/addMonthsNoOverflow, same variants * are available for quarters, years, decade, centuries, millennia (singular and plural forms). * @method CarbonImmutable useStrictMode($strictModeEnabled = true) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * @method void useYearsOverflow($yearsOverflow = true) @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * Or you can use method variants: addYearsWithOverflow/addYearsNoOverflow, same variants * are available for quarters, years, decade, centuries, millennia (singular and plural forms). * @method CarbonImmutable withTestNow($testNow = null, $callback = null) Temporarily sets a static date to be used within the callback. * Using setTestNow to set the date, executing the callback, then * clearing the test instance. * /!\ Use this method for unit tests only. * @method CarbonImmutable yesterday($tz = null) Create a Carbon instance for yesterday. * * */ class FactoryImmutable extends Factory { protected $className = CarbonImmutable::class; } PK!J™h¦”(”( carbon/src/Carbon/Translator.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon; use Closure; use ReflectionException; use ReflectionFunction; use Symfony\Component\Translation; class Translator extends Translation\Translator { /** * Translator singletons for each language. * * @var array */ protected static $singletons = []; /** * List of custom localized messages. * * @var array */ protected $messages = []; /** * List of custom directories that contain translation files. * * @var string[] */ protected $directories = []; /** * Set to true while constructing. * * @var bool */ protected $initializing = false; /** * List of locales aliases. * * @var string[] */ protected $aliases = [ 'me' => 'sr_Latn_ME', 'scr' => 'sh', ]; /** * Return a singleton instance of Translator. * * @param string|null $locale optional initial locale ("en" - english by default) * * @return static */ public static function get($locale = null) { $locale = $locale ?: 'en'; if (!isset(static::$singletons[$locale])) { static::$singletons[$locale] = new static($locale ?: 'en'); } return static::$singletons[$locale]; } public function __construct($locale, Translation\Formatter\MessageFormatterInterface $formatter = null, $cacheDir = null, $debug = false) { $this->initializing = true; $this->directories = [__DIR__.'/Lang']; $this->addLoader('array', new Translation\Loader\ArrayLoader()); parent::__construct($locale, $formatter, $cacheDir, $debug); $this->initializing = false; } /** * Returns the list of directories translation files are searched in. * * @return array */ public function getDirectories(): array { return $this->directories; } /** * Set list of directories translation files are searched in. * * @param array $directories new directories list * * @return $this */ public function setDirectories(array $directories) { $this->directories = $directories; return $this; } /** * Add a directory to the list translation files are searched in. * * @param string $directory new directory * * @return $this */ public function addDirectory(string $directory) { $this->directories[] = $directory; return $this; } /** * Remove a directory from the list translation files are searched in. * * @param string $directory directory path * * @return $this */ public function removeDirectory(string $directory) { $search = rtrim(strtr($directory, '\\', '/'), '/'); return $this->setDirectories(array_filter($this->getDirectories(), function ($item) use ($search) { return rtrim(strtr($item, '\\', '/'), '/') !== $search; })); } /** * Returns the translation. * * @param string $id * @param array $parameters * @param string $domain * @param string $locale * * @return string */ public function trans($id, array $parameters = [], $domain = null, $locale = null) { if (null === $domain) { $domain = 'messages'; } $format = $this->getCatalogue($locale)->get((string) $id, $domain); if ($format instanceof Closure) { // @codeCoverageIgnoreStart try { $count = (new ReflectionFunction($format))->getNumberOfRequiredParameters(); } catch (ReflectionException $exception) { $count = 0; } // @codeCoverageIgnoreEnd return $format( ...array_values($parameters), ...array_fill(0, max(0, $count - \count($parameters)), null) ); } return parent::trans($id, $parameters, $domain, $locale); } /** * Reset messages of a locale (all locale if no locale passed). * Remove custom messages and reload initial messages from matching * file in Lang directory. * * @param string|null $locale * * @return bool */ public function resetMessages($locale = null) { if ($locale === null) { $this->messages = []; return true; } foreach ($this->getDirectories() as $directory) { $data = @include sprintf('%s/%s.php', rtrim($directory, '\\/'), $locale); if ($data !== false) { $this->messages[$locale] = $data; $this->addResource('array', $this->messages[$locale], $locale); return true; } } return false; } /** * Returns the list of files matching a given locale prefix (or all if empty). * * @param string $prefix prefix required to filter result * * @return array */ public function getLocalesFiles($prefix = '') { $files = []; foreach ($this->getDirectories() as $directory) { $directory = rtrim($directory, '\\/'); foreach (glob("$directory/$prefix*.php") as $file) { $files[] = $file; } } return array_unique($files); } /** * Returns the list of internally available locales and already loaded custom locales. * (It will ignore custom translator dynamic loading.) * * @param string $prefix prefix required to filter result * * @return array */ public function getAvailableLocales($prefix = '') { $locales = []; foreach ($this->getLocalesFiles($prefix) as $file) { $locales[] = substr($file, strrpos($file, '/') + 1, -4); } return array_unique(array_merge($locales, array_keys($this->messages))); } /** * Init messages language from matching file in Lang directory. * * @param string $locale * * @return bool */ protected function loadMessagesFromFile($locale) { if (isset($this->messages[$locale])) { return true; } return $this->resetMessages($locale); } /** * Set messages of a locale and take file first if present. * * @param string $locale * @param array $messages * * @return $this */ public function setMessages($locale, $messages) { $this->loadMessagesFromFile($locale); $this->addResource('array', $messages, $locale); $this->messages[$locale] = array_merge( isset($this->messages[$locale]) ? $this->messages[$locale] : [], $messages ); return $this; } /** * Set messages of the current locale and take file first if present. * * @param array $messages * * @return $this */ public function setTranslations($messages) { return $this->setMessages($this->getLocale(), $messages); } /** * Get messages of a locale, if none given, return all the * languages. * * @param string|null $locale * * @return array */ public function getMessages($locale = null) { return $locale === null ? $this->messages : $this->messages[$locale]; } /** * Set the current translator locale and indicate if the source locale file exists * * @param string $locale locale ex. en * * @return bool */ public function setLocale($locale) { $locale = preg_replace_callback('/[-_]([a-z]{2,})/', function ($matches) { // _2-letters or YUE is a region, _3+-letters is a variant $upper = strtoupper($matches[1]); if ($upper === 'YUE' || $upper === 'ISO' || \strlen($upper) < 3) { return "_$upper"; } return '_'.ucfirst($matches[1]); }, strtolower($locale)); $previousLocale = $this->getLocale(); if ($previousLocale === $locale) { return true; } unset(static::$singletons[$previousLocale]); if ($locale === 'auto') { $completeLocale = setlocale(LC_TIME, '0'); $locale = preg_replace('/^([^_.-]+).*$/', '$1', $completeLocale); $locales = $this->getAvailableLocales($locale); $completeLocaleChunks = preg_split('/[_.-]+/', $completeLocale); $getScore = function ($language) use ($completeLocaleChunks) { return static::compareChunkLists($completeLocaleChunks, preg_split('/[_.-]+/', $language)); }; usort($locales, function ($first, $second) use ($getScore) { return $getScore($second) <=> $getScore($first); }); $locale = $locales[0]; } if (isset($this->aliases[$locale])) { $locale = $this->aliases[$locale]; } // If subtag (ex: en_CA) first load the macro (ex: en) to have a fallback if (strpos($locale, '_') !== false && $this->loadMessagesFromFile($macroLocale = preg_replace('/^([^_]+).*$/', '$1', $locale)) ) { parent::setLocale($macroLocale); } if ($this->loadMessagesFromFile($locale) || $this->initializing) { parent::setLocale($locale); return true; } return false; } /** * Show locale on var_dump(). * * @return array */ public function __debugInfo() { return [ 'locale' => $this->getLocale(), ]; } private static function compareChunkLists($referenceChunks, $chunks) { $score = 0; foreach ($referenceChunks as $index => $chunk) { if (!isset($chunks[$index])) { $score++; continue; } if (strtolower($chunks[$index]) === strtolower($chunk)) { $score += 10; } } return $score; } } PK!=Š)“ “ $carbon/src/Carbon/CarbonTimeZone.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon; use Carbon\Exceptions\InvalidCastException; use Carbon\Exceptions\InvalidTimeZoneException; use DateTimeInterface; use DateTimeZone; class CarbonTimeZone extends DateTimeZone { public function __construct($timezone = null) { parent::__construct(static::getDateTimeZoneNameFromMixed($timezone)); } protected static function parseNumericTimezone($timezone) { if ($timezone <= -100 || $timezone >= 100) { throw new InvalidTimeZoneException('Absolute timezone offset cannot be greater than 100.'); } return ($timezone >= 0 ? '+' : '').$timezone.':00'; } protected static function getDateTimeZoneNameFromMixed($timezone) { if (\is_null($timezone)) { return date_default_timezone_get(); } if (\is_string($timezone)) { $timezone = preg_replace('/^\s*([+-]\d+)(\d{2})\s*$/', '$1:$2', $timezone); } if (is_numeric($timezone)) { return static::parseNumericTimezone($timezone); } return $timezone; } protected static function getDateTimeZoneFromName(&$name) { return @timezone_open($name = (string) static::getDateTimeZoneNameFromMixed($name)); } /** * Cast the current instance into the given class. * * @param string $className The $className::instance() method will be called to cast the current object. * * @return DateTimeZone */ public function cast(string $className) { if (!method_exists($className, 'instance')) { if (is_a($className, DateTimeZone::class, true)) { return new $className($this->getName()); } throw new InvalidCastException("$className has not the instance() method needed to cast the date."); } return $className::instance($this); } /** * Create a CarbonTimeZone from mixed input. * * @param DateTimeZone|string|int|null $object original value to get CarbonTimeZone from it. * @param DateTimeZone|string|int|null $objectDump dump of the object for error messages. * * @throws InvalidTimeZoneException * * @return false|static */ public static function instance($object = null, $objectDump = null) { $tz = $object; if ($tz instanceof static) { return $tz; } if ($tz === null) { return new static(); } if (!$tz instanceof DateTimeZone) { $tz = static::getDateTimeZoneFromName($object); } if ($tz === false) { if (Carbon::isStrictModeEnabled()) { throw new InvalidTimeZoneException('Unknown or bad timezone ('.($objectDump ?: $object).')'); } return false; } return new static($tz->getName()); } /** * Returns abbreviated name of the current timezone according to DST setting. * * @param bool $dst * * @return string */ public function getAbbreviatedName($dst = false) { $name = $this->getName(); foreach ($this->listAbbreviations() as $abbreviation => $zones) { foreach ($zones as $zone) { if ($zone['timezone_id'] === $name && $zone['dst'] == $dst) { return $abbreviation; } } } return 'unknown'; } /** * @alias getAbbreviatedName * * Returns abbreviated name of the current timezone according to DST setting. * * @param bool $dst * * @return string */ public function getAbbr($dst = false) { return $this->getAbbreviatedName($dst); } /** * Get the offset as string "sHH:MM" (such as "+00:00" or "-12:30"). * * @param DateTimeInterface|null $date * * @return string */ public function toOffsetName(DateTimeInterface $date = null) { return static::getOffsetNameFromMinuteOffset( $this->getOffset($date ?: Carbon::now($this)) / 60 ); } /** * Returns a new CarbonTimeZone object using the offset string instead of region string. * * @param DateTimeInterface|null $date * * @return CarbonTimeZone */ public function toOffsetTimeZone(DateTimeInterface $date = null) { return new static($this->toOffsetName($date)); } /** * Returns the first region string (such as "America/Toronto") that matches the current timezone or * false if no match is found. * * @see timezone_name_from_abbr native PHP function. * * @param DateTimeInterface|null $date * @param int $isDst * * @return string|false */ public function toRegionName(DateTimeInterface $date = null, $isDst = 1) { $name = $this->getName(); $firstChar = substr($name, 0, 1); if ($firstChar !== '+' && $firstChar !== '-') { return $name; } $date = $date ?: Carbon::now($this); // Integer construction no longer supported since PHP 8 // @codeCoverageIgnoreStart try { $offset = @$this->getOffset($date) ?: 0; } catch (\Throwable $e) { $offset = 0; } // @codeCoverageIgnoreEnd $name = @timezone_name_from_abbr('', $offset, $isDst); if ($name) { return $name; } foreach (timezone_identifiers_list() as $timezone) { if (Carbon::instance($date)->tz($timezone)->getOffset() === $offset) { return $timezone; } } return false; } /** * Returns a new CarbonTimeZone object using the region string instead of offset string. * * @param DateTimeInterface|null $date * * @return CarbonTimeZone|false */ public function toRegionTimeZone(DateTimeInterface $date = null) { $tz = $this->toRegionName($date); if ($tz === false) { if (Carbon::isStrictModeEnabled()) { throw new InvalidTimeZoneException('Unknown timezone for offset '.$this->getOffset($date ?: Carbon::now($this)).' seconds.'); } return false; } return new static($tz); } /** * Cast to string (get timezone name). * * @return string */ public function __toString() { return $this->getName(); } /** * Create a CarbonTimeZone from mixed input. * * @param DateTimeZone|string|int|null $object * * @return false|static */ public static function create($object = null) { return static::instance($object); } /** * Create a CarbonTimeZone from int/float hour offset. * * @param float $hourOffset number of hour of the timezone shift (can be decimal). * * @return false|static */ public static function createFromHourOffset(float $hourOffset) { return static::createFromMinuteOffset($hourOffset * Carbon::MINUTES_PER_HOUR); } /** * Create a CarbonTimeZone from int/float minute offset. * * @param float $minuteOffset number of total minutes of the timezone shift. * * @return false|static */ public static function createFromMinuteOffset(float $minuteOffset) { return static::instance(static::getOffsetNameFromMinuteOffset($minuteOffset)); } /** * Convert a total minutes offset into a standardized timezone offset string. * * @param float $minutes number of total minutes of the timezone shift. * * @return string */ public static function getOffsetNameFromMinuteOffset(float $minutes): string { $minutes = round($minutes); $unsignedMinutes = abs($minutes); return ($minutes < 0 ? '-' : '+'). str_pad((string) floor($unsignedMinutes / 60), 2, '0', STR_PAD_LEFT). ':'. str_pad((string) ($unsignedMinutes % 60), 2, '0', STR_PAD_LEFT); } } PK!xKž5bbcarbon/src/Carbon/Language.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon; use JsonSerializable; class Language implements JsonSerializable { /** * @var array */ protected static $languagesNames; /** * @var array */ protected static $regionsNames; /** * @var string */ protected $id; /** * @var string */ protected $code; /** * @var string|null */ protected $variant; /** * @var string|null */ protected $region; /** * @var array */ protected $names; /** * @var string */ protected $isoName; /** * @var string */ protected $nativeName; public function __construct(string $id) { $this->id = str_replace('-', '_', $id); $parts = explode('_', $this->id); $this->code = $parts[0]; if (isset($parts[1])) { if (!preg_match('/^[A-Z]+$/', $parts[1])) { $this->variant = $parts[1]; $parts[1] = $parts[2] ?? null; } if ($parts[1]) { $this->region = $parts[1]; } } } /** * Get the list of the known languages. * * @return array */ public static function all() { if (!static::$languagesNames) { static::$languagesNames = require __DIR__.'/List/languages.php'; } return static::$languagesNames; } /** * Get the list of the known regions. * * @return array */ public static function regions() { if (!static::$regionsNames) { static::$regionsNames = require __DIR__.'/List/regions.php'; } return static::$regionsNames; } /** * Get both isoName and nativeName as an array. * * @return array */ public function getNames(): array { if (!$this->names) { $this->names = static::all()[$this->code] ?? [ 'isoName' => $this->code, 'nativeName' => $this->code, ]; } return $this->names; } /** * Returns the original locale ID. * * @return string */ public function getId(): string { return $this->id; } /** * Returns the code of the locale "en"/"fr". * * @return string */ public function getCode(): string { return $this->code; } /** * Returns the variant code such as cyrl/latn. * * @return string|null */ public function getVariant(): ?string { return $this->variant; } /** * Returns the variant such as Cyrillic/Latin. * * @return string|null */ public function getVariantName(): ?string { if ($this->variant === 'Latn') { return 'Latin'; } if ($this->variant === 'Cyrl') { return 'Cyrillic'; } return $this->variant; } /** * Returns the region part of the locale. * * @return string|null */ public function getRegion(): ?string { return $this->region; } /** * Returns the region name for the current language. * * @return string|null */ public function getRegionName(): ?string { return $this->region ? (static::regions()[$this->region] ?? $this->region) : null; } /** * Returns the long ISO language name. * * @return string */ public function getFullIsoName(): string { if (!$this->isoName) { $this->isoName = $this->getNames()['isoName']; } return $this->isoName; } /** * Set the ISO language name. * * @param string $isoName */ public function setIsoName(string $isoName): self { $this->isoName = $isoName; return $this; } /** * Return the full name of the language in this language. * * @return string */ public function getFullNativeName(): string { if (!$this->nativeName) { $this->nativeName = $this->getNames()['nativeName']; } return $this->nativeName; } /** * Set the name of the language in this language. * * @param string $nativeName */ public function setNativeName(string $nativeName): self { $this->nativeName = $nativeName; return $this; } /** * Returns the short ISO language name. * * @return string */ public function getIsoName(): string { $name = $this->getFullIsoName(); return trim(strstr($name, ',', true) ?: $name); } /** * Get the short name of the language in this language. * * @return string */ public function getNativeName(): string { $name = $this->getFullNativeName(); return trim(strstr($name, ',', true) ?: $name); } /** * Get a string with short ISO name, region in parentheses if applicable, variant in parentheses if applicable. * * @return string */ public function getIsoDescription() { $region = $this->getRegionName(); $variant = $this->getVariantName(); return $this->getIsoName().($region ? ' ('.$region.')' : '').($variant ? ' ('.$variant.')' : ''); } /** * Get a string with short native name, region in parentheses if applicable, variant in parentheses if applicable. * * @return string */ public function getNativeDescription() { $region = $this->getRegionName(); $variant = $this->getVariantName(); return $this->getNativeName().($region ? ' ('.$region.')' : '').($variant ? ' ('.$variant.')' : ''); } /** * Get a string with long ISO name, region in parentheses if applicable, variant in parentheses if applicable. * * @return string */ public function getFullIsoDescription() { $region = $this->getRegionName(); $variant = $this->getVariantName(); return $this->getFullIsoName().($region ? ' ('.$region.')' : '').($variant ? ' ('.$variant.')' : ''); } /** * Get a string with long native name, region in parentheses if applicable, variant in parentheses if applicable. * * @return string */ public function getFullNativeDescription() { $region = $this->getRegionName(); $variant = $this->getVariantName(); return $this->getFullNativeName().($region ? ' ('.$region.')' : '').($variant ? ' ('.$variant.')' : ''); } /** * Returns the original locale ID. * * @return string */ public function __toString() { return $this->getId(); } /** * Get a string with short ISO name, region in parentheses if applicable, variant in parentheses if applicable. * * @return string */ public function jsonSerialize() { return $this->getIsoDescription(); } } PK!ˆ‰ p‚p‚%carbon/src/Carbon/CarbonImmutable.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon; use Carbon\Traits\Date; use DateTimeImmutable; use DateTimeInterface; use DateTimeZone; /** * A simple API extension for DateTimeImmutable. * * * * @property int $year * @property int $yearIso * @property int $month * @property int $day * @property int $hour * @property int $minute * @property int $second * @property int $micro * @property int $microsecond * @property int|float|string $timestamp seconds since the Unix Epoch * @property string $englishDayOfWeek the day of week in English * @property string $shortEnglishDayOfWeek the abbreviated day of week in English * @property string $englishMonth the month in English * @property string $shortEnglishMonth the abbreviated month in English * @property string $localeDayOfWeek the day of week in current locale LC_TIME * @property string $shortLocaleDayOfWeek the abbreviated day of week in current locale LC_TIME * @property string $localeMonth the month in current locale LC_TIME * @property string $shortLocaleMonth the abbreviated month in current locale LC_TIME * @property int $milliseconds * @property int $millisecond * @property int $milli * @property int $week 1 through 53 * @property int $isoWeek 1 through 53 * @property int $weekYear year according to week format * @property int $isoWeekYear year according to ISO week format * @property int $dayOfYear 1 through 366 * @property int $age does a diffInYears() with default parameters * @property int $offset the timezone offset in seconds from UTC * @property int $offsetMinutes the timezone offset in minutes from UTC * @property int $offsetHours the timezone offset in hours from UTC * @property CarbonTimeZone $timezone the current timezone * @property CarbonTimeZone $tz alias of $timezone * @property-read int $dayOfWeek 0 (for Sunday) through 6 (for Saturday) * @property-read int $dayOfWeekIso 1 (for Monday) through 7 (for Sunday) * @property-read int $weekOfYear ISO-8601 week number of year, weeks starting on Monday * @property-read int $daysInMonth number of days in the given month * @property-read string $latinMeridiem "am"/"pm" (Ante meridiem or Post meridiem latin lowercase mark) * @property-read string $latinUpperMeridiem "AM"/"PM" (Ante meridiem or Post meridiem latin uppercase mark) * @property-read string $timezoneAbbreviatedName the current timezone abbreviated name * @property-read string $tzAbbrName alias of $timezoneAbbreviatedName * @property-read string $dayName long name of weekday translated according to Carbon locale, in english if no translation available for current language * @property-read string $shortDayName short name of weekday translated according to Carbon locale, in english if no translation available for current language * @property-read string $minDayName very short name of weekday translated according to Carbon locale, in english if no translation available for current language * @property-read string $monthName long name of month translated according to Carbon locale, in english if no translation available for current language * @property-read string $shortMonthName short name of month translated according to Carbon locale, in english if no translation available for current language * @property-read string $meridiem lowercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language * @property-read string $upperMeridiem uppercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language * @property-read int $noZeroHour current hour from 1 to 24 * @property-read int $weeksInYear 51 through 53 * @property-read int $isoWeeksInYear 51 through 53 * @property-read int $weekOfMonth 1 through 5 * @property-read int $weekNumberInMonth 1 through 5 * @property-read int $firstWeekDay 0 through 6 * @property-read int $lastWeekDay 0 through 6 * @property-read int $daysInYear 365 or 366 * @property-read int $quarter the quarter of this instance, 1 - 4 * @property-read int $decade the decade of this instance * @property-read int $century the century of this instance * @property-read int $millennium the millennium of this instance * @property-read bool $dst daylight savings time indicator, true if DST, false otherwise * @property-read bool $local checks if the timezone is local, true if local, false otherwise * @property-read bool $utc checks if the timezone is UTC, true if UTC, false otherwise * @property-read string $timezoneName the current timezone name * @property-read string $tzName alias of $timezoneName * @property-read string $locale locale of the current instance * * @method bool isUtc() Check if the current instance has UTC timezone. (Both isUtc and isUTC cases are valid.) * @method bool isLocal() Check if the current instance has non-UTC timezone. * @method bool isValid() Check if the current instance is a valid date. * @method bool isDST() Check if the current instance is in a daylight saving time. * @method bool isSunday() Checks if the instance day is sunday. * @method bool isMonday() Checks if the instance day is monday. * @method bool isTuesday() Checks if the instance day is tuesday. * @method bool isWednesday() Checks if the instance day is wednesday. * @method bool isThursday() Checks if the instance day is thursday. * @method bool isFriday() Checks if the instance day is friday. * @method bool isSaturday() Checks if the instance day is saturday. * @method bool isSameYear(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same year as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentYear() Checks if the instance is in the same year as the current moment. * @method bool isNextYear() Checks if the instance is in the same year as the current moment next year. * @method bool isLastYear() Checks if the instance is in the same year as the current moment last year. * @method bool isSameWeek(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same week as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentWeek() Checks if the instance is in the same week as the current moment. * @method bool isNextWeek() Checks if the instance is in the same week as the current moment next week. * @method bool isLastWeek() Checks if the instance is in the same week as the current moment last week. * @method bool isSameDay(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same day as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentDay() Checks if the instance is in the same day as the current moment. * @method bool isNextDay() Checks if the instance is in the same day as the current moment next day. * @method bool isLastDay() Checks if the instance is in the same day as the current moment last day. * @method bool isSameHour(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same hour as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentHour() Checks if the instance is in the same hour as the current moment. * @method bool isNextHour() Checks if the instance is in the same hour as the current moment next hour. * @method bool isLastHour() Checks if the instance is in the same hour as the current moment last hour. * @method bool isSameMinute(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same minute as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentMinute() Checks if the instance is in the same minute as the current moment. * @method bool isNextMinute() Checks if the instance is in the same minute as the current moment next minute. * @method bool isLastMinute() Checks if the instance is in the same minute as the current moment last minute. * @method bool isSameSecond(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same second as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentSecond() Checks if the instance is in the same second as the current moment. * @method bool isNextSecond() Checks if the instance is in the same second as the current moment next second. * @method bool isLastSecond() Checks if the instance is in the same second as the current moment last second. * @method bool isSameMicro(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same microsecond as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentMicro() Checks if the instance is in the same microsecond as the current moment. * @method bool isNextMicro() Checks if the instance is in the same microsecond as the current moment next microsecond. * @method bool isLastMicro() Checks if the instance is in the same microsecond as the current moment last microsecond. * @method bool isSameMicrosecond(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same microsecond as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentMicrosecond() Checks if the instance is in the same microsecond as the current moment. * @method bool isNextMicrosecond() Checks if the instance is in the same microsecond as the current moment next microsecond. * @method bool isLastMicrosecond() Checks if the instance is in the same microsecond as the current moment last microsecond. * @method bool isCurrentMonth() Checks if the instance is in the same month as the current moment. * @method bool isNextMonth() Checks if the instance is in the same month as the current moment next month. * @method bool isLastMonth() Checks if the instance is in the same month as the current moment last month. * @method bool isCurrentQuarter() Checks if the instance is in the same quarter as the current moment. * @method bool isNextQuarter() Checks if the instance is in the same quarter as the current moment next quarter. * @method bool isLastQuarter() Checks if the instance is in the same quarter as the current moment last quarter. * @method bool isSameDecade(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same decade as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentDecade() Checks if the instance is in the same decade as the current moment. * @method bool isNextDecade() Checks if the instance is in the same decade as the current moment next decade. * @method bool isLastDecade() Checks if the instance is in the same decade as the current moment last decade. * @method bool isSameCentury(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same century as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentCentury() Checks if the instance is in the same century as the current moment. * @method bool isNextCentury() Checks if the instance is in the same century as the current moment next century. * @method bool isLastCentury() Checks if the instance is in the same century as the current moment last century. * @method bool isSameMillennium(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same millennium as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentMillennium() Checks if the instance is in the same millennium as the current moment. * @method bool isNextMillennium() Checks if the instance is in the same millennium as the current moment next millennium. * @method bool isLastMillennium() Checks if the instance is in the same millennium as the current moment last millennium. * @method CarbonImmutable years(int $value) Set current instance year to the given value. * @method CarbonImmutable year(int $value) Set current instance year to the given value. * @method CarbonImmutable setYears(int $value) Set current instance year to the given value. * @method CarbonImmutable setYear(int $value) Set current instance year to the given value. * @method CarbonImmutable months(int $value) Set current instance month to the given value. * @method CarbonImmutable month(int $value) Set current instance month to the given value. * @method CarbonImmutable setMonths(int $value) Set current instance month to the given value. * @method CarbonImmutable setMonth(int $value) Set current instance month to the given value. * @method CarbonImmutable days(int $value) Set current instance day to the given value. * @method CarbonImmutable day(int $value) Set current instance day to the given value. * @method CarbonImmutable setDays(int $value) Set current instance day to the given value. * @method CarbonImmutable setDay(int $value) Set current instance day to the given value. * @method CarbonImmutable hours(int $value) Set current instance hour to the given value. * @method CarbonImmutable hour(int $value) Set current instance hour to the given value. * @method CarbonImmutable setHours(int $value) Set current instance hour to the given value. * @method CarbonImmutable setHour(int $value) Set current instance hour to the given value. * @method CarbonImmutable minutes(int $value) Set current instance minute to the given value. * @method CarbonImmutable minute(int $value) Set current instance minute to the given value. * @method CarbonImmutable setMinutes(int $value) Set current instance minute to the given value. * @method CarbonImmutable setMinute(int $value) Set current instance minute to the given value. * @method CarbonImmutable seconds(int $value) Set current instance second to the given value. * @method CarbonImmutable second(int $value) Set current instance second to the given value. * @method CarbonImmutable setSeconds(int $value) Set current instance second to the given value. * @method CarbonImmutable setSecond(int $value) Set current instance second to the given value. * @method CarbonImmutable millis(int $value) Set current instance millisecond to the given value. * @method CarbonImmutable milli(int $value) Set current instance millisecond to the given value. * @method CarbonImmutable setMillis(int $value) Set current instance millisecond to the given value. * @method CarbonImmutable setMilli(int $value) Set current instance millisecond to the given value. * @method CarbonImmutable milliseconds(int $value) Set current instance millisecond to the given value. * @method CarbonImmutable millisecond(int $value) Set current instance millisecond to the given value. * @method CarbonImmutable setMilliseconds(int $value) Set current instance millisecond to the given value. * @method CarbonImmutable setMillisecond(int $value) Set current instance millisecond to the given value. * @method CarbonImmutable micros(int $value) Set current instance microsecond to the given value. * @method CarbonImmutable micro(int $value) Set current instance microsecond to the given value. * @method CarbonImmutable setMicros(int $value) Set current instance microsecond to the given value. * @method CarbonImmutable setMicro(int $value) Set current instance microsecond to the given value. * @method CarbonImmutable microseconds(int $value) Set current instance microsecond to the given value. * @method CarbonImmutable microsecond(int $value) Set current instance microsecond to the given value. * @method CarbonImmutable setMicroseconds(int $value) Set current instance microsecond to the given value. * @method CarbonImmutable setMicrosecond(int $value) Set current instance microsecond to the given value. * @method CarbonImmutable addYears(int $value = 1) Add years (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable addYear() Add one year to the instance (using date interval). * @method CarbonImmutable subYears(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable subYear() Sub one year to the instance (using date interval). * @method CarbonImmutable addYearsWithOverflow(int $value = 1) Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable addYearWithOverflow() Add one year to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable subYearsWithOverflow(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable subYearWithOverflow() Sub one year to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable addYearsWithoutOverflow(int $value = 1) Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addYearWithoutOverflow() Add one year to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subYearsWithoutOverflow(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subYearWithoutOverflow() Sub one year to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addYearsWithNoOverflow(int $value = 1) Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addYearWithNoOverflow() Add one year to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subYearsWithNoOverflow(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subYearWithNoOverflow() Sub one year to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addYearsNoOverflow(int $value = 1) Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addYearNoOverflow() Add one year to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subYearsNoOverflow(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subYearNoOverflow() Sub one year to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addMonths(int $value = 1) Add months (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable addMonth() Add one month to the instance (using date interval). * @method CarbonImmutable subMonths(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable subMonth() Sub one month to the instance (using date interval). * @method CarbonImmutable addMonthsWithOverflow(int $value = 1) Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable addMonthWithOverflow() Add one month to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable subMonthsWithOverflow(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable subMonthWithOverflow() Sub one month to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable addMonthsWithoutOverflow(int $value = 1) Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addMonthWithoutOverflow() Add one month to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subMonthsWithoutOverflow(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subMonthWithoutOverflow() Sub one month to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addMonthsWithNoOverflow(int $value = 1) Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addMonthWithNoOverflow() Add one month to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subMonthsWithNoOverflow(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subMonthWithNoOverflow() Sub one month to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addMonthsNoOverflow(int $value = 1) Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addMonthNoOverflow() Add one month to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subMonthsNoOverflow(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subMonthNoOverflow() Sub one month to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addDays(int $value = 1) Add days (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable addDay() Add one day to the instance (using date interval). * @method CarbonImmutable subDays(int $value = 1) Sub days (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable subDay() Sub one day to the instance (using date interval). * @method CarbonImmutable addHours(int $value = 1) Add hours (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable addHour() Add one hour to the instance (using date interval). * @method CarbonImmutable subHours(int $value = 1) Sub hours (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable subHour() Sub one hour to the instance (using date interval). * @method CarbonImmutable addMinutes(int $value = 1) Add minutes (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable addMinute() Add one minute to the instance (using date interval). * @method CarbonImmutable subMinutes(int $value = 1) Sub minutes (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable subMinute() Sub one minute to the instance (using date interval). * @method CarbonImmutable addSeconds(int $value = 1) Add seconds (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable addSecond() Add one second to the instance (using date interval). * @method CarbonImmutable subSeconds(int $value = 1) Sub seconds (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable subSecond() Sub one second to the instance (using date interval). * @method CarbonImmutable addMillis(int $value = 1) Add milliseconds (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable addMilli() Add one millisecond to the instance (using date interval). * @method CarbonImmutable subMillis(int $value = 1) Sub milliseconds (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable subMilli() Sub one millisecond to the instance (using date interval). * @method CarbonImmutable addMilliseconds(int $value = 1) Add milliseconds (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable addMillisecond() Add one millisecond to the instance (using date interval). * @method CarbonImmutable subMilliseconds(int $value = 1) Sub milliseconds (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable subMillisecond() Sub one millisecond to the instance (using date interval). * @method CarbonImmutable addMicros(int $value = 1) Add microseconds (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable addMicro() Add one microsecond to the instance (using date interval). * @method CarbonImmutable subMicros(int $value = 1) Sub microseconds (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable subMicro() Sub one microsecond to the instance (using date interval). * @method CarbonImmutable addMicroseconds(int $value = 1) Add microseconds (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable addMicrosecond() Add one microsecond to the instance (using date interval). * @method CarbonImmutable subMicroseconds(int $value = 1) Sub microseconds (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable subMicrosecond() Sub one microsecond to the instance (using date interval). * @method CarbonImmutable addMillennia(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable addMillennium() Add one millennium to the instance (using date interval). * @method CarbonImmutable subMillennia(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable subMillennium() Sub one millennium to the instance (using date interval). * @method CarbonImmutable addMillenniaWithOverflow(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable addMillenniumWithOverflow() Add one millennium to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable subMillenniaWithOverflow(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable subMillenniumWithOverflow() Sub one millennium to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable addMillenniaWithoutOverflow(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addMillenniumWithoutOverflow() Add one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subMillenniaWithoutOverflow(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subMillenniumWithoutOverflow() Sub one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addMillenniaWithNoOverflow(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addMillenniumWithNoOverflow() Add one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subMillenniaWithNoOverflow(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subMillenniumWithNoOverflow() Sub one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addMillenniaNoOverflow(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addMillenniumNoOverflow() Add one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subMillenniaNoOverflow(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subMillenniumNoOverflow() Sub one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addCenturies(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable addCentury() Add one century to the instance (using date interval). * @method CarbonImmutable subCenturies(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable subCentury() Sub one century to the instance (using date interval). * @method CarbonImmutable addCenturiesWithOverflow(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable addCenturyWithOverflow() Add one century to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable subCenturiesWithOverflow(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable subCenturyWithOverflow() Sub one century to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable addCenturiesWithoutOverflow(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addCenturyWithoutOverflow() Add one century to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subCenturiesWithoutOverflow(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subCenturyWithoutOverflow() Sub one century to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addCenturiesWithNoOverflow(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addCenturyWithNoOverflow() Add one century to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subCenturiesWithNoOverflow(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subCenturyWithNoOverflow() Sub one century to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addCenturiesNoOverflow(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addCenturyNoOverflow() Add one century to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subCenturiesNoOverflow(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subCenturyNoOverflow() Sub one century to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addDecades(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable addDecade() Add one decade to the instance (using date interval). * @method CarbonImmutable subDecades(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable subDecade() Sub one decade to the instance (using date interval). * @method CarbonImmutable addDecadesWithOverflow(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable addDecadeWithOverflow() Add one decade to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable subDecadesWithOverflow(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable subDecadeWithOverflow() Sub one decade to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable addDecadesWithoutOverflow(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addDecadeWithoutOverflow() Add one decade to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subDecadesWithoutOverflow(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subDecadeWithoutOverflow() Sub one decade to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addDecadesWithNoOverflow(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addDecadeWithNoOverflow() Add one decade to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subDecadesWithNoOverflow(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subDecadeWithNoOverflow() Sub one decade to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addDecadesNoOverflow(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addDecadeNoOverflow() Add one decade to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subDecadesNoOverflow(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subDecadeNoOverflow() Sub one decade to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addQuarters(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable addQuarter() Add one quarter to the instance (using date interval). * @method CarbonImmutable subQuarters(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable subQuarter() Sub one quarter to the instance (using date interval). * @method CarbonImmutable addQuartersWithOverflow(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable addQuarterWithOverflow() Add one quarter to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable subQuartersWithOverflow(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable subQuarterWithOverflow() Sub one quarter to the instance (using date interval) with overflow explicitly allowed. * @method CarbonImmutable addQuartersWithoutOverflow(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addQuarterWithoutOverflow() Add one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subQuartersWithoutOverflow(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subQuarterWithoutOverflow() Sub one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addQuartersWithNoOverflow(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addQuarterWithNoOverflow() Add one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subQuartersWithNoOverflow(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subQuarterWithNoOverflow() Sub one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addQuartersNoOverflow(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addQuarterNoOverflow() Add one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subQuartersNoOverflow(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable subQuarterNoOverflow() Sub one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonImmutable addWeeks(int $value = 1) Add weeks (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable addWeek() Add one week to the instance (using date interval). * @method CarbonImmutable subWeeks(int $value = 1) Sub weeks (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable subWeek() Sub one week to the instance (using date interval). * @method CarbonImmutable addWeekdays(int $value = 1) Add weekdays (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable addWeekday() Add one weekday to the instance (using date interval). * @method CarbonImmutable subWeekdays(int $value = 1) Sub weekdays (the $value count passed in) to the instance (using date interval). * @method CarbonImmutable subWeekday() Sub one weekday to the instance (using date interval). * @method CarbonImmutable addRealMicros(int $value = 1) Add microseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable addRealMicro() Add one microsecond to the instance (using timestamp). * @method CarbonImmutable subRealMicros(int $value = 1) Sub microseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable subRealMicro() Sub one microsecond to the instance (using timestamp). * @method CarbonPeriod microsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each microsecond or every X microseconds if a factor is given. * @method CarbonImmutable addRealMicroseconds(int $value = 1) Add microseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable addRealMicrosecond() Add one microsecond to the instance (using timestamp). * @method CarbonImmutable subRealMicroseconds(int $value = 1) Sub microseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable subRealMicrosecond() Sub one microsecond to the instance (using timestamp). * @method CarbonPeriod microsecondsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each microsecond or every X microseconds if a factor is given. * @method CarbonImmutable addRealMillis(int $value = 1) Add milliseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable addRealMilli() Add one millisecond to the instance (using timestamp). * @method CarbonImmutable subRealMillis(int $value = 1) Sub milliseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable subRealMilli() Sub one millisecond to the instance (using timestamp). * @method CarbonPeriod millisUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millisecond or every X milliseconds if a factor is given. * @method CarbonImmutable addRealMilliseconds(int $value = 1) Add milliseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable addRealMillisecond() Add one millisecond to the instance (using timestamp). * @method CarbonImmutable subRealMilliseconds(int $value = 1) Sub milliseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable subRealMillisecond() Sub one millisecond to the instance (using timestamp). * @method CarbonPeriod millisecondsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millisecond or every X milliseconds if a factor is given. * @method CarbonImmutable addRealSeconds(int $value = 1) Add seconds (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable addRealSecond() Add one second to the instance (using timestamp). * @method CarbonImmutable subRealSeconds(int $value = 1) Sub seconds (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable subRealSecond() Sub one second to the instance (using timestamp). * @method CarbonPeriod secondsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each second or every X seconds if a factor is given. * @method CarbonImmutable addRealMinutes(int $value = 1) Add minutes (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable addRealMinute() Add one minute to the instance (using timestamp). * @method CarbonImmutable subRealMinutes(int $value = 1) Sub minutes (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable subRealMinute() Sub one minute to the instance (using timestamp). * @method CarbonPeriod minutesUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each minute or every X minutes if a factor is given. * @method CarbonImmutable addRealHours(int $value = 1) Add hours (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable addRealHour() Add one hour to the instance (using timestamp). * @method CarbonImmutable subRealHours(int $value = 1) Sub hours (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable subRealHour() Sub one hour to the instance (using timestamp). * @method CarbonPeriod hoursUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each hour or every X hours if a factor is given. * @method CarbonImmutable addRealDays(int $value = 1) Add days (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable addRealDay() Add one day to the instance (using timestamp). * @method CarbonImmutable subRealDays(int $value = 1) Sub days (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable subRealDay() Sub one day to the instance (using timestamp). * @method CarbonPeriod daysUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each day or every X days if a factor is given. * @method CarbonImmutable addRealWeeks(int $value = 1) Add weeks (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable addRealWeek() Add one week to the instance (using timestamp). * @method CarbonImmutable subRealWeeks(int $value = 1) Sub weeks (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable subRealWeek() Sub one week to the instance (using timestamp). * @method CarbonPeriod weeksUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each week or every X weeks if a factor is given. * @method CarbonImmutable addRealMonths(int $value = 1) Add months (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable addRealMonth() Add one month to the instance (using timestamp). * @method CarbonImmutable subRealMonths(int $value = 1) Sub months (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable subRealMonth() Sub one month to the instance (using timestamp). * @method CarbonPeriod monthsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each month or every X months if a factor is given. * @method CarbonImmutable addRealQuarters(int $value = 1) Add quarters (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable addRealQuarter() Add one quarter to the instance (using timestamp). * @method CarbonImmutable subRealQuarters(int $value = 1) Sub quarters (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable subRealQuarter() Sub one quarter to the instance (using timestamp). * @method CarbonPeriod quartersUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each quarter or every X quarters if a factor is given. * @method CarbonImmutable addRealYears(int $value = 1) Add years (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable addRealYear() Add one year to the instance (using timestamp). * @method CarbonImmutable subRealYears(int $value = 1) Sub years (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable subRealYear() Sub one year to the instance (using timestamp). * @method CarbonPeriod yearsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each year or every X years if a factor is given. * @method CarbonImmutable addRealDecades(int $value = 1) Add decades (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable addRealDecade() Add one decade to the instance (using timestamp). * @method CarbonImmutable subRealDecades(int $value = 1) Sub decades (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable subRealDecade() Sub one decade to the instance (using timestamp). * @method CarbonPeriod decadesUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each decade or every X decades if a factor is given. * @method CarbonImmutable addRealCenturies(int $value = 1) Add centuries (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable addRealCentury() Add one century to the instance (using timestamp). * @method CarbonImmutable subRealCenturies(int $value = 1) Sub centuries (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable subRealCentury() Sub one century to the instance (using timestamp). * @method CarbonPeriod centuriesUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each century or every X centuries if a factor is given. * @method CarbonImmutable addRealMillennia(int $value = 1) Add millennia (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable addRealMillennium() Add one millennium to the instance (using timestamp). * @method CarbonImmutable subRealMillennia(int $value = 1) Sub millennia (the $value count passed in) to the instance (using timestamp). * @method CarbonImmutable subRealMillennium() Sub one millennium to the instance (using timestamp). * @method CarbonPeriod millenniaUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millennium or every X millennia if a factor is given. * @method CarbonImmutable roundYear(float $precision = 1, string $function = "round") Round the current instance year with given precision using the given function. * @method CarbonImmutable roundYears(float $precision = 1, string $function = "round") Round the current instance year with given precision using the given function. * @method CarbonImmutable floorYear(float $precision = 1) Truncate the current instance year with given precision. * @method CarbonImmutable floorYears(float $precision = 1) Truncate the current instance year with given precision. * @method CarbonImmutable ceilYear(float $precision = 1) Ceil the current instance year with given precision. * @method CarbonImmutable ceilYears(float $precision = 1) Ceil the current instance year with given precision. * @method CarbonImmutable roundMonth(float $precision = 1, string $function = "round") Round the current instance month with given precision using the given function. * @method CarbonImmutable roundMonths(float $precision = 1, string $function = "round") Round the current instance month with given precision using the given function. * @method CarbonImmutable floorMonth(float $precision = 1) Truncate the current instance month with given precision. * @method CarbonImmutable floorMonths(float $precision = 1) Truncate the current instance month with given precision. * @method CarbonImmutable ceilMonth(float $precision = 1) Ceil the current instance month with given precision. * @method CarbonImmutable ceilMonths(float $precision = 1) Ceil the current instance month with given precision. * @method CarbonImmutable roundDay(float $precision = 1, string $function = "round") Round the current instance day with given precision using the given function. * @method CarbonImmutable roundDays(float $precision = 1, string $function = "round") Round the current instance day with given precision using the given function. * @method CarbonImmutable floorDay(float $precision = 1) Truncate the current instance day with given precision. * @method CarbonImmutable floorDays(float $precision = 1) Truncate the current instance day with given precision. * @method CarbonImmutable ceilDay(float $precision = 1) Ceil the current instance day with given precision. * @method CarbonImmutable ceilDays(float $precision = 1) Ceil the current instance day with given precision. * @method CarbonImmutable roundHour(float $precision = 1, string $function = "round") Round the current instance hour with given precision using the given function. * @method CarbonImmutable roundHours(float $precision = 1, string $function = "round") Round the current instance hour with given precision using the given function. * @method CarbonImmutable floorHour(float $precision = 1) Truncate the current instance hour with given precision. * @method CarbonImmutable floorHours(float $precision = 1) Truncate the current instance hour with given precision. * @method CarbonImmutable ceilHour(float $precision = 1) Ceil the current instance hour with given precision. * @method CarbonImmutable ceilHours(float $precision = 1) Ceil the current instance hour with given precision. * @method CarbonImmutable roundMinute(float $precision = 1, string $function = "round") Round the current instance minute with given precision using the given function. * @method CarbonImmutable roundMinutes(float $precision = 1, string $function = "round") Round the current instance minute with given precision using the given function. * @method CarbonImmutable floorMinute(float $precision = 1) Truncate the current instance minute with given precision. * @method CarbonImmutable floorMinutes(float $precision = 1) Truncate the current instance minute with given precision. * @method CarbonImmutable ceilMinute(float $precision = 1) Ceil the current instance minute with given precision. * @method CarbonImmutable ceilMinutes(float $precision = 1) Ceil the current instance minute with given precision. * @method CarbonImmutable roundSecond(float $precision = 1, string $function = "round") Round the current instance second with given precision using the given function. * @method CarbonImmutable roundSeconds(float $precision = 1, string $function = "round") Round the current instance second with given precision using the given function. * @method CarbonImmutable floorSecond(float $precision = 1) Truncate the current instance second with given precision. * @method CarbonImmutable floorSeconds(float $precision = 1) Truncate the current instance second with given precision. * @method CarbonImmutable ceilSecond(float $precision = 1) Ceil the current instance second with given precision. * @method CarbonImmutable ceilSeconds(float $precision = 1) Ceil the current instance second with given precision. * @method CarbonImmutable roundMillennium(float $precision = 1, string $function = "round") Round the current instance millennium with given precision using the given function. * @method CarbonImmutable roundMillennia(float $precision = 1, string $function = "round") Round the current instance millennium with given precision using the given function. * @method CarbonImmutable floorMillennium(float $precision = 1) Truncate the current instance millennium with given precision. * @method CarbonImmutable floorMillennia(float $precision = 1) Truncate the current instance millennium with given precision. * @method CarbonImmutable ceilMillennium(float $precision = 1) Ceil the current instance millennium with given precision. * @method CarbonImmutable ceilMillennia(float $precision = 1) Ceil the current instance millennium with given precision. * @method CarbonImmutable roundCentury(float $precision = 1, string $function = "round") Round the current instance century with given precision using the given function. * @method CarbonImmutable roundCenturies(float $precision = 1, string $function = "round") Round the current instance century with given precision using the given function. * @method CarbonImmutable floorCentury(float $precision = 1) Truncate the current instance century with given precision. * @method CarbonImmutable floorCenturies(float $precision = 1) Truncate the current instance century with given precision. * @method CarbonImmutable ceilCentury(float $precision = 1) Ceil the current instance century with given precision. * @method CarbonImmutable ceilCenturies(float $precision = 1) Ceil the current instance century with given precision. * @method CarbonImmutable roundDecade(float $precision = 1, string $function = "round") Round the current instance decade with given precision using the given function. * @method CarbonImmutable roundDecades(float $precision = 1, string $function = "round") Round the current instance decade with given precision using the given function. * @method CarbonImmutable floorDecade(float $precision = 1) Truncate the current instance decade with given precision. * @method CarbonImmutable floorDecades(float $precision = 1) Truncate the current instance decade with given precision. * @method CarbonImmutable ceilDecade(float $precision = 1) Ceil the current instance decade with given precision. * @method CarbonImmutable ceilDecades(float $precision = 1) Ceil the current instance decade with given precision. * @method CarbonImmutable roundQuarter(float $precision = 1, string $function = "round") Round the current instance quarter with given precision using the given function. * @method CarbonImmutable roundQuarters(float $precision = 1, string $function = "round") Round the current instance quarter with given precision using the given function. * @method CarbonImmutable floorQuarter(float $precision = 1) Truncate the current instance quarter with given precision. * @method CarbonImmutable floorQuarters(float $precision = 1) Truncate the current instance quarter with given precision. * @method CarbonImmutable ceilQuarter(float $precision = 1) Ceil the current instance quarter with given precision. * @method CarbonImmutable ceilQuarters(float $precision = 1) Ceil the current instance quarter with given precision. * @method CarbonImmutable roundMillisecond(float $precision = 1, string $function = "round") Round the current instance millisecond with given precision using the given function. * @method CarbonImmutable roundMilliseconds(float $precision = 1, string $function = "round") Round the current instance millisecond with given precision using the given function. * @method CarbonImmutable floorMillisecond(float $precision = 1) Truncate the current instance millisecond with given precision. * @method CarbonImmutable floorMilliseconds(float $precision = 1) Truncate the current instance millisecond with given precision. * @method CarbonImmutable ceilMillisecond(float $precision = 1) Ceil the current instance millisecond with given precision. * @method CarbonImmutable ceilMilliseconds(float $precision = 1) Ceil the current instance millisecond with given precision. * @method CarbonImmutable roundMicrosecond(float $precision = 1, string $function = "round") Round the current instance microsecond with given precision using the given function. * @method CarbonImmutable roundMicroseconds(float $precision = 1, string $function = "round") Round the current instance microsecond with given precision using the given function. * @method CarbonImmutable floorMicrosecond(float $precision = 1) Truncate the current instance microsecond with given precision. * @method CarbonImmutable floorMicroseconds(float $precision = 1) Truncate the current instance microsecond with given precision. * @method CarbonImmutable ceilMicrosecond(float $precision = 1) Ceil the current instance microsecond with given precision. * @method CarbonImmutable ceilMicroseconds(float $precision = 1) Ceil the current instance microsecond with given precision. * @method string shortAbsoluteDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'Absolute' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string longAbsoluteDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (long format, 'Absolute' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string shortRelativeDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'Relative' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string longRelativeDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (long format, 'Relative' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string shortRelativeToNowDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'RelativeToNow' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string longRelativeToNowDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (long format, 'RelativeToNow' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string shortRelativeToOtherDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'RelativeToOther' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string longRelativeToOtherDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (long format, 'RelativeToOther' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method static CarbonImmutable|false createFromFormat(string $format, string $time, string|DateTimeZone $timezone = null) Parse a string into a new CarbonImmutable object according to the specified format. * @method static CarbonImmutable __set_state(array $array) https://php.net/manual/en/datetime.set-state.php * * */ class CarbonImmutable extends DateTimeImmutable implements CarbonInterface { use Date; } PK!Ō 'ąsąs$carbon/src/Carbon/List/languages.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return [ /* * ISO 639-2 */ 'ab' => [ 'isoName' => 'Abkhazian', 'nativeName' => 'аҧсуа Š±Ń‹Š·ŃˆÓ™Š°, Š°Ņ§ŃŃˆÓ™Š°', ], 'aa' => [ 'isoName' => 'Afar', 'nativeName' => 'Afaraf', ], 'af' => [ 'isoName' => 'Afrikaans', 'nativeName' => 'Afrikaans', ], 'ak' => [ 'isoName' => 'Akan', 'nativeName' => 'Akan', ], 'sq' => [ 'isoName' => 'Albanian', 'nativeName' => 'Shqip', ], 'am' => [ 'isoName' => 'Amharic', 'nativeName' => 'įŠ įˆ›įˆ­įŠ›', ], 'ar' => [ 'isoName' => 'Arabic', 'nativeName' => 'Ų§Ł„Ų¹Ų±ŲØŁŠŲ©', ], 'an' => [ 'isoName' => 'Aragonese', 'nativeName' => 'aragonĆ©s', ], 'hy' => [ 'isoName' => 'Armenian', 'nativeName' => 'Õ€Õ”ÕµÕ„Ö€Õ„Õ¶', ], 'as' => [ 'isoName' => 'Assamese', 'nativeName' => 'অসমীয়া', ], 'av' => [ 'isoName' => 'Avaric', 'nativeName' => 'авар мацӀ, Š¼Š°Š³Ó€Š°Ń€ŃƒŠ» мацӀ', ], 'ae' => [ 'isoName' => 'Avestan', 'nativeName' => 'avesta', ], 'ay' => [ 'isoName' => 'Aymara', 'nativeName' => 'aymar aru', ], 'az' => [ 'isoName' => 'Azerbaijani', 'nativeName' => 'azərbaycan dili', ], 'bm' => [ 'isoName' => 'Bambara', 'nativeName' => 'bamanankan', ], 'ba' => [ 'isoName' => 'Bashkir', 'nativeName' => 'Š±Š°ŃˆŅ”Š¾Ń€Ń‚ теле', ], 'eu' => [ 'isoName' => 'Basque', 'nativeName' => 'euskara, euskera', ], 'be' => [ 'isoName' => 'Belarusian', 'nativeName' => 'Š±ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń мова', ], 'bn' => [ 'isoName' => 'Bengali', 'nativeName' => 'বাংলা', ], 'bh' => [ 'isoName' => 'Bihari languages', 'nativeName' => 'ą¤­ą„‹ą¤œą¤Ŗą„ą¤°ą„€', ], 'bi' => [ 'isoName' => 'Bislama', 'nativeName' => 'Bislama', ], 'bs' => [ 'isoName' => 'Bosnian', 'nativeName' => 'bosanski jezik', ], 'br' => [ 'isoName' => 'Breton', 'nativeName' => 'brezhoneg', ], 'bg' => [ 'isoName' => 'Bulgarian', 'nativeName' => 'Š±ŃŠŠ»Š³Š°Ń€ŃŠŗŠø език', ], 'my' => [ 'isoName' => 'Burmese', 'nativeName' => 'ဗမာစာ', ], 'ca' => [ 'isoName' => 'Catalan, Valencian', 'nativeName' => 'catalĆ , valenciĆ ', ], 'ch' => [ 'isoName' => 'Chamorro', 'nativeName' => 'Chamoru', ], 'ce' => [ 'isoName' => 'Chechen', 'nativeName' => 'нохчийн мотт', ], 'ny' => [ 'isoName' => 'Chichewa, Chewa, Nyanja', 'nativeName' => 'chiCheŵa, chinyanja', ], 'zh' => [ 'isoName' => 'Chinese', 'nativeName' => '中文 (ZhōngwĆ©n), 汉语,Ā ę¼¢čŖž', ], 'cv' => [ 'isoName' => 'Chuvash', 'nativeName' => 'Ń‡Ó‘Š²Š°Ńˆ чӗлхи', ], 'kw' => [ 'isoName' => 'Cornish', 'nativeName' => 'Kernewek', ], 'co' => [ 'isoName' => 'Corsican', 'nativeName' => 'corsu, lingua corsa', ], 'cr' => [ 'isoName' => 'Cree', 'nativeName' => 'į“€į¦įƒį”­įįį£', ], 'hr' => [ 'isoName' => 'Croatian', 'nativeName' => 'hrvatski jezik', ], 'cs' => [ 'isoName' => 'Czech', 'nativeName' => 'čeÅ”tina, český jazyk', ], 'da' => [ 'isoName' => 'Danish', 'nativeName' => 'dansk', ], 'dv' => [ 'isoName' => 'Divehi, Dhivehi, Maldivian', 'nativeName' => 'Ž‹ŽØŽˆŽ¬Ž€ŽØ', ], 'nl' => [ 'isoName' => 'Dutch, Flemish', 'nativeName' => 'Nederlands, Vlaams', ], 'dz' => [ 'isoName' => 'Dzongkha', 'nativeName' => 'རྫོང་ཁ', ], 'en' => [ 'isoName' => 'English', 'nativeName' => 'English', ], 'eo' => [ 'isoName' => 'Esperanto', 'nativeName' => 'Esperanto', ], 'et' => [ 'isoName' => 'Estonian', 'nativeName' => 'eesti, eesti keel', ], 'ee' => [ 'isoName' => 'Ewe', 'nativeName' => 'EŹ‹egbe', ], 'fo' => [ 'isoName' => 'Faroese', 'nativeName' => 'fĆøroyskt', ], 'fj' => [ 'isoName' => 'Fijian', 'nativeName' => 'vosa Vakaviti', ], 'fi' => [ 'isoName' => 'Finnish', 'nativeName' => 'suomi, suomen kieli', ], 'fr' => [ 'isoName' => 'French', 'nativeName' => 'franƧais', ], 'ff' => [ 'isoName' => 'Fulah', 'nativeName' => 'Fulfulde, Pulaar, Pular', ], 'gl' => [ 'isoName' => 'Galician', 'nativeName' => 'Galego', ], 'ka' => [ 'isoName' => 'Georgian', 'nativeName' => 'įƒ„įƒįƒ įƒ—įƒ£įƒšįƒ˜', ], 'de' => [ 'isoName' => 'German', 'nativeName' => 'Deutsch', ], 'el' => [ 'isoName' => 'GreekĀ (modern)', 'nativeName' => 'ελληνικά', ], 'gn' => [ 'isoName' => 'GuaranĆ­', 'nativeName' => 'AvaƱe\'įŗ½', ], 'gu' => [ 'isoName' => 'Gujarati', 'nativeName' => 'ąŖ—ą«ąŖœąŖ°ąŖ¾ąŖ¤ą«€', ], 'ht' => [ 'isoName' => 'Haitian, Haitian Creole', 'nativeName' => 'Kreyòl ayisyen', ], 'ha' => [ 'isoName' => 'Hausa', 'nativeName' => '(Hausa) Ł‡ŁŽŁˆŁŲ³ŁŽ', ], 'he' => [ 'isoName' => 'HebrewĀ (modern)', 'nativeName' => 'עברית', ], 'hz' => [ 'isoName' => 'Herero', 'nativeName' => 'Otjiherero', ], 'hi' => [ 'isoName' => 'Hindi', 'nativeName' => 'ą¤¹ą¤æą¤Øą„ą¤¦ą„€, ą¤¹ą¤æą¤‚ą¤¦ą„€', ], 'ho' => [ 'isoName' => 'Hiri Motu', 'nativeName' => 'Hiri Motu', ], 'hu' => [ 'isoName' => 'Hungarian', 'nativeName' => 'magyar', ], 'ia' => [ 'isoName' => 'Interlingua', 'nativeName' => 'Interlingua', ], 'id' => [ 'isoName' => 'Indonesian', 'nativeName' => 'Bahasa Indonesia', ], 'ie' => [ 'isoName' => 'Interlingue', 'nativeName' => 'Originally calledĀ Occidental; then Interlingue after WWII', ], 'ga' => [ 'isoName' => 'Irish', 'nativeName' => 'Gaeilge', ], 'ig' => [ 'isoName' => 'Igbo', 'nativeName' => 'AsỄsỄ Igbo', ], 'ik' => [ 'isoName' => 'Inupiaq', 'nativeName' => 'IƱupiaq, IƱupiatun', ], 'io' => [ 'isoName' => 'Ido', 'nativeName' => 'Ido', ], 'is' => [ 'isoName' => 'Icelandic', 'nativeName' => 'ƍslenska', ], 'it' => [ 'isoName' => 'Italian', 'nativeName' => 'Italiano', ], 'iu' => [ 'isoName' => 'Inuktitut', 'nativeName' => 'įƒį“„į’ƒį‘Žį‘į‘¦', ], 'ja' => [ 'isoName' => 'Japanese', 'nativeName' => 'ę—„ęœ¬čŖžĀ (恫恻悓恔)', ], 'jv' => [ 'isoName' => 'Javanese', 'nativeName' => 'ꦧꦱꦗꦮ, Basa Jawa', ], 'kl' => [ 'isoName' => 'Kalaallisut, Greenlandic', 'nativeName' => 'kalaallisut, kalaallit oqaasii', ], 'kn' => [ 'isoName' => 'Kannada', 'nativeName' => 'ą²•ą²Øą³ą²Øą²”', ], 'kr' => [ 'isoName' => 'Kanuri', 'nativeName' => 'Kanuri', ], 'ks' => [ 'isoName' => 'Kashmiri', 'nativeName' => 'ą¤•ą¤¶ą„ą¤®ą„€ą¤°ą„€,Ā ŁƒŲ“Ł…ŁŠŲ±ŁŠā€Ž', ], 'kk' => [ 'isoName' => 'Kazakh', 'nativeName' => 'қазақ тілі', ], 'km' => [ 'isoName' => 'Central Khmer', 'nativeName' => 'įžįŸ’įž˜įŸ‚įžš, įžįŸįž˜įžšįž—įž¶įžŸįž¶, įž—įž¶įžŸįž¶įžįŸ’įž˜įŸ‚įžš', ], 'ki' => [ 'isoName' => 'Kikuyu, Gikuyu', 'nativeName' => 'GÄ©kÅ©yÅ©', ], 'rw' => [ 'isoName' => 'Kinyarwanda', 'nativeName' => 'Ikinyarwanda', ], 'ky' => [ 'isoName' => 'Kirghiz, Kyrgyz', 'nativeName' => 'ŠšŃ‹Ń€Š³Ń‹Š·Ń‡Š°, ŠšŃ‹Ń€Š³Ń‹Š· тили', ], 'kv' => [ 'isoName' => 'Komi', 'nativeName' => 'коми кыв', ], 'kg' => [ 'isoName' => 'Kongo', 'nativeName' => 'Kikongo', ], 'ko' => [ 'isoName' => 'Korean', 'nativeName' => 'ķ•œźµ­ģ–“', ], 'ku' => [ 'isoName' => 'Kurdish', 'nativeName' => 'KurdĆ®,Ā Ś©ŁˆŲ±ŲÆŪŒā€Ž', ], 'kj' => [ 'isoName' => 'Kuanyama, Kwanyama', 'nativeName' => 'Kuanyama', ], 'la' => [ 'isoName' => 'Latin', 'nativeName' => 'latine, lingua latina', ], 'lb' => [ 'isoName' => 'Luxembourgish, Letzeburgesch', 'nativeName' => 'LĆ«tzebuergesch', ], 'lg' => [ 'isoName' => 'Ganda', 'nativeName' => 'Luganda', ], 'li' => [ 'isoName' => 'Limburgan, Limburger, Limburgish', 'nativeName' => 'Limburgs', ], 'ln' => [ 'isoName' => 'Lingala', 'nativeName' => 'LingĆ”la', ], 'lo' => [ 'isoName' => 'Lao', 'nativeName' => 'ąŗžąŗ²ąŗŖąŗ²ąŗ„ąŗ²ąŗ§', ], 'lt' => [ 'isoName' => 'Lithuanian', 'nativeName' => 'lietuvių kalba', ], 'lu' => [ 'isoName' => 'Luba-Katanga', 'nativeName' => 'Kiluba', ], 'lv' => [ 'isoName' => 'Latvian', 'nativeName' => 'latvieÅ”u valoda', ], 'gv' => [ 'isoName' => 'Manx', 'nativeName' => 'Gaelg, Gailck', ], 'mk' => [ 'isoName' => 'Macedonian', 'nativeName' => 'макеГонски јазик', ], 'mg' => [ 'isoName' => 'Malagasy', 'nativeName' => 'fiteny malagasy', ], 'ms' => [ 'isoName' => 'Malay', 'nativeName' => 'Bahasa Melayu, بهاس Ł…Ł„Ų§ŁŠŁˆā€Ž', ], 'ml' => [ 'isoName' => 'Malayalam', 'nativeName' => 'ą“®ą“²ą“Æą“¾ą“³ą“‚', ], 'mt' => [ 'isoName' => 'Maltese', 'nativeName' => 'Malti', ], 'mi' => [ 'isoName' => 'Maori', 'nativeName' => 'te reo Māori', ], 'mr' => [ 'isoName' => 'Marathi', 'nativeName' => 'ą¤®ą¤°ą¤¾ą¤ ą„€', ], 'mh' => [ 'isoName' => 'Marshallese', 'nativeName' => 'Kajin M̧ajeļ', ], 'mn' => [ 'isoName' => 'Mongolian', 'nativeName' => 'Монгол Ń…ŃŠ»', ], 'na' => [ 'isoName' => 'Nauru', 'nativeName' => 'Dorerin Naoero', ], 'nv' => [ 'isoName' => 'Navajo, Navaho', 'nativeName' => 'DinĆ© bizaad', ], 'nd' => [ 'isoName' => 'North Ndebele', 'nativeName' => 'isiNdebele', ], 'ne' => [ 'isoName' => 'Nepali', 'nativeName' => 'ą¤Øą„‡ą¤Ŗą¤¾ą¤²ą„€', ], 'ng' => [ 'isoName' => 'Ndonga', 'nativeName' => 'Owambo', ], 'nb' => [ 'isoName' => 'Norwegian BokmĆ„l', 'nativeName' => 'Norsk BokmĆ„l', ], 'nn' => [ 'isoName' => 'Norwegian Nynorsk', 'nativeName' => 'Norsk Nynorsk', ], 'no' => [ 'isoName' => 'Norwegian', 'nativeName' => 'Norsk', ], 'ii' => [ 'isoName' => 'Sichuan Yi, Nuosu', 'nativeName' => 'ź†ˆźŒ ź’æ Nuosuhxop', ], 'nr' => [ 'isoName' => 'South Ndebele', 'nativeName' => 'isiNdebele', ], 'oc' => [ 'isoName' => 'Occitan', 'nativeName' => 'occitan, lenga d\'òc', ], 'oj' => [ 'isoName' => 'Ojibwa', 'nativeName' => 'įŠį“‚į”‘į“ˆįÆį’§įŽį“', ], 'cu' => [ 'isoName' => 'ChurchĀ Slavic, ChurchĀ Slavonic,Ā OldĀ ChurchĀ Slavonic, OldĀ Slavonic,Ā OldĀ Bulgarian', 'nativeName' => 'Ń©Š·Ń‹ŠŗŃŠ словѣньскъ', ], 'om' => [ 'isoName' => 'Oromo', 'nativeName' => 'Afaan Oromoo', ], 'or' => [ 'isoName' => 'Oriya', 'nativeName' => 'ଓଔ଼ିଆ', ], 'os' => [ 'isoName' => 'Ossetian, Ossetic', 'nativeName' => 'ирон æвзаг', ], 'pa' => [ 'isoName' => 'Panjabi, Punjabi', 'nativeName' => 'ąØŖą©°ąØœąØ¾ąØ¬ą©€', ], 'pi' => [ 'isoName' => 'Pali', 'nativeName' => 'पाओि', ], 'fa' => [ 'isoName' => 'Persian', 'nativeName' => 'فارسی', ], 'pl' => [ 'isoName' => 'Polish', 'nativeName' => 'język polski, polszczyzna', ], 'ps' => [ 'isoName' => 'Pashto, Pushto', 'nativeName' => 'پښتو', ], 'pt' => [ 'isoName' => 'Portuguese', 'nativeName' => 'PortuguĆŖs', ], 'qu' => [ 'isoName' => 'Quechua', 'nativeName' => 'Runa Simi, Kichwa', ], 'rm' => [ 'isoName' => 'Romansh', 'nativeName' => 'Rumantsch Grischun', ], 'rn' => [ 'isoName' => 'Rundi', 'nativeName' => 'Ikirundi', ], 'ro' => [ 'isoName' => 'Romanian, Moldavian, Moldovan', 'nativeName' => 'RomĆ¢nă', ], 'ru' => [ 'isoName' => 'Russian', 'nativeName' => 'Ń€ŃƒŃŃŠŗŠøŠ¹', ], 'sa' => [ 'isoName' => 'Sanskrit', 'nativeName' => 'ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ą¤®ą„', ], 'sc' => [ 'isoName' => 'Sardinian', 'nativeName' => 'sardu', ], 'sd' => [ 'isoName' => 'Sindhi', 'nativeName' => 'ą¤øą¤æą¤Øą„ą¤§ą„€,Ā Ų³Ł†ŚŒŁŠŲŒ Ų³Ł†ŲÆŚ¾ŪŒā€Ž', ], 'se' => [ 'isoName' => 'Northern Sami', 'nativeName' => 'DavvisĆ”megiella', ], 'sm' => [ 'isoName' => 'Samoan', 'nativeName' => 'gagana fa\'a Samoa', ], 'sg' => [ 'isoName' => 'Sango', 'nativeName' => 'yĆ¢ngĆ¢ tĆ® sƤngƶ', ], 'sr' => [ 'isoName' => 'Serbian', 'nativeName' => 'српски језик', ], 'gd' => [ 'isoName' => 'Gaelic, Scottish Gaelic', 'nativeName' => 'GĆ idhlig', ], 'sn' => [ 'isoName' => 'Shona', 'nativeName' => 'chiShona', ], 'si' => [ 'isoName' => 'Sinhala, Sinhalese', 'nativeName' => 'ą·ƒą·’ą¶‚ą·„ą¶½', ], 'sk' => [ 'isoName' => 'Slovak', 'nativeName' => 'Slovenčina, Slovenský Jazyk', ], 'sl' => [ 'isoName' => 'Slovene', 'nativeName' => 'Slovenski Jezik, SlovenŔčina', ], 'so' => [ 'isoName' => 'Somali', 'nativeName' => 'Soomaaliga, af Soomaali', ], 'st' => [ 'isoName' => 'Southern Sotho', 'nativeName' => 'Sesotho', ], 'es' => [ 'isoName' => 'Spanish, Castilian', 'nativeName' => 'EspaƱol', ], 'su' => [ 'isoName' => 'Sundanese', 'nativeName' => 'Basa Sunda', ], 'sw' => [ 'isoName' => 'Swahili', 'nativeName' => 'Kiswahili', ], 'ss' => [ 'isoName' => 'Swati', 'nativeName' => 'SiSwati', ], 'sv' => [ 'isoName' => 'Swedish', 'nativeName' => 'Svenska', ], 'ta' => [ 'isoName' => 'Tamil', 'nativeName' => 'ą®¤ą®®ą®æą®“ąÆ', ], 'te' => [ 'isoName' => 'Telugu', 'nativeName' => 'తెలుగు', ], 'tg' => [ 'isoName' => 'Tajik', 'nativeName' => 'тоҷикӣ,Ā toƧikÄ«,Ā ŲŖŲ§Ų¬ŪŒŚ©ŪŒā€Ž', ], 'th' => [ 'isoName' => 'Thai', 'nativeName' => 'ไทย', ], 'ti' => [ 'isoName' => 'Tigrinya', 'nativeName' => 'į‰µįŒįˆ­įŠ›', ], 'bo' => [ 'isoName' => 'Tibetan', 'nativeName' => 'བོད་པིག', ], 'tk' => [ 'isoName' => 'Turkmen', 'nativeName' => 'Türkmen, Түркмен', ], 'tl' => [ 'isoName' => 'Tagalog', 'nativeName' => 'Wikang Tagalog', ], 'tn' => [ 'isoName' => 'Tswana', 'nativeName' => 'Setswana', ], 'to' => [ 'isoName' => 'TonganĀ (Tonga Islands)', 'nativeName' => 'Faka Tonga', ], 'tr' => [ 'isoName' => 'Turkish', 'nativeName' => 'TürkƧe', ], 'ts' => [ 'isoName' => 'Tsonga', 'nativeName' => 'Xitsonga', ], 'tt' => [ 'isoName' => 'Tatar', 'nativeName' => 'татар теле,Ā tatar tele', ], 'tw' => [ 'isoName' => 'Twi', 'nativeName' => 'Twi', ], 'ty' => [ 'isoName' => 'Tahitian', 'nativeName' => 'Reo Tahiti', ], 'ug' => [ 'isoName' => 'Uighur, Uyghur', 'nativeName' => 'UyĘ£urqə, ā€«Ų¦Ū‡ŁŠŲŗŪ‡Ų±Ś†', ], 'uk' => [ 'isoName' => 'Ukrainian', 'nativeName' => 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ°', ], 'ur' => [ 'isoName' => 'Urdu', 'nativeName' => 'اردو', ], 'uz' => [ 'isoName' => 'Uzbek', 'nativeName' => 'OŹ»zbek,Ā ŠŽŠ·Š±ŠµŠŗ,Ā Ų£Ū‡Ų²ŲØŪŁƒā€Ž', ], 've' => [ 'isoName' => 'Venda', 'nativeName' => 'Tshivenįø“a', ], 'vi' => [ 'isoName' => 'Vietnamese', 'nativeName' => 'Tiįŗæng Việt', ], 'vo' => [ 'isoName' => 'Volapük', 'nativeName' => 'Volapük', ], 'wa' => [ 'isoName' => 'Walloon', 'nativeName' => 'Walon', ], 'cy' => [ 'isoName' => 'Welsh', 'nativeName' => 'Cymraeg', ], 'wo' => [ 'isoName' => 'Wolof', 'nativeName' => 'Wollof', ], 'fy' => [ 'isoName' => 'Western Frisian', 'nativeName' => 'Frysk', ], 'xh' => [ 'isoName' => 'Xhosa', 'nativeName' => 'isiXhosa', ], 'yi' => [ 'isoName' => 'Yiddish', 'nativeName' => 'יי֓דיש', ], 'yo' => [ 'isoName' => 'Yoruba', 'nativeName' => 'YorùbĆ”', ], 'za' => [ 'isoName' => 'Zhuang, Chuang', 'nativeName' => 'SaÉÆ cueŋƅ, Saw cuengh', ], 'zu' => [ 'isoName' => 'Zulu', 'nativeName' => 'isiZulu', ], /* * Add ISO 639-3 languages available in Carbon */ 'agq' => [ 'isoName' => 'Aghem', 'nativeName' => 'Aghem', ], 'agr' => [ 'isoName' => 'Aguaruna', 'nativeName' => 'Aguaruna', ], 'anp' => [ 'isoName' => 'Angika', 'nativeName' => 'Angika', ], 'asa' => [ 'isoName' => 'Asu', 'nativeName' => 'Asu', ], 'ast' => [ 'isoName' => 'Asturian', 'nativeName' => 'Asturian', ], 'ayc' => [ 'isoName' => 'Southern Aymara', 'nativeName' => 'Southern Aymara', ], 'bas' => [ 'isoName' => 'Basaa', 'nativeName' => 'Basaa', ], 'bem' => [ 'isoName' => 'Bemba', 'nativeName' => 'Bemba', ], 'bez' => [ 'isoName' => 'Bena', 'nativeName' => 'Bena', ], 'bhb' => [ 'isoName' => 'Bhili', 'nativeName' => 'Bhili', ], 'bho' => [ 'isoName' => 'Bhojpuri', 'nativeName' => 'Bhojpuri', ], 'brx' => [ 'isoName' => 'Bodo', 'nativeName' => 'Bodo', ], 'byn' => [ 'isoName' => 'Bilin', 'nativeName' => 'Bilin', ], 'ccp' => [ 'isoName' => 'Chakma', 'nativeName' => 'Chakma', ], 'cgg' => [ 'isoName' => 'Chiga', 'nativeName' => 'Chiga', ], 'chr' => [ 'isoName' => 'Cherokee', 'nativeName' => 'Cherokee', ], 'cmn' => [ 'isoName' => 'Chinese', 'nativeName' => 'Chinese', ], 'crh' => [ 'isoName' => 'Crimean Turkish', 'nativeName' => 'Crimean Turkish', ], 'csb' => [ 'isoName' => 'Kashubian', 'nativeName' => 'Kashubian', ], 'dav' => [ 'isoName' => 'Taita', 'nativeName' => 'Taita', ], 'dje' => [ 'isoName' => 'Zarma', 'nativeName' => 'Zarma', ], 'doi' => [ 'isoName' => 'Dogri (macrolanguage)', 'nativeName' => 'Dogri (macrolanguage)', ], 'dsb' => [ 'isoName' => 'Lower Sorbian', 'nativeName' => 'Lower Sorbian', ], 'dua' => [ 'isoName' => 'Duala', 'nativeName' => 'Duala', ], 'dyo' => [ 'isoName' => 'Jola-Fonyi', 'nativeName' => 'Jola-Fonyi', ], 'ebu' => [ 'isoName' => 'Embu', 'nativeName' => 'Embu', ], 'ewo' => [ 'isoName' => 'Ewondo', 'nativeName' => 'Ewondo', ], 'fil' => [ 'isoName' => 'Filipino', 'nativeName' => 'Filipino', ], 'fur' => [ 'isoName' => 'Friulian', 'nativeName' => 'Friulian', ], 'gez' => [ 'isoName' => 'Geez', 'nativeName' => 'Geez', ], 'gom' => [ 'isoName' => 'Konkani, Goan', 'nativeName' => 'ą²•ą³Šą²‚ą²•ą²£ą²æ', ], 'gsw' => [ 'isoName' => 'Swiss German', 'nativeName' => 'Swiss German', ], 'guz' => [ 'isoName' => 'Gusii', 'nativeName' => 'Gusii', ], 'hak' => [ 'isoName' => 'Hakka Chinese', 'nativeName' => 'Hakka Chinese', ], 'haw' => [ 'isoName' => 'Hawaiian', 'nativeName' => 'Hawaiian', ], 'hif' => [ 'isoName' => 'Fiji Hindi', 'nativeName' => 'Fiji Hindi', ], 'hne' => [ 'isoName' => 'Chhattisgarhi', 'nativeName' => 'Chhattisgarhi', ], 'hsb' => [ 'isoName' => 'Upper Sorbian', 'nativeName' => 'Upper Sorbian', ], 'jgo' => [ 'isoName' => 'Ngomba', 'nativeName' => 'Ngomba', ], 'jmc' => [ 'isoName' => 'Machame', 'nativeName' => 'Machame', ], 'kab' => [ 'isoName' => 'Kabyle', 'nativeName' => 'Kabyle', ], 'kam' => [ 'isoName' => 'Kamba', 'nativeName' => 'Kamba', ], 'kde' => [ 'isoName' => 'Makonde', 'nativeName' => 'Makonde', ], 'kea' => [ 'isoName' => 'Kabuverdianu', 'nativeName' => 'Kabuverdianu', ], 'khq' => [ 'isoName' => 'Koyra Chiini', 'nativeName' => 'Koyra Chiini', ], 'kkj' => [ 'isoName' => 'Kako', 'nativeName' => 'Kako', ], 'kln' => [ 'isoName' => 'Kalenjin', 'nativeName' => 'Kalenjin', ], 'kok' => [ 'isoName' => 'Konkani', 'nativeName' => 'Konkani', ], 'ksb' => [ 'isoName' => 'Shambala', 'nativeName' => 'Shambala', ], 'ksf' => [ 'isoName' => 'Bafia', 'nativeName' => 'Bafia', ], 'ksh' => [ 'isoName' => 'Colognian', 'nativeName' => 'Colognian', ], 'lag' => [ 'isoName' => 'Langi', 'nativeName' => 'Langi', ], 'lij' => [ 'isoName' => 'Ligurian', 'nativeName' => 'Ligurian', ], 'lkt' => [ 'isoName' => 'Lakota', 'nativeName' => 'Lakota', ], 'lrc' => [ 'isoName' => 'Northern Luri', 'nativeName' => 'Northern Luri', ], 'luo' => [ 'isoName' => 'Luo', 'nativeName' => 'Luo', ], 'luy' => [ 'isoName' => 'Luyia', 'nativeName' => 'Luyia', ], 'lzh' => [ 'isoName' => 'Literary Chinese', 'nativeName' => 'Literary Chinese', ], 'mag' => [ 'isoName' => 'Magahi', 'nativeName' => 'Magahi', ], 'mai' => [ 'isoName' => 'Maithili', 'nativeName' => 'Maithili', ], 'mas' => [ 'isoName' => 'Masai', 'nativeName' => 'Masai', ], 'mer' => [ 'isoName' => 'Meru', 'nativeName' => 'Meru', ], 'mfe' => [ 'isoName' => 'Morisyen', 'nativeName' => 'Morisyen', ], 'mgh' => [ 'isoName' => 'Makhuwa-Meetto', 'nativeName' => 'Makhuwa-Meetto', ], 'mgo' => [ 'isoName' => 'Metaʼ', 'nativeName' => 'Metaʼ', ], 'mhr' => [ 'isoName' => 'Eastern Mari', 'nativeName' => 'Eastern Mari', ], 'miq' => [ 'isoName' => 'MĆ­skito', 'nativeName' => 'MĆ­skito', ], 'mjw' => [ 'isoName' => 'Karbi', 'nativeName' => 'Karbi', ], 'mni' => [ 'isoName' => 'Manipuri', 'nativeName' => 'Manipuri', ], 'mua' => [ 'isoName' => 'Mundang', 'nativeName' => 'Mundang', ], 'mzn' => [ 'isoName' => 'Mazanderani', 'nativeName' => 'Mazanderani', ], 'nan' => [ 'isoName' => 'Min Nan Chinese', 'nativeName' => 'Min Nan Chinese', ], 'naq' => [ 'isoName' => 'Nama', 'nativeName' => 'Nama', ], 'nds' => [ 'isoName' => 'Low German', 'nativeName' => 'Low German', ], 'nhn' => [ 'isoName' => 'Central Nahuatl', 'nativeName' => 'Central Nahuatl', ], 'niu' => [ 'isoName' => 'Niuean', 'nativeName' => 'Niuean', ], 'nmg' => [ 'isoName' => 'Kwasio', 'nativeName' => 'Kwasio', ], 'nnh' => [ 'isoName' => 'Ngiemboon', 'nativeName' => 'Ngiemboon', ], 'nso' => [ 'isoName' => 'Northern Sotho', 'nativeName' => 'Northern Sotho', ], 'nus' => [ 'isoName' => 'Nuer', 'nativeName' => 'Nuer', ], 'nyn' => [ 'isoName' => 'Nyankole', 'nativeName' => 'Nyankole', ], 'pap' => [ 'isoName' => 'Papiamento', 'nativeName' => 'Papiamento', ], 'prg' => [ 'isoName' => 'Prussian', 'nativeName' => 'Prussian', ], 'quz' => [ 'isoName' => 'Cusco Quechua', 'nativeName' => 'Cusco Quechua', ], 'raj' => [ 'isoName' => 'Rajasthani', 'nativeName' => 'Rajasthani', ], 'rof' => [ 'isoName' => 'Rombo', 'nativeName' => 'Rombo', ], 'rwk' => [ 'isoName' => 'Rwa', 'nativeName' => 'Rwa', ], 'sah' => [ 'isoName' => 'Sakha', 'nativeName' => 'Sakha', ], 'saq' => [ 'isoName' => 'Samburu', 'nativeName' => 'Samburu', ], 'sat' => [ 'isoName' => 'Santali', 'nativeName' => 'Santali', ], 'sbp' => [ 'isoName' => 'Sangu', 'nativeName' => 'Sangu', ], 'scr' => [ 'isoName' => 'Serbo Croatian', 'nativeName' => 'Serbo Croatian', ], 'seh' => [ 'isoName' => 'Sena', 'nativeName' => 'Sena', ], 'ses' => [ 'isoName' => 'Koyraboro Senni', 'nativeName' => 'Koyraboro Senni', ], 'sgs' => [ 'isoName' => 'Samogitian', 'nativeName' => 'Samogitian', ], 'shi' => [ 'isoName' => 'Tachelhit', 'nativeName' => 'Tachelhit', ], 'shn' => [ 'isoName' => 'Shan', 'nativeName' => 'Shan', ], 'shs' => [ 'isoName' => 'Shuswap', 'nativeName' => 'Shuswap', ], 'sid' => [ 'isoName' => 'Sidamo', 'nativeName' => 'Sidamo', ], 'smn' => [ 'isoName' => 'Inari Sami', 'nativeName' => 'Inari Sami', ], 'szl' => [ 'isoName' => 'Silesian', 'nativeName' => 'Silesian', ], 'tcy' => [ 'isoName' => 'Tulu', 'nativeName' => 'Tulu', ], 'teo' => [ 'isoName' => 'Teso', 'nativeName' => 'Teso', ], 'tet' => [ 'isoName' => 'Tetum', 'nativeName' => 'Tetum', ], 'the' => [ 'isoName' => 'Chitwania Tharu', 'nativeName' => 'Chitwania Tharu', ], 'tig' => [ 'isoName' => 'Tigre', 'nativeName' => 'Tigre', ], 'tlh' => [ 'isoName' => 'Klingon', 'nativeName' => 'tlhIngan Hol', ], 'tpi' => [ 'isoName' => 'Tok Pisin', 'nativeName' => 'Tok Pisin', ], 'twq' => [ 'isoName' => 'Tasawaq', 'nativeName' => 'Tasawaq', ], 'tzl' => [ 'isoName' => 'Talossan', 'nativeName' => 'Talossan', ], 'tzm' => [ 'isoName' => 'Tamazight, Central Atlas', 'nativeName' => 'āµœāµŽā“°āµ£āµ‰āµ–āµœ', ], 'unm' => [ 'isoName' => 'Unami', 'nativeName' => 'Unami', ], 'vai' => [ 'isoName' => 'Vai', 'nativeName' => 'Vai', ], 'vun' => [ 'isoName' => 'Vunjo', 'nativeName' => 'Vunjo', ], 'wae' => [ 'isoName' => 'Walser', 'nativeName' => 'Walser', ], 'wal' => [ 'isoName' => 'Wolaytta', 'nativeName' => 'Wolaytta', ], 'xog' => [ 'isoName' => 'Soga', 'nativeName' => 'Soga', ], 'yav' => [ 'isoName' => 'Yangben', 'nativeName' => 'Yangben', ], 'yue' => [ 'isoName' => 'Cantonese', 'nativeName' => 'Cantonese', ], 'yuw' => [ 'isoName' => 'Yau (Morobe Province)', 'nativeName' => 'Yau (Morobe Province)', ], 'zgh' => [ 'isoName' => 'Standard Moroccan Tamazight', 'nativeName' => 'Standard Moroccan Tamazight', ], ]; PK!Mœ ÄÄ"carbon/src/Carbon/List/regions.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * ISO 3166-2 */ return [ 'AD' => 'Andorra', 'AE' => 'United Arab Emirates', 'AF' => 'Afghanistan', 'AG' => 'Antigua and Barbuda', 'AI' => 'Anguilla', 'AL' => 'Albania', 'AM' => 'Armenia', 'AO' => 'Angola', 'AQ' => 'Antarctica', 'AR' => 'Argentina', 'AS' => 'American Samoa', 'AT' => 'Austria', 'AU' => 'Australia', 'AW' => 'Aruba', 'AX' => 'ƅland Islands', 'AZ' => 'Azerbaijan', 'BA' => 'Bosnia and Herzegovina', 'BB' => 'Barbados', 'BD' => 'Bangladesh', 'BE' => 'Belgium', 'BF' => 'Burkina Faso', 'BG' => 'Bulgaria', 'BH' => 'Bahrain', 'BI' => 'Burundi', 'BJ' => 'Benin', 'BL' => 'Saint BarthĆ©lemy', 'BM' => 'Bermuda', 'BN' => 'Brunei Darussalam', 'BO' => 'Bolivia (Plurinational State of)', 'BQ' => 'Bonaire, Sint Eustatius and Saba', 'BR' => 'Brazil', 'BS' => 'Bahamas', 'BT' => 'Bhutan', 'BV' => 'Bouvet Island', 'BW' => 'Botswana', 'BY' => 'Belarus', 'BZ' => 'Belize', 'CA' => 'Canada', 'CC' => 'Cocos (Keeling) Islands', 'CD' => 'Congo, Democratic Republic of the', 'CF' => 'Central African Republic', 'CG' => 'Congo', 'CH' => 'Switzerland', 'CI' => 'CĆ“te d\'Ivoire', 'CK' => 'Cook Islands', 'CL' => 'Chile', 'CM' => 'Cameroon', 'CN' => 'China', 'CO' => 'Colombia', 'CR' => 'Costa Rica', 'CU' => 'Cuba', 'CV' => 'Cabo Verde', 'CW' => 'CuraƧao', 'CX' => 'Christmas Island', 'CY' => 'Cyprus', 'CZ' => 'Czechia', 'DE' => 'Germany', 'DJ' => 'Djibouti', 'DK' => 'Denmark', 'DM' => 'Dominica', 'DO' => 'Dominican Republic', 'DZ' => 'Algeria', 'EC' => 'Ecuador', 'EE' => 'Estonia', 'EG' => 'Egypt', 'EH' => 'Western Sahara', 'ER' => 'Eritrea', 'ES' => 'Spain', 'ET' => 'Ethiopia', 'FI' => 'Finland', 'FJ' => 'Fiji', 'FK' => 'Falkland Islands (Malvinas)', 'FM' => 'Micronesia (Federated States of)', 'FO' => 'Faroe Islands', 'FR' => 'France', 'GA' => 'Gabon', 'GB' => 'United Kingdom of Great Britain and Northern Ireland', 'GD' => 'Grenada', 'GE' => 'Georgia', 'GF' => 'French Guiana', 'GG' => 'Guernsey', 'GH' => 'Ghana', 'GI' => 'Gibraltar', 'GL' => 'Greenland', 'GM' => 'Gambia', 'GN' => 'Guinea', 'GP' => 'Guadeloupe', 'GQ' => 'Equatorial Guinea', 'GR' => 'Greece', 'GS' => 'South Georgia and the South Sandwich Islands', 'GT' => 'Guatemala', 'GU' => 'Guam', 'GW' => 'Guinea-Bissau', 'GY' => 'Guyana', 'HK' => 'Hong Kong', 'HM' => 'Heard Island and McDonald Islands', 'HN' => 'Honduras', 'HR' => 'Croatia', 'HT' => 'Haiti', 'HU' => 'Hungary', 'ID' => 'Indonesia', 'IE' => 'Ireland', 'IL' => 'Israel', 'IM' => 'Isle of Man', 'IN' => 'India', 'IO' => 'British Indian Ocean Territory', 'IQ' => 'Iraq', 'IR' => 'Iran (Islamic Republic of)', 'IS' => 'Iceland', 'IT' => 'Italy', 'JE' => 'Jersey', 'JM' => 'Jamaica', 'JO' => 'Jordan', 'JP' => 'Japan', 'KE' => 'Kenya', 'KG' => 'Kyrgyzstan', 'KH' => 'Cambodia', 'KI' => 'Kiribati', 'KM' => 'Comoros', 'KN' => 'Saint Kitts and Nevis', 'KP' => 'Korea (Democratic People\'s Republic of)', 'KR' => 'Korea, Republic of', 'KW' => 'Kuwait', 'KY' => 'Cayman Islands', 'KZ' => 'Kazakhstan', 'LA' => 'Lao People\'s Democratic Republic', 'LB' => 'Lebanon', 'LC' => 'Saint Lucia', 'LI' => 'Liechtenstein', 'LK' => 'Sri Lanka', 'LR' => 'Liberia', 'LS' => 'Lesotho', 'LT' => 'Lithuania', 'LU' => 'Luxembourg', 'LV' => 'Latvia', 'LY' => 'Libya', 'MA' => 'Morocco', 'MC' => 'Monaco', 'MD' => 'Moldova, Republic of', 'ME' => 'Montenegro', 'MF' => 'Saint Martin (French part)', 'MG' => 'Madagascar', 'MH' => 'Marshall Islands', 'MK' => 'Macedonia, the former Yugoslav Republic of', 'ML' => 'Mali', 'MM' => 'Myanmar', 'MN' => 'Mongolia', 'MO' => 'Macao', 'MP' => 'Northern Mariana Islands', 'MQ' => 'Martinique', 'MR' => 'Mauritania', 'MS' => 'Montserrat', 'MT' => 'Malta', 'MU' => 'Mauritius', 'MV' => 'Maldives', 'MW' => 'Malawi', 'MX' => 'Mexico', 'MY' => 'Malaysia', 'MZ' => 'Mozambique', 'NA' => 'Namibia', 'NC' => 'New Caledonia', 'NE' => 'Niger', 'NF' => 'Norfolk Island', 'NG' => 'Nigeria', 'NI' => 'Nicaragua', 'NL' => 'Netherlands', 'NO' => 'Norway', 'NP' => 'Nepal', 'NR' => 'Nauru', 'NU' => 'Niue', 'NZ' => 'New Zealand', 'OM' => 'Oman', 'PA' => 'Panama', 'PE' => 'Peru', 'PF' => 'French Polynesia', 'PG' => 'Papua New Guinea', 'PH' => 'Philippines', 'PK' => 'Pakistan', 'PL' => 'Poland', 'PM' => 'Saint Pierre and Miquelon', 'PN' => 'Pitcairn', 'PR' => 'Puerto Rico', 'PS' => 'Palestine, State of', 'PT' => 'Portugal', 'PW' => 'Palau', 'PY' => 'Paraguay', 'QA' => 'Qatar', 'RE' => 'RĆ©union', 'RO' => 'Romania', 'RS' => 'Serbia', 'RU' => 'Russian Federation', 'RW' => 'Rwanda', 'SA' => 'Saudi Arabia', 'SB' => 'Solomon Islands', 'SC' => 'Seychelles', 'SD' => 'Sudan', 'SE' => 'Sweden', 'SG' => 'Singapore', 'SH' => 'Saint Helena, Ascension and Tristan da Cunha', 'SI' => 'Slovenia', 'SJ' => 'Svalbard and Jan Mayen', 'SK' => 'Slovakia', 'SL' => 'Sierra Leone', 'SM' => 'San Marino', 'SN' => 'Senegal', 'SO' => 'Somalia', 'SR' => 'Suriname', 'SS' => 'South Sudan', 'ST' => 'Sao Tome and Principe', 'SV' => 'El Salvador', 'SX' => 'Sint Maarten (Dutch part)', 'SY' => 'Syrian Arab Republic', 'SZ' => 'Eswatini', 'TC' => 'Turks and Caicos Islands', 'TD' => 'Chad', 'TF' => 'French Southern Territories', 'TG' => 'Togo', 'TH' => 'Thailand', 'TJ' => 'Tajikistan', 'TK' => 'Tokelau', 'TL' => 'Timor-Leste', 'TM' => 'Turkmenistan', 'TN' => 'Tunisia', 'TO' => 'Tonga', 'TR' => 'Turkey', 'TT' => 'Trinidad and Tobago', 'TV' => 'Tuvalu', 'TW' => 'Taiwan, Province of China', 'TZ' => 'Tanzania, United Republic of', 'UA' => 'Ukraine', 'UG' => 'Uganda', 'UM' => 'United States Minor Outlying Islands', 'US' => 'United States of America', 'UY' => 'Uruguay', 'UZ' => 'Uzbekistan', 'VA' => 'Holy See', 'VC' => 'Saint Vincent and the Grenadines', 'VE' => 'Venezuela (Bolivarian Republic of)', 'VG' => 'Virgin Islands (British)', 'VI' => 'Virgin Islands (U.S.)', 'VN' => 'Viet Nam', 'VU' => 'Vanuatu', 'WF' => 'Wallis and Futuna', 'WS' => 'Samoa', 'YE' => 'Yemen', 'YT' => 'Mayotte', 'ZA' => 'South Africa', 'ZM' => 'Zambia', 'ZW' => 'Zimbabwe', ]; PK!{Ŗ½6ÄÄ!carbon/src/Carbon/Cli/Invoker.phpnuÕIw¶“runWithCli(self::CLI_CLASS_NAME, $parameters); } $function = (($parameters[1] ?? '') === 'install' ? ($parameters[2] ?? null) : null) ?: 'shell_exec'; $function('composer require carbon-cli/carbon-cli --no-interaction'); echo 'Installation succeeded.'; return true; } } PK!:qĶģ ģ 2carbon/src/Carbon/Doctrine/CarbonTypeConverter.phpnuÕIw¶“getCarbonClassName(); if ($value === null || is_a($value, $class)) { return $value; } if ($value instanceof DateTimeInterface) { return $class::instance($value); } $date = null; $error = null; try { $date = $class::parse($value); } catch (Exception $exception) { $error = $exception; } if (!$date) { throw ConversionException::conversionFailedFormat( $value, $this->getName(), 'Y-m-d H:i:s.u or any format supported by '.$class.'::parse()', $error ); } return $date; } /** * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function convertToDatabaseValue($value, AbstractPlatform $platform) { if ($value === null) { return $value; } if ($value instanceof DateTimeInterface || $value instanceof CarbonInterface) { return $value->format('Y-m-d H:i:s.u'); } throw ConversionException::conversionFailedInvalidType( $value, $this->getName(), ['null', 'DateTime', 'Carbon'] ); } } PK!8Ę0%ØØ7carbon/src/Carbon/Doctrine/DateTimeDefaultPrecision.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon; use Carbon\Traits\Date; use DateTime; use DateTimeInterface; use DateTimeZone; /** * A simple API extension for DateTime. * * * * @property int $year * @property int $yearIso * @property int $month * @property int $day * @property int $hour * @property int $minute * @property int $second * @property int $micro * @property int $microsecond * @property int|float|string $timestamp seconds since the Unix Epoch * @property string $englishDayOfWeek the day of week in English * @property string $shortEnglishDayOfWeek the abbreviated day of week in English * @property string $englishMonth the month in English * @property string $shortEnglishMonth the abbreviated month in English * @property string $localeDayOfWeek the day of week in current locale LC_TIME * @property string $shortLocaleDayOfWeek the abbreviated day of week in current locale LC_TIME * @property string $localeMonth the month in current locale LC_TIME * @property string $shortLocaleMonth the abbreviated month in current locale LC_TIME * @property int $milliseconds * @property int $millisecond * @property int $milli * @property int $week 1 through 53 * @property int $isoWeek 1 through 53 * @property int $weekYear year according to week format * @property int $isoWeekYear year according to ISO week format * @property int $dayOfYear 1 through 366 * @property int $age does a diffInYears() with default parameters * @property int $offset the timezone offset in seconds from UTC * @property int $offsetMinutes the timezone offset in minutes from UTC * @property int $offsetHours the timezone offset in hours from UTC * @property CarbonTimeZone $timezone the current timezone * @property CarbonTimeZone $tz alias of $timezone * @property-read int $dayOfWeek 0 (for Sunday) through 6 (for Saturday) * @property-read int $dayOfWeekIso 1 (for Monday) through 7 (for Sunday) * @property-read int $weekOfYear ISO-8601 week number of year, weeks starting on Monday * @property-read int $daysInMonth number of days in the given month * @property-read string $latinMeridiem "am"/"pm" (Ante meridiem or Post meridiem latin lowercase mark) * @property-read string $latinUpperMeridiem "AM"/"PM" (Ante meridiem or Post meridiem latin uppercase mark) * @property-read string $timezoneAbbreviatedName the current timezone abbreviated name * @property-read string $tzAbbrName alias of $timezoneAbbreviatedName * @property-read string $dayName long name of weekday translated according to Carbon locale, in english if no translation available for current language * @property-read string $shortDayName short name of weekday translated according to Carbon locale, in english if no translation available for current language * @property-read string $minDayName very short name of weekday translated according to Carbon locale, in english if no translation available for current language * @property-read string $monthName long name of month translated according to Carbon locale, in english if no translation available for current language * @property-read string $shortMonthName short name of month translated according to Carbon locale, in english if no translation available for current language * @property-read string $meridiem lowercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language * @property-read string $upperMeridiem uppercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language * @property-read int $noZeroHour current hour from 1 to 24 * @property-read int $weeksInYear 51 through 53 * @property-read int $isoWeeksInYear 51 through 53 * @property-read int $weekOfMonth 1 through 5 * @property-read int $weekNumberInMonth 1 through 5 * @property-read int $firstWeekDay 0 through 6 * @property-read int $lastWeekDay 0 through 6 * @property-read int $daysInYear 365 or 366 * @property-read int $quarter the quarter of this instance, 1 - 4 * @property-read int $decade the decade of this instance * @property-read int $century the century of this instance * @property-read int $millennium the millennium of this instance * @property-read bool $dst daylight savings time indicator, true if DST, false otherwise * @property-read bool $local checks if the timezone is local, true if local, false otherwise * @property-read bool $utc checks if the timezone is UTC, true if UTC, false otherwise * @property-read string $timezoneName the current timezone name * @property-read string $tzName alias of $timezoneName * @property-read string $locale locale of the current instance * * @method bool isUtc() Check if the current instance has UTC timezone. (Both isUtc and isUTC cases are valid.) * @method bool isLocal() Check if the current instance has non-UTC timezone. * @method bool isValid() Check if the current instance is a valid date. * @method bool isDST() Check if the current instance is in a daylight saving time. * @method bool isSunday() Checks if the instance day is sunday. * @method bool isMonday() Checks if the instance day is monday. * @method bool isTuesday() Checks if the instance day is tuesday. * @method bool isWednesday() Checks if the instance day is wednesday. * @method bool isThursday() Checks if the instance day is thursday. * @method bool isFriday() Checks if the instance day is friday. * @method bool isSaturday() Checks if the instance day is saturday. * @method bool isSameYear(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same year as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentYear() Checks if the instance is in the same year as the current moment. * @method bool isNextYear() Checks if the instance is in the same year as the current moment next year. * @method bool isLastYear() Checks if the instance is in the same year as the current moment last year. * @method bool isSameWeek(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same week as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentWeek() Checks if the instance is in the same week as the current moment. * @method bool isNextWeek() Checks if the instance is in the same week as the current moment next week. * @method bool isLastWeek() Checks if the instance is in the same week as the current moment last week. * @method bool isSameDay(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same day as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentDay() Checks if the instance is in the same day as the current moment. * @method bool isNextDay() Checks if the instance is in the same day as the current moment next day. * @method bool isLastDay() Checks if the instance is in the same day as the current moment last day. * @method bool isSameHour(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same hour as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentHour() Checks if the instance is in the same hour as the current moment. * @method bool isNextHour() Checks if the instance is in the same hour as the current moment next hour. * @method bool isLastHour() Checks if the instance is in the same hour as the current moment last hour. * @method bool isSameMinute(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same minute as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentMinute() Checks if the instance is in the same minute as the current moment. * @method bool isNextMinute() Checks if the instance is in the same minute as the current moment next minute. * @method bool isLastMinute() Checks if the instance is in the same minute as the current moment last minute. * @method bool isSameSecond(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same second as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentSecond() Checks if the instance is in the same second as the current moment. * @method bool isNextSecond() Checks if the instance is in the same second as the current moment next second. * @method bool isLastSecond() Checks if the instance is in the same second as the current moment last second. * @method bool isSameMicro(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same microsecond as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentMicro() Checks if the instance is in the same microsecond as the current moment. * @method bool isNextMicro() Checks if the instance is in the same microsecond as the current moment next microsecond. * @method bool isLastMicro() Checks if the instance is in the same microsecond as the current moment last microsecond. * @method bool isSameMicrosecond(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same microsecond as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentMicrosecond() Checks if the instance is in the same microsecond as the current moment. * @method bool isNextMicrosecond() Checks if the instance is in the same microsecond as the current moment next microsecond. * @method bool isLastMicrosecond() Checks if the instance is in the same microsecond as the current moment last microsecond. * @method bool isCurrentMonth() Checks if the instance is in the same month as the current moment. * @method bool isNextMonth() Checks if the instance is in the same month as the current moment next month. * @method bool isLastMonth() Checks if the instance is in the same month as the current moment last month. * @method bool isCurrentQuarter() Checks if the instance is in the same quarter as the current moment. * @method bool isNextQuarter() Checks if the instance is in the same quarter as the current moment next quarter. * @method bool isLastQuarter() Checks if the instance is in the same quarter as the current moment last quarter. * @method bool isSameDecade(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same decade as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentDecade() Checks if the instance is in the same decade as the current moment. * @method bool isNextDecade() Checks if the instance is in the same decade as the current moment next decade. * @method bool isLastDecade() Checks if the instance is in the same decade as the current moment last decade. * @method bool isSameCentury(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same century as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentCentury() Checks if the instance is in the same century as the current moment. * @method bool isNextCentury() Checks if the instance is in the same century as the current moment next century. * @method bool isLastCentury() Checks if the instance is in the same century as the current moment last century. * @method bool isSameMillennium(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same millennium as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentMillennium() Checks if the instance is in the same millennium as the current moment. * @method bool isNextMillennium() Checks if the instance is in the same millennium as the current moment next millennium. * @method bool isLastMillennium() Checks if the instance is in the same millennium as the current moment last millennium. * @method $this years(int $value) Set current instance year to the given value. * @method $this year(int $value) Set current instance year to the given value. * @method $this setYears(int $value) Set current instance year to the given value. * @method $this setYear(int $value) Set current instance year to the given value. * @method $this months(int $value) Set current instance month to the given value. * @method $this month(int $value) Set current instance month to the given value. * @method $this setMonths(int $value) Set current instance month to the given value. * @method $this setMonth(int $value) Set current instance month to the given value. * @method $this days(int $value) Set current instance day to the given value. * @method $this day(int $value) Set current instance day to the given value. * @method $this setDays(int $value) Set current instance day to the given value. * @method $this setDay(int $value) Set current instance day to the given value. * @method $this hours(int $value) Set current instance hour to the given value. * @method $this hour(int $value) Set current instance hour to the given value. * @method $this setHours(int $value) Set current instance hour to the given value. * @method $this setHour(int $value) Set current instance hour to the given value. * @method $this minutes(int $value) Set current instance minute to the given value. * @method $this minute(int $value) Set current instance minute to the given value. * @method $this setMinutes(int $value) Set current instance minute to the given value. * @method $this setMinute(int $value) Set current instance minute to the given value. * @method $this seconds(int $value) Set current instance second to the given value. * @method $this second(int $value) Set current instance second to the given value. * @method $this setSeconds(int $value) Set current instance second to the given value. * @method $this setSecond(int $value) Set current instance second to the given value. * @method $this millis(int $value) Set current instance millisecond to the given value. * @method $this milli(int $value) Set current instance millisecond to the given value. * @method $this setMillis(int $value) Set current instance millisecond to the given value. * @method $this setMilli(int $value) Set current instance millisecond to the given value. * @method $this milliseconds(int $value) Set current instance millisecond to the given value. * @method $this millisecond(int $value) Set current instance millisecond to the given value. * @method $this setMilliseconds(int $value) Set current instance millisecond to the given value. * @method $this setMillisecond(int $value) Set current instance millisecond to the given value. * @method $this micros(int $value) Set current instance microsecond to the given value. * @method $this micro(int $value) Set current instance microsecond to the given value. * @method $this setMicros(int $value) Set current instance microsecond to the given value. * @method $this setMicro(int $value) Set current instance microsecond to the given value. * @method $this microseconds(int $value) Set current instance microsecond to the given value. * @method $this microsecond(int $value) Set current instance microsecond to the given value. * @method $this setMicroseconds(int $value) Set current instance microsecond to the given value. * @method $this setMicrosecond(int $value) Set current instance microsecond to the given value. * @method $this addYears(int $value = 1) Add years (the $value count passed in) to the instance (using date interval). * @method $this addYear() Add one year to the instance (using date interval). * @method $this subYears(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval). * @method $this subYear() Sub one year to the instance (using date interval). * @method $this addYearsWithOverflow(int $value = 1) Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method $this addYearWithOverflow() Add one year to the instance (using date interval) with overflow explicitly allowed. * @method $this subYearsWithOverflow(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method $this subYearWithOverflow() Sub one year to the instance (using date interval) with overflow explicitly allowed. * @method $this addYearsWithoutOverflow(int $value = 1) Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this addYearWithoutOverflow() Add one year to the instance (using date interval) with overflow explicitly forbidden. * @method $this subYearsWithoutOverflow(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this subYearWithoutOverflow() Sub one year to the instance (using date interval) with overflow explicitly forbidden. * @method $this addYearsWithNoOverflow(int $value = 1) Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this addYearWithNoOverflow() Add one year to the instance (using date interval) with overflow explicitly forbidden. * @method $this subYearsWithNoOverflow(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this subYearWithNoOverflow() Sub one year to the instance (using date interval) with overflow explicitly forbidden. * @method $this addYearsNoOverflow(int $value = 1) Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this addYearNoOverflow() Add one year to the instance (using date interval) with overflow explicitly forbidden. * @method $this subYearsNoOverflow(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this subYearNoOverflow() Sub one year to the instance (using date interval) with overflow explicitly forbidden. * @method $this addMonths(int $value = 1) Add months (the $value count passed in) to the instance (using date interval). * @method $this addMonth() Add one month to the instance (using date interval). * @method $this subMonths(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval). * @method $this subMonth() Sub one month to the instance (using date interval). * @method $this addMonthsWithOverflow(int $value = 1) Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method $this addMonthWithOverflow() Add one month to the instance (using date interval) with overflow explicitly allowed. * @method $this subMonthsWithOverflow(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method $this subMonthWithOverflow() Sub one month to the instance (using date interval) with overflow explicitly allowed. * @method $this addMonthsWithoutOverflow(int $value = 1) Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this addMonthWithoutOverflow() Add one month to the instance (using date interval) with overflow explicitly forbidden. * @method $this subMonthsWithoutOverflow(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this subMonthWithoutOverflow() Sub one month to the instance (using date interval) with overflow explicitly forbidden. * @method $this addMonthsWithNoOverflow(int $value = 1) Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this addMonthWithNoOverflow() Add one month to the instance (using date interval) with overflow explicitly forbidden. * @method $this subMonthsWithNoOverflow(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this subMonthWithNoOverflow() Sub one month to the instance (using date interval) with overflow explicitly forbidden. * @method $this addMonthsNoOverflow(int $value = 1) Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this addMonthNoOverflow() Add one month to the instance (using date interval) with overflow explicitly forbidden. * @method $this subMonthsNoOverflow(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this subMonthNoOverflow() Sub one month to the instance (using date interval) with overflow explicitly forbidden. * @method $this addDays(int $value = 1) Add days (the $value count passed in) to the instance (using date interval). * @method $this addDay() Add one day to the instance (using date interval). * @method $this subDays(int $value = 1) Sub days (the $value count passed in) to the instance (using date interval). * @method $this subDay() Sub one day to the instance (using date interval). * @method $this addHours(int $value = 1) Add hours (the $value count passed in) to the instance (using date interval). * @method $this addHour() Add one hour to the instance (using date interval). * @method $this subHours(int $value = 1) Sub hours (the $value count passed in) to the instance (using date interval). * @method $this subHour() Sub one hour to the instance (using date interval). * @method $this addMinutes(int $value = 1) Add minutes (the $value count passed in) to the instance (using date interval). * @method $this addMinute() Add one minute to the instance (using date interval). * @method $this subMinutes(int $value = 1) Sub minutes (the $value count passed in) to the instance (using date interval). * @method $this subMinute() Sub one minute to the instance (using date interval). * @method $this addSeconds(int $value = 1) Add seconds (the $value count passed in) to the instance (using date interval). * @method $this addSecond() Add one second to the instance (using date interval). * @method $this subSeconds(int $value = 1) Sub seconds (the $value count passed in) to the instance (using date interval). * @method $this subSecond() Sub one second to the instance (using date interval). * @method $this addMillis(int $value = 1) Add milliseconds (the $value count passed in) to the instance (using date interval). * @method $this addMilli() Add one millisecond to the instance (using date interval). * @method $this subMillis(int $value = 1) Sub milliseconds (the $value count passed in) to the instance (using date interval). * @method $this subMilli() Sub one millisecond to the instance (using date interval). * @method $this addMilliseconds(int $value = 1) Add milliseconds (the $value count passed in) to the instance (using date interval). * @method $this addMillisecond() Add one millisecond to the instance (using date interval). * @method $this subMilliseconds(int $value = 1) Sub milliseconds (the $value count passed in) to the instance (using date interval). * @method $this subMillisecond() Sub one millisecond to the instance (using date interval). * @method $this addMicros(int $value = 1) Add microseconds (the $value count passed in) to the instance (using date interval). * @method $this addMicro() Add one microsecond to the instance (using date interval). * @method $this subMicros(int $value = 1) Sub microseconds (the $value count passed in) to the instance (using date interval). * @method $this subMicro() Sub one microsecond to the instance (using date interval). * @method $this addMicroseconds(int $value = 1) Add microseconds (the $value count passed in) to the instance (using date interval). * @method $this addMicrosecond() Add one microsecond to the instance (using date interval). * @method $this subMicroseconds(int $value = 1) Sub microseconds (the $value count passed in) to the instance (using date interval). * @method $this subMicrosecond() Sub one microsecond to the instance (using date interval). * @method $this addMillennia(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval). * @method $this addMillennium() Add one millennium to the instance (using date interval). * @method $this subMillennia(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval). * @method $this subMillennium() Sub one millennium to the instance (using date interval). * @method $this addMillenniaWithOverflow(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method $this addMillenniumWithOverflow() Add one millennium to the instance (using date interval) with overflow explicitly allowed. * @method $this subMillenniaWithOverflow(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method $this subMillenniumWithOverflow() Sub one millennium to the instance (using date interval) with overflow explicitly allowed. * @method $this addMillenniaWithoutOverflow(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this addMillenniumWithoutOverflow() Add one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method $this subMillenniaWithoutOverflow(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this subMillenniumWithoutOverflow() Sub one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method $this addMillenniaWithNoOverflow(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this addMillenniumWithNoOverflow() Add one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method $this subMillenniaWithNoOverflow(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this subMillenniumWithNoOverflow() Sub one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method $this addMillenniaNoOverflow(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this addMillenniumNoOverflow() Add one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method $this subMillenniaNoOverflow(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this subMillenniumNoOverflow() Sub one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method $this addCenturies(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval). * @method $this addCentury() Add one century to the instance (using date interval). * @method $this subCenturies(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval). * @method $this subCentury() Sub one century to the instance (using date interval). * @method $this addCenturiesWithOverflow(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method $this addCenturyWithOverflow() Add one century to the instance (using date interval) with overflow explicitly allowed. * @method $this subCenturiesWithOverflow(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method $this subCenturyWithOverflow() Sub one century to the instance (using date interval) with overflow explicitly allowed. * @method $this addCenturiesWithoutOverflow(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this addCenturyWithoutOverflow() Add one century to the instance (using date interval) with overflow explicitly forbidden. * @method $this subCenturiesWithoutOverflow(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this subCenturyWithoutOverflow() Sub one century to the instance (using date interval) with overflow explicitly forbidden. * @method $this addCenturiesWithNoOverflow(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this addCenturyWithNoOverflow() Add one century to the instance (using date interval) with overflow explicitly forbidden. * @method $this subCenturiesWithNoOverflow(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this subCenturyWithNoOverflow() Sub one century to the instance (using date interval) with overflow explicitly forbidden. * @method $this addCenturiesNoOverflow(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this addCenturyNoOverflow() Add one century to the instance (using date interval) with overflow explicitly forbidden. * @method $this subCenturiesNoOverflow(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this subCenturyNoOverflow() Sub one century to the instance (using date interval) with overflow explicitly forbidden. * @method $this addDecades(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval). * @method $this addDecade() Add one decade to the instance (using date interval). * @method $this subDecades(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval). * @method $this subDecade() Sub one decade to the instance (using date interval). * @method $this addDecadesWithOverflow(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method $this addDecadeWithOverflow() Add one decade to the instance (using date interval) with overflow explicitly allowed. * @method $this subDecadesWithOverflow(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method $this subDecadeWithOverflow() Sub one decade to the instance (using date interval) with overflow explicitly allowed. * @method $this addDecadesWithoutOverflow(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this addDecadeWithoutOverflow() Add one decade to the instance (using date interval) with overflow explicitly forbidden. * @method $this subDecadesWithoutOverflow(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this subDecadeWithoutOverflow() Sub one decade to the instance (using date interval) with overflow explicitly forbidden. * @method $this addDecadesWithNoOverflow(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this addDecadeWithNoOverflow() Add one decade to the instance (using date interval) with overflow explicitly forbidden. * @method $this subDecadesWithNoOverflow(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this subDecadeWithNoOverflow() Sub one decade to the instance (using date interval) with overflow explicitly forbidden. * @method $this addDecadesNoOverflow(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this addDecadeNoOverflow() Add one decade to the instance (using date interval) with overflow explicitly forbidden. * @method $this subDecadesNoOverflow(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this subDecadeNoOverflow() Sub one decade to the instance (using date interval) with overflow explicitly forbidden. * @method $this addQuarters(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval). * @method $this addQuarter() Add one quarter to the instance (using date interval). * @method $this subQuarters(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval). * @method $this subQuarter() Sub one quarter to the instance (using date interval). * @method $this addQuartersWithOverflow(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method $this addQuarterWithOverflow() Add one quarter to the instance (using date interval) with overflow explicitly allowed. * @method $this subQuartersWithOverflow(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method $this subQuarterWithOverflow() Sub one quarter to the instance (using date interval) with overflow explicitly allowed. * @method $this addQuartersWithoutOverflow(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this addQuarterWithoutOverflow() Add one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method $this subQuartersWithoutOverflow(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this subQuarterWithoutOverflow() Sub one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method $this addQuartersWithNoOverflow(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this addQuarterWithNoOverflow() Add one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method $this subQuartersWithNoOverflow(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this subQuarterWithNoOverflow() Sub one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method $this addQuartersNoOverflow(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this addQuarterNoOverflow() Add one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method $this subQuartersNoOverflow(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method $this subQuarterNoOverflow() Sub one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method $this addWeeks(int $value = 1) Add weeks (the $value count passed in) to the instance (using date interval). * @method $this addWeek() Add one week to the instance (using date interval). * @method $this subWeeks(int $value = 1) Sub weeks (the $value count passed in) to the instance (using date interval). * @method $this subWeek() Sub one week to the instance (using date interval). * @method $this addWeekdays(int $value = 1) Add weekdays (the $value count passed in) to the instance (using date interval). * @method $this addWeekday() Add one weekday to the instance (using date interval). * @method $this subWeekdays(int $value = 1) Sub weekdays (the $value count passed in) to the instance (using date interval). * @method $this subWeekday() Sub one weekday to the instance (using date interval). * @method $this addRealMicros(int $value = 1) Add microseconds (the $value count passed in) to the instance (using timestamp). * @method $this addRealMicro() Add one microsecond to the instance (using timestamp). * @method $this subRealMicros(int $value = 1) Sub microseconds (the $value count passed in) to the instance (using timestamp). * @method $this subRealMicro() Sub one microsecond to the instance (using timestamp). * @method CarbonPeriod microsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each microsecond or every X microseconds if a factor is given. * @method $this addRealMicroseconds(int $value = 1) Add microseconds (the $value count passed in) to the instance (using timestamp). * @method $this addRealMicrosecond() Add one microsecond to the instance (using timestamp). * @method $this subRealMicroseconds(int $value = 1) Sub microseconds (the $value count passed in) to the instance (using timestamp). * @method $this subRealMicrosecond() Sub one microsecond to the instance (using timestamp). * @method CarbonPeriod microsecondsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each microsecond or every X microseconds if a factor is given. * @method $this addRealMillis(int $value = 1) Add milliseconds (the $value count passed in) to the instance (using timestamp). * @method $this addRealMilli() Add one millisecond to the instance (using timestamp). * @method $this subRealMillis(int $value = 1) Sub milliseconds (the $value count passed in) to the instance (using timestamp). * @method $this subRealMilli() Sub one millisecond to the instance (using timestamp). * @method CarbonPeriod millisUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millisecond or every X milliseconds if a factor is given. * @method $this addRealMilliseconds(int $value = 1) Add milliseconds (the $value count passed in) to the instance (using timestamp). * @method $this addRealMillisecond() Add one millisecond to the instance (using timestamp). * @method $this subRealMilliseconds(int $value = 1) Sub milliseconds (the $value count passed in) to the instance (using timestamp). * @method $this subRealMillisecond() Sub one millisecond to the instance (using timestamp). * @method CarbonPeriod millisecondsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millisecond or every X milliseconds if a factor is given. * @method $this addRealSeconds(int $value = 1) Add seconds (the $value count passed in) to the instance (using timestamp). * @method $this addRealSecond() Add one second to the instance (using timestamp). * @method $this subRealSeconds(int $value = 1) Sub seconds (the $value count passed in) to the instance (using timestamp). * @method $this subRealSecond() Sub one second to the instance (using timestamp). * @method CarbonPeriod secondsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each second or every X seconds if a factor is given. * @method $this addRealMinutes(int $value = 1) Add minutes (the $value count passed in) to the instance (using timestamp). * @method $this addRealMinute() Add one minute to the instance (using timestamp). * @method $this subRealMinutes(int $value = 1) Sub minutes (the $value count passed in) to the instance (using timestamp). * @method $this subRealMinute() Sub one minute to the instance (using timestamp). * @method CarbonPeriod minutesUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each minute or every X minutes if a factor is given. * @method $this addRealHours(int $value = 1) Add hours (the $value count passed in) to the instance (using timestamp). * @method $this addRealHour() Add one hour to the instance (using timestamp). * @method $this subRealHours(int $value = 1) Sub hours (the $value count passed in) to the instance (using timestamp). * @method $this subRealHour() Sub one hour to the instance (using timestamp). * @method CarbonPeriod hoursUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each hour or every X hours if a factor is given. * @method $this addRealDays(int $value = 1) Add days (the $value count passed in) to the instance (using timestamp). * @method $this addRealDay() Add one day to the instance (using timestamp). * @method $this subRealDays(int $value = 1) Sub days (the $value count passed in) to the instance (using timestamp). * @method $this subRealDay() Sub one day to the instance (using timestamp). * @method CarbonPeriod daysUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each day or every X days if a factor is given. * @method $this addRealWeeks(int $value = 1) Add weeks (the $value count passed in) to the instance (using timestamp). * @method $this addRealWeek() Add one week to the instance (using timestamp). * @method $this subRealWeeks(int $value = 1) Sub weeks (the $value count passed in) to the instance (using timestamp). * @method $this subRealWeek() Sub one week to the instance (using timestamp). * @method CarbonPeriod weeksUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each week or every X weeks if a factor is given. * @method $this addRealMonths(int $value = 1) Add months (the $value count passed in) to the instance (using timestamp). * @method $this addRealMonth() Add one month to the instance (using timestamp). * @method $this subRealMonths(int $value = 1) Sub months (the $value count passed in) to the instance (using timestamp). * @method $this subRealMonth() Sub one month to the instance (using timestamp). * @method CarbonPeriod monthsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each month or every X months if a factor is given. * @method $this addRealQuarters(int $value = 1) Add quarters (the $value count passed in) to the instance (using timestamp). * @method $this addRealQuarter() Add one quarter to the instance (using timestamp). * @method $this subRealQuarters(int $value = 1) Sub quarters (the $value count passed in) to the instance (using timestamp). * @method $this subRealQuarter() Sub one quarter to the instance (using timestamp). * @method CarbonPeriod quartersUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each quarter or every X quarters if a factor is given. * @method $this addRealYears(int $value = 1) Add years (the $value count passed in) to the instance (using timestamp). * @method $this addRealYear() Add one year to the instance (using timestamp). * @method $this subRealYears(int $value = 1) Sub years (the $value count passed in) to the instance (using timestamp). * @method $this subRealYear() Sub one year to the instance (using timestamp). * @method CarbonPeriod yearsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each year or every X years if a factor is given. * @method $this addRealDecades(int $value = 1) Add decades (the $value count passed in) to the instance (using timestamp). * @method $this addRealDecade() Add one decade to the instance (using timestamp). * @method $this subRealDecades(int $value = 1) Sub decades (the $value count passed in) to the instance (using timestamp). * @method $this subRealDecade() Sub one decade to the instance (using timestamp). * @method CarbonPeriod decadesUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each decade or every X decades if a factor is given. * @method $this addRealCenturies(int $value = 1) Add centuries (the $value count passed in) to the instance (using timestamp). * @method $this addRealCentury() Add one century to the instance (using timestamp). * @method $this subRealCenturies(int $value = 1) Sub centuries (the $value count passed in) to the instance (using timestamp). * @method $this subRealCentury() Sub one century to the instance (using timestamp). * @method CarbonPeriod centuriesUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each century or every X centuries if a factor is given. * @method $this addRealMillennia(int $value = 1) Add millennia (the $value count passed in) to the instance (using timestamp). * @method $this addRealMillennium() Add one millennium to the instance (using timestamp). * @method $this subRealMillennia(int $value = 1) Sub millennia (the $value count passed in) to the instance (using timestamp). * @method $this subRealMillennium() Sub one millennium to the instance (using timestamp). * @method CarbonPeriod millenniaUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millennium or every X millennia if a factor is given. * @method $this roundYear(float $precision = 1, string $function = "round") Round the current instance year with given precision using the given function. * @method $this roundYears(float $precision = 1, string $function = "round") Round the current instance year with given precision using the given function. * @method $this floorYear(float $precision = 1) Truncate the current instance year with given precision. * @method $this floorYears(float $precision = 1) Truncate the current instance year with given precision. * @method $this ceilYear(float $precision = 1) Ceil the current instance year with given precision. * @method $this ceilYears(float $precision = 1) Ceil the current instance year with given precision. * @method $this roundMonth(float $precision = 1, string $function = "round") Round the current instance month with given precision using the given function. * @method $this roundMonths(float $precision = 1, string $function = "round") Round the current instance month with given precision using the given function. * @method $this floorMonth(float $precision = 1) Truncate the current instance month with given precision. * @method $this floorMonths(float $precision = 1) Truncate the current instance month with given precision. * @method $this ceilMonth(float $precision = 1) Ceil the current instance month with given precision. * @method $this ceilMonths(float $precision = 1) Ceil the current instance month with given precision. * @method $this roundDay(float $precision = 1, string $function = "round") Round the current instance day with given precision using the given function. * @method $this roundDays(float $precision = 1, string $function = "round") Round the current instance day with given precision using the given function. * @method $this floorDay(float $precision = 1) Truncate the current instance day with given precision. * @method $this floorDays(float $precision = 1) Truncate the current instance day with given precision. * @method $this ceilDay(float $precision = 1) Ceil the current instance day with given precision. * @method $this ceilDays(float $precision = 1) Ceil the current instance day with given precision. * @method $this roundHour(float $precision = 1, string $function = "round") Round the current instance hour with given precision using the given function. * @method $this roundHours(float $precision = 1, string $function = "round") Round the current instance hour with given precision using the given function. * @method $this floorHour(float $precision = 1) Truncate the current instance hour with given precision. * @method $this floorHours(float $precision = 1) Truncate the current instance hour with given precision. * @method $this ceilHour(float $precision = 1) Ceil the current instance hour with given precision. * @method $this ceilHours(float $precision = 1) Ceil the current instance hour with given precision. * @method $this roundMinute(float $precision = 1, string $function = "round") Round the current instance minute with given precision using the given function. * @method $this roundMinutes(float $precision = 1, string $function = "round") Round the current instance minute with given precision using the given function. * @method $this floorMinute(float $precision = 1) Truncate the current instance minute with given precision. * @method $this floorMinutes(float $precision = 1) Truncate the current instance minute with given precision. * @method $this ceilMinute(float $precision = 1) Ceil the current instance minute with given precision. * @method $this ceilMinutes(float $precision = 1) Ceil the current instance minute with given precision. * @method $this roundSecond(float $precision = 1, string $function = "round") Round the current instance second with given precision using the given function. * @method $this roundSeconds(float $precision = 1, string $function = "round") Round the current instance second with given precision using the given function. * @method $this floorSecond(float $precision = 1) Truncate the current instance second with given precision. * @method $this floorSeconds(float $precision = 1) Truncate the current instance second with given precision. * @method $this ceilSecond(float $precision = 1) Ceil the current instance second with given precision. * @method $this ceilSeconds(float $precision = 1) Ceil the current instance second with given precision. * @method $this roundMillennium(float $precision = 1, string $function = "round") Round the current instance millennium with given precision using the given function. * @method $this roundMillennia(float $precision = 1, string $function = "round") Round the current instance millennium with given precision using the given function. * @method $this floorMillennium(float $precision = 1) Truncate the current instance millennium with given precision. * @method $this floorMillennia(float $precision = 1) Truncate the current instance millennium with given precision. * @method $this ceilMillennium(float $precision = 1) Ceil the current instance millennium with given precision. * @method $this ceilMillennia(float $precision = 1) Ceil the current instance millennium with given precision. * @method $this roundCentury(float $precision = 1, string $function = "round") Round the current instance century with given precision using the given function. * @method $this roundCenturies(float $precision = 1, string $function = "round") Round the current instance century with given precision using the given function. * @method $this floorCentury(float $precision = 1) Truncate the current instance century with given precision. * @method $this floorCenturies(float $precision = 1) Truncate the current instance century with given precision. * @method $this ceilCentury(float $precision = 1) Ceil the current instance century with given precision. * @method $this ceilCenturies(float $precision = 1) Ceil the current instance century with given precision. * @method $this roundDecade(float $precision = 1, string $function = "round") Round the current instance decade with given precision using the given function. * @method $this roundDecades(float $precision = 1, string $function = "round") Round the current instance decade with given precision using the given function. * @method $this floorDecade(float $precision = 1) Truncate the current instance decade with given precision. * @method $this floorDecades(float $precision = 1) Truncate the current instance decade with given precision. * @method $this ceilDecade(float $precision = 1) Ceil the current instance decade with given precision. * @method $this ceilDecades(float $precision = 1) Ceil the current instance decade with given precision. * @method $this roundQuarter(float $precision = 1, string $function = "round") Round the current instance quarter with given precision using the given function. * @method $this roundQuarters(float $precision = 1, string $function = "round") Round the current instance quarter with given precision using the given function. * @method $this floorQuarter(float $precision = 1) Truncate the current instance quarter with given precision. * @method $this floorQuarters(float $precision = 1) Truncate the current instance quarter with given precision. * @method $this ceilQuarter(float $precision = 1) Ceil the current instance quarter with given precision. * @method $this ceilQuarters(float $precision = 1) Ceil the current instance quarter with given precision. * @method $this roundMillisecond(float $precision = 1, string $function = "round") Round the current instance millisecond with given precision using the given function. * @method $this roundMilliseconds(float $precision = 1, string $function = "round") Round the current instance millisecond with given precision using the given function. * @method $this floorMillisecond(float $precision = 1) Truncate the current instance millisecond with given precision. * @method $this floorMilliseconds(float $precision = 1) Truncate the current instance millisecond with given precision. * @method $this ceilMillisecond(float $precision = 1) Ceil the current instance millisecond with given precision. * @method $this ceilMilliseconds(float $precision = 1) Ceil the current instance millisecond with given precision. * @method $this roundMicrosecond(float $precision = 1, string $function = "round") Round the current instance microsecond with given precision using the given function. * @method $this roundMicroseconds(float $precision = 1, string $function = "round") Round the current instance microsecond with given precision using the given function. * @method $this floorMicrosecond(float $precision = 1) Truncate the current instance microsecond with given precision. * @method $this floorMicroseconds(float $precision = 1) Truncate the current instance microsecond with given precision. * @method $this ceilMicrosecond(float $precision = 1) Ceil the current instance microsecond with given precision. * @method $this ceilMicroseconds(float $precision = 1) Ceil the current instance microsecond with given precision. * @method string shortAbsoluteDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'Absolute' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string longAbsoluteDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (long format, 'Absolute' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string shortRelativeDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'Relative' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string longRelativeDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (long format, 'Relative' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string shortRelativeToNowDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'RelativeToNow' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string longRelativeToNowDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (long format, 'RelativeToNow' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string shortRelativeToOtherDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'RelativeToOther' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string longRelativeToOtherDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (long format, 'RelativeToOther' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method static Carbon|false createFromFormat(string $format, string $time, string|DateTimeZone $timezone = null) Parse a string into a new Carbon object according to the specified format. * @method static Carbon __set_state(array $array) https://php.net/manual/en/datetime.set-state.php * * */ class Carbon extends DateTime implements CarbonInterface { use Date; /** * Returns true if the current class/instance is mutable. * * @return bool */ public static function isMutable() { return true; } } PK!P¦cÄŠ2Š2$carbon/src/Carbon/Traits/Options.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; use Carbon\CarbonInterface; use DateTimeInterface; use Throwable; /** * Trait Options. * * Embed base methods to change settings of Carbon classes. * * Depends on the following methods: * * @method \Carbon\Carbon|\Carbon\CarbonImmutable shiftTimezone($timezone) Set the timezone */ trait Options { use Localization; /** * Customizable PHP_INT_SIZE override. * * @var int */ public static $PHPIntSize = PHP_INT_SIZE; /** * First day of week. * * @var int|string */ protected static $weekStartsAt = CarbonInterface::MONDAY; /** * Last day of week. * * @var int|string */ protected static $weekEndsAt = CarbonInterface::SUNDAY; /** * Days of weekend. * * @var array */ protected static $weekendDays = [ CarbonInterface::SATURDAY, CarbonInterface::SUNDAY, ]; /** * Format regex patterns. * * @var array */ protected static $regexFormats = [ 'd' => '(3[01]|[12][0-9]|0[1-9])', 'D' => '(Sun|Mon|Tue|Wed|Thu|Fri|Sat)', 'j' => '([123][0-9]|[1-9])', 'l' => '([a-zA-Z]{2,})', 'N' => '([1-7])', 'S' => '(st|nd|rd|th)', 'w' => '([0-6])', 'z' => '(36[0-5]|3[0-5][0-9]|[12][0-9]{2}|[1-9]?[0-9])', 'W' => '(5[012]|[1-4][0-9]|0?[1-9])', 'F' => '([a-zA-Z]{2,})', 'm' => '(1[012]|0[1-9])', 'M' => '([a-zA-Z]{3})', 'n' => '(1[012]|[1-9])', 't' => '(2[89]|3[01])', 'L' => '(0|1)', 'o' => '([1-9][0-9]{0,4})', 'Y' => '([1-9]?[0-9]{4})', 'y' => '([0-9]{2})', 'a' => '(am|pm)', 'A' => '(AM|PM)', 'B' => '([0-9]{3})', 'g' => '(1[012]|[1-9])', 'G' => '(2[0-3]|1?[0-9])', 'h' => '(1[012]|0[1-9])', 'H' => '(2[0-3]|[01][0-9])', 'i' => '([0-5][0-9])', 's' => '([0-5][0-9])', 'u' => '([0-9]{1,6})', 'v' => '([0-9]{1,3})', 'e' => '([a-zA-Z]{1,5})|([a-zA-Z]*\\/[a-zA-Z]*)', 'I' => '(0|1)', 'O' => '([+-](1[012]|0[0-9])[0134][05])', 'P' => '([+-](1[012]|0[0-9]):[0134][05])', 'T' => '([a-zA-Z]{1,5})', 'Z' => '(-?[1-5]?[0-9]{1,4})', 'U' => '([0-9]*)', // The formats below are combinations of the above formats. 'c' => '(([1-9]?[0-9]{4})-(1[012]|0[1-9])-(3[01]|[12][0-9]|0[1-9])T(2[0-3]|[01][0-9]):([0-5][0-9]):([0-5][0-9])[+-](1[012]|0[0-9]):([0134][05]))', // Y-m-dTH:i:sP 'r' => '(([a-zA-Z]{3}), ([123][0-9]|0[1-9]) ([a-zA-Z]{3}) ([1-9]?[0-9]{4}) (2[0-3]|[01][0-9]):([0-5][0-9]):([0-5][0-9]) [+-](1[012]|0[0-9])([0134][05]))', // D, d M Y H:i:s O ]; /** * Format modifiers (such as available in createFromFormat) regex patterns. * * @var array */ protected static $regexFormatModifiers = [ '*' => '.+', ' ' => '[ ]', '#' => '[;:\\/.,()-]', '?' => '([^a]|[a])', '!' => '', '|' => '', '+' => '', ]; /** * Indicates if months should be calculated with overflow. * Global setting. * * @var bool */ protected static $monthsOverflow = true; /** * Indicates if years should be calculated with overflow. * Global setting. * * @var bool */ protected static $yearsOverflow = true; /** * Indicates if the strict mode is in use. * Global setting. * * @var bool */ protected static $strictModeEnabled = true; /** * Function to call instead of format. * * @var string|callable|null */ protected static $formatFunction = null; /** * Function to call instead of createFromFormat. * * @var string|callable|null */ protected static $createFromFormatFunction = null; /** * Function to call instead of parse. * * @var string|callable|null */ protected static $parseFunction = null; /** * Indicates if months should be calculated with overflow. * Specific setting. * * @var bool|null */ protected $localMonthsOverflow = null; /** * Indicates if years should be calculated with overflow. * Specific setting. * * @var bool|null */ protected $localYearsOverflow = null; /** * Indicates if the strict mode is in use. * Specific setting. * * @var bool|null */ protected $localStrictModeEnabled = null; /** * Options for diffForHumans and forHumans methods. * * @var bool|null */ protected $localHumanDiffOptions = null; /** * Format to use on string cast. * * @var string|null */ protected $localToStringFormat = null; /** * Format to use on JSON serialization. * * @var string|null */ protected $localSerializer = null; /** * Instance-specific macros. * * @var array|null */ protected $localMacros = null; /** * Instance-specific generic macros. * * @var array|null */ protected $localGenericMacros = null; /** * Function to call instead of format. * * @var string|callable|null */ protected $localFormatFunction = null; /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * @see settings * * Enable the strict mode (or disable with passing false). * * @param bool $strictModeEnabled */ public static function useStrictMode($strictModeEnabled = true) { static::$strictModeEnabled = $strictModeEnabled; } /** * Returns true if the strict mode is globally in use, false else. * (It can be overridden in specific instances.) * * @return bool */ public static function isStrictModeEnabled() { return static::$strictModeEnabled; } /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * Or you can use method variants: addMonthsWithOverflow/addMonthsNoOverflow, same variants * are available for quarters, years, decade, centuries, millennia (singular and plural forms). * @see settings * * Indicates if months should be calculated with overflow. * * @param bool $monthsOverflow * * @return void */ public static function useMonthsOverflow($monthsOverflow = true) { static::$monthsOverflow = $monthsOverflow; } /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * Or you can use method variants: addMonthsWithOverflow/addMonthsNoOverflow, same variants * are available for quarters, years, decade, centuries, millennia (singular and plural forms). * @see settings * * Reset the month overflow behavior. * * @return void */ public static function resetMonthsOverflow() { static::$monthsOverflow = true; } /** * Get the month overflow global behavior (can be overridden in specific instances). * * @return bool */ public static function shouldOverflowMonths() { return static::$monthsOverflow; } /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * Or you can use method variants: addYearsWithOverflow/addYearsNoOverflow, same variants * are available for quarters, years, decade, centuries, millennia (singular and plural forms). * @see settings * * Indicates if years should be calculated with overflow. * * @param bool $yearsOverflow * * @return void */ public static function useYearsOverflow($yearsOverflow = true) { static::$yearsOverflow = $yearsOverflow; } /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * Or you can use method variants: addYearsWithOverflow/addYearsNoOverflow, same variants * are available for quarters, years, decade, centuries, millennia (singular and plural forms). * @see settings * * Reset the month overflow behavior. * * @return void */ public static function resetYearsOverflow() { static::$yearsOverflow = true; } /** * Get the month overflow global behavior (can be overridden in specific instances). * * @return bool */ public static function shouldOverflowYears() { return static::$yearsOverflow; } /** * Set specific options. * - strictMode: true|false|null * - monthOverflow: true|false|null * - yearOverflow: true|false|null * - humanDiffOptions: int|null * - toStringFormat: string|Closure|null * - toJsonFormat: string|Closure|null * - locale: string|null * - timezone: \DateTimeZone|string|int|null * - macros: array|null * - genericMacros: array|null * * @param array $settings * * @return $this|static */ public function settings(array $settings) { $this->localStrictModeEnabled = $settings['strictMode'] ?? null; $this->localMonthsOverflow = $settings['monthOverflow'] ?? null; $this->localYearsOverflow = $settings['yearOverflow'] ?? null; $this->localHumanDiffOptions = $settings['humanDiffOptions'] ?? null; $this->localToStringFormat = $settings['toStringFormat'] ?? null; $this->localSerializer = $settings['toJsonFormat'] ?? null; $this->localMacros = $settings['macros'] ?? null; $this->localGenericMacros = $settings['genericMacros'] ?? null; $this->localFormatFunction = $settings['formatFunction'] ?? null; if (isset($settings['locale'])) { $locales = $settings['locale']; if (!\is_array($locales)) { $locales = [$locales]; } $this->locale(...$locales); } if (isset($settings['timezone'])) { return $this->shiftTimezone($settings['timezone']); } return $this; } /** * Returns current local settings. * * @return array */ public function getSettings() { $settings = []; $map = [ 'localStrictModeEnabled' => 'strictMode', 'localMonthsOverflow' => 'monthOverflow', 'localYearsOverflow' => 'yearOverflow', 'localHumanDiffOptions' => 'humanDiffOptions', 'localToStringFormat' => 'toStringFormat', 'localSerializer' => 'toJsonFormat', 'localMacros' => 'macros', 'localGenericMacros' => 'genericMacros', 'locale' => 'locale', 'tzName' => 'timezone', 'localFormatFunction' => 'formatFunction', ]; foreach ($map as $property => $key) { $value = $this->$property ?? null; if ($value !== null) { $settings[$key] = $value; } } return $settings; } /** * Show truthy properties on var_dump(). * * @return array */ public function __debugInfo() { $infos = array_filter(get_object_vars($this), function ($var) { return $var; }); foreach (['dumpProperties', 'constructedObjectId'] as $property) { if (isset($infos[$property])) { unset($infos[$property]); } } $this->addExtraDebugInfos($infos); return $infos; } protected function addExtraDebugInfos(&$infos): void { if ($this instanceof CarbonInterface || $this instanceof DateTimeInterface) { try { if (!isset($infos['date'])) { $infos['date'] = $this->format(CarbonInterface::MOCK_DATETIME_FORMAT); } if (!isset($infos['timezone'])) { $infos['timezone'] = $this->tzName; } } catch (Throwable $exception) { // noop } } } } PK!h*@½'carbon/src/Carbon/Traits/Comparison.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; use BadMethodCallException; use Carbon\CarbonInterface; use Carbon\Exceptions\BadComparisonUnitException; use InvalidArgumentException; /** * Trait Comparison. * * Comparison utils and testers. All the following methods return booleans. * nowWithSameTz * * Depends on the following methods: * * @method static resolveCarbon($date) * @method static copy() * @method static nowWithSameTz() * @method static static yesterday($timezone = null) * @method static static tomorrow($timezone = null) */ trait Comparison { /** * Determines if the instance is equal to another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->eq('2018-07-25 12:45:16'); // true * Carbon::parse('2018-07-25 12:45:16')->eq(Carbon::parse('2018-07-25 12:45:16')); // true * Carbon::parse('2018-07-25 12:45:16')->eq('2018-07-25 12:45:17'); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see equalTo() * * @return bool */ public function eq($date): bool { return $this->equalTo($date); } /** * Determines if the instance is equal to another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->equalTo('2018-07-25 12:45:16'); // true * Carbon::parse('2018-07-25 12:45:16')->equalTo(Carbon::parse('2018-07-25 12:45:16')); // true * Carbon::parse('2018-07-25 12:45:16')->equalTo('2018-07-25 12:45:17'); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @return bool */ public function equalTo($date): bool { return $this == $date; } /** * Determines if the instance is not equal to another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->ne('2018-07-25 12:45:16'); // false * Carbon::parse('2018-07-25 12:45:16')->ne(Carbon::parse('2018-07-25 12:45:16')); // false * Carbon::parse('2018-07-25 12:45:16')->ne('2018-07-25 12:45:17'); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see notEqualTo() * * @return bool */ public function ne($date): bool { return $this->notEqualTo($date); } /** * Determines if the instance is not equal to another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->notEqualTo('2018-07-25 12:45:16'); // false * Carbon::parse('2018-07-25 12:45:16')->notEqualTo(Carbon::parse('2018-07-25 12:45:16')); // false * Carbon::parse('2018-07-25 12:45:16')->notEqualTo('2018-07-25 12:45:17'); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @return bool */ public function notEqualTo($date): bool { return !$this->equalTo($date); } /** * Determines if the instance is greater (after) than another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->gt('2018-07-25 12:45:15'); // true * Carbon::parse('2018-07-25 12:45:16')->gt('2018-07-25 12:45:16'); // false * Carbon::parse('2018-07-25 12:45:16')->gt('2018-07-25 12:45:17'); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see greaterThan() * * @return bool */ public function gt($date): bool { return $this->greaterThan($date); } /** * Determines if the instance is greater (after) than another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->greaterThan('2018-07-25 12:45:15'); // true * Carbon::parse('2018-07-25 12:45:16')->greaterThan('2018-07-25 12:45:16'); // false * Carbon::parse('2018-07-25 12:45:16')->greaterThan('2018-07-25 12:45:17'); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @return bool */ public function greaterThan($date): bool { return $this > $date; } /** * Determines if the instance is greater (after) than another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->isAfter('2018-07-25 12:45:15'); // true * Carbon::parse('2018-07-25 12:45:16')->isAfter('2018-07-25 12:45:16'); // false * Carbon::parse('2018-07-25 12:45:16')->isAfter('2018-07-25 12:45:17'); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see greaterThan() * * @return bool */ public function isAfter($date): bool { return $this->greaterThan($date); } /** * Determines if the instance is greater (after) than or equal to another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->gte('2018-07-25 12:45:15'); // true * Carbon::parse('2018-07-25 12:45:16')->gte('2018-07-25 12:45:16'); // true * Carbon::parse('2018-07-25 12:45:16')->gte('2018-07-25 12:45:17'); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see greaterThanOrEqualTo() * * @return bool */ public function gte($date): bool { return $this->greaterThanOrEqualTo($date); } /** * Determines if the instance is greater (after) than or equal to another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->greaterThanOrEqualTo('2018-07-25 12:45:15'); // true * Carbon::parse('2018-07-25 12:45:16')->greaterThanOrEqualTo('2018-07-25 12:45:16'); // true * Carbon::parse('2018-07-25 12:45:16')->greaterThanOrEqualTo('2018-07-25 12:45:17'); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @return bool */ public function greaterThanOrEqualTo($date): bool { return $this >= $date; } /** * Determines if the instance is less (before) than another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->lt('2018-07-25 12:45:15'); // false * Carbon::parse('2018-07-25 12:45:16')->lt('2018-07-25 12:45:16'); // false * Carbon::parse('2018-07-25 12:45:16')->lt('2018-07-25 12:45:17'); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see lessThan() * * @return bool */ public function lt($date): bool { return $this->lessThan($date); } /** * Determines if the instance is less (before) than another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->lessThan('2018-07-25 12:45:15'); // false * Carbon::parse('2018-07-25 12:45:16')->lessThan('2018-07-25 12:45:16'); // false * Carbon::parse('2018-07-25 12:45:16')->lessThan('2018-07-25 12:45:17'); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @return bool */ public function lessThan($date): bool { return $this < $date; } /** * Determines if the instance is less (before) than another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->isBefore('2018-07-25 12:45:15'); // false * Carbon::parse('2018-07-25 12:45:16')->isBefore('2018-07-25 12:45:16'); // false * Carbon::parse('2018-07-25 12:45:16')->isBefore('2018-07-25 12:45:17'); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see lessThan() * * @return bool */ public function isBefore($date): bool { return $this->lessThan($date); } /** * Determines if the instance is less (before) or equal to another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->lte('2018-07-25 12:45:15'); // false * Carbon::parse('2018-07-25 12:45:16')->lte('2018-07-25 12:45:16'); // true * Carbon::parse('2018-07-25 12:45:16')->lte('2018-07-25 12:45:17'); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see lessThanOrEqualTo() * * @return bool */ public function lte($date): bool { return $this->lessThanOrEqualTo($date); } /** * Determines if the instance is less (before) or equal to another * * @example * ``` * Carbon::parse('2018-07-25 12:45:16')->lessThanOrEqualTo('2018-07-25 12:45:15'); // false * Carbon::parse('2018-07-25 12:45:16')->lessThanOrEqualTo('2018-07-25 12:45:16'); // true * Carbon::parse('2018-07-25 12:45:16')->lessThanOrEqualTo('2018-07-25 12:45:17'); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @return bool */ public function lessThanOrEqualTo($date): bool { return $this <= $date; } /** * Determines if the instance is between two others. * * The third argument allow you to specify if bounds are included or not (true by default) * but for when you including/excluding bounds may produce different results in your application, * we recommend to use the explicit methods ->betweenIncluded() or ->betweenExcluded() instead. * * @example * ``` * Carbon::parse('2018-07-25')->between('2018-07-14', '2018-08-01'); // true * Carbon::parse('2018-07-25')->between('2018-08-01', '2018-08-20'); // false * Carbon::parse('2018-07-25')->between('2018-07-25', '2018-08-01'); // true * Carbon::parse('2018-07-25')->between('2018-07-25', '2018-08-01', false); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date1 * @param \Carbon\Carbon|\DateTimeInterface|mixed $date2 * @param bool $equal Indicates if an equal to comparison should be done * * @return bool */ public function between($date1, $date2, $equal = true): bool { $date1 = $this->resolveCarbon($date1); $date2 = $this->resolveCarbon($date2); if ($date1->greaterThan($date2)) { [$date1, $date2] = [$date2, $date1]; } if ($equal) { return $this->greaterThanOrEqualTo($date1) && $this->lessThanOrEqualTo($date2); } return $this->greaterThan($date1) && $this->lessThan($date2); } /** * Determines if the instance is between two others, bounds included. * * @example * ``` * Carbon::parse('2018-07-25')->betweenIncluded('2018-07-14', '2018-08-01'); // true * Carbon::parse('2018-07-25')->betweenIncluded('2018-08-01', '2018-08-20'); // false * Carbon::parse('2018-07-25')->betweenIncluded('2018-07-25', '2018-08-01'); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date1 * @param \Carbon\Carbon|\DateTimeInterface|mixed $date2 * * @return bool */ public function betweenIncluded($date1, $date2): bool { return $this->between($date1, $date2, true); } /** * Determines if the instance is between two others, bounds excluded. * * @example * ``` * Carbon::parse('2018-07-25')->betweenExcluded('2018-07-14', '2018-08-01'); // true * Carbon::parse('2018-07-25')->betweenExcluded('2018-08-01', '2018-08-20'); // false * Carbon::parse('2018-07-25')->betweenExcluded('2018-07-25', '2018-08-01'); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date1 * @param \Carbon\Carbon|\DateTimeInterface|mixed $date2 * * @return bool */ public function betweenExcluded($date1, $date2): bool { return $this->between($date1, $date2, false); } /** * Determines if the instance is between two others * * @example * ``` * Carbon::parse('2018-07-25')->isBetween('2018-07-14', '2018-08-01'); // true * Carbon::parse('2018-07-25')->isBetween('2018-08-01', '2018-08-20'); // false * Carbon::parse('2018-07-25')->isBetween('2018-07-25', '2018-08-01'); // true * Carbon::parse('2018-07-25')->isBetween('2018-07-25', '2018-08-01', false); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date1 * @param \Carbon\Carbon|\DateTimeInterface|mixed $date2 * @param bool $equal Indicates if an equal to comparison should be done * * @return bool */ public function isBetween($date1, $date2, $equal = true): bool { return $this->between($date1, $date2, $equal); } /** * Determines if the instance is a weekday. * * @example * ``` * Carbon::parse('2019-07-14')->isWeekday(); // false * Carbon::parse('2019-07-15')->isWeekday(); // true * ``` * * @return bool */ public function isWeekday() { return !$this->isWeekend(); } /** * Determines if the instance is a weekend day. * * @example * ``` * Carbon::parse('2019-07-14')->isWeekend(); // true * Carbon::parse('2019-07-15')->isWeekend(); // false * ``` * * @return bool */ public function isWeekend() { return \in_array($this->dayOfWeek, static::$weekendDays); } /** * Determines if the instance is yesterday. * * @example * ``` * Carbon::yesterday()->isYesterday(); // true * Carbon::tomorrow()->isYesterday(); // false * ``` * * @return bool */ public function isYesterday() { return $this->toDateString() === static::yesterday($this->getTimezone())->toDateString(); } /** * Determines if the instance is today. * * @example * ``` * Carbon::today()->isToday(); // true * Carbon::tomorrow()->isToday(); // false * ``` * * @return bool */ public function isToday() { return $this->toDateString() === $this->nowWithSameTz()->toDateString(); } /** * Determines if the instance is tomorrow. * * @example * ``` * Carbon::tomorrow()->isTomorrow(); // true * Carbon::yesterday()->isTomorrow(); // false * ``` * * @return bool */ public function isTomorrow() { return $this->toDateString() === static::tomorrow($this->getTimezone())->toDateString(); } /** * Determines if the instance is in the future, ie. greater (after) than now. * * @example * ``` * Carbon::now()->addHours(5)->isFuture(); // true * Carbon::now()->subHours(5)->isFuture(); // false * ``` * * @return bool */ public function isFuture() { return $this->greaterThan($this->nowWithSameTz()); } /** * Determines if the instance is in the past, ie. less (before) than now. * * @example * ``` * Carbon::now()->subHours(5)->isPast(); // true * Carbon::now()->addHours(5)->isPast(); // false * ``` * * @return bool */ public function isPast() { return $this->lessThan($this->nowWithSameTz()); } /** * Determines if the instance is a leap year. * * @example * ``` * Carbon::parse('2020-01-01')->isLeapYear(); // true * Carbon::parse('2019-01-01')->isLeapYear(); // false * ``` * * @return bool */ public function isLeapYear() { return $this->rawFormat('L') === '1'; } /** * Determines if the instance is a long year * * @example * ``` * Carbon::parse('2015-01-01')->isLongYear(); // true * Carbon::parse('2016-01-01')->isLongYear(); // false * ``` * * @see https://en.wikipedia.org/wiki/ISO_8601#Week_dates * * @return bool */ public function isLongYear() { return static::create($this->year, 12, 28, 0, 0, 0, $this->tz)->weekOfYear === 53; } /** * Compares the formatted values of the two dates. * * @example * ``` * Carbon::parse('2019-06-13')->isSameAs('Y-d', Carbon::parse('2019-12-13')); // true * Carbon::parse('2019-06-13')->isSameAs('Y-d', Carbon::parse('2019-06-14')); // false * ``` * * @param string $format date formats to compare. * @param \Carbon\Carbon|\DateTimeInterface|string|null $date instance to compare with or null to use current day. * * @return bool */ public function isSameAs($format, $date = null) { return $this->rawFormat($format) === $this->resolveCarbon($date)->rawFormat($format); } /** * Determines if the instance is in the current unit given. * * @example * ``` * Carbon::parse('2019-01-13')->isSameUnit('year', Carbon::parse('2019-12-25')); // true * Carbon::parse('2018-12-13')->isSameUnit('year', Carbon::parse('2019-12-25')); // false * ``` * * @param string $unit singular unit string * @param \Carbon\Carbon|\DateTimeInterface|null $date instance to compare with or null to use current day. * * @throws BadComparisonUnitException * * @return bool */ public function isSameUnit($unit, $date = null) { $units = [ // @call isSameUnit 'year' => 'Y', // @call isSameUnit 'week' => 'o-W', // @call isSameUnit 'day' => 'Y-m-d', // @call isSameUnit 'hour' => 'Y-m-d H', // @call isSameUnit 'minute' => 'Y-m-d H:i', // @call isSameUnit 'second' => 'Y-m-d H:i:s', // @call isSameUnit 'micro' => 'Y-m-d H:i:s.u', // @call isSameUnit 'microsecond' => 'Y-m-d H:i:s.u', ]; if (!isset($units[$unit])) { if (isset($this->$unit)) { return $this->$unit === $this->resolveCarbon($date)->$unit; } if ($this->localStrictModeEnabled ?? static::isStrictModeEnabled()) { throw new BadComparisonUnitException($unit); } return false; } return $this->isSameAs($units[$unit], $date); } /** * Determines if the instance is in the current unit given. * * @example * ``` * Carbon::now()->isCurrentUnit('hour'); // true * Carbon::now()->subHours(2)->isCurrentUnit('hour'); // false * ``` * * @param string $unit The unit to test. * * @throws BadMethodCallException * * @return bool */ public function isCurrentUnit($unit) { return $this->{'isSame'.ucfirst($unit)}(); } /** * Checks if the passed in date is in the same quarter as the instance quarter (and year if needed). * * @example * ``` * Carbon::parse('2019-01-12')->isSameQuarter(Carbon::parse('2019-03-01')); // true * Carbon::parse('2019-01-12')->isSameQuarter(Carbon::parse('2019-04-01')); // false * Carbon::parse('2019-01-12')->isSameQuarter(Carbon::parse('2018-03-01')); // false * Carbon::parse('2019-01-12')->isSameQuarter(Carbon::parse('2018-03-01'), false); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|string|null $date The instance to compare with or null to use current day. * @param bool $ofSameYear Check if it is the same month in the same year. * * @return bool */ public function isSameQuarter($date = null, $ofSameYear = true) { $date = $this->resolveCarbon($date); return $this->quarter === $date->quarter && (!$ofSameYear || $this->isSameYear($date)); } /** * Checks if the passed in date is in the same month as the instanceĀ“s month. * * @example * ``` * Carbon::parse('2019-01-12')->isSameMonth(Carbon::parse('2019-01-01')); // true * Carbon::parse('2019-01-12')->isSameMonth(Carbon::parse('2019-02-01')); // false * Carbon::parse('2019-01-12')->isSameMonth(Carbon::parse('2018-01-01')); // false * Carbon::parse('2019-01-12')->isSameMonth(Carbon::parse('2018-01-01'), false); // true * ``` * * @param \Carbon\Carbon|\DateTimeInterface|null $date The instance to compare with or null to use the current date. * @param bool $ofSameYear Check if it is the same month in the same year. * * @return bool */ public function isSameMonth($date = null, $ofSameYear = true) { return $this->isSameAs($ofSameYear ? 'Y-m' : 'm', $date); } /** * Checks if this day is a specific day of the week. * * @example * ``` * Carbon::parse('2019-07-17')->isDayOfWeek(Carbon::WEDNESDAY); // true * Carbon::parse('2019-07-17')->isDayOfWeek(Carbon::FRIDAY); // false * Carbon::parse('2019-07-17')->isDayOfWeek('Wednesday'); // true * Carbon::parse('2019-07-17')->isDayOfWeek('Friday'); // false * ``` * * @param int $dayOfWeek * * @return bool */ public function isDayOfWeek($dayOfWeek) { if (\is_string($dayOfWeek) && \defined($constant = static::class.'::'.strtoupper($dayOfWeek))) { $dayOfWeek = \constant($constant); } return $this->dayOfWeek === $dayOfWeek; } /** * Check if its the birthday. Compares the date/month values of the two dates. * * @example * ``` * Carbon::now()->subYears(5)->isBirthday(); // true * Carbon::now()->subYears(5)->subDay()->isBirthday(); // false * Carbon::parse('2019-06-05')->isBirthday(Carbon::parse('2001-06-05')); // true * Carbon::parse('2019-06-05')->isBirthday(Carbon::parse('2001-06-06')); // false * ``` * * @param \Carbon\Carbon|\DateTimeInterface|null $date The instance to compare with or null to use current day. * * @return bool */ public function isBirthday($date = null) { return $this->isSameAs('md', $date); } /** * Check if today is the last day of the Month * * @example * ``` * Carbon::parse('2019-02-28')->isLastOfMonth(); // true * Carbon::parse('2019-03-28')->isLastOfMonth(); // false * Carbon::parse('2019-03-30')->isLastOfMonth(); // false * Carbon::parse('2019-03-31')->isLastOfMonth(); // true * Carbon::parse('2019-04-30')->isLastOfMonth(); // true * ``` * * @return bool */ public function isLastOfMonth() { return $this->day === $this->daysInMonth; } /** * Check if the instance is start of day / midnight. * * @example * ``` * Carbon::parse('2019-02-28 00:00:00')->isStartOfDay(); // true * Carbon::parse('2019-02-28 00:00:00.999999')->isStartOfDay(); // true * Carbon::parse('2019-02-28 00:00:01')->isStartOfDay(); // false * Carbon::parse('2019-02-28 00:00:00.000000')->isStartOfDay(true); // true * Carbon::parse('2019-02-28 00:00:00.000012')->isStartOfDay(true); // false * ``` * * @param bool $checkMicroseconds check time at microseconds precision * * @return bool */ public function isStartOfDay($checkMicroseconds = false) { /* @var CarbonInterface $this */ return $checkMicroseconds ? $this->rawFormat('H:i:s.u') === '00:00:00.000000' : $this->rawFormat('H:i:s') === '00:00:00'; } /** * Check if the instance is end of day. * * @example * ``` * Carbon::parse('2019-02-28 23:59:59.999999')->isEndOfDay(); // true * Carbon::parse('2019-02-28 23:59:59.123456')->isEndOfDay(); // true * Carbon::parse('2019-02-28 23:59:59')->isEndOfDay(); // true * Carbon::parse('2019-02-28 23:59:58.999999')->isEndOfDay(); // false * Carbon::parse('2019-02-28 23:59:59.999999')->isEndOfDay(true); // true * Carbon::parse('2019-02-28 23:59:59.123456')->isEndOfDay(true); // false * Carbon::parse('2019-02-28 23:59:59')->isEndOfDay(true); // false * ``` * * @param bool $checkMicroseconds check time at microseconds precision * * @return bool */ public function isEndOfDay($checkMicroseconds = false) { /* @var CarbonInterface $this */ return $checkMicroseconds ? $this->rawFormat('H:i:s.u') === '23:59:59.999999' : $this->rawFormat('H:i:s') === '23:59:59'; } /** * Check if the instance is start of day / midnight. * * @example * ``` * Carbon::parse('2019-02-28 00:00:00')->isMidnight(); // true * Carbon::parse('2019-02-28 00:00:00.999999')->isMidnight(); // true * Carbon::parse('2019-02-28 00:00:01')->isMidnight(); // false * ``` * * @return bool */ public function isMidnight() { return $this->isStartOfDay(); } /** * Check if the instance is midday. * * @example * ``` * Carbon::parse('2019-02-28 11:59:59.999999')->isMidday(); // false * Carbon::parse('2019-02-28 12:00:00')->isMidday(); // true * Carbon::parse('2019-02-28 12:00:00.999999')->isMidday(); // true * Carbon::parse('2019-02-28 12:00:01')->isMidday(); // false * ``` * * @return bool */ public function isMidday() { /* @var CarbonInterface $this */ return $this->rawFormat('G:i:s') === static::$midDayAt.':00:00'; } /** * Checks if the (date)time string is in a given format. * * @example * ``` * Carbon::hasFormat('11:12:45', 'h:i:s'); // true * Carbon::hasFormat('13:12:45', 'h:i:s'); // false * ``` * * @param string $date * @param string $format * * @return bool */ public static function hasFormat($date, $format) { // createFromFormat() is known to handle edge cases silently. // E.g. "1975-5-1" (Y-n-j) will still be parsed correctly when "Y-m-d" is supplied as the format. // To ensure we're really testing against our desired format, perform an additional regex validation. return self::matchFormatPattern((string) $date, preg_quote((string) $format, '/'), static::$regexFormats); } /** * Checks if the (date)time string is in a given format. * * @example * ``` * Carbon::hasFormatWithModifiers('31/08/2015', 'd#m#Y'); // true * Carbon::hasFormatWithModifiers('31/08/2015', 'm#d#Y'); // false * ``` * * @param string $date * @param string $format * * @return bool */ public static function hasFormatWithModifiers($date, $format): bool { return self::matchFormatPattern((string) $date, (string) $format, array_merge(static::$regexFormats, static::$regexFormatModifiers)); } /** * Checks if the (date)time string is in a given format and valid to create a * new instance. * * @example * ``` * Carbon::canBeCreatedFromFormat('11:12:45', 'h:i:s'); // true * Carbon::canBeCreatedFromFormat('13:12:45', 'h:i:s'); // false * ``` * * @param string $date * @param string $format * * @return bool */ public static function canBeCreatedFromFormat($date, $format) { try { // Try to create a DateTime object. Throws an InvalidArgumentException if the provided time string // doesn't match the format in any way. if (!static::rawCreateFromFormat($format, $date)) { return false; } } catch (InvalidArgumentException $e) { return false; } return static::hasFormatWithModifiers($date, $format); } /** * Returns true if the current date matches the given string. * * @example * ``` * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('2019')); // true * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('2018')); // false * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('2019-06')); // true * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('06-02')); // true * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('2019-06-02')); // true * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('Sunday')); // true * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('June')); // true * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('12:23')); // true * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('12:23:45')); // true * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('12:23:00')); // false * var_dump(Carbon::parse('2019-06-02 12:23:45')->is('12h')); // true * var_dump(Carbon::parse('2019-06-02 15:23:45')->is('3pm')); // true * var_dump(Carbon::parse('2019-06-02 15:23:45')->is('3am')); // false * ``` * * @param string $tester day name, month name, hour, date, etc. as string * * @return bool */ public function is(string $tester) { $tester = trim($tester); if (preg_match('/^\d+$/', $tester)) { return $this->year === \intval($tester); } if (preg_match('/^\d{3,}-\d{1,2}$/', $tester)) { return $this->isSameMonth(static::parse($tester)); } if (preg_match('/^\d{1,2}-\d{1,2}$/', $tester)) { return $this->isSameDay(static::parse($this->year.'-'.$tester)); } $modifier = preg_replace('/(\d)h$/i', '$1:00', $tester); /* @var CarbonInterface $max */ $median = static::parse('5555-06-15 12:30:30.555555')->modify($modifier); $current = $this->copy(); /* @var CarbonInterface $other */ $other = $this->copy()->modify($modifier); if ($current->eq($other)) { return true; } if (preg_match('/\d:\d{1,2}:\d{1,2}$/', $tester)) { return $current->startOfSecond()->eq($other); } if (preg_match('/\d:\d{1,2}$/', $tester)) { return $current->startOfMinute()->eq($other); } if (preg_match('/\d(h|am|pm)$/', $tester)) { return $current->startOfHour()->eq($other); } if (preg_match( '/^(january|february|march|april|may|june|july|august|september|october|november|december)\s+\d+$/i', $tester )) { return $current->startOfMonth()->eq($other->startOfMonth()); } $units = [ 'month' => [1, 'year'], 'day' => [1, 'month'], 'hour' => [0, 'day'], 'minute' => [0, 'hour'], 'second' => [0, 'minute'], 'microsecond' => [0, 'second'], ]; foreach ($units as $unit => [$minimum, $startUnit]) { if ($median->$unit === $minimum) { $current = $current->startOf($startUnit); break; } } return $current->eq($other); } /** * Checks if the (date)time string is in a given format with * given list of pattern replacements. * * @example * ``` * Carbon::hasFormat('11:12:45', 'h:i:s'); // true * Carbon::hasFormat('13:12:45', 'h:i:s'); // false * ``` * * @param string $date * @param string $format * @param array $replacements * * @return bool */ private static function matchFormatPattern(string $date, string $format, array $replacements): bool { // Preg quote, but remove escaped backslashes since we'll deal with escaped characters in the format string. $regex = str_replace('\\\\', '\\', $format); // Replace not-escaped letters $regex = preg_replace_callback( '/(? * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; use Carbon\Carbon; use Carbon\CarbonImmutable; use Carbon\CarbonInterface; use Carbon\CarbonInterval; use Carbon\CarbonPeriod; use Carbon\Exceptions\UnitException; use Closure; use DateTime; use DateTimeImmutable; /** * Trait Converter. * * Change date into different string formats and types and * handle the string cast. * * Depends on the following methods: * * @method static copy() */ trait Converter { /** * Format to use for __toString method when type juggling occurs. * * @var string|Closure|null */ protected static $toStringFormat = null; /** * Reset the format used to the default when type juggling a Carbon instance to a string * * @return void */ public static function resetToStringFormat() { static::setToStringFormat(null); } /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather let Carbon object being casted to string with DEFAULT_TO_STRING_FORMAT, and * use other method or custom format passed to format() method if you need to dump an other string * format. * * Set the default format used when type juggling a Carbon instance to a string * * @param string|Closure|null $format * * @return void */ public static function setToStringFormat($format) { static::$toStringFormat = $format; } /** * Returns the formatted date string on success or FALSE on failure. * * @see https://php.net/manual/en/datetime.format.php * * @param string $format * * @return string */ public function format($format) { $function = $this->localFormatFunction ?: static::$formatFunction; if (!$function) { return $this->rawFormat($format); } if (\is_string($function) && method_exists($this, $function)) { $function = [$this, $function]; } return $function(...\func_get_args()); } /** * @see https://php.net/manual/en/datetime.format.php * * @param string $format * * @return string */ public function rawFormat($format) { return parent::format($format); } /** * Format the instance as a string using the set format * * @example * ``` * echo Carbon::now(); // Carbon instances can be casted to string * ``` * * @return string */ public function __toString() { $format = $this->localToStringFormat ?? static::$toStringFormat; return $format instanceof Closure ? $format($this) : $this->rawFormat($format ?: ( \defined('static::DEFAULT_TO_STRING_FORMAT') ? static::DEFAULT_TO_STRING_FORMAT : CarbonInterface::DEFAULT_TO_STRING_FORMAT )); } /** * Format the instance as date * * @example * ``` * echo Carbon::now()->toDateString(); * ``` * * @return string */ public function toDateString() { return $this->rawFormat('Y-m-d'); } /** * Format the instance as a readable date * * @example * ``` * echo Carbon::now()->toFormattedDateString(); * ``` * * @return string */ public function toFormattedDateString() { return $this->rawFormat('M j, Y'); } /** * Format the instance as time * * @example * ``` * echo Carbon::now()->toTimeString(); * ``` * * @param string $unitPrecision * * @return string */ public function toTimeString($unitPrecision = 'second') { return $this->rawFormat(static::getTimeFormatByPrecision($unitPrecision)); } /** * Format the instance as date and time * * @example * ``` * echo Carbon::now()->toDateTimeString(); * ``` * * @param string $unitPrecision * * @return string */ public function toDateTimeString($unitPrecision = 'second') { return $this->rawFormat('Y-m-d '.static::getTimeFormatByPrecision($unitPrecision)); } /** * Return a format from H:i to H:i:s.u according to given unit precision. * * @param string $unitPrecision "minute", "second", "millisecond" or "microsecond" * * @return string */ public static function getTimeFormatByPrecision($unitPrecision) { switch (static::singularUnit($unitPrecision)) { case 'minute': return 'H:i'; case 'second': return 'H:i:s'; case 'm': case 'millisecond': return 'H:i:s.v'; case 'µ': case 'microsecond': return 'H:i:s.u'; } throw new UnitException('Precision unit expected among: minute, second, millisecond and microsecond.'); } /** * Format the instance as date and time T-separated with no timezone * * @example * ``` * echo Carbon::now()->toDateTimeLocalString(); * echo "\n"; * echo Carbon::now()->toDateTimeLocalString('minute'); // You can specify precision among: minute, second, millisecond and microsecond * ``` * * @param string $unitPrecision * * @return string */ public function toDateTimeLocalString($unitPrecision = 'second') { return $this->rawFormat('Y-m-d\T'.static::getTimeFormatByPrecision($unitPrecision)); } /** * Format the instance with day, date and time * * @example * ``` * echo Carbon::now()->toDayDateTimeString(); * ``` * * @return string */ public function toDayDateTimeString() { return $this->rawFormat('D, M j, Y g:i A'); } /** * Format the instance as ATOM * * @example * ``` * echo Carbon::now()->toAtomString(); * ``` * * @return string */ public function toAtomString() { return $this->rawFormat(DateTime::ATOM); } /** * Format the instance as COOKIE * * @example * ``` * echo Carbon::now()->toCookieString(); * ``` * * @return string */ public function toCookieString() { return $this->rawFormat(DateTime::COOKIE); } /** * Format the instance as ISO8601 * * @example * ``` * echo Carbon::now()->toIso8601String(); * ``` * * @return string */ public function toIso8601String() { return $this->toAtomString(); } /** * Format the instance as RFC822 * * @example * ``` * echo Carbon::now()->toRfc822String(); * ``` * * @return string */ public function toRfc822String() { return $this->rawFormat(DateTime::RFC822); } /** * Convert the instance to UTC and return as Zulu ISO8601 * * @example * ``` * echo Carbon::now()->toIso8601ZuluString(); * ``` * * @param string $unitPrecision * * @return string */ public function toIso8601ZuluString($unitPrecision = 'second') { return $this->copy()->utc()->rawFormat('Y-m-d\T'.static::getTimeFormatByPrecision($unitPrecision).'\Z'); } /** * Format the instance as RFC850 * * @example * ``` * echo Carbon::now()->toRfc850String(); * ``` * * @return string */ public function toRfc850String() { return $this->rawFormat(DateTime::RFC850); } /** * Format the instance as RFC1036 * * @example * ``` * echo Carbon::now()->toRfc1036String(); * ``` * * @return string */ public function toRfc1036String() { return $this->rawFormat(DateTime::RFC1036); } /** * Format the instance as RFC1123 * * @example * ``` * echo Carbon::now()->toRfc1123String(); * ``` * * @return string */ public function toRfc1123String() { return $this->rawFormat(DateTime::RFC1123); } /** * Format the instance as RFC2822 * * @example * ``` * echo Carbon::now()->toRfc2822String(); * ``` * * @return string */ public function toRfc2822String() { return $this->rawFormat(DateTime::RFC2822); } /** * Format the instance as RFC3339 * * @param bool $extended * * @example * ``` * echo Carbon::now()->toRfc3339String() . "\n"; * echo Carbon::now()->toRfc3339String(true) . "\n"; * ``` * * @return string */ public function toRfc3339String($extended = false) { $format = DateTime::RFC3339; if ($extended) { $format = DateTime::RFC3339_EXTENDED; } return $this->rawFormat($format); } /** * Format the instance as RSS * * @example * ``` * echo Carbon::now()->toRssString(); * ``` * * @return string */ public function toRssString() { return $this->rawFormat(DateTime::RSS); } /** * Format the instance as W3C * * @example * ``` * echo Carbon::now()->toW3cString(); * ``` * * @return string */ public function toW3cString() { return $this->rawFormat(DateTime::W3C); } /** * Format the instance as RFC7231 * * @example * ``` * echo Carbon::now()->toRfc7231String(); * ``` * * @return string */ public function toRfc7231String() { return $this->copy() ->setTimezone('GMT') ->rawFormat(\defined('static::RFC7231_FORMAT') ? static::RFC7231_FORMAT : CarbonInterface::RFC7231_FORMAT); } /** * Get default array representation. * * @example * ``` * var_dump(Carbon::now()->toArray()); * ``` * * @return array */ public function toArray() { return [ 'year' => $this->year, 'month' => $this->month, 'day' => $this->day, 'dayOfWeek' => $this->dayOfWeek, 'dayOfYear' => $this->dayOfYear, 'hour' => $this->hour, 'minute' => $this->minute, 'second' => $this->second, 'micro' => $this->micro, 'timestamp' => $this->timestamp, 'formatted' => $this->rawFormat(\defined('static::DEFAULT_TO_STRING_FORMAT') ? static::DEFAULT_TO_STRING_FORMAT : CarbonInterface::DEFAULT_TO_STRING_FORMAT), 'timezone' => $this->timezone, ]; } /** * Get default object representation. * * @example * ``` * var_dump(Carbon::now()->toObject()); * ``` * * @return object */ public function toObject() { return (object) $this->toArray(); } /** * Returns english human readable complete date string. * * @example * ``` * echo Carbon::now()->toString(); * ``` * * @return string */ public function toString() { return $this->copy()->locale('en')->isoFormat('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ'); } /** * Return the ISO-8601 string (ex: 1977-04-22T06:00:00Z, if $keepOffset truthy, offset will be kept: * 1977-04-22T01:00:00-05:00). * * @example * ``` * echo Carbon::now('America/Toronto')->toISOString() . "\n"; * echo Carbon::now('America/Toronto')->toISOString(true) . "\n"; * ``` * * @param bool $keepOffset Pass true to keep the date offset. Else forced to UTC. * * @return null|string */ public function toISOString($keepOffset = false) { if (!$this->isValid()) { return null; } $yearFormat = $this->year < 0 || $this->year > 9999 ? 'YYYYYY' : 'YYYY'; $tzFormat = $keepOffset ? 'Z' : '[Z]'; $date = $keepOffset ? $this : $this->copy()->utc(); return $date->isoFormat("$yearFormat-MM-DD[T]HH:mm:ss.SSSSSS$tzFormat"); } /** * Return the ISO-8601 string (ex: 1977-04-22T06:00:00Z) with UTC timezone. * * @example * ``` * echo Carbon::now('America/Toronto')->toJSON(); * ``` * * @return null|string */ public function toJSON() { return $this->toISOString(); } /** * Return native DateTime PHP object matching the current instance. * * @example * ``` * var_dump(Carbon::now()->toDateTime()); * ``` * * @return DateTime */ public function toDateTime() { return new DateTime($this->rawFormat('Y-m-d H:i:s.u'), $this->getTimezone()); } /** * Return native toDateTimeImmutable PHP object matching the current instance. * * @example * ``` * var_dump(Carbon::now()->toDateTimeImmutable()); * ``` * * @return DateTimeImmutable */ public function toDateTimeImmutable() { return new DateTimeImmutable($this->rawFormat('Y-m-d H:i:s.u'), $this->getTimezone()); } /** * @alias toDateTime * * Return native DateTime PHP object matching the current instance. * * @example * ``` * var_dump(Carbon::now()->toDate()); * ``` * * @return DateTime */ public function toDate() { return $this->toDateTime(); } /** * Create a iterable CarbonPeriod object from current date to a given end date (and optional interval). * * @param \DateTimeInterface|Carbon|CarbonImmutable|int|null $end period end date or recurrences count if int * @param int|\DateInterval|string|null $interval period default interval or number of the given $unit * @param string|null $unit if specified, $interval must be an integer * * @return CarbonPeriod */ public function toPeriod($end = null, $interval = null, $unit = null) { if ($unit) { $interval = CarbonInterval::make("$interval ".static::pluralUnit($unit)); } $period = (new CarbonPeriod())->setDateClass(static::class)->setStartDate($this); if ($interval) { $period->setDateInterval($interval); } if (\is_int($end) || \is_string($end) && ctype_digit($end)) { $period->setRecurrences($end); } elseif ($end) { $period->setEndDate($end); } return $period; } /** * Create a iterable CarbonPeriod object from current date to a given end date (and optional interval). * * @param \DateTimeInterface|Carbon|CarbonImmutable|null $end period end date * @param int|\DateInterval|string|null $interval period default interval or number of the given $unit * @param string|null $unit if specified, $interval must be an integer * * @return CarbonPeriod */ public function range($end = null, $interval = null, $unit = null) { return $this->toPeriod($end, $interval, $unit); } } PK!3R[;¦¦%carbon/src/Carbon/Traits/Rounding.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; use Carbon\CarbonInterface; use Carbon\Exceptions\UnknownUnitException; /** * Trait Rounding. * * Round, ceil, floor units. * * Depends on the following methods: * * @method static copy() * @method static startOfWeek(int $weekStartsAt = null) */ trait Rounding { use IntervalRounding; /** * Round the current instance at the given unit with given precision if specified and the given function. * * @param string $unit * @param float|int $precision * @param string $function * * @return CarbonInterface */ public function roundUnit($unit, $precision = 1, $function = 'round') { $metaUnits = [ // @call roundUnit 'millennium' => [static::YEARS_PER_MILLENNIUM, 'year'], // @call roundUnit 'century' => [static::YEARS_PER_CENTURY, 'year'], // @call roundUnit 'decade' => [static::YEARS_PER_DECADE, 'year'], // @call roundUnit 'quarter' => [static::MONTHS_PER_QUARTER, 'month'], // @call roundUnit 'millisecond' => [1000, 'microsecond'], ]; $normalizedUnit = static::singularUnit($unit); $ranges = array_merge(static::getRangesByUnit(), [ // @call roundUnit 'microsecond' => [0, 999999], ]); $factor = 1; $initialMonth = $this->month; if ($normalizedUnit === 'week') { $normalizedUnit = 'day'; $precision *= static::DAYS_PER_WEEK; } if (isset($metaUnits[$normalizedUnit])) { [$factor, $normalizedUnit] = $metaUnits[$normalizedUnit]; } $precision *= $factor; if (!isset($ranges[$normalizedUnit])) { throw new UnknownUnitException($unit); } $found = false; $fraction = 0; $arguments = null; $factor = $this->year < 0 ? -1 : 1; $changes = []; foreach ($ranges as $unit => [$minimum, $maximum]) { if ($normalizedUnit === $unit) { $arguments = [$this->$unit, $minimum]; $fraction = $precision - floor($precision); $found = true; continue; } if ($found) { $delta = $maximum + 1 - $minimum; $factor /= $delta; $fraction *= $delta; $arguments[0] += $this->$unit * $factor; $changes[$unit] = round( $minimum + ($fraction ? $fraction * $function(($this->$unit - $minimum) / $fraction) : 0) ); // Cannot use modulo as it lose double precision while ($changes[$unit] >= $delta) { $changes[$unit] -= $delta; } $fraction -= floor($fraction); } } [$value, $minimum] = $arguments; $normalizedValue = floor($function(($value - $minimum) / $precision) * $precision + $minimum); /** @var CarbonInterface $result */ $result = $this->$normalizedUnit($normalizedValue); foreach ($changes as $unit => $value) { $result = $result->$unit($value); } return $normalizedUnit === 'month' && $precision <= 1 && abs($result->month - $initialMonth) === 2 // Re-run the change in case an overflow occurred ? $result->$normalizedUnit($normalizedValue) : $result; } /** * Truncate the current instance at the given unit with given precision if specified. * * @param string $unit * @param float|int $precision * * @return CarbonInterface */ public function floorUnit($unit, $precision = 1) { return $this->roundUnit($unit, $precision, 'floor'); } /** * Ceil the current instance at the given unit with given precision if specified. * * @param string $unit * @param float|int $precision * * @return CarbonInterface */ public function ceilUnit($unit, $precision = 1) { return $this->roundUnit($unit, $precision, 'ceil'); } /** * Round the current instance second with given precision if specified. * * @param float|int|string|\DateInterval|null $precision * @param string $function * * @return CarbonInterface */ public function round($precision = 1, $function = 'round') { return $this->roundWith($precision, $function); } /** * Round the current instance second with given precision if specified. * * @param float|int|string|\DateInterval|null $precision * * @return CarbonInterface */ public function floor($precision = 1) { return $this->round($precision, 'floor'); } /** * Ceil the current instance second with given precision if specified. * * @param float|int|string|\DateInterval|null $precision * * @return CarbonInterface */ public function ceil($precision = 1) { return $this->round($precision, 'ceil'); } /** * Round the current instance week. * * @param int $weekStartsAt optional start allow you to specify the day of week to use to start the week * * @return CarbonInterface */ public function roundWeek($weekStartsAt = null) { return $this->closest($this->copy()->floorWeek($weekStartsAt), $this->copy()->ceilWeek($weekStartsAt)); } /** * Truncate the current instance week. * * @param int $weekStartsAt optional start allow you to specify the day of week to use to start the week * * @return CarbonInterface */ public function floorWeek($weekStartsAt = null) { return $this->startOfWeek($weekStartsAt); } /** * Ceil the current instance week. * * @param int $weekStartsAt optional start allow you to specify the day of week to use to start the week * * @return CarbonInterface */ public function ceilWeek($weekStartsAt = null) { if ($this->isMutable()) { $startOfWeek = $this->copy()->startOfWeek($weekStartsAt); return $startOfWeek != $this ? $this->startOfWeek($weekStartsAt)->addWeek() : $this; } $startOfWeek = $this->startOfWeek($weekStartsAt); return $startOfWeek != $this ? $startOfWeek->addWeek() : $this->copy(); } } PK!°)ņ55&carbon/src/Carbon/Traits/Modifiers.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; use Carbon\CarbonInterface; /** * Trait Modifiers. * * Returns dates relative to current date using modifier short-hand. */ trait Modifiers { /** * Midday/noon hour. * * @var int */ protected static $midDayAt = 12; /** * get midday/noon hour * * @return int */ public static function getMidDayAt() { return static::$midDayAt; } /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather consider mid-day is always 12pm, then if you need to test if it's an other * hour, test it explicitly: * $date->format('G') == 13 * or to set explicitly to a given hour: * $date->setTime(13, 0, 0, 0) * * Set midday/noon hour * * @param int $hour midday hour * * @return void */ public static function setMidDayAt($hour) { static::$midDayAt = $hour; } /** * Modify to midday, default to self::$midDayAt * * @return static */ public function midDay() { return $this->setTime(static::$midDayAt, 0, 0, 0); } /** * Modify to the next occurrence of a given modifier such as a day of * the week. If no modifier is provided, modify to the next occurrence * of the current day of the week. Use the supplied constants * to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param string|int|null $modifier * * @return static */ public function next($modifier = null) { if ($modifier === null) { $modifier = $this->dayOfWeek; } return $this->change( 'next '.(\is_string($modifier) ? $modifier : static::$days[$modifier]) ); } /** * Go forward or backward to the next week- or weekend-day. * * @param bool $weekday * @param bool $forward * * @return static */ private function nextOrPreviousDay($weekday = true, $forward = true) { /** @var CarbonInterface $date */ $date = $this; $step = $forward ? 1 : -1; do { $date = $date->addDays($step); } while ($weekday ? $date->isWeekend() : $date->isWeekday()); return $date; } /** * Go forward to the next weekday. * * @return static */ public function nextWeekday() { return $this->nextOrPreviousDay(); } /** * Go backward to the previous weekday. * * @return static */ public function previousWeekday() { return $this->nextOrPreviousDay(true, false); } /** * Go forward to the next weekend day. * * @return static */ public function nextWeekendDay() { return $this->nextOrPreviousDay(false); } /** * Go backward to the previous weekend day. * * @return static */ public function previousWeekendDay() { return $this->nextOrPreviousDay(false, false); } /** * Modify to the previous occurrence of a given modifier such as a day of * the week. If no dayOfWeek is provided, modify to the previous occurrence * of the current day of the week. Use the supplied constants * to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param string|int|null $modifier * * @return static */ public function previous($modifier = null) { if ($modifier === null) { $modifier = $this->dayOfWeek; } return $this->change( 'last '.(\is_string($modifier) ? $modifier : static::$days[$modifier]) ); } /** * Modify to the first occurrence of a given day of the week * in the current month. If no dayOfWeek is provided, modify to the * first day of the current month. Use the supplied constants * to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param int|null $dayOfWeek * * @return static */ public function firstOfMonth($dayOfWeek = null) { $date = $this->startOfDay(); if ($dayOfWeek === null) { return $date->day(1); } return $date->modify('first '.static::$days[$dayOfWeek].' of '.$date->rawFormat('F').' '.$date->year); } /** * Modify to the last occurrence of a given day of the week * in the current month. If no dayOfWeek is provided, modify to the * last day of the current month. Use the supplied constants * to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param int|null $dayOfWeek * * @return static */ public function lastOfMonth($dayOfWeek = null) { $date = $this->startOfDay(); if ($dayOfWeek === null) { return $date->day($date->daysInMonth); } return $date->modify('last '.static::$days[$dayOfWeek].' of '.$date->rawFormat('F').' '.$date->year); } /** * Modify to the given occurrence of a given day of the week * in the current month. If the calculated occurrence is outside the scope * of the current month, then return false and no modifications are made. * Use the supplied constants to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param int $nth * @param int $dayOfWeek * * @return mixed */ public function nthOfMonth($nth, $dayOfWeek) { $date = $this->copy()->firstOfMonth(); $check = $date->rawFormat('Y-m'); $date = $date->modify('+'.$nth.' '.static::$days[$dayOfWeek]); return $date->rawFormat('Y-m') === $check ? $this->modify("$date") : false; } /** * Modify to the first occurrence of a given day of the week * in the current quarter. If no dayOfWeek is provided, modify to the * first day of the current quarter. Use the supplied constants * to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param int|null $dayOfWeek day of the week default null * * @return static */ public function firstOfQuarter($dayOfWeek = null) { return $this->setDate($this->year, $this->quarter * static::MONTHS_PER_QUARTER - 2, 1)->firstOfMonth($dayOfWeek); } /** * Modify to the last occurrence of a given day of the week * in the current quarter. If no dayOfWeek is provided, modify to the * last day of the current quarter. Use the supplied constants * to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param int|null $dayOfWeek day of the week default null * * @return static */ public function lastOfQuarter($dayOfWeek = null) { return $this->setDate($this->year, $this->quarter * static::MONTHS_PER_QUARTER, 1)->lastOfMonth($dayOfWeek); } /** * Modify to the given occurrence of a given day of the week * in the current quarter. If the calculated occurrence is outside the scope * of the current quarter, then return false and no modifications are made. * Use the supplied constants to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param int $nth * @param int $dayOfWeek * * @return mixed */ public function nthOfQuarter($nth, $dayOfWeek) { $date = $this->copy()->day(1)->month($this->quarter * static::MONTHS_PER_QUARTER); $lastMonth = $date->month; $year = $date->year; $date = $date->firstOfQuarter()->modify('+'.$nth.' '.static::$days[$dayOfWeek]); return ($lastMonth < $date->month || $year !== $date->year) ? false : $this->modify("$date"); } /** * Modify to the first occurrence of a given day of the week * in the current year. If no dayOfWeek is provided, modify to the * first day of the current year. Use the supplied constants * to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param int|null $dayOfWeek day of the week default null * * @return static */ public function firstOfYear($dayOfWeek = null) { return $this->month(1)->firstOfMonth($dayOfWeek); } /** * Modify to the last occurrence of a given day of the week * in the current year. If no dayOfWeek is provided, modify to the * last day of the current year. Use the supplied constants * to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param int|null $dayOfWeek day of the week default null * * @return static */ public function lastOfYear($dayOfWeek = null) { return $this->month(static::MONTHS_PER_YEAR)->lastOfMonth($dayOfWeek); } /** * Modify to the given occurrence of a given day of the week * in the current year. If the calculated occurrence is outside the scope * of the current year, then return false and no modifications are made. * Use the supplied constants to indicate the desired dayOfWeek, ex. static::MONDAY. * * @param int $nth * @param int $dayOfWeek * * @return mixed */ public function nthOfYear($nth, $dayOfWeek) { $date = $this->copy()->firstOfYear()->modify('+'.$nth.' '.static::$days[$dayOfWeek]); return $this->year === $date->year ? $this->modify("$date") : false; } /** * Modify the current instance to the average of a given instance (default now) and the current instance * (second-precision). * * @param \Carbon\Carbon|\DateTimeInterface|null $date * * @return static */ public function average($date = null) { return $this->addRealMicroseconds((int) ($this->diffInRealMicroseconds($this->resolveCarbon($date), false) / 2)); } /** * Get the closest date from the instance (second-precision). * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date1 * @param \Carbon\Carbon|\DateTimeInterface|mixed $date2 * * @return static */ public function closest($date1, $date2) { return $this->diffInRealMicroseconds($date1) < $this->diffInRealMicroseconds($date2) ? $date1 : $date2; } /** * Get the farthest date from the instance (second-precision). * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date1 * @param \Carbon\Carbon|\DateTimeInterface|mixed $date2 * * @return static */ public function farthest($date1, $date2) { return $this->diffInRealMicroseconds($date1) > $this->diffInRealMicroseconds($date2) ? $date1 : $date2; } /** * Get the minimum instance between a given instance (default now) and the current instance. * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @return static */ public function min($date = null) { $date = $this->resolveCarbon($date); return $this->lt($date) ? $this : $date; } /** * Get the minimum instance between a given instance (default now) and the current instance. * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see min() * * @return static */ public function minimum($date = null) { return $this->min($date); } /** * Get the maximum instance between a given instance (default now) and the current instance. * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @return static */ public function max($date = null) { $date = $this->resolveCarbon($date); return $this->gt($date) ? $this : $date; } /** * Get the maximum instance between a given instance (default now) and the current instance. * * @param \Carbon\Carbon|\DateTimeInterface|mixed $date * * @see max() * * @return static */ public function maximum($date = null) { return $this->max($date); } /** * Calls \DateTime::modify if mutable or \DateTimeImmutable::modify else. * * @see https://php.net/manual/en/datetime.modify.php */ public function modify($modify) { return parent::modify((string) $modify); } /** * Similar to native modify() method of DateTime but can handle more grammars. * * @example * ``` * echo Carbon::now()->change('next 2pm'); * ``` * * @link https://php.net/manual/en/datetime.modify.php * * @param string $modifier * * @return static */ public function change($modifier) { return $this->modify(preg_replace_callback('/^(next|previous|last)\s+(\d{1,2}(h|am|pm|:\d{1,2}(:\d{1,2})?))$/i', function ($match) { $match[2] = str_replace('h', ':00', $match[2]); $test = $this->copy()->modify($match[2]); $method = $match[1] === 'next' ? 'lt' : 'gt'; $match[1] = $test->$method($this) ? $match[1].' day' : 'today'; return $match[1].' '.$match[2]; }, strtr(trim($modifier), [ ' at ' => ' ', 'just now' => 'now', 'after tomorrow' => 'tomorrow +1 day', 'before yesterday' => 'yesterday -1 day', ]))); } } PK!ö° >>!carbon/src/Carbon/Traits/Test.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; use Closure; use DateTimeImmutable; trait Test { /////////////////////////////////////////////////////////////////// ///////////////////////// TESTING AIDS //////////////////////////// /////////////////////////////////////////////////////////////////// /** * A test Carbon instance to be returned when now instances are created. * * @var static */ protected static $testNow; /** * Set a Carbon instance (real or mock) to be returned when a "now" * instance is created. The provided instance will be returned * specifically under the following conditions: * - A call to the static now() method, ex. Carbon::now() * - When a null (or blank string) is passed to the constructor or parse(), ex. new Carbon(null) * - When the string "now" is passed to the constructor or parse(), ex. new Carbon('now') * - When a string containing the desired time is passed to Carbon::parse(). * * Note the timezone parameter was left out of the examples above and * has no affect as the mock value will be returned regardless of its value. * * To clear the test instance call this method using the default * parameter of null. * * /!\ Use this method for unit tests only. * * @param Closure|static|string|false|null $testNow real or mock Carbon instance */ public static function setTestNow($testNow = null) { if ($testNow === false) { $testNow = null; } static::$testNow = \is_string($testNow) ? static::parse($testNow) : $testNow; } /** * Temporarily sets a static date to be used within the callback. * Using setTestNow to set the date, executing the callback, then * clearing the test instance. * * /!\ Use this method for unit tests only. * * @param Closure|static|string|false|null $testNow real or mock Carbon instance * @param Closure|null $callback */ public static function withTestNow($testNow = null, $callback = null) { static::setTestNow($testNow); $callback(); static::setTestNow(); } /** * Get the Carbon instance (real or mock) to be returned when a "now" * instance is created. * * @return Closure|static the current instance used for testing */ public static function getTestNow() { return static::$testNow; } /** * Determine if there is a valid test instance set. A valid test instance * is anything that is not null. * * @return bool true if there is a test instance, otherwise false */ public static function hasTestNow() { return static::getTestNow() !== null; } /** * Return the given timezone and set it to the test instance if not null. * If null, get the timezone from the test instance and return it. * * @param string|\DateTimeZone $tz * @param \Carbon\CarbonInterface $testInstance * * @return string|\DateTimeZone */ protected static function handleMockTimezone($tz, &$testInstance) { //shift the time according to the given time zone if ($tz !== null && $tz !== static::getMockedTestNow($tz)->getTimezone()) { $testInstance = $testInstance->setTimezone($tz); return $tz; } return $testInstance->getTimezone(); } /** * Get the mocked date passed in setTestNow() and if it's a Closure, execute it. * * @param string|\DateTimeZone $tz * * @return \Carbon\CarbonImmutable|\Carbon\Carbon|null */ protected static function getMockedTestNow($tz) { $testNow = static::getTestNow(); if ($testNow instanceof Closure) { $realNow = new DateTimeImmutable('now'); $testNow = $testNow(static::parse( $realNow->format('Y-m-d H:i:s.u'), $tz ?: $realNow->getTimezone() )); } /* @var \Carbon\CarbonImmutable|\Carbon\Carbon|null $testNow */ return $testNow; } protected static function mockConstructorParameters(&$time, &$tz) { /** @var \Carbon\CarbonImmutable|\Carbon\Carbon $testInstance */ $testInstance = clone static::getMockedTestNow($tz); $tz = static::handleMockTimezone($tz, $testInstance); if (static::hasRelativeKeywords($time)) { $testInstance = $testInstance->modify($time); } $time = $testInstance instanceof self ? $testInstance->rawFormat(static::MOCK_DATETIME_FORMAT) : $testInstance->format(static::MOCK_DATETIME_FORMAT); } } PK!Ē‚ĀM¬¬1carbon/src/Carbon/Traits/ObjectInitialisation.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; trait ObjectInitialisation { /** * True when parent::__construct has been called. * * @var string */ protected $constructedObjectId = null; } PK!Č{$ł"r"r$carbon/src/Carbon/Traits/Creator.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; use Carbon\Carbon; use Carbon\CarbonImmutable; use Carbon\CarbonInterface; use Carbon\Exceptions\InvalidDateException; use Carbon\Exceptions\InvalidFormatException; use Carbon\Exceptions\OutOfRangeException; use Carbon\Translator; use Closure; use DateTimeInterface; use DateTimeZone; use Exception; /** * Trait Creator. * * Static creators. * * Depends on the following methods: * * @method static Carbon|CarbonImmutable getTestNow() */ trait Creator { use ObjectInitialisation; /** * The errors that can occur. * * @var array */ protected static $lastErrors; /** * Create a new Carbon instance. * * Please see the testing aids section (specifically static::setTestNow()) * for more on the possibility of this constructor returning a test instance. * * @param DateTimeInterface|string|null $time * @param DateTimeZone|string|null $tz * * @throws InvalidFormatException */ public function __construct($time = null, $tz = null) { if ($time instanceof DateTimeInterface) { $time = $this->constructTimezoneFromDateTime($time, $tz)->format('Y-m-d H:i:s.u'); } if (is_numeric($time) && (!\is_string($time) || !preg_match('/^\d{1,14}$/', $time))) { $time = static::createFromTimestampUTC($time)->format('Y-m-d\TH:i:s.uP'); } // If the class has a test now set and we are trying to create a now() // instance then override as required $isNow = empty($time) || $time === 'now'; if (method_exists(static::class, 'hasTestNow') && method_exists(static::class, 'getTestNow') && static::hasTestNow() && ($isNow || static::hasRelativeKeywords($time)) ) { static::mockConstructorParameters($time, $tz); } // Work-around for PHP bug https://bugs.php.net/bug.php?id=67127 if (strpos((string) .1, '.') === false) { $locale = setlocale(LC_NUMERIC, '0'); setlocale(LC_NUMERIC, 'C'); } try { parent::__construct($time ?: 'now', static::safeCreateDateTimeZone($tz) ?: null); } catch (Exception $exception) { throw new InvalidFormatException($exception->getMessage(), 0, $exception); } $this->constructedObjectId = spl_object_hash($this); if (isset($locale)) { setlocale(LC_NUMERIC, $locale); } static::setLastErrors(parent::getLastErrors()); } /** * Get timezone from a datetime instance. * * @param DateTimeInterface $date * @param DateTimeZone|string|null $tz * * @return DateTimeInterface */ private function constructTimezoneFromDateTime(DateTimeInterface $date, &$tz) { if ($tz !== null) { $safeTz = static::safeCreateDateTimeZone($tz); if ($safeTz) { return $date->setTimezone($safeTz); } return $date; } $tz = $date->getTimezone(); return $date; } /** * Update constructedObjectId on cloned. */ public function __clone() { $this->constructedObjectId = spl_object_hash($this); } /** * Create a Carbon instance from a DateTime one. * * @param DateTimeInterface $date * * @return static */ public static function instance($date) { if ($date instanceof static) { return clone $date; } static::expectDateTime($date); $instance = new static($date->format('Y-m-d H:i:s.u'), $date->getTimezone()); if ($date instanceof CarbonInterface || $date instanceof Options) { $settings = $date->getSettings(); if (!$date->hasLocalTranslator()) { unset($settings['locale']); } $instance->settings($settings); } return $instance; } /** * Create a carbon instance from a string. * * This is an alias for the constructor that allows better fluent syntax * as it allows you to do Carbon::parse('Monday next week')->fn() rather * than (new Carbon('Monday next week'))->fn(). * * @param string|DateTimeInterface|null $time * @param DateTimeZone|string|null $tz * * @throws InvalidFormatException * * @return static */ public static function rawParse($time = null, $tz = null) { if ($time instanceof DateTimeInterface) { return static::instance($time); } try { return new static($time, $tz); } catch (Exception $exception) { $date = @static::now($tz)->change($time); if (!$date) { throw new InvalidFormatException("Could not parse '$time': ".$exception->getMessage(), 0, $exception); } return $date; } } /** * Create a carbon instance from a string. * * This is an alias for the constructor that allows better fluent syntax * as it allows you to do Carbon::parse('Monday next week')->fn() rather * than (new Carbon('Monday next week'))->fn(). * * @param string|DateTimeInterface|null $time * @param DateTimeZone|string|null $tz * * @throws InvalidFormatException * * @return static */ public static function parse($time = null, $tz = null) { $function = static::$parseFunction; if (!$function) { return static::rawParse($time, $tz); } if (\is_string($function) && method_exists(static::class, $function)) { $function = [static::class, $function]; } return $function(...\func_get_args()); } /** * Create a carbon instance from a localized string (in French, Japanese, Arabic, etc.). * * @param string $time date/time string in the given language (may also contain English). * @param string|null $locale if locale is null or not specified, current global locale will be * used instead. * @param DateTimeZone|string|null $tz optional timezone for the new instance. * * @throws InvalidFormatException * * @return static */ public static function parseFromLocale($time, $locale = null, $tz = null) { return static::rawParse(static::translateTimeString($time, $locale, 'en'), $tz); } /** * Get a Carbon instance for the current date and time. * * @param DateTimeZone|string|null $tz * * @return static */ public static function now($tz = null) { return new static(null, $tz); } /** * Create a Carbon instance for today. * * @param DateTimeZone|string|null $tz * * @return static */ public static function today($tz = null) { return static::rawParse('today', $tz); } /** * Create a Carbon instance for tomorrow. * * @param DateTimeZone|string|null $tz * * @return static */ public static function tomorrow($tz = null) { return static::rawParse('tomorrow', $tz); } /** * Create a Carbon instance for yesterday. * * @param DateTimeZone|string|null $tz * * @return static */ public static function yesterday($tz = null) { return static::rawParse('yesterday', $tz); } /** * Create a Carbon instance for the greatest supported date. * * @return static */ public static function maxValue() { if (self::$PHPIntSize === 4) { // 32 bit return static::createFromTimestamp(PHP_INT_MAX); // @codeCoverageIgnore } // 64 bit return static::create(9999, 12, 31, 23, 59, 59); } /** * Create a Carbon instance for the lowest supported date. * * @return static */ public static function minValue() { if (self::$PHPIntSize === 4) { // 32 bit return static::createFromTimestamp(~PHP_INT_MAX); // @codeCoverageIgnore } // 64 bit return static::create(1, 1, 1, 0, 0, 0); } private static function assertBetween($unit, $value, $min, $max) { if (static::isStrictModeEnabled() && ($value < $min || $value > $max)) { throw new OutOfRangeException($unit, $min, $max, $value); } } private static function createNowInstance($tz) { if (!static::hasTestNow()) { return static::now($tz); } $now = static::getTestNow(); if ($now instanceof Closure) { return $now(static::now($tz)); } return $now; } /** * Create a new Carbon instance from a specific date and time. * * If any of $year, $month or $day are set to null their now() values will * be used. * * If $hour is null it will be set to its now() value and the default * values for $minute and $second will be their now() values. * * If $hour is not null then the default values for $minute and $second * will be 0. * * @param int|null $year * @param int|null $month * @param int|null $day * @param int|null $hour * @param int|null $minute * @param int|null $second * @param DateTimeZone|string|null $tz * * @throws InvalidFormatException * * @return static|false */ public static function create($year = 0, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0, $tz = null) { if (\is_string($year) && !is_numeric($year)) { return static::parse($year, $tz ?: (\is_string($month) || $month instanceof DateTimeZone ? $month : null)); } $defaults = null; $getDefault = function ($unit) use ($tz, &$defaults) { if ($defaults === null) { $now = self::createNowInstance($tz); $defaults = array_combine([ 'year', 'month', 'day', 'hour', 'minute', 'second', ], explode('-', $now->rawFormat('Y-n-j-G-i-s.u'))); } return $defaults[$unit]; }; $year = $year === null ? $getDefault('year') : $year; $month = $month === null ? $getDefault('month') : $month; $day = $day === null ? $getDefault('day') : $day; $hour = $hour === null ? $getDefault('hour') : $hour; $minute = $minute === null ? $getDefault('minute') : $minute; $second = (float) ($second === null ? $getDefault('second') : $second); self::assertBetween('month', $month, 0, 99); self::assertBetween('day', $day, 0, 99); self::assertBetween('hour', $hour, 0, 99); self::assertBetween('minute', $minute, 0, 99); self::assertBetween('second', $second, 0, 99); $fixYear = null; if ($year < 0) { $fixYear = $year; $year = 0; } elseif ($year > 9999) { $fixYear = $year - 9999; $year = 9999; } $second = ($second < 10 ? '0' : '').number_format($second, 6); $instance = static::rawCreateFromFormat('!Y-n-j G:i:s.u', sprintf('%s-%s-%s %s:%02s:%02s', $year, $month, $day, $hour, $minute, $second), $tz); if ($fixYear !== null) { $instance = $instance->addYears($fixYear); } return $instance; } /** * Create a new safe Carbon instance from a specific date and time. * * If any of $year, $month or $day are set to null their now() values will * be used. * * If $hour is null it will be set to its now() value and the default * values for $minute and $second will be their now() values. * * If $hour is not null then the default values for $minute and $second * will be 0. * * If one of the set values is not valid, an InvalidDateException * will be thrown. * * @param int|null $year * @param int|null $month * @param int|null $day * @param int|null $hour * @param int|null $minute * @param int|null $second * @param DateTimeZone|string|null $tz * * @throws InvalidDateException * * @return static|false */ public static function createSafe($year = null, $month = null, $day = null, $hour = null, $minute = null, $second = null, $tz = null) { $fields = static::getRangesByUnit(); foreach ($fields as $field => $range) { if ($$field !== null && (!\is_int($$field) || $$field < $range[0] || $$field > $range[1])) { if (static::isStrictModeEnabled()) { throw new InvalidDateException($field, $$field); } return false; } } $instance = static::create($year, $month, $day, $hour, $minute, $second, $tz); foreach (array_reverse($fields) as $field => $range) { if ($$field !== null && (!\is_int($$field) || $$field !== $instance->$field)) { if (static::isStrictModeEnabled()) { throw new InvalidDateException($field, $$field); } return false; } } return $instance; } /** * Create a Carbon instance from just a date. The time portion is set to now. * * @param int|null $year * @param int|null $month * @param int|null $day * @param DateTimeZone|string|null $tz * * @throws InvalidFormatException * * @return static */ public static function createFromDate($year = null, $month = null, $day = null, $tz = null) { return static::create($year, $month, $day, null, null, null, $tz); } /** * Create a Carbon instance from just a date. The time portion is set to midnight. * * @param int|null $year * @param int|null $month * @param int|null $day * @param DateTimeZone|string|null $tz * * @throws InvalidFormatException * * @return static */ public static function createMidnightDate($year = null, $month = null, $day = null, $tz = null) { return static::create($year, $month, $day, 0, 0, 0, $tz); } /** * Create a Carbon instance from just a time. The date portion is set to today. * * @param int|null $hour * @param int|null $minute * @param int|null $second * @param DateTimeZone|string|null $tz * * @throws InvalidFormatException * * @return static */ public static function createFromTime($hour = 0, $minute = 0, $second = 0, $tz = null) { return static::create(null, null, null, $hour, $minute, $second, $tz); } /** * Create a Carbon instance from a time string. The date portion is set to today. * * @param string $time * @param DateTimeZone|string|null $tz * * @throws InvalidFormatException * * @return static */ public static function createFromTimeString($time, $tz = null) { return static::today($tz)->setTimeFromTimeString($time); } /** * @param string $format Datetime format * @param string $time * @param DateTimeZone|string|false|null $originalTz * * @return DateTimeInterface|false */ private static function createFromFormatAndTimezone($format, $time, $originalTz) { // Work-around for https://bugs.php.net/bug.php?id=75577 // @codeCoverageIgnoreStart if (version_compare(PHP_VERSION, '7.3.0-dev', '<')) { $format = str_replace('.v', '.u', $format); } // @codeCoverageIgnoreEnd if ($originalTz === null) { return parent::createFromFormat($format, "$time"); } $tz = \is_int($originalTz) ? @timezone_name_from_abbr('', (int) ($originalTz * static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE), 1) : $originalTz; $tz = static::safeCreateDateTimeZone($tz, $originalTz); if ($tz === false) { return false; } return parent::createFromFormat($format, "$time", $tz); } /** * Create a Carbon instance from a specific format. * * @param string $format Datetime format * @param string $time * @param DateTimeZone|string|false|null $tz * * @throws InvalidFormatException * * @return static|false */ public static function rawCreateFromFormat($format, $time, $tz = null) { // Work-around for https://bugs.php.net/bug.php?id=80141 $format = preg_replace('/(?getTimezone(); } // Set microseconds to zero to match behavior of DateTime::createFromFormat() // See https://bugs.php.net/bug.php?id=74332 $mock = $mock->copy()->microsecond(0); // Prepend mock datetime only if the format does not contain non escaped unix epoch reset flag. if (!preg_match("/{$nonEscaped}[!|]/", $format)) { $format = static::MOCK_DATETIME_FORMAT.' '.$format; $time = ($mock instanceof self ? $mock->rawFormat(static::MOCK_DATETIME_FORMAT) : $mock->format(static::MOCK_DATETIME_FORMAT)).' '.$time; } // Regenerate date from the modified format to base result on the mocked instance instead of now. $date = self::createFromFormatAndTimezone($format, $time, $tz); } if ($date instanceof DateTimeInterface) { $instance = static::instance($date); $instance::setLastErrors($lastErrors); return $instance; } if (static::isStrictModeEnabled()) { throw new InvalidFormatException(implode(PHP_EOL, $lastErrors['errors'])); } return false; } /** * Create a Carbon instance from a specific format. * * @param string $format Datetime format * @param string $time * @param DateTimeZone|string|false|null $tz * * @throws InvalidFormatException * * @return static|false */ public static function createFromFormat($format, $time, $tz = null) { $function = static::$createFromFormatFunction; if (!$function) { return static::rawCreateFromFormat($format, $time, $tz); } if (\is_string($function) && method_exists(static::class, $function)) { $function = [static::class, $function]; } return $function(...\func_get_args()); } /** * Create a Carbon instance from a specific ISO format (same replacements as ->isoFormat()). * * @param string $format Datetime format * @param string $time * @param DateTimeZone|string|false|null $tz optional timezone * @param string|null $locale locale to be used for LTS, LT, LL, LLL, etc. macro-formats (en by fault, unneeded if no such macro-format in use) * @param \Symfony\Component\Translation\TranslatorInterface $translator optional custom translator to use for macro-formats * * @throws InvalidFormatException * * @return static|false */ public static function createFromIsoFormat($format, $time, $tz = null, $locale = 'en', $translator = null) { $format = preg_replace_callback('/(? static::getTranslationMessageWith($translator, 'formats.LT', $locale, 'h:mm A'), 'LTS' => static::getTranslationMessageWith($translator, 'formats.LTS', $locale, 'h:mm:ss A'), 'L' => static::getTranslationMessageWith($translator, 'formats.L', $locale, 'MM/DD/YYYY'), 'LL' => static::getTranslationMessageWith($translator, 'formats.LL', $locale, 'MMMM D, YYYY'), 'LLL' => static::getTranslationMessageWith($translator, 'formats.LLL', $locale, 'MMMM D, YYYY h:mm A'), 'LLLL' => static::getTranslationMessageWith($translator, 'formats.LLLL', $locale, 'dddd, MMMM D, YYYY h:mm A'), ]; } return $formats[$code] ?? preg_replace_callback( '/MMMM|MM|DD|dddd/', function ($code) { return mb_substr($code[0], 1); }, $formats[strtoupper($code)] ?? '' ); }, $format); $format = preg_replace_callback('/(? 'd', 'OM' => 'M', 'OY' => 'Y', 'OH' => 'G', 'Oh' => 'g', 'Om' => 'i', 'Os' => 's', 'D' => 'd', 'DD' => 'd', 'Do' => 'd', 'd' => '!', 'dd' => '!', 'ddd' => 'D', 'dddd' => 'D', 'DDD' => 'z', 'DDDD' => 'z', 'DDDo' => 'z', 'e' => '!', 'E' => '!', 'H' => 'G', 'HH' => 'H', 'h' => 'g', 'hh' => 'h', 'k' => 'G', 'kk' => 'G', 'hmm' => 'gi', 'hmmss' => 'gis', 'Hmm' => 'Gi', 'Hmmss' => 'Gis', 'm' => 'i', 'mm' => 'i', 'a' => 'a', 'A' => 'a', 's' => 's', 'ss' => 's', 'S' => '*', 'SS' => '*', 'SSS' => '*', 'SSSS' => '*', 'SSSSS' => '*', 'SSSSSS' => 'u', 'SSSSSSS' => 'u*', 'SSSSSSSS' => 'u*', 'SSSSSSSSS' => 'u*', 'M' => 'm', 'MM' => 'm', 'MMM' => 'M', 'MMMM' => 'M', 'Mo' => 'm', 'Q' => '!', 'Qo' => '!', 'G' => '!', 'GG' => '!', 'GGG' => '!', 'GGGG' => '!', 'GGGGG' => '!', 'g' => '!', 'gg' => '!', 'ggg' => '!', 'gggg' => '!', 'ggggg' => '!', 'W' => '!', 'WW' => '!', 'Wo' => '!', 'w' => '!', 'ww' => '!', 'wo' => '!', 'x' => 'U???', 'X' => 'U', 'Y' => 'Y', 'YY' => 'y', 'YYYY' => 'Y', 'YYYYY' => 'Y', 'YYYYYY' => 'Y', 'z' => 'e', 'zz' => 'e', 'Z' => 'e', 'ZZ' => 'e', ]; } $format = $replacements[$code] ?? '?'; if ($format === '!') { throw new InvalidFormatException("Format $code not supported for creation."); } return $format; }, $format); return static::rawCreateFromFormat($format, $time, $tz); } /** * Create a Carbon instance from a specific format and a string in a given language. * * @param string $format Datetime format * @param string $locale * @param string $time * @param DateTimeZone|string|false|null $tz * * @throws InvalidFormatException * * @return static|false */ public static function createFromLocaleFormat($format, $locale, $time, $tz = null) { return static::rawCreateFromFormat($format, static::translateTimeString($time, $locale, 'en'), $tz); } /** * Create a Carbon instance from a specific ISO format and a string in a given language. * * @param string $format Datetime ISO format * @param string $locale * @param string $time * @param DateTimeZone|string|false|null $tz * * @throws InvalidFormatException * * @return static|false */ public static function createFromLocaleIsoFormat($format, $locale, $time, $tz = null) { $time = static::translateTimeString($time, $locale, 'en', CarbonInterface::TRANSLATE_MONTHS | CarbonInterface::TRANSLATE_DAYS | CarbonInterface::TRANSLATE_MERIDIEM); return static::createFromIsoFormat($format, $time, $tz, $locale); } /** * Make a Carbon instance from given variable if possible. * * Always return a new instance. Parse only strings and only these likely to be dates (skip intervals * and recurrences). Throw an exception for invalid format, but otherwise return null. * * @param mixed $var * * @throws InvalidFormatException * * @return static|null */ public static function make($var) { if ($var instanceof DateTimeInterface) { return static::instance($var); } $date = null; if (\is_string($var)) { $var = trim($var); if (\is_string($var) && !preg_match('/^P[0-9T]/', $var) && !preg_match('/^R[0-9]/', $var) && preg_match('/[a-z0-9]/i', $var) ) { $date = static::parse($var); } } return $date; } /** * Set last errors. * * @param array $lastErrors * * @return void */ private static function setLastErrors(array $lastErrors) { static::$lastErrors = $lastErrors; } /** * {@inheritdoc} */ public static function getLastErrors() { return static::$lastErrors; } } PK!Į†:®®&carbon/src/Carbon/Traits/Timestamp.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; /** * Trait Timestamp. */ trait Timestamp { /** * Create a Carbon instance from a timestamp and set the timezone (use default one if not specified). * * Timestamp input can be given as int, float or a string containing one or more numbers. * * @param float|int|string $timestamp * @param \DateTimeZone|string|null $tz * * @return static */ public static function createFromTimestamp($timestamp, $tz = null) { return static::createFromTimestampUTC($timestamp)->setTimezone($tz); } /** * Create a Carbon instance from an timestamp keeping the timezone to UTC. * * Timestamp input can be given as int, float or a string containing one or more numbers. * * @param float|int|string $timestamp * * @return static */ public static function createFromTimestampUTC($timestamp) { [$integer, $decimal] = self::getIntegerAndDecimalParts($timestamp); $delta = floor($decimal / static::MICROSECONDS_PER_SECOND); $integer += $delta; $decimal -= $delta * static::MICROSECONDS_PER_SECOND; return static::rawCreateFromFormat('U u', "$integer $decimal"); } /** * Create a Carbon instance from a timestamp in milliseconds. * * Timestamp input can be given as int, float or a string containing one or more numbers. * * @param float|int|string $timestamp * * @return static */ public static function createFromTimestampMsUTC($timestamp) { [$milliseconds, $microseconds] = self::getIntegerAndDecimalParts($timestamp, 3); $sign = $milliseconds < 0 || $milliseconds === 0.0 && $microseconds < 0 ? -1 : 1; $milliseconds = abs($milliseconds); $microseconds = $sign * abs($microseconds) + static::MICROSECONDS_PER_MILLISECOND * ($milliseconds % static::MILLISECONDS_PER_SECOND); $seconds = $sign * floor($milliseconds / static::MILLISECONDS_PER_SECOND); $delta = floor($microseconds / static::MICROSECONDS_PER_SECOND); $seconds += $delta; $microseconds -= $delta * static::MICROSECONDS_PER_SECOND; $microseconds = str_pad($microseconds, 6, '0', STR_PAD_LEFT); return static::rawCreateFromFormat('U u', "$seconds $microseconds"); } /** * Create a Carbon instance from a timestamp in milliseconds. * * Timestamp input can be given as int, float or a string containing one or more numbers. * * @param float|int|string $timestamp * @param \DateTimeZone|string|null $tz * * @return static */ public static function createFromTimestampMs($timestamp, $tz = null) { return static::createFromTimestampMsUTC($timestamp) ->setTimezone($tz); } /** * Set the instance's timestamp. * * Timestamp input can be given as int, float or a string containing one or more numbers. * * @param float|int|string $unixTimestamp * * @return static */ public function timestamp($unixTimestamp) { return $this->setTimestamp($unixTimestamp); } /** * Returns a timestamp rounded with the given precision (6 by default). * * @example getPreciseTimestamp() 1532087464437474 (microsecond maximum precision) * @example getPreciseTimestamp(6) 1532087464437474 * @example getPreciseTimestamp(5) 153208746443747 (1/100000 second precision) * @example getPreciseTimestamp(4) 15320874644375 (1/10000 second precision) * @example getPreciseTimestamp(3) 1532087464437 (millisecond precision) * @example getPreciseTimestamp(2) 153208746444 (1/100 second precision) * @example getPreciseTimestamp(1) 15320874644 (1/10 second precision) * @example getPreciseTimestamp(0) 1532087464 (second precision) * @example getPreciseTimestamp(-1) 153208746 (10 second precision) * @example getPreciseTimestamp(-2) 15320875 (100 second precision) * * @param int $precision * * @return float */ public function getPreciseTimestamp($precision = 6) { return round($this->rawFormat('Uu') / pow(10, 6 - $precision)); } /** * Returns the milliseconds timestamps used amongst other by Date javascript objects. * * @return float */ public function valueOf() { return $this->getPreciseTimestamp(3); } /** * @alias getTimestamp * * Returns the UNIX timestamp for the current date. * * @return int */ public function unix() { return $this->getTimestamp(); } /** * Return an array with integer part digits and decimals digits split from one or more positive numbers * (such as timestamps) as string with the given number of decimals (6 by default). * * By splitting integer and decimal, this method obtain a better precision than * number_format when the input is a string. * * @param float|int|string $numbers one or more numbers * @param int $decimals number of decimals precision (6 by default) * * @return array 0-index is integer part, 1-index is decimal part digits */ private static function getIntegerAndDecimalParts($numbers, $decimals = 6) { if (\is_int($numbers) || \is_float($numbers)) { $numbers = number_format($numbers, $decimals, '.', ''); } $sign = substr($numbers, 0, 1) === '-' ? -1 : 1; $integer = 0; $decimal = 0; foreach (preg_split('`[^0-9.]+`', $numbers) as $chunk) { [$integerPart, $decimalPart] = explode('.', "$chunk."); $integer += \intval($integerPart); $decimal += \floatval("0.$decimalPart"); } $overflow = floor($decimal); $integer += $overflow; $decimal -= $overflow; return [$sign * $integer, $decimal === 0.0 ? 0.0 : $sign * round($decimal * pow(10, $decimals))]; } } PK! {ŖTŌlŌl)carbon/src/Carbon/Traits/Localization.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; use Carbon\CarbonInterface; use Carbon\Exceptions\InvalidTypeException; use Carbon\Exceptions\NotLocaleAwareException; use Carbon\Language; use Carbon\Translator; use Closure; use Symfony\Component\Translation\TranslatorBagInterface; use Symfony\Component\Translation\TranslatorInterface; use Symfony\Contracts\Translation\LocaleAwareInterface; use Symfony\Contracts\Translation\TranslatorInterface as ContractsTranslatorInterface; if (!interface_exists('Symfony\\Component\\Translation\\TranslatorInterface')) { class_alias( 'Symfony\\Contracts\\Translation\\TranslatorInterface', 'Symfony\\Component\\Translation\\TranslatorInterface' ); } /** * Trait Localization. * * Embed default and locale translators and translation base methods. */ trait Localization { /** * Default translator. * * @var \Symfony\Component\Translation\TranslatorInterface */ protected static $translator; /** * Specific translator of the current instance. * * @var \Symfony\Component\Translation\TranslatorInterface */ protected $localTranslator; /** * Options for diffForHumans(). * * @var int */ protected static $humanDiffOptions = CarbonInterface::NO_ZERO_DIFF; /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * @see settings * * @param int $humanDiffOptions */ public static function setHumanDiffOptions($humanDiffOptions) { static::$humanDiffOptions = $humanDiffOptions; } /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * @see settings * * @param int $humanDiffOption */ public static function enableHumanDiffOption($humanDiffOption) { static::$humanDiffOptions = static::getHumanDiffOptions() | $humanDiffOption; } /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use the ->settings() method. * @see settings * * @param int $humanDiffOption */ public static function disableHumanDiffOption($humanDiffOption) { static::$humanDiffOptions = static::getHumanDiffOptions() & ~$humanDiffOption; } /** * Return default humanDiff() options (merged flags as integer). * * @return int */ public static function getHumanDiffOptions() { return static::$humanDiffOptions; } /** * Get the default translator instance in use. * * @return \Symfony\Component\Translation\TranslatorInterface */ public static function getTranslator() { return static::translator(); } /** * Set the default translator instance to use. * * @param \Symfony\Component\Translation\TranslatorInterface $translator * * @return void */ public static function setTranslator(TranslatorInterface $translator) { static::$translator = $translator; } /** * Return true if the current instance has its own translator. * * @return bool */ public function hasLocalTranslator() { return isset($this->localTranslator); } /** * Get the translator of the current instance or the default if none set. * * @return \Symfony\Component\Translation\TranslatorInterface */ public function getLocalTranslator() { return $this->localTranslator ?: static::translator(); } /** * Set the translator for the current instance. * * @param \Symfony\Component\Translation\TranslatorInterface $translator * * @return $this */ public function setLocalTranslator(TranslatorInterface $translator) { $this->localTranslator = $translator; return $this; } /** * Returns raw translation message for a given key. * * @param \Symfony\Component\Translation\TranslatorInterface $translator the translator to use * @param string $key key to find * @param string|null $locale current locale used if null * @param string|null $default default value if translation returns the key * * @return string */ public static function getTranslationMessageWith($translator, string $key, string $locale = null, string $default = null) { if (!($translator instanceof TranslatorBagInterface && $translator instanceof TranslatorInterface)) { throw new InvalidTypeException( 'Translator does not implement '.TranslatorInterface::class.' and '.TranslatorBagInterface::class.'. '. (\is_object($translator) ? \get_class($translator) : \gettype($translator)).' has been given.' ); } if (!$locale && $translator instanceof LocaleAwareInterface) { $locale = $translator->getLocale(); } $result = $translator->getCatalogue($locale)->get($key); return $result === $key ? $default : $result; } /** * Returns raw translation message for a given key. * * @param string $key key to find * @param string|null $locale current locale used if null * @param string|null $default default value if translation returns the key * @param \Symfony\Component\Translation\TranslatorInterface $translator an optional translator to use * * @return string */ public function getTranslationMessage(string $key, string $locale = null, string $default = null, $translator = null) { return static::getTranslationMessageWith($translator ?: $this->getLocalTranslator(), $key, $locale, $default); } /** * Translate using translation string or callback available. * * @param \Symfony\Component\Translation\TranslatorInterface $translator * @param string $key * @param array $parameters * @param null $number * * @return string */ public static function translateWith(TranslatorInterface $translator, string $key, array $parameters = [], $number = null): string { $message = static::getTranslationMessageWith($translator, $key, null, $key); if ($message instanceof Closure) { return (string) $message(...array_values($parameters)); } if ($number !== null) { $parameters['%count%'] = $number; } if (isset($parameters['%count%'])) { $parameters[':count'] = $parameters['%count%']; } // @codeCoverageIgnoreStart $choice = $translator instanceof ContractsTranslatorInterface ? $translator->trans($key, $parameters) : $translator->transChoice($key, $number, $parameters); // @codeCoverageIgnoreEnd return (string) $choice; } /** * Translate using translation string or callback available. * * @param string $key * @param array $parameters * @param null $number * @param \Symfony\Component\Translation\TranslatorInterface $translator * * @return string */ public function translate(string $key, array $parameters = [], $number = null, TranslatorInterface $translator = null, bool $altNumbers = false): string { $translation = static::translateWith($translator ?: $this->getLocalTranslator(), $key, $parameters, $number); if ($number !== null && $altNumbers) { return str_replace($number, $this->translateNumber($number), $translation); } return $translation; } /** * Returns the alternative number for a given integer if available in the current locale. * * @param int $number * * @return string */ public function translateNumber(int $number): string { $translateKey = "alt_numbers.$number"; $symbol = $this->translate($translateKey); if ($symbol !== $translateKey) { return $symbol; } if ($number > 99 && $this->translate('alt_numbers.99') !== 'alt_numbers.99') { $start = ''; foreach ([10000, 1000, 100] as $exp) { $key = "alt_numbers_pow.$exp"; if ($number >= $exp && $number < $exp * 10 && ($pow = $this->translate($key)) !== $key) { $unit = floor($number / $exp); $number -= $unit * $exp; $start .= ($unit > 1 ? $this->translate("alt_numbers.$unit") : '').$pow; } } $result = ''; while ($number) { $chunk = $number % 100; $result = $this->translate("alt_numbers.$chunk").$result; $number = floor($number / 100); } return "$start$result"; } if ($number > 9 && $this->translate('alt_numbers.9') !== 'alt_numbers.9') { $result = ''; while ($number) { $chunk = $number % 10; $result = $this->translate("alt_numbers.$chunk").$result; $number = floor($number / 10); } return $result; } return "$number"; } /** * Translate a time string from a locale to an other. * * @param string $timeString date/time/duration string to translate (may also contain English) * @param string|null $from input locale of the $timeString parameter (`Carbon::getLocale()` by default) * @param string|null $to output locale of the result returned (`"en"` by default) * @param int $mode specify what to translate with options: * - CarbonInterface::TRANSLATE_ALL (default) * - CarbonInterface::TRANSLATE_MONTHS * - CarbonInterface::TRANSLATE_DAYS * - CarbonInterface::TRANSLATE_UNITS * - CarbonInterface::TRANSLATE_MERIDIEM * You can use pipe to group: CarbonInterface::TRANSLATE_MONTHS | CarbonInterface::TRANSLATE_DAYS * * @return string */ public static function translateTimeString($timeString, $from = null, $to = null, $mode = CarbonInterface::TRANSLATE_ALL) { // Fallback source and destination locales $from = $from ?: static::getLocale(); $to = $to ?: 'en'; if ($from === $to) { return $timeString; } // Standardize apostrophe $timeString = strtr($timeString, ['’' => "'"]); $fromTranslations = []; $toTranslations = []; foreach (['from', 'to'] as $key) { $language = $$key; $translator = Translator::get($language); $translations = $translator->getMessages(); if (!isset($translations[$language])) { return $timeString; } $translationKey = $key.'Translations'; $messages = $translations[$language]; $months = $messages['months'] ?? []; $weekdays = $messages['weekdays'] ?? []; $meridiem = $messages['meridiem'] ?? ['AM', 'PM']; if ($key === 'from') { foreach (['months', 'weekdays'] as $variable) { $list = $messages[$variable.'_standalone'] ?? null; if ($list) { foreach ($$variable as $index => &$name) { $name .= '|'.$messages[$variable.'_standalone'][$index]; } } } } $$translationKey = array_merge( $mode & CarbonInterface::TRANSLATE_MONTHS ? static::getTranslationArray($months, 12, $timeString) : [], $mode & CarbonInterface::TRANSLATE_MONTHS ? static::getTranslationArray($messages['months_short'] ?? [], 12, $timeString) : [], $mode & CarbonInterface::TRANSLATE_DAYS ? static::getTranslationArray($weekdays, 7, $timeString) : [], $mode & CarbonInterface::TRANSLATE_DAYS ? static::getTranslationArray($messages['weekdays_short'] ?? [], 7, $timeString) : [], $mode & CarbonInterface::TRANSLATE_DIFF ? static::translateWordsByKeys([ 'diff_now', 'diff_today', 'diff_yesterday', 'diff_tomorrow', 'diff_before_yesterday', 'diff_after_tomorrow', ], $messages, $key) : [], $mode & CarbonInterface::TRANSLATE_UNITS ? static::translateWordsByKeys([ 'year', 'month', 'week', 'day', 'hour', 'minute', 'second', ], $messages, $key) : [], $mode & CarbonInterface::TRANSLATE_MERIDIEM ? array_map(function ($hour) use ($meridiem) { if (\is_array($meridiem)) { return $meridiem[$hour < 12 ? 0 : 1]; } return $meridiem($hour, 0, false); }, range(0, 23)) : [] ); } return substr(preg_replace_callback('/(?<=[\d\s+.\/,_-])('.implode('|', $fromTranslations).')(?=[\d\s+.\/,_-])/iu', function ($match) use ($fromTranslations, $toTranslations) { [$chunk] = $match; foreach ($fromTranslations as $index => $word) { if (preg_match("/^$word\$/iu", $chunk)) { return $toTranslations[$index] ?? ''; } } return $chunk; // @codeCoverageIgnore }, " $timeString "), 1, -1); } /** * Translate a time string from the current locale (`$date->locale()`) to an other. * * @param string $timeString time string to translate * @param string|null $to output locale of the result returned ("en" by default) * * @return string */ public function translateTimeStringTo($timeString, $to = null) { return static::translateTimeString($timeString, $this->getTranslatorLocale(), $to); } /** * Get/set the locale for the current instance. * * @param string|null $locale * @param string ...$fallbackLocales * * @return $this|string */ public function locale(string $locale = null, ...$fallbackLocales) { if ($locale === null) { return $this->getTranslatorLocale(); } if (!$this->localTranslator || $this->getTranslatorLocale($this->localTranslator) !== $locale) { $translator = Translator::get($locale); if (!empty($fallbackLocales)) { $translator->setFallbackLocales($fallbackLocales); foreach ($fallbackLocales as $fallbackLocale) { $messages = Translator::get($fallbackLocale)->getMessages(); if (isset($messages[$fallbackLocale])) { $translator->setMessages($fallbackLocale, $messages[$fallbackLocale]); } } } $this->setLocalTranslator($translator); } return $this; } /** * Get the current translator locale. * * @return string */ public static function getLocale() { return static::getLocaleAwareTranslator()->getLocale(); } /** * Set the current translator locale and indicate if the source locale file exists. * Pass 'auto' as locale to use closest language from the current LC_TIME locale. * * @param string $locale locale ex. en * * @return bool */ public static function setLocale($locale) { return static::getLocaleAwareTranslator()->setLocale($locale) !== false; } /** * Set the fallback locale. * * @see https://symfony.com/doc/current/components/translation.html#fallback-locales * * @param string $locale */ public static function setFallbackLocale($locale) { $translator = static::getTranslator(); if (method_exists($translator, 'setFallbackLocales')) { $translator->setFallbackLocales([$locale]); if ($translator instanceof Translator) { $preferredLocale = $translator->getLocale(); $translator->setMessages($preferredLocale, array_replace_recursive( $translator->getMessages()[$locale] ?? [], Translator::get($locale)->getMessages()[$locale] ?? [], $translator->getMessages($preferredLocale) )); } } } /** * Get the fallback locale. * * @see https://symfony.com/doc/current/components/translation.html#fallback-locales * * @return string|null */ public static function getFallbackLocale() { $translator = static::getTranslator(); if (method_exists($translator, 'getFallbackLocales')) { return $translator->getFallbackLocales()[0] ?? null; } return null; } /** * Set the current locale to the given, execute the passed function, reset the locale to previous one, * then return the result of the closure (or null if the closure was void). * * @param string $locale locale ex. en * @param callable $func * * @return mixed */ public static function executeWithLocale($locale, $func) { $currentLocale = static::getLocale(); $result = $func(static::setLocale($locale) ? static::getLocale() : false, static::translator()); static::setLocale($currentLocale); return $result; } /** * Returns true if the given locale is internally supported and has short-units support. * Support is considered enabled if either year, day or hour has a short variant translated. * * @param string $locale locale ex. en * * @return bool */ public static function localeHasShortUnits($locale) { return static::executeWithLocale($locale, function ($newLocale, TranslatorInterface $translator) { return $newLocale && ( ($y = static::translateWith($translator, 'y')) !== 'y' && $y !== static::translateWith($translator, 'year') ) || ( ($y = static::translateWith($translator, 'd')) !== 'd' && $y !== static::translateWith($translator, 'day') ) || ( ($y = static::translateWith($translator, 'h')) !== 'h' && $y !== static::translateWith($translator, 'hour') ); }); } /** * Returns true if the given locale is internally supported and has diff syntax support (ago, from now, before, after). * Support is considered enabled if the 4 sentences are translated in the given locale. * * @param string $locale locale ex. en * * @return bool */ public static function localeHasDiffSyntax($locale) { return static::executeWithLocale($locale, function ($newLocale, TranslatorInterface $translator) { if (!$newLocale) { return false; } foreach (['ago', 'from_now', 'before', 'after'] as $key) { if ($translator instanceof TranslatorBagInterface && $translator->getCatalogue($newLocale)->get($key) instanceof Closure) { continue; } if ($translator->trans($key) === $key) { return false; } } return true; }); } /** * Returns true if the given locale is internally supported and has words for 1-day diff (just now, yesterday, tomorrow). * Support is considered enabled if the 3 words are translated in the given locale. * * @param string $locale locale ex. en * * @return bool */ public static function localeHasDiffOneDayWords($locale) { return static::executeWithLocale($locale, function ($newLocale, TranslatorInterface $translator) { return $newLocale && $translator->trans('diff_now') !== 'diff_now' && $translator->trans('diff_yesterday') !== 'diff_yesterday' && $translator->trans('diff_tomorrow') !== 'diff_tomorrow'; }); } /** * Returns true if the given locale is internally supported and has words for 2-days diff (before yesterday, after tomorrow). * Support is considered enabled if the 2 words are translated in the given locale. * * @param string $locale locale ex. en * * @return bool */ public static function localeHasDiffTwoDayWords($locale) { return static::executeWithLocale($locale, function ($newLocale, TranslatorInterface $translator) { return $newLocale && $translator->trans('diff_before_yesterday') !== 'diff_before_yesterday' && $translator->trans('diff_after_tomorrow') !== 'diff_after_tomorrow'; }); } /** * Returns true if the given locale is internally supported and has period syntax support (X times, every X, from X, to X). * Support is considered enabled if the 4 sentences are translated in the given locale. * * @param string $locale locale ex. en * * @return bool */ public static function localeHasPeriodSyntax($locale) { return static::executeWithLocale($locale, function ($newLocale, TranslatorInterface $translator) { return $newLocale && $translator->trans('period_recurrences') !== 'period_recurrences' && $translator->trans('period_interval') !== 'period_interval' && $translator->trans('period_start_date') !== 'period_start_date' && $translator->trans('period_end_date') !== 'period_end_date'; }); } /** * Returns the list of internally available locales and already loaded custom locales. * (It will ignore custom translator dynamic loading.) * * @return array */ public static function getAvailableLocales() { $translator = static::getLocaleAwareTranslator(); return $translator instanceof Translator ? $translator->getAvailableLocales() : [$translator->getLocale()]; } /** * Returns list of Language object for each available locale. This object allow you to get the ISO name, native * name, region and variant of the locale. * * @return Language[] */ public static function getAvailableLocalesInfo() { $languages = []; foreach (static::getAvailableLocales() as $id) { $languages[$id] = new Language($id); } return $languages; } /** * Initialize the default translator instance if necessary. * * @return \Symfony\Component\Translation\TranslatorInterface */ protected static function translator() { if (static::$translator === null) { static::$translator = Translator::get(); } return static::$translator; } /** * Get the locale of a given translator. * * If null or omitted, current local translator is used. * If no local translator is in use, current global translator is used. * * @param null $translator * * @return string|null */ protected function getTranslatorLocale($translator = null): ?string { if (\func_num_args() === 0) { $translator = $this->getLocalTranslator(); } $translator = static::getLocaleAwareTranslator($translator); return $translator ? $translator->getLocale() : null; } /** * Throw an error if passed object is not LocaleAwareInterface. * * @param LocaleAwareInterface|null $translator * * @return LocaleAwareInterface|null */ protected static function getLocaleAwareTranslator($translator = null) { if (\func_num_args() === 0) { $translator = static::translator(); } if ($translator && !($translator instanceof LocaleAwareInterface || method_exists($translator, 'getLocale'))) { throw new NotLocaleAwareException($translator); } return $translator; } /** * Return the word cleaned from its translation codes. * * @param string $word * * @return string */ private static function cleanWordFromTranslationString($word) { $word = str_replace([':count', '%count', ':time'], '', $word); $word = strtr($word, ['’' => "'"]); $word = preg_replace('/({\d+(,(\d+|Inf))?}|[\[\]]\d+(,(\d+|Inf))?[\[\]])/', '', $word); return trim($word); } /** * Translate a list of words. * * @param string[] $keys keys to translate. * @param string[] $messages messages bag handling translations. * @param string $key 'to' (to get the translation) or 'from' (to get the detection RegExp pattern). * * @return string[] */ private static function translateWordsByKeys($keys, $messages, $key): array { return array_map(function ($wordKey) use ($messages, $key) { $message = $key === 'from' && isset($messages[$wordKey.'_regexp']) ? $messages[$wordKey.'_regexp'] : ($messages[$wordKey] ?? null); if (!$message) { return '>>DO NOT REPLACE<<'; } $parts = explode('|', $message); return $key === 'to' ? static::cleanWordFromTranslationString(end($parts)) : '(?:'.implode('|', array_map([static::class, 'cleanWordFromTranslationString'], $parts)).')'; }, $keys); } /** * Get an array of translations based on the current date. * * @param callable $translation * @param int $length * @param string $timeString * * @return string[] */ private static function getTranslationArray($translation, $length, $timeString): array { $filler = '>>DO NOT REPLACE<<'; if (\is_array($translation)) { return array_pad($translation, $length, $filler); } $list = []; $date = static::now(); for ($i = 0; $i < $length; $i++) { $list[] = $translation($date, $timeString, $i) ?? $filler; } return $list; } } PK!—źÜsÜs!carbon/src/Carbon/Traits/Date.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; use BadMethodCallException; use Carbon\Carbon; use Carbon\CarbonInterface; use Carbon\CarbonPeriod; use Carbon\CarbonTimeZone; use Carbon\Exceptions\BadComparisonUnitException; use Carbon\Exceptions\ImmutableException; use Carbon\Exceptions\InvalidTimeZoneException; use Carbon\Exceptions\InvalidTypeException; use Carbon\Exceptions\UnknownGetterException; use Carbon\Exceptions\UnknownMethodException; use Carbon\Exceptions\UnknownSetterException; use Carbon\Exceptions\UnknownUnitException; use Closure; use DateInterval; use DatePeriod; use DateTime; use DateTimeInterface; use DateTimeZone; use InvalidArgumentException; use ReflectionException; use Throwable; /** * A simple API extension for DateTime. * * * * @property int $year * @property int $yearIso * @property int $month * @property int $day * @property int $hour * @property int $minute * @property int $second * @property int $micro * @property int $microsecond * @property int|float|string $timestamp seconds since the Unix Epoch * @property string $englishDayOfWeek the day of week in English * @property string $shortEnglishDayOfWeek the abbreviated day of week in English * @property string $englishMonth the month in English * @property string $shortEnglishMonth the abbreviated month in English * @property string $localeDayOfWeek the day of week in current locale LC_TIME * @property string $shortLocaleDayOfWeek the abbreviated day of week in current locale LC_TIME * @property string $localeMonth the month in current locale LC_TIME * @property string $shortLocaleMonth the abbreviated month in current locale LC_TIME * @property int $milliseconds * @property int $millisecond * @property int $milli * @property int $week 1 through 53 * @property int $isoWeek 1 through 53 * @property int $weekYear year according to week format * @property int $isoWeekYear year according to ISO week format * @property int $dayOfYear 1 through 366 * @property int $age does a diffInYears() with default parameters * @property int $offset the timezone offset in seconds from UTC * @property int $offsetMinutes the timezone offset in minutes from UTC * @property int $offsetHours the timezone offset in hours from UTC * @property CarbonTimeZone $timezone the current timezone * @property CarbonTimeZone $tz alias of $timezone * @property-read int $dayOfWeek 0 (for Sunday) through 6 (for Saturday) * @property-read int $dayOfWeekIso 1 (for Monday) through 7 (for Sunday) * @property-read int $weekOfYear ISO-8601 week number of year, weeks starting on Monday * @property-read int $daysInMonth number of days in the given month * @property-read string $latinMeridiem "am"/"pm" (Ante meridiem or Post meridiem latin lowercase mark) * @property-read string $latinUpperMeridiem "AM"/"PM" (Ante meridiem or Post meridiem latin uppercase mark) * @property-read string $timezoneAbbreviatedName the current timezone abbreviated name * @property-read string $tzAbbrName alias of $timezoneAbbreviatedName * @property-read string $dayName long name of weekday translated according to Carbon locale, in english if no translation available for current language * @property-read string $shortDayName short name of weekday translated according to Carbon locale, in english if no translation available for current language * @property-read string $minDayName very short name of weekday translated according to Carbon locale, in english if no translation available for current language * @property-read string $monthName long name of month translated according to Carbon locale, in english if no translation available for current language * @property-read string $shortMonthName short name of month translated according to Carbon locale, in english if no translation available for current language * @property-read string $meridiem lowercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language * @property-read string $upperMeridiem uppercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language * @property-read int $noZeroHour current hour from 1 to 24 * @property-read int $weeksInYear 51 through 53 * @property-read int $isoWeeksInYear 51 through 53 * @property-read int $weekOfMonth 1 through 5 * @property-read int $weekNumberInMonth 1 through 5 * @property-read int $firstWeekDay 0 through 6 * @property-read int $lastWeekDay 0 through 6 * @property-read int $daysInYear 365 or 366 * @property-read int $quarter the quarter of this instance, 1 - 4 * @property-read int $decade the decade of this instance * @property-read int $century the century of this instance * @property-read int $millennium the millennium of this instance * @property-read bool $dst daylight savings time indicator, true if DST, false otherwise * @property-read bool $local checks if the timezone is local, true if local, false otherwise * @property-read bool $utc checks if the timezone is UTC, true if UTC, false otherwise * @property-read string $timezoneName the current timezone name * @property-read string $tzName alias of $timezoneName * @property-read string $locale locale of the current instance * * @method bool isUtc() Check if the current instance has UTC timezone. (Both isUtc and isUTC cases are valid.) * @method bool isLocal() Check if the current instance has non-UTC timezone. * @method bool isValid() Check if the current instance is a valid date. * @method bool isDST() Check if the current instance is in a daylight saving time. * @method bool isSunday() Checks if the instance day is sunday. * @method bool isMonday() Checks if the instance day is monday. * @method bool isTuesday() Checks if the instance day is tuesday. * @method bool isWednesday() Checks if the instance day is wednesday. * @method bool isThursday() Checks if the instance day is thursday. * @method bool isFriday() Checks if the instance day is friday. * @method bool isSaturday() Checks if the instance day is saturday. * @method bool isSameYear(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same year as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentYear() Checks if the instance is in the same year as the current moment. * @method bool isNextYear() Checks if the instance is in the same year as the current moment next year. * @method bool isLastYear() Checks if the instance is in the same year as the current moment last year. * @method bool isSameWeek(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same week as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentWeek() Checks if the instance is in the same week as the current moment. * @method bool isNextWeek() Checks if the instance is in the same week as the current moment next week. * @method bool isLastWeek() Checks if the instance is in the same week as the current moment last week. * @method bool isSameDay(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same day as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentDay() Checks if the instance is in the same day as the current moment. * @method bool isNextDay() Checks if the instance is in the same day as the current moment next day. * @method bool isLastDay() Checks if the instance is in the same day as the current moment last day. * @method bool isSameHour(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same hour as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentHour() Checks if the instance is in the same hour as the current moment. * @method bool isNextHour() Checks if the instance is in the same hour as the current moment next hour. * @method bool isLastHour() Checks if the instance is in the same hour as the current moment last hour. * @method bool isSameMinute(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same minute as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentMinute() Checks if the instance is in the same minute as the current moment. * @method bool isNextMinute() Checks if the instance is in the same minute as the current moment next minute. * @method bool isLastMinute() Checks if the instance is in the same minute as the current moment last minute. * @method bool isSameSecond(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same second as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentSecond() Checks if the instance is in the same second as the current moment. * @method bool isNextSecond() Checks if the instance is in the same second as the current moment next second. * @method bool isLastSecond() Checks if the instance is in the same second as the current moment last second. * @method bool isSameMicro(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same microsecond as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentMicro() Checks if the instance is in the same microsecond as the current moment. * @method bool isNextMicro() Checks if the instance is in the same microsecond as the current moment next microsecond. * @method bool isLastMicro() Checks if the instance is in the same microsecond as the current moment last microsecond. * @method bool isSameMicrosecond(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same microsecond as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentMicrosecond() Checks if the instance is in the same microsecond as the current moment. * @method bool isNextMicrosecond() Checks if the instance is in the same microsecond as the current moment next microsecond. * @method bool isLastMicrosecond() Checks if the instance is in the same microsecond as the current moment last microsecond. * @method bool isCurrentMonth() Checks if the instance is in the same month as the current moment. * @method bool isNextMonth() Checks if the instance is in the same month as the current moment next month. * @method bool isLastMonth() Checks if the instance is in the same month as the current moment last month. * @method bool isCurrentQuarter() Checks if the instance is in the same quarter as the current moment. * @method bool isNextQuarter() Checks if the instance is in the same quarter as the current moment next quarter. * @method bool isLastQuarter() Checks if the instance is in the same quarter as the current moment last quarter. * @method bool isSameDecade(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same decade as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentDecade() Checks if the instance is in the same decade as the current moment. * @method bool isNextDecade() Checks if the instance is in the same decade as the current moment next decade. * @method bool isLastDecade() Checks if the instance is in the same decade as the current moment last decade. * @method bool isSameCentury(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same century as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentCentury() Checks if the instance is in the same century as the current moment. * @method bool isNextCentury() Checks if the instance is in the same century as the current moment next century. * @method bool isLastCentury() Checks if the instance is in the same century as the current moment last century. * @method bool isSameMillennium(Carbon|DateTimeInterface|string|null $date = null) Checks if the given date is in the same millennium as the instance. If null passed, compare to now (with the same timezone). * @method bool isCurrentMillennium() Checks if the instance is in the same millennium as the current moment. * @method bool isNextMillennium() Checks if the instance is in the same millennium as the current moment next millennium. * @method bool isLastMillennium() Checks if the instance is in the same millennium as the current moment last millennium. * @method CarbonInterface years(int $value) Set current instance year to the given value. * @method CarbonInterface year(int $value) Set current instance year to the given value. * @method CarbonInterface setYears(int $value) Set current instance year to the given value. * @method CarbonInterface setYear(int $value) Set current instance year to the given value. * @method CarbonInterface months(int $value) Set current instance month to the given value. * @method CarbonInterface month(int $value) Set current instance month to the given value. * @method CarbonInterface setMonths(int $value) Set current instance month to the given value. * @method CarbonInterface setMonth(int $value) Set current instance month to the given value. * @method CarbonInterface days(int $value) Set current instance day to the given value. * @method CarbonInterface day(int $value) Set current instance day to the given value. * @method CarbonInterface setDays(int $value) Set current instance day to the given value. * @method CarbonInterface setDay(int $value) Set current instance day to the given value. * @method CarbonInterface hours(int $value) Set current instance hour to the given value. * @method CarbonInterface hour(int $value) Set current instance hour to the given value. * @method CarbonInterface setHours(int $value) Set current instance hour to the given value. * @method CarbonInterface setHour(int $value) Set current instance hour to the given value. * @method CarbonInterface minutes(int $value) Set current instance minute to the given value. * @method CarbonInterface minute(int $value) Set current instance minute to the given value. * @method CarbonInterface setMinutes(int $value) Set current instance minute to the given value. * @method CarbonInterface setMinute(int $value) Set current instance minute to the given value. * @method CarbonInterface seconds(int $value) Set current instance second to the given value. * @method CarbonInterface second(int $value) Set current instance second to the given value. * @method CarbonInterface setSeconds(int $value) Set current instance second to the given value. * @method CarbonInterface setSecond(int $value) Set current instance second to the given value. * @method CarbonInterface millis(int $value) Set current instance millisecond to the given value. * @method CarbonInterface milli(int $value) Set current instance millisecond to the given value. * @method CarbonInterface setMillis(int $value) Set current instance millisecond to the given value. * @method CarbonInterface setMilli(int $value) Set current instance millisecond to the given value. * @method CarbonInterface milliseconds(int $value) Set current instance millisecond to the given value. * @method CarbonInterface millisecond(int $value) Set current instance millisecond to the given value. * @method CarbonInterface setMilliseconds(int $value) Set current instance millisecond to the given value. * @method CarbonInterface setMillisecond(int $value) Set current instance millisecond to the given value. * @method CarbonInterface micros(int $value) Set current instance microsecond to the given value. * @method CarbonInterface micro(int $value) Set current instance microsecond to the given value. * @method CarbonInterface setMicros(int $value) Set current instance microsecond to the given value. * @method CarbonInterface setMicro(int $value) Set current instance microsecond to the given value. * @method CarbonInterface microseconds(int $value) Set current instance microsecond to the given value. * @method CarbonInterface microsecond(int $value) Set current instance microsecond to the given value. * @method CarbonInterface setMicroseconds(int $value) Set current instance microsecond to the given value. * @method CarbonInterface setMicrosecond(int $value) Set current instance microsecond to the given value. * @method CarbonInterface addYears(int $value = 1) Add years (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addYear() Add one year to the instance (using date interval). * @method CarbonInterface subYears(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subYear() Sub one year to the instance (using date interval). * @method CarbonInterface addYearsWithOverflow(int $value = 1) Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addYearWithOverflow() Add one year to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subYearsWithOverflow(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subYearWithOverflow() Sub one year to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addYearsWithoutOverflow(int $value = 1) Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addYearWithoutOverflow() Add one year to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subYearsWithoutOverflow(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subYearWithoutOverflow() Sub one year to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addYearsWithNoOverflow(int $value = 1) Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addYearWithNoOverflow() Add one year to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subYearsWithNoOverflow(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subYearWithNoOverflow() Sub one year to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addYearsNoOverflow(int $value = 1) Add years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addYearNoOverflow() Add one year to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subYearsNoOverflow(int $value = 1) Sub years (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subYearNoOverflow() Sub one year to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMonths(int $value = 1) Add months (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addMonth() Add one month to the instance (using date interval). * @method CarbonInterface subMonths(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subMonth() Sub one month to the instance (using date interval). * @method CarbonInterface addMonthsWithOverflow(int $value = 1) Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addMonthWithOverflow() Add one month to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subMonthsWithOverflow(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subMonthWithOverflow() Sub one month to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addMonthsWithoutOverflow(int $value = 1) Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMonthWithoutOverflow() Add one month to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMonthsWithoutOverflow(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMonthWithoutOverflow() Sub one month to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMonthsWithNoOverflow(int $value = 1) Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMonthWithNoOverflow() Add one month to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMonthsWithNoOverflow(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMonthWithNoOverflow() Sub one month to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMonthsNoOverflow(int $value = 1) Add months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMonthNoOverflow() Add one month to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMonthsNoOverflow(int $value = 1) Sub months (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMonthNoOverflow() Sub one month to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addDays(int $value = 1) Add days (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addDay() Add one day to the instance (using date interval). * @method CarbonInterface subDays(int $value = 1) Sub days (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subDay() Sub one day to the instance (using date interval). * @method CarbonInterface addHours(int $value = 1) Add hours (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addHour() Add one hour to the instance (using date interval). * @method CarbonInterface subHours(int $value = 1) Sub hours (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subHour() Sub one hour to the instance (using date interval). * @method CarbonInterface addMinutes(int $value = 1) Add minutes (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addMinute() Add one minute to the instance (using date interval). * @method CarbonInterface subMinutes(int $value = 1) Sub minutes (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subMinute() Sub one minute to the instance (using date interval). * @method CarbonInterface addSeconds(int $value = 1) Add seconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addSecond() Add one second to the instance (using date interval). * @method CarbonInterface subSeconds(int $value = 1) Sub seconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subSecond() Sub one second to the instance (using date interval). * @method CarbonInterface addMillis(int $value = 1) Add milliseconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addMilli() Add one millisecond to the instance (using date interval). * @method CarbonInterface subMillis(int $value = 1) Sub milliseconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subMilli() Sub one millisecond to the instance (using date interval). * @method CarbonInterface addMilliseconds(int $value = 1) Add milliseconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addMillisecond() Add one millisecond to the instance (using date interval). * @method CarbonInterface subMilliseconds(int $value = 1) Sub milliseconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subMillisecond() Sub one millisecond to the instance (using date interval). * @method CarbonInterface addMicros(int $value = 1) Add microseconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addMicro() Add one microsecond to the instance (using date interval). * @method CarbonInterface subMicros(int $value = 1) Sub microseconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subMicro() Sub one microsecond to the instance (using date interval). * @method CarbonInterface addMicroseconds(int $value = 1) Add microseconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addMicrosecond() Add one microsecond to the instance (using date interval). * @method CarbonInterface subMicroseconds(int $value = 1) Sub microseconds (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subMicrosecond() Sub one microsecond to the instance (using date interval). * @method CarbonInterface addMillennia(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addMillennium() Add one millennium to the instance (using date interval). * @method CarbonInterface subMillennia(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subMillennium() Sub one millennium to the instance (using date interval). * @method CarbonInterface addMillenniaWithOverflow(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addMillenniumWithOverflow() Add one millennium to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subMillenniaWithOverflow(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subMillenniumWithOverflow() Sub one millennium to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addMillenniaWithoutOverflow(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMillenniumWithoutOverflow() Add one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMillenniaWithoutOverflow(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMillenniumWithoutOverflow() Sub one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMillenniaWithNoOverflow(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMillenniumWithNoOverflow() Add one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMillenniaWithNoOverflow(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMillenniumWithNoOverflow() Sub one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMillenniaNoOverflow(int $value = 1) Add millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addMillenniumNoOverflow() Add one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMillenniaNoOverflow(int $value = 1) Sub millennia (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subMillenniumNoOverflow() Sub one millennium to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addCenturies(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addCentury() Add one century to the instance (using date interval). * @method CarbonInterface subCenturies(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subCentury() Sub one century to the instance (using date interval). * @method CarbonInterface addCenturiesWithOverflow(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addCenturyWithOverflow() Add one century to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subCenturiesWithOverflow(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subCenturyWithOverflow() Sub one century to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addCenturiesWithoutOverflow(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addCenturyWithoutOverflow() Add one century to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subCenturiesWithoutOverflow(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subCenturyWithoutOverflow() Sub one century to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addCenturiesWithNoOverflow(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addCenturyWithNoOverflow() Add one century to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subCenturiesWithNoOverflow(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subCenturyWithNoOverflow() Sub one century to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addCenturiesNoOverflow(int $value = 1) Add centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addCenturyNoOverflow() Add one century to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subCenturiesNoOverflow(int $value = 1) Sub centuries (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subCenturyNoOverflow() Sub one century to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addDecades(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addDecade() Add one decade to the instance (using date interval). * @method CarbonInterface subDecades(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subDecade() Sub one decade to the instance (using date interval). * @method CarbonInterface addDecadesWithOverflow(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addDecadeWithOverflow() Add one decade to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subDecadesWithOverflow(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subDecadeWithOverflow() Sub one decade to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addDecadesWithoutOverflow(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addDecadeWithoutOverflow() Add one decade to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subDecadesWithoutOverflow(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subDecadeWithoutOverflow() Sub one decade to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addDecadesWithNoOverflow(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addDecadeWithNoOverflow() Add one decade to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subDecadesWithNoOverflow(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subDecadeWithNoOverflow() Sub one decade to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addDecadesNoOverflow(int $value = 1) Add decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addDecadeNoOverflow() Add one decade to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subDecadesNoOverflow(int $value = 1) Sub decades (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subDecadeNoOverflow() Sub one decade to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addQuarters(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addQuarter() Add one quarter to the instance (using date interval). * @method CarbonInterface subQuarters(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subQuarter() Sub one quarter to the instance (using date interval). * @method CarbonInterface addQuartersWithOverflow(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addQuarterWithOverflow() Add one quarter to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subQuartersWithOverflow(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface subQuarterWithOverflow() Sub one quarter to the instance (using date interval) with overflow explicitly allowed. * @method CarbonInterface addQuartersWithoutOverflow(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addQuarterWithoutOverflow() Add one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subQuartersWithoutOverflow(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subQuarterWithoutOverflow() Sub one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addQuartersWithNoOverflow(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addQuarterWithNoOverflow() Add one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subQuartersWithNoOverflow(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subQuarterWithNoOverflow() Sub one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addQuartersNoOverflow(int $value = 1) Add quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addQuarterNoOverflow() Add one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subQuartersNoOverflow(int $value = 1) Sub quarters (the $value count passed in) to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface subQuarterNoOverflow() Sub one quarter to the instance (using date interval) with overflow explicitly forbidden. * @method CarbonInterface addWeeks(int $value = 1) Add weeks (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addWeek() Add one week to the instance (using date interval). * @method CarbonInterface subWeeks(int $value = 1) Sub weeks (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subWeek() Sub one week to the instance (using date interval). * @method CarbonInterface addWeekdays(int $value = 1) Add weekdays (the $value count passed in) to the instance (using date interval). * @method CarbonInterface addWeekday() Add one weekday to the instance (using date interval). * @method CarbonInterface subWeekdays(int $value = 1) Sub weekdays (the $value count passed in) to the instance (using date interval). * @method CarbonInterface subWeekday() Sub one weekday to the instance (using date interval). * @method CarbonInterface addRealMicros(int $value = 1) Add microseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealMicro() Add one microsecond to the instance (using timestamp). * @method CarbonInterface subRealMicros(int $value = 1) Sub microseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealMicro() Sub one microsecond to the instance (using timestamp). * @method CarbonPeriod microsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each microsecond or every X microseconds if a factor is given. * @method CarbonInterface addRealMicroseconds(int $value = 1) Add microseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealMicrosecond() Add one microsecond to the instance (using timestamp). * @method CarbonInterface subRealMicroseconds(int $value = 1) Sub microseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealMicrosecond() Sub one microsecond to the instance (using timestamp). * @method CarbonPeriod microsecondsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each microsecond or every X microseconds if a factor is given. * @method CarbonInterface addRealMillis(int $value = 1) Add milliseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealMilli() Add one millisecond to the instance (using timestamp). * @method CarbonInterface subRealMillis(int $value = 1) Sub milliseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealMilli() Sub one millisecond to the instance (using timestamp). * @method CarbonPeriod millisUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millisecond or every X milliseconds if a factor is given. * @method CarbonInterface addRealMilliseconds(int $value = 1) Add milliseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealMillisecond() Add one millisecond to the instance (using timestamp). * @method CarbonInterface subRealMilliseconds(int $value = 1) Sub milliseconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealMillisecond() Sub one millisecond to the instance (using timestamp). * @method CarbonPeriod millisecondsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millisecond or every X milliseconds if a factor is given. * @method CarbonInterface addRealSeconds(int $value = 1) Add seconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealSecond() Add one second to the instance (using timestamp). * @method CarbonInterface subRealSeconds(int $value = 1) Sub seconds (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealSecond() Sub one second to the instance (using timestamp). * @method CarbonPeriod secondsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each second or every X seconds if a factor is given. * @method CarbonInterface addRealMinutes(int $value = 1) Add minutes (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealMinute() Add one minute to the instance (using timestamp). * @method CarbonInterface subRealMinutes(int $value = 1) Sub minutes (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealMinute() Sub one minute to the instance (using timestamp). * @method CarbonPeriod minutesUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each minute or every X minutes if a factor is given. * @method CarbonInterface addRealHours(int $value = 1) Add hours (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealHour() Add one hour to the instance (using timestamp). * @method CarbonInterface subRealHours(int $value = 1) Sub hours (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealHour() Sub one hour to the instance (using timestamp). * @method CarbonPeriod hoursUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each hour or every X hours if a factor is given. * @method CarbonInterface addRealDays(int $value = 1) Add days (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealDay() Add one day to the instance (using timestamp). * @method CarbonInterface subRealDays(int $value = 1) Sub days (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealDay() Sub one day to the instance (using timestamp). * @method CarbonPeriod daysUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each day or every X days if a factor is given. * @method CarbonInterface addRealWeeks(int $value = 1) Add weeks (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealWeek() Add one week to the instance (using timestamp). * @method CarbonInterface subRealWeeks(int $value = 1) Sub weeks (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealWeek() Sub one week to the instance (using timestamp). * @method CarbonPeriod weeksUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each week or every X weeks if a factor is given. * @method CarbonInterface addRealMonths(int $value = 1) Add months (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealMonth() Add one month to the instance (using timestamp). * @method CarbonInterface subRealMonths(int $value = 1) Sub months (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealMonth() Sub one month to the instance (using timestamp). * @method CarbonPeriod monthsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each month or every X months if a factor is given. * @method CarbonInterface addRealQuarters(int $value = 1) Add quarters (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealQuarter() Add one quarter to the instance (using timestamp). * @method CarbonInterface subRealQuarters(int $value = 1) Sub quarters (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealQuarter() Sub one quarter to the instance (using timestamp). * @method CarbonPeriod quartersUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each quarter or every X quarters if a factor is given. * @method CarbonInterface addRealYears(int $value = 1) Add years (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealYear() Add one year to the instance (using timestamp). * @method CarbonInterface subRealYears(int $value = 1) Sub years (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealYear() Sub one year to the instance (using timestamp). * @method CarbonPeriod yearsUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each year or every X years if a factor is given. * @method CarbonInterface addRealDecades(int $value = 1) Add decades (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealDecade() Add one decade to the instance (using timestamp). * @method CarbonInterface subRealDecades(int $value = 1) Sub decades (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealDecade() Sub one decade to the instance (using timestamp). * @method CarbonPeriod decadesUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each decade or every X decades if a factor is given. * @method CarbonInterface addRealCenturies(int $value = 1) Add centuries (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealCentury() Add one century to the instance (using timestamp). * @method CarbonInterface subRealCenturies(int $value = 1) Sub centuries (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealCentury() Sub one century to the instance (using timestamp). * @method CarbonPeriod centuriesUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each century or every X centuries if a factor is given. * @method CarbonInterface addRealMillennia(int $value = 1) Add millennia (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface addRealMillennium() Add one millennium to the instance (using timestamp). * @method CarbonInterface subRealMillennia(int $value = 1) Sub millennia (the $value count passed in) to the instance (using timestamp). * @method CarbonInterface subRealMillennium() Sub one millennium to the instance (using timestamp). * @method CarbonPeriod millenniaUntil($endDate = null, int $factor = 1) Return an iterable period from current date to given end (string, DateTime or Carbon instance) for each millennium or every X millennia if a factor is given. * @method CarbonInterface roundYear(float $precision = 1, string $function = "round") Round the current instance year with given precision using the given function. * @method CarbonInterface roundYears(float $precision = 1, string $function = "round") Round the current instance year with given precision using the given function. * @method CarbonInterface floorYear(float $precision = 1) Truncate the current instance year with given precision. * @method CarbonInterface floorYears(float $precision = 1) Truncate the current instance year with given precision. * @method CarbonInterface ceilYear(float $precision = 1) Ceil the current instance year with given precision. * @method CarbonInterface ceilYears(float $precision = 1) Ceil the current instance year with given precision. * @method CarbonInterface roundMonth(float $precision = 1, string $function = "round") Round the current instance month with given precision using the given function. * @method CarbonInterface roundMonths(float $precision = 1, string $function = "round") Round the current instance month with given precision using the given function. * @method CarbonInterface floorMonth(float $precision = 1) Truncate the current instance month with given precision. * @method CarbonInterface floorMonths(float $precision = 1) Truncate the current instance month with given precision. * @method CarbonInterface ceilMonth(float $precision = 1) Ceil the current instance month with given precision. * @method CarbonInterface ceilMonths(float $precision = 1) Ceil the current instance month with given precision. * @method CarbonInterface roundDay(float $precision = 1, string $function = "round") Round the current instance day with given precision using the given function. * @method CarbonInterface roundDays(float $precision = 1, string $function = "round") Round the current instance day with given precision using the given function. * @method CarbonInterface floorDay(float $precision = 1) Truncate the current instance day with given precision. * @method CarbonInterface floorDays(float $precision = 1) Truncate the current instance day with given precision. * @method CarbonInterface ceilDay(float $precision = 1) Ceil the current instance day with given precision. * @method CarbonInterface ceilDays(float $precision = 1) Ceil the current instance day with given precision. * @method CarbonInterface roundHour(float $precision = 1, string $function = "round") Round the current instance hour with given precision using the given function. * @method CarbonInterface roundHours(float $precision = 1, string $function = "round") Round the current instance hour with given precision using the given function. * @method CarbonInterface floorHour(float $precision = 1) Truncate the current instance hour with given precision. * @method CarbonInterface floorHours(float $precision = 1) Truncate the current instance hour with given precision. * @method CarbonInterface ceilHour(float $precision = 1) Ceil the current instance hour with given precision. * @method CarbonInterface ceilHours(float $precision = 1) Ceil the current instance hour with given precision. * @method CarbonInterface roundMinute(float $precision = 1, string $function = "round") Round the current instance minute with given precision using the given function. * @method CarbonInterface roundMinutes(float $precision = 1, string $function = "round") Round the current instance minute with given precision using the given function. * @method CarbonInterface floorMinute(float $precision = 1) Truncate the current instance minute with given precision. * @method CarbonInterface floorMinutes(float $precision = 1) Truncate the current instance minute with given precision. * @method CarbonInterface ceilMinute(float $precision = 1) Ceil the current instance minute with given precision. * @method CarbonInterface ceilMinutes(float $precision = 1) Ceil the current instance minute with given precision. * @method CarbonInterface roundSecond(float $precision = 1, string $function = "round") Round the current instance second with given precision using the given function. * @method CarbonInterface roundSeconds(float $precision = 1, string $function = "round") Round the current instance second with given precision using the given function. * @method CarbonInterface floorSecond(float $precision = 1) Truncate the current instance second with given precision. * @method CarbonInterface floorSeconds(float $precision = 1) Truncate the current instance second with given precision. * @method CarbonInterface ceilSecond(float $precision = 1) Ceil the current instance second with given precision. * @method CarbonInterface ceilSeconds(float $precision = 1) Ceil the current instance second with given precision. * @method CarbonInterface roundMillennium(float $precision = 1, string $function = "round") Round the current instance millennium with given precision using the given function. * @method CarbonInterface roundMillennia(float $precision = 1, string $function = "round") Round the current instance millennium with given precision using the given function. * @method CarbonInterface floorMillennium(float $precision = 1) Truncate the current instance millennium with given precision. * @method CarbonInterface floorMillennia(float $precision = 1) Truncate the current instance millennium with given precision. * @method CarbonInterface ceilMillennium(float $precision = 1) Ceil the current instance millennium with given precision. * @method CarbonInterface ceilMillennia(float $precision = 1) Ceil the current instance millennium with given precision. * @method CarbonInterface roundCentury(float $precision = 1, string $function = "round") Round the current instance century with given precision using the given function. * @method CarbonInterface roundCenturies(float $precision = 1, string $function = "round") Round the current instance century with given precision using the given function. * @method CarbonInterface floorCentury(float $precision = 1) Truncate the current instance century with given precision. * @method CarbonInterface floorCenturies(float $precision = 1) Truncate the current instance century with given precision. * @method CarbonInterface ceilCentury(float $precision = 1) Ceil the current instance century with given precision. * @method CarbonInterface ceilCenturies(float $precision = 1) Ceil the current instance century with given precision. * @method CarbonInterface roundDecade(float $precision = 1, string $function = "round") Round the current instance decade with given precision using the given function. * @method CarbonInterface roundDecades(float $precision = 1, string $function = "round") Round the current instance decade with given precision using the given function. * @method CarbonInterface floorDecade(float $precision = 1) Truncate the current instance decade with given precision. * @method CarbonInterface floorDecades(float $precision = 1) Truncate the current instance decade with given precision. * @method CarbonInterface ceilDecade(float $precision = 1) Ceil the current instance decade with given precision. * @method CarbonInterface ceilDecades(float $precision = 1) Ceil the current instance decade with given precision. * @method CarbonInterface roundQuarter(float $precision = 1, string $function = "round") Round the current instance quarter with given precision using the given function. * @method CarbonInterface roundQuarters(float $precision = 1, string $function = "round") Round the current instance quarter with given precision using the given function. * @method CarbonInterface floorQuarter(float $precision = 1) Truncate the current instance quarter with given precision. * @method CarbonInterface floorQuarters(float $precision = 1) Truncate the current instance quarter with given precision. * @method CarbonInterface ceilQuarter(float $precision = 1) Ceil the current instance quarter with given precision. * @method CarbonInterface ceilQuarters(float $precision = 1) Ceil the current instance quarter with given precision. * @method CarbonInterface roundMillisecond(float $precision = 1, string $function = "round") Round the current instance millisecond with given precision using the given function. * @method CarbonInterface roundMilliseconds(float $precision = 1, string $function = "round") Round the current instance millisecond with given precision using the given function. * @method CarbonInterface floorMillisecond(float $precision = 1) Truncate the current instance millisecond with given precision. * @method CarbonInterface floorMilliseconds(float $precision = 1) Truncate the current instance millisecond with given precision. * @method CarbonInterface ceilMillisecond(float $precision = 1) Ceil the current instance millisecond with given precision. * @method CarbonInterface ceilMilliseconds(float $precision = 1) Ceil the current instance millisecond with given precision. * @method CarbonInterface roundMicrosecond(float $precision = 1, string $function = "round") Round the current instance microsecond with given precision using the given function. * @method CarbonInterface roundMicroseconds(float $precision = 1, string $function = "round") Round the current instance microsecond with given precision using the given function. * @method CarbonInterface floorMicrosecond(float $precision = 1) Truncate the current instance microsecond with given precision. * @method CarbonInterface floorMicroseconds(float $precision = 1) Truncate the current instance microsecond with given precision. * @method CarbonInterface ceilMicrosecond(float $precision = 1) Ceil the current instance microsecond with given precision. * @method CarbonInterface ceilMicroseconds(float $precision = 1) Ceil the current instance microsecond with given precision. * @method string shortAbsoluteDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'Absolute' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string longAbsoluteDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (long format, 'Absolute' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string shortRelativeDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'Relative' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string longRelativeDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (long format, 'Relative' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string shortRelativeToNowDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'RelativeToNow' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string longRelativeToNowDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (long format, 'RelativeToNow' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string shortRelativeToOtherDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (short format, 'RelativeToOther' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * @method string longRelativeToOtherDiffForHumans(DateTimeInterface $other = null, int $parts = 1) Get the difference (long format, 'RelativeToOther' mode) in a human readable format in the current locale. ($other and $parts parameters can be swapped.) * * */ trait Date { use Boundaries; use Comparison; use Converter; use Creator; use Difference; use Macro; use Modifiers; use Mutability; use ObjectInitialisation; use Options; use Rounding; use Serialization; use Test; use Timestamp; use Units; use Week; /** * Names of days of the week. * * @var array */ protected static $days = [ // @call isDayOfWeek CarbonInterface::SUNDAY => 'Sunday', // @call isDayOfWeek CarbonInterface::MONDAY => 'Monday', // @call isDayOfWeek CarbonInterface::TUESDAY => 'Tuesday', // @call isDayOfWeek CarbonInterface::WEDNESDAY => 'Wednesday', // @call isDayOfWeek CarbonInterface::THURSDAY => 'Thursday', // @call isDayOfWeek CarbonInterface::FRIDAY => 'Friday', // @call isDayOfWeek CarbonInterface::SATURDAY => 'Saturday', ]; /** * Will UTF8 encoding be used to print localized date/time ? * * @var bool */ protected static $utf8 = false; /** * List of unit and magic methods associated as doc-comments. * * @var array */ protected static $units = [ // @call setUnit // @call addUnit 'year', // @call setUnit // @call addUnit 'month', // @call setUnit // @call addUnit 'day', // @call setUnit // @call addUnit 'hour', // @call setUnit // @call addUnit 'minute', // @call setUnit // @call addUnit 'second', // @call setUnit // @call addUnit 'milli', // @call setUnit // @call addUnit 'millisecond', // @call setUnit // @call addUnit 'micro', // @call setUnit // @call addUnit 'microsecond', ]; /** * Creates a DateTimeZone from a string, DateTimeZone or integer offset. * * @param DateTimeZone|string|int|null $object original value to get CarbonTimeZone from it. * @param DateTimeZone|string|int|null $objectDump dump of the object for error messages. * * @throws InvalidTimeZoneException * * @return CarbonTimeZone|false */ protected static function safeCreateDateTimeZone($object, $objectDump = null) { return CarbonTimeZone::instance($object, $objectDump); } /** * Get the TimeZone associated with the Carbon instance (as CarbonTimeZone). * * @return CarbonTimeZone * * @link http://php.net/manual/en/datetime.gettimezone.php */ public function getTimezone() { return CarbonTimeZone::instance(parent::getTimezone()); } /** * List of minimum and maximums for each unit. * * @return array */ protected static function getRangesByUnit() { return [ // @call roundUnit 'year' => [1, 9999], // @call roundUnit 'month' => [1, static::MONTHS_PER_YEAR], // @call roundUnit 'day' => [1, 31], // @call roundUnit 'hour' => [0, static::HOURS_PER_DAY - 1], // @call roundUnit 'minute' => [0, static::MINUTES_PER_HOUR - 1], // @call roundUnit 'second' => [0, static::SECONDS_PER_MINUTE - 1], ]; } /** * Get a copy of the instance. * * @return static */ public function copy() { return clone $this; } /** * @alias copy * * Get a copy of the instance. * * @return static */ public function clone() { return clone $this; } /** * Returns a present instance in the same timezone. * * @return static */ public function nowWithSameTz() { return static::now($this->getTimezone()); } /** * Throws an exception if the given object is not a DateTime and does not implement DateTimeInterface. * * @param mixed $date * @param string|array $other * * @throws InvalidTypeException */ protected static function expectDateTime($date, $other = []) { $message = 'Expected '; foreach ((array) $other as $expect) { $message .= "$expect, "; } if (!$date instanceof DateTime && !$date instanceof DateTimeInterface) { throw new InvalidTypeException( $message.'DateTime or DateTimeInterface, '. (\is_object($date) ? \get_class($date) : \gettype($date)).' given' ); } } /** * Return the Carbon instance passed through, a now instance in the same timezone * if null given or parse the input if string given. * * @param Carbon|DateTimeInterface|string|null $date * * @return static */ protected function resolveCarbon($date = null) { if (!$date) { return $this->nowWithSameTz(); } if (\is_string($date)) { return static::parse($date, $this->getTimezone()); } static::expectDateTime($date, ['null', 'string']); return $date instanceof self ? $date : static::instance($date); } /** * Return the Carbon instance passed through, a now instance in the same timezone * if null given or parse the input if string given. * * @param Carbon|\Carbon\CarbonPeriod|\Carbon\CarbonInterval|\DateInterval|\DatePeriod|DateTimeInterface|string|null $date * * @return static */ public function carbonize($date = null) { if ($date instanceof DateInterval) { return $this->copy()->add($date); } if ($date instanceof DatePeriod || $date instanceof CarbonPeriod) { $date = $date->getStartDate(); } return $this->resolveCarbon($date); } /////////////////////////////////////////////////////////////////// ///////////////////////// GETTERS AND SETTERS ///////////////////// /////////////////////////////////////////////////////////////////// /** * Get a part of the Carbon object * * @param string $name * * @throws UnknownGetterException * * @return string|int|bool|DateTimeZone|null */ public function __get($name) { return $this->get($name); } /** * Get a part of the Carbon object * * @param string $name * * @throws UnknownGetterException * * @return string|int|bool|DateTimeZone|null */ public function get($name) { static $formats = [ // @property int 'year' => 'Y', // @property int 'yearIso' => 'o', // @property int // @call isSameUnit 'month' => 'n', // @property int 'day' => 'j', // @property int 'hour' => 'G', // @property int 'minute' => 'i', // @property int 'second' => 's', // @property int 'micro' => 'u', // @property int 'microsecond' => 'u', // @property-read int 0 (for Sunday) through 6 (for Saturday) 'dayOfWeek' => 'w', // @property-read int 1 (for Monday) through 7 (for Sunday) 'dayOfWeekIso' => 'N', // @property-read int ISO-8601 week number of year, weeks starting on Monday 'weekOfYear' => 'W', // @property-read int number of days in the given month 'daysInMonth' => 't', // @property int|float|string seconds since the Unix Epoch 'timestamp' => 'U', // @property-read string "am"/"pm" (Ante meridiem or Post meridiem latin lowercase mark) 'latinMeridiem' => 'a', // @property-read string "AM"/"PM" (Ante meridiem or Post meridiem latin uppercase mark) 'latinUpperMeridiem' => 'A', // @property string the day of week in English 'englishDayOfWeek' => 'l', // @property string the abbreviated day of week in English 'shortEnglishDayOfWeek' => 'D', // @property string the month in English 'englishMonth' => 'F', // @property string the abbreviated month in English 'shortEnglishMonth' => 'M', // @property string the day of week in current locale LC_TIME 'localeDayOfWeek' => '%A', // @property string the abbreviated day of week in current locale LC_TIME 'shortLocaleDayOfWeek' => '%a', // @property string the month in current locale LC_TIME 'localeMonth' => '%B', // @property string the abbreviated month in current locale LC_TIME 'shortLocaleMonth' => '%b', // @property-read string $timezoneAbbreviatedName the current timezone abbreviated name 'timezoneAbbreviatedName' => 'T', // @property-read string $tzAbbrName alias of $timezoneAbbreviatedName 'tzAbbrName' => 'T', ]; switch (true) { case isset($formats[$name]): $format = $formats[$name]; $method = substr($format, 0, 1) === '%' ? 'formatLocalized' : 'rawFormat'; $value = $this->$method($format); return is_numeric($value) ? (int) $value : $value; // @property-read string long name of weekday translated according to Carbon locale, in english if no translation available for current language case $name === 'dayName': return $this->getTranslatedDayName(); // @property-read string short name of weekday translated according to Carbon locale, in english if no translation available for current language case $name === 'shortDayName': return $this->getTranslatedShortDayName(); // @property-read string very short name of weekday translated according to Carbon locale, in english if no translation available for current language case $name === 'minDayName': return $this->getTranslatedMinDayName(); // @property-read string long name of month translated according to Carbon locale, in english if no translation available for current language case $name === 'monthName': return $this->getTranslatedMonthName(); // @property-read string short name of month translated according to Carbon locale, in english if no translation available for current language case $name === 'shortMonthName': return $this->getTranslatedShortMonthName(); // @property-read string lowercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language case $name === 'meridiem': return $this->meridiem(true); // @property-read string uppercase meridiem mark translated according to Carbon locale, in latin if no translation available for current language case $name === 'upperMeridiem': return $this->meridiem(); // @property-read int current hour from 1 to 24 case $name === 'noZeroHour': return $this->hour ?: 24; // @property int case $name === 'milliseconds': // @property int case $name === 'millisecond': // @property int case $name === 'milli': return (int) floor($this->rawFormat('u') / 1000); // @property int 1 through 53 case $name === 'week': return (int) $this->week(); // @property int 1 through 53 case $name === 'isoWeek': return (int) $this->isoWeek(); // @property int year according to week format case $name === 'weekYear': return (int) $this->weekYear(); // @property int year according to ISO week format case $name === 'isoWeekYear': return (int) $this->isoWeekYear(); // @property-read int 51 through 53 case $name === 'weeksInYear': return (int) $this->weeksInYear(); // @property-read int 51 through 53 case $name === 'isoWeeksInYear': return (int) $this->isoWeeksInYear(); // @property-read int 1 through 5 case $name === 'weekOfMonth': return (int) ceil($this->day / static::DAYS_PER_WEEK); // @property-read int 1 through 5 case $name === 'weekNumberInMonth': return (int) ceil(($this->day + $this->copy()->startOfMonth()->dayOfWeekIso - 1) / static::DAYS_PER_WEEK); // @property-read int 0 through 6 case $name === 'firstWeekDay': return $this->localTranslator ? ($this->getTranslationMessage('first_day_of_week') ?? 0) : static::getWeekStartsAt(); // @property-read int 0 through 6 case $name === 'lastWeekDay': return $this->localTranslator ? (($this->getTranslationMessage('first_day_of_week') ?? 0) + static::DAYS_PER_WEEK - 1) % static::DAYS_PER_WEEK : static::getWeekEndsAt(); // @property int 1 through 366 case $name === 'dayOfYear': return 1 + \intval($this->rawFormat('z')); // @property-read int 365 or 366 case $name === 'daysInYear': return $this->isLeapYear() ? 366 : 365; // @property int does a diffInYears() with default parameters case $name === 'age': return $this->diffInYears(); // @property-read int the quarter of this instance, 1 - 4 // @call isSameUnit case $name === 'quarter': return (int) ceil($this->month / static::MONTHS_PER_QUARTER); // @property-read int the decade of this instance // @call isSameUnit case $name === 'decade': return (int) ceil($this->year / static::YEARS_PER_DECADE); // @property-read int the century of this instance // @call isSameUnit case $name === 'century': $factor = 1; $year = $this->year; if ($year < 0) { $year = -$year; $factor = -1; } return (int) ($factor * ceil($year / static::YEARS_PER_CENTURY)); // @property-read int the millennium of this instance // @call isSameUnit case $name === 'millennium': $factor = 1; $year = $this->year; if ($year < 0) { $year = -$year; $factor = -1; } return (int) ($factor * ceil($year / static::YEARS_PER_MILLENNIUM)); // @property int the timezone offset in seconds from UTC case $name === 'offset': return $this->getOffset(); // @property int the timezone offset in minutes from UTC case $name === 'offsetMinutes': return $this->getOffset() / static::SECONDS_PER_MINUTE; // @property int the timezone offset in hours from UTC case $name === 'offsetHours': return $this->getOffset() / static::SECONDS_PER_MINUTE / static::MINUTES_PER_HOUR; // @property-read bool daylight savings time indicator, true if DST, false otherwise case $name === 'dst': return $this->rawFormat('I') === '1'; // @property-read bool checks if the timezone is local, true if local, false otherwise case $name === 'local': return $this->getOffset() === $this->copy()->setTimezone(date_default_timezone_get())->getOffset(); // @property-read bool checks if the timezone is UTC, true if UTC, false otherwise case $name === 'utc': return $this->getOffset() === 0; // @property CarbonTimeZone $timezone the current timezone // @property CarbonTimeZone $tz alias of $timezone case $name === 'timezone' || $name === 'tz': return CarbonTimeZone::instance($this->getTimezone()); // @property-read string $timezoneName the current timezone name // @property-read string $tzName alias of $timezoneName case $name === 'timezoneName' || $name === 'tzName': return $this->getTimezone()->getName(); // @property-read string locale of the current instance case $name === 'locale': return $this->getTranslatorLocale(); default: $macro = $this->getLocalMacro('get'.ucfirst($name)); if ($macro) { return $this->executeCallableWithContext($macro); } throw new UnknownGetterException($name); } } /** * Check if an attribute exists on the object * * @param string $name * * @return bool */ public function __isset($name) { try { $this->__get($name); } catch (UnknownGetterException | ReflectionException $e) { return false; } return true; } /** * Set a part of the Carbon object * * @param string $name * @param string|int|DateTimeZone $value * * @throws UnknownSetterException|ReflectionException * * @return void */ public function __set($name, $value) { if ($this->constructedObjectId === spl_object_hash($this)) { $this->set($name, $value); return; } $this->$name = $value; } /** * Set a part of the Carbon object * * @param string|array $name * @param string|int|DateTimeZone $value * * @throws ImmutableException|UnknownSetterException * * @return $this */ public function set($name, $value = null) { if ($this->isImmutable()) { throw new ImmutableException(sprintf('%s class', static::class)); } if (\is_array($name)) { foreach ($name as $key => $value) { $this->set($key, $value); } return $this; } switch ($name) { case 'milliseconds': case 'millisecond': case 'milli': case 'microseconds': case 'microsecond': case 'micro': if (substr($name, 0, 5) === 'milli') { $value *= 1000; } while ($value < 0) { $this->subSecond(); $value += static::MICROSECONDS_PER_SECOND; } while ($value >= static::MICROSECONDS_PER_SECOND) { $this->addSecond(); $value -= static::MICROSECONDS_PER_SECOND; } $this->modify($this->rawFormat('H:i:s.').str_pad((string) round($value), 6, '0', STR_PAD_LEFT)); break; case 'year': case 'month': case 'day': case 'hour': case 'minute': case 'second': [$year, $month, $day, $hour, $minute, $second] = array_map('intval', explode('-', $this->rawFormat('Y-n-j-G-i-s'))); $$name = $value; $this->setDateTime($year, $month, $day, $hour, $minute, $second); break; case 'week': $this->week($value); break; case 'isoWeek': $this->isoWeek($value); break; case 'weekYear': $this->weekYear($value); break; case 'isoWeekYear': $this->isoWeekYear($value); break; case 'dayOfYear': $this->addDays($value - $this->dayOfYear); break; case 'timestamp': $this->setTimestamp($value); break; case 'offset': $this->setTimezone(static::safeCreateDateTimeZone($value / static::SECONDS_PER_MINUTE / static::MINUTES_PER_HOUR)); break; case 'offsetMinutes': $this->setTimezone(static::safeCreateDateTimeZone($value / static::MINUTES_PER_HOUR)); break; case 'offsetHours': $this->setTimezone(static::safeCreateDateTimeZone($value)); break; case 'timezone': case 'tz': $this->setTimezone($value); break; default: $macro = $this->getLocalMacro('set'.ucfirst($name)); if ($macro) { $this->executeCallableWithContext($macro, $value); break; } if ($this->localStrictModeEnabled ?? static::isStrictModeEnabled()) { throw new UnknownSetterException($name); } $this->$name = $value; } return $this; } protected function getTranslatedFormByRegExp($baseKey, $keySuffix, $context, $subKey, $defaultValue) { $key = $baseKey.$keySuffix; $standaloneKey = "${key}_standalone"; $baseTranslation = $this->getTranslationMessage($key); if ($baseTranslation instanceof Closure) { return $baseTranslation($this, $context, $subKey) ?: $defaultValue; } if ( $this->getTranslationMessage("$standaloneKey.$subKey") && (!$context || ($regExp = $this->getTranslationMessage("${baseKey}_regexp")) && !preg_match($regExp, $context)) ) { $key = $standaloneKey; } return $this->getTranslationMessage("$key.$subKey", null, $defaultValue); } /** * Get the translation of the current week day name (with context for languages with multiple forms). * * @param string|null $context whole format string * @param string $keySuffix "", "_short" or "_min" * @param string|null $defaultValue default value if translation missing * * @return string */ public function getTranslatedDayName($context = null, $keySuffix = '', $defaultValue = null) { return $this->getTranslatedFormByRegExp('weekdays', $keySuffix, $context, $this->dayOfWeek, $defaultValue ?: $this->englishDayOfWeek); } /** * Get the translation of the current short week day name (with context for languages with multiple forms). * * @param string|null $context whole format string * * @return string */ public function getTranslatedShortDayName($context = null) { return $this->getTranslatedDayName($context, '_short', $this->shortEnglishDayOfWeek); } /** * Get the translation of the current abbreviated week day name (with context for languages with multiple forms). * * @param string|null $context whole format string * * @return string */ public function getTranslatedMinDayName($context = null) { return $this->getTranslatedDayName($context, '_min', $this->shortEnglishDayOfWeek); } /** * Get the translation of the current month day name (with context for languages with multiple forms). * * @param string|null $context whole format string * @param string $keySuffix "" or "_short" * @param string|null $defaultValue default value if translation missing * * @return string */ public function getTranslatedMonthName($context = null, $keySuffix = '', $defaultValue = null) { return $this->getTranslatedFormByRegExp('months', $keySuffix, $context, $this->month - 1, $defaultValue ?: $this->englishMonth); } /** * Get the translation of the current short month day name (with context for languages with multiple forms). * * @param string|null $context whole format string * * @return string */ public function getTranslatedShortMonthName($context = null) { return $this->getTranslatedMonthName($context, '_short', $this->shortEnglishMonth); } /** * Get/set the day of year. * * @param int|null $value new value for day of year if using as setter. * * @return static|int */ public function dayOfYear($value = null) { $dayOfYear = $this->dayOfYear; return \is_null($value) ? $dayOfYear : $this->addDays($value - $dayOfYear); } /** * Get/set the weekday from 0 (Sunday) to 6 (Saturday). * * @param int|null $value new value for weekday if using as setter. * * @return static|int */ public function weekday($value = null) { $dayOfWeek = ($this->dayOfWeek + 7 - \intval($this->getTranslationMessage('first_day_of_week') ?? 0)) % 7; return \is_null($value) ? $dayOfWeek : $this->addDays($value - $dayOfWeek); } /** * Get/set the ISO weekday from 1 (Monday) to 7 (Sunday). * * @param int|null $value new value for weekday if using as setter. * * @return static|int */ public function isoWeekday($value = null) { $dayOfWeekIso = $this->dayOfWeekIso; return \is_null($value) ? $dayOfWeekIso : $this->addDays($value - $dayOfWeekIso); } /** * Set any unit to a new value without overflowing current other unit given. * * @param string $valueUnit unit name to modify * @param int $value new value for the input unit * @param string $overflowUnit unit name to not overflow * * @return static */ public function setUnitNoOverflow($valueUnit, $value, $overflowUnit) { try { $original = $this->copy(); /** @var static $date */ $date = $this->$valueUnit($value); $end = $original->copy()->endOf($overflowUnit); $start = $original->copy()->startOf($overflowUnit); if ($date < $start) { $date = $date->setDateTimeFrom($start); } elseif ($date > $end) { $date = $date->setDateTimeFrom($end); } return $date; } catch (BadMethodCallException | ReflectionException $exception) { throw new UnknownUnitException($valueUnit, 0, $exception); } } /** * Add any unit to a new value without overflowing current other unit given. * * @param string $valueUnit unit name to modify * @param int $value amount to add to the input unit * @param string $overflowUnit unit name to not overflow * * @return static */ public function addUnitNoOverflow($valueUnit, $value, $overflowUnit) { return $this->setUnitNoOverflow($valueUnit, $this->$valueUnit + $value, $overflowUnit); } /** * Subtract any unit to a new value without overflowing current other unit given. * * @param string $valueUnit unit name to modify * @param int $value amount to subtract to the input unit * @param string $overflowUnit unit name to not overflow * * @return static */ public function subUnitNoOverflow($valueUnit, $value, $overflowUnit) { return $this->setUnitNoOverflow($valueUnit, $this->$valueUnit - $value, $overflowUnit); } /** * Returns the minutes offset to UTC if no arguments passed, else set the timezone with given minutes shift passed. * * @param int|null $minuteOffset * * @return int|static */ public function utcOffset(int $minuteOffset = null) { if (\func_num_args() < 1) { return $this->offsetMinutes; } return $this->setTimezone(CarbonTimeZone::createFromMinuteOffset($minuteOffset)); } /** * Set the date with gregorian year, month and day numbers. * * @see https://php.net/manual/en/datetime.setdate.php * * @param int $year * @param int $month * @param int $day * * @return static */ public function setDate($year, $month, $day) { return parent::setDate((int) $year, (int) $month, (int) $day); } /** * Set a date according to the ISO 8601 standard - using weeks and day offsets rather than specific dates. * * @see https://php.net/manual/en/datetime.setisodate.php * * @param int $year * @param int $week * @param int $day * * @return static */ public function setISODate($year, $week, $day = 1) { return parent::setISODate((int) $year, (int) $week, (int) $day); } /** * Set the date and time all together. * * @param int $year * @param int $month * @param int $day * @param int $hour * @param int $minute * @param int $second * @param int $microseconds * * @return static */ public function setDateTime($year, $month, $day, $hour, $minute, $second = 0, $microseconds = 0) { return $this->setDate($year, $month, $day)->setTime((int) $hour, (int) $minute, (int) $second, (int) $microseconds); } /** * Resets the current time of the DateTime object to a different time. * * @see https://php.net/manual/en/datetime.settime.php * * @param int $hour * @param int $minute * @param int $second * @param int $microseconds * * @return static */ public function setTime($hour, $minute, $second = 0, $microseconds = 0) { return parent::setTime((int) $hour, (int) $minute, (int) $second, (int) $microseconds); } /** * Set the instance's timestamp. * * Timestamp input can be given as int, float or a string containing one or more numbers. * * @param float|int|string $unixTimestamp * * @return static */ public function setTimestamp($unixTimestamp) { [$timestamp, $microseconds] = self::getIntegerAndDecimalParts($unixTimestamp); return parent::setTimestamp((int) $timestamp)->setMicroseconds((int) $microseconds); } /** * Set the time by time string. * * @param string $time * * @return static */ public function setTimeFromTimeString($time) { if (strpos($time, ':') === false) { $time .= ':0'; } return $this->modify($time); } /** * @alias setTimezone * * @param DateTimeZone|string $value * * @return static */ public function timezone($value) { return $this->setTimezone($value); } /** * Set the timezone or returns the timezone name if no arguments passed. * * @param DateTimeZone|string $value * * @return static|string */ public function tz($value = null) { if (\func_num_args() < 1) { return $this->tzName; } return $this->setTimezone($value); } /** * Set the instance's timezone from a string or object. * * @param DateTimeZone|string $value * * @return static */ public function setTimezone($value) { return parent::setTimezone(static::safeCreateDateTimeZone($value)); } /** * Set the instance's timezone from a string or object and add/subtract the offset difference. * * @param DateTimeZone|string $value * * @return static */ public function shiftTimezone($value) { $offset = $this->offset; $date = $this->setTimezone($value); return $date->addRealMicroseconds(($offset - $date->offset) * static::MICROSECONDS_PER_SECOND); } /** * Set the instance's timezone to UTC. * * @return static */ public function utc() { return $this->setTimezone('UTC'); } /** * Set the year, month, and date for this instance to that of the passed instance. * * @param Carbon|DateTimeInterface $date now if null * * @return static */ public function setDateFrom($date = null) { $date = $this->resolveCarbon($date); return $this->setDate($date->year, $date->month, $date->day); } /** * Set the hour, minute, second and microseconds for this instance to that of the passed instance. * * @param Carbon|DateTimeInterface $date now if null * * @return static */ public function setTimeFrom($date = null) { $date = $this->resolveCarbon($date); return $this->setTime($date->hour, $date->minute, $date->second, $date->microsecond); } /** * Set the date and time for this instance to that of the passed instance. * * @param Carbon|DateTimeInterface $date * * @return static */ public function setDateTimeFrom($date = null) { $date = $this->resolveCarbon($date); return $this->modify($date->rawFormat('Y-m-d H:i:s.u')); } /** * Get the days of the week * * @return array */ public static function getDays() { return static::$days; } /////////////////////////////////////////////////////////////////// /////////////////////// WEEK SPECIAL DAYS ///////////////////////// /////////////////////////////////////////////////////////////////// private static function getFirstDayOfWeek(): int { return (int) static::getTranslationMessageWith( static::getTranslator(), 'first_day_of_week' ); } /** * Get the first day of week * * @return int */ public static function getWeekStartsAt() { if (static::$weekStartsAt === static::WEEK_DAY_AUTO) { return static::getFirstDayOfWeek(); } return static::$weekStartsAt; } /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * Use $weekEndsAt optional parameter instead when using endOfWeek method. You can also use the * 'first_day_of_week' locale setting to change the start of week according to current locale * selected and implicitly the end of week. * * Set the first day of week * * @param int|string $day week start day (or 'auto' to get the first day of week from Carbon::getLocale() culture). * * @return void */ public static function setWeekStartsAt($day) { static::$weekStartsAt = $day === static::WEEK_DAY_AUTO ? $day : max(0, (7 + $day) % 7); } /** * Get the last day of week * * @return int */ public static function getWeekEndsAt() { if (static::$weekStartsAt === static::WEEK_DAY_AUTO) { return (int) (static::DAYS_PER_WEEK - 1 + static::getFirstDayOfWeek()) % static::DAYS_PER_WEEK; } return static::$weekEndsAt; } /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * Use $weekStartsAt optional parameter instead when using startOfWeek, floorWeek, ceilWeek * or roundWeek method. You can also use the 'first_day_of_week' locale setting to change the * start of week according to current locale selected and implicitly the end of week. * * Set the last day of week * * @param int|string $day week end day (or 'auto' to get the day before the first day of week * from Carbon::getLocale() culture). * * @return void */ public static function setWeekEndsAt($day) { static::$weekEndsAt = $day === static::WEEK_DAY_AUTO ? $day : max(0, (7 + $day) % 7); } /** * Get weekend days * * @return array */ public static function getWeekendDays() { return static::$weekendDays; } /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather consider week-end is always saturday and sunday, and if you have some custom * week-end days to handle, give to those days an other name and create a macro for them: * * ``` * Carbon::macro('isDayOff', function ($date) { * return $date->isSunday() || $date->isMonday(); * }); * Carbon::macro('isNotDayOff', function ($date) { * return !$date->isDayOff(); * }); * if ($someDate->isDayOff()) ... * if ($someDate->isNotDayOff()) ... * // Add 5 not-off days * $count = 5; * while ($someDate->isDayOff() || ($count-- > 0)) { * $someDate->addDay(); * } * ``` * * Set weekend days * * @param array $days * * @return void */ public static function setWeekendDays($days) { static::$weekendDays = $days; } /** * Determine if a time string will produce a relative date. * * @param string $time * * @return bool true if time match a relative date, false if absolute or invalid time string */ public static function hasRelativeKeywords($time) { if (!$time || strtotime($time) === false) { return false; } $date1 = new DateTime('2000-01-01T00:00:00Z'); $date1->modify($time); $date2 = new DateTime('2001-12-25T00:00:00Z'); $date2->modify($time); return $date1 != $date2; } /////////////////////////////////////////////////////////////////// /////////////////////// STRING FORMATTING ///////////////////////// /////////////////////////////////////////////////////////////////// /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather use UTF-8 language packages on every machine. * * Set if UTF8 will be used for localized date/time. * * @param bool $utf8 */ public static function setUtf8($utf8) { static::$utf8 = $utf8; } /** * Format the instance with the current locale. You can set the current * locale using setlocale() http://php.net/setlocale. * * @param string $format * * @return string */ public function formatLocalized($format) { // Check for Windows to find and replace the %e modifier correctly. if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { $format = preg_replace('#(?toDateTimeString())); return static::$utf8 ? utf8_encode($formatted) : $formatted; } /** * Returns list of locale formats for ISO formatting. * * @param string|null $locale current locale used if null * * @return array */ public function getIsoFormats($locale = null) { return [ 'LT' => $this->getTranslationMessage('formats.LT', $locale, 'h:mm A'), 'LTS' => $this->getTranslationMessage('formats.LTS', $locale, 'h:mm:ss A'), 'L' => $this->getTranslationMessage('formats.L', $locale, 'MM/DD/YYYY'), 'LL' => $this->getTranslationMessage('formats.LL', $locale, 'MMMM D, YYYY'), 'LLL' => $this->getTranslationMessage('formats.LLL', $locale, 'MMMM D, YYYY h:mm A'), 'LLLL' => $this->getTranslationMessage('formats.LLLL', $locale, 'dddd, MMMM D, YYYY h:mm A'), ]; } /** * Returns list of calendar formats for ISO formatting. * * @param string|null $locale current locale used if null * * @return array */ public function getCalendarFormats($locale = null) { return [ 'sameDay' => $this->getTranslationMessage('calendar.sameDay', $locale, '[Today at] LT'), 'nextDay' => $this->getTranslationMessage('calendar.nextDay', $locale, '[Tomorrow at] LT'), 'nextWeek' => $this->getTranslationMessage('calendar.nextWeek', $locale, 'dddd [at] LT'), 'lastDay' => $this->getTranslationMessage('calendar.lastDay', $locale, '[Yesterday at] LT'), 'lastWeek' => $this->getTranslationMessage('calendar.lastWeek', $locale, '[Last] dddd [at] LT'), 'sameElse' => $this->getTranslationMessage('calendar.sameElse', $locale, 'L'), ]; } /** * Returns list of locale units for ISO formatting. * * @return array */ public static function getIsoUnits() { static $units = null; if ($units === null) { $units = [ 'OD' => ['getAltNumber', ['day']], 'OM' => ['getAltNumber', ['month']], 'OY' => ['getAltNumber', ['year']], 'OH' => ['getAltNumber', ['hour']], 'Oh' => ['getAltNumber', ['h']], 'Om' => ['getAltNumber', ['minute']], 'Os' => ['getAltNumber', ['second']], 'D' => 'day', 'DD' => ['rawFormat', ['d']], 'Do' => ['ordinal', ['day', 'D']], 'd' => 'dayOfWeek', 'dd' => function (CarbonInterface $date, $originalFormat = null) { return $date->getTranslatedMinDayName($originalFormat); }, 'ddd' => function (CarbonInterface $date, $originalFormat = null) { return $date->getTranslatedShortDayName($originalFormat); }, 'dddd' => function (CarbonInterface $date, $originalFormat = null) { return $date->getTranslatedDayName($originalFormat); }, 'DDD' => 'dayOfYear', 'DDDD' => ['getPaddedUnit', ['dayOfYear', 3]], 'DDDo' => ['ordinal', ['dayOfYear', 'DDD']], 'e' => ['weekday', []], 'E' => 'dayOfWeekIso', 'H' => ['rawFormat', ['G']], 'HH' => ['rawFormat', ['H']], 'h' => ['rawFormat', ['g']], 'hh' => ['rawFormat', ['h']], 'k' => 'noZeroHour', 'kk' => ['getPaddedUnit', ['noZeroHour']], 'hmm' => ['rawFormat', ['gi']], 'hmmss' => ['rawFormat', ['gis']], 'Hmm' => ['rawFormat', ['Gi']], 'Hmmss' => ['rawFormat', ['Gis']], 'm' => 'minute', 'mm' => ['rawFormat', ['i']], 'a' => 'meridiem', 'A' => 'upperMeridiem', 's' => 'second', 'ss' => ['getPaddedUnit', ['second']], 'S' => function (CarbonInterface $date) { return \strval((string) floor($date->micro / 100000)); }, 'SS' => function (CarbonInterface $date) { return str_pad((string) floor($date->micro / 10000), 2, '0', STR_PAD_LEFT); }, 'SSS' => function (CarbonInterface $date) { return str_pad((string) floor($date->micro / 1000), 3, '0', STR_PAD_LEFT); }, 'SSSS' => function (CarbonInterface $date) { return str_pad((string) floor($date->micro / 100), 4, '0', STR_PAD_LEFT); }, 'SSSSS' => function (CarbonInterface $date) { return str_pad((string) floor($date->micro / 10), 5, '0', STR_PAD_LEFT); }, 'SSSSSS' => ['getPaddedUnit', ['micro', 6]], 'SSSSSSS' => function (CarbonInterface $date) { return str_pad((string) floor($date->micro * 10), 7, '0', STR_PAD_LEFT); }, 'SSSSSSSS' => function (CarbonInterface $date) { return str_pad((string) floor($date->micro * 100), 8, '0', STR_PAD_LEFT); }, 'SSSSSSSSS' => function (CarbonInterface $date) { return str_pad((string) floor($date->micro * 1000), 9, '0', STR_PAD_LEFT); }, 'M' => 'month', 'MM' => ['rawFormat', ['m']], 'MMM' => function (CarbonInterface $date, $originalFormat = null) { $month = $date->getTranslatedShortMonthName($originalFormat); $suffix = $date->getTranslationMessage('mmm_suffix'); if ($suffix && $month !== $date->monthName) { $month .= $suffix; } return $month; }, 'MMMM' => function (CarbonInterface $date, $originalFormat = null) { return $date->getTranslatedMonthName($originalFormat); }, 'Mo' => ['ordinal', ['month', 'M']], 'Q' => 'quarter', 'Qo' => ['ordinal', ['quarter', 'M']], 'G' => 'isoWeekYear', 'GG' => ['getPaddedUnit', ['isoWeekYear']], 'GGG' => ['getPaddedUnit', ['isoWeekYear', 3]], 'GGGG' => ['getPaddedUnit', ['isoWeekYear', 4]], 'GGGGG' => ['getPaddedUnit', ['isoWeekYear', 5]], 'g' => 'weekYear', 'gg' => ['getPaddedUnit', ['weekYear']], 'ggg' => ['getPaddedUnit', ['weekYear', 3]], 'gggg' => ['getPaddedUnit', ['weekYear', 4]], 'ggggg' => ['getPaddedUnit', ['weekYear', 5]], 'W' => 'isoWeek', 'WW' => ['getPaddedUnit', ['isoWeek']], 'Wo' => ['ordinal', ['isoWeek', 'W']], 'w' => 'week', 'ww' => ['getPaddedUnit', ['week']], 'wo' => ['ordinal', ['week', 'w']], 'x' => ['valueOf', []], 'X' => 'timestamp', 'Y' => 'year', 'YY' => ['rawFormat', ['y']], 'YYYY' => ['getPaddedUnit', ['year', 4]], 'YYYYY' => ['getPaddedUnit', ['year', 5]], 'YYYYYY' => function (CarbonInterface $date) { return ($date->year < 0 ? '' : '+').$date->getPaddedUnit('year', 6); }, 'z' => ['rawFormat', ['T']], 'zz' => 'tzName', 'Z' => ['getOffsetString', []], 'ZZ' => ['getOffsetString', ['']], ]; } return $units; } /** * Returns a unit of the instance padded with 0 by default or any other string if specified. * * @param string $unit Carbon unit name * @param int $length Length of the output (2 by default) * @param string $padString String to use for padding ("0" by default) * @param int $padType Side(s) to pad (STR_PAD_LEFT by default) * * @return string */ public function getPaddedUnit($unit, $length = 2, $padString = '0', $padType = STR_PAD_LEFT) { return ($this->$unit < 0 ? '-' : '').str_pad((string) abs($this->$unit), $length, $padString, $padType); } /** * Return a property with its ordinal. * * @param string $key * @param string|null $period * * @return string */ public function ordinal(string $key, string $period = null): string { $number = $this->$key; $result = $this->translate('ordinal', [ ':number' => $number, ':period' => $period, ]); return \strval($result === 'ordinal' ? $number : $result); } /** * Return the meridiem of the current time in the current locale. * * @param bool $isLower if true, returns lowercase variant if available in the current locale. * * @return string */ public function meridiem(bool $isLower = false): string { $hour = $this->hour; $index = $hour < 12 ? 0 : 1; if ($isLower) { $key = 'meridiem.'.($index + 2); $result = $this->translate($key); if ($result !== $key) { return $result; } } $key = "meridiem.$index"; $result = $this->translate($key); if ($result === $key) { $result = $this->translate('meridiem', [ ':hour' => $this->hour, ':minute' => $this->minute, ':isLower' => $isLower, ]); if ($result === 'meridiem') { return $isLower ? $this->latinMeridiem : $this->latinUpperMeridiem; } } elseif ($isLower) { $result = mb_strtolower($result); } return $result; } /** * Returns the alternative number for a given date property if available in the current locale. * * @param string $key date property * * @return string */ public function getAltNumber(string $key): string { return $this->translateNumber(\strlen($key) > 1 ? $this->$key : $this->rawFormat('h')); } /** * Format in the current language using ISO replacement patterns. * * @param string $format * @param string|null $originalFormat provide context if a chunk has been passed alone * * @return string */ public function isoFormat(string $format, string $originalFormat = null): string { $result = ''; $length = mb_strlen($format); $originalFormat = $originalFormat ?: $format; $inEscaped = false; $formats = null; $units = null; for ($i = 0; $i < $length; $i++) { $char = mb_substr($format, $i, 1); if ($char === '\\') { $result .= mb_substr($format, ++$i, 1); continue; } if ($char === '[' && !$inEscaped) { $inEscaped = true; continue; } if ($char === ']' && $inEscaped) { $inEscaped = false; continue; } if ($inEscaped) { $result .= $char; continue; } $input = mb_substr($format, $i); if (preg_match('/^(LTS|LT|[Ll]{1,4})/', $input, $match)) { if ($formats === null) { $formats = $this->getIsoFormats(); } $code = $match[0]; $sequence = $formats[$code] ?? preg_replace_callback( '/MMMM|MM|DD|dddd/', function ($code) { return mb_substr($code[0], 1); }, $formats[strtoupper($code)] ?? '' ); $rest = mb_substr($format, $i + mb_strlen($code)); $format = mb_substr($format, 0, $i).$sequence.$rest; $length = mb_strlen($format); $input = $sequence.$rest; } if (preg_match('/^'.CarbonInterface::ISO_FORMAT_REGEXP.'/', $input, $match)) { $code = $match[0]; if ($units === null) { $units = static::getIsoUnits(); } $sequence = $units[$code] ?? ''; if ($sequence instanceof Closure) { $sequence = $sequence($this, $originalFormat); } elseif (\is_array($sequence)) { try { $sequence = $this->{$sequence[0]}(...$sequence[1]); } catch (ReflectionException | InvalidArgumentException | BadMethodCallException $e) { $sequence = ''; } } elseif (\is_string($sequence)) { $sequence = $this->$sequence ?? $code; } $format = mb_substr($format, 0, $i).$sequence.mb_substr($format, $i + mb_strlen($code)); $i += mb_strlen("$sequence") - 1; $length = mb_strlen($format); $char = $sequence; } $result .= $char; } return $result; } /** * List of replacements from date() format to isoFormat(). * * @return array */ public static function getFormatsToIsoReplacements() { static $replacements = null; if ($replacements === null) { $replacements = [ 'd' => true, 'D' => 'ddd', 'j' => true, 'l' => 'dddd', 'N' => true, 'S' => function ($date) { $day = $date->rawFormat('j'); return str_replace("$day", '', $date->isoFormat('Do')); }, 'w' => true, 'z' => true, 'W' => true, 'F' => 'MMMM', 'm' => true, 'M' => 'MMM', 'n' => true, 't' => true, 'L' => true, 'o' => true, 'Y' => true, 'y' => true, 'a' => 'a', 'A' => 'A', 'B' => true, 'g' => true, 'G' => true, 'h' => true, 'H' => true, 'i' => true, 's' => true, 'u' => true, 'v' => true, 'E' => true, 'I' => true, 'O' => true, 'P' => true, 'Z' => true, 'c' => true, 'r' => true, 'U' => true, ]; } return $replacements; } /** * Format as ->format() do (using date replacements patterns from http://php.net/manual/fr/function.date.php) * but translate words whenever possible (months, day names, etc.) using the current locale. * * @param string $format * * @return string */ public function translatedFormat(string $format): string { $replacements = static::getFormatsToIsoReplacements(); $context = ''; $isoFormat = ''; $length = mb_strlen($format); for ($i = 0; $i < $length; $i++) { $char = mb_substr($format, $i, 1); if ($char === '\\') { $replacement = mb_substr($format, $i, 2); $isoFormat .= $replacement; $i++; continue; } if (!isset($replacements[$char])) { $replacement = preg_match('/^[A-Za-z]$/', $char) ? "\\$char" : $char; $isoFormat .= $replacement; $context .= $replacement; continue; } $replacement = $replacements[$char]; if ($replacement === true) { static $contextReplacements = null; if ($contextReplacements === null) { $contextReplacements = [ 'm' => 'MM', 'd' => 'DD', 't' => 'D', 'j' => 'D', 'N' => 'e', 'w' => 'e', 'n' => 'M', 'o' => 'YYYY', 'Y' => 'YYYY', 'y' => 'YY', 'g' => 'h', 'G' => 'H', 'h' => 'hh', 'H' => 'HH', 'i' => 'mm', 's' => 'ss', ]; } $isoFormat .= '['.$this->rawFormat($char).']'; $context .= $contextReplacements[$char] ?? ' '; continue; } if ($replacement instanceof Closure) { $replacement = '['.$replacement($this).']'; $isoFormat .= $replacement; $context .= $replacement; continue; } $isoFormat .= $replacement; $context .= $replacement; } return $this->isoFormat($isoFormat, $context); } /** * Returns the offset hour and minute formatted with +/- and a given separator (":" by default). * For example, if the time zone is 9 hours 30 minutes, you'll get "+09:30", with "@@" as first * argument, "+09@@30", with "" as first argument, "+0930". Negative offset will return something * like "-12:00". * * @param string $separator string to place between hours and minutes (":" by default) * * @return string */ public function getOffsetString($separator = ':') { $second = $this->getOffset(); $symbol = $second < 0 ? '-' : '+'; $minute = abs($second) / static::SECONDS_PER_MINUTE; $hour = str_pad((string) floor($minute / static::MINUTES_PER_HOUR), 2, '0', STR_PAD_LEFT); $minute = str_pad((string) ($minute % static::MINUTES_PER_HOUR), 2, '0', STR_PAD_LEFT); return "$symbol$hour$separator$minute"; } protected static function executeStaticCallable($macro, ...$parameters) { return static::bindMacroContext(null, function () use (&$macro, &$parameters) { if ($macro instanceof Closure) { $boundMacro = @Closure::bind($macro, null, static::class); return ($boundMacro ?: $macro)(...$parameters); } return $macro(...$parameters); }); } /** * Dynamically handle calls to the class. * * @param string $method magic method name called * @param array $parameters parameters list * * @throws BadMethodCallException * * @return mixed */ public static function __callStatic($method, $parameters) { if (!static::hasMacro($method)) { foreach (static::getGenericMacros() as $callback) { try { return static::executeStaticCallable($callback, $method, ...$parameters); } catch (BadMethodCallException $exception) { continue; } } if (static::isStrictModeEnabled()) { throw new UnknownMethodException(sprintf('%s::%s', static::class, $method)); } return null; } return static::executeStaticCallable(static::$globalMacros[$method], ...$parameters); } /** * Set specified unit to new given value. * * @param string $unit year, month, day, hour, minute, second or microsecond * @param int $value new value for given unit * * @return static */ public function setUnit($unit, $value = null) { $unit = static::singularUnit($unit); $dateUnits = ['year', 'month', 'day']; if (\in_array($unit, $dateUnits)) { return $this->setDate(...array_map(function ($name) use ($unit, $value) { return (int) ($name === $unit ? $value : $this->$name); }, $dateUnits)); } $units = ['hour', 'minute', 'second', 'micro']; if ($unit === 'millisecond' || $unit === 'milli') { $value *= 1000; $unit = 'micro'; } elseif ($unit === 'microsecond') { $unit = 'micro'; } return $this->setTime(...array_map(function ($name) use ($unit, $value) { return (int) ($name === $unit ? $value : $this->$name); }, $units)); } /** * Returns standardized singular of a given singular/plural unit name (in English). * * @param string $unit * * @return string */ public static function singularUnit(string $unit): string { $unit = rtrim(mb_strtolower($unit), 's'); if ($unit === 'centurie') { return 'century'; } if ($unit === 'millennia') { return 'millennium'; } return $unit; } /** * Returns standardized plural of a given singular/plural unit name (in English). * * @param string $unit * * @return string */ public static function pluralUnit(string $unit): string { $unit = rtrim(strtolower($unit), 's'); if ($unit === 'century') { return 'centuries'; } if ($unit === 'millennium' || $unit === 'millennia') { return 'millennia'; } return "${unit}s"; } protected function executeCallable($macro, ...$parameters) { if ($macro instanceof Closure) { $boundMacro = @$macro->bindTo($this, static::class) ?: @$macro->bindTo(null, static::class); return ($boundMacro ?: $macro)(...$parameters); } return $macro(...$parameters); } protected function executeCallableWithContext($macro, ...$parameters) { return static::bindMacroContext($this, function () use (&$macro, &$parameters) { return $this->executeCallable($macro, ...$parameters); }); } protected static function getGenericMacros() { foreach (static::$globalGenericMacros as $list) { foreach ($list as $macro) { yield $macro; } } } /** * Dynamically handle calls to the class. * * @param string $method magic method name called * @param array $parameters parameters list * * @throws UnknownMethodException|BadMethodCallException|ReflectionException|Throwable * * @return mixed */ public function __call($method, $parameters) { $diffSizes = [ // @mode diffForHumans 'short' => true, // @mode diffForHumans 'long' => false, ]; $diffSyntaxModes = [ // @call diffForHumans 'Absolute' => CarbonInterface::DIFF_ABSOLUTE, // @call diffForHumans 'Relative' => CarbonInterface::DIFF_RELATIVE_AUTO, // @call diffForHumans 'RelativeToNow' => CarbonInterface::DIFF_RELATIVE_TO_NOW, // @call diffForHumans 'RelativeToOther' => CarbonInterface::DIFF_RELATIVE_TO_OTHER, ]; $sizePattern = implode('|', array_keys($diffSizes)); $syntaxPattern = implode('|', array_keys($diffSyntaxModes)); if (preg_match("/^(?$sizePattern)(?$syntaxPattern)DiffForHumans$/", $method, $match)) { $dates = array_filter($parameters, function ($parameter) { return $parameter instanceof DateTimeInterface; }); $other = null; if (\count($dates)) { $key = key($dates); $other = current($dates); array_splice($parameters, $key, 1); } return $this->diffForHumans($other, $diffSyntaxModes[$match['syntax']], $diffSizes[$match['size']], ...$parameters); } $roundedValue = $this->callRoundMethod($method, $parameters); if ($roundedValue !== null) { return $roundedValue; } $unit = rtrim($method, 's'); if (substr($unit, 0, 2) === 'is') { $word = substr($unit, 2); if (\in_array($word, static::$days)) { return $this->isDayOfWeek($word); } switch ($word) { // @call is Check if the current instance has UTC timezone. (Both isUtc and isUTC cases are valid.) case 'Utc': case 'UTC': return $this->utc; // @call is Check if the current instance has non-UTC timezone. case 'Local': return $this->local; // @call is Check if the current instance is a valid date. case 'Valid': return $this->year !== 0; // @call is Check if the current instance is in a daylight saving time. case 'DST': return $this->dst; } } $action = substr($unit, 0, 3); $overflow = null; if ($action === 'set') { $unit = strtolower(substr($unit, 3)); } if (\in_array($unit, static::$units)) { return $this->setUnit($unit, ...$parameters); } if ($action === 'add' || $action === 'sub') { $unit = substr($unit, 3); if (substr($unit, 0, 4) === 'Real') { $unit = static::singularUnit(substr($unit, 4)); return $this->{"${action}RealUnit"}($unit, ...$parameters); } if (preg_match('/^(Month|Quarter|Year|Decade|Century|Centurie|Millennium|Millennia)s?(No|With|Without|WithNo)Overflow$/', $unit, $match)) { $unit = $match[1]; $overflow = $match[2] === 'With'; } $unit = static::singularUnit($unit); } if (static::isModifiableUnit($unit)) { return $this->{"${action}Unit"}($unit, $parameters[0] ?? 1, $overflow); } $sixFirstLetters = substr($unit, 0, 6); $factor = -1; if ($sixFirstLetters === 'isLast') { $sixFirstLetters = 'isNext'; $factor = 1; } if ($sixFirstLetters === 'isNext') { $lowerUnit = strtolower(substr($unit, 6)); if (static::isModifiableUnit($lowerUnit)) { return $this->copy()->addUnit($lowerUnit, $factor, false)->isSameUnit($lowerUnit, ...$parameters); } } if ($sixFirstLetters === 'isSame') { try { return $this->isSameUnit(strtolower(substr($unit, 6)), ...$parameters); } catch (BadComparisonUnitException $exception) { // Try next } } if (substr($unit, 0, 9) === 'isCurrent') { try { return $this->isCurrentUnit(strtolower(substr($unit, 9))); } catch (BadComparisonUnitException | BadMethodCallException $exception) { // Try next } } if (substr($method, -5) === 'Until') { try { $unit = static::singularUnit(substr($method, 0, -5)); return $this->range($parameters[0] ?? $this, $parameters[1] ?? 1, $unit); } catch (InvalidArgumentException $exception) { // Try macros } } return static::bindMacroContext($this, function () use (&$method, &$parameters) { $macro = $this->getLocalMacro($method); if (!$macro) { foreach ([$this->localGenericMacros ?: [], static::getGenericMacros()] as $list) { foreach ($list as $callback) { try { return $this->executeCallable($callback, $method, ...$parameters); } catch (BadMethodCallException $exception) { continue; } } } if ($this->localStrictModeEnabled ?? static::isStrictModeEnabled()) { throw new UnknownMethodException($method); } return null; } return $this->executeCallable($macro, ...$parameters); }); } } PK!Ž#™²²*carbon/src/Carbon/Traits/Serialization.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; use Carbon\Exceptions\InvalidFormatException; /** * Trait Serialization. * * Serialization and JSON stuff. * * Depends on the following properties: * * @property int $year * @property int $month * @property int $daysInMonth * @property int $quarter * * Depends on the following methods: * * @method string|static locale(string $locale = null, string ...$fallbackLocales) * @method string toJSON() */ trait Serialization { use ObjectInitialisation; /** * The custom Carbon JSON serializer. * * @var callable|null */ protected static $serializer; /** * List of key to use for dump/serialization. * * @var string[] */ protected $dumpProperties = ['date', 'timezone_type', 'timezone']; /** * Locale to dump comes here before serialization. * * @var string|null */ protected $dumpLocale = null; /** * Return a serialized string of the instance. * * @return string */ public function serialize() { return serialize($this); } /** * Create an instance from a serialized string. * * @param string $value * * @throws InvalidFormatException * * @return static */ public static function fromSerialized($value) { $instance = @unserialize("$value"); if (!$instance instanceof static) { throw new InvalidFormatException("Invalid serialized value: $value"); } return $instance; } /** * The __set_state handler. * * @param string|array $dump * * @return static */ public static function __set_state($dump) { if (\is_string($dump)) { return static::parse($dump); } /** @var \DateTimeInterface $date */ $date = get_parent_class(static::class) && method_exists(parent::class, '__set_state') ? parent::__set_state((array) $dump) : (object) $dump; return static::instance($date); } /** * Returns the list of properties to dump on serialize() called on. * * @return array */ public function __sleep() { $properties = $this->dumpProperties; if ($this->localTranslator ?? null) { $properties[] = 'dumpLocale'; $this->dumpLocale = $this->locale ?? null; } return $properties; } /** * Set locale if specified on unserialize() called. */ public function __wakeup() { if (get_parent_class() && method_exists(parent::class, '__wakeup')) { parent::__wakeup(); } $this->constructedObjectId = spl_object_hash($this); if (isset($this->dumpLocale)) { $this->locale($this->dumpLocale); $this->dumpLocale = null; } $this->cleanupDumpProperties(); } /** * Prepare the object for JSON serialization. * * @return array|string */ public function jsonSerialize() { $serializer = $this->localSerializer ?? static::$serializer; if ($serializer) { return \is_string($serializer) ? $this->rawFormat($serializer) : $serializer($this); } return $this->toJSON(); } /** * @deprecated To avoid conflict between different third-party libraries, static setters should not be used. * You should rather transform Carbon object before the serialization. * * JSON serialize all Carbon instances using the given callback. * * @param callable $callback * * @return void */ public static function serializeUsing($callback) { static::$serializer = $callback; } /** * Cleanup properties attached to the public scope of DateTime when a dump of the date is requested. * foreach ($date as $_) {} * serializer($date) * var_export($date) * get_object_vars($date) */ public function cleanupDumpProperties() { foreach ($this->dumpProperties as $property) { if (isset($this->$property)) { unset($this->$property); } } return $this; } } PK!) Vi.i."carbon/src/Carbon/Traits/Units.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; use Carbon\CarbonConverterInterface; use Carbon\CarbonInterface; use Carbon\CarbonInterval; use Carbon\Exceptions\UnitException; use Closure; use DateInterval; /** * Trait Units. * * Add, subtract and set units. */ trait Units { /** * Add seconds to the instance using timestamp. Positive $value travels * forward while negative $value travels into the past. * * @param string $unit * @param int $value * * @return static */ public function addRealUnit($unit, $value = 1) { switch ($unit) { // @call addRealUnit case 'micro': // @call addRealUnit case 'microsecond': /* @var CarbonInterface $this */ $diff = $this->microsecond + $value; $time = $this->getTimestamp(); $seconds = (int) floor($diff / static::MICROSECONDS_PER_SECOND); $time += $seconds; $diff -= $seconds * static::MICROSECONDS_PER_SECOND; $microtime = str_pad("$diff", 6, '0', STR_PAD_LEFT); $tz = $this->tz; return $this->tz('UTC')->modify("@$time.$microtime")->tz($tz); // @call addRealUnit case 'milli': // @call addRealUnit case 'millisecond': return $this->addRealUnit('microsecond', $value * static::MICROSECONDS_PER_MILLISECOND); break; // @call addRealUnit case 'second': break; // @call addRealUnit case 'minute': $value *= static::SECONDS_PER_MINUTE; break; // @call addRealUnit case 'hour': $value *= static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE; break; // @call addRealUnit case 'day': $value *= static::HOURS_PER_DAY * static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE; break; // @call addRealUnit case 'week': $value *= static::DAYS_PER_WEEK * static::HOURS_PER_DAY * static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE; break; // @call addRealUnit case 'month': $value *= 30 * static::HOURS_PER_DAY * static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE; break; // @call addRealUnit case 'quarter': $value *= static::MONTHS_PER_QUARTER * 30 * static::HOURS_PER_DAY * static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE; break; // @call addRealUnit case 'year': $value *= 365 * static::HOURS_PER_DAY * static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE; break; // @call addRealUnit case 'decade': $value *= static::YEARS_PER_DECADE * 365 * static::HOURS_PER_DAY * static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE; break; // @call addRealUnit case 'century': $value *= static::YEARS_PER_CENTURY * 365 * static::HOURS_PER_DAY * static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE; break; // @call addRealUnit case 'millennium': $value *= static::YEARS_PER_MILLENNIUM * 365 * static::HOURS_PER_DAY * static::MINUTES_PER_HOUR * static::SECONDS_PER_MINUTE; break; default: if ($this->localStrictModeEnabled ?? static::isStrictModeEnabled()) { throw new UnitException("Invalid unit for real timestamp add/sub: '$unit'"); } return $this; } /* @var CarbonInterface $this */ return $this->setTimestamp((int) ($this->getTimestamp() + $value)); } public function subRealUnit($unit, $value = 1) { return $this->addRealUnit($unit, -$value); } /** * Returns true if a property can be changed via setter. * * @param string $unit * * @return bool */ public static function isModifiableUnit($unit) { static $modifiableUnits = [ // @call addUnit 'millennium', // @call addUnit 'century', // @call addUnit 'decade', // @call addUnit 'quarter', // @call addUnit 'week', // @call addUnit 'weekday', ]; return \in_array($unit, $modifiableUnits) || \in_array($unit, static::$units); } /** * Call native PHP DateTime/DateTimeImmutable add() method. * * @param DateInterval $interval * * @return static */ public function rawAdd(DateInterval $interval) { return parent::add($interval); } /** * Add given units or interval to the current instance. * * @example $date->add('hour', 3) * @example $date->add(15, 'days') * @example $date->add(CarbonInterval::days(4)) * * @param string|DateInterval|Closure|CarbonConverterInterface $unit * @param int $value * @param bool|null $overflow * * @return static */ public function add($unit, $value = 1, $overflow = null) { if (\is_string($unit) && \func_num_args() === 1) { $unit = CarbonInterval::make($unit); } if ($unit instanceof CarbonConverterInterface) { return $this->resolveCarbon($unit->convertDate($this, false)); } if ($unit instanceof Closure) { return $this->resolveCarbon($unit($this, false)); } if ($unit instanceof DateInterval) { return parent::add($unit); } if (is_numeric($unit)) { [$value, $unit] = [$unit, $value]; } return $this->addUnit($unit, $value, $overflow); } /** * Add given units to the current instance. * * @param string $unit * @param int $value * @param bool|null $overflow * * @return static */ public function addUnit($unit, $value = 1, $overflow = null) { $date = $this; if (!is_numeric($value) || !\floatval($value)) { return $date->isMutable() ? $date : $date->copy(); } $metaUnits = [ 'millennium' => [static::YEARS_PER_MILLENNIUM, 'year'], 'century' => [static::YEARS_PER_CENTURY, 'year'], 'decade' => [static::YEARS_PER_DECADE, 'year'], 'quarter' => [static::MONTHS_PER_QUARTER, 'month'], ]; if (isset($metaUnits[$unit])) { [$factor, $unit] = $metaUnits[$unit]; $value *= $factor; } if ($unit === 'weekday') { $weekendDays = static::getWeekendDays(); if ($weekendDays !== [static::SATURDAY, static::SUNDAY]) { $absoluteValue = abs($value); $sign = $value / max(1, $absoluteValue); $weekDaysCount = 7 - min(6, \count(array_unique($weekendDays))); $weeks = floor($absoluteValue / $weekDaysCount); for ($diff = $absoluteValue % $weekDaysCount; $diff; $diff--) { /** @var static $date */ $date = $date->addDays($sign); while (\in_array($date->dayOfWeek, $weekendDays)) { $date = $date->addDays($sign); } } $value = $weeks * $sign; $unit = 'week'; } $timeString = $date->toTimeString(); } elseif ($canOverflow = \in_array($unit, [ 'month', 'year', ]) && ($overflow === false || ( $overflow === null && ($ucUnit = ucfirst($unit).'s') && !($this->{'local'.$ucUnit.'Overflow'} ?? static::{'shouldOverflow'.$ucUnit}()) ))) { $day = $date->day; } $value = (int) $value; if ($unit === 'milli' || $unit === 'millisecond') { $unit = 'microsecond'; $value *= static::MICROSECONDS_PER_MILLISECOND; } // Work-around for bug https://bugs.php.net/bug.php?id=75642 if ($unit === 'micro' || $unit === 'microsecond') { $microseconds = $this->micro + $value; $second = (int) floor($microseconds / static::MICROSECONDS_PER_SECOND); $microseconds %= static::MICROSECONDS_PER_SECOND; if ($microseconds < 0) { $microseconds += static::MICROSECONDS_PER_SECOND; } $date = $date->microseconds($microseconds); $unit = 'second'; $value = $second; } $date = $date->modify("$value $unit"); if (isset($timeString)) { return $date->setTimeFromTimeString($timeString); } if (isset($canOverflow, $day) && $canOverflow && $day !== $date->day) { $date = $date->modify('last day of previous month'); } return $date; } /** * Subtract given units to the current instance. * * @param string $unit * @param int $value * @param bool|null $overflow * * @return static */ public function subUnit($unit, $value = 1, $overflow = null) { return $this->addUnit($unit, -$value, $overflow); } /** * Call native PHP DateTime/DateTimeImmutable sub() method. * * @param DateInterval $interval * * @return static */ public function rawSub(DateInterval $interval) { return parent::sub($interval); } /** * Subtract given units or interval to the current instance. * * @example $date->sub('hour', 3) * @example $date->sub(15, 'days') * @example $date->sub(CarbonInterval::days(4)) * * @param string|DateInterval|Closure|CarbonConverterInterface $unit * @param int $value * @param bool|null $overflow * * @return static */ public function sub($unit, $value = 1, $overflow = null) { if (\is_string($unit) && \func_num_args() === 1) { $unit = CarbonInterval::make($unit); } if ($unit instanceof CarbonConverterInterface) { return $this->resolveCarbon($unit->convertDate($this, true)); } if ($unit instanceof Closure) { return $this->resolveCarbon($unit($this, true)); } if ($unit instanceof DateInterval) { return parent::sub($unit); } if (is_numeric($unit)) { [$value, $unit] = [$unit, $value]; } return $this->addUnit($unit, -\floatval($value), $overflow); } /** * Subtract given units or interval to the current instance. * * @see sub() * * @param string|DateInterval $unit * @param int $value * @param bool|null $overflow * * @return static */ public function subtract($unit, $value = 1, $overflow = null) { if (\is_string($unit) && \func_num_args() === 1) { $unit = CarbonInterval::make($unit); } return $this->sub($unit, $value, $overflow); } } PK!—§^##"carbon/src/Carbon/Traits/Mixin.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; use Closure; use Generator; use ReflectionClass; use ReflectionException; use ReflectionMethod; use Throwable; /** * Trait Mixin. * * Allows mixing in entire classes with multiple macros. */ trait Mixin { /** * Stack of macro instance contexts. * * @var array */ protected static $macroContextStack = []; /** * Mix another object into the class. * * @example * ``` * Carbon::mixin(new class { * public function addMoon() { * return function () { * return $this->addDays(30); * }; * } * public function subMoon() { * return function () { * return $this->subDays(30); * }; * } * }); * $fullMoon = Carbon::create('2018-12-22'); * $nextFullMoon = $fullMoon->addMoon(); * $blackMoon = Carbon::create('2019-01-06'); * $previousBlackMoon = $blackMoon->subMoon(); * echo "$nextFullMoon\n"; * echo "$previousBlackMoon\n"; * ``` * * @param object|string $mixin * * @throws ReflectionException * * @return void */ public static function mixin($mixin) { \is_string($mixin) && trait_exists($mixin) ? static::loadMixinTrait($mixin) : static::loadMixinClass($mixin); } /** * @param object|string $mixin * * @throws ReflectionException */ private static function loadMixinClass($mixin) { $methods = (new ReflectionClass($mixin))->getMethods( ReflectionMethod::IS_PUBLIC | ReflectionMethod::IS_PROTECTED ); foreach ($methods as $method) { if ($method->isConstructor() || $method->isDestructor()) { continue; } $method->setAccessible(true); static::macro($method->name, $method->invoke($mixin)); } } /** * @param string $trait */ private static function loadMixinTrait($trait) { $context = eval(self::getAnonymousClassCodeForTrait($trait)); $className = \get_class($context); foreach (self::getMixableMethods($context) as $name) { $closureBase = Closure::fromCallable([$context, $name]); static::macro($name, function () use ($closureBase, $className) { /** @phpstan-ignore-next-line */ $context = isset($this) ? $this->cast($className) : new $className(); try { // @ is required to handle error if not converted into exceptions $closure = @$closureBase->bindTo($context); } catch (Throwable $throwable) { // @codeCoverageIgnore $closure = $closureBase; // @codeCoverageIgnore } // in case of errors not converted into exceptions $closure = $closure ?? $closureBase; return $closure(...\func_get_args()); }); } } private static function getAnonymousClassCodeForTrait(string $trait) { return 'return new class() extends '.static::class.' {use '.$trait.';};'; } private static function getMixableMethods(self $context): Generator { foreach (get_class_methods($context) as $name) { if (method_exists(static::class, $name)) { continue; } yield $name; } } /** * Stack a Carbon context from inside calls of self::this() and execute a given action. * * @param static|null $context * @param callable $callable * * @throws Throwable * * @return mixed */ protected static function bindMacroContext($context, callable $callable) { static::$macroContextStack[] = $context; $exception = null; $result = null; try { $result = $callable(); } catch (Throwable $throwable) { $exception = $throwable; } array_pop(static::$macroContextStack); if ($exception) { throw $exception; } return $result; } /** * Return the current context from inside a macro callee or a null if static. * * @return static|null */ protected static function context() { return end(static::$macroContextStack) ?: null; } /** * Return the current context from inside a macro callee or a new one if static. * * @return static */ protected static function this() { return end(static::$macroContextStack) ?: new static(); } } PK!øm·1ŗČŗČ'carbon/src/Carbon/Traits/Difference.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; use Carbon\Carbon; use Carbon\CarbonImmutable; use Carbon\CarbonInterface; use Carbon\CarbonInterval; use Carbon\CarbonPeriod; use Carbon\Translator; use Closure; use DateInterval; use DateTimeInterface; /** * Trait Difference. * * Depends on the following methods: * * @method bool lessThan($date) * @method static copy() * @method static resolveCarbon($date = null) * @method static Translator translator() */ trait Difference { /** * @codeCoverageIgnore * * @param CarbonInterval $diff */ protected static function fixNegativeMicroseconds(CarbonInterval $diff) { if ($diff->s !== 0 || $diff->i !== 0 || $diff->h !== 0 || $diff->d !== 0 || $diff->m !== 0 || $diff->y !== 0) { $diff->f = (round($diff->f * 1000000) + 1000000) / 1000000; $diff->s--; if ($diff->s < 0) { $diff->s += 60; $diff->i--; if ($diff->i < 0) { $diff->i += 60; $diff->h--; if ($diff->h < 0) { $diff->h += 24; $diff->d--; if ($diff->d < 0) { $diff->d += 30; $diff->m--; if ($diff->m < 0) { $diff->m += 12; $diff->y--; } } } } } return; } $diff->f *= -1; $diff->invert(); } /** * @param DateInterval $diff * @param bool $absolute * * @return CarbonInterval */ protected static function fixDiffInterval(DateInterval $diff, $absolute) { $diff = CarbonInterval::instance($diff); // Work-around for https://bugs.php.net/bug.php?id=77145 // @codeCoverageIgnoreStart if ($diff->f > 0 && $diff->y === -1 && $diff->m === 11 && $diff->d >= 27 && $diff->h === 23 && $diff->i === 59 && $diff->s === 59) { $diff->y = 0; $diff->m = 0; $diff->d = 0; $diff->h = 0; $diff->i = 0; $diff->s = 0; $diff->f = (1000000 - round($diff->f * 1000000)) / 1000000; $diff->invert(); } elseif ($diff->f < 0) { static::fixNegativeMicroseconds($diff); } // @codeCoverageIgnoreEnd if ($absolute && $diff->invert) { $diff->invert(); } return $diff; } /** * Get the difference as a DateInterval instance. * Return relative interval (negative if * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return DateInterval */ public function diff($date = null, $absolute = false) { return parent::diff($this->resolveCarbon($date), (bool) $absolute); } /** * Get the difference as a CarbonInterval instance. * Return absolute interval (always positive) unless you pass false to the second argument. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return CarbonInterval */ public function diffAsCarbonInterval($date = null, $absolute = true) { return static::fixDiffInterval($this->diff($this->resolveCarbon($date), $absolute), $absolute); } /** * Get the difference in years * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInYears($date = null, $absolute = true) { return (int) $this->diff($this->resolveCarbon($date), $absolute)->format('%r%y'); } /** * Get the difference in quarters rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInQuarters($date = null, $absolute = true) { return (int) ($this->diffInMonths($date, $absolute) / static::MONTHS_PER_QUARTER); } /** * Get the difference in months rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInMonths($date = null, $absolute = true) { $date = $this->resolveCarbon($date); return $this->diffInYears($date, $absolute) * static::MONTHS_PER_YEAR + (int) $this->diff($date, $absolute)->format('%r%m'); } /** * Get the difference in weeks rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInWeeks($date = null, $absolute = true) { return (int) ($this->diffInDays($date, $absolute) / static::DAYS_PER_WEEK); } /** * Get the difference in days rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInDays($date = null, $absolute = true) { return (int) $this->diff($this->resolveCarbon($date), $absolute)->format('%r%a'); } /** * Get the difference in days using a filter closure rounded down. * * @param Closure $callback * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInDaysFiltered(Closure $callback, $date = null, $absolute = true) { return $this->diffFiltered(CarbonInterval::day(), $callback, $date, $absolute); } /** * Get the difference in hours using a filter closure rounded down. * * @param Closure $callback * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInHoursFiltered(Closure $callback, $date = null, $absolute = true) { return $this->diffFiltered(CarbonInterval::hour(), $callback, $date, $absolute); } /** * Get the difference by the given interval using a filter closure. * * @param CarbonInterval $ci An interval to traverse by * @param Closure $callback * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffFiltered(CarbonInterval $ci, Closure $callback, $date = null, $absolute = true) { $start = $this; $end = $this->resolveCarbon($date); $inverse = false; if ($end < $start) { $start = $end; $end = $this; $inverse = true; } $options = CarbonPeriod::EXCLUDE_END_DATE | ($this->isMutable() ? 0 : CarbonPeriod::IMMUTABLE); $diff = $ci->toPeriod($start, $end, $options)->filter($callback)->count(); return $inverse && !$absolute ? -$diff : $diff; } /** * Get the difference in weekdays rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInWeekdays($date = null, $absolute = true) { return $this->diffInDaysFiltered(function (CarbonInterface $date) { return $date->isWeekday(); }, $date, $absolute); } /** * Get the difference in weekend days using a filter rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInWeekendDays($date = null, $absolute = true) { return $this->diffInDaysFiltered(function (CarbonInterface $date) { return $date->isWeekend(); }, $date, $absolute); } /** * Get the difference in hours rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInHours($date = null, $absolute = true) { return (int) ($this->diffInSeconds($date, $absolute) / static::SECONDS_PER_MINUTE / static::MINUTES_PER_HOUR); } /** * Get the difference in hours rounded down using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInRealHours($date = null, $absolute = true) { return (int) ($this->diffInRealSeconds($date, $absolute) / static::SECONDS_PER_MINUTE / static::MINUTES_PER_HOUR); } /** * Get the difference in minutes rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInMinutes($date = null, $absolute = true) { return (int) ($this->diffInSeconds($date, $absolute) / static::SECONDS_PER_MINUTE); } /** * Get the difference in minutes rounded down using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInRealMinutes($date = null, $absolute = true) { return (int) ($this->diffInRealSeconds($date, $absolute) / static::SECONDS_PER_MINUTE); } /** * Get the difference in seconds rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInSeconds($date = null, $absolute = true) { $diff = $this->diff($date); if ($diff->days === 0) { $diff = static::fixDiffInterval($diff, $absolute); } $value = (((($diff->m || $diff->y ? $diff->days : $diff->d) * static::HOURS_PER_DAY) + $diff->h) * static::MINUTES_PER_HOUR + $diff->i) * static::SECONDS_PER_MINUTE + $diff->s; return $absolute || !$diff->invert ? $value : -$value; } /** * Get the difference in microseconds. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInMicroseconds($date = null, $absolute = true) { $diff = $this->diff($date); $value = (int) round(((((($diff->m || $diff->y ? $diff->days : $diff->d) * static::HOURS_PER_DAY) + $diff->h) * static::MINUTES_PER_HOUR + $diff->i) * static::SECONDS_PER_MINUTE + ($diff->f + $diff->s)) * static::MICROSECONDS_PER_SECOND); return $absolute || !$diff->invert ? $value : -$value; } /** * Get the difference in milliseconds rounded down. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInMilliseconds($date = null, $absolute = true) { return (int) ($this->diffInMicroseconds($date, $absolute) / static::MICROSECONDS_PER_MILLISECOND); } /** * Get the difference in seconds using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInRealSeconds($date = null, $absolute = true) { /** @var CarbonInterface $date */ $date = $this->resolveCarbon($date); $value = $date->getTimestamp() - $this->getTimestamp(); return $absolute ? abs($value) : $value; } /** * Get the difference in microseconds using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInRealMicroseconds($date = null, $absolute = true) { /** @var CarbonInterface $date */ $date = $this->resolveCarbon($date); $value = ($date->timestamp - $this->timestamp) * static::MICROSECONDS_PER_SECOND + $date->micro - $this->micro; return $absolute ? abs($value) : $value; } /** * Get the difference in milliseconds rounded down using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return int */ public function diffInRealMilliseconds($date = null, $absolute = true) { return (int) ($this->diffInRealMicroseconds($date, $absolute) / static::MICROSECONDS_PER_MILLISECOND); } /** * Get the difference in seconds as float (microsecond-precision). * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInSeconds($date = null, $absolute = true) { return $this->diffInMicroseconds($date, $absolute) / static::MICROSECONDS_PER_SECOND; } /** * Get the difference in minutes as float (microsecond-precision). * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInMinutes($date = null, $absolute = true) { return $this->floatDiffInSeconds($date, $absolute) / static::SECONDS_PER_MINUTE; } /** * Get the difference in hours as float (microsecond-precision). * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInHours($date = null, $absolute = true) { return $this->floatDiffInMinutes($date, $absolute) / static::MINUTES_PER_HOUR; } /** * Get the difference in days as float (microsecond-precision). * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInDays($date = null, $absolute = true) { $hoursDiff = $this->floatDiffInHours($date, $absolute); $interval = $this->diff($date, $absolute); if ($interval->y === 0 && $interval->m === 0 && $interval->d === 0) { return $hoursDiff / static::HOURS_PER_DAY; } $daysDiff = (int) $interval->format('%r%a'); return $daysDiff + fmod($hoursDiff, static::HOURS_PER_DAY) / static::HOURS_PER_DAY; } /** * Get the difference in weeks as float (microsecond-precision). * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInWeeks($date = null, $absolute = true) { return $this->floatDiffInDays($date, $absolute) / static::DAYS_PER_WEEK; } /** * Get the difference in months as float (microsecond-precision). * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInMonths($date = null, $absolute = true) { $start = $this; $end = $this->resolveCarbon($date); $ascending = ($start <= $end); $sign = $absolute || $ascending ? 1 : -1; if (!$ascending) { [$start, $end] = [$end, $start]; } $monthsDiff = $start->diffInMonths($end); /** @var Carbon|CarbonImmutable $floorEnd */ $floorEnd = $start->copy()->addMonths($monthsDiff); if ($floorEnd >= $end) { return $sign * $monthsDiff; } /** @var Carbon|CarbonImmutable $startOfMonthAfterFloorEnd */ $startOfMonthAfterFloorEnd = $floorEnd->copy()->addMonth()->startOfMonth(); if ($startOfMonthAfterFloorEnd > $end) { return $sign * ($monthsDiff + $floorEnd->floatDiffInDays($end) / $floorEnd->daysInMonth); } return $sign * ($monthsDiff + $floorEnd->floatDiffInDays($startOfMonthAfterFloorEnd) / $floorEnd->daysInMonth + $startOfMonthAfterFloorEnd->floatDiffInDays($end) / $end->daysInMonth); } /** * Get the difference in year as float (microsecond-precision). * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInYears($date = null, $absolute = true) { $start = $this; $end = $this->resolveCarbon($date); $ascending = ($start <= $end); $sign = $absolute || $ascending ? 1 : -1; if (!$ascending) { [$start, $end] = [$end, $start]; } $yearsDiff = $start->diffInYears($end); /** @var Carbon|CarbonImmutable $floorEnd */ $floorEnd = $start->copy()->addYears($yearsDiff); if ($floorEnd >= $end) { return $sign * $yearsDiff; } /** @var Carbon|CarbonImmutable $startOfYearAfterFloorEnd */ $startOfYearAfterFloorEnd = $floorEnd->copy()->addYear()->startOfYear(); if ($startOfYearAfterFloorEnd > $end) { return $sign * ($yearsDiff + $floorEnd->floatDiffInDays($end) / $floorEnd->daysInYear); } return $sign * ($yearsDiff + $floorEnd->floatDiffInDays($startOfYearAfterFloorEnd) / $floorEnd->daysInYear + $startOfYearAfterFloorEnd->floatDiffInDays($end) / $end->daysInYear); } /** * Get the difference in seconds as float (microsecond-precision) using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInRealSeconds($date = null, $absolute = true) { return $this->diffInRealMicroseconds($date, $absolute) / static::MICROSECONDS_PER_SECOND; } /** * Get the difference in minutes as float (microsecond-precision) using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInRealMinutes($date = null, $absolute = true) { return $this->floatDiffInRealSeconds($date, $absolute) / static::SECONDS_PER_MINUTE; } /** * Get the difference in hours as float (microsecond-precision) using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInRealHours($date = null, $absolute = true) { return $this->floatDiffInRealMinutes($date, $absolute) / static::MINUTES_PER_HOUR; } /** * Get the difference in days as float (microsecond-precision). * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInRealDays($date = null, $absolute = true) { $hoursDiff = $this->floatDiffInRealHours($date, $absolute); return ($hoursDiff < 0 ? -1 : 1) * $this->diffInDays($date) + fmod($hoursDiff, static::HOURS_PER_DAY) / static::HOURS_PER_DAY; } /** * Get the difference in weeks as float (microsecond-precision). * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInRealWeeks($date = null, $absolute = true) { return $this->floatDiffInRealDays($date, $absolute) / static::DAYS_PER_WEEK; } /** * Get the difference in months as float (microsecond-precision) using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInRealMonths($date = null, $absolute = true) { $start = $this; $end = $this->resolveCarbon($date); $ascending = ($start <= $end); $sign = $absolute || $ascending ? 1 : -1; if (!$ascending) { [$start, $end] = [$end, $start]; } $monthsDiff = $start->diffInMonths($end); /** @var Carbon|CarbonImmutable $floorEnd */ $floorEnd = $start->copy()->addMonths($monthsDiff); if ($floorEnd >= $end) { return $sign * $monthsDiff; } /** @var Carbon|CarbonImmutable $startOfMonthAfterFloorEnd */ $startOfMonthAfterFloorEnd = $floorEnd->copy()->addMonth()->startOfMonth(); if ($startOfMonthAfterFloorEnd > $end) { return $sign * ($monthsDiff + $floorEnd->floatDiffInRealDays($end) / $floorEnd->daysInMonth); } return $sign * ($monthsDiff + $floorEnd->floatDiffInRealDays($startOfMonthAfterFloorEnd) / $floorEnd->daysInMonth + $startOfMonthAfterFloorEnd->floatDiffInRealDays($end) / $end->daysInMonth); } /** * Get the difference in year as float (microsecond-precision) using timestamps. * * @param \Carbon\CarbonInterface|\DateTimeInterface|string|null $date * @param bool $absolute Get the absolute of the difference * * @return float */ public function floatDiffInRealYears($date = null, $absolute = true) { $start = $this; $end = $this->resolveCarbon($date); $ascending = ($start <= $end); $sign = $absolute || $ascending ? 1 : -1; if (!$ascending) { [$start, $end] = [$end, $start]; } $yearsDiff = $start->diffInYears($end); /** @var Carbon|CarbonImmutable $floorEnd */ $floorEnd = $start->copy()->addYears($yearsDiff); if ($floorEnd >= $end) { return $sign * $yearsDiff; } /** @var Carbon|CarbonImmutable $startOfYearAfterFloorEnd */ $startOfYearAfterFloorEnd = $floorEnd->copy()->addYear()->startOfYear(); if ($startOfYearAfterFloorEnd > $end) { return $sign * ($yearsDiff + $floorEnd->floatDiffInRealDays($end) / $floorEnd->daysInYear); } return $sign * ($yearsDiff + $floorEnd->floatDiffInRealDays($startOfYearAfterFloorEnd) / $floorEnd->daysInYear + $startOfYearAfterFloorEnd->floatDiffInRealDays($end) / $end->daysInYear); } /** * The number of seconds since midnight. * * @return int */ public function secondsSinceMidnight() { return $this->diffInSeconds($this->copy()->startOfDay()); } /** * The number of seconds until 23:59:59. * * @return int */ public function secondsUntilEndOfDay() { return $this->diffInSeconds($this->copy()->endOfDay()); } /** * Get the difference in a human readable format in the current locale from current instance to an other * instance given (or now if null given). * * @example * ``` * echo Carbon::tomorrow()->diffForHumans() . "\n"; * echo Carbon::tomorrow()->diffForHumans(['parts' => 2]) . "\n"; * echo Carbon::tomorrow()->diffForHumans(['parts' => 3, 'join' => true]) . "\n"; * echo Carbon::tomorrow()->diffForHumans(Carbon::yesterday()) . "\n"; * echo Carbon::tomorrow()->diffForHumans(Carbon::yesterday(), ['short' => true]) . "\n"; * ``` * * @param Carbon|\DateTimeInterface|string|array|null $other if array passed, will be used as parameters array, see $syntax below; * if null passed, now will be used as comparison reference; * if any other type, it will be converted to date and used as reference. * @param int|array $syntax if array passed, parameters will be extracted from it, the array may contains: * - 'syntax' entry (see below) * - 'short' entry (see below) * - 'parts' entry (see below) * - 'options' entry (see below) * - 'join' entry determines how to join multiple parts of the string * ` - if $join is a string, it's used as a joiner glue * ` - if $join is a callable/closure, it get the list of string and should return a string * ` - if $join is an array, the first item will be the default glue, and the second item * ` will be used instead of the glue for the last item * ` - if $join is true, it will be guessed from the locale ('list' translation file entry) * ` - if $join is missing, a space will be used as glue * - 'other' entry (see above) * if int passed, it add modifiers: * Possible values: * - CarbonInterface::DIFF_ABSOLUTE no modifiers * - CarbonInterface::DIFF_RELATIVE_TO_NOW add ago/from now modifier * - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier * Default value: CarbonInterface::DIFF_ABSOLUTE * @param bool $short displays short format of time units * @param int $parts maximum number of parts to display (default value: 1: single unit) * @param int $options human diff options * * @return string */ public function diffForHumans($other = null, $syntax = null, $short = false, $parts = 1, $options = null) { /* @var CarbonInterface $this */ if (\is_array($other)) { $other['syntax'] = \array_key_exists('syntax', $other) ? $other['syntax'] : $syntax; $syntax = $other; $other = $syntax['other'] ?? null; } $intSyntax = &$syntax; if (\is_array($syntax)) { $syntax['syntax'] = $syntax['syntax'] ?? null; $intSyntax = &$syntax['syntax']; } $intSyntax = (int) ($intSyntax === null ? static::DIFF_RELATIVE_AUTO : $intSyntax); $intSyntax = $intSyntax === static::DIFF_RELATIVE_AUTO && $other === null ? static::DIFF_RELATIVE_TO_NOW : $intSyntax; $parts = min(7, max(1, (int) $parts)); return $this->diffAsCarbonInterval($other, false) ->setLocalTranslator($this->getLocalTranslator()) ->forHumans($syntax, (bool) $short, $parts, $options ?? $this->localHumanDiffOptions ?? static::getHumanDiffOptions()); } /** * @alias diffForHumans * * Get the difference in a human readable format in the current locale from current instance to an other * instance given (or now if null given). * * @param Carbon|\DateTimeInterface|string|array|null $other if array passed, will be used as parameters array, see $syntax below; * if null passed, now will be used as comparison reference; * if any other type, it will be converted to date and used as reference. * @param int|array $syntax if array passed, parameters will be extracted from it, the array may contains: * - 'syntax' entry (see below) * - 'short' entry (see below) * - 'parts' entry (see below) * - 'options' entry (see below) * - 'join' entry determines how to join multiple parts of the string * ` - if $join is a string, it's used as a joiner glue * ` - if $join is a callable/closure, it get the list of string and should return a string * ` - if $join is an array, the first item will be the default glue, and the second item * ` will be used instead of the glue for the last item * ` - if $join is true, it will be guessed from the locale ('list' translation file entry) * ` - if $join is missing, a space will be used as glue * - 'other' entry (see above) * if int passed, it add modifiers: * Possible values: * - CarbonInterface::DIFF_ABSOLUTE no modifiers * - CarbonInterface::DIFF_RELATIVE_TO_NOW add ago/from now modifier * - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier * Default value: CarbonInterface::DIFF_ABSOLUTE * @param bool $short displays short format of time units * @param int $parts maximum number of parts to display (default value: 1: single unit) * @param int $options human diff options * * @return string */ public function from($other = null, $syntax = null, $short = false, $parts = 1, $options = null) { return $this->diffForHumans($other, $syntax, $short, $parts, $options); } /** * @alias diffForHumans * * Get the difference in a human readable format in the current locale from current instance to an other * instance given (or now if null given). */ public function since($other = null, $syntax = null, $short = false, $parts = 1, $options = null) { return $this->diffForHumans($other, $syntax, $short, $parts, $options); } /** * Get the difference in a human readable format in the current locale from an other * instance given (or now if null given) to current instance. * * When comparing a value in the past to default now: * 1 hour from now * 5 months from now * * When comparing a value in the future to default now: * 1 hour ago * 5 months ago * * When comparing a value in the past to another value: * 1 hour after * 5 months after * * When comparing a value in the future to another value: * 1 hour before * 5 months before * * @param Carbon|\DateTimeInterface|string|array|null $other if array passed, will be used as parameters array, see $syntax below; * if null passed, now will be used as comparison reference; * if any other type, it will be converted to date and used as reference. * @param int|array $syntax if array passed, parameters will be extracted from it, the array may contains: * - 'syntax' entry (see below) * - 'short' entry (see below) * - 'parts' entry (see below) * - 'options' entry (see below) * - 'join' entry determines how to join multiple parts of the string * ` - if $join is a string, it's used as a joiner glue * ` - if $join is a callable/closure, it get the list of string and should return a string * ` - if $join is an array, the first item will be the default glue, and the second item * ` will be used instead of the glue for the last item * ` - if $join is true, it will be guessed from the locale ('list' translation file entry) * ` - if $join is missing, a space will be used as glue * - 'other' entry (see above) * if int passed, it add modifiers: * Possible values: * - CarbonInterface::DIFF_ABSOLUTE no modifiers * - CarbonInterface::DIFF_RELATIVE_TO_NOW add ago/from now modifier * - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier * Default value: CarbonInterface::DIFF_ABSOLUTE * @param bool $short displays short format of time units * @param int $parts maximum number of parts to display (default value: 1: single unit) * @param int $options human diff options * * @return string */ public function to($other = null, $syntax = null, $short = false, $parts = 1, $options = null) { if (!$syntax && !$other) { $syntax = CarbonInterface::DIFF_RELATIVE_TO_NOW; } return $this->resolveCarbon($other)->diffForHumans($this, $syntax, $short, $parts, $options); } /** * @alias to * * Get the difference in a human readable format in the current locale from an other * instance given (or now if null given) to current instance. * * @param Carbon|\DateTimeInterface|string|array|null $other if array passed, will be used as parameters array, see $syntax below; * if null passed, now will be used as comparison reference; * if any other type, it will be converted to date and used as reference. * @param int|array $syntax if array passed, parameters will be extracted from it, the array may contains: * - 'syntax' entry (see below) * - 'short' entry (see below) * - 'parts' entry (see below) * - 'options' entry (see below) * - 'join' entry determines how to join multiple parts of the string * ` - if $join is a string, it's used as a joiner glue * ` - if $join is a callable/closure, it get the list of string and should return a string * ` - if $join is an array, the first item will be the default glue, and the second item * ` will be used instead of the glue for the last item * ` - if $join is true, it will be guessed from the locale ('list' translation file entry) * ` - if $join is missing, a space will be used as glue * - 'other' entry (see above) * if int passed, it add modifiers: * Possible values: * - CarbonInterface::DIFF_ABSOLUTE no modifiers * - CarbonInterface::DIFF_RELATIVE_TO_NOW add ago/from now modifier * - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier * Default value: CarbonInterface::DIFF_ABSOLUTE * @param bool $short displays short format of time units * @param int $parts maximum number of parts to display (default value: 1: single unit) * @param int $options human diff options * * @return string */ public function until($other = null, $syntax = null, $short = false, $parts = 1, $options = null) { return $this->to($other, $syntax, $short, $parts, $options); } /** * Get the difference in a human readable format in the current locale from current * instance to now. * * @param int|array $syntax if array passed, parameters will be extracted from it, the array may contains: * - 'syntax' entry (see below) * - 'short' entry (see below) * - 'parts' entry (see below) * - 'options' entry (see below) * - 'join' entry determines how to join multiple parts of the string * ` - if $join is a string, it's used as a joiner glue * ` - if $join is a callable/closure, it get the list of string and should return a string * ` - if $join is an array, the first item will be the default glue, and the second item * ` will be used instead of the glue for the last item * ` - if $join is true, it will be guessed from the locale ('list' translation file entry) * ` - if $join is missing, a space will be used as glue * if int passed, it add modifiers: * Possible values: * - CarbonInterface::DIFF_ABSOLUTE no modifiers * - CarbonInterface::DIFF_RELATIVE_TO_NOW add ago/from now modifier * - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier * Default value: CarbonInterface::DIFF_ABSOLUTE * @param bool $short displays short format of time units * @param int $parts maximum number of parts to display (default value: 1: single unit) * @param int $options human diff options * * @return string */ public function fromNow($syntax = null, $short = false, $parts = 1, $options = null) { $other = null; if ($syntax instanceof DateTimeInterface) { [$other, $syntax, $short, $parts, $options] = array_pad(\func_get_args(), 5, null); } return $this->from($other, $syntax, $short, $parts, $options); } /** * Get the difference in a human readable format in the current locale from an other * instance given to now * * @param int|array $syntax if array passed, parameters will be extracted from it, the array may contains: * - 'syntax' entry (see below) * - 'short' entry (see below) * - 'parts' entry (see below) * - 'options' entry (see below) * - 'join' entry determines how to join multiple parts of the string * ` - if $join is a string, it's used as a joiner glue * ` - if $join is a callable/closure, it get the list of string and should return a string * ` - if $join is an array, the first item will be the default glue, and the second item * ` will be used instead of the glue for the last item * ` - if $join is true, it will be guessed from the locale ('list' translation file entry) * ` - if $join is missing, a space will be used as glue * if int passed, it add modifiers: * Possible values: * - CarbonInterface::DIFF_ABSOLUTE no modifiers * - CarbonInterface::DIFF_RELATIVE_TO_NOW add ago/from now modifier * - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier * Default value: CarbonInterface::DIFF_ABSOLUTE * @param bool $short displays short format of time units * @param int $parts maximum number of parts to display (default value: 1: single part) * @param int $options human diff options * * @return string */ public function toNow($syntax = null, $short = false, $parts = 1, $options = null) { return $this->to(null, $syntax, $short, $parts, $options); } /** * Get the difference in a human readable format in the current locale from an other * instance given to now * * @param int|array $syntax if array passed, parameters will be extracted from it, the array may contains: * - 'syntax' entry (see below) * - 'short' entry (see below) * - 'parts' entry (see below) * - 'options' entry (see below) * - 'join' entry determines how to join multiple parts of the string * ` - if $join is a string, it's used as a joiner glue * ` - if $join is a callable/closure, it get the list of string and should return a string * ` - if $join is an array, the first item will be the default glue, and the second item * ` will be used instead of the glue for the last item * ` - if $join is true, it will be guessed from the locale ('list' translation file entry) * ` - if $join is missing, a space will be used as glue * if int passed, it add modifiers: * Possible values: * - CarbonInterface::DIFF_ABSOLUTE no modifiers * - CarbonInterface::DIFF_RELATIVE_TO_NOW add ago/from now modifier * - CarbonInterface::DIFF_RELATIVE_TO_OTHER add before/after modifier * Default value: CarbonInterface::DIFF_ABSOLUTE * @param bool $short displays short format of time units * @param int $parts maximum number of parts to display (default value: 1: single part) * @param int $options human diff options * * @return string */ public function ago($syntax = null, $short = false, $parts = 1, $options = null) { $other = null; if ($syntax instanceof DateTimeInterface) { [$other, $syntax, $short, $parts, $options] = array_pad(\func_get_args(), 5, null); } return $this->from($other, $syntax, $short, $parts, $options); } /** * Get the difference in a human readable format in the current locale from current instance to an other * instance given (or now if null given). * * @return string */ public function timespan($other = null, $timezone = null) { if (!$other instanceof DateTimeInterface) { $other = static::parse($other, $timezone); } return $this->diffForHumans($other, [ 'join' => ', ', 'syntax' => CarbonInterface::DIFF_ABSOLUTE, 'options' => CarbonInterface::NO_ZERO_DIFF, 'parts' => -1, ]); } /** * Returns either day of week + time (e.g. "Last Friday at 3:30 PM") if reference time is within 7 days, * or a calendar date (e.g. "10/29/2017") otherwise. * * Language, date and time formats will change according to the current locale. * * @param Carbon|\DateTimeInterface|string|null $referenceTime * @param array $formats * * @return string */ public function calendar($referenceTime = null, array $formats = []) { /** @var CarbonInterface $current */ $current = $this->copy()->startOfDay(); /** @var CarbonInterface $other */ $other = $this->resolveCarbon($referenceTime)->copy()->setTimezone($this->getTimezone())->startOfDay(); $diff = $other->diffInDays($current, false); $format = $diff < -6 ? 'sameElse' : ( $diff < -1 ? 'lastWeek' : ( $diff < 0 ? 'lastDay' : ( $diff < 1 ? 'sameDay' : ( $diff < 2 ? 'nextDay' : ( $diff < 7 ? 'nextWeek' : 'sameElse' ) ) ) ) ); $format = array_merge($this->getCalendarFormats(), $formats)[$format]; if ($format instanceof Closure) { $format = $format($current, $other) ?? ''; } return $this->isoFormat(\strval($format)); } } PK!§>Ŗ››!carbon/src/Carbon/Traits/Week.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; /** * Trait Week. * * week and ISO week number, year and count in year. * * Depends on the following properties: * * @property int $daysInYear * @property int $dayOfWeek * @property int $dayOfYear * @property int $year * * Depends on the following methods: * * @method static addWeeks(int $weeks = 1) * @method static copy() * @method static dayOfYear(int $dayOfYear) * @method string getTranslationMessage(string $key, string $locale = null, string $default = null, $translator = null) * @method static next(int|string $day = null) * @method static startOfWeek(int $day = 1) * @method static subWeeks(int $weeks = 1) * @method static year(int $year = null) */ trait Week { /** * Set/get the week number of year using given first day of week and first * day of year included in the first week. Or use ISO format if no settings * given. * * @param int|null $year if null, act as a getter, if not null, set the year and return current instance. * @param int|null $dayOfWeek first date of week from 0 (Sunday) to 6 (Saturday) * @param int|null $dayOfYear first day of year included in the week #1 * * @return int|static */ public function isoWeekYear($year = null, $dayOfWeek = null, $dayOfYear = null) { return $this->weekYear( $year, $dayOfWeek ?? 1, $dayOfYear ?? 4 ); } /** * Set/get the week number of year using given first day of week and first * day of year included in the first week. Or use US format if no settings * given (Sunday / Jan 6). * * @param int|null $year if null, act as a getter, if not null, set the year and return current instance. * @param int|null $dayOfWeek first date of week from 0 (Sunday) to 6 (Saturday) * @param int|null $dayOfYear first day of year included in the week #1 * * @return int|static */ public function weekYear($year = null, $dayOfWeek = null, $dayOfYear = null) { $dayOfWeek = $dayOfWeek ?? $this->getTranslationMessage('first_day_of_week') ?? 0; $dayOfYear = $dayOfYear ?? $this->getTranslationMessage('day_of_first_week_of_year') ?? 1; if ($year !== null) { $year = (int) round($year); if ($this->weekYear(null, $dayOfWeek, $dayOfYear) === $year) { return $this->copy(); } $week = $this->week(null, $dayOfWeek, $dayOfYear); $day = $this->dayOfWeek; $date = $this->year($year); switch ($date->weekYear(null, $dayOfWeek, $dayOfYear) - $year) { case 1: $date = $date->subWeeks(26); break; case -1: $date = $date->addWeeks(26); break; } $date = $date->addWeeks($week - $date->week(null, $dayOfWeek, $dayOfYear))->startOfWeek($dayOfWeek); if ($date->dayOfWeek === $day) { return $date; } return $date->next($day); } $year = $this->year; $day = $this->dayOfYear; $date = $this->copy()->dayOfYear($dayOfYear)->startOfWeek($dayOfWeek); if ($date->year === $year && $day < $date->dayOfYear) { return $year - 1; } $date = $this->copy()->addYear()->dayOfYear($dayOfYear)->startOfWeek($dayOfWeek); if ($date->year === $year && $day >= $date->dayOfYear) { return $year + 1; } return $year; } /** * Get the number of weeks of the current week-year using given first day of week and first * day of year included in the first week. Or use ISO format if no settings * given. * * @param int|null $dayOfWeek first date of week from 0 (Sunday) to 6 (Saturday) * @param int|null $dayOfYear first day of year included in the week #1 * * @return int */ public function isoWeeksInYear($dayOfWeek = null, $dayOfYear = null) { return $this->weeksInYear( $dayOfWeek ?? 1, $dayOfYear ?? 4 ); } /** * Get the number of weeks of the current week-year using given first day of week and first * day of year included in the first week. Or use US format if no settings * given (Sunday / Jan 6). * * @param int|null $dayOfWeek first date of week from 0 (Sunday) to 6 (Saturday) * @param int|null $dayOfYear first day of year included in the week #1 * * @return int */ public function weeksInYear($dayOfWeek = null, $dayOfYear = null) { $dayOfWeek = $dayOfWeek ?? $this->getTranslationMessage('first_day_of_week') ?? 0; $dayOfYear = $dayOfYear ?? $this->getTranslationMessage('day_of_first_week_of_year') ?? 1; $year = $this->year; $start = $this->copy()->dayOfYear($dayOfYear)->startOfWeek($dayOfWeek); $startDay = $start->dayOfYear; if ($start->year !== $year) { $startDay -= $start->daysInYear; } $end = $this->copy()->addYear()->dayOfYear($dayOfYear)->startOfWeek($dayOfWeek); $endDay = $end->dayOfYear; if ($end->year !== $year) { $endDay += $this->daysInYear; } return (int) round(($endDay - $startDay) / 7); } /** * Get/set the week number using given first day of week and first * day of year included in the first week. Or use US format if no settings * given (Sunday / Jan 6). * * @param int|null $week * @param int|null $dayOfWeek * @param int|null $dayOfYear * * @return int|static */ public function week($week = null, $dayOfWeek = null, $dayOfYear = null) { $date = $this; $dayOfWeek = $dayOfWeek ?? $this->getTranslationMessage('first_day_of_week') ?? 0; $dayOfYear = $dayOfYear ?? $this->getTranslationMessage('day_of_first_week_of_year') ?? 1; if ($week !== null) { return $date->addWeeks(round($week) - $this->week(null, $dayOfWeek, $dayOfYear)); } $start = $date->copy()->dayOfYear($dayOfYear)->startOfWeek($dayOfWeek); $end = $date->copy()->startOfWeek($dayOfWeek); if ($start > $end) { $start = $start->subWeeks(26)->dayOfYear($dayOfYear)->startOfWeek($dayOfWeek); } $week = (int) ($start->diffInDays($end) / 7 + 1); return $week > $end->weeksInYear($dayOfWeek, $dayOfYear) ? 1 : $week; } /** * Get/set the week number using given first day of week and first * day of year included in the first week. Or use ISO format if no settings * given. * * @param int|null $week * @param int|null $dayOfWeek * @param int|null $dayOfYear * * @return int|static */ public function isoWeek($week = null, $dayOfWeek = null, $dayOfYear = null) { return $this->week( $week, $dayOfWeek ?? 1, $dayOfYear ?? 4 ); } } PK!ˆGÄ  "carbon/src/Carbon/Traits/Macro.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; /** * Trait Macros. * * Allows users to register macros within the Carbon class. */ trait Macro { use Mixin; /** * The registered macros. * * @var array */ protected static $globalMacros = []; /** * The registered generic macros. * * @var array */ protected static $globalGenericMacros = []; /** * Register a custom macro. * * @example * ``` * $userSettings = [ * 'locale' => 'pt', * 'timezone' => 'America/Sao_Paulo', * ]; * Carbon::macro('userFormat', function () use ($userSettings) { * return $this->copy()->locale($userSettings['locale'])->tz($userSettings['timezone'])->calendar(); * }); * echo Carbon::yesterday()->hours(11)->userFormat(); * ``` * * @param string $name * @param object|callable $macro * * @return void */ public static function macro($name, $macro) { static::$globalMacros[$name] = $macro; } /** * Remove all macros and generic macros. */ public static function resetMacros() { static::$globalMacros = []; static::$globalGenericMacros = []; } /** * Register a custom macro. * * @param object|callable $macro * @param int $priority marco with higher priority is tried first * * @return void */ public static function genericMacro($macro, $priority = 0) { if (!isset(static::$globalGenericMacros[$priority])) { static::$globalGenericMacros[$priority] = []; krsort(static::$globalGenericMacros, SORT_NUMERIC); } static::$globalGenericMacros[$priority][] = $macro; } /** * Checks if macro is registered globally. * * @param string $name * * @return bool */ public static function hasMacro($name) { return isset(static::$globalMacros[$name]); } /** * Get the raw callable macro registered globally for a given name. * * @param string $name * * @return callable|null */ public static function getMacro($name) { return static::$globalMacros[$name] ?? null; } /** * Checks if macro is registered globally or locally. * * @param string $name * * @return bool */ public function hasLocalMacro($name) { return ($this->localMacros && isset($this->localMacros[$name])) || static::hasMacro($name); } /** * Get the raw callable macro registered globally or locally for a given name. * * @param string $name * * @return callable|null */ public function getLocalMacro($name) { return ($this->localMacros ?? [])[$name] ?? static::getMacro($name); } } PK! L©t )carbon/src/Carbon/Traits/IntervalStep.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; use Carbon\Carbon; use Carbon\CarbonImmutable; use Carbon\CarbonInterface; use Closure; use DateTimeImmutable; use DateTimeInterface; trait IntervalStep { /** * Step to apply instead of a fixed interval to get the new date. * * @var Closure|null */ protected $step; /** * Get the dynamic step in use. * * @return Closure */ public function getStep(): ?Closure { return $this->step; } /** * Set a step to apply instead of a fixed interval to get the new date. * * Or pass null to switch to fixed interval. * * @param Closure|null $step */ public function setStep(?Closure $step): void { $this->step = $step; } /** * Take a date and apply either the step if set, or the current interval else. * * The interval/step is applied negatively (typically subtraction instead of addition) if $negated is true. * * @param DateTimeInterface $dateTime * @param bool $negated * * @return CarbonInterface */ public function convertDate(DateTimeInterface $dateTime, bool $negated = false): CarbonInterface { /** @var CarbonInterface $carbonDate */ $carbonDate = $dateTime instanceof CarbonInterface ? $dateTime : $this->resolveCarbon($dateTime); if ($this->step) { return $carbonDate->setDateTimeFrom(($this->step)($carbonDate->copy(), $negated)); } if ($negated) { return $carbonDate->rawSub($this); } return $carbonDate->rawAdd($this); } /** * Convert DateTimeImmutable instance to CarbonImmutable instance and DateTime instance to Carbon instance. * * @param DateTimeInterface $dateTime * * @return Carbon|CarbonImmutable */ private function resolveCarbon(DateTimeInterface $dateTime) { if ($dateTime instanceof DateTimeImmutable) { return CarbonImmutable::instance($dateTime); } return Carbon::instance($dateTime); } } PK!m.8Ķ$,$,'carbon/src/Carbon/Traits/Boundaries.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; use Carbon\Exceptions\UnknownUnitException; /** * Trait Boundaries. * * startOf, endOf and derived method for each unit. * * Depends on the following properties: * * @property int $year * @property int $month * @property int $daysInMonth * @property int $quarter * * Depends on the following methods: * * @method $this setTime(int $hour, int $minute, int $second = 0, int $microseconds = 0) * @method $this setDate(int $year, int $month, int $day) * @method $this addMonths(int $value = 1) */ trait Boundaries { /** * Resets the time to 00:00:00 start of day * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfDay(); * ``` * * @return static */ public function startOfDay() { return $this->setTime(0, 0, 0, 0); } /** * Resets the time to 23:59:59.999999 end of day * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfDay(); * ``` * * @return static */ public function endOfDay() { return $this->setTime(static::HOURS_PER_DAY - 1, static::MINUTES_PER_HOUR - 1, static::SECONDS_PER_MINUTE - 1, static::MICROSECONDS_PER_SECOND - 1); } /** * Resets the date to the first day of the month and the time to 00:00:00 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfMonth(); * ``` * * @return static */ public function startOfMonth() { return $this->setDate($this->year, $this->month, 1)->startOfDay(); } /** * Resets the date to end of the month and time to 23:59:59.999999 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfMonth(); * ``` * * @return static */ public function endOfMonth() { return $this->setDate($this->year, $this->month, $this->daysInMonth)->endOfDay(); } /** * Resets the date to the first day of the quarter and the time to 00:00:00 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfQuarter(); * ``` * * @return static */ public function startOfQuarter() { $month = ($this->quarter - 1) * static::MONTHS_PER_QUARTER + 1; return $this->setDate($this->year, $month, 1)->startOfDay(); } /** * Resets the date to end of the quarter and time to 23:59:59.999999 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfQuarter(); * ``` * * @return static */ public function endOfQuarter() { return $this->startOfQuarter()->addMonths(static::MONTHS_PER_QUARTER - 1)->endOfMonth(); } /** * Resets the date to the first day of the year and the time to 00:00:00 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfYear(); * ``` * * @return static */ public function startOfYear() { return $this->setDate($this->year, 1, 1)->startOfDay(); } /** * Resets the date to end of the year and time to 23:59:59.999999 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfYear(); * ``` * * @return static */ public function endOfYear() { return $this->setDate($this->year, 12, 31)->endOfDay(); } /** * Resets the date to the first day of the decade and the time to 00:00:00 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfDecade(); * ``` * * @return static */ public function startOfDecade() { $year = $this->year - $this->year % static::YEARS_PER_DECADE; return $this->setDate($year, 1, 1)->startOfDay(); } /** * Resets the date to end of the decade and time to 23:59:59.999999 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfDecade(); * ``` * * @return static */ public function endOfDecade() { $year = $this->year - $this->year % static::YEARS_PER_DECADE + static::YEARS_PER_DECADE - 1; return $this->setDate($year, 12, 31)->endOfDay(); } /** * Resets the date to the first day of the century and the time to 00:00:00 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfCentury(); * ``` * * @return static */ public function startOfCentury() { $year = $this->year - ($this->year - 1) % static::YEARS_PER_CENTURY; return $this->setDate($year, 1, 1)->startOfDay(); } /** * Resets the date to end of the century and time to 23:59:59.999999 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfCentury(); * ``` * * @return static */ public function endOfCentury() { $year = $this->year - 1 - ($this->year - 1) % static::YEARS_PER_CENTURY + static::YEARS_PER_CENTURY; return $this->setDate($year, 12, 31)->endOfDay(); } /** * Resets the date to the first day of the millennium and the time to 00:00:00 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfMillennium(); * ``` * * @return static */ public function startOfMillennium() { $year = $this->year - ($this->year - 1) % static::YEARS_PER_MILLENNIUM; return $this->setDate($year, 1, 1)->startOfDay(); } /** * Resets the date to end of the millennium and time to 23:59:59.999999 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfMillennium(); * ``` * * @return static */ public function endOfMillennium() { $year = $this->year - 1 - ($this->year - 1) % static::YEARS_PER_MILLENNIUM + static::YEARS_PER_MILLENNIUM; return $this->setDate($year, 12, 31)->endOfDay(); } /** * Resets the date to the first day of week (defined in $weekStartsAt) and the time to 00:00:00 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfWeek() . "\n"; * echo Carbon::parse('2018-07-25 12:45:16')->locale('ar')->startOfWeek() . "\n"; * echo Carbon::parse('2018-07-25 12:45:16')->startOfWeek(Carbon::SUNDAY) . "\n"; * ``` * * @param int $weekStartsAt optional start allow you to specify the day of week to use to start the week * * @return static */ public function startOfWeek($weekStartsAt = null) { return $this->subDays((7 + $this->dayOfWeek - ($weekStartsAt ?? $this->firstWeekDay)) % 7)->startOfDay(); } /** * Resets the date to end of week (defined in $weekEndsAt) and time to 23:59:59.999999 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfWeek() . "\n"; * echo Carbon::parse('2018-07-25 12:45:16')->locale('ar')->endOfWeek() . "\n"; * echo Carbon::parse('2018-07-25 12:45:16')->endOfWeek(Carbon::SATURDAY) . "\n"; * ``` * * @param int $weekEndsAt optional start allow you to specify the day of week to use to end the week * * @return static */ public function endOfWeek($weekEndsAt = null) { return $this->addDays((7 - $this->dayOfWeek + ($weekEndsAt ?? $this->lastWeekDay)) % 7)->endOfDay(); } /** * Modify to start of current hour, minutes and seconds become 0 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfHour(); * ``` * * @return static */ public function startOfHour() { return $this->setTime($this->hour, 0, 0, 0); } /** * Modify to end of current hour, minutes and seconds become 59 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfHour(); * ``` * * @return static */ public function endOfHour() { return $this->setTime($this->hour, static::MINUTES_PER_HOUR - 1, static::SECONDS_PER_MINUTE - 1, static::MICROSECONDS_PER_SECOND - 1); } /** * Modify to start of current minute, seconds become 0 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->startOfMinute(); * ``` * * @return static */ public function startOfMinute() { return $this->setTime($this->hour, $this->minute, 0, 0); } /** * Modify to end of current minute, seconds become 59 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16')->endOfMinute(); * ``` * * @return static */ public function endOfMinute() { return $this->setTime($this->hour, $this->minute, static::SECONDS_PER_MINUTE - 1, static::MICROSECONDS_PER_SECOND - 1); } /** * Modify to start of current second, microseconds become 0 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16.334455') * ->startOfSecond() * ->format('H:i:s.u'); * ``` * * @return static */ public function startOfSecond() { return $this->setTime($this->hour, $this->minute, $this->second, 0); } /** * Modify to end of current second, microseconds become 999999 * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16.334455') * ->endOfSecond() * ->format('H:i:s.u'); * ``` * * @return static */ public function endOfSecond() { return $this->setTime($this->hour, $this->minute, $this->second, static::MICROSECONDS_PER_SECOND - 1); } /** * Modify to start of current given unit. * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16.334455') * ->startOf('month') * ->endOf('week', Carbon::FRIDAY); * ``` * * @param string $unit * @param array $params * * @return static */ public function startOf($unit, ...$params) { $ucfUnit = ucfirst(static::singularUnit($unit)); $method = "startOf$ucfUnit"; if (!method_exists($this, $method)) { throw new UnknownUnitException($unit); } return $this->$method(...$params); } /** * Modify to end of current given unit. * * @example * ``` * echo Carbon::parse('2018-07-25 12:45:16.334455') * ->startOf('month') * ->endOf('week', Carbon::FRIDAY); * ``` * * @param string $unit * @param array $params * * @return static */ public function endOf($unit, ...$params) { $ucfUnit = ucfirst(static::singularUnit($unit)); $method = "endOf$ucfUnit"; if (!method_exists($this, $method)) { throw new UnknownUnitException($unit); } return $this->$method(...$params); } } PK!ĘŪX``!carbon/src/Carbon/Traits/Cast.phpnuÕIw¶“rawFormat('Y-m-d H:i:s.u'), $this->getTimezone()); } throw new InvalidCastException("$className has not the instance() method needed to cast the date."); } return $className::instance($this); } } PK! Č×y44'carbon/src/Carbon/Traits/Mutability.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; use Carbon\Carbon; use Carbon\CarbonImmutable; /** * Trait Mutability. * * Utils to know if the current object is mutable or immutable and convert it. */ trait Mutability { use Cast; /** * Returns true if the current class/instance is mutable. * * @return bool */ public static function isMutable() { return false; } /** * Returns true if the current class/instance is immutable. * * @return bool */ public static function isImmutable() { return !static::isMutable(); } /** * Return a mutable copy of the instance. * * @return Carbon */ public function toMutable() { /** @var Carbon $date */ $date = $this->cast(Carbon::class); return $date; } /** * Return a immutable copy of the instance. * * @return CarbonImmutable */ public function toImmutable() { /** @var CarbonImmutable $date */ $date = $this->cast(CarbonImmutable::class); return $date; } } PK!ó¼Ļ–((-carbon/src/Carbon/Traits/IntervalRounding.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\Traits; use Carbon\CarbonInterval; use Carbon\Exceptions\InvalidIntervalException; use DateInterval; /** * Trait to call rounding methods to interval or the interval of a period. */ trait IntervalRounding { protected function callRoundMethod(string $method, array $parameters) { $action = substr($method, 0, 4); if ($action !== 'ceil') { $action = substr($method, 0, 5); } if (\in_array($action, ['round', 'floor', 'ceil'])) { return $this->{$action.'Unit'}(substr($method, \strlen($action)), ...$parameters); } return null; } protected function roundWith($precision, $function) { $unit = 'second'; if ($precision instanceof DateInterval) { $precision = (string) CarbonInterval::instance($precision); } if (\is_string($precision) && preg_match('/^\s*(?\d+)?\s*(?\w+)(?\W.*)?$/', $precision, $match)) { if (trim($match['other'] ?? '') !== '') { throw new InvalidIntervalException('Rounding is only possible with single unit intervals.'); } $precision = (int) ($match['precision'] ?: 1); $unit = $match['unit']; } return $this->roundUnit($unit, $precision, $function); } } PK!]Ćģ¹»$»$"carbon/src/Carbon/CarbonPeriod.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon; use Carbon\Exceptions\InvalidCastException; use Carbon\Exceptions\InvalidIntervalException; use Carbon\Exceptions\InvalidPeriodDateException; use Carbon\Exceptions\InvalidPeriodParameterException; use Carbon\Exceptions\NotACarbonClassException; use Carbon\Exceptions\NotAPeriodException; use Carbon\Exceptions\UnknownGetterException; use Carbon\Exceptions\UnknownMethodException; use Carbon\Exceptions\UnreachableException; use Carbon\Traits\IntervalRounding; use Carbon\Traits\Mixin; use Carbon\Traits\Options; use Closure; use Countable; use DateInterval; use DatePeriod; use DateTime; use DateTimeInterface; use InvalidArgumentException; use Iterator; use JsonSerializable; use ReflectionException; use RuntimeException; /** * Substitution of DatePeriod with some modifications and many more features. * * @property-read int $recurrences number of recurrences (if end not set). * @property-read bool $include_start_date rather the start date is included in the iteration. * @property-read bool $include_end_date rather the end date is included in the iteration (if recurrences not set). * @property-read CarbonInterface $start Period start date. * @property-read CarbonInterface $current Current date from the iteration. * @property-read CarbonInterface $end Period end date. * @property-read CarbonInterval $interval Underlying date interval instance. Always present, one day by default. * * @method static CarbonPeriod start($date, $inclusive = null) Create instance specifying start date or modify the start date if called on an instance. * @method static CarbonPeriod since($date, $inclusive = null) Alias for start(). * @method static CarbonPeriod sinceNow($inclusive = null) Create instance with start date set to now or set the start date to now if called on an instance. * @method static CarbonPeriod end($date = null, $inclusive = null) Create instance specifying end date or modify the end date if called on an instance. * @method static CarbonPeriod until($date = null, $inclusive = null) Alias for end(). * @method static CarbonPeriod untilNow($inclusive = null) Create instance with end date set to now or set the end date to now if called on an instance. * @method static CarbonPeriod dates($start, $end = null) Create instance with start and end dates or modify the start and end dates if called on an instance. * @method static CarbonPeriod between($start, $end = null) Create instance with start and end dates or modify the start and end dates if called on an instance. * @method static CarbonPeriod recurrences($recurrences = null) Create instance with maximum number of recurrences or modify the number of recurrences if called on an instance. * @method static CarbonPeriod times($recurrences = null) Alias for recurrences(). * @method static CarbonPeriod options($options = null) Create instance with options or modify the options if called on an instance. * @method static CarbonPeriod toggle($options, $state = null) Create instance with options toggled on or off, or toggle options if called on an instance. * @method static CarbonPeriod filter($callback, $name = null) Create instance with filter added to the stack or append a filter if called on an instance. * @method static CarbonPeriod push($callback, $name = null) Alias for filter(). * @method static CarbonPeriod prepend($callback, $name = null) Create instance with filter prepended to the stack or prepend a filter if called on an instance. * @method static CarbonPeriod filters(array $filters = []) Create instance with filters stack or replace the whole filters stack if called on an instance. * @method static CarbonPeriod interval($interval) Create instance with given date interval or modify the interval if called on an instance. * @method static CarbonPeriod each($interval) Create instance with given date interval or modify the interval if called on an instance. * @method static CarbonPeriod every($interval) Create instance with given date interval or modify the interval if called on an instance. * @method static CarbonPeriod step($interval) Create instance with given date interval or modify the interval if called on an instance. * @method static CarbonPeriod stepBy($interval) Create instance with given date interval or modify the interval if called on an instance. * @method static CarbonPeriod invert() Create instance with inverted date interval or invert the interval if called on an instance. * @method static CarbonPeriod years($years = 1) Create instance specifying a number of years for date interval or replace the interval by the given a number of years if called on an instance. * @method static CarbonPeriod year($years = 1) Alias for years(). * @method static CarbonPeriod months($months = 1) Create instance specifying a number of months for date interval or replace the interval by the given a number of months if called on an instance. * @method static CarbonPeriod month($months = 1) Alias for months(). * @method static CarbonPeriod weeks($weeks = 1) Create instance specifying a number of weeks for date interval or replace the interval by the given a number of weeks if called on an instance. * @method static CarbonPeriod week($weeks = 1) Alias for weeks(). * @method static CarbonPeriod days($days = 1) Create instance specifying a number of days for date interval or replace the interval by the given a number of days if called on an instance. * @method static CarbonPeriod dayz($days = 1) Alias for days(). * @method static CarbonPeriod day($days = 1) Alias for days(). * @method static CarbonPeriod hours($hours = 1) Create instance specifying a number of hours for date interval or replace the interval by the given a number of hours if called on an instance. * @method static CarbonPeriod hour($hours = 1) Alias for hours(). * @method static CarbonPeriod minutes($minutes = 1) Create instance specifying a number of minutes for date interval or replace the interval by the given a number of minutes if called on an instance. * @method static CarbonPeriod minute($minutes = 1) Alias for minutes(). * @method static CarbonPeriod seconds($seconds = 1) Create instance specifying a number of seconds for date interval or replace the interval by the given a number of seconds if called on an instance. * @method static CarbonPeriod second($seconds = 1) Alias for seconds(). * @method $this roundYear(float $precision = 1, string $function = "round") Round the current instance year with given precision using the given function. * @method $this roundYears(float $precision = 1, string $function = "round") Round the current instance year with given precision using the given function. * @method $this floorYear(float $precision = 1) Truncate the current instance year with given precision. * @method $this floorYears(float $precision = 1) Truncate the current instance year with given precision. * @method $this ceilYear(float $precision = 1) Ceil the current instance year with given precision. * @method $this ceilYears(float $precision = 1) Ceil the current instance year with given precision. * @method $this roundMonth(float $precision = 1, string $function = "round") Round the current instance month with given precision using the given function. * @method $this roundMonths(float $precision = 1, string $function = "round") Round the current instance month with given precision using the given function. * @method $this floorMonth(float $precision = 1) Truncate the current instance month with given precision. * @method $this floorMonths(float $precision = 1) Truncate the current instance month with given precision. * @method $this ceilMonth(float $precision = 1) Ceil the current instance month with given precision. * @method $this ceilMonths(float $precision = 1) Ceil the current instance month with given precision. * @method $this roundWeek(float $precision = 1, string $function = "round") Round the current instance day with given precision using the given function. * @method $this roundWeeks(float $precision = 1, string $function = "round") Round the current instance day with given precision using the given function. * @method $this floorWeek(float $precision = 1) Truncate the current instance day with given precision. * @method $this floorWeeks(float $precision = 1) Truncate the current instance day with given precision. * @method $this ceilWeek(float $precision = 1) Ceil the current instance day with given precision. * @method $this ceilWeeks(float $precision = 1) Ceil the current instance day with given precision. * @method $this roundDay(float $precision = 1, string $function = "round") Round the current instance day with given precision using the given function. * @method $this roundDays(float $precision = 1, string $function = "round") Round the current instance day with given precision using the given function. * @method $this floorDay(float $precision = 1) Truncate the current instance day with given precision. * @method $this floorDays(float $precision = 1) Truncate the current instance day with given precision. * @method $this ceilDay(float $precision = 1) Ceil the current instance day with given precision. * @method $this ceilDays(float $precision = 1) Ceil the current instance day with given precision. * @method $this roundHour(float $precision = 1, string $function = "round") Round the current instance hour with given precision using the given function. * @method $this roundHours(float $precision = 1, string $function = "round") Round the current instance hour with given precision using the given function. * @method $this floorHour(float $precision = 1) Truncate the current instance hour with given precision. * @method $this floorHours(float $precision = 1) Truncate the current instance hour with given precision. * @method $this ceilHour(float $precision = 1) Ceil the current instance hour with given precision. * @method $this ceilHours(float $precision = 1) Ceil the current instance hour with given precision. * @method $this roundMinute(float $precision = 1, string $function = "round") Round the current instance minute with given precision using the given function. * @method $this roundMinutes(float $precision = 1, string $function = "round") Round the current instance minute with given precision using the given function. * @method $this floorMinute(float $precision = 1) Truncate the current instance minute with given precision. * @method $this floorMinutes(float $precision = 1) Truncate the current instance minute with given precision. * @method $this ceilMinute(float $precision = 1) Ceil the current instance minute with given precision. * @method $this ceilMinutes(float $precision = 1) Ceil the current instance minute with given precision. * @method $this roundSecond(float $precision = 1, string $function = "round") Round the current instance second with given precision using the given function. * @method $this roundSeconds(float $precision = 1, string $function = "round") Round the current instance second with given precision using the given function. * @method $this floorSecond(float $precision = 1) Truncate the current instance second with given precision. * @method $this floorSeconds(float $precision = 1) Truncate the current instance second with given precision. * @method $this ceilSecond(float $precision = 1) Ceil the current instance second with given precision. * @method $this ceilSeconds(float $precision = 1) Ceil the current instance second with given precision. * @method $this roundMillennium(float $precision = 1, string $function = "round") Round the current instance millennium with given precision using the given function. * @method $this roundMillennia(float $precision = 1, string $function = "round") Round the current instance millennium with given precision using the given function. * @method $this floorMillennium(float $precision = 1) Truncate the current instance millennium with given precision. * @method $this floorMillennia(float $precision = 1) Truncate the current instance millennium with given precision. * @method $this ceilMillennium(float $precision = 1) Ceil the current instance millennium with given precision. * @method $this ceilMillennia(float $precision = 1) Ceil the current instance millennium with given precision. * @method $this roundCentury(float $precision = 1, string $function = "round") Round the current instance century with given precision using the given function. * @method $this roundCenturies(float $precision = 1, string $function = "round") Round the current instance century with given precision using the given function. * @method $this floorCentury(float $precision = 1) Truncate the current instance century with given precision. * @method $this floorCenturies(float $precision = 1) Truncate the current instance century with given precision. * @method $this ceilCentury(float $precision = 1) Ceil the current instance century with given precision. * @method $this ceilCenturies(float $precision = 1) Ceil the current instance century with given precision. * @method $this roundDecade(float $precision = 1, string $function = "round") Round the current instance decade with given precision using the given function. * @method $this roundDecades(float $precision = 1, string $function = "round") Round the current instance decade with given precision using the given function. * @method $this floorDecade(float $precision = 1) Truncate the current instance decade with given precision. * @method $this floorDecades(float $precision = 1) Truncate the current instance decade with given precision. * @method $this ceilDecade(float $precision = 1) Ceil the current instance decade with given precision. * @method $this ceilDecades(float $precision = 1) Ceil the current instance decade with given precision. * @method $this roundQuarter(float $precision = 1, string $function = "round") Round the current instance quarter with given precision using the given function. * @method $this roundQuarters(float $precision = 1, string $function = "round") Round the current instance quarter with given precision using the given function. * @method $this floorQuarter(float $precision = 1) Truncate the current instance quarter with given precision. * @method $this floorQuarters(float $precision = 1) Truncate the current instance quarter with given precision. * @method $this ceilQuarter(float $precision = 1) Ceil the current instance quarter with given precision. * @method $this ceilQuarters(float $precision = 1) Ceil the current instance quarter with given precision. * @method $this roundMillisecond(float $precision = 1, string $function = "round") Round the current instance millisecond with given precision using the given function. * @method $this roundMilliseconds(float $precision = 1, string $function = "round") Round the current instance millisecond with given precision using the given function. * @method $this floorMillisecond(float $precision = 1) Truncate the current instance millisecond with given precision. * @method $this floorMilliseconds(float $precision = 1) Truncate the current instance millisecond with given precision. * @method $this ceilMillisecond(float $precision = 1) Ceil the current instance millisecond with given precision. * @method $this ceilMilliseconds(float $precision = 1) Ceil the current instance millisecond with given precision. * @method $this roundMicrosecond(float $precision = 1, string $function = "round") Round the current instance microsecond with given precision using the given function. * @method $this roundMicroseconds(float $precision = 1, string $function = "round") Round the current instance microsecond with given precision using the given function. * @method $this floorMicrosecond(float $precision = 1) Truncate the current instance microsecond with given precision. * @method $this floorMicroseconds(float $precision = 1) Truncate the current instance microsecond with given precision. * @method $this ceilMicrosecond(float $precision = 1) Ceil the current instance microsecond with given precision. * @method $this ceilMicroseconds(float $precision = 1) Ceil the current instance microsecond with given precision. */ class CarbonPeriod implements Iterator, Countable, JsonSerializable { use IntervalRounding; use Mixin { Mixin::mixin as baseMixin; } use Options; /** * Built-in filters. * * @var string */ public const RECURRENCES_FILTER = [self::class, 'filterRecurrences']; public const END_DATE_FILTER = [self::class, 'filterEndDate']; /** * Special value which can be returned by filters to end iteration. Also a filter. * * @var string */ public const END_ITERATION = [self::class, 'endIteration']; /** * Exclude start date from iteration. * * @var int */ public const EXCLUDE_START_DATE = 1; /** * Exclude end date from iteration. * * @var int */ public const EXCLUDE_END_DATE = 2; /** * Yield CarbonImmutable instances. * * @var int */ public const IMMUTABLE = 4; /** * Number of maximum attempts before giving up on finding next valid date. * * @var int */ public const NEXT_MAX_ATTEMPTS = 1000; /** * The registered macros. * * @var array */ protected static $macros = []; /** * Date class of iteration items. * * @var string */ protected $dateClass = Carbon::class; /** * Underlying date interval instance. Always present, one day by default. * * @var CarbonInterval */ protected $dateInterval; /** * Whether current date interval was set by default. * * @var bool */ protected $isDefaultInterval; /** * The filters stack. * * @var array */ protected $filters = []; /** * Period start date. Applied on rewind. Always present, now by default. * * @var CarbonInterface */ protected $startDate; /** * Period end date. For inverted interval should be before the start date. Applied via a filter. * * @var CarbonInterface|null */ protected $endDate; /** * Limit for number of recurrences. Applied via a filter. * * @var int|null */ protected $recurrences; /** * Iteration options. * * @var int */ protected $options; /** * Index of current date. Always sequential, even if some dates are skipped by filters. * Equal to null only before the first iteration. * * @var int */ protected $key; /** * Current date. May temporarily hold unaccepted value when looking for a next valid date. * Equal to null only before the first iteration. * * @var CarbonInterface */ protected $current; /** * Timezone of current date. Taken from the start date. * * @var \DateTimeZone|null */ protected $timezone; /** * The cached validation result for current date. * * @var bool|string|null */ protected $validationResult; /** * Timezone handler for settings() method. * * @var mixed */ protected $tzName; /** * Make a CarbonPeriod instance from given variable if possible. * * @param mixed $var * * @return static|null */ public static function make($var) { try { return static::instance($var); } catch (NotAPeriodException $e) { return static::create($var); } } /** * Create a new instance from a DatePeriod or CarbonPeriod object. * * @param CarbonPeriod|DatePeriod $period * * @return static */ public static function instance($period) { if ($period instanceof static) { return $period->copy(); } if ($period instanceof self) { return new static( $period->getStartDate(), $period->getEndDate() ?: $period->getRecurrences(), $period->getDateInterval(), $period->getOptions() ); } if ($period instanceof DatePeriod) { return new static( $period->start, $period->end ?: ($period->recurrences - 1), $period->interval, $period->include_start_date ? 0 : static::EXCLUDE_START_DATE ); } $class = \get_called_class(); $type = \gettype($period); throw new NotAPeriodException( 'Argument 1 passed to '.$class.'::'.__METHOD__.'() '. 'must be an instance of DatePeriod or '.$class.', '. ($type === 'object' ? 'instance of '.\get_class($period) : $type).' given.' ); } /** * Create a new instance. * * @return static */ public static function create(...$params) { return static::createFromArray($params); } /** * Create a new instance from an array of parameters. * * @param array $params * * @return static */ public static function createFromArray(array $params) { return new static(...$params); } /** * Create CarbonPeriod from ISO 8601 string. * * @param string $iso * @param int|null $options * * @return static */ public static function createFromIso($iso, $options = null) { $params = static::parseIso8601($iso); $instance = static::createFromArray($params); if ($options !== null) { $instance->setOptions($options); } return $instance; } /** * Return whether given interval contains non zero value of any time unit. * * @param \DateInterval $interval * * @return bool */ protected static function intervalHasTime(DateInterval $interval) { return $interval->h || $interval->i || $interval->s || $interval->f; } /** * Return whether given variable is an ISO 8601 specification. * * Note: Check is very basic, as actual validation will be done later when parsing. * We just want to ensure that variable is not any other type of a valid parameter. * * @param mixed $var * * @return bool */ protected static function isIso8601($var) { if (!\is_string($var)) { return false; } // Match slash but not within a timezone name. $part = '[a-z]+(?:[_-][a-z]+)*'; preg_match("#\b$part/$part\b|(/)#i", $var, $match); return isset($match[1]); } /** * Parse given ISO 8601 string into an array of arguments. * * @SuppressWarnings(PHPMD.ElseExpression) * * @param string $iso * * @return array */ protected static function parseIso8601($iso) { $result = []; $interval = null; $start = null; $end = null; foreach (explode('/', $iso) as $key => $part) { if ($key === 0 && preg_match('/^R([0-9]*)$/', $part, $match)) { $parsed = \strlen($match[1]) ? (int) $match[1] : null; } elseif ($interval === null && $parsed = CarbonInterval::make($part)) { $interval = $part; } elseif ($start === null && $parsed = Carbon::make($part)) { $start = $part; } elseif ($end === null && $parsed = Carbon::make(static::addMissingParts($start, $part))) { $end = $part; } else { throw new InvalidPeriodParameterException("Invalid ISO 8601 specification: $iso."); } $result[] = $parsed; } return $result; } /** * Add missing parts of the target date from the soure date. * * @param string $source * @param string $target * * @return string */ protected static function addMissingParts($source, $target) { $pattern = '/'.preg_replace('/[0-9]+/', '[0-9]+', preg_quote($target, '/')).'$/'; $result = preg_replace($pattern, $target, $source, 1, $count); return $count ? $result : $target; } /** * Register a custom macro. * * @example * ``` * CarbonPeriod::macro('middle', function () { * return $this->getStartDate()->average($this->getEndDate()); * }); * echo CarbonPeriod::since('2011-05-12')->until('2011-06-03')->middle(); * ``` * * @param string $name * @param object|callable $macro * * @return void */ public static function macro($name, $macro) { static::$macros[$name] = $macro; } /** * Register macros from a mixin object. * * @example * ``` * CarbonPeriod::mixin(new class { * public function addDays() { * return function ($count = 1) { * return $this->setStartDate( * $this->getStartDate()->addDays($count) * )->setEndDate( * $this->getEndDate()->addDays($count) * ); * }; * } * public function subDays() { * return function ($count = 1) { * return $this->setStartDate( * $this->getStartDate()->subDays($count) * )->setEndDate( * $this->getEndDate()->subDays($count) * ); * }; * } * }); * echo CarbonPeriod::create('2000-01-01', '2000-02-01')->addDays(5)->subDays(3); * ``` * * @param object|string $mixin * * @throws ReflectionException * * @return void */ public static function mixin($mixin) { static::baseMixin($mixin); } /** * Check if macro is registered. * * @param string $name * * @return bool */ public static function hasMacro($name) { return isset(static::$macros[$name]); } /** * Provide static proxy for instance aliases. * * @param string $method * @param array $parameters * * @return mixed */ public static function __callStatic($method, $parameters) { $date = new static(); if (static::hasMacro($method)) { return static::bindMacroContext(null, function () use (&$method, &$parameters, &$date) { return $date->callMacro($method, $parameters); }); } return $date->$method(...$parameters); } /** * CarbonPeriod constructor. * * @SuppressWarnings(PHPMD.ElseExpression) * * @throws InvalidArgumentException */ public function __construct(...$arguments) { // Parse and assign arguments one by one. First argument may be an ISO 8601 spec, // which will be first parsed into parts and then processed the same way. $argumentsCount = \count($arguments); if ($argumentsCount && static::isIso8601($iso = $arguments[0])) { array_splice($arguments, 0, 1, static::parseIso8601($iso)); } if ($argumentsCount === 1) { if ($arguments[0] instanceof DatePeriod) { $arguments = [ $arguments[0]->start, $arguments[0]->end ?: ($arguments[0]->recurrences - 1), $arguments[0]->interval, $arguments[0]->include_start_date ? 0 : static::EXCLUDE_START_DATE, ]; } elseif ($arguments[0] instanceof self) { $arguments = [ $arguments[0]->getStartDate(), $arguments[0]->getEndDate() ?: $arguments[0]->getRecurrences(), $arguments[0]->getDateInterval(), $arguments[0]->getOptions(), ]; } } foreach ($arguments as $argument) { if ($this->dateInterval === null && ( \is_string($argument) && preg_match( '/^(\d(\d(?![\/-])|[^\d\/-]([\/-])?)*|P[T0-9].*|(?:\h*\d+(?:\.\d+)?\h*[a-z]+)+)$/i', $argument ) || $argument instanceof DateInterval || $argument instanceof Closure ) && $parsed = @CarbonInterval::make($argument) ) { $this->setDateInterval($parsed); } elseif ($this->startDate === null && $parsed = Carbon::make($argument)) { $this->setStartDate($parsed); } elseif ($this->endDate === null && $parsed = Carbon::make($argument)) { $this->setEndDate($parsed); } elseif ($this->recurrences === null && $this->endDate === null && is_numeric($argument)) { $this->setRecurrences($argument); } elseif ($this->options === null && (\is_int($argument) || $argument === null)) { $this->setOptions($argument); } else { throw new InvalidPeriodParameterException('Invalid constructor parameters.'); } } if ($this->startDate === null) { $this->setStartDate(Carbon::now()); } if ($this->dateInterval === null) { $this->setDateInterval(CarbonInterval::day()); $this->isDefaultInterval = true; } if ($this->options === null) { $this->setOptions(0); } } /** * Get a copy of the instance. * * @return static */ public function copy() { return clone $this; } /** * Get the getter for a property allowing both `DatePeriod` snakeCase and camelCase names. * * @param string $name * * @return callable|null */ protected function getGetter(string $name) { switch (strtolower(preg_replace('/[A-Z]/', '_$0', $name))) { case 'start': case 'start_date': return [$this, 'getStartDate']; case 'end': case 'end_date': return [$this, 'getEndDate']; case 'interval': case 'date_interval': return [$this, 'getDateInterval']; case 'recurrences': return [$this, 'getRecurrences']; case 'include_start_date': return [$this, 'isStartIncluded']; case 'include_end_date': return [$this, 'isEndIncluded']; case 'current': return [$this, 'current']; default: return null; } } /** * Get a property allowing both `DatePeriod` snakeCase and camelCase names. * * @param string $name * * @return bool|CarbonInterface|CarbonInterval|int|null */ public function get(string $name) { $getter = $this->getGetter($name); if ($getter) { return $getter(); } throw new UnknownGetterException($name); } /** * Get a property allowing both `DatePeriod` snakeCase and camelCase names. * * @param string $name * * @return bool|CarbonInterface|CarbonInterval|int|null */ public function __get(string $name) { return $this->get($name); } /** * Check if an attribute exists on the object * * @param string $name * * @return bool */ public function __isset(string $name): bool { return $this->getGetter($name) !== null; } /** * @alias copy * * Get a copy of the instance. * * @return static */ public function clone() { return clone $this; } /** * Set the iteration item class. * * @param string $dateClass * * @return $this */ public function setDateClass(string $dateClass) { if (!is_a($dateClass, CarbonInterface::class, true)) { throw new NotACarbonClassException($dateClass); } $this->dateClass = $dateClass; if (is_a($dateClass, Carbon::class, true)) { $this->toggleOptions(static::IMMUTABLE, false); } elseif (is_a($dateClass, CarbonImmutable::class, true)) { $this->toggleOptions(static::IMMUTABLE, true); } return $this; } /** * Returns iteration item date class. * * @return string */ public function getDateClass(): string { return $this->dateClass; } /** * Change the period date interval. * * @param DateInterval|string $interval * * @throws InvalidIntervalException * * @return $this */ public function setDateInterval($interval) { if (!$interval = CarbonInterval::make($interval)) { throw new InvalidIntervalException('Invalid interval.'); } if ($interval->spec() === 'PT0S' && !$interval->f && !$interval->getStep()) { throw new InvalidIntervalException('Empty interval is not accepted.'); } $this->dateInterval = $interval; $this->isDefaultInterval = false; $this->handleChangedParameters(); return $this; } /** * Invert the period date interval. * * @return $this */ public function invertDateInterval() { $interval = $this->dateInterval->invert(); return $this->setDateInterval($interval); } /** * Set start and end date. * * @param DateTime|DateTimeInterface|string $start * @param DateTime|DateTimeInterface|string|null $end * * @return $this */ public function setDates($start, $end) { $this->setStartDate($start); $this->setEndDate($end); return $this; } /** * Change the period options. * * @param int|null $options * * @throws InvalidArgumentException * * @return $this */ public function setOptions($options) { if (!\is_int($options) && !\is_null($options)) { throw new InvalidPeriodParameterException('Invalid options.'); } $this->options = $options ?: 0; $this->handleChangedParameters(); return $this; } /** * Get the period options. * * @return int */ public function getOptions() { return $this->options; } /** * Toggle given options on or off. * * @param int $options * @param bool|null $state * * @throws \InvalidArgumentException * * @return $this */ public function toggleOptions($options, $state = null) { if ($state === null) { $state = ($this->options & $options) !== $options; } return $this->setOptions( $state ? $this->options | $options : $this->options & ~$options ); } /** * Toggle EXCLUDE_START_DATE option. * * @param bool $state * * @return $this */ public function excludeStartDate($state = true) { return $this->toggleOptions(static::EXCLUDE_START_DATE, $state); } /** * Toggle EXCLUDE_END_DATE option. * * @param bool $state * * @return $this */ public function excludeEndDate($state = true) { return $this->toggleOptions(static::EXCLUDE_END_DATE, $state); } /** * Get the underlying date interval. * * @return CarbonInterval */ public function getDateInterval() { return $this->dateInterval->copy(); } /** * Get start date of the period. * * @param string|null $rounding Optional rounding 'floor', 'ceil', 'round' using the period interval. * * @return CarbonInterface */ public function getStartDate(string $rounding = null) { $date = $this->startDate->copy(); return $rounding ? $date->round($this->getDateInterval(), $rounding) : $date; } /** * Get end date of the period. * * @param string|null $rounding Optional rounding 'floor', 'ceil', 'round' using the period interval. * * @return CarbonInterface|null */ public function getEndDate(string $rounding = null) { if (!$this->endDate) { return null; } $date = $this->endDate->copy(); return $rounding ? $date->round($this->getDateInterval(), $rounding) : $date; } /** * Get number of recurrences. * * @return int|null */ public function getRecurrences() { return $this->recurrences; } /** * Returns true if the start date should be excluded. * * @return bool */ public function isStartExcluded() { return ($this->options & static::EXCLUDE_START_DATE) !== 0; } /** * Returns true if the end date should be excluded. * * @return bool */ public function isEndExcluded() { return ($this->options & static::EXCLUDE_END_DATE) !== 0; } /** * Returns true if the start date should be included. * * @return bool */ public function isStartIncluded() { return !$this->isStartExcluded(); } /** * Returns true if the end date should be included. * * @return bool */ public function isEndIncluded() { return !$this->isEndExcluded(); } /** * Return the start if it's included by option, else return the start + 1 period interval. * * @return CarbonInterface */ public function getIncludedStartDate() { $start = $this->getStartDate(); if ($this->isStartExcluded()) { return $start->add($this->getDateInterval()); } return $start; } /** * Return the end if it's included by option, else return the end - 1 period interval. * Warning: if the period has no fixed end, this method will iterate the period to calculate it. * * @return CarbonInterface */ public function getIncludedEndDate() { $end = $this->getEndDate(); if (!$end) { return $this->calculateEnd(); } if ($this->isEndExcluded()) { return $end->sub($this->getDateInterval()); } return $end; } /** * Add a filter to the stack. * * @SuppressWarnings(PHPMD.UnusedFormalParameter) * * @param callable $callback * @param string $name * * @return $this */ public function addFilter($callback, $name = null) { $tuple = $this->createFilterTuple(\func_get_args()); $this->filters[] = $tuple; $this->handleChangedParameters(); return $this; } /** * Prepend a filter to the stack. * * @SuppressWarnings(PHPMD.UnusedFormalParameter) * * @param callable $callback * @param string $name * * @return $this */ public function prependFilter($callback, $name = null) { $tuple = $this->createFilterTuple(\func_get_args()); array_unshift($this->filters, $tuple); $this->handleChangedParameters(); return $this; } /** * Remove a filter by instance or name. * * @param callable|string $filter * * @return $this */ public function removeFilter($filter) { $key = \is_callable($filter) ? 0 : 1; $this->filters = array_values(array_filter( $this->filters, function ($tuple) use ($key, $filter) { return $tuple[$key] !== $filter; } )); $this->updateInternalState(); $this->handleChangedParameters(); return $this; } /** * Return whether given instance or name is in the filter stack. * * @param callable|string $filter * * @return bool */ public function hasFilter($filter) { $key = \is_callable($filter) ? 0 : 1; foreach ($this->filters as $tuple) { if ($tuple[$key] === $filter) { return true; } } return false; } /** * Get filters stack. * * @return array */ public function getFilters() { return $this->filters; } /** * Set filters stack. * * @param array $filters * * @return $this */ public function setFilters(array $filters) { $this->filters = $filters; $this->updateInternalState(); $this->handleChangedParameters(); return $this; } /** * Reset filters stack. * * @return $this */ public function resetFilters() { $this->filters = []; if ($this->endDate !== null) { $this->filters[] = [static::END_DATE_FILTER, null]; } if ($this->recurrences !== null) { $this->filters[] = [static::RECURRENCES_FILTER, null]; } $this->handleChangedParameters(); return $this; } /** * Add a recurrences filter (set maximum number of recurrences). * * @param int|null $recurrences * * @throws \InvalidArgumentException * * @return $this */ public function setRecurrences($recurrences) { if (!is_numeric($recurrences) && !\is_null($recurrences) || $recurrences < 0) { throw new InvalidPeriodParameterException('Invalid number of recurrences.'); } if ($recurrences === null) { return $this->removeFilter(static::RECURRENCES_FILTER); } $this->recurrences = (int) $recurrences; if (!$this->hasFilter(static::RECURRENCES_FILTER)) { return $this->addFilter(static::RECURRENCES_FILTER); } $this->handleChangedParameters(); return $this; } /** * Change the period start date. * * @param DateTime|DateTimeInterface|string $date * @param bool|null $inclusive * * @throws InvalidPeriodDateException * * @return $this */ public function setStartDate($date, $inclusive = null) { if (!$date = ([$this->dateClass, 'make'])($date)) { throw new InvalidPeriodDateException('Invalid start date.'); } $this->startDate = $date; if ($inclusive !== null) { $this->toggleOptions(static::EXCLUDE_START_DATE, !$inclusive); } return $this; } /** * Change the period end date. * * @param DateTime|DateTimeInterface|string|null $date * @param bool|null $inclusive * * @throws \InvalidArgumentException * * @return $this */ public function setEndDate($date, $inclusive = null) { if (!\is_null($date) && !$date = ([$this->dateClass, 'make'])($date)) { throw new InvalidPeriodDateException('Invalid end date.'); } if (!$date) { return $this->removeFilter(static::END_DATE_FILTER); } $this->endDate = $date; if ($inclusive !== null) { $this->toggleOptions(static::EXCLUDE_END_DATE, !$inclusive); } if (!$this->hasFilter(static::END_DATE_FILTER)) { return $this->addFilter(static::END_DATE_FILTER); } $this->handleChangedParameters(); return $this; } /** * Check if the current position is valid. * * @return bool */ public function valid() { return $this->validateCurrentDate() === true; } /** * Return the current key. * * @return int|null */ public function key() { return $this->valid() ? $this->key : null; } /** * Return the current date. * * @return CarbonInterface|null */ public function current() { return $this->valid() ? $this->prepareForReturn($this->current) : null; } /** * Move forward to the next date. * * @throws RuntimeException * * @return void */ public function next() { if ($this->current === null) { $this->rewind(); } if ($this->validationResult !== static::END_ITERATION) { $this->key++; $this->incrementCurrentDateUntilValid(); } } /** * Rewind to the start date. * * Iterating over a date in the UTC timezone avoids bug during backward DST change. * * @see https://bugs.php.net/bug.php?id=72255 * @see https://bugs.php.net/bug.php?id=74274 * @see https://wiki.php.net/rfc/datetime_and_daylight_saving_time * * @throws RuntimeException * * @return void */ public function rewind() { $this->key = 0; $this->current = ([$this->dateClass, 'make'])($this->startDate); $settings = $this->getSettings(); if ($this->hasLocalTranslator()) { $settings['locale'] = $this->getTranslatorLocale(); } $this->current->settings($settings); $this->timezone = static::intervalHasTime($this->dateInterval) ? $this->current->getTimezone() : null; if ($this->timezone) { $this->current = $this->current->utc(); } $this->validationResult = null; if ($this->isStartExcluded() || $this->validateCurrentDate() === false) { $this->incrementCurrentDateUntilValid(); } } /** * Skip iterations and returns iteration state (false if ended, true if still valid). * * @param int $count steps number to skip (1 by default) * * @return bool */ public function skip($count = 1) { for ($i = $count; $this->valid() && $i > 0; $i--) { $this->next(); } return $this->valid(); } /** * Format the date period as ISO 8601. * * @return string */ public function toIso8601String() { $parts = []; if ($this->recurrences !== null) { $parts[] = 'R'.$this->recurrences; } $parts[] = $this->startDate->toIso8601String(); $parts[] = $this->dateInterval->spec(); if ($this->endDate !== null) { $parts[] = $this->endDate->toIso8601String(); } return implode('/', $parts); } /** * Convert the date period into a string. * * @return string */ public function toString() { $translator = ([$this->dateClass, 'getTranslator'])(); $parts = []; $format = !$this->startDate->isStartOfDay() || $this->endDate && !$this->endDate->isStartOfDay() ? 'Y-m-d H:i:s' : 'Y-m-d'; if ($this->recurrences !== null) { $parts[] = $this->translate('period_recurrences', [], $this->recurrences, $translator); } $parts[] = $this->translate('period_interval', [':interval' => $this->dateInterval->forHumans([ 'join' => true, ])], null, $translator); $parts[] = $this->translate('period_start_date', [':date' => $this->startDate->rawFormat($format)], null, $translator); if ($this->endDate !== null) { $parts[] = $this->translate('period_end_date', [':date' => $this->endDate->rawFormat($format)], null, $translator); } $result = implode(' ', $parts); return mb_strtoupper(mb_substr($result, 0, 1)).mb_substr($result, 1); } /** * Format the date period as ISO 8601. * * @return string */ public function spec() { return $this->toIso8601String(); } /** * Cast the current instance into the given class. * * @param string $className The $className::instance() method will be called to cast the current object. * * @return DatePeriod */ public function cast(string $className) { if (!method_exists($className, 'instance')) { if (is_a($className, DatePeriod::class, true)) { return new $className( $this->getStartDate(), $this->getDateInterval(), $this->getEndDate() ? $this->getIncludedEndDate() : $this->getRecurrences(), $this->isStartExcluded() ? DatePeriod::EXCLUDE_START_DATE : 0 ); } throw new InvalidCastException("$className has not the instance() method needed to cast the date."); } return $className::instance($this); } /** * Return native DatePeriod PHP object matching the current instance. * * @example * ``` * var_dump(CarbonPeriod::create('2021-01-05', '2021-02-15')->toDatePeriod()); * ``` * * @return DatePeriod */ public function toDatePeriod() { return $this->cast(DatePeriod::class); } /** * Convert the date period into an array without changing current iteration state. * * @return CarbonInterface[] */ public function toArray() { $state = [ $this->key, $this->current ? $this->current->copy() : null, $this->validationResult, ]; $result = iterator_to_array($this); [$this->key, $this->current, $this->validationResult] = $state; return $result; } /** * Count dates in the date period. * * @return int */ public function count() { return \count($this->toArray()); } /** * Return the first date in the date period. * * @return CarbonInterface|null */ public function first() { return ($this->toArray() ?: [])[0] ?? null; } /** * Return the last date in the date period. * * @return CarbonInterface|null */ public function last() { $array = $this->toArray(); return $array ? $array[\count($array) - 1] : null; } /** * Convert the date period into a string. * * @return string */ public function __toString() { return $this->toString(); } /** * Add aliases for setters. * * CarbonPeriod::days(3)->hours(5)->invert() * ->sinceNow()->until('2010-01-10') * ->filter(...) * ->count() * * Note: We use magic method to let static and instance aliases with the same names. * * @param string $method * @param array $parameters * * @return mixed */ public function __call($method, $parameters) { if (static::hasMacro($method)) { return static::bindMacroContext($this, function () use (&$method, &$parameters) { return $this->callMacro($method, $parameters); }); } $roundedValue = $this->callRoundMethod($method, $parameters); if ($roundedValue !== null) { return $roundedValue; } $first = \count($parameters) >= 1 ? $parameters[0] : null; $second = \count($parameters) >= 2 ? $parameters[1] : null; switch ($method) { case 'start': case 'since': return $this->setStartDate($first, $second); case 'sinceNow': return $this->setStartDate(new Carbon, $first); case 'end': case 'until': return $this->setEndDate($first, $second); case 'untilNow': return $this->setEndDate(new Carbon, $first); case 'dates': case 'between': return $this->setDates($first, $second); case 'recurrences': case 'times': return $this->setRecurrences($first); case 'options': return $this->setOptions($first); case 'toggle': return $this->toggleOptions($first, $second); case 'filter': case 'push': return $this->addFilter($first, $second); case 'prepend': return $this->prependFilter($first, $second); case 'filters': return $this->setFilters($first ?: []); case 'interval': case 'each': case 'every': case 'step': case 'stepBy': return $this->setDateInterval($first); case 'invert': return $this->invertDateInterval(); case 'years': case 'year': case 'months': case 'month': case 'weeks': case 'week': case 'days': case 'dayz': case 'day': case 'hours': case 'hour': case 'minutes': case 'minute': case 'seconds': case 'second': return $this->setDateInterval(( // Override default P1D when instantiating via fluent setters. [$this->isDefaultInterval ? new CarbonInterval('PT0S') : $this->dateInterval, $method] )( \count($parameters) === 0 ? 1 : $first )); } if ($this->localStrictModeEnabled ?? Carbon::isStrictModeEnabled()) { throw new UnknownMethodException($method); } return $this; } /** * Set the instance's timezone from a string or object and add/subtract the offset difference. * * @param \DateTimeZone|string $timezone * * @return static */ public function shiftTimezone($timezone) { $this->tzName = $timezone; $this->timezone = $timezone; return $this; } /** * Returns the end is set, else calculated from start an recurrences. * * @param string|null $rounding Optional rounding 'floor', 'ceil', 'round' using the period interval. * * @return CarbonInterface */ public function calculateEnd(string $rounding = null) { if ($end = $this->getEndDate($rounding)) { return $end; } $dates = iterator_to_array($this); $date = end($dates); if ($date && $rounding) { $date = $date->copy()->round($this->getDateInterval(), $rounding); } return $date; } /** * Returns true if the current period overlaps the given one (if 1 parameter passed) * or the period between 2 dates (if 2 parameters passed). * * @param CarbonPeriod|\DateTimeInterface|Carbon|CarbonImmutable|string $rangeOrRangeStart * @param \DateTimeInterface|Carbon|CarbonImmutable|string|null $rangeEnd * * @return bool */ public function overlaps($rangeOrRangeStart, $rangeEnd = null) { $range = $rangeEnd ? static::create($rangeOrRangeStart, $rangeEnd) : $rangeOrRangeStart; if (!($range instanceof self)) { $range = static::create($range); } return $this->calculateEnd() > $range->getStartDate() && $range->calculateEnd() > $this->getStartDate(); } /** * Execute a given function on each date of the period. * * @example * ``` * Carbon::create('2020-11-29')->daysUntil('2020-12-24')->forEach(function (Carbon $date) { * echo $date->diffInDays('2020-12-25')." days before Christmas!\n"; * }); * ``` * * @param callable $callback */ public function forEach(callable $callback) { foreach ($this as $date) { $callback($date); } } /** * Execute a given function on each date of the period and yield the result of this function. * * @example * ``` * $period = Carbon::create('2020-11-29')->daysUntil('2020-12-24'); * echo implode("\n", iterator_to_array($period->map(function (Carbon $date) { * return $date->diffInDays('2020-12-25').' days before Christmas!'; * }))); * ``` * * @param callable $callback * * @return \Generator */ public function map(callable $callback) { foreach ($this as $date) { yield $callback($date); } } /** * Determines if the instance is equal to another. * Warning: if options differ, instances wil never be equal. * * @param mixed $period * * @see equalTo() * * @return bool */ public function eq($period): bool { return $this->equalTo($period); } /** * Determines if the instance is equal to another. * Warning: if options differ, instances wil never be equal. * * @param mixed $period * * @return bool */ public function equalTo($period): bool { if (!($period instanceof self)) { $period = self::make($period); } $end = $this->getEndDate(); return $period !== null && $this->getDateInterval()->eq($period->getDateInterval()) && $this->getStartDate()->eq($period->getStartDate()) && ($end ? $end->eq($period->getEndDate()) : $this->getRecurrences() === $period->getRecurrences()) && ($this->getOptions() & (~static::IMMUTABLE)) === ($period->getOptions() & (~static::IMMUTABLE)); } /** * Determines if the instance is not equal to another. * Warning: if options differ, instances wil never be equal. * * @param mixed $period * * @see notEqualTo() * * @return bool */ public function ne($period): bool { return $this->notEqualTo($period); } /** * Determines if the instance is not equal to another. * Warning: if options differ, instances wil never be equal. * * @param mixed $period * * @return bool */ public function notEqualTo($period): bool { return !$this->eq($period); } /** * Determines if the start date is before an other given date. * (Rather start/end are included by options is ignored.) * * @param mixed $date * * @return bool */ public function startsBefore($date = null): bool { return $this->getStartDate()->lessThan($this->resolveCarbon($date)); } /** * Determines if the start date is before or the same as a given date. * (Rather start/end are included by options is ignored.) * * @param mixed $date * * @return bool */ public function startsBeforeOrAt($date = null): bool { return $this->getStartDate()->lessThanOrEqualTo($this->resolveCarbon($date)); } /** * Determines if the start date is after an other given date. * (Rather start/end are included by options is ignored.) * * @param mixed $date * * @return bool */ public function startsAfter($date = null): bool { return $this->getStartDate()->greaterThan($this->resolveCarbon($date)); } /** * Determines if the start date is after or the same as a given date. * (Rather start/end are included by options is ignored.) * * @param mixed $date * * @return bool */ public function startsAfterOrAt($date = null): bool { return $this->getStartDate()->greaterThanOrEqualTo($this->resolveCarbon($date)); } /** * Determines if the start date is the same as a given date. * (Rather start/end are included by options is ignored.) * * @param mixed $date * * @return bool */ public function startsAt($date = null): bool { return $this->getStartDate()->equalTo($this->resolveCarbon($date)); } /** * Determines if the end date is before an other given date. * (Rather start/end are included by options is ignored.) * * @param mixed $date * * @return bool */ public function endsBefore($date = null): bool { return $this->calculateEnd()->lessThan($this->resolveCarbon($date)); } /** * Determines if the end date is before or the same as a given date. * (Rather start/end are included by options is ignored.) * * @param mixed $date * * @return bool */ public function endsBeforeOrAt($date = null): bool { return $this->calculateEnd()->lessThanOrEqualTo($this->resolveCarbon($date)); } /** * Determines if the end date is after an other given date. * (Rather start/end are included by options is ignored.) * * @param mixed $date * * @return bool */ public function endsAfter($date = null): bool { return $this->calculateEnd()->greaterThan($this->resolveCarbon($date)); } /** * Determines if the end date is after or the same as a given date. * (Rather start/end are included by options is ignored.) * * @param mixed $date * * @return bool */ public function endsAfterOrAt($date = null): bool { return $this->calculateEnd()->greaterThanOrEqualTo($this->resolveCarbon($date)); } /** * Determines if the end date is the same as a given date. * (Rather start/end are included by options is ignored.) * * @param mixed $date * * @return bool */ public function endsAt($date = null): bool { return $this->calculateEnd()->equalTo($this->resolveCarbon($date)); } /** * Return true if start date is now or later. * (Rather start/end are included by options is ignored.) * * @return bool */ public function isStarted(): bool { return $this->startsBeforeOrAt(); } /** * Return true if end date is now or later. * (Rather start/end are included by options is ignored.) * * @return bool */ public function isEnded(): bool { return $this->endsBeforeOrAt(); } /** * Return true if now is between start date (included) and end date (excluded). * (Rather start/end are included by options is ignored.) * * @return bool */ public function isInProgress(): bool { return $this->isStarted() && !$this->isEnded(); } /** * Round the current instance at the given unit with given precision if specified and the given function. * * @param string $unit * @param float|int|string|\DateInterval|null $precision * @param string $function * * @return $this */ public function roundUnit($unit, $precision = 1, $function = 'round') { $this->setStartDate($this->getStartDate()->roundUnit($unit, $precision, $function)); if ($this->endDate) { $this->setEndDate($this->getEndDate()->roundUnit($unit, $precision, $function)); } $this->setDateInterval($this->getDateInterval()->roundUnit($unit, $precision, $function)); return $this; } /** * Truncate the current instance at the given unit with given precision if specified. * * @param string $unit * @param float|int|string|\DateInterval|null $precision * * @return $this */ public function floorUnit($unit, $precision = 1) { return $this->roundUnit($unit, $precision, 'floor'); } /** * Ceil the current instance at the given unit with given precision if specified. * * @param string $unit * @param float|int|string|\DateInterval|null $precision * * @return $this */ public function ceilUnit($unit, $precision = 1) { return $this->roundUnit($unit, $precision, 'ceil'); } /** * Round the current instance second with given precision if specified (else period interval is used). * * @param float|int|string|\DateInterval|null $precision * @param string $function * * @return $this */ public function round($precision = null, $function = 'round') { return $this->roundWith($precision ?? (string) $this->getDateInterval(), $function); } /** * Round the current instance second with given precision if specified (else period interval is used). * * @param float|int|string|\DateInterval|null $precision * * @return $this */ public function floor($precision = null) { return $this->round($precision, 'floor'); } /** * Ceil the current instance second with given precision if specified (else period interval is used). * * @param float|int|string|\DateInterval|null $precision * * @return $this */ public function ceil($precision = null) { return $this->round($precision, 'ceil'); } /** * Specify data which should be serialized to JSON. * * @link https://php.net/manual/en/jsonserializable.jsonserialize.php * * @return CarbonInterface[] */ public function jsonSerialize() { return $this->toArray(); } /** * Return true if the given date is between start and end. * * @param \Carbon\Carbon|\Carbon\CarbonPeriod|\Carbon\CarbonInterval|\DateInterval|\DatePeriod|\DateTimeInterface|string|null $date * * @return bool */ public function contains($date = null): bool { $startMethod = 'startsBefore'.($this->isStartIncluded() ? 'OrAt' : ''); $endMethod = 'endsAfter'.($this->isEndIncluded() ? 'OrAt' : ''); return $this->$startMethod($date) && $this->$endMethod($date); } /** * Return true if the current period follows a given other period (with no overlap). * For instance, [2019-08-01 -> 2019-08-12] follows [2019-07-29 -> 2019-07-31] * Note than in this example, follows() would be false if 2019-08-01 or 2019-07-31 was excluded by options. * * @param \Carbon\CarbonPeriod|\DatePeriod|string $period * * @return bool */ public function follows($period, ...$arguments): bool { $period = $this->resolveCarbonPeriod($period, ...$arguments); return $this->getIncludedStartDate()->equalTo($period->getIncludedEndDate()->add($period->getDateInterval())); } /** * Return true if the given other period follows the current one (with no overlap). * For instance, [2019-07-29 -> 2019-07-31] is followed by [2019-08-01 -> 2019-08-12] * Note than in this example, isFollowedBy() would be false if 2019-08-01 or 2019-07-31 was excluded by options. * * @param \Carbon\CarbonPeriod|\DatePeriod|string $period * * @return bool */ public function isFollowedBy($period, ...$arguments): bool { $period = $this->resolveCarbonPeriod($period, ...$arguments); return $period->follows($this); } /** * Return true if the given period either follows or is followed by the current one. * * @see follows() * @see isFollowedBy() * * @param \Carbon\CarbonPeriod|\DatePeriod|string $period * * @return bool */ public function isConsecutiveWith($period, ...$arguments): bool { return $this->follows($period, ...$arguments) || $this->isFollowedBy($period, ...$arguments); } /** * Update properties after removing built-in filters. * * @return void */ protected function updateInternalState() { if (!$this->hasFilter(static::END_DATE_FILTER)) { $this->endDate = null; } if (!$this->hasFilter(static::RECURRENCES_FILTER)) { $this->recurrences = null; } } /** * Create a filter tuple from raw parameters. * * Will create an automatic filter callback for one of Carbon's is* methods. * * @param array $parameters * * @return array */ protected function createFilterTuple(array $parameters) { $method = array_shift($parameters); if (!$this->isCarbonPredicateMethod($method)) { return [$method, array_shift($parameters)]; } return [function ($date) use ($method, $parameters) { return ([$date, $method])(...$parameters); }, $method]; } /** * Return whether given callable is a string pointing to one of Carbon's is* methods * and should be automatically converted to a filter callback. * * @param callable $callable * * @return bool */ protected function isCarbonPredicateMethod($callable) { return \is_string($callable) && substr($callable, 0, 2) === 'is' && (method_exists($this->dateClass, $callable) || ([$this->dateClass, 'hasMacro'])($callable)); } /** * Recurrences filter callback (limits number of recurrences). * * @SuppressWarnings(PHPMD.UnusedFormalParameter) * * @param \Carbon\Carbon $current * @param int $key * * @return bool|string */ protected function filterRecurrences($current, $key) { if ($key < $this->recurrences) { return true; } return static::END_ITERATION; } /** * End date filter callback. * * @param \Carbon\Carbon $current * * @return bool|string */ protected function filterEndDate($current) { if (!$this->isEndExcluded() && $current == $this->endDate) { return true; } if ($this->dateInterval->invert ? $current > $this->endDate : $current < $this->endDate) { return true; } return static::END_ITERATION; } /** * End iteration filter callback. * * @return string */ protected function endIteration() { return static::END_ITERATION; } /** * Handle change of the parameters. */ protected function handleChangedParameters() { if (($this->getOptions() & static::IMMUTABLE) && $this->dateClass === Carbon::class) { $this->setDateClass(CarbonImmutable::class); } elseif (!($this->getOptions() & static::IMMUTABLE) && $this->dateClass === CarbonImmutable::class) { $this->setDateClass(Carbon::class); } $this->validationResult = null; } /** * Validate current date and stop iteration when necessary. * * Returns true when current date is valid, false if it is not, or static::END_ITERATION * when iteration should be stopped. * * @return bool|string */ protected function validateCurrentDate() { if ($this->current === null) { $this->rewind(); } // Check after the first rewind to avoid repeating the initial validation. if ($this->validationResult !== null) { return $this->validationResult; } return $this->validationResult = $this->checkFilters(); } /** * Check whether current value and key pass all the filters. * * @return bool|string */ protected function checkFilters() { $current = $this->prepareForReturn($this->current); foreach ($this->filters as $tuple) { $result = \call_user_func( $tuple[0], $current->copy(), $this->key, $this ); if ($result === static::END_ITERATION) { return static::END_ITERATION; } if (!$result) { return false; } } return true; } /** * Prepare given date to be returned to the external logic. * * @param CarbonInterface $date * * @return CarbonInterface */ protected function prepareForReturn(CarbonInterface $date) { $date = ([$this->dateClass, 'make'])($date); if ($this->timezone) { $date = $date->setTimezone($this->timezone); } return $date; } /** * Keep incrementing the current date until a valid date is found or the iteration is ended. * * @throws RuntimeException * * @return void */ protected function incrementCurrentDateUntilValid() { $attempts = 0; do { $this->current = $this->current->add($this->dateInterval); $this->validationResult = null; if (++$attempts > static::NEXT_MAX_ATTEMPTS) { throw new UnreachableException('Could not find next valid date.'); } } while ($this->validateCurrentDate() === false); } /** * Call given macro. * * @param string $name * @param array $parameters * * @return mixed */ protected function callMacro($name, $parameters) { $macro = static::$macros[$name]; if ($macro instanceof Closure) { $boundMacro = @$macro->bindTo($this, static::class) ?: @$macro->bindTo(null, static::class); return ($boundMacro ?: $macro)(...$parameters); } return $macro(...$parameters); } /** * Return the Carbon instance passed through, a now instance in the same timezone * if null given or parse the input if string given. * * @param \Carbon\Carbon|\Carbon\CarbonPeriod|\Carbon\CarbonInterval|\DateInterval|\DatePeriod|\DateTimeInterface|string|null $date * * @return \Carbon\CarbonInterface */ protected function resolveCarbon($date = null) { return $this->getStartDate()->nowWithSameTz()->carbonize($date); } /** * Resolve passed arguments or DatePeriod to a CarbonPeriod object. * * @param mixed $period * @param mixed ...$arguments * * @return static */ protected function resolveCarbonPeriod($period, ...$arguments) { if ($period instanceof self) { return $period; } return $period instanceof DatePeriod ? static::instance($period) : static::create($period, ...$arguments); } } PK!Ŗaü OOcarbon/src/Carbon/Lang/mni.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/mni_IN.php'; PK!x^“FF carbon/src/Carbon/Lang/en_GM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK! Fōō carbon/src/Carbon/Lang/en_DK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Danish Standards Association bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'YYYY-MM-DD', ], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, ]); PK!}ć" carbon/src/Carbon/Lang/st_ZA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['Pherekgong', 'Hlakola', 'Tlhakubele', 'Mmese', 'Motsheanong', 'Phupjane', 'Phupu', 'Phato', 'Leotse', 'Mphalane', 'Pudungwana', 'Tshitwe'], 'months_short' => ['Phe', 'Hla', 'TlH', 'Mme', 'Mot', 'Jan', 'Upu', 'Pha', 'Leo', 'Mph', 'Pud', 'Tsh'], 'weekdays' => ['Sontaha', 'Mantaha', 'Labobedi', 'Laboraro', 'Labone', 'Labohlano', 'Moqebelo'], 'weekdays_short' => ['Son', 'Mma', 'Bed', 'Rar', 'Ne', 'Hla', 'Moq'], 'weekdays_min' => ['Son', 'Mma', 'Bed', 'Rar', 'Ne', 'Hla', 'Moq'], 'day_of_first_week_of_year' => 1, 'week' => ':count Sontaha', // less reliable 'w' => ':count Sontaha', // less reliable 'a_week' => ':count Sontaha', // less reliable 'day' => ':count letsatsi', // less reliable 'd' => ':count letsatsi', // less reliable 'a_day' => ':count letsatsi', // less reliable 'hour' => ':count seÅ”upanako', // less reliable 'h' => ':count seÅ”upanako', // less reliable 'a_hour' => ':count seÅ”upanako', // less reliable 'minute' => ':count menyane', // less reliable 'min' => ':count menyane', // less reliable 'a_minute' => ':count menyane', // less reliable 'second' => ':count thusa', // less reliable 's' => ':count thusa', // less reliable 'a_second' => ':count thusa', // less reliable 'year' => ':count selemo', 'y' => ':count selemo', 'a_year' => ':count selemo', 'month' => ':count kgwedi', 'm' => ':count kgwedi', 'a_month' => ':count kgwedi', ]); PK!ß6¾ūū carbon/src/Carbon/Lang/fr_CA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Dieter Sting * - FranƧois B * - Maxime VALY * - JD Isaacks */ return array_replace_recursive(require __DIR__.'/fr.php', [ 'formats' => [ 'L' => 'YYYY-MM-DD', ], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]); PK!ėŅ…6carbon/src/Carbon/Lang/mn.phpnuÕIw¶“ * * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @translator Batmandakh Erdenebileg */ /* * Authors: * - Philippe Vaucher * - Tsutomu Kuroda * - tjku * - Max Melentiev * - Zolzaya Erdenebaatar * - Tom Hughes * - Akira Matsuda * - Christopher Dell * - Michael Kessler * - Enrique Vidal * - Simone Carletti * - Aaron Patterson * - NicolĆ”s Hock Isaza * - Ochirkhuyag * - Batmandakh */ return [ 'year' => ':count жил', 'y' => ':count жил', 'month' => ':count сар', 'm' => ':count сар', 'week' => ':count Голоо хоног', 'w' => ':count Голоо хоног', 'day' => ':count өГөр', 'd' => ':count өГөр', 'hour' => ':count цаг', 'h' => ':countц', 'minute' => ':count Š¼ŠøŠ½ŃƒŃ‚', 'min' => ':countм', 'second' => ':count секунГ', 's' => ':countс', 'ago' => ':timeн өмнө', 'year_ago' => ':count жилий', 'month_ago' => ':count сары', 'day_ago' => ':count хоногий', 'hour_ago' => ':count цагий', 'minute_ago' => ':count Š¼ŠøŠ½ŃƒŃ‚Ń‹', 'second_ago' => ':count ŃŠµŠŗŃƒŠ½Š“Ń‹', 'from_now' => 'оГоогоос :time', 'year_from_now' => ':count жилийн Гараа', 'month_from_now' => ':count сарын Гараа', 'day_from_now' => ':count хоногийн Гараа', 'hour_from_now' => ':count цагийн Гараа', 'minute_from_now' => ':count Š¼ŠøŠ½ŃƒŃ‚Ń‹Š½ Гараа', 'second_from_now' => ':count ŃŠµŠŗŃƒŠ½Š“Ń‹Š½ Гараа', // Does it required to make translation for before, after as follows? hmm, I think we've made it with ago and from now keywords already. Anyway, I've included it just in case of undesired action... 'after' => ':timeн Гараа', 'year_after' => ':count жилий', 'month_after' => ':count сары', 'day_after' => ':count хоногий', 'hour_after' => ':count цагий', 'minute_after' => ':count Š¼ŠøŠ½ŃƒŃ‚Ń‹', 'second_after' => ':count ŃŠµŠŗŃƒŠ½Š“Ń‹', 'before' => ':timeн өмнө', 'year_before' => ':count жилий', 'month_before' => ':count сары', 'day_before' => ':count хоногий', 'hour_before' => ':count цагий', 'minute_before' => ':count Š¼ŠøŠ½ŃƒŃ‚Ń‹', 'second_before' => ':count ŃŠµŠŗŃƒŠ½Š“Ń‹', 'list' => ', ', 'diff_now' => 'оГоо', 'diff_yesterday' => 'өчигГөр', 'diff_tomorrow' => 'Š¼Š°Ń€Š³Š°Š°Ńˆ', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY-MM-DD', 'LL' => 'YYYY MMMM DD', 'LLL' => 'YY-MM-DD, HH:mm', 'LLLL' => 'YYYY MMMM DD, HH:mm', ], 'weekdays' => ['ŠŃŠ¼', 'Даваа', 'ŠœŃŠ³Š¼Š°Ń€', 'Лхагва', 'ŠŸŅÆŃ€ŃŠ²', 'Баасан', 'Š‘ŃŠ¼Š±Š°'], 'weekdays_short' => ['ŠŃ', 'Да', 'ŠœŃ', 'Лх', 'Пү', 'Ба', 'Š‘Ń'], 'weekdays_min' => ['ŠŃ', 'Да', 'ŠœŃ', 'Лх', 'Пү', 'Ба', 'Š‘Ń'], 'months' => ['1 сар', '2 сар', '3 сар', '4 сар', '5 сар', '6 сар', '7 сар', '8 сар', '9 сар', '10 сар', '11 сар', '12 сар'], 'months_short' => ['1 сар', '2 сар', '3 сар', '4 сар', '5 сар', '6 сар', '7 сар', '8 сар', '9 сар', '10 сар', '11 сар', '12 сар'], 'meridiem' => ['өглөө', 'орой'], 'first_day_of_week' => 1, ]; PK!Ņ£ˆźqqcarbon/src/Carbon/Lang/kk.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - FranƧois B * - Talat Uspanov * - ŠŃƒŃ€Š»Š°Š½ Рахимжанов * - Toleugazy Kali */ return [ 'year' => ':count жыл', 'a_year' => '{1}бір жыл|:count жыл', 'y' => ':count ж.', 'month' => ':count ай', 'a_month' => '{1}бір ай|:count ай', 'm' => ':count ай', 'week' => ':count апта', 'a_week' => '{1}бір апта', 'w' => ':count ап.', 'day' => ':count күн', 'a_day' => '{1}бір күн|:count күн', 'd' => ':count Šŗ.', 'hour' => ':count сағат', 'a_hour' => '{1}бір сағат|:count сағат', 'h' => ':count са.', 'minute' => ':count Š¼ŠøŠ½ŃƒŃ‚', 'a_minute' => '{1}бір Š¼ŠøŠ½ŃƒŃ‚|:count Š¼ŠøŠ½ŃƒŃ‚', 'min' => ':count м.', 'second' => ':count секунГ', 'a_second' => '{1}Š±Ń–Ń€Š½ŠµŃˆŠµ секунГ|:count секунГ', 's' => ':count се.', 'ago' => ':time бұрын', 'from_now' => ':time Ń–ŃˆŃ–Š½Š“Šµ', 'after' => ':time кейін', 'before' => ':time бұрын', 'diff_now' => 'қазір', 'diff_today' => 'Бүгін', 'diff_today_regexp' => 'Бүгін(?:\\s+сағат)?', 'diff_yesterday' => 'кеше', 'diff_yesterday_regexp' => 'Кеше(?:\\s+сағат)?', 'diff_tomorrow' => 'ертең', 'diff_tomorrow_regexp' => 'Ертең(?:\\s+сағат)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Бүгін сағат] LT', 'nextDay' => '[Ертең сағат] LT', 'nextWeek' => 'dddd [сағат] LT', 'lastDay' => '[Кеше сағат] LT', 'lastWeek' => '[Өткен аптаның] dddd [сағат] LT', 'sameElse' => 'L', ], 'ordinal' => function ($number) { static $suffixes = [ 0 => '-ші', 1 => '-ші', 2 => '-ші', 3 => '-ші', 4 => '-ші', 5 => '-ші', 6 => '-шы', 7 => '-ші', 8 => '-ші', 9 => '-шы', 10 => '-шы', 20 => '-шы', 30 => '-шы', 40 => '-шы', 50 => '-ші', 60 => '-шы', 70 => '-ші', 80 => '-ші', 90 => '-шы', 100 => '-ші', ]; return $number.($suffixes[$number] ?? $suffixes[$number % 10] ?? $suffixes[$number >= 100 ? 100 : -1] ?? ''); }, 'months' => ['қаңтар', 'ақпан', 'Š½Š°ŃƒŃ€Ń‹Š·', 'сәуір', 'мамыр', 'Š¼Š°ŃƒŃŃ‹Š¼', 'ŃˆŃ–Š»Š“Šµ', 'тамыз', 'қыркүйек', 'қазан', 'Ņ›Š°Ń€Š°ŃˆŠ°', 'желтоқсан'], 'months_short' => ['қаң', 'ақп', 'нау', 'сәу', 'мам', 'мау', 'ŃˆŃ–Š»', 'там', 'қыр', 'қаз', 'қар', 'жел'], 'weekdays' => ['жексенбі', 'Гүйсенбі', 'сейсенбі', 'сәрсенбі', 'бейсенбі', 'жұма', 'сенбі'], 'weekdays_short' => ['жек', 'Гүй', 'сей', 'сәр', 'бей', 'жұм', 'сен'], 'weekdays_min' => ['жк', 'Гй', 'сй', 'ср', 'бй', 'жм', 'сн'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' және '], ]; PK!ābĆ(( carbon/src/Carbon/Lang/ar_MR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ar.php', [ ]); PK!"ŅĻž ž carbon/src/Carbon/Lang/fo.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Kristian Sakarisson * - FranƧois B * - JD Isaacks * - Sverri Mohr Olsen */ return [ 'year' => 'eitt Ć”r|:count Ć”r', 'y' => ':count Ć”r|:count Ć”r', 'month' => 'ein mĆ”naưi|:count mĆ”naưir', 'm' => ':count mĆ”naưur|:count mĆ”naưir', 'week' => ':count vika|:count vikur', 'w' => ':count vika|:count vikur', 'day' => 'ein dagur|:count dagar', 'd' => ':count dag|:count dagar', 'hour' => 'ein tĆ­mi|:count tĆ­mar', 'h' => ':count tĆ­mi|:count tĆ­mar', 'minute' => 'ein minutt|:count minuttir', 'min' => ':count minutt|:count minuttir', 'second' => 'fĆ” sekund|:count sekundir', 's' => ':count sekund|:count sekundir', 'ago' => ':time sƭưani', 'from_now' => 'um :time', 'after' => ':time aftanĆ”', 'before' => ':time Ɣưrenn', 'diff_today' => 'ƍ', 'diff_yesterday' => 'ƍ', 'diff_yesterday_regexp' => 'ƍ(?:\\s+gjĆ”r)?(?:\\s+kl.)?', 'diff_tomorrow' => 'ƍ', 'diff_tomorrow_regexp' => 'ƍ(?:\\s+morgin)?(?:\\s+kl.)?', 'diff_today_regexp' => 'ƍ(?:\\s+dag)?(?:\\s+kl.)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D. MMMM, YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[ƍ dag kl.] LT', 'nextDay' => '[ƍ morgin kl.] LT', 'nextWeek' => 'dddd [kl.] LT', 'lastDay' => '[ƍ gjĆ”r kl.] LT', 'lastWeek' => '[sƭưstu] dddd [kl] LT', 'sameElse' => 'L', ], 'ordinal' => ':number.', 'months' => ['januar', 'februar', 'mars', 'aprĆ­l', 'mai', 'juni', 'juli', 'august', 'september', 'oktober', 'november', 'desember'], 'months_short' => ['jan', 'feb', 'mar', 'apr', 'mai', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'des'], 'weekdays' => ['sunnudagur', 'mĆ”nadagur', 'týsdagur', 'mikudagur', 'hósdagur', 'frĆ­ggjadagur', 'leygardagur'], 'weekdays_short' => ['sun', 'mĆ”n', 'týs', 'mik', 'hós', 'frĆ­', 'ley'], 'weekdays_min' => ['su', 'mĆ”', 'tý', 'mi', 'hó', 'fr', 'le'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' og '], ]; PK!ęqźh§§carbon/src/Carbon/Lang/mgh.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['wichishu', 'mchochil’l'], 'weekdays' => ['Sabato', 'Jumatatu', 'Jumanne', 'Jumatano', 'Arahamisi', 'Ijumaa', 'Jumamosi'], 'weekdays_short' => ['Sab', 'Jtt', 'Jnn', 'Jtn', 'Ara', 'Iju', 'Jmo'], 'weekdays_min' => ['Sab', 'Jtt', 'Jnn', 'Jtn', 'Ara', 'Iju', 'Jmo'], 'months' => ['Mweri wo kwanza', 'Mweri wo unayeli', 'Mweri wo uneraru', 'Mweri wo unecheshe', 'Mweri wo unethanu', 'Mweri wo thanu na mocha', 'Mweri wo saba', 'Mweri wo nane', 'Mweri wo tisa', 'Mweri wo kumi', 'Mweri wo kumi na moja', 'Mweri wo kumi na yel’li'], 'months_short' => ['Kwa', 'Una', 'Rar', 'Che', 'Tha', 'Moc', 'Sab', 'Nan', 'Tis', 'Kum', 'Moj', 'Yel'], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK!‡ädŖ¦¦ carbon/src/Carbon/Lang/es_AR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]); PK!X÷`ųŠŠ carbon/src/Carbon/Lang/ur_PK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/ur.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['Ų¬Ł†ŁˆŲ±ŪŒ', 'فروری', 'مارچ', 'Ų§Ł¾Ų±ŪŒŁ„', 'Ł…Ų¦ŪŒ', 'Ų¬ŁˆŁ†', 'Ų¬ŁˆŁ„Ų§Ų¦ŪŒ', 'Ų§ŚÆŲ³ŲŖ', 'Ų³ŲŖŁ…ŲØŲ±', 'اکتوبر', 'Ł†ŁˆŁ…ŲØŲ±', 'دسمبر'], 'months_short' => ['Ų¬Ł†ŁˆŲ±ŪŒ', 'فروری', 'مارچ', 'Ų§Ł¾Ų±ŪŒŁ„', 'Ł…Ų¦ŪŒ', 'Ų¬ŁˆŁ†', 'Ų¬ŁˆŁ„Ų§Ų¦ŪŒ', 'Ų§ŚÆŲ³ŲŖ', 'Ų³ŲŖŁ…ŲØŲ±', 'اکتوبر', 'Ł†ŁˆŁ…ŲØŲ±', 'دسمبر'], 'weekdays' => ['اتوار', 'پير', 'منگل', 'بدھ', 'جمعرات', 'جمعه', 'هفته'], 'weekdays_short' => ['اتوار', 'پير', 'منگل', 'بدھ', 'جمعرات', 'جمعه', 'هفته'], 'weekdays_min' => ['اتوار', 'پير', 'منگل', 'بدھ', 'جمعرات', 'جمعه', 'هفته'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['Ųµ', 'Ų“'], ]); PK!…-Šˆź ź "carbon/src/Carbon/Lang/zh_Hant.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Adam * - monkeycon * - FranƧois B * - Jason Katz-Brown * - Chris Lam * - Serhan Apaydın * - Gary Lo * - JD Isaacks * - Chris Hemp * - Eddie * - KID * - shankesgk2 * - Daniel Cheung (danvim) */ return [ 'year' => ':count:optional-space幓', 'y' => ':count:optional-space幓', 'month' => ':count:optional-spaceå€‹ęœˆ', 'm' => ':count:optional-space月', 'week' => ':count:optional-space週', 'w' => ':count:optional-space週', 'day' => ':count:optional-space天', 'd' => ':count:optional-space天', 'hour' => ':count:optional-spaceå°ę™‚', 'h' => ':count:optional-spaceå°ę™‚', 'minute' => ':count:optional-space分鐘', 'min' => ':count:optional-space分鐘', 'second' => ':count:optional-spaceē§’', 'a_second' => '{1}幾秒|]1,Inf[:count:optional-spaceē§’', 's' => ':count:optional-spaceē§’', 'ago' => ':time前', 'from_now' => ':time後', 'after' => ':time後', 'before' => ':time前', 'diff_now' => 'ē¾åœØ', 'diff_today' => '今天', 'diff_yesterday' => '昨天', 'diff_tomorrow' => 'ę˜Žå¤©', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY/MM/DD', 'LL' => 'YYYY幓M月Dę—„', 'LLL' => 'YYYY幓M月Dę—„ HH:mm', 'LLLL' => 'YYYY幓M月Dę—„dddd HH:mm', ], 'calendar' => [ 'sameDay' => '[今天] LT', 'nextDay' => '[ę˜Žå¤©] LT', 'nextWeek' => '[äø‹]dddd LT', 'lastDay' => '[昨天] LT', 'lastWeek' => '[上]dddd LT', 'sameElse' => 'L', ], 'ordinal' => function ($number, $period) { switch ($period) { case 'd': case 'D': case 'DDD': return $number.'ę—„'; case 'M': return $number.'月'; case 'w': case 'W': return $number.'周'; default: return $number; } }, 'meridiem' => function ($hour, $minute) { $time = $hour * 100 + $minute; if ($time < 600) { return 'å‡Œę™Ø'; } if ($time < 900) { return 'ę—©äøŠ'; } if ($time < 1130) { return 'äøŠåˆ'; } if ($time < 1230) { return 'äø­åˆ'; } if ($time < 1800) { return 'äø‹åˆ'; } return 'ę™šäøŠ'; }, 'months' => ['äø€ęœˆ', '二月', 'äø‰ęœˆ', 'å››ęœˆ', 'äŗ”ęœˆ', 'å…­ęœˆ', '七月', 'å…«ęœˆ', 'ä¹ęœˆ', 'åęœˆ', 'åäø€ęœˆ', 'åäŗŒęœˆ'], 'months_short' => ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'], 'weekdays' => ['ę˜ŸęœŸę—„', 'ę˜ŸęœŸäø€', '星期二', 'ę˜ŸęœŸäø‰', 'ę˜ŸęœŸå››', 'ę˜ŸęœŸäŗ”', 'ę˜ŸęœŸå…­'], 'weekdays_short' => ['週ꗄ', '週一', 'é€±äŗŒ', '週三', '週四', '週五', '週六'], 'weekdays_min' => ['ę—„', 'äø€', '二', 'äø‰', '四', 'äŗ”', '六'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => '', ]; PK!Äsī QQcarbon/src/Carbon/Lang/gom.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/gom_Latn.php'; PK!‚Œ†³ä ä carbon/src/Carbon/Lang/tlh.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - Serhan Apaydın * - Dominika */ return [ 'year' => '{1}wa’ DIS|:count DIS', 'month' => '{1}wa’ jar|:count jar', 'week' => '{1}wa’ hogh|:count hogh', 'day' => '{1}wa’ jaj|:count jaj', 'hour' => '{1}wa’ rep|:count rep', 'minute' => '{1}wa’ tup|:count tup', 'second' => '{1}puS lup|:count lup', 'ago' => function ($time) { $output = strtr($time, [ 'jaj' => 'Hu’', 'jar' => 'wen', 'DIS' => 'ben', ]); return $output === $time ? "$time ret" : $output; }, 'from_now' => function ($time) { $output = strtr($time, [ 'jaj' => 'leS', 'jar' => 'waQ', 'DIS' => 'nem', ]); return $output === $time ? "$time pIq" : $output; }, 'diff_yesterday' => 'wa’Hu’', 'diff_today' => 'DaHjaj', 'diff_tomorrow' => 'wa’leS', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[DaHjaj] LT', 'nextDay' => '[wa’leS] LT', 'nextWeek' => 'LLL', 'lastDay' => '[wa’Hu’] LT', 'lastWeek' => 'LLL', 'sameElse' => 'L', ], 'ordinal' => ':number.', 'months' => ['tera’ jar wa’', 'tera’ jar cha’', 'tera’ jar wej', 'tera’ jar loS', 'tera’ jar vagh', 'tera’ jar jav', 'tera’ jar Soch', 'tera’ jar chorgh', 'tera’ jar Hut', 'tera’ jar wa’maH', 'tera’ jar wa’maH wa’', 'tera’ jar wa’maH cha’'], 'months_short' => ['jar wa’', 'jar cha’', 'jar wej', 'jar loS', 'jar vagh', 'jar jav', 'jar Soch', 'jar chorgh', 'jar Hut', 'jar wa’maH', 'jar wa’maH wa’', 'jar wa’maH cha’'], 'weekdays' => ['lojmItjaj', 'DaSjaj', 'povjaj', 'ghItlhjaj', 'loghjaj', 'buqjaj', 'ghInjaj'], 'weekdays_short' => ['lojmItjaj', 'DaSjaj', 'povjaj', 'ghItlhjaj', 'loghjaj', 'buqjaj', 'ghInjaj'], 'weekdays_min' => ['lojmItjaj', 'DaSjaj', 'povjaj', 'ghItlhjaj', 'loghjaj', 'buqjaj', 'ghInjaj'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' ’ej '], ]; PK!’ĆlÕÕcarbon/src/Carbon/Lang/te.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Kunal Marwaha * - Josh Soref * - FranƧois B * - kc */ return [ 'year' => ':count ą°øą°‚ą°µą°¤ą±ą°øą°°ą°‚|:count ą°øą°‚ą°µą°¤ą±ą°øą°°ą°¾ą°²ą±', 'a_year' => 'ą°’ą°• ą°øą°‚ą°µą°¤ą±ą°øą°°ą°‚|:count ą°øą°‚ą°µą°¤ą±ą°øą°°ą°¾ą°²ą±', 'y' => ':count ą°øą°‚.', 'month' => ':count నెల|:count నెలలు', 'a_month' => 'ą°’ą°• నెల|:count నెలలు', 'm' => ':count నెల|:count నెల.', 'week' => ':count వారం|:count వారాలు', 'a_week' => 'ą°’ą°• వారం|:count వారాలు', 'w' => ':count వార.|:count వారా.', 'day' => ':count ą°°ą±‹ą°œą±|:count ą°°ą±‹ą°œą±ą°²ą±', 'a_day' => 'ą°’ą°• ą°°ą±‹ą°œą±|:count ą°°ą±‹ą°œą±ą°²ą±', 'd' => ':count ą°°ą±‹ą°œą±|:count ą°°ą±‹ą°œą±.', 'hour' => ':count ą°—ą°‚ą°Ÿ|:count ą°—ą°‚ą°Ÿą°²ą±', 'a_hour' => 'ą°’ą°• ą°—ą°‚ą°Ÿ|:count ą°—ą°‚ą°Ÿą°²ą±', 'h' => ':count ą°—ą°‚.', 'minute' => ':count నిమిషం|:count నిమిషాలు', 'a_minute' => 'ą°’ą°• నిమిషం|:count నిమిషాలు', 'min' => ':count నిమి.', 'second' => ':count సెకను|:count ą°øą±†ą°•ą°Øą±ą°²ą±', 'a_second' => 'ą°•ą±Šą°Øą±ą°Øą°æ ą°•ą±ą°·ą°£ą°¾ą°²ą±|:count ą°øą±†ą°•ą°Øą±ą°²ą±', 's' => ':count సెక.', 'ago' => ':time ą°•ą±ą°°ą°æą°¤ą°‚', 'from_now' => ':time లో', 'diff_now' => 'ą°Ŗą±ą°°ą°øą±ą°¤ą±ą°¤ą°‚', 'diff_today' => 'నేఔు', 'diff_yesterday' => 'ą°Øą°æą°Øą±ą°Ø', 'diff_tomorrow' => 'రేపు', 'formats' => [ 'LT' => 'A h:mm', 'LTS' => 'A h:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY, A h:mm', 'LLLL' => 'dddd, D MMMM YYYY, A h:mm', ], 'calendar' => [ 'sameDay' => '[నేఔు] LT', 'nextDay' => '[రేపు] LT', 'nextWeek' => 'dddd, LT', 'lastDay' => '[ą°Øą°æą°Øą±ą°Ø] LT', 'lastWeek' => '[ą°—ą°¤] dddd, LT', 'sameElse' => 'L', ], 'ordinal' => ':numberą°µ', 'meridiem' => function ($hour) { if ($hour < 4) { return 'ą°°ą°¾ą°¤ą±ą°°ą°æ'; } if ($hour < 10) { return 'ఉదయం'; } if ($hour < 17) { return 'ą°®ą°§ą±ą°Æą°¾ą°¹ą±ą°Øą°‚'; } if ($hour < 20) { return 'ą°øą°¾ą°Æą°‚ą°¤ą±ą°°ą°‚'; } return ' ą°°ą°¾ą°¤ą±ą°°ą°æ'; }, 'months' => ['జనవరి', 'ą°«ą°æą°¬ą±ą°°ą°µą°°ą°æ', 'ą°®ą°¾ą°°ą±ą°šą°æ', 'ą°ą°Ŗą±ą°°ą°æą°²ą±', 'మే', 'ą°œą±‚ą°Øą±', 'ą°œą±‚ą°²ą±†ą±–', 'ą°†ą°—ą°øą±ą°Ÿą±', 'ą°øą±†ą°Ŗą±ą°Ÿą±†ą°‚ą°¬ą°°ą±', 'ą°…ą°•ą±ą°Ÿą±‹ą°¬ą°°ą±', 'ą°Øą°µą°‚ą°¬ą°°ą±', 'ą°”ą°æą°øą±†ą°‚ą°¬ą°°ą±'], 'months_short' => ['జన.', 'ą°«ą°æą°¬ą±ą°°.', 'ą°®ą°¾ą°°ą±ą°šą°æ', 'ą°ą°Ŗą±ą°°ą°æ.', 'మే', 'ą°œą±‚ą°Øą±', 'ą°œą±‚ą°²ą±†ą±–', 'ఆగ.', 'ą°øą±†ą°Ŗą±.', 'ą°…ą°•ą±ą°Ÿą±‹.', 'ą°Øą°µ.', 'ఔిసె.'], 'weekdays' => ['ఆదివారం', 'సోమవారం', 'మంగళవారం', 'బుధవారం', 'గురువారం', 'ą°¶ą±ą°•ą±ą°°ą°µą°¾ą°°ą°‚', 'శనివారం'], 'weekdays_short' => ['ఆది', 'సోమ', 'మంగళ', 'బుధ', 'గురు', 'ą°¶ą±ą°•ą±ą°°', 'ą°¶ą°Øą°æ'], 'weekdays_min' => ['ą°†', 'సో', 'మం', 'బు', 'గు', 'శు', 'ą°¶'], 'list' => ', ', 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, 'weekend' => [0, 0], ]; PK! ösFF carbon/src/Carbon/Lang/es_CU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 1, ]); PK!¤wocarbon/src/Carbon/Lang/seh.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'weekdays' => ['Dimingu', 'Chiposi', 'Chipiri', 'Chitatu', 'Chinai', 'Chishanu', 'Sabudu'], 'weekdays_short' => ['Dim', 'Pos', 'Pir', 'Tat', 'Nai', 'Sha', 'Sab'], 'weekdays_min' => ['Dim', 'Pos', 'Pir', 'Tat', 'Nai', 'Sha', 'Sab'], 'months' => ['Janeiro', 'Fevreiro', 'Marco', 'Abril', 'Maio', 'Junho', 'Julho', 'Augusto', 'Setembro', 'Otubro', 'Novembro', 'Decembro'], 'months_short' => ['Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Aug', 'Set', 'Otu', 'Nov', 'Dec'], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'd [de] MMM [de] YYYY', 'LLL' => 'd [de] MMMM [de] YYYY HH:mm', 'LLLL' => 'dddd, d [de] MMMM [de] YYYY HH:mm', ], ]); PK!˜‹wßOOcarbon/src/Carbon/Lang/ber.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/ber_DZ.php'; PK!Ā"±wNNcarbon/src/Carbon/Lang/sm.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/sm_WS.php'; PK!‡«Oń   carbon/src/Carbon/Lang/kk_KZ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/kk.php'; PK!qē°¾((carbon/src/Carbon/Lang/agq.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['a.g', 'a.k'], 'weekdays' => ['tsuŹ”ntsÉØ', 'tsuŹ”ukpĆ ', 'tsuŹ”ughɔe', 'tsuŹ”utɔ̀mlò', 'tsuŹ”umĆØ', 'tsuŹ”ughÉØĢ‚m', 'tsuŹ”ndzÉØkɔʔɔ'], 'weekdays_short' => ['nts', 'kpa', 'ghɔ', 'tɔm', 'ume', 'ghÉØ', 'dzk'], 'weekdays_min' => ['nts', 'kpa', 'ghɔ', 'tɔm', 'ume', 'ghÉØ', 'dzk'], 'months' => ['ndzɔ̀ŋɔ̀nùm', 'ndzɔ̀ŋɔ̀kĘ—Ģ€zùʔ', 'ndzɔ̀ŋɔ̀tĘ—Ģ€dʉ̀ghĆ ', 'ndzɔ̀ŋɔ̀tĒŽafʉ̄ghā', 'ndzɔ̀ŋèsĆØe', 'ndzɔ̀ŋɔ̀nzùghò', 'ndzɔ̀ŋɔ̀dùmlo', 'ndzɔ̀ŋɔ̀kwĆ®fɔ̀e', 'ndzɔ̀ŋɔ̀tĘ—Ģ€fʉ̀ghĆ dzughù', 'ndzɔ̀ŋɔ̀ghĒ”uwelɔ̀m', 'ndzɔ̀ŋɔ̀chwaʔàkaa wo', 'ndzɔ̀ŋèfwòo'], 'months_short' => ['nùm', 'kÉØz', 'tÉØd', 'taa', 'see', 'nzu', 'dum', 'fɔe', 'dzu', 'lɔm', 'kaa', 'fwo'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM, YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], ]); PK!ćõ—¤   carbon/src/Carbon/Lang/nb_NO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/nb.php'; PK! µJ99carbon/src/Carbon/Lang/pap.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return [ 'formats' => [ 'LT' => 'HH.mm', 'LTS' => 'HH.mm:ss', 'L' => 'DD-MM-YY', 'LL' => 'MMMM [di] DD, YYYY', 'LLL' => 'DD MMM HH.mm', 'LLLL' => 'MMMM DD, YYYY HH.mm', ], 'months' => ['yanüari', 'febrüari', 'mart', 'aprel', 'mei', 'yüni', 'yüli', 'ougùstùs', 'sĆØptĆØmber', 'oktober', 'novĆØmber', 'desĆØmber'], 'months_short' => ['yan', 'feb', 'mar', 'apr', 'mei', 'yün', 'yül', 'oug', 'sĆØp', 'okt', 'nov', 'des'], 'weekdays' => ['djadomingo', 'djaluna', 'djamars', 'djawebs', 'djarason', 'djabierne', 'djasabra'], 'weekdays_short' => ['do', 'lu', 'ma', 'we', 'ra', 'bi', 'sa'], 'weekdays_min' => ['do', 'lu', 'ma', 'we', 'ra', 'bi', 'sa'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'year' => ':count aƱa', 'month' => ':count luna', 'week' => ':count siman', 'day' => ':count dia', 'hour' => ':count ora', 'minute' => ':count minüt', 'second' => ':count sekònde', 'list' => [', ', ' i '], ]; PK!+ŅhŸõõ carbon/src/Carbon/Lang/am_ET.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ge'ez Frontier Foundation locales@geez.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['įŒƒįŠ•į‹©į‹ˆįˆŖ', 'įŒį‰„įˆ©į‹ˆįˆŖ', 'įˆ›įˆ­į‰½', 'įŠ¤į•įˆŖįˆ', 'įˆœį‹­', 'įŒįŠ•', 'įŒįˆ‹į‹­', 'įŠ¦įŒˆįˆµį‰µ', 'įˆ“į•į‰“įˆį‰ įˆ­', 'įŠ¦įŠ­į‰¶į‰ įˆ­', 'įŠ–į‰¬įˆį‰ įˆ­', 'į‹²įˆ“įˆį‰ įˆ­'], 'months_short' => ['įŒƒįŠ•į‹©', 'įŒį‰„įˆ©', 'įˆ›įˆ­į‰½', 'įŠ¤į•įˆØ', 'įˆœį‹­ ', 'įŒįŠ• ', 'įŒįˆ‹į‹­', 'ኦገስ', 'įˆ“į•į‰“', 'įŠ¦įŠ­į‰°', 'įŠ–į‰¬įˆ', 'į‹²įˆ“įˆ'], 'weekdays' => ['įŠ„įˆ‘į‹µ', 'įˆ°įŠž', 'įˆ›įŠ­įˆ°įŠž', 'įˆØį‰”į‹•', 'įˆįˆ™įˆµ', 'į‹“įˆ­į‰„', 'į‰…į‹³įˆœ'], 'weekdays_short' => ['įŠ„įˆ‘į‹µ', 'įˆ°įŠž ', 'įˆ›įŠ­įˆ°', 'įˆØį‰”į‹•', 'įˆįˆ™įˆµ', 'į‹“įˆ­į‰„', 'į‰…į‹³įˆœ'], 'weekdays_min' => ['įŠ„įˆ‘į‹µ', 'įˆ°įŠž ', 'įˆ›įŠ­įˆ°', 'įˆØį‰”į‹•', 'įˆįˆ™įˆµ', 'į‹“įˆ­į‰„', 'į‰…į‹³įˆœ'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['įŒ”į‹‹į‰µ', 'įŠØįˆ°į‹“į‰µ'], 'year' => ':count įŠ įˆ˜į‰µ', 'y' => ':count įŠ įˆ˜į‰µ', 'a_year' => ':count įŠ įˆ˜į‰µ', 'month' => ':count į‹ˆįˆ­', 'm' => ':count į‹ˆįˆ­', 'a_month' => ':count į‹ˆįˆ­', 'week' => ':count įˆ³įˆįŠ•į‰µ', 'w' => ':count įˆ³įˆįŠ•į‰µ', 'a_week' => ':count įˆ³įˆįŠ•į‰µ', 'day' => ':count į‰€įŠ•', 'd' => ':count į‰€įŠ•', 'a_day' => ':count į‰€įŠ•', 'hour' => ':count įˆ°į‹“į‰µ', 'h' => ':count įˆ°į‹“į‰µ', 'a_hour' => ':count įˆ°į‹“į‰µ', 'minute' => ':count į‹°į‰‚į‰ƒ', 'min' => ':count į‹°į‰‚į‰ƒ', 'a_minute' => ':count į‹°į‰‚į‰ƒ', 'second' => ':count įˆ“įŠ®įŠ•į‹µ', 's' => ':count įˆ“įŠ®įŠ•į‹µ', 'a_second' => ':count įˆ“įŠ®įŠ•į‹µ', 'ago' => 'ከ:time į‰ įŠį‰µ', 'from_now' => 'በ:time į‹įˆµįŒ„', ]); PK!Ė}jZNNcarbon/src/Carbon/Lang/tt.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/tt_RU.php'; PK!Œ5Ę­  carbon/src/Carbon/Lang/gsw.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Christopher Dell * - Akira Matsuda * - Enrique Vidal * - Simone Carletti * - Henning Kiel * - Aaron Patterson * - Florian Hanke */ return [ 'year' => ':count Johr', 'month' => ':count Monet', 'week' => ':count Woche', 'day' => ':count Tag', 'hour' => ':count Schtund', 'minute' => ':count Minute', 'second' => ':count Sekunde', 'weekdays' => ['Sunntig', 'MƤntig', 'Ziischtig', 'Mittwuch', 'Dunschtig', 'Friitig', 'Samschtig'], 'weekdays_short' => ['Su', 'MƤ', 'Zi', 'Mi', 'Du', 'Fr', 'Sa'], 'weekdays_min' => ['Su', 'MƤ', 'Zi', 'Mi', 'Du', 'Fr', 'Sa'], 'months' => ['Januar', 'Februar', 'MƤrz', 'April', 'Mai', 'Juni', 'Juli', 'Auguscht', 'September', 'Oktober', 'November', 'Dezember'], 'months_short' => ['Jan', 'Feb', 'MƤr', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'], 'meridiem' => ['am Vormittag', 'am Namittag'], 'ordinal' => ':number.', 'list' => [', ', ' und '], 'diff_now' => 'now', 'diff_yesterday' => 'geschter', 'diff_tomorrow' => 'moorn', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'Do MMMM YYYY', 'LLL' => 'Do MMMM, HH:mm [Uhr]', 'LLLL' => 'dddd, Do MMMM YYYY, HH:mm [Uhr]', ], ]; PK!!”/¾] ] carbon/src/Carbon/Lang/jv.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - tgfjt * - JD Isaacks */ return [ 'year' => '{1}setaun|]1,Inf[:count taun', 'month' => '{1}sewulan|]1,Inf[:count wulan', 'week' => '{1}sakminggu|]1,Inf[:count minggu', 'day' => '{1}sedinten|]1,Inf[:count dinten', 'hour' => '{1}setunggal jam|]1,Inf[:count jam', 'minute' => '{1}setunggal menit|]1,Inf[:count menit', 'second' => '{1}sawetawis detik|]1,Inf[:count detik', 'ago' => ':time ingkang kepengker', 'from_now' => 'wonten ing :time', 'diff_today' => 'Dinten', 'diff_yesterday' => 'Kala', 'diff_yesterday_regexp' => 'Kala(?:\\s+wingi)?(?:\\s+pukul)?', 'diff_tomorrow' => 'Mbenjang', 'diff_tomorrow_regexp' => 'Mbenjang(?:\\s+pukul)?', 'diff_today_regexp' => 'Dinten(?:\\s+puniko)?(?:\\s+pukul)?', 'formats' => [ 'LT' => 'HH.mm', 'LTS' => 'HH.mm.ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY [pukul] HH.mm', 'LLLL' => 'dddd, D MMMM YYYY [pukul] HH.mm', ], 'calendar' => [ 'sameDay' => '[Dinten puniko pukul] LT', 'nextDay' => '[Mbenjang pukul] LT', 'nextWeek' => 'dddd [pukul] LT', 'lastDay' => '[Kala wingi pukul] LT', 'lastWeek' => 'dddd [kepengker pukul] LT', 'sameElse' => 'L', ], 'meridiem' => function ($hour) { if ($hour < 11) { return 'enjing'; } if ($hour < 15) { return 'siyang'; } if ($hour < 19) { return 'sonten'; } return 'ndalu'; }, 'months' => ['Januari', 'Februari', 'Maret', 'April', 'Mei', 'Juni', 'Juli', 'Agustus', 'September', 'Oktober', 'Nopember', 'Desember'], 'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'Mei', 'Jun', 'Jul', 'Ags', 'Sep', 'Okt', 'Nop', 'Des'], 'weekdays' => ['Minggu', 'Senen', 'Seloso', 'Rebu', 'Kemis', 'Jemuwah', 'Septu'], 'weekdays_short' => ['Min', 'Sen', 'Sel', 'Reb', 'Kem', 'Jem', 'Sep'], 'weekdays_min' => ['Mg', 'Sn', 'Sl', 'Rb', 'Km', 'Jm', 'Sp'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' lan '], ]; PK!ŗ8čR"carbon/src/Carbon/Lang/bs_Cyrl.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/bs.php', [ 'meridiem' => ['пре поГне', 'попоГне'], 'weekdays' => ['Š½ŠµŠ“Ń˜ŠµŃ™Š°', 'ŠæŠ¾Š½ŠµŠ“Ń˜ŠµŃ™Š°Šŗ', 'ŃƒŃ‚Š¾Ń€Š°Šŗ', 'ŃŃ€ŠøŃ˜ŠµŠ“Š°', 'четвртак', 'петак', 'ŃŃƒŠ±Š¾Ń‚Š°'], 'weekdays_short' => ['неГ', 'пон', 'ŃƒŃ‚Š¾', 'сри', 'чет', 'пет', 'суб'], 'weekdays_min' => ['неГ', 'пон', 'ŃƒŃ‚Š¾', 'сри', 'чет', 'пет', 'суб'], 'months' => ['Ń˜Š°Š½ŃƒŠ°Ń€', 'Ń„ŠµŠ±Ń€ŃƒŠ°Ń€', 'март', 'април', 'мај', 'јуни', 'јули', 'Š°ŃƒŠ³ŃƒŃŃ‚', 'септембар', 'октобар', 'новембар', 'Гецембар'], 'months_short' => ['јан', 'феб', 'мар', 'апр', 'мај', 'јун', 'јул', 'ауг', 'сеп', 'окт', 'нов', 'Гец'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D.M.YYYY.', 'LL' => 'DD.MM.YYYY.', 'LLL' => 'DD. MMMM YYYY. HH:mm', 'LLLL' => 'dddd, DD. MMMM YYYY. HH:mm', ], ]); PK!q~mq   carbon/src/Carbon/Lang/en_MO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!×Q²> carbon/src/Carbon/Lang/kl_GL.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Danish Standards Association bug-glibc-locales@gnu.org * - John Eyưstein Johannesen (mashema) */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D. MMMM YYYY', 'LLL' => 'D. MMMM YYYY HH:mm', 'LLLL' => 'dddd [d.] D. MMMM YYYY [kl.] HH:mm', ], 'months' => ['januaarip', 'februaarip', 'marsip', 'apriilip', 'maajip', 'juunip', 'juulip', 'aggustip', 'septembarip', 'oktobarip', 'novembarip', 'decembarip'], 'months_short' => ['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'], 'weekdays' => ['sapaat', 'ataasinngorneq', 'marlunngorneq', 'pingasunngorneq', 'sisamanngorneq', 'tallimanngorneq', 'arfininngorneq'], 'weekdays_short' => ['sap', 'ata', 'mar', 'pin', 'sis', 'tal', 'arf'], 'weekdays_min' => ['sap', 'ata', 'mar', 'pin', 'sis', 'tal', 'arf'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'year' => '{1}ukioq :count|{0}:count ukiut|]1,Inf[ukiut :count', 'a_year' => '{1}ukioq|{0}:count ukiut|]1,Inf[ukiut :count', 'y' => '{1}:countyr|{0}:countyrs|]1,Inf[:countyrs', 'month' => '{1}qaammat :count|{0}:count qaammatit|]1,Inf[qaammatit :count', 'a_month' => '{1}qaammat|{0}:count qaammatit|]1,Inf[qaammatit :count', 'm' => '{1}:countmo|{0}:countmos|]1,Inf[:countmos', 'week' => '{1}:count sap. ak.|{0}:count sap. ak.|]1,Inf[:count sap. ak.', 'a_week' => '{1}a sap. ak.|{0}:count sap. ak.|]1,Inf[:count sap. ak.', 'w' => ':countw', 'day' => '{1}:count ulloq|{0}:count ullut|]1,Inf[:count ullut', 'a_day' => '{1}a ulloq|{0}:count ullut|]1,Inf[:count ullut', 'd' => ':countd', 'hour' => '{1}:count tiimi|{0}:count tiimit|]1,Inf[:count tiimit', 'a_hour' => '{1}tiimi|{0}:count tiimit|]1,Inf[:count tiimit', 'h' => ':counth', 'minute' => '{1}:count minutsi|{0}:count minutsit|]1,Inf[:count minutsit', 'a_minute' => '{1}a minutsi|{0}:count minutsit|]1,Inf[:count minutsit', 'min' => ':countm', 'second' => '{1}:count sikunti|{0}:count sikuntit|]1,Inf[:count sikuntit', 'a_second' => '{1}sikunti|{0}:count sikuntit|]1,Inf[:count sikuntit', 's' => ':counts', 'ago' => ':time matuma siorna', ]); PK!qh}} carbon/src/Carbon/Lang/ur_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Red Hat, Pune bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/ur.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['Ų¬Ł†ŁˆŲ±ŪŒ', 'فروری', 'مارچ', 'Ų§Ł¾Ų±ŪŒŁ„', 'Ł…Ų¦ŪŒ', 'Ų¬ŁˆŁ†', 'Ų¬ŁˆŁ„Ų§Ų¦ŪŒ', 'Ų§ŚÆŲ³ŲŖ', 'Ų³ŲŖŁ…ŲØŲ±', 'اکتوبر', 'Ł†ŁˆŁ…ŲØŲ±', 'دسمبر'], 'months_short' => ['Ų¬Ł†ŁˆŲ±ŪŒ', 'فروری', 'مارچ', 'Ų§Ł¾Ų±ŪŒŁ„', 'Ł…Ų¦ŪŒ', 'Ų¬ŁˆŁ†', 'Ų¬ŁˆŁ„Ų§Ų¦ŪŒ', 'Ų§ŚÆŲ³ŲŖ', 'Ų³ŲŖŁ…ŲØŲ±', 'اکتوبر', 'Ł†ŁˆŁ…ŲØŲ±', 'دسمبر'], 'weekdays' => ['اتوار', 'پیر', 'منگل', 'بدھ', 'جمعرات', 'جمعہ', 'Ų³Ł†ŪŒŚ†Ų±'], 'weekdays_short' => ['اتوار', 'پیر', 'منگل', 'بدھ', 'جمعرات', 'جمعہ', 'Ų³Ł†ŪŒŚ†Ų±'], 'weekdays_min' => ['اتوار', 'پیر', 'منگل', 'بدھ', 'جمعرات', 'جمعہ', 'Ų³Ł†ŪŒŚ†Ų±'], 'day_of_first_week_of_year' => 1, ]); PK!Šfōc   carbon/src/Carbon/Lang/fr_PM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!“éBž carbon/src/Carbon/Lang/mg_MG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - The Debian Project modified by GNU//Linux Malagasy Rado Ramarotafika,Do-Risika RAFIEFERANTSIARONJY rado@linuxmg.org,dourix@free.fr */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], 'months' => ['Janoary', 'Febroary', 'Martsa', 'Aprily', 'Mey', 'Jona', 'Jolay', 'Aogositra', 'Septambra', 'Oktobra', 'Novambra', 'Desambra'], 'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'Mey', 'Jon', 'Jol', 'Aog', 'Sep', 'Okt', 'Nov', 'Des'], 'weekdays' => ['alahady', 'alatsinainy', 'talata', 'alarobia', 'alakamisy', 'zoma', 'sabotsy'], 'weekdays_short' => ['lhd', 'lts', 'tlt', 'lrb', 'lkm', 'zom', 'sab'], 'weekdays_min' => ['lhd', 'lts', 'tlt', 'lrb', 'lkm', 'zom', 'sab'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'minute' => ':count minitra', // less reliable 'min' => ':count minitra', // less reliable 'a_minute' => ':count minitra', // less reliable 'year' => ':count taona', 'y' => ':count taona', 'a_year' => ':count taona', 'month' => ':count volana', 'm' => ':count volana', 'a_month' => ':count volana', 'week' => ':count herinandro', 'w' => ':count herinandro', 'a_week' => ':count herinandro', 'day' => ':count andro', 'd' => ':count andro', 'a_day' => ':count andro', 'hour' => ':count ora', 'h' => ':count ora', 'a_hour' => ':count ora', 'second' => ':count segondra', 's' => ':count segondra', 'a_second' => ':count segondra', ]); PK!x^“FF carbon/src/Carbon/Lang/en_SX.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!“Čd   carbon/src/Carbon/Lang/lo_LA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/lo.php'; PK!dv|;   carbon/src/Carbon/Lang/de_LI.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/de.php'; PK!WöWW carbon/src/Carbon/Lang/ln_CD.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ubuntu RenĆ© ManassĆ© GALEKWA renemanasse@gmail.com */ return require __DIR__.'/ln.php'; PK!ˆĢ3   #carbon/src/Carbon/Lang/tzm_Latn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - JD Isaacks */ return [ 'year' => '{1}:count asgas|:count isgasn', 'a_year' => 'asgas|:count isgasn', 'month' => '{1}:count ayowr|:count iyyirn', 'a_month' => 'ayowr|:count iyyirn', 'week' => ':count imalass', 'a_week' => ':imalass', 'day' => '{1}:count ass|:count ossan', 'a_day' => 'ass|:count ossan', 'hour' => '{1}:count saɛa|:count tassaɛin', 'a_hour' => '{1}saɛa|:count tassaɛin', 'minute' => ':count minuįø', 'a_minute' => '{1}minuįø|:count minuįø', 'second' => ':count imik', 'a_second' => '{1}imik|:count imik', 'ago' => 'yan :time', 'from_now' => 'dadkh s yan :time', 'diff_yesterday' => 'assant', 'diff_yesterday_regexp' => 'assant(?:\\s+g)?', 'diff_today' => 'asdkh', 'diff_today_regexp' => 'asdkh(?:\\s+g)?', 'diff_tomorrow' => 'aska', 'diff_tomorrow_regexp' => 'aska(?:\\s+g)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[asdkh g] LT', 'nextDay' => '[aska g] LT', 'nextWeek' => 'dddd [g] LT', 'lastDay' => '[assant g] LT', 'lastWeek' => 'dddd [g] LT', 'sameElse' => 'L', ], 'months' => ['innayr', 'brˤayrˤ', 'marˤsˤ', 'ibrir', 'mayyw', 'ywnyw', 'ywlywz', 'É£wÅ”t', 'Å”wtanbir', 'ktˤwbrˤ', 'nwwanbir', 'dwjnbir'], 'months_short' => ['innayr', 'brˤayrˤ', 'marˤsˤ', 'ibrir', 'mayyw', 'ywnyw', 'ywlywz', 'É£wÅ”t', 'Å”wtanbir', 'ktˤwbrˤ', 'nwwanbir', 'dwjnbir'], 'weekdays' => ['asamas', 'aynas', 'asinas', 'akras', 'akwas', 'asimwas', 'asiįøyas'], 'weekdays_short' => ['asamas', 'aynas', 'asinas', 'akras', 'akwas', 'asimwas', 'asiįøyas'], 'weekdays_min' => ['asamas', 'aynas', 'asinas', 'akras', 'akwas', 'asimwas', 'asiįøyas'], 'meridiem' => ['Zdat azal', 'Ḍeffir aza'], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, ]; PK!x^“FF carbon/src/Carbon/Lang/en_FJ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!v”ÓCNN carbon/src/Carbon/Lang/om_KE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/om.php', [ 'day_of_first_week_of_year' => 0, ]); PK!m0ב‘ carbon/src/Carbon/Lang/kw_GB.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Alastair McKinstry bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['mis Genver', 'mis Hwevrer', 'mis Meurth', 'mis Ebrel', 'mis Me', 'mis Metheven', 'mis Gortheren', 'mis Est', 'mis Gwynngala', 'mis Hedra', 'mis Du', 'mis Kevardhu'], 'months_short' => ['Gen', 'Hwe', 'Meu', 'Ebr', 'Me', 'Met', 'Gor', 'Est', 'Gwn', 'Hed', 'Du', 'Kev'], 'weekdays' => ['De Sul', 'De Lun', 'De Merth', 'De Merher', 'De Yow', 'De Gwener', 'De Sadorn'], 'weekdays_short' => ['Sul', 'Lun', 'Mth', 'Mhr', 'Yow', 'Gwe', 'Sad'], 'weekdays_min' => ['Sul', 'Lun', 'Mth', 'Mhr', 'Yow', 'Gwe', 'Sad'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'year' => ':count bledhen', 'y' => ':count bledhen', 'a_year' => ':count bledhen', 'month' => ':count mis', 'm' => ':count mis', 'a_month' => ':count mis', 'week' => ':count seythen', 'w' => ':count seythen', 'a_week' => ':count seythen', 'day' => ':count dydh', 'd' => ':count dydh', 'a_day' => ':count dydh', 'hour' => ':count eur', 'h' => ':count eur', 'a_hour' => ':count eur', 'minute' => ':count mynysen', 'min' => ':count mynysen', 'a_minute' => ':count mynysen', 'second' => ':count pryjwyth', 's' => ':count pryjwyth', 'a_second' => ':count pryjwyth', ]); PK!"7«žööcarbon/src/Carbon/Lang/cgg.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'weekdays' => ['Sande', 'Orwokubanza', 'Orwakabiri', 'Orwakashatu', 'Orwakana', 'Orwakataano', 'Orwamukaaga'], 'weekdays_short' => ['SAN', 'ORK', 'OKB', 'OKS', 'OKN', 'OKT', 'OMK'], 'weekdays_min' => ['SAN', 'ORK', 'OKB', 'OKS', 'OKN', 'OKT', 'OMK'], 'months' => ['Okwokubanza', 'Okwakabiri', 'Okwakashatu', 'Okwakana', 'Okwakataana', 'Okwamukaaga', 'Okwamushanju', 'Okwamunaana', 'Okwamwenda', 'Okwaikumi', 'Okwaikumi na kumwe', 'Okwaikumi na ibiri'], 'months_short' => ['KBZ', 'KBR', 'KST', 'KKN', 'KTN', 'KMK', 'KMS', 'KMN', 'KMW', 'KKM', 'KNK', 'KNB'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'day' => ':count ruhanga', // less reliable 'd' => ':count ruhanga', // less reliable 'a_day' => ':count ruhanga', // less reliable ]); PK!ŁKŠnOOcarbon/src/Carbon/Lang/kok.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/kok_IN.php'; PK!įĮĪcarbon/src/Carbon/Lang/luo.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['OD', 'OT'], 'weekdays' => ['Jumapil', 'Wuok Tich', 'Tich Ariyo', 'Tich Adek', 'Tich Ang’wen', 'Tich Abich', 'Ngeso'], 'weekdays_short' => ['JMP', 'WUT', 'TAR', 'TAD', 'TAN', 'TAB', 'NGS'], 'weekdays_min' => ['JMP', 'WUT', 'TAR', 'TAD', 'TAN', 'TAB', 'NGS'], 'months' => ['Dwe mar Achiel', 'Dwe mar Ariyo', 'Dwe mar Adek', 'Dwe mar Ang’wen', 'Dwe mar Abich', 'Dwe mar Auchiel', 'Dwe mar Abiriyo', 'Dwe mar Aboro', 'Dwe mar Ochiko', 'Dwe mar Apar', 'Dwe mar gi achiel', 'Dwe mar Apar gi ariyo'], 'months_short' => ['DAC', 'DAR', 'DAD', 'DAN', 'DAH', 'DAU', 'DAO', 'DAB', 'DOC', 'DAP', 'DGI', 'DAG'], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'year' => 'higni :count', 'y' => 'higni :count', 'a_year' => ':higni :count', 'month' => 'dweche :count', 'm' => 'dweche :count', 'a_month' => 'dweche :count', 'week' => 'jumbe :count', 'w' => 'jumbe :count', 'a_week' => 'jumbe :count', 'day' => 'ndalo :count', 'd' => 'ndalo :count', 'a_day' => 'ndalo :count', 'hour' => 'seche :count', 'h' => 'seche :count', 'a_hour' => 'seche :count', 'minute' => 'dakika :count', 'min' => 'dakika :count', 'a_minute' => 'dakika :count', 'second' => 'nus dakika :count', 's' => 'nus dakika :count', 'a_second' => 'nus dakika :count', ]); PK!ČDh‚ÅÅ carbon/src/Carbon/Lang/en_HK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'day_of_first_week_of_year' => 1, ]); PK!ģpķĆĆ!carbon/src/Carbon/Lang/shn_MM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - ubuntu Myanmar LoCo Team http://www.ubuntu-mm.net Bone Pyae Sone bone.burma@mail.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'OY MMM OD dddd', ], 'months' => ['į€œį€­į€°į¼į€ŗįµį€™į€ŗ', 'į€œį€­į€°į¼į€ŗį€žį¢į€™į€ŗ', 'į€œį€­į€°į¼į€ŗį€žį€®', 'į€œį€­į€°į¼į€ŗį‚į‚ƒį‚ˆ', 'į€œį€­į€°į¼į€ŗį‚į€°įµį€ŗį€ø', 'į€œį€­į€°į¼į€ŗįøį€µį€į€ŗį€ø', 'į€œį€­į€°į¼į€ŗį€•į‚…į€į€ŗį‚‡', 'į€œį€­į€°į¼į€ŗįµį€į€ŗį‚ˆ', 'į€œį€­į€°į¼į€ŗį€žį€­į€•į€ŗį€ø', 'į€œį€­į€°į¼į€ŗį€žį€­į€•į€ŗį€øį€¢į€­į€į€ŗį€ø', 'į€œį€­į€°į¼į€ŗį€žį€­į€•į€ŗį€øį€¢į€­į€į€ŗį€øį€žį€½į€„į€ŗ', 'į€œį€­į€°į¼į€ŗįøį€µį€„į€ŗ'], 'months_short' => ['į€œį€­į€°į¼į€ŗįµį€™į€ŗ', 'į€œį€­į€°į¼į€ŗį€žį¢į€™į€ŗ', 'į€œį€­į€°į¼į€ŗį€žį€®', 'į€œį€­į€°į¼į€ŗį‚į‚ƒį‚ˆ', 'į€œį€­į€°į¼į€ŗį‚į€°įµį€ŗį€ø', 'į€œį€­į€°į¼į€ŗįøį€µį€į€ŗį€ø', 'į€œį€­į€°į¼į€ŗį€•į‚…į€į€ŗį‚‡', 'į€œį€­į€°į¼į€ŗįµį€į€ŗį‚ˆ', 'į€œį€­į€°į¼į€ŗį€žį€­į€•į€ŗį€ø', 'į€œį€­į€°į¼į€ŗį€žį€­į€•į€ŗį€øį€¢į€­į€į€ŗį€ø', 'į€œį€­į€°į¼į€ŗį€žį€­į€•į€ŗį€øį€¢į€­į€į€ŗį€øį€žį€½į€„į€ŗ', 'į€œį€­į€°į¼į€ŗįøį€µį€„į€ŗ'], 'weekdays' => ['į€į¼į€ŗį€øį€¢į‚ƒį€øį€į€­į€į€ŗį‚‰', 'į€į¼į€ŗį€øįøį¼į€ŗ', 'į€į¼į€ŗį€øā€‹į€¢į¢į€„į€ŗį€øā€‹įµį¢į¼į€ŗį€ø', 'į€į¼į€ŗį€øį€•į€°į€į€ŗį‚‰', 'į€į¼į€ŗį€øį½į€į€ŗį€ø', 'į€į¼į€ŗį€øį€žį€Æįµį€ŗį€ø', 'į€į¼į€ŗį€øį€žį€į€ŗ'], 'weekdays_short' => ['တိတ့်', 'ၸၼ်', 'ၵၢၼ်း', 'ပုတ့်', 'ၽတ်း', 'į€žį€Æįµį€ŗį€ø', 'į€žį€į€ŗ'], 'weekdays_min' => ['တိတ့်', 'ၸၼ်', 'ၵၢၼ်း', 'ပုတ့်', 'ၽတ်း', 'į€žį€Æįµį€ŗį€ø', 'į€žį€į€ŗ'], 'alt_numbers' => ['႐႐', '႐႑', '႐႒', '႐႓', '႐႔', '႐႕', '႐႖', '႐႗', 'į‚į‚˜', '႐႙', '႑႐', 'į‚‘į‚‘', 'į‚‘į‚’', 'į‚‘į‚“', 'į‚‘į‚”', 'į‚‘į‚•', 'į‚‘į‚–', 'į‚‘į‚—', 'į‚‘į‚˜', 'į‚‘į‚™', '႒႐', 'į‚’į‚‘', 'į‚’į‚’', 'į‚’į‚“', 'į‚’į‚”', 'į‚’į‚•', 'į‚’į‚–', 'į‚’į‚—', 'į‚’į‚˜', 'į‚’į‚™', '႓႐', 'į‚“į‚‘', 'į‚“į‚’', 'į‚“į‚“', 'į‚“į‚”', 'į‚“į‚•', 'į‚“į‚–', 'į‚“į‚—', 'į‚“į‚˜', 'į‚“į‚™', '႔႐', '႔႑', '႔႒', '႔႓', '႔႔', '႔႕', '႔႖', '႔႗', 'į‚”į‚˜', '႔႙', '႕႐', 'į‚•į‚‘', 'į‚•į‚’', 'į‚•į‚“', 'į‚•į‚”', 'į‚•į‚•', 'į‚•į‚–', 'į‚•į‚—', 'į‚•į‚˜', 'į‚•į‚™', '႖႐', 'į‚–į‚‘', 'į‚–į‚’', 'į‚–į‚“', 'į‚–į‚”', 'į‚–į‚•', 'į‚–į‚–', 'į‚–į‚—', 'į‚–į‚˜', 'į‚–į‚™', '႗႐', 'į‚—į‚‘', 'į‚—į‚’', 'į‚—į‚“', 'į‚—į‚”', 'į‚—į‚•', 'į‚—į‚–', 'į‚—į‚—', 'į‚—į‚˜', 'į‚—į‚™', 'į‚˜į‚', 'į‚˜į‚‘', 'į‚˜į‚’', 'į‚˜į‚“', 'į‚˜į‚”', 'į‚˜į‚•', 'į‚˜į‚–', 'į‚˜į‚—', 'į‚˜į‚˜', 'į‚˜į‚™', '႙႐', '႙႑', '႙႒', '႙႓', '႙႔', '႙႕', '႙႖', '႙႗', 'į‚™į‚˜', '႙႙'], 'meridiem' => ['ၵၢင်ၼႂ်', 'į€į¢į€™į€ŗį€øį¶į€™į€ŗį‚ˆ'], 'month' => ':count į€œį€­į€°į¼į€ŗ', // less reliable 'm' => ':count į€œį€­į€°į¼į€ŗ', // less reliable 'a_month' => ':count į€œį€­į€°į¼į€ŗ', // less reliable 'week' => ':count į€į¼į€ŗį€ø', // less reliable 'w' => ':count į€į¼į€ŗį€ø', // less reliable 'a_week' => ':count į€į¼į€ŗį€ø', // less reliable 'hour' => ':count ąŗ•ąŗµ', // less reliable 'h' => ':count ąŗ•ąŗµ', // less reliable 'a_hour' => ':count ąŗ•ąŗµ', // less reliable 'minute' => ':count ເດັກ', // less reliable 'min' => ':count ເດັກ', // less reliable 'a_minute' => ':count ເດັກ', // less reliable 'second' => ':count ဢိုၼ်ႇ', // less reliable 's' => ':count ဢိုၼ်ႇ', // less reliable 'a_second' => ':count ဢိုၼ်ႇ', // less reliable 'year' => ':count ပီ', 'y' => ':count ပီ', 'a_year' => ':count ပီ', 'day' => ':count ກາງວັນ', 'd' => ':count ກາງວັນ', 'a_day' => ':count ກາງວັນ', ]); PK!Šų8šš carbon/src/Carbon/Lang/ar_JO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/ar.php', [ 'formats' => [ 'L' => 'DD MMM, YYYY', ], 'months' => ['ŁƒŲ§Ł†ŁˆŁ† Ų§Ł„Ų«Ų§Ł†ŁŠ', 'Ų“ŲØŲ§Ų·', 'Ų¢Ų°Ų§Ų±', 'Ł†ŁŠŲ³Ų§Ł†', 'أيار', 'Ų­Ų²ŁŠŲ±Ų§Ł†', 'ŲŖŁ…ŁˆŲ²', 'Ų¢ŲØ', 'Ų£ŁŠŁ„ŁˆŁ„', 'ŲŖŲ“Ų±ŁŠŁ† Ų§Ł„Ų£ŁˆŁ„', 'ŲŖŲ“Ų±ŁŠŁ† Ų§Ł„Ų«Ų§Ł†ŁŠ', 'ŁƒŲ§Ł†ŁˆŁ† Ų§Ł„Ų£ŁˆŁ„'], 'months_short' => ['ŁƒŲ§Ł†ŁˆŁ† Ų§Ł„Ų«Ų§Ł†ŁŠ', 'Ų“ŲØŲ§Ų·', 'Ų¢Ų°Ų§Ų±', 'Ł†ŁŠŲ³Ų§Ł†', 'أيار', 'Ų­Ų²ŁŠŲ±Ų§Ł†', 'ŲŖŁ…ŁˆŲ²', 'Ų¢ŲØ', 'Ų£ŁŠŁ„ŁˆŁ„', 'ŲŖŲ“Ų±ŁŠŁ† Ų§Ł„Ų£ŁˆŁ„', 'ŲŖŲ“Ų±ŁŠŁ† Ų§Ł„Ų«Ų§Ł†ŁŠ', 'ŁƒŲ§Ł†ŁˆŁ† Ų§Ł„Ų£ŁˆŁ„'], 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'weekdays_min' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, ]); PK!a®zƒųų carbon/src/Carbon/Lang/hy_AM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - FranƧois B * - Tim Fish * - Serhan Apaydın * - JD Isaacks */ return array_replace_recursive(require __DIR__.'/hy.php', [ 'from_now' => ':time Õ°Õ„ÕæÕø', 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, ]); PK!Šfōc   carbon/src/Carbon/Lang/fr_GA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!x^“FF carbon/src/Carbon/Lang/en_TZ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!'Ą.__ carbon/src/Carbon/Lang/en_SD.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 6, 'weekend' => [5, 6], ]); PK!J|¼`ÆÆ carbon/src/Carbon/Lang/ar_KW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Authors: * - Josh Soref * - Nusret Parlak * - JD Isaacks * - Atef Ben Ali (atefBB) * - Mohamed Sabil (mohamedsabil83) */ $months = [ 'ŁŠŁ†Ų§ŁŠŲ±', 'فبراير', 'Ł…Ų§Ų±Ų³', 'Ų£ŲØŲ±ŁŠŁ„', 'Ł…Ų§ŁŠ', 'ŁŠŁˆŁ†ŁŠŁˆ', 'ŁŠŁˆŁ„ŁŠŁˆŲ²', 'ŲŗŲ“ŲŖ', 'ؓتنبر', 'أكتوبر', 'Ł†ŁˆŁ†ŲØŲ±', 'دجنبر', ]; return [ 'year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}Ų³Ł†ŲŖŁŠŁ†', ']2,11[:count Ų³Ł†ŁˆŲ§ŲŖ', ']10,Inf[:count سنة']), 'a_year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}Ų³Ł†ŲŖŁŠŁ†', ']2,11[:count Ų³Ł†ŁˆŲ§ŲŖ', ']10,Inf[:count سنة']), 'month' => implode('|', ['{0}:count ؓهر', '{1}ؓهر', '{2}Ų“Ł‡Ų±ŁŠŁ†', ']2,11[:count أؓهر', ']10,Inf[:count ؓهر']), 'a_month' => implode('|', ['{0}:count ؓهر', '{1}ؓهر', '{2}Ų“Ł‡Ų±ŁŠŁ†', ']2,11[:count أؓهر', ']10,Inf[:count ؓهر']), 'week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}Ų£Ų³ŲØŁˆŲ¹ŁŠŁ†', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']), 'a_week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}Ų£Ų³ŲØŁˆŲ¹ŁŠŁ†', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']), 'day' => implode('|', ['{0}:count ŁŠŁˆŁ…', '{1}ŁŠŁˆŁ…', '{2}ŁŠŁˆŁ…ŁŠŁ†', ']2,11[:count Ų£ŁŠŲ§Ł…', ']10,Inf[:count ŁŠŁˆŁ…']), 'a_day' => implode('|', ['{0}:count ŁŠŁˆŁ…', '{1}ŁŠŁˆŁ…', '{2}ŁŠŁˆŁ…ŁŠŁ†', ']2,11[:count Ų£ŁŠŲ§Ł…', ']10,Inf[:count ŁŠŁˆŁ…']), 'hour' => implode('|', ['{0}:count Ų³Ų§Ų¹Ų©', '{1}Ų³Ų§Ų¹Ų©', '{2}Ų³Ų§Ų¹ŲŖŁŠŁ†', ']2,11[:count Ų³Ų§Ų¹Ų§ŲŖ', ']10,Inf[:count Ų³Ų§Ų¹Ų©']), 'a_hour' => implode('|', ['{0}:count Ų³Ų§Ų¹Ų©', '{1}Ų³Ų§Ų¹Ų©', '{2}Ų³Ų§Ų¹ŲŖŁŠŁ†', ']2,11[:count Ų³Ų§Ų¹Ų§ŲŖ', ']10,Inf[:count Ų³Ų§Ų¹Ų©']), 'minute' => implode('|', ['{0}:count ŲÆŁ‚ŁŠŁ‚Ų©', '{1}ŲÆŁ‚ŁŠŁ‚Ų©', '{2}ŲÆŁ‚ŁŠŁ‚ŲŖŁŠŁ†', ']2,11[:count دقائق', ']10,Inf[:count ŲÆŁ‚ŁŠŁ‚Ų©']), 'a_minute' => implode('|', ['{0}:count ŲÆŁ‚ŁŠŁ‚Ų©', '{1}ŲÆŁ‚ŁŠŁ‚Ų©', '{2}ŲÆŁ‚ŁŠŁ‚ŲŖŁŠŁ†', ']2,11[:count دقائق', ']10,Inf[:count ŲÆŁ‚ŁŠŁ‚Ų©']), 'second' => implode('|', ['{0}:count Ų«Ų§Ł†ŁŠŲ©', '{1}Ų«Ų§Ł†ŁŠŲ©', '{2}Ų«Ų§Ł†ŁŠŲŖŁŠŁ†', ']2,11[:count Ų«ŁˆŲ§Ł†ŁŠ', ']10,Inf[:count Ų«Ų§Ł†ŁŠŲ©']), 'a_second' => implode('|', ['{0}:count Ų«Ų§Ł†ŁŠŲ©', '{1}Ų«Ų§Ł†ŁŠŲ©', '{2}Ų«Ų§Ł†ŁŠŲŖŁŠŁ†', ']2,11[:count Ų«ŁˆŲ§Ł†ŁŠ', ']10,Inf[:count Ų«Ų§Ł†ŁŠŲ©']), 'ago' => 'منذ :time', 'from_now' => 'في :time', 'after' => 'ŲØŲ¹ŲÆ :time', 'before' => 'قبل :time', 'diff_now' => 'الآن', 'diff_today' => 'Ų§Ł„ŁŠŁˆŁ…', 'diff_today_regexp' => 'Ų§Ł„ŁŠŁˆŁ…(?:\\s+على)?(?:\\s+الساعة)?', 'diff_yesterday' => 'أمس', 'diff_yesterday_regexp' => 'أمس(?:\\s+على)?(?:\\s+الساعة)?', 'diff_tomorrow' => 'ŲŗŲÆŲ§Ł‹', 'diff_tomorrow_regexp' => 'ŲŗŲÆŲ§(?:\\s+على)?(?:\\s+الساعة)?', 'diff_before_yesterday' => 'قبل الأمس', 'diff_after_tomorrow' => 'ŲØŲ¹ŲÆ ŲŗŲÆ', 'period_recurrences' => implode('|', ['{0}Ł…Ų±Ų©', '{1}Ł…Ų±Ų©', '{2}:count Ł…Ų±ŲŖŁŠŁ†', ']2,11[:count Ł…Ų±Ų§ŲŖ', ']10,Inf[:count Ł…Ų±Ų©']), 'period_interval' => 'ŁƒŁ„ :interval', 'period_start_date' => 'من :date', 'period_end_date' => '؄لى :date', 'months' => $months, 'months_short' => $months, 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų£Ų­ŲÆ', 'Ų§Ų«Ł†ŁŠŁ†', 'ثلاثاؔ', 'Ų£Ų±ŲØŲ¹Ų§Ų”', 'Ų®Ł…ŁŠŲ³', 'جمعة', 'Ų³ŲØŲŖ'], 'weekdays_min' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'list' => ['، ', ' و '], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Ų§Ł„ŁŠŁˆŁ… على الساعة] LT', 'nextDay' => '[ŲŗŲÆŲ§ على الساعة] LT', 'nextWeek' => 'dddd [على الساعة] LT', 'lastDay' => '[أمس على الساعة] LT', 'lastWeek' => 'dddd [على الساعة] LT', 'sameElse' => 'L', ], 'meridiem' => ['Ųµ', 'Ł…'], 'weekend' => [5, 6], ]; PK!—7Ž‚ carbon/src/Carbon/Lang/pt_MO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/pt.php', [ 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'LLL' => 'D [de] MMMM [de] YYYY, h:mm a', 'LLLL' => 'dddd, D [de] MMMM [de] YYYY, h:mm a', ], 'first_day_of_week' => 0, ]); PK!x^“FF carbon/src/Carbon/Lang/en_TK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!{kÄOOcarbon/src/Carbon/Lang/tpi.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/tpi_PG.php'; PK!љUFF carbon/src/Carbon/Lang/qu_EC.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/qu.php', [ 'first_day_of_week' => 1, ]); PK!Ųꑅw w carbon/src/Carbon/Lang/bs.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - bokideckonja * - Josh Soref * - FranƧois B * - shaishavgandhi05 * - Serhan Apaydın * - JD Isaacks */ return [ 'year' => ':count godina|:count godine|:count godina', 'y' => ':count godina|:count godine|:count godina', 'month' => ':count mjesec|:count mjeseca|:count mjeseci', 'm' => ':count mjesec|:count mjeseca|:count mjeseci', 'week' => ':count sedmice|:count sedmicu|:count sedmica', 'w' => ':count sedmice|:count sedmicu|:count sedmica', 'day' => ':count dan|:count dana|:count dana', 'd' => ':count dan|:count dana|:count dana', 'hour' => ':count sat|:count sata|:count sati', 'h' => ':count sat|:count sata|:count sati', 'minute' => ':count minut|:count minuta|:count minuta', 'min' => ':count minut|:count minuta|:count minuta', 'second' => ':count sekund|:count sekunda|:count sekundi', 's' => ':count sekund|:count sekunda|:count sekundi', 'ago' => 'prije :time', 'from_now' => 'za :time', 'after' => 'nakon :time', 'before' => ':time ranije', 'diff_now' => 'sada', 'diff_today' => 'danas', 'diff_today_regexp' => 'danas(?:\\s+u)?', 'diff_yesterday' => 'jučer', 'diff_yesterday_regexp' => 'jučer(?:\\s+u)?', 'diff_tomorrow' => 'sutra', 'diff_tomorrow_regexp' => 'sutra(?:\\s+u)?', 'formats' => [ 'LT' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D. MMMM YYYY', 'LLL' => 'D. MMMM YYYY H:mm', 'LLLL' => 'dddd, D. MMMM YYYY H:mm', ], 'calendar' => [ 'sameDay' => '[danas u] LT', 'nextDay' => '[sutra u] LT', 'nextWeek' => function (\Carbon\CarbonInterface $current) { switch ($current->dayOfWeek) { case 0: return '[u] [nedjelju] [u] LT'; case 3: return '[u] [srijedu] [u] LT'; case 6: return '[u] [subotu] [u] LT'; default: return '[u] dddd [u] LT'; } }, 'lastDay' => '[jučer u] LT', 'lastWeek' => function (\Carbon\CarbonInterface $current) { switch ($current->dayOfWeek) { case 0: case 3: return '[proÅ”lu] dddd [u] LT'; case 6: return '[proÅ”le] [subote] [u] LT'; default: return '[proÅ”li] dddd [u] LT'; } }, 'sameElse' => 'L', ], 'ordinal' => ':number.', 'months' => ['januar', 'februar', 'mart', 'april', 'maj', 'juni', 'juli', 'august', 'septembar', 'oktobar', 'novembar', 'decembar'], 'months_short' => ['jan.', 'feb.', 'mar.', 'apr.', 'maj.', 'jun.', 'jul.', 'aug.', 'sep.', 'okt.', 'nov.', 'dec.'], 'weekdays' => ['nedjelja', 'ponedjeljak', 'utorak', 'srijeda', 'četvrtak', 'petak', 'subota'], 'weekdays_short' => ['ned.', 'pon.', 'uto.', 'sri.', 'čet.', 'pet.', 'sub.'], 'weekdays_min' => ['ne', 'po', 'ut', 'sr', 'če', 'pe', 'su'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' i '], 'meridiem' => ['prijepodne', 'popodne'], ]; PK!‡ädŖ¦¦ carbon/src/Carbon/Lang/es_EC.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]); PK!ābĆ(( carbon/src/Carbon/Lang/ar_SO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ar.php', [ ]); PK!<š™ é é carbon/src/Carbon/Lang/vi.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - Andre Polykanine A.K.A. Menelion ElensĆŗlĆ« * - JD Isaacks */ return [ 'year' => ':count năm', 'a_year' => '{1}mį»™t năm|]1, Inf[:count năm', 'y' => ':count năm', 'month' => ':count thĆ”ng', 'a_month' => '{1}mį»™t thĆ”ng|]1, Inf[:count thĆ”ng', 'm' => ':count thĆ”ng', 'week' => ':count tuįŗ§n', 'a_week' => '{1}mį»™t tuįŗ§n|]1, Inf[:count tuįŗ§n', 'w' => ':count tuįŗ§n', 'day' => ':count ngĆ y', 'a_day' => '{1}mį»™t ngĆ y|]1, Inf[:count ngĆ y', 'd' => ':count ngĆ y', 'hour' => ':count giį»', 'a_hour' => '{1}mį»™t giį»|]1, Inf[:count giį»', 'h' => ':count giį»', 'minute' => ':count phĆŗt', 'a_minute' => '{1}mį»™t phĆŗt|]1, Inf[:count phĆŗt', 'min' => ':count phĆŗt', 'second' => ':count giĆ¢y', 'a_second' => '{1}vĆ i giĆ¢y|]1, Inf[:count giĆ¢y', 's' => ':count giĆ¢y', 'ago' => ':time trước', 'from_now' => ':time tį»›i', 'after' => ':time sau', 'before' => ':time trước', 'diff_now' => 'bĆ¢y giį»', 'diff_today' => 'HĆ“m', 'diff_today_regexp' => 'HĆ“m(?:\\s+nay)?(?:\\s+lĆŗc)?', 'diff_yesterday' => 'HĆ“m qua', 'diff_yesterday_regexp' => 'HĆ“m(?:\\s+qua)?(?:\\s+lĆŗc)?', 'diff_tomorrow' => 'NgĆ y mai', 'diff_tomorrow_regexp' => 'NgĆ y(?:\\s+mai)?(?:\\s+lĆŗc)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM [năm] YYYY', 'LLL' => 'D MMMM [năm] YYYY HH:mm', 'LLLL' => 'dddd, D MMMM [năm] YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[HĆ“m nay lĆŗc] LT', 'nextDay' => '[NgĆ y mai lĆŗc] LT', 'nextWeek' => 'dddd [tuįŗ§n tį»›i lĆŗc] LT', 'lastDay' => '[HĆ“m qua lĆŗc] LT', 'lastWeek' => 'dddd [tuįŗ§n trước lĆŗc] LT', 'sameElse' => 'L', ], 'meridiem' => ['SA', 'CH'], 'months' => ['thĆ”ng 1', 'thĆ”ng 2', 'thĆ”ng 3', 'thĆ”ng 4', 'thĆ”ng 5', 'thĆ”ng 6', 'thĆ”ng 7', 'thĆ”ng 8', 'thĆ”ng 9', 'thĆ”ng 10', 'thĆ”ng 11', 'thĆ”ng 12'], 'months_short' => ['Th01', 'Th02', 'Th03', 'Th04', 'Th05', 'Th06', 'Th07', 'Th08', 'Th09', 'Th10', 'Th11', 'Th12'], 'weekdays' => ['chį»§ nhįŗ­t', 'thứ hai', 'thứ ba', 'thứ tʰ', 'thứ năm', 'thứ sĆ”u', 'thứ bįŗ£y'], 'weekdays_short' => ['CN', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7'], 'weekdays_min' => ['CN', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' vĆ  '], ]; PK!Ź „õ õ carbon/src/Carbon/Lang/ss.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - Nicolai Davies */ return [ 'year' => '{1}umnyaka|:count iminyaka', 'month' => '{1}inyanga|:count tinyanga', 'week' => '{1}:count liviki|:count emaviki', 'day' => '{1}lilanga|:count emalanga', 'hour' => '{1}lihora|:count emahora', 'minute' => '{1}umzuzu|:count emizuzu', 'second' => '{1}emizuzwana lomcane|:count mzuzwana', 'ago' => 'wenteka nga :time', 'from_now' => 'nga :time', 'diff_yesterday' => 'Itolo', 'diff_yesterday_regexp' => 'Itolo(?:\\s+nga)?', 'diff_today' => 'Namuhla', 'diff_today_regexp' => 'Namuhla(?:\\s+nga)?', 'diff_tomorrow' => 'Kusasa', 'diff_tomorrow_regexp' => 'Kusasa(?:\\s+nga)?', 'formats' => [ 'LT' => 'h:mm A', 'LTS' => 'h:mm:ss A', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY h:mm A', 'LLLL' => 'dddd, D MMMM YYYY h:mm A', ], 'calendar' => [ 'sameDay' => '[Namuhla nga] LT', 'nextDay' => '[Kusasa nga] LT', 'nextWeek' => 'dddd [nga] LT', 'lastDay' => '[Itolo nga] LT', 'lastWeek' => 'dddd [leliphelile] [nga] LT', 'sameElse' => 'L', ], 'ordinal' => function ($number) { $lastDigit = $number % 10; return $number.( (~~($number % 100 / 10) === 1) ? 'e' : ( ($lastDigit === 1 || $lastDigit === 2) ? 'a' : 'e' ) ); }, 'meridiem' => function ($hour) { if ($hour < 11) { return 'ekuseni'; } if ($hour < 15) { return 'emini'; } if ($hour < 19) { return 'entsambama'; } return 'ebusuku'; }, 'months' => ['Bhimbidvwane', 'Indlovana', 'Indlov\'lenkhulu', 'Mabasa', 'Inkhwekhweti', 'Inhlaba', 'Kholwane', 'Ingci', 'Inyoni', 'Imphala', 'Lweti', 'Ingongoni'], 'months_short' => ['Bhi', 'Ina', 'Inu', 'Mab', 'Ink', 'Inh', 'Kho', 'Igc', 'Iny', 'Imp', 'Lwe', 'Igo'], 'weekdays' => ['Lisontfo', 'Umsombuluko', 'Lesibili', 'Lesitsatfu', 'Lesine', 'Lesihlanu', 'Umgcibelo'], 'weekdays_short' => ['Lis', 'Umb', 'Lsb', 'Les', 'Lsi', 'Lsh', 'Umg'], 'weekdays_min' => ['Li', 'Us', 'Lb', 'Lt', 'Ls', 'Lh', 'Ug'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, ]; PK!љUFF carbon/src/Carbon/Lang/qu_BO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/qu.php', [ 'first_day_of_week' => 1, ]); PK!³]öŌ carbon/src/Carbon/Lang/fr_LU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/fr.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], 'months_short' => ['jan', 'fĆ©v', 'mar', 'avr', 'mai', 'jun', 'jui', 'aoĆ»', 'sep', 'oct', 'nov', 'dĆ©c'], ]); PK!-Ā‹ąącarbon/src/Carbon/Lang/cs.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Philippe Vaucher * - Jakub Tesinsky * - Martin Suja * - Nikos Timiopulos * - Bohuslav BlĆ­n * - Tsutomu Kuroda * - tjku * - Lukas Svoboda * - Max Melentiev * - Juanito Fatas * - Akira Matsuda * - Christopher Dell * - VĆ”clav PĆ”vek * - CodeSkills * - Tlapi * - newman101 * - Petr Kadlec * - tommaskraus * - Karel Sommer (calvera) */ $za = function ($time) { return 'za '.strtr($time, [ 'hodina' => 'hodinu', 'minuta' => 'minutu', 'sekunda' => 'sekundu', ]); }; $pred = function ($time) { $time = strtr($time, [ 'hodina' => 'hodinou', 'minuta' => 'minutou', 'sekunda' => 'sekundou', ]); $time = preg_replace('/hodiny?(?!\w)/', 'hodinami', $time); $time = preg_replace('/minuty?(?!\w)/', 'minutami', $time); $time = preg_replace('/sekundy?(?!\w)/', 'sekundami', $time); return "před $time"; }; return [ 'year' => ':count rok|:count roky|:count let', 'y' => ':count rok|:count roky|:count let', 'a_year' => 'rok|:count roky|:count let', 'month' => ':count měsĆ­c|:count měsĆ­ce|:count měsĆ­cÅÆ', 'm' => ':count měs.', 'a_month' => 'měsĆ­c|:count měsĆ­ce|:count měsĆ­cÅÆ', 'week' => ':count týden|:count týdny|:count týdnÅÆ', 'w' => ':count týd.', 'a_week' => 'týden|:count týdny|:count týdnÅÆ', 'day' => ':count den|:count dny|:count dnĆ­', 'd' => ':count den|:count dny|:count dnĆ­', 'a_day' => 'den|:count dny|:count dnĆ­', 'hour' => ':count hodina|:count hodiny|:count hodin', 'h' => ':count hod.', 'a_hour' => 'hodina|:count hodiny|:count hodin', 'minute' => ':count minuta|:count minuty|:count minut', 'min' => ':count min.', 'a_minute' => 'minuta|:count minuty|:count minut', 'second' => ':count sekunda|:count sekundy|:count sekund', 's' => ':count sek.', 'a_second' => 'pĆ”r sekund|:count sekundy|:count sekund', 'month_ago' => ':count měsĆ­cem|:count měsĆ­ci|:count měsĆ­ci', 'a_month_ago' => 'měsĆ­cem|:count měsĆ­ci|:count měsĆ­ci', 'day_ago' => ':count dnem|:count dny|:count dny', 'a_day_ago' => 'dnem|:count dny|:count dny', 'week_ago' => ':count týdnem|:count týdny|:count týdny', 'a_week_ago' => 'týdnem|:count týdny|:count týdny', 'year_ago' => ':count rokem|:count roky|:count lety', 'y_ago' => ':count rok.|:count rok.|:count let.', 'a_year_ago' => 'rokem|:count roky|:count lety', 'month_before' => ':count měsĆ­cem|:count měsĆ­ci|:count měsĆ­ci', 'a_month_before' => 'měsĆ­cem|:count měsĆ­ci|:count měsĆ­ci', 'day_before' => ':count dnem|:count dny|:count dny', 'a_day_before' => 'dnem|:count dny|:count dny', 'week_before' => ':count týdnem|:count týdny|:count týdny', 'a_week_before' => 'týdnem|:count týdny|:count týdny', 'year_before' => ':count rokem|:count roky|:count lety', 'y_before' => ':count rok.|:count rok.|:count let.', 'a_year_before' => 'rokem|:count roky|:count lety', 'ago' => $pred, 'from_now' => $za, 'before' => $pred, 'after' => $za, 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'months' => ['leden', 'Ćŗnor', 'březen', 'duben', 'květen', 'červen', 'červenec', 'srpen', 'zÔří', 'říjen', 'listopad', 'prosinec'], 'months_short' => ['led', 'Ćŗno', 'bře', 'dub', 'kvě', 'čvn', 'čvc', 'srp', 'zÔř', 'říj', 'lis', 'pro'], 'weekdays' => ['neděle', 'pondělĆ­', 'Ćŗterý', 'středa', 'čtvrtek', 'pĆ”tek', 'sobota'], 'weekdays_short' => ['ned', 'pon', 'Ćŗte', 'stř', 'čtv', 'pĆ”t', 'sob'], 'weekdays_min' => ['ne', 'po', 'Ćŗt', 'st', 'čt', 'pĆ”', 'so'], 'list' => [', ', ' a '], 'diff_now' => 'nynĆ­', 'diff_yesterday' => 'včera', 'diff_tomorrow' => 'zĆ­tra', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD. MM. YYYY', 'LL' => 'D. MMMM YYYY', 'LLL' => 'D. MMMM YYYY HH:mm', 'LLLL' => 'dddd D. MMMM YYYY HH:mm', ], 'meridiem' => ['dopoledne', 'odpoledne'], ]; PK!”^dL carbon/src/Carbon/Lang/zh_MO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - tarunvelli * - Eddie * - KID * - shankesgk2 */ return array_replace_recursive(require __DIR__.'/zh_Hant.php', [ 'after' => ':time后', ]); PK!k_Ų¾4 4 carbon/src/Carbon/Lang/mi.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - John Corrigan * - FranƧois B */ return [ 'year' => ':count tau', 'a_year' => '{1}he tau|:count tau', 'month' => ':count marama', 'a_month' => '{1}he marama|:count marama', 'week' => ':count wiki', 'a_week' => '{1}he wiki|:count wiki', 'day' => ':count ra', 'a_day' => '{1}he ra|:count ra', 'hour' => ':count haora', 'a_hour' => '{1}te haora|:count haora', 'minute' => ':count meneti', 'a_minute' => '{1}he meneti|:count meneti', 'second' => ':count hēkona', 'a_second' => '{1}te hēkona ruarua|:count hēkona', 'ago' => ':time i mua', 'from_now' => 'i roto i :time', 'diff_yesterday' => 'inanahi', 'diff_yesterday_regexp' => 'inanahi(?:\\s+i)?', 'diff_today' => 'i teie', 'diff_today_regexp' => 'i teie(?:\\s+mahana,)?(?:\\s+i)?', 'diff_tomorrow' => 'apopo', 'diff_tomorrow_regexp' => 'apopo(?:\\s+i)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY [i] HH:mm', 'LLLL' => 'dddd, D MMMM YYYY [i] HH:mm', ], 'calendar' => [ 'sameDay' => '[i teie mahana, i] LT', 'nextDay' => '[apopo i] LT', 'nextWeek' => 'dddd [i] LT', 'lastDay' => '[inanahi i] LT', 'lastWeek' => 'dddd [whakamutunga i] LT', 'sameElse' => 'L', ], 'ordinal' => ':numberĀŗ', 'months' => ['Kohi-tāte', 'Hui-tanguru', 'PoutÅ«-te-rangi', 'Paenga-whāwhā', 'Haratua', 'Pipiri', 'Hōngoingoi', 'Here-turi-kōkā', 'Mahuru', 'Whiringa-ā-nuku', 'Whiringa-ā-rangi', 'Hakihea'], 'months_short' => ['Kohi', 'Hui', 'Pou', 'Pae', 'Hara', 'Pipi', 'Hōngoi', 'Here', 'Mahu', 'Whi-nu', 'Whi-ra', 'Haki'], 'weekdays' => ['Rātapu', 'Mane', 'TÅ«rei', 'Wenerei', 'Tāite', 'Paraire', 'Hātarei'], 'weekdays_short' => ['Ta', 'Ma', 'TÅ«', 'We', 'Tāi', 'Pa', 'Hā'], 'weekdays_min' => ['Ta', 'Ma', 'TÅ«', 'We', 'Tāi', 'Pa', 'Hā'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' me te '], ]; PK!tĶ&  #carbon/src/Carbon/Lang/shi_Tfng.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/shi.php'; PK!ČDh‚ÅÅ carbon/src/Carbon/Lang/en_PH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'day_of_first_week_of_year' => 1, ]); PK! —ŒĖ==carbon/src/Carbon/Lang/mk.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Sashko Todorov * - Josh Soref * - FranƧois B * - Serhan Apaydın * - Borislav Mickov * - JD Isaacks * - Tomi Atanasoski */ return [ 'year' => ':count гоГина|:count гоГини', 'a_year' => 'гоГина|:count гоГини', 'y' => ':count гоГ.', 'month' => ':count месец|:count месеци', 'a_month' => 'месец|:count месеци', 'm' => ':count месец|:count месеци', 'week' => ':count сеГмица|:count сеГмици', 'a_week' => 'сеГмица|:count сеГмици', 'w' => ':count сеГмица|:count сеГмици', 'day' => ':count Ген|:count Гена', 'a_day' => 'Ген|:count Гена', 'd' => ':count Ген|:count Гена', 'hour' => ':count час|:count часа', 'a_hour' => 'час|:count часа', 'h' => ':count час|:count часа', 'minute' => ':count Š¼ŠøŠ½ŃƒŃ‚Š°|:count Š¼ŠøŠ½ŃƒŃ‚Šø', 'a_minute' => 'Š¼ŠøŠ½ŃƒŃ‚Š°|:count Š¼ŠøŠ½ŃƒŃ‚Šø', 'min' => ':count мин.', 'second' => ':count секунГа|:count секунГи', 'a_second' => 'неколку секунГи|:count секунГи', 's' => ':count сек.', 'ago' => 'преГ :time', 'from_now' => 'после :time', 'after' => 'по :time', 'before' => 'преГ :time', 'diff_now' => 'сега', 'diff_today' => 'Денес', 'diff_today_regexp' => 'Денес(?:\\s+во)?', 'diff_yesterday' => 'вчера', 'diff_yesterday_regexp' => 'Вчера(?:\\s+во)?', 'diff_tomorrow' => 'ŃƒŃ‚Ń€Šµ', 'diff_tomorrow_regexp' => 'Утре(?:\\s+во)?', 'formats' => [ 'LT' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'D.MM.YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY H:mm', 'LLLL' => 'dddd, D MMMM YYYY H:mm', ], 'calendar' => [ 'sameDay' => '[Денес во] LT', 'nextDay' => '[Утре во] LT', 'nextWeek' => '[Во] dddd [во] LT', 'lastDay' => '[Вчера во] LT', 'lastWeek' => function (\Carbon\CarbonInterface $date) { switch ($date->dayOfWeek) { case 0: case 3: case 6: return '[Š˜Š·Š¼ŠøŠ½Š°Ń‚Š°Ń‚Š°] dddd [во] LT'; default: return '[Š˜Š·Š¼ŠøŠ½Š°Ń‚ŠøŠ¾Ń‚] dddd [во] LT'; } }, 'sameElse' => 'L', ], 'ordinal' => function ($number) { $lastDigit = $number % 10; $last2Digits = $number % 100; if ($number === 0) { return $number.'-ев'; } if ($last2Digits === 0) { return $number.'-ен'; } if ($last2Digits > 10 && $last2Digits < 20) { return $number.'-ти'; } if ($lastDigit === 1) { return $number.'-ви'; } if ($lastDigit === 2) { return $number.'-ри'; } if ($lastDigit === 7 || $lastDigit === 8) { return $number.'-ми'; } return $number.'-ти'; }, 'months' => ['Ń˜Š°Š½ŃƒŠ°Ń€Šø', 'Ń„ŠµŠ²Ń€ŃƒŠ°Ń€Šø', 'март', 'април', 'мај', 'јуни', 'јули', 'Š°Š²Š³ŃƒŃŃ‚', 'септември', 'октомври', 'ноември', 'Гекември'], 'months_short' => ['јан', 'фев', 'мар', 'апр', 'мај', 'јун', 'јул', 'авг', 'сеп', 'окт', 'ное', 'Гек'], 'weekdays' => ['неГела', 'понеГелник', 'вторник', 'среГа', 'четврток', 'петок', 'сабота'], 'weekdays_short' => ['неГ', 'пон', 'вто', 'сре', 'чет', 'пет', 'саб'], 'weekdays_min' => ['нe', 'Šæo', 'вт', 'ср', 'че', 'пе', 'сa'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' Šø '], 'meridiem' => ['АМ', 'ПМ'], ]; PK! + ļ  !carbon/src/Carbon/Lang/ast_ES.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ast.php'; PK!‰7,!carbon/src/Carbon/Lang/brx_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Red Hat Pune bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'M/D/YY', ], 'months' => ['ą¤œą¤¾ą¤Øą„ą¤µą¤¾ą¤°ą„€', 'ą¤«ą„‡ą¤¬ą„ą¤°ą„ą¤µą¤¾ą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤ø', 'ą¤ą¤«ą„ą¤°ą¤æą¤²', 'ą¤®ą„‡', 'ą¤œą„ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤‡', 'ą¤†ą¤—ą¤øą„ą¤„', 'ą¤øą„‡ą¤¬ą¤„ą„‡ą¤œą„ą¤¬ą¤¼ą¤°', 'अखऄबर', 'ą¤Øą¤¬ą„‡ą¤œą„ą¤¬ą¤¼ą¤°', 'ą¤¦ą¤æą¤øą„‡ą¤œą„ą¤¬ą¤¼ą¤°'], 'months_short' => ['ą¤œą¤¾ą¤Øą„ą¤µą¤¾ą¤°ą„€', 'ą¤«ą„‡ą¤¬ą„ą¤°ą„ą¤µą¤¾ą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤ø', 'ą¤ą¤Ŗą„ą¤°ą¤æą¤²', 'ą¤®ą„‡', 'ą¤œą„ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤‡', 'ą¤†ą¤—ą¤øą„ą¤„', 'ą¤øą„‡ą¤¬ą¤„ą„‡ą¤œą„ą¤¬ą¤¼ą¤°', 'अखऄबर', 'ą¤Øą¤¬ą„‡ą¤œą„ą¤¬ą¤¼ą¤°', 'ą¤¦ą¤æą¤øą„‡ą¤œą„ą¤¬ą¤¼ą¤°'], 'weekdays' => ['रबिबार', 'ą¤øą„‹ą¤¬ą¤¾ą¤°', 'मंगलबार', 'ą¤¬ą„ą¤¦ą¤¬ą¤¾ą¤°', 'बिसऄिबार', 'ą¤øą„ą¤–ą„ą¤°ą¤¬ą¤¾ą¤°', 'ą¤øą„ą¤Øą¤æą¤¬ą¤¾ą¤°'], 'weekdays_short' => ['रबि', 'सम', 'मंगल', 'ą¤¬ą„ą¤¦', 'बिसऄि', 'ą¤øą„ą¤–ą„ą¤°', 'ą¤øą„ą¤Øą¤æ'], 'weekdays_min' => ['रबि', 'सम', 'मंगल', 'ą¤¬ą„ą¤¦', 'बिसऄि', 'ą¤øą„ą¤–ą„ą¤°', 'ą¤øą„ą¤Øą¤æ'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['ą¤«ą„ą¤‚.', 'ą¤¬ą„‡ą¤²ą¤¾ą¤øą„‡.'], ]); PK!*BJ„   carbon/src/Carbon/Lang/fo_FO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fo.php'; PK!Ä·7q(( carbon/src/Carbon/Lang/ca_AD.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ca.php', [ ]); PK!Hā§ÓDD carbon/src/Carbon/Lang/it_IT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return require __DIR__.'/it.php'; PK!† "z   carbon/src/Carbon/Lang/it_SM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/it.php'; PK!Ńå­' ' carbon/src/Carbon/Lang/gu.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - Kaushik Thanki * - Josh Soref */ return [ 'year' => 'ąŖąŖ• ąŖµąŖ°ą«ąŖ·|:count ąŖµąŖ°ą«ąŖ·', 'y' => ':countąŖµąŖ°ą«ąŖ·|:countąŖµąŖ°ą«ąŖ·ą«‹', 'month' => 'ąŖąŖ• મહિનો|:count મહિનો', 'm' => ':countમહિનો|:countમહિના', 'week' => ':count અઠવાઔિયું|:count અઠવાઔિયા', 'w' => ':countąŖ…ąŖ .|:countąŖ…ąŖ .', 'day' => 'ąŖąŖ• દિવસ|:count દિવસ', 'd' => ':countદિ.|:countદિ.', 'hour' => 'ąŖąŖ• કલાક|:count કલાક', 'h' => ':countąŖ•.|:countąŖ•.', 'minute' => 'ąŖąŖ• મિનિટ|:count મિનિટ', 'min' => ':countમિ.|:countમિ.', 'second' => 'અમુક પળો|:count સેકંઔ', 's' => ':countસે.|:countસે.', 'ago' => ':time પેહલા', 'from_now' => ':time મા', 'after' => ':time પછી', 'before' => ':time પહેલા', 'diff_now' => 'હમણાં', 'diff_today' => 'ąŖ†ąŖœ', 'diff_yesterday' => 'ગઇકાલે', 'diff_tomorrow' => 'કાલે', 'formats' => [ 'LT' => 'A h:mm ąŖµąŖ¾ąŖ—ą«ąŖÆą«‡', 'LTS' => 'A h:mm:ss ąŖµąŖ¾ąŖ—ą«ąŖÆą«‡', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY, A h:mm ąŖµąŖ¾ąŖ—ą«ąŖÆą«‡', 'LLLL' => 'dddd, D MMMM YYYY, A h:mm ąŖµąŖ¾ąŖ—ą«ąŖÆą«‡', ], 'calendar' => [ 'sameDay' => '[ąŖ†ąŖœ] LT', 'nextDay' => '[કાલે] LT', 'nextWeek' => 'dddd, LT', 'lastDay' => '[ગઇકાલે] LT', 'lastWeek' => '[પાછલા] dddd, LT', 'sameElse' => 'L', ], 'meridiem' => function ($hour) { if ($hour < 4) { return 'રાત'; } if ($hour < 10) { return 'સવાર'; } if ($hour < 17) { return 'બપોર'; } if ($hour < 20) { return 'ąŖøąŖ¾ąŖ‚ąŖœ'; } return 'રાત'; }, 'months' => ['ąŖœąŖ¾ąŖØą«ąŖÆą«ąŖ†ąŖ°ą«€', 'ąŖ«ą«‡ąŖ¬ą«ąŖ°ą«ąŖ†ąŖ°ą«€', 'ąŖ®ąŖ¾ąŖ°ą«ąŖš', 'ąŖąŖŖą«ąŖ°ąŖæąŖ²', 'મે', 'ąŖœą«‚ąŖØ', 'જુલાઈ', 'ąŖ‘ąŖ—ąŖøą«ąŖŸ', 'ąŖøąŖŖą«ąŖŸą«‡ąŖ®ą«ąŖ¬ąŖ°', 'ąŖ‘ąŖ•ą«ąŖŸą«ąŖ¬ąŖ°', 'ąŖØąŖµą«‡ąŖ®ą«ąŖ¬ąŖ°', 'ąŖ”ąŖæąŖøą«‡ąŖ®ą«ąŖ¬ąŖ°'], 'months_short' => ['ąŖœąŖ¾ąŖØą«ąŖÆą«.', 'ąŖ«ą«‡ąŖ¬ą«ąŖ°ą«.', 'ąŖ®ąŖ¾ąŖ°ą«ąŖš', 'ąŖąŖŖą«ąŖ°ąŖæ.', 'મે', 'ąŖœą«‚ąŖØ', 'જુલા.', 'ąŖ‘ąŖ—.', 'ąŖøąŖŖą«ąŖŸą«‡.', 'ąŖ‘ąŖ•ą«ąŖŸą«.', 'નવે.', 'ઔિસે.'], 'weekdays' => ['રવિવાર', 'સોમવાર', 'મંગળવાર', 'ąŖ¬ą«ąŖ§ą«ąŖµąŖ¾ąŖ°', 'ગુરુવાર', 'ąŖ¶ą«ąŖ•ą«ąŖ°ąŖµąŖ¾ąŖ°', 'શનિવાર'], 'weekdays_short' => ['રવિ', 'ąŖøą«‹ąŖ®', 'મંગળ', 'ąŖ¬ą«ąŖ§ą«', 'ગુરુ', 'ąŖ¶ą«ąŖ•ą«ąŖ°', 'ąŖ¶ąŖØąŖæ'], 'weekdays_min' => ['ąŖ°', 'ąŖøą«‹', 'મં', 'બુ', 'ગુ', 'શુ', 'ąŖ¶'], 'list' => [', ', ' અને '], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, 'weekend' => [0, 0], ]; PK!‚vƕ¦¦ carbon/src/Carbon/Lang/el_GR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/el.php', [ 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, ]); PK!㼦t..carbon/src/Carbon/Lang/lt.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Philippe Vaucher * - Tsutomu Kuroda * - tjku * - valdas406 * - Justas Palumickas * - Max Melentiev * - Andrius Janauskas * - Juanito Fatas * - Akira Matsuda * - Christopher Dell * - Enrique Vidal * - Simone Carletti * - Aaron Patterson * - NicolĆ”s Hock Isaza * - Laurynas Butkus * - Sven Fuchs * - Dominykas TijÅ«naitis * - Justinas Bolys * - Ričardas * - Kirill Chalkin * - Rolandas * - Justinas (Gamesh) */ return [ 'year' => ':count metai|:count metai|:count metų', 'y' => ':count m.', 'month' => ':count mėnuo|:count mėnesiai|:count mėnesÄÆ', 'm' => ':count mėn.', 'week' => ':count savaitė|:count savaitės|:count savaitę', 'w' => ':count sav.', 'day' => ':count diena|:count dienos|:count dienų', 'd' => ':count d.', 'hour' => ':count valanda|:count valandos|:count valandų', 'h' => ':count val.', 'minute' => ':count minutė|:count minutės|:count minutę', 'min' => ':count min.', 'second' => ':count sekundė|:count sekundės|:count sekundžių', 's' => ':count sek.', 'year_ago' => ':count metus|:count metus|:count metų', 'month_ago' => ':count mėnesÄÆ|:count mėnesius|:count mėnesių', 'week_ago' => ':count savaitę|:count savaites|:count savaičių', 'day_ago' => ':count dieną|:count dienas|:count dienų', 'hour_ago' => ':count valandą|:count valandas|:count valandų', 'minute_ago' => ':count minutę|:count minutes|:count minučių', 'second_ago' => ':count sekundę|:count sekundes|:count sekundžių', 'year_from_now' => ':count metų', 'month_from_now' => ':count mėnesio|:count mėnesių|:count mėnesių', 'week_from_now' => ':count savaitės|:count savaičių|:count savaičių', 'day_from_now' => ':count dienos|:count dienų|:count dienų', 'hour_from_now' => ':count valandos|:count valandų|:count valandų', 'minute_from_now' => ':count minutės|:count minučių|:count minučių', 'second_from_now' => ':count sekundės|:count sekundžių|:count sekundžių', 'year_after' => ':count metų', 'month_after' => ':count mėnesio|:count mėnesių|:count mėnesių', 'week_after' => ':count savaitės|:count savaičių|:count savaičių', 'day_after' => ':count dienos|:count dienų|:count dienų', 'hour_after' => ':count valandos|:count valandų|:count valandų', 'minute_after' => ':count minutės|:count minučių|:count minučių', 'second_after' => ':count sekundės|:count sekundžių|:count sekundžių', 'ago' => 'prieÅ” :time', 'from_now' => ':time nuo dabar', 'after' => 'po :time', 'before' => 'už :time', 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'diff_now' => 'ką tik', 'diff_today' => 'Å iandien', 'diff_yesterday' => 'vakar', 'diff_yesterday_regexp' => 'Vakar', 'diff_tomorrow' => 'rytoj', 'diff_tomorrow_regexp' => 'Rytoj', 'diff_before_yesterday' => 'užvakar', 'diff_after_tomorrow' => 'poryt', 'period_recurrences' => 'kartą|:count kartų', 'period_interval' => 'kiekvieną :interval', 'period_start_date' => 'nuo :date', 'period_end_date' => 'iki :date', 'months' => ['sausio', 'vasario', 'kovo', 'balandžio', 'gegužės', 'birželio', 'liepos', 'rugpjūčio', 'rugsėjo', 'spalio', 'lapkričio', 'gruodžio'], 'months_standalone' => ['sausis', 'vasaris', 'kovas', 'balandis', 'gegužė', 'birželis', 'liepa', 'rugpjÅ«tis', 'rugsėjis', 'spalis', 'lapkritis', 'gruodis'], 'months_regexp' => '/(L{2,4}|D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?)/', 'months_short' => ['sau', 'vas', 'kov', 'bal', 'geg', 'bir', 'lie', 'rgp', 'rgs', 'spa', 'lap', 'gru'], 'weekdays' => ['sekmadienÄÆ', 'pirmadienÄÆ', 'antradienÄÆ', 'trečiadienÄÆ', 'ketvirtadienÄÆ', 'penktadienÄÆ', 'Å”eÅ”tadienÄÆ'], 'weekdays_standalone' => ['sekmadienis', 'pirmadienis', 'antradienis', 'trečiadienis', 'ketvirtadienis', 'penktadienis', 'Å”eÅ”tadienis'], 'weekdays_short' => ['sek', 'pir', 'ant', 'tre', 'ket', 'pen', 'Å”eÅ”'], 'weekdays_min' => ['se', 'pi', 'an', 'tr', 'ke', 'pe', 'Å”e'], 'list' => [', ', ' ir '], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY-MM-DD', 'LL' => 'MMMM DD, YYYY', 'LLL' => 'DD MMM HH:mm', 'LLLL' => 'MMMM DD, YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Å iandien] LT', 'nextDay' => '[Rytoj] LT', 'nextWeek' => 'dddd LT', 'lastDay' => '[Vakar] LT', 'lastWeek' => '[PaskutinÄÆ] dddd LT', 'sameElse' => 'L', ], 'ordinal' => function ($number) { switch ($number) { case 0: return '0-is'; case 3: return '3-ias'; default: return "$number-as"; } }, 'meridiem' => ['prieÅ”piet', 'popiet'], ]; PK!j–dʦ¦ carbon/src/Carbon/Lang/ar_SA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Authors: * - Josh Soref * - JD Isaacks * - Atef Ben Ali (atefBB) * - Mohamed Sabil (mohamedsabil83) */ $months = [ 'ŁŠŁ†Ų§ŁŠŲ±', 'فبراير', 'Ł…Ų§Ų±Ų³', 'Ų£ŲØŲ±ŁŠŁ„', 'Ł…Ų§ŁŠŁˆ', 'ŁŠŁˆŁ†ŁŠŁˆ', 'ŁŠŁˆŁ„ŁŠŁˆ', 'Ų£ŲŗŲ³Ų·Ų³', 'Ų³ŲØŲŖŁ…ŲØŲ±', 'أكتوبر', 'Ł†ŁˆŁŁ…ŲØŲ±', 'ŲÆŁŠŲ³Ł…ŲØŲ±', ]; return [ 'year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}Ų³Ł†ŲŖŁŠŁ†', ']2,11[:count Ų³Ł†ŁˆŲ§ŲŖ', ']10,Inf[:count سنة']), 'a_year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}Ų³Ł†ŲŖŁŠŁ†', ']2,11[:count Ų³Ł†ŁˆŲ§ŲŖ', ']10,Inf[:count سنة']), 'month' => implode('|', ['{0}:count ؓهر', '{1}ؓهر', '{2}Ų“Ł‡Ų±ŁŠŁ†', ']2,11[:count أؓهر', ']10,Inf[:count ؓهر']), 'a_month' => implode('|', ['{0}:count ؓهر', '{1}ؓهر', '{2}Ų“Ł‡Ų±ŁŠŁ†', ']2,11[:count أؓهر', ']10,Inf[:count ؓهر']), 'week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}Ų£Ų³ŲØŁˆŲ¹ŁŠŁ†', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']), 'a_week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}Ų£Ų³ŲØŁˆŲ¹ŁŠŁ†', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']), 'day' => implode('|', ['{0}:count ŁŠŁˆŁ…', '{1}ŁŠŁˆŁ…', '{2}ŁŠŁˆŁ…ŁŠŁ†', ']2,11[:count Ų£ŁŠŲ§Ł…', ']10,Inf[:count ŁŠŁˆŁ…']), 'a_day' => implode('|', ['{0}:count ŁŠŁˆŁ…', '{1}ŁŠŁˆŁ…', '{2}ŁŠŁˆŁ…ŁŠŁ†', ']2,11[:count Ų£ŁŠŲ§Ł…', ']10,Inf[:count ŁŠŁˆŁ…']), 'hour' => implode('|', ['{0}:count Ų³Ų§Ų¹Ų©', '{1}Ų³Ų§Ų¹Ų©', '{2}Ų³Ų§Ų¹ŲŖŁŠŁ†', ']2,11[:count Ų³Ų§Ų¹Ų§ŲŖ', ']10,Inf[:count Ų³Ų§Ų¹Ų©']), 'a_hour' => implode('|', ['{0}:count Ų³Ų§Ų¹Ų©', '{1}Ų³Ų§Ų¹Ų©', '{2}Ų³Ų§Ų¹ŲŖŁŠŁ†', ']2,11[:count Ų³Ų§Ų¹Ų§ŲŖ', ']10,Inf[:count Ų³Ų§Ų¹Ų©']), 'minute' => implode('|', ['{0}:count ŲÆŁ‚ŁŠŁ‚Ų©', '{1}ŲÆŁ‚ŁŠŁ‚Ų©', '{2}ŲÆŁ‚ŁŠŁ‚ŲŖŁŠŁ†', ']2,11[:count دقائق', ']10,Inf[:count ŲÆŁ‚ŁŠŁ‚Ų©']), 'a_minute' => implode('|', ['{0}:count ŲÆŁ‚ŁŠŁ‚Ų©', '{1}ŲÆŁ‚ŁŠŁ‚Ų©', '{2}ŲÆŁ‚ŁŠŁ‚ŲŖŁŠŁ†', ']2,11[:count دقائق', ']10,Inf[:count ŲÆŁ‚ŁŠŁ‚Ų©']), 'second' => implode('|', ['{0}:count Ų«Ų§Ł†ŁŠŲ©', '{1}Ų«Ų§Ł†ŁŠŲ©', '{2}Ų«Ų§Ł†ŁŠŲŖŁŠŁ†', ']2,11[:count Ų«ŁˆŲ§Ł†ŁŠ', ']10,Inf[:count Ų«Ų§Ł†ŁŠŲ©']), 'a_second' => implode('|', ['{0}:count Ų«Ų§Ł†ŁŠŲ©', '{1}Ų«Ų§Ł†ŁŠŲ©', '{2}Ų«Ų§Ł†ŁŠŲŖŁŠŁ†', ']2,11[:count Ų«ŁˆŲ§Ł†ŁŠ', ']10,Inf[:count Ų«Ų§Ł†ŁŠŲ©']), 'ago' => 'منذ :time', 'from_now' => 'في :time', 'after' => 'ŲØŲ¹ŲÆ :time', 'before' => 'قبل :time', 'diff_now' => 'الآن', 'diff_today' => 'Ų§Ł„ŁŠŁˆŁ…', 'diff_today_regexp' => 'Ų§Ł„ŁŠŁˆŁ…(?:\\s+على)?(?:\\s+الساعة)?', 'diff_yesterday' => 'أمس', 'diff_yesterday_regexp' => 'أمس(?:\\s+على)?(?:\\s+الساعة)?', 'diff_tomorrow' => 'ŲŗŲÆŲ§Ł‹', 'diff_tomorrow_regexp' => 'ŲŗŲÆŲ§(?:\\s+على)?(?:\\s+الساعة)?', 'diff_before_yesterday' => 'قبل الأمس', 'diff_after_tomorrow' => 'ŲØŲ¹ŲÆ ŲŗŲÆ', 'period_recurrences' => implode('|', ['{0}Ł…Ų±Ų©', '{1}Ł…Ų±Ų©', '{2}:count Ł…Ų±ŲŖŁŠŁ†', ']2,11[:count Ł…Ų±Ų§ŲŖ', ']10,Inf[:count Ł…Ų±Ų©']), 'period_interval' => 'ŁƒŁ„ :interval', 'period_start_date' => 'من :date', 'period_end_date' => '؄لى :date', 'months' => $months, 'months_short' => $months, 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų£Ų­ŲÆ', 'Ų§Ų«Ł†ŁŠŁ†', 'ثلاثاؔ', 'Ų£Ų±ŲØŲ¹Ų§Ų”', 'Ų®Ł…ŁŠŲ³', 'جمعة', 'Ų³ŲØŲŖ'], 'weekdays_min' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'list' => ['، ', ' و '], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Ų§Ł„ŁŠŁˆŁ… على الساعة] LT', 'nextDay' => '[ŲŗŲÆŲ§ على الساعة] LT', 'nextWeek' => 'dddd [على الساعة] LT', 'lastDay' => '[أمس على الساعة] LT', 'lastWeek' => 'dddd [على الساعة] LT', 'sameElse' => 'L', ], 'meridiem' => ['Ųµ', 'Ł…'], 'weekend' => [5, 6], ]; PK!Šfōc   carbon/src/Carbon/Lang/fr_FR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!‰>>carbon/src/Carbon/Lang/pt.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Cassiano Montanari * - Matt Pope * - FranƧois B * - Prodis * - JD Isaacks * - Raphael Amorim * - JoĆ£o MagalhĆ£es * - victortobias * - Paulo Freitas * - Sebastian Thierer * - Claudson Martins (claudsonm) */ return [ 'year' => ':count ano|:count anos', 'a_year' => 'um ano|:count anos', 'y' => ':counta', 'month' => ':count mĆŖs|:count meses', 'a_month' => 'um mĆŖs|:count meses', 'm' => ':countm', 'week' => ':count semana|:count semanas', 'a_week' => 'uma semana|:count semanas', 'w' => ':countsem', 'day' => ':count dia|:count dias', 'a_day' => 'um dia|:count dias', 'd' => ':countd', 'hour' => ':count hora|:count horas', 'a_hour' => 'uma hora|:count horas', 'h' => ':counth', 'minute' => ':count minuto|:count minutos', 'a_minute' => 'um minuto|:count minutos', 'min' => ':countmin', 'second' => ':count segundo|:count segundos', 'a_second' => 'alguns segundos|:count segundos', 's' => ':counts', 'millisecond' => ':count milissegundo|:count milissegundos', 'a_millisecond' => 'um milissegundo|:count milissegundos', 'ms' => ':countms', 'microsecond' => ':count microssegundo|:count microssegundos', 'a_microsecond' => 'um microssegundo|:count microssegundos', 'µs' => ':countµs', 'ago' => 'hĆ” :time', 'from_now' => 'em :time', 'after' => ':time depois', 'before' => ':time antes', 'diff_now' => 'agora', 'diff_today' => 'Hoje', 'diff_today_regexp' => 'Hoje(?:\\s+Ć s)?', 'diff_yesterday' => 'ontem', 'diff_yesterday_regexp' => 'Ontem(?:\\s+Ć s)?', 'diff_tomorrow' => 'amanhĆ£', 'diff_tomorrow_regexp' => 'AmanhĆ£(?:\\s+Ć s)?', 'diff_before_yesterday' => 'anteontem', 'diff_after_tomorrow' => 'depois de amanhĆ£', 'period_recurrences' => 'uma vez|:count vezes', 'period_interval' => 'cada :interval', 'period_start_date' => 'de :date', 'period_end_date' => 'atĆ© :date', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D [de] MMMM [de] YYYY', 'LLL' => 'D [de] MMMM [de] YYYY HH:mm', 'LLLL' => 'dddd, D [de] MMMM [de] YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Hoje Ć s] LT', 'nextDay' => '[AmanhĆ£ Ć s] LT', 'nextWeek' => 'dddd [Ć s] LT', 'lastDay' => '[Ontem Ć s] LT', 'lastWeek' => function (\Carbon\CarbonInterface $date) { switch ($date->dayOfWeek) { case 0: case 6: return '[Último] dddd [Ć s] LT'; default: return '[Última] dddd [Ć s] LT'; } }, 'sameElse' => 'L', ], 'ordinal' => ':numberĀŗ', 'months' => ['janeiro', 'fevereiro', 'marƧo', 'abril', 'maio', 'junho', 'julho', 'agosto', 'setembro', 'outubro', 'novembro', 'dezembro'], 'months_short' => ['jan', 'fev', 'mar', 'abr', 'mai', 'jun', 'jul', 'ago', 'set', 'out', 'nov', 'dez'], 'weekdays' => ['domingo', 'segunda-feira', 'terƧa-feira', 'quarta-feira', 'quinta-feira', 'sexta-feira', 'sĆ”bado'], 'weekdays_short' => ['dom', 'seg', 'ter', 'qua', 'qui', 'sex', 'sĆ”b'], 'weekdays_min' => ['Do', '2ĀŖ', '3ĀŖ', '4ĀŖ', '5ĀŖ', '6ĀŖ', 'SĆ”'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' e '], ]; PK!Ś‘“QQ carbon/src/Carbon/Lang/so_KE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ge'ez Frontier Foundation locales@geez.org */ return require __DIR__.'/so.php'; PK!mGT5rr#carbon/src/Carbon/Lang/vai_Latn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'weekdays' => ['lahadi', 'tɛɛnɛɛ', 'talata', 'alaba', 'aimisa', 'aijima', 'siɓiti'], 'weekdays_short' => ['lahadi', 'tɛɛnɛɛ', 'talata', 'alaba', 'aimisa', 'aijima', 'siɓiti'], 'weekdays_min' => ['lahadi', 'tɛɛnɛɛ', 'talata', 'alaba', 'aimisa', 'aijima', 'siɓiti'], 'months' => ['luukao kemĆ£', 'ɓandaɓu', 'vɔɔ', 'fulu', 'goo', '6', '7', 'kɔnde', 'saah', 'galo', 'kenpkato ɓololɔ', 'luukao lɔma'], 'months_short' => ['luukao kemĆ£', 'ɓandaɓu', 'vɔɔ', 'fulu', 'goo', '6', '7', 'kɔnde', 'saah', 'galo', 'kenpkato ɓololɔ', 'luukao lɔma'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY h:mm a', 'LLLL' => 'dddd, D MMMM YYYY h:mm a', ], ]); PK!%½ž  carbon/src/Carbon/Lang/so.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Author: * - Abdifatah Abdilahi(@abdifatahz) */ return [ 'year' => ':count sanad|:count sanadood', 'a_year' => 'sanad|:count sanadood', 'y' => '{1}:countsn|{0}:countsns|]1,Inf[:countsn', 'month' => ':count bil|:count bilood', 'a_month' => 'bil|:count bilood', 'm' => ':countbil', 'week' => ':count isbuuc', 'a_week' => 'isbuuc|:count isbuuc', 'w' => ':countis', 'day' => ':count maalin|:count maalmood', 'a_day' => 'maalin|:count maalmood', 'd' => ':countml', 'hour' => ':count saac', 'a_hour' => 'saacad|:count saac', 'h' => ':countsc', 'minute' => ':count daqiiqo', 'a_minute' => 'daqiiqo|:count daqiiqo', 'min' => ':countdq', 'second' => ':count ilbidhiqsi', 'a_second' => 'xooga ilbidhiqsiyo|:count ilbidhiqsi', 's' => ':countil', 'ago' => ':time kahor', 'from_now' => ':time gudahood', 'after' => ':time kedib', 'before' => ':time kahor', 'diff_now' => 'hada', 'diff_today' => 'maanta', 'diff_today_regexp' => 'maanta(?:\s+markay\s+(?:tahay|ahayd))?', 'diff_yesterday' => 'shalayto', 'diff_yesterday_regexp' => 'shalayto(?:\s+markay\s+ahayd)?', 'diff_tomorrow' => 'beri', 'diff_tomorrow_regexp' => 'beri(?:\s+markay\s+tahay)?', 'diff_before_yesterday' => 'doraato', 'diff_after_tomorrow' => 'saadanbe', 'period_recurrences' => 'mar|:count jeer', 'period_interval' => ':interval kasta', 'period_start_date' => 'laga bilaabo :date', 'period_end_date' => 'ilaa :date', 'months' => ['Janaayo', 'Febraayo', 'Abriil', 'Maajo', 'Juun', 'Luuliyo', 'Agoosto', 'Sebteembar', 'Oktoobar', 'Nofeembar', 'Diseembar'], 'months_short' => ['Jan', 'Feb', 'Mar', 'Abr', 'Mjo', 'Jun', 'Lyo', 'Agt', 'Seb', 'Okt', 'Nof', 'Dis'], 'weekdays' => ['Axad', 'Isniin', 'Talaada', 'Arbaca', 'Khamiis', 'Jimce', 'Sabti'], 'weekdays_short' => ['Axd', 'Isn', 'Tal', 'Arb', 'Kha', 'Jim', 'Sbt'], 'weekdays_min' => ['Ax', 'Is', 'Ta', 'Ar', 'Kh', 'Ji', 'Sa'], 'list' => [', ', ' and '], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'calendar' => [ 'sameDay' => '[Maanta markay tahay] LT', 'nextDay' => '[Beri markay tahay] LT', 'nextWeek' => 'dddd [markay tahay] LT', 'lastDay' => '[Shalay markay ahayd] LT', 'lastWeek' => '[Hore] dddd [Markay ahayd] LT', 'sameElse' => 'L', ], ]; PK!§¹EŽĖĖ carbon/src/Carbon/Lang/pt_PT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/pt.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['janeiro', 'fevereiro', 'marƧo', 'abril', 'maio', 'junho', 'julho', 'agosto', 'setembro', 'outubro', 'novembro', 'dezembro'], 'months_short' => ['jan', 'fev', 'mar', 'abr', 'mai', 'jun', 'jul', 'ago', 'set', 'out', 'nov', 'dez'], 'weekdays' => ['domingo', 'segunda', 'terƧa', 'quarta', 'quinta', 'sexta', 'sĆ”bado'], 'weekdays_short' => ['dom', 'seg', 'ter', 'qua', 'qui', 'sex', 'sĆ”b'], 'weekdays_min' => ['dom', 'seg', 'ter', 'qua', 'qui', 'sex', 'sĆ”b'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, ]); PK!šPש!carbon/src/Carbon/Lang/hak_TW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'YYYY幓MM月DDę—„', ], 'months' => ['äø€ęœˆ', '二月', 'äø‰ęœˆ', 'å››ęœˆ', 'äŗ”ęœˆ', 'å…­ęœˆ', '七月', 'å…«ęœˆ', 'ä¹ęœˆ', 'åęœˆ', 'åäø€ęœˆ', 'åäŗŒęœˆ'], 'months_short' => [' 1月', ' 2月', ' 3月', ' 4月', ' 5月', ' 6月', ' 7月', ' 8月', ' 9月', '10月', '11月', '12月'], 'weekdays' => ['ē¦®ę‹œę—„', 'ē¦®ę‹œäø€', 'ē¦®ę‹œäŗŒ', 'ē¦®ę‹œäø‰', 'ē¦®ę‹œå››', 'ē¦®ę‹œäŗ”', 'ē¦®ę‹œå…­'], 'weekdays_short' => ['ę—„', 'äø€', '二', 'äø‰', '四', 'äŗ”', '六'], 'weekdays_min' => ['ę—„', 'äø€', '二', 'äø‰', '四', 'äŗ”', '六'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['äøŠę™', 'äø‹ę™'], 'year' => ':count ngien11', 'y' => ':count ngien11', 'a_year' => ':count ngien11', 'month' => ':count ngieĢt', 'm' => ':count ngieĢt', 'a_month' => ':count ngieĢt', 'week' => ':count lĆ®-pai', 'w' => ':count lĆ®-pai', 'a_week' => ':count lĆ®-pai', 'day' => ':count ngit', 'd' => ':count ngit', 'a_day' => ':count ngit', 'hour' => ':count sṳ̀', 'h' => ':count sṳ̀', 'a_hour' => ':count sṳ̀', 'minute' => ':count fĆ»n', 'min' => ':count fĆ»n', 'a_minute' => ':count fĆ»n', 'second' => ':count miĆ©u', 's' => ':count miĆ©u', 'a_second' => ':count miĆ©u', ]); PK!$Z˜+carbon/src/Carbon/Lang/sd_IN@devanagari.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Red Hat, Pune bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/sd.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤¬ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤šą¤æ', 'ą¤…ą¤Ŗą„ą¤°ą„‡ą¤²', 'ą¤®ą„‡', 'ą¤œą„‚ą¤Øą¤æ', 'ą¤œą„‚ą¤²ą¤¾ą¤‡', 'ą¤†ą¤—ą¤øą„ą¤Ÿą„', 'ą¤øą„‡ą¤Ŗą„ą¤Ÿą„‡ą¤‚ą¤¬ą¤°ą„‚', 'ą¤†ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°ą„‚', 'ą¤Øą¤µą¤‚ą¤¬ą¤°ą„‚', 'ą„¾ą¤æą¤øą¤‚ą¤¬ą¤°ą„‚'], 'months_short' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤¬ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤šą¤æ', 'ą¤…ą¤Ŗą„ą¤°ą„‡ą¤²', 'ą¤®ą„‡', 'ą¤œą„‚ą¤Øą¤æ', 'ą¤œą„‚ą¤²ą¤¾ą¤‡', 'ą¤†ą¤—ą¤øą„ą¤Ÿą„', 'ą¤øą„‡ą¤Ŗą„ą¤Ÿą„‡ą¤‚ą¤¬ą¤°ą„‚', 'ą¤†ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°ą„‚', 'ą¤Øą¤µą¤‚ą¤¬ą¤°ą„‚', 'ą„¾ą¤æą¤øą¤‚ą¤¬ą¤°ą„‚'], 'weekdays' => ['ą¤†ą¤°ą„ą¤¤ą¤µą¤¾ą¤°ą„‚', 'ą¤øą„‚ą¤®ą¤°ą„‚', 'ą¤®ą¤‚ą¤—ą¤²ą„‚', 'ą„æą„ą¤§ą¤°ą„‚', 'ą¤µą¤æą¤øą„ą¤Ŗą¤¤ą¤æ', 'ą¤œą„ą¤®ą„‹', 'छंछस'], 'weekdays_short' => ['ą¤†ą¤°ą„ą¤¤ą¤µą¤¾ą¤°ą„‚', 'ą¤øą„‚ą¤®ą¤°ą„‚', 'ą¤®ą¤‚ą¤—ą¤²ą„‚', 'ą„æą„ą¤§ą¤°ą„‚', 'ą¤µą¤æą¤øą„ą¤Ŗą¤¤ą¤æ', 'ą¤œą„ą¤®ą„‹', 'छंछस'], 'weekdays_min' => ['ą¤†ą¤°ą„ą¤¤ą¤µą¤¾ą¤°ą„‚', 'ą¤øą„‚ą¤®ą¤°ą„‚', 'ą¤®ą¤‚ą¤—ą¤²ą„‚', 'ą„æą„ą¤§ą¤°ą„‚', 'ą¤µą¤æą¤øą„ą¤Ŗą¤¤ą¤æ', 'ą¤œą„ą¤®ą„‹', 'छंछस'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['म.ą¤Ŗą„‚.', 'म.नं.'], ]); PK! “¢ą@@ carbon/src/Carbon/Lang/fr_SY.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/fr.php', [ 'first_day_of_week' => 6, 'weekend' => [5, 6], 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY h:mm a', 'LLLL' => 'dddd D MMMM YYYY h:mm a', ], ]); PK!š¶čżZZcarbon/src/Carbon/Lang/ewo.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['kĆ­kĆ­rĆ­g', 'ngəgógəle'], 'weekdays' => ['sɔ́ndɔ', 'mɔ́ndi', 'sɔ́ndɔ məlĆŗ mə́bÉ›ĢŒ', 'sɔ́ndɔ məlĆŗ mə́lɛ́', 'sɔ́ndɔ məlĆŗ mə́nyi', 'fĆŗladĆ©', 'sĆ©radĆ©'], 'weekdays_short' => ['sɔ́n', 'mɔ́n', 'smb', 'sml', 'smn', 'fĆŗl', 'sĆ©r'], 'weekdays_min' => ['sɔ́n', 'mɔ́n', 'smb', 'sml', 'smn', 'fĆŗl', 'sĆ©r'], 'months' => ['ngɔn osĆŗ', 'ngɔn bÉ›ĢŒ', 'ngɔn lĆ”la', 'ngɔn nyina', 'ngɔn tĆ”na', 'ngɔn saməna', 'ngɔn zamgbĆ”la', 'ngɔn mwom', 'ngɔn ebulĆŗ', 'ngɔn awóm', 'ngɔn awóm ai dziĆ”', 'ngɔn awóm ai bÉ›ĢŒ'], 'months_short' => ['ngo', 'ngb', 'ngl', 'ngn', 'ngt', 'ngs', 'ngz', 'ngm', 'nge', 'nga', 'ngad', 'ngab'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], // Too unreliable /* 'year' => ':count mbu', // less reliable 'y' => ':count mbu', // less reliable 'a_year' => ':count mbu', // less reliable 'month' => ':count ngòn', // less reliable 'm' => ':count ngòn', // less reliable 'a_month' => ':count ngòn', // less reliable 'week' => ':count mĆ«sĆ«', // less reliable 'w' => ':count mĆ«sĆ«', // less reliable 'a_week' => ':count mĆ«sĆ«', // less reliable 'day' => ':count mĆ«sĆ«', // less reliable 'd' => ':count mĆ«sĆ«', // less reliable 'a_day' => ':count mĆ«sĆ«', // less reliable 'hour' => ':count awola', // less reliable 'h' => ':count awola', // less reliable 'a_hour' => ':count awola', // less reliable 'minute' => ':count awola', // less reliable 'min' => ':count awola', // less reliable 'a_minute' => ':count awola', // less reliable */ ]); PK!yć•č!carbon/src/Carbon/Lang/fur_IT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Pablo Saratxaga pablo@mandrakesoft.com */ return [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD. MM. YY', 'LL' => 'DD di MMMM dal YYYY', 'LLL' => 'DD di MMM HH:mm', 'LLLL' => 'DD di MMMM dal YYYY HH:mm', ], 'months' => ['zenĆ¢r', 'fevrĆ¢r', 'marƧ', 'avrĆ®l', 'mai', 'jugn', 'lui', 'avost', 'setembar', 'otubar', 'novembar', 'dicembar'], 'months_short' => ['zen', 'fev', 'mar', 'avr', 'mai', 'jug', 'lui', 'avo', 'set', 'otu', 'nov', 'dic'], 'weekdays' => ['domenie', 'lunis', 'martars', 'miercus', 'joibe', 'vinars', 'sabide'], 'weekdays_short' => ['dom', 'lun', 'mar', 'mie', 'joi', 'vin', 'sab'], 'weekdays_min' => ['dom', 'lun', 'mar', 'mie', 'joi', 'vin', 'sab'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'year' => ':count an', 'month' => ':count mĆŖs', 'week' => ':count setemane', 'day' => ':count zornade', 'hour' => ':count ore', 'minute' => ':count minĆ»t', 'second' => ':count secont', ]; PK!Š®fA//carbon/src/Carbon/Lang/bas.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['I bikɛ̂glĆ ', 'I ɓugajɔp'], 'weekdays' => ['ŋgwĆ  nɔ̂y', 'ŋgwĆ  njaŋgumba', 'ŋgwĆ  Ć»m', 'ŋgwĆ  ŋgĆŖ', 'ŋgwĆ  mbɔk', 'ŋgwĆ  kɔɔ', 'ŋgwĆ  jĆ“n'], 'weekdays_short' => ['nɔy', 'nja', 'uum', 'ŋge', 'mbɔ', 'kɔɔ', 'jon'], 'weekdays_min' => ['nɔy', 'nja', 'uum', 'ŋge', 'mbɔ', 'kɔɔ', 'jon'], 'months' => ['Kɔndɔŋ', 'MĆ cɛ̂l', 'MĆ tùmb', 'MĆ top', 'MĢ€puyɛ', 'HƬlòndɛ̀', 'NjĆØbĆ ', 'HƬkaŋ', 'DƬpɔ̀s', 'BìòÓm', 'MĆ yɛsĆØp', 'LƬbuy li ńyĆØe'], 'months_short' => ['kɔn', 'mac', 'mat', 'mto', 'mpu', 'hil', 'nje', 'hik', 'dip', 'bio', 'may', 'liɓ'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM, YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'second' => ':count móndĆ®', // less reliable 's' => ':count móndĆ®', // less reliable 'a_second' => ':count móndĆ®', // less reliable ]); PK!x^“FF carbon/src/Carbon/Lang/en_GI.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!oĻRŠōō carbon/src/Carbon/Lang/hr_BA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - DarkoDevelop */ return array_replace_recursive(require __DIR__.'/hr.php', [ 'weekdays' => ['nedjelja', 'ponedjeljak', 'utorak', 'srijeda', 'četvrtak', 'petak', 'subota'], 'weekdays_short' => ['ned', 'pon', 'uto', 'sri', 'čet', 'pet', 'sub'], 'weekdays_min' => ['ned', 'pon', 'uto', 'sri', 'čet', 'pet', 'sub'], 'months' => ['siječnja', 'veljače', 'ožujka', 'travnja', 'svibnja', 'lipnja', 'srpnja', 'kolovoza', 'rujna', 'listopada', 'studenoga', 'prosinca'], 'months_short' => ['sij', 'velj', 'ožu', 'tra', 'svi', 'lip', 'srp', 'kol', 'ruj', 'lis', 'stu', 'pro'], 'months_standalone' => ['siječanj', 'veljača', 'ožujak', 'travanj', 'svibanj', 'lipanj', 'srpanj', 'kolovoz', 'rujan', 'listopad', 'studeni', 'prosinac'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D. M. yy.', 'LL' => 'D. MMM YYYY.', 'LLL' => 'D. MMMM YYYY. HH:mm', 'LLLL' => 'dddd, D. MMMM YYYY. HH:mm', ], ]); PK!Ä·7q(( carbon/src/Carbon/Lang/ca_FR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ca.php', [ ]); PK!x^“FF carbon/src/Carbon/Lang/en_RW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!ž°åĶV V carbon/src/Carbon/Lang/sq.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - JD Isaacks * - Fadion Dashi */ return [ 'year' => ':count vit|:count vjet', 'a_year' => 'njĆ« vit|:count vite', 'y' => ':count v.', 'month' => ':count muaj', 'a_month' => 'njĆ« muaj|:count muaj', 'm' => ':count muaj', 'week' => ':count javĆ«', 'a_week' => ':count javĆ«|:count javĆ«', 'w' => ':count j.', 'day' => ':count ditĆ«', 'a_day' => 'njĆ« ditĆ«|:count ditĆ«', 'd' => ':count d.', 'hour' => ':count orĆ«', 'a_hour' => 'njĆ« orĆ«|:count orĆ«', 'h' => ':count o.', 'minute' => ':count minutĆ«|:count minuta', 'a_minute' => 'njĆ« minutĆ«|:count minuta', 'min' => ':count min.', 'second' => ':count sekondĆ«|:count sekonda', 'a_second' => 'disa sekonda|:count sekonda', 's' => ':count s.', 'ago' => ':time mĆ« parĆ«', 'from_now' => 'nĆ« :time', 'after' => ':time pas', 'before' => ':time para', 'diff_now' => 'tani', 'diff_today' => 'Sot', 'diff_today_regexp' => 'Sot(?:\\s+nĆ«)?', 'diff_yesterday' => 'dje', 'diff_yesterday_regexp' => 'Dje(?:\\s+nĆ«)?', 'diff_tomorrow' => 'nesĆ«r', 'diff_tomorrow_regexp' => 'NesĆ«r(?:\\s+nĆ«)?', 'diff_before_yesterday' => 'pardje', 'diff_after_tomorrow' => 'pasnesĆ«r', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Sot nĆ«] LT', 'nextDay' => '[NesĆ«r nĆ«] LT', 'nextWeek' => 'dddd [nĆ«] LT', 'lastDay' => '[Dje nĆ«] LT', 'lastWeek' => 'dddd [e kaluar nĆ«] LT', 'sameElse' => 'L', ], 'ordinal' => ':number.', 'meridiem' => ['PD', 'MD'], 'months' => ['janar', 'shkurt', 'mars', 'prill', 'maj', 'qershor', 'korrik', 'gusht', 'shtator', 'tetor', 'nĆ«ntor', 'dhjetor'], 'months_short' => ['jan', 'shk', 'mar', 'pri', 'maj', 'qer', 'kor', 'gus', 'sht', 'tet', 'nĆ«n', 'dhj'], 'weekdays' => ['e diel', 'e hĆ«nĆ«', 'e martĆ«', 'e mĆ«rkurĆ«', 'e enjte', 'e premte', 'e shtunĆ«'], 'weekdays_short' => ['die', 'hĆ«n', 'mar', 'mĆ«r', 'enj', 'pre', 'sht'], 'weekdays_min' => ['d', 'h', 'ma', 'mĆ«', 'e', 'p', 'sh'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' dhe '], ]; PK!Ü7>   carbon/src/Carbon/Lang/br_FR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/br.php'; PK!¶Yf @@carbon/src/Carbon/Lang/asa.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['icheheavo', 'ichamthi'], 'weekdays' => ['Jumapili', 'Jumatatu', 'Jumanne', 'Jumatano', 'Alhamisi', 'Ijumaa', 'Jumamosi'], 'weekdays_short' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Ijm', 'Jmo'], 'weekdays_min' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Ijm', 'Jmo'], 'months' => ['Januari', 'Februari', 'Machi', 'Aprili', 'Mei', 'Juni', 'Julai', 'Agosti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'], 'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Dec'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK!Šfōc   carbon/src/Carbon/Lang/fr_BF.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!Ņ—1kNNcarbon/src/Carbon/Lang/aa.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/aa_DJ.php'; PK!®SWN N carbon/src/Carbon/Lang/fy.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - Tim Fish * - JD Isaacks */ return [ 'year' => ':count jier|:count jierren', 'a_year' => 'ien jier|:count jierren', 'y' => ':count j', 'month' => ':count moanne|:count moannen', 'a_month' => 'ien moanne|:count moannen', 'm' => ':count moa.', 'week' => ':count wike|:count wiken', 'a_week' => 'in wike|:count wiken', 'a' => ':count w.', 'day' => ':count dei|:count dagen', 'a_day' => 'ien dei|:count dagen', 'd' => ':count d.', 'hour' => ':count oere|:count oeren', 'a_hour' => 'ien oere|:count oeren', 'h' => ':count o.', 'minute' => ':count minĆŗt|:count minuten', 'a_minute' => 'ien minĆŗt|:count minuten', 'min' => ':count min.', 'second' => ':count sekonde|:count sekonden', 'a_second' => 'in pear sekonden|:count sekonden', 's' => ':count s.', 'ago' => ':time lyn', 'from_now' => 'oer :time', 'diff_yesterday' => 'juster', 'diff_yesterday_regexp' => 'juster(?:\\s+om)?', 'diff_today' => 'hjoed', 'diff_today_regexp' => 'hjoed(?:\\s+om)?', 'diff_tomorrow' => 'moarn', 'diff_tomorrow_regexp' => 'moarn(?:\\s+om)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD-MM-YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[hjoed om] LT', 'nextDay' => '[moarn om] LT', 'nextWeek' => 'dddd [om] LT', 'lastDay' => '[juster om] LT', 'lastWeek' => '[Ć“frĆ»ne] dddd [om] LT', 'sameElse' => 'L', ], 'ordinal' => function ($number) { return $number.(($number === 1 || $number === 8 || $number >= 20) ? 'ste' : 'de'); }, 'months' => ['jannewaris', 'febrewaris', 'maart', 'april', 'maaie', 'juny', 'july', 'augustus', 'septimber', 'oktober', 'novimber', 'desimber'], 'months_short' => ['jan', 'feb', 'mrt', 'apr', 'mai', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'des'], 'mmm_suffix' => '.', 'weekdays' => ['snein', 'moandei', 'tiisdei', 'woansdei', 'tongersdei', 'freed', 'sneon'], 'weekdays_short' => ['si.', 'mo.', 'ti.', 'wo.', 'to.', 'fr.', 'so.'], 'weekdays_min' => ['Si', 'Mo', 'Ti', 'Wo', 'To', 'Fr', 'So'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' en '], ]; PK!Պ.ććcarbon/src/Carbon/Lang/ar.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Atef Ben Ali (atefBB) * - Ibrahim AshShohail * - MLTDev * - Mohamed Sabil (mohamedsabil83) * - Yazan Alnugnugh (yazan-alnugnugh) */ $months = [ 'ŁŠŁ†Ų§ŁŠŲ±', 'فبراير', 'Ł…Ų§Ų±Ų³', 'Ų£ŲØŲ±ŁŠŁ„', 'Ł…Ų§ŁŠŁˆ', 'ŁŠŁˆŁ†ŁŠŁˆ', 'ŁŠŁˆŁ„ŁŠŁˆ', 'Ų£ŲŗŲ³Ų·Ų³', 'Ų³ŲØŲŖŁ…ŲØŲ±', 'أكتوبر', 'Ł†ŁˆŁŁ…ŲØŲ±', 'ŲÆŁŠŲ³Ł…ŲØŲ±', ]; return [ 'year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}Ų³Ł†ŲŖŁŠŁ†', ']2,11[:count Ų³Ł†ŁˆŲ§ŲŖ', ']10,Inf[:count سنة']), 'a_year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}Ų³Ł†ŲŖŁŠŁ†', ']2,11[:count Ų³Ł†ŁˆŲ§ŲŖ', ']10,Inf[:count سنة']), 'month' => implode('|', ['{0}:count ؓهر', '{1}ؓهر', '{2}Ų“Ł‡Ų±ŁŠŁ†', ']2,11[:count أؓهر', ']10,Inf[:count ؓهر']), 'a_month' => implode('|', ['{0}:count ؓهر', '{1}ؓهر', '{2}Ų“Ł‡Ų±ŁŠŁ†', ']2,11[:count أؓهر', ']10,Inf[:count ؓهر']), 'week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}Ų£Ų³ŲØŁˆŲ¹ŁŠŁ†', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']), 'a_week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}Ų£Ų³ŲØŁˆŲ¹ŁŠŁ†', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']), 'day' => implode('|', ['{0}:count ŁŠŁˆŁ…', '{1}ŁŠŁˆŁ…', '{2}ŁŠŁˆŁ…ŁŠŁ†', ']2,11[:count Ų£ŁŠŲ§Ł…', ']10,Inf[:count ŁŠŁˆŁ…']), 'a_day' => implode('|', ['{0}:count ŁŠŁˆŁ…', '{1}ŁŠŁˆŁ…', '{2}ŁŠŁˆŁ…ŁŠŁ†', ']2,11[:count Ų£ŁŠŲ§Ł…', ']10,Inf[:count ŁŠŁˆŁ…']), 'hour' => implode('|', ['{0}:count Ų³Ų§Ų¹Ų©', '{1}Ų³Ų§Ų¹Ų©', '{2}Ų³Ų§Ų¹ŲŖŁŠŁ†', ']2,11[:count Ų³Ų§Ų¹Ų§ŲŖ', ']10,Inf[:count Ų³Ų§Ų¹Ų©']), 'a_hour' => implode('|', ['{0}:count Ų³Ų§Ų¹Ų©', '{1}Ų³Ų§Ų¹Ų©', '{2}Ų³Ų§Ų¹ŲŖŁŠŁ†', ']2,11[:count Ų³Ų§Ų¹Ų§ŲŖ', ']10,Inf[:count Ų³Ų§Ų¹Ų©']), 'minute' => implode('|', ['{0}:count ŲÆŁ‚ŁŠŁ‚Ų©', '{1}ŲÆŁ‚ŁŠŁ‚Ų©', '{2}ŲÆŁ‚ŁŠŁ‚ŲŖŁŠŁ†', ']2,11[:count دقائق', ']10,Inf[:count ŲÆŁ‚ŁŠŁ‚Ų©']), 'a_minute' => implode('|', ['{0}:count ŲÆŁ‚ŁŠŁ‚Ų©', '{1}ŲÆŁ‚ŁŠŁ‚Ų©', '{2}ŲÆŁ‚ŁŠŁ‚ŲŖŁŠŁ†', ']2,11[:count دقائق', ']10,Inf[:count ŲÆŁ‚ŁŠŁ‚Ų©']), 'second' => implode('|', ['{0}:count Ų«Ų§Ł†ŁŠŲ©', '{1}Ų«Ų§Ł†ŁŠŲ©', '{2}Ų«Ų§Ł†ŁŠŲŖŁŠŁ†', ']2,11[:count Ų«ŁˆŲ§Ł†ŁŠ', ']10,Inf[:count Ų«Ų§Ł†ŁŠŲ©']), 'a_second' => implode('|', ['{0}:count Ų«Ų§Ł†ŁŠŲ©', '{1}Ų«Ų§Ł†ŁŠŲ©', '{2}Ų«Ų§Ł†ŁŠŲŖŁŠŁ†', ']2,11[:count Ų«ŁˆŲ§Ł†ŁŠ', ']10,Inf[:count Ų«Ų§Ł†ŁŠŲ©']), 'ago' => 'منذ :time', 'from_now' => ':time من الآن', 'after' => 'ŲØŲ¹ŲÆ :time', 'before' => 'قبل :time', 'diff_now' => 'الآن', 'diff_today' => 'Ų§Ł„ŁŠŁˆŁ…', 'diff_today_regexp' => 'Ų§Ł„ŁŠŁˆŁ…(?:\\s+عند)?(?:\\s+الساعة)?', 'diff_yesterday' => 'أمس', 'diff_yesterday_regexp' => 'أمس(?:\\s+عند)?(?:\\s+الساعة)?', 'diff_tomorrow' => 'ŲŗŲÆŲ§Ł‹', 'diff_tomorrow_regexp' => 'غدًا(?:\\s+عند)?(?:\\s+الساعة)?', 'diff_before_yesterday' => 'قبل الأمس', 'diff_after_tomorrow' => 'ŲØŲ¹ŲÆ ŲŗŲÆ', 'period_recurrences' => implode('|', ['{0}Ł…Ų±Ų©', '{1}Ł…Ų±Ų©', '{2}:count Ł…Ų±ŲŖŁŠŁ†', ']2,11[:count Ł…Ų±Ų§ŲŖ', ']10,Inf[:count Ł…Ų±Ų©']), 'period_interval' => 'ŁƒŁ„ :interval', 'period_start_date' => 'من :date', 'period_end_date' => '؄لى :date', 'months' => $months, 'months_short' => $months, 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų£Ų­ŲÆ', 'Ų§Ų«Ł†ŁŠŁ†', 'ثلاثاؔ', 'Ų£Ų±ŲØŲ¹Ų§Ų”', 'Ų®Ł…ŁŠŲ³', 'جمعة', 'Ų³ŲØŲŖ'], 'weekdays_min' => ['Ų­', 'Ų§Ų«', 'Ų«Ł„', 'Ų£Ų±', 'خم', 'Ų¬', 'Ų³'], 'list' => ['، ', ' و '], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Ų§Ł„ŁŠŁˆŁ… عند الساعة] LT', 'nextDay' => '[غدًا عند الساعة] LT', 'nextWeek' => 'dddd [عند الساعة] LT', 'lastDay' => '[أمس عند الساعة] LT', 'lastWeek' => 'dddd [عند الساعة] LT', 'sameElse' => 'L', ], 'meridiem' => ['Ųµ', 'Ł…'], 'weekend' => [5, 6], ]; PK!o“ÖOOcarbon/src/Carbon/Lang/the.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/the_NP.php'; PK!]"„6ŪŪ"carbon/src/Carbon/Lang/az_Latn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/az.php', [ 'meridiem' => ['a', 'p'], 'weekdays' => ['bazar', 'bazar ertəsi', 'Ƨərşənbə axşamı', 'Ƨərşənbə', 'cümə axşamı', 'cümə', 'şənbə'], 'weekdays_short' => ['B.', 'B.E.', 'Ƈ.A.', 'Ƈ.', 'C.A.', 'C.', 'Ş.'], 'weekdays_min' => ['B.', 'B.E.', 'Ƈ.A.', 'Ƈ.', 'C.A.', 'C.', 'Ş.'], 'months' => ['yanvar', 'fevral', 'mart', 'aprel', 'may', 'iyun', 'iyul', 'avqust', 'sentyabr', 'oktyabr', 'noyabr', 'dekabr'], 'months_short' => ['yan', 'fev', 'mar', 'apr', 'may', 'iyn', 'iyl', 'avq', 'sen', 'okt', 'noy', 'dek'], 'months_standalone' => ['Yanvar', 'Fevral', 'Mart', 'Aprel', 'May', 'İyun', 'İyul', 'Avqust', 'Sentyabr', 'Oktyabr', 'Noyabr', 'Dekabr'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'D MMMM YYYY, dddd HH:mm', ], ]); PK!ķ”O(("carbon/src/Carbon/Lang/bs_Latn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/bs.php', [ ]); PK!īSåSS carbon/src/Carbon/Lang/tl_PH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - Ian De La Cruz * - JD Isaacks */ return require __DIR__.'/tl.php'; PK!Šfōc   carbon/src/Carbon/Lang/fr_MG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!!æµ ŪŪcarbon/src/Carbon/Lang/kln.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['krn', 'koosk'], 'weekdays' => ['Kotisap', 'Kotaai', 'Koaeng’', 'Kosomok', 'Koang’wan', 'Komuut', 'Kolo'], 'weekdays_short' => ['Kts', 'Kot', 'Koo', 'Kos', 'Koa', 'Kom', 'Kol'], 'weekdays_min' => ['Kts', 'Kot', 'Koo', 'Kos', 'Koa', 'Kom', 'Kol'], 'months' => ['Mulgul', 'Ng’atyaato', 'Kiptaamo', 'Iwootkuut', 'Mamuut', 'Paagi', 'Ng’eiyeet', 'Rooptui', 'Bureet', 'Epeeso', 'Kipsuunde ne taai', 'Kipsuunde nebo aeng’'], 'months_short' => ['Mul', 'Ngat', 'Taa', 'Iwo', 'Mam', 'Paa', 'Nge', 'Roo', 'Bur', 'Epe', 'Kpt', 'Kpa'], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'year' => ':count maghatiat', // less reliable 'y' => ':count maghatiat', // less reliable 'a_year' => ':count maghatiat', // less reliable ]); PK!v—……!carbon/src/Carbon/Lang/wae_CH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Walser Translation Team ml@translate-wae.ch */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'YYYY-MM-DD', ], 'months' => ['Jenner', 'Hornig', 'MƤrze', 'Abrille', 'Meije', 'BrĆ”Äet', 'Heiwet', 'ƖigÅ”te', 'HerbÅ”tmĆ”net', 'WĆ­mĆ”net', 'WintermĆ”net', 'ChriÅ”tmĆ”net'], 'months_short' => ['Jen', 'Hor', 'MƤr', 'Abr', 'Mei', 'BrĆ”', 'Hei', 'Ɩig', 'Her', 'WĆ­m', 'Win', 'Chr'], 'weekdays' => ['Suntag', 'MƤntag', 'Zischtag', 'Mittwuch', 'Frontag', 'Fritag', 'Samschtag'], 'weekdays_short' => ['Sun', 'MƤn', 'Zis', 'Mit', 'Fro', 'Fri', 'Sam'], 'weekdays_min' => ['Sun', 'MƤn', 'Zis', 'Mit', 'Fro', 'Fri', 'Sam'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'month' => ':count Maano', // less reliable 'm' => ':count Maano', // less reliable 'a_month' => ':count Maano', // less reliable ]); PK![D»†   carbon/src/Carbon/Lang/ga_IE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ga.php'; PK!oP§­ ­ "carbon/src/Carbon/Lang/uz_Latn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - Rasulbek * - Ilyosjon Kamoldinov (ilyosjon09) */ return [ 'year' => ':count yil', 'a_year' => '{1}bir yil|:count yil', 'y' => ':count y', 'month' => ':count oy', 'a_month' => '{1}bir oy|:count oy', 'm' => ':count o', 'week' => ':count hafta', 'a_week' => '{1}bir hafta|:count hafta', 'w' => ':count h', 'day' => ':count kun', 'a_day' => '{1}bir kun|:count kun', 'd' => ':count k', 'hour' => ':count soat', 'a_hour' => '{1}bir soat|:count soat', 'h' => ':count soat', 'minute' => ':count daqiqa', 'a_minute' => '{1}bir daqiqa|:count daqiqa', 'min' => ':count d', 'second' => ':count soniya', 'a_second' => '{1}soniya|:count soniya', 's' => ':count son.', 'ago' => ':time avval', 'from_now' => 'Yaqin :time ichida', 'after' => ':timedan keyin', 'before' => ':time oldin', 'diff_yesterday' => 'Kecha', 'diff_yesterday_regexp' => 'Kecha(?:\\s+soat)?', 'diff_today' => 'Bugun', 'diff_today_regexp' => 'Bugun(?:\\s+soat)?', 'diff_tomorrow' => 'Ertaga', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'D MMMM YYYY, dddd HH:mm', ], 'calendar' => [ 'sameDay' => '[Bugun soat] LT [da]', 'nextDay' => '[Ertaga] LT [da]', 'nextWeek' => 'dddd [kuni soat] LT [da]', 'lastDay' => '[Kecha soat] LT [da]', 'lastWeek' => '[O\'tgan] dddd [kuni soat] LT [da]', 'sameElse' => 'L', ], 'months' => ['Yanvar', 'Fevral', 'Mart', 'Aprel', 'May', 'Iyun', 'Iyul', 'Avgust', 'Sentabr', 'Oktabr', 'Noyabr', 'Dekabr'], 'months_short' => ['Yan', 'Fev', 'Mar', 'Apr', 'May', 'Iyun', 'Iyul', 'Avg', 'Sen', 'Okt', 'Noy', 'Dek'], 'weekdays' => ['Yakshanba', 'Dushanba', 'Seshanba', 'Chorshanba', 'Payshanba', 'Juma', 'Shanba'], 'weekdays_short' => ['Yak', 'Dush', 'Sesh', 'Chor', 'Pay', 'Jum', 'Shan'], 'weekdays_min' => ['Ya', 'Du', 'Se', 'Cho', 'Pa', 'Ju', 'Sha'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' va '], 'meridiem' => ['TO', 'TK'], ]; PK!ŪžhOOcarbon/src/Carbon/Lang/mai.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/mai_IN.php'; PK!`ōNNcarbon/src/Carbon/Lang/li.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/li_NL.php'; PK!ŌśŒŒcarbon/src/Carbon/Lang/tr.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - Alan Agius * - Erhan Gundogan * - FranƧois B * - JD Isaacks * - Murat Yüksel * - Baran Şengül * - Selami (selamialtin) * - TeomanBey */ return [ 'year' => ':count yıl', 'a_year' => '{1}bir yıl|]1,Inf[:count yıl', 'y' => ':county', 'month' => ':count ay', 'a_month' => '{1}bir ay|]1,Inf[:count ay', 'm' => ':countay', 'week' => ':count hafta', 'a_week' => '{1}bir hafta|]1,Inf[:count hafta', 'w' => ':counth', 'day' => ':count gün', 'a_day' => '{1}bir gün|]1,Inf[:count gün', 'd' => ':countg', 'hour' => ':count saat', 'a_hour' => '{1}bir saat|]1,Inf[:count saat', 'h' => ':countsa', 'minute' => ':count dakika', 'a_minute' => '{1}bir dakika|]1,Inf[:count dakika', 'min' => ':countdk', 'second' => ':count saniye', 'a_second' => '{1}birkaƧ saniye|]1,Inf[:count saniye', 's' => ':countsn', 'ago' => ':time ƶnce', 'from_now' => ':time sonra', 'after' => ':time sonra', 'before' => ':time ƶnce', 'diff_now' => 'şimdi', 'diff_today' => 'bugün', 'diff_today_regexp' => 'bugün(?:\\s+saat)?', 'diff_yesterday' => 'dün', 'diff_tomorrow' => 'yarın', 'diff_tomorrow_regexp' => 'yarın(?:\\s+saat)?', 'diff_before_yesterday' => 'evvelsi gün', 'diff_after_tomorrow' => 'ƶbür gün', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[bugün saat] LT', 'nextDay' => '[yarın saat] LT', 'nextWeek' => '[gelecek] dddd [saat] LT', 'lastDay' => '[dün] LT', 'lastWeek' => '[geƧen] dddd [saat] LT', 'sameElse' => 'L', ], 'ordinal' => function ($number, $period) { switch ($period) { case 'd': case 'D': case 'Do': case 'DD': return $number; default: if ($number === 0) { // special case for zero return "$number'ıncı"; } static $suffixes = [ 1 => '\'inci', 5 => '\'inci', 8 => '\'inci', 70 => '\'inci', 80 => '\'inci', 2 => '\'nci', 7 => '\'nci', 20 => '\'nci', 50 => '\'nci', 3 => '\'üncü', 4 => '\'üncü', 100 => '\'üncü', 6 => '\'ncı', 9 => '\'uncu', 10 => '\'uncu', 30 => '\'uncu', 60 => '\'ıncı', 90 => '\'ıncı', ]; $lastDigit = $number % 10; return $number.($suffixes[$lastDigit] ?? $suffixes[$number % 100 - $lastDigit] ?? $suffixes[$number >= 100 ? 100 : -1] ?? ''); } }, 'meridiem' => ['ƖƖ', 'ƖS', 'ƶƶ', 'ƶs'], 'months' => ['Ocak', 'Şubat', 'Mart', 'Nisan', 'Mayıs', 'Haziran', 'Temmuz', 'Ağustos', 'Eylül', 'Ekim', 'Kasım', 'Aralık'], 'months_short' => ['Oca', 'Şub', 'Mar', 'Nis', 'May', 'Haz', 'Tem', 'Ağu', 'Eyl', 'Eki', 'Kas', 'Ara'], 'weekdays' => ['Pazar', 'Pazartesi', 'Salı', 'Ƈarşamba', 'Perşembe', 'Cuma', 'Cumartesi'], 'weekdays_short' => ['Paz', 'Pts', 'Sal', 'Ƈar', 'Per', 'Cum', 'Cts'], 'weekdays_min' => ['Pz', 'Pt', 'Sa', 'Ƈa', 'Pe', 'Cu', 'Ct'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' ve '], ]; PK!ŠÕ‰–NNcarbon/src/Carbon/Lang/wo.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/wo_SN.php'; PK!•IĆ^~~ carbon/src/Carbon/Lang/ar_BH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/ar.php', [ 'formats' => [ 'L' => 'DD MMM, YYYY', ], 'months' => ['ŁŠŁ†Ų§ŁŠŲ±', 'فبراير', 'Ł…Ų§Ų±Ų³', 'Ų£ŲØŲ±ŁŠŁ„', 'Ł…Ų§ŁŠŁˆ', 'ŁŠŁˆŁ†ŁŠŁˆ', 'ŁŠŁˆŁ„ŁŠŁˆ', 'Ų£ŲŗŲ³Ų·Ų³', 'Ų³ŲØŲŖŁ…ŲØŲ±', 'أكتوبر', 'Ł†ŁˆŁŁ…ŲØŲ±', 'ŲÆŁŠŲ³Ł…ŲØŲ±'], 'months_short' => ['ŁŠŁ†Ų§', 'فبر', 'Ł…Ų§Ų±', 'Ų£ŲØŲ±', 'Ł…Ų§ŁŠ', 'ŁŠŁˆŁ†', 'ŁŠŁˆŁ„', 'Ų£ŲŗŲ³', 'Ų³ŲØŲŖ', 'أكت', 'Ł†ŁˆŁ', 'ديس'], 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'weekdays_min' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, ]); PK!pW)Q!carbon/src/Carbon/Lang/kab_DZ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - belkacem77@gmail.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['Yennayer', 'Fuį¹›ar', 'MeÉ£res', 'Yebrir', 'Mayyu', 'Yunyu', 'Yulyu', 'É£uct', 'Ctembeį¹›', 'Tubeį¹›', 'Wambeį¹›', 'Dujembeį¹›'], 'months_short' => ['Yen', 'Fur', 'MeÉ£', 'Yeb', 'May', 'Yun', 'Yul', 'É£uc', 'Cte', 'Tub', 'Wam', 'Duj'], 'weekdays' => ['Acer', 'Arim', 'Aram', 'Ahad', 'Amhad', 'Sem', 'Sed'], 'weekdays_short' => ['Ace', 'Ari', 'Ara', 'Aha', 'Amh', 'Sem', 'Sed'], 'weekdays_min' => ['Ace', 'Ari', 'Ara', 'Aha', 'Amh', 'Sem', 'Sed'], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, 'meridiem' => ['FT', 'MD'], 'year' => ':count n yiseggasen', 'y' => ':count n yiseggasen', 'a_year' => ':count n yiseggasen', 'month' => ':count n wayyuren', 'm' => ':count n wayyuren', 'a_month' => ':count n wayyuren', 'week' => ':count n ledwaį¹›', // less reliable 'w' => ':count n ledwaį¹›', // less reliable 'a_week' => ':count n ledwaį¹›', // less reliable 'day' => ':count n wussan', 'd' => ':count n wussan', 'a_day' => ':count n wussan', 'hour' => ':count n tsaɛtin', 'h' => ':count n tsaɛtin', 'a_hour' => ':count n tsaɛtin', 'minute' => ':count n tedqiqin', 'min' => ':count n tedqiqin', 'a_minute' => ':count n tedqiqin', 'second' => ':count tasdidt', // less reliable 's' => ':count tasdidt', // less reliable 'a_second' => ':count tasdidt', // less reliable ]); PK!q~mq   carbon/src/Carbon/Lang/en_AS.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!-GY†OOcarbon/src/Carbon/Lang/nso.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/nso_ZA.php'; PK!łƒ²§BB!carbon/src/Carbon/Lang/ccp_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ccp.php', [ 'weekend' => [0, 0], ]); PK!Ų§4l44 carbon/src/Carbon/Lang/zu_ZA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['Januwari', 'Februwari', 'Mashi', 'Ephreli', 'Meyi', 'Juni', 'Julayi', 'Agasti', 'Septhemba', 'Okthoba', 'Novemba', 'Disemba'], 'months_short' => ['Jan', 'Feb', 'Mas', 'Eph', 'Mey', 'Jun', 'Jul', 'Aga', 'Sep', 'Okt', 'Nov', 'Dis'], 'weekdays' => ['iSonto', 'uMsombuluko', 'uLwesibili', 'uLwesithathu', 'uLwesine', 'uLwesihlanu', 'uMgqibelo'], 'weekdays_short' => ['Son', 'Mso', 'Bil', 'Tha', 'Sin', 'Hla', 'Mgq'], 'weekdays_min' => ['Son', 'Mso', 'Bil', 'Tha', 'Sin', 'Hla', 'Mgq'], 'day_of_first_week_of_year' => 1, 'year' => 'kweminyaka engu-:count', 'y' => 'kweminyaka engu-:count', 'a_year' => 'kweminyaka engu-:count', 'month' => 'izinyanga ezingu-:count', 'm' => 'izinyanga ezingu-:count', 'a_month' => 'izinyanga ezingu-:count', 'week' => 'lwamasonto angu-:count', 'w' => 'lwamasonto angu-:count', 'a_week' => 'lwamasonto angu-:count', 'day' => 'ezingaba ngu-:count', 'd' => 'ezingaba ngu-:count', 'a_day' => 'ezingaba ngu-:count', 'hour' => 'amahora angu-:count', 'h' => 'amahora angu-:count', 'a_hour' => 'amahora angu-:count', 'minute' => 'ngemizuzu engu-:count', 'min' => 'ngemizuzu engu-:count', 'a_minute' => 'ngemizuzu engu-:count', 'second' => 'imizuzwana engu-:count', 's' => 'imizuzwana engu-:count', 'a_second' => 'imizuzwana engu-:count', ]); PK!q~mq   carbon/src/Carbon/Lang/en_BW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!/;Į)( ( !carbon/src/Carbon/Lang/tig_ER.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ge'ez Frontier Foundation locales@geez.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['ጄሪ', 'įˆˆįŠ«į‰²į‰µ', 'įˆ˜įŒ‹į‰¢į‰µ', 'įˆšį‹«į‹į‹«', 'įŒįŠ•į‰¦į‰µ', 'ሰነ', 'įˆ“įˆįˆˆ', 'įŠįˆ“įˆ°', 'įˆ˜įˆµįŠØįˆØįˆ', 'įŒ„į‰…įˆį‰²', 'įˆ•į‹³įˆ­', 'į‰³įˆ•įˆ³įˆµ'], 'months_short' => ['ጄሪ ', 'įˆˆįŠ«į‰²', 'įˆ˜įŒ‹į‰¢', 'įˆšį‹«į‹', 'įŒįŠ•į‰¦', 'ሰነ ', 'įˆ“įˆįˆˆ', 'įŠįˆ“įˆ°', 'መስከ', 'įŒ„į‰…įˆ', 'įˆ•į‹³įˆ­', 'į‰³įˆ•įˆ³'], 'weekdays' => ['įˆ°įŠ•į‰ į‰µ ዓባይ', 'įˆ°įŠ–', 'į‰³įˆ‹įˆøįŠ–', 'įŠ£įˆØįˆ­į‰£į‹“', 'ከሚሽ', 'įŒ…įˆį‹“į‰µ', 'įˆ°įŠ•į‰ į‰µ įŠ•įŠ¢įˆ½'], 'weekdays_short' => ['ሰ//į‹“', 'įˆ°įŠ– ', 'į‰³įˆ‹įˆø', 'ኣረር', 'ከሚሽ', 'įŒ…įˆį‹“', 'ሰ//įŠ•'], 'weekdays_min' => ['ሰ//į‹“', 'įˆ°įŠ– ', 'į‰³įˆ‹įˆø', 'ኣረር', 'ከሚሽ', 'įŒ…įˆį‹“', 'ሰ//įŠ•'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'meridiem' => ['į‰€į‹°įˆ ሰር įˆį‹•įˆ', 'įˆ“į‰† ሰር įˆį‹•įˆ'], 'year' => ':count įˆ›į‹­', // less reliable 'y' => ':count įˆ›į‹­', // less reliable 'a_year' => ':count įˆ›į‹­', // less reliable 'month' => ':count įˆøįˆįˆ½', // less reliable 'm' => ':count įˆøįˆįˆ½', // less reliable 'a_month' => ':count įˆøįˆįˆ½', // less reliable 'week' => ':count įˆ°į‰”į‹•', // less reliable 'w' => ':count įˆ°į‰”į‹•', // less reliable 'a_week' => ':count įˆ°į‰”į‹•', // less reliable 'day' => ':count į‹Žįˆ®', // less reliable 'd' => ':count į‹Žįˆ®', // less reliable 'a_day' => ':count į‹Žįˆ®', // less reliable 'hour' => ':count įˆ°į‹“į‰µ', // less reliable 'h' => ':count įˆ°į‹“į‰µ', // less reliable 'a_hour' => ':count įˆ°į‹“į‰µ', // less reliable 'minute' => ':count įŠ«įˆįŠ£į‹­į‰µ', // less reliable 'min' => ':count įŠ«įˆįŠ£į‹­į‰µ', // less reliable 'a_minute' => ':count įŠ«įˆįŠ£į‹­į‰µ', // less reliable 'second' => ':count įŠ«įˆįŠ£į‹­', 's' => ':count įŠ«įˆįŠ£į‹­', 'a_second' => ':count įŠ«įˆįŠ£į‹­', ]); PK!:É·ž carbon/src/Carbon/Lang/de_AT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - sheriffmarley * - Timo * - Michael Hohl * - Namoshek * - Bernhard Baumrock (BernhardBaumrock) */ return array_replace_recursive(require __DIR__.'/de.php', [ 'months' => [ 0 => 'JƤnner', ], 'months_short' => [ 0 => 'JƤn', ], ]); PK!x^“FF carbon/src/Carbon/Lang/en_FK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!iÜµŹ   carbon/src/Carbon/Lang/mn_MN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/mn.php'; PK!]"40——"carbon/src/Carbon/Lang/pa_Guru.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/pa.php', [ 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'D/M/yy', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY, h:mm a', 'LLLL' => 'dddd, D MMMM YYYY, h:mm a', ], 'months' => ['ąØœąØØąØµąØ°ą©€', 'ਫ਼ਰਵਰੀ', 'ਮਾਰਚ', 'ąØ…ąØŖą©ąØ°ą©ˆąØ²', 'ਮਈ', 'ąØœą©‚ąØØ', 'ਜੁਲਾਈ', 'ਅਗਸਤ', 'ਸਤੰਬਰ', 'ਅਕਤੂਬਰ', 'ਨਵੰਬਰ', 'ਦਸੰਬਰ'], 'months_short' => ['ਜਨ', 'ਫ਼ਰ', 'ਮਾਰਚ', 'ąØ…ąØŖą©ąØ°ą©ˆ', 'ਮਈ', 'ąØœą©‚ąØØ', 'ਜੁਲਾ', 'ਅਗ', 'ਸਤੰ', 'ਅਕਤੂ', 'ਨਵੰ', 'ਦਸੰ'], 'weekdays' => ['ਐਤਵਾਰ', 'ਸੋਮਵਾਰ', 'ਮੰਗਲਵਾਰ', 'ਬੁੱਧਵਾਰ', 'ਵੀਰਵਾਰ', 'ਸ਼ੁੱਕਰਵਾਰ', 'ਸ਼ਨਿੱਚਰਵਾਰ'], 'weekdays_short' => ['ਐਤ', 'ਸੋਮ', 'ਮੰਗਲ', 'ਬੁੱਧ', 'ਵੀਰ', 'ਸ਼ੁੱਕਰ', 'ਸ਼ਨਿੱਚਰ'], 'weekdays_min' => ['ਐਤ', 'ਸੋਮ', 'ਮੰਗ', 'ਬੁੱਧ', 'ਵੀਰ', 'ਸ਼ੁੱਕ', 'ਸ਼ਨਿੱ'], 'weekend' => [0, 0], ]); PK!„HžĻBBcarbon/src/Carbon/Lang/vun.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['utuko', 'kyiukonyi'], 'weekdays' => ['Jumapilyi', 'Jumatatuu', 'Jumanne', 'Jumatanu', 'Alhamisi', 'Ijumaa', 'Jumamosi'], 'weekdays_short' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'], 'weekdays_min' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'], 'months' => ['Januari', 'Februari', 'Machi', 'Aprilyi', 'Mei', 'Junyi', 'Julyai', 'Agusti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'], 'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK!ifö)OOcarbon/src/Carbon/Lang/fil.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/fil_PH.php'; PK!XķlZZ carbon/src/Carbon/Lang/ar_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/ar.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['ŁŠŁ†Ų§ŁŠŲ±', 'فبراير', 'Ł…Ų§Ų±Ų³', 'Ų£ŲØŲ±ŁŠŁ„', 'Ł…Ų§ŁŠŁˆ', 'ŁŠŁˆŁ†ŁŠŁˆ', 'ŁŠŁˆŁ„ŁŠŁˆ', 'Ų£ŲŗŲ³Ų·Ų³', 'Ų³ŲØŲŖŁ…ŲØŲ±', 'أكتوبر', 'Ł†ŁˆŁŁ…ŲØŲ±', 'ŲÆŁŠŲ³Ł…ŲØŲ±'], 'months_short' => ['ŁŠŁ†Ų§', 'فبر', 'Ł…Ų§Ų±', 'Ų£ŲØŲ±', 'Ł…Ų§ŁŠ', 'ŁŠŁˆŁ†', 'ŁŠŁˆŁ„', 'Ų£ŲŗŲ³', 'Ų³ŲØŲŖ', 'أكت', 'Ł†ŁˆŁ', 'ديس'], 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'weekdays_min' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'day_of_first_week_of_year' => 1, ]); PK!grtŠÖÖ carbon/src/Carbon/Lang/lg_UG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Akademe ya Luganda Kizito Birabwa kompyuta@kizito.uklinux.net */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['Janwaliyo', 'Febwaliyo', 'Marisi', 'Apuli', 'Maayi', 'Juuni', 'Julaayi', 'Agusito', 'Sebuttemba', 'Okitobba', 'Novemba', 'Desemba'], 'months_short' => ['Jan', 'Feb', 'Mar', 'Apu', 'Maa', 'Juu', 'Jul', 'Agu', 'Seb', 'Oki', 'Nov', 'Des'], 'weekdays' => ['Sabiiti', 'Balaza', 'Lwakubiri', 'Lwakusatu', 'Lwakuna', 'Lwakutaano', 'Lwamukaaga'], 'weekdays_short' => ['Sab', 'Bal', 'Lw2', 'Lw3', 'Lw4', 'Lw5', 'Lw6'], 'weekdays_min' => ['Sab', 'Bal', 'Lw2', 'Lw3', 'Lw4', 'Lw5', 'Lw6'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'month' => ':count njuba', // less reliable 'm' => ':count njuba', // less reliable 'a_month' => ':count njuba', // less reliable 'year' => ':count mwaaka', 'y' => ':count mwaaka', 'a_year' => ':count mwaaka', 'week' => ':count sabbiiti', 'w' => ':count sabbiiti', 'a_week' => ':count sabbiiti', 'day' => ':count lunaku', 'd' => ':count lunaku', 'a_day' => ':count lunaku', 'hour' => 'saawa :count', 'h' => 'saawa :count', 'a_hour' => 'saawa :count', 'minute' => 'ddakiika :count', 'min' => 'ddakiika :count', 'a_minute' => 'ddakiika :count', 'second' => ':count kyʼokubiri', 's' => ':count kyʼokubiri', 'a_second' => ':count kyʼokubiri', ]); PK!„HžĻBBcarbon/src/Carbon/Lang/jmc.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['utuko', 'kyiukonyi'], 'weekdays' => ['Jumapilyi', 'Jumatatuu', 'Jumanne', 'Jumatanu', 'Alhamisi', 'Ijumaa', 'Jumamosi'], 'weekdays_short' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'], 'weekdays_min' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'], 'months' => ['Januari', 'Februari', 'Machi', 'Aprilyi', 'Mei', 'Junyi', 'Julyai', 'Agusti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'], 'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK! žNNcarbon/src/Carbon/Lang/sa.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/sa_IN.php'; PK!)²(ƊŠcarbon/src/Carbon/Lang/prg.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'months' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'], 'months_short' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY-MM-dd', 'LL' => 'YYYY MMM D', 'LLL' => 'YYYY MMMM D HH:mm', 'LLLL' => 'YYYY MMMM D, dddd HH:mm', ], 'year' => ':count meta', 'y' => ':count meta', 'a_year' => ':count meta', 'month' => ':count mēniks', // less reliable 'm' => ':count mēniks', // less reliable 'a_month' => ':count mēniks', // less reliable 'week' => ':count sawaÄ«tin', // less reliable 'w' => ':count sawaÄ«tin', // less reliable 'a_week' => ':count sawaÄ«tin', // less reliable 'day' => ':count di', 'd' => ':count di', 'a_day' => ':count di', 'hour' => ':count bruktēt', // less reliable 'h' => ':count bruktēt', // less reliable 'a_hour' => ':count bruktēt', // less reliable 'minute' => ':count lÄ«kuts', // less reliable 'min' => ':count lÄ«kuts', // less reliable 'a_minute' => ':count lÄ«kuts', // less reliable 'second' => ':count kitan', // less reliable 's' => ':count kitan', // less reliable 'a_second' => ':count kitan', // less reliable ]); PK!ß/’——carbon/src/Carbon/Lang/ff.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM, YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'months' => ['siilo', 'colte', 'mbooy', 'seeɗto', 'duujal', 'korse', 'morso', 'juko', 'siilto', 'yarkomaa', 'jolal', 'bowte'], 'months_short' => ['sii', 'col', 'mbo', 'see', 'duu', 'kor', 'mor', 'juk', 'slt', 'yar', 'jol', 'bow'], 'weekdays' => ['dewo', 'aaɓnde', 'mawbaare', 'njeslaare', 'naasaande', 'mawnde', 'hoore-biir'], 'weekdays_short' => ['dew', 'aaɓ', 'maw', 'nje', 'naa', 'mwd', 'hbi'], 'weekdays_min' => ['dew', 'aaɓ', 'maw', 'nje', 'naa', 'mwd', 'hbi'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'meridiem' => ['subaka', 'kikiiɗe'], 'year' => ':count baret', // less reliable 'y' => ':count baret', // less reliable 'a_year' => ':count baret', // less reliable 'month' => ':count lewru', // less reliable 'm' => ':count lewru', // less reliable 'a_month' => ':count lewru', // less reliable 'week' => ':count naange', // less reliable 'w' => ':count naange', // less reliable 'a_week' => ':count naange', // less reliable 'day' => ':count dian', // less reliable 'd' => ':count dian', // less reliable 'a_day' => ':count dian', // less reliable 'hour' => ':count montor', // less reliable 'h' => ':count montor', // less reliable 'a_hour' => ':count montor', // less reliable 'minute' => ':count tokossuoum', // less reliable 'min' => ':count tokossuoum', // less reliable 'a_minute' => ':count tokossuoum', // less reliable 'second' => ':count tenen', // less reliable 's' => ':count tenen', // less reliable 'a_second' => ':count tenen', // less reliable ]); PK!Sl—®¢¢carbon/src/Carbon/Lang/kam.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['ÄØyakwakya', 'ÄØyawÄ©oo'], 'weekdays' => ['Wa kyumwa', 'Wa kwambÄ©lÄ©lya', 'Wa kelÄ©', 'Wa katatÅ©', 'Wa kana', 'Wa katano', 'Wa thanthatÅ©'], 'weekdays_short' => ['Wky', 'Wkw', 'Wkl', 'WtÅ©', 'Wkn', 'Wtn', 'Wth'], 'weekdays_min' => ['Wky', 'Wkw', 'Wkl', 'WtÅ©', 'Wkn', 'Wtn', 'Wth'], 'months' => ['Mwai wa mbee', 'Mwai wa kelÄ©', 'Mwai wa katatÅ©', 'Mwai wa kana', 'Mwai wa katano', 'Mwai wa thanthatÅ©', 'Mwai wa muonza', 'Mwai wa nyaanya', 'Mwai wa kenda', 'Mwai wa Ä©kumi', 'Mwai wa Ä©kumi na Ä©mwe', 'Mwai wa Ä©kumi na ilÄ©'], 'months_short' => ['Mbe', 'Kel', 'KtÅ©', 'Kan', 'Ktn', 'Tha', 'Moo', 'Nya', 'Knd', 'ÄØku', 'ÄØkm', 'ÄØkl'], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], // Too unreliable /* 'year' => ':count mbua', // less reliable 'y' => ':count mbua', // less reliable 'a_year' => ':count mbua', // less reliable 'month' => ':count ndakitali', // less reliable 'm' => ':count ndakitali', // less reliable 'a_month' => ':count ndakitali', // less reliable 'day' => ':count wia', // less reliable 'd' => ':count wia', // less reliable 'a_day' => ':count wia', // less reliable 'hour' => ':count orasan', // less reliable 'h' => ':count orasan', // less reliable 'a_hour' => ':count orasan', // less reliable 'minute' => ':count orasan', // less reliable 'min' => ':count orasan', // less reliable 'a_minute' => ':count orasan', // less reliable */ ]); PK!† "z   carbon/src/Carbon/Lang/it_VA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/it.php'; PK!šÅc"" carbon/src/Carbon/Lang/wo_SN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - The Debian Project Christian Perrier bubulle@debian.org */ return [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'MMMM DD, YYYY', 'LLL' => 'DD MMM HH:mm', 'LLLL' => 'MMMM DD, YYYY HH:mm', ], 'months' => ['sanwiy\'e', 'feebriy\'e', 'mars', 'awril', 'me', 'suwen', 'sulet', 'uut', 'septaambar', 'oktoobar', 'nowaambar', 'desaambar'], 'months_short' => ['san', 'fee', 'mar', 'awr', 'me ', 'suw', 'sul', 'uut', 'sep', 'okt', 'now', 'des'], 'weekdays' => ['dib\'eer', 'altine', 'talaata', 'allarba', 'alxames', 'ajjuma', 'gaawu'], 'weekdays_short' => ['dib', 'alt', 'tal', 'all', 'alx', 'ajj', 'gaa'], 'weekdays_min' => ['dib', 'alt', 'tal', 'all', 'alx', 'ajj', 'gaa'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'year' => ':count at', 'month' => ':count wĆØr', 'week' => ':count ayubĆ©s', 'day' => ':count bĆ©s', 'hour' => ':count waxtu', 'minute' => ':count simili', 'second' => ':count saa', ]; PK!ŽFIŸ±± carbon/src/Carbon/Lang/en_GB.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - Mayank Badola * - JD Isaacks */ return array_replace_recursive(require __DIR__.'/en.php', [ 'from_now' => 'in :time', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, ]); PK!co¦¦ carbon/src/Carbon/Lang/rw_RW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Rwanda Steve Murphy murf@e-tools.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], 'months' => ['Mutarama', 'Gashyantare', 'Werurwe', 'Mata', 'Gicuransi', 'Kamena', 'Nyakanga', 'Kanama', 'Nzeli', 'Ukwakira', 'Ugushyingo', 'Ukuboza'], 'months_short' => ['Mut', 'Gas', 'Wer', 'Mat', 'Gic', 'Kam', 'Nya', 'Kan', 'Nze', 'Ukw', 'Ugu', 'Uku'], 'weekdays' => ['Ku cyumweru', 'Kuwa mbere', 'Kuwa kabiri', 'Kuwa gatatu', 'Kuwa kane', 'Kuwa gatanu', 'Kuwa gatandatu'], 'weekdays_short' => ['Mwe', 'Mbe', 'Kab', 'Gtu', 'Kan', 'Gnu', 'Gnd'], 'weekdays_min' => ['Mwe', 'Mbe', 'Kab', 'Gtu', 'Kan', 'Gnu', 'Gnd'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'second' => ':count vuna', // less reliable 's' => ':count vuna', // less reliable 'a_second' => ':count vuna', // less reliable 'year' => 'aka :count', 'y' => 'aka :count', 'a_year' => 'aka :count', 'month' => 'ezi :count', 'm' => 'ezi :count', 'a_month' => 'ezi :count', 'week' => ':count icyumweru', 'w' => ':count icyumweru', 'a_week' => ':count icyumweru', 'day' => ':count nsi', 'd' => ':count nsi', 'a_day' => ':count nsi', 'hour' => 'saha :count', 'h' => 'saha :count', 'a_hour' => 'saha :count', 'minute' => ':count -nzinya', 'min' => ':count -nzinya', 'a_minute' => ':count -nzinya', ]); PK!ą†»¹€€!carbon/src/Carbon/Lang/gez_ER.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ge'ez Frontier Foundation locales@geez.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['ጠሐረ', 'įŠØį‰°į‰°', 'įˆ˜įŒˆį‰ ', 'įŠ įŠ€į‹˜', 'įŒįŠ•į‰£į‰µ', 'įˆ įŠ•į‹Ø', 'ሐመለ', 'ነሐሰ', 'ከረመ', 'įŒ į‰€įˆ˜', 'įŠ€į‹°įˆØ', 'įŠ€įˆ įˆ '], 'months_short' => ['ጠሐረ', 'įŠØį‰°į‰°', 'įˆ˜įŒˆį‰ ', 'įŠ įŠ€į‹˜', 'įŒįŠ•į‰£', 'įˆ įŠ•į‹Ø', 'ሐመለ', 'ነሐሰ', 'ከረመ', 'įŒ į‰€įˆ˜', 'įŠ€į‹°įˆØ', 'įŠ€įˆ įˆ '], 'weekdays' => ['įŠ„įŠį‹µ', 'įˆ°įŠ‘į‹­', 'įˆ įˆ‰įˆµ', 'įˆ«į‰„į‹•', 'įˆįˆ™įˆµ', 'į‹“įˆ­į‰ ', 'į‰€į‹³įˆšį‰µ'], 'weekdays_short' => ['įŠ„įŠį‹µ', 'įˆ°įŠ‘į‹­', 'įˆ įˆ‰įˆµ', 'įˆ«į‰„į‹•', 'įˆįˆ™įˆµ', 'į‹“įˆ­į‰ ', 'į‰€į‹³įˆš'], 'weekdays_min' => ['įŠ„įŠį‹µ', 'įˆ°įŠ‘į‹­', 'įˆ įˆ‰įˆµ', 'įˆ«į‰„į‹•', 'įˆįˆ™įˆµ', 'į‹“įˆ­į‰ ', 'į‰€į‹³įˆš'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'meridiem' => ['įŒ½į‰£įˆ•', 'įˆįˆ“į‰µ'], 'month' => ':count į‹ˆįˆ­įˆ•', // less reliable 'm' => ':count į‹ˆįˆ­įˆ•', // less reliable 'a_month' => ':count į‹ˆįˆ­įˆ•', // less reliable 'week' => ':count įˆ°į‰„į‹‘', // less reliable 'w' => ':count įˆ°į‰„į‹‘', // less reliable 'a_week' => ':count įˆ°į‰„į‹‘', // less reliable 'hour' => ':count įŠ įŠ•į‰µįˆ™', // less reliable 'h' => ':count įŠ įŠ•į‰µįˆ™', // less reliable 'a_hour' => ':count įŠ įŠ•į‰µįˆ™', // less reliable 'minute' => ':count įŠ•įŠ”įˆµ', // less reliable 'min' => ':count įŠ•įŠ”įˆµ', // less reliable 'a_minute' => ':count įŠ•įŠ”įˆµ', // less reliable 'year' => ':count į‹“įˆ˜į‰µ', 'y' => ':count į‹“įˆ˜į‰µ', 'a_year' => ':count į‹“įˆ˜į‰µ', 'day' => ':count į‹•įˆˆį‰µ', 'd' => ':count į‹•įˆˆį‰µ', 'a_day' => ':count į‹•įˆˆį‰µ', 'second' => ':count įŠ«įˆįŠ„', 's' => ':count įŠ«įˆįŠ„', 'a_second' => ':count įŠ«įˆįŠ„', ]); PK!«f”_ĢĢ carbon/src/Carbon/Lang/ta_MY.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ta.php', [ 'formats' => [ 'LT' => 'a h:mm', 'LTS' => 'a h:mm:ss', 'L' => 'D/M/yy', 'LL' => 'D MMM, YYYY', 'LLL' => 'D MMMM, YYYY, a h:mm', 'LLLL' => 'dddd, D MMMM, YYYY, a h:mm', ], 'months' => ['ஜனவரி', 'ą®Ŗą®æą®ŖąÆą®°ą®µą®°ą®æ', 'ą®®ą®¾ą®°ąÆą®šąÆ', 'ą®ą®ŖąÆą®°ą®²ąÆ', 'மே', 'ą®œąÆ‚ą®©ąÆ', 'ą®œąÆ‚ą®²ąÆˆ', 'ą®†ą®•ą®øąÆą®ŸąÆ', 'ą®šąÆ†ą®ŖąÆą®Ÿą®®ąÆą®Ŗą®°ąÆ', 'ą®…ą®•ąÆą®ŸąÆ‹ą®Ŗą®°ąÆ', 'ą®Øą®µą®®ąÆą®Ŗą®°ąÆ', 'ą®Ÿą®æą®šą®®ąÆą®Ŗą®°ąÆ'], 'months_short' => ['ஜன.', 'ą®Ŗą®æą®ŖąÆ.', 'ą®®ą®¾ą®°ąÆ.', 'ą®ą®ŖąÆ.', 'மே', 'ą®œąÆ‚ą®©ąÆ', 'ą®œąÆ‚ą®²ąÆˆ', 'ஆக.', 'ą®šąÆ†ą®ŖąÆ.', 'ą®…ą®•ąÆ.', 'நவ.', 'டிச.'], 'weekdays' => ['ą®žą®¾ą®Æą®æą®±ąÆ', 'ą®¤ą®æą®™ąÆą®•ą®³ąÆ', 'ą®šąÆ†ą®µąÆą®µą®¾ą®ÆąÆ', 'ą®ŖąÆą®¤ą®©ąÆ', 'ą®µą®æą®Æą®¾ą®“ą®©ąÆ', 'ą®µąÆ†ą®³ąÆą®³ą®æ', 'சனி'], 'weekdays_short' => ['ą®žą®¾ą®Æą®æ.', 'ą®¤ą®æą®™ąÆ.', 'ą®šąÆ†ą®µąÆ.', 'புத.', 'வியா.', 'ą®µąÆ†ą®³ąÆ.', 'சனி'], 'weekdays_min' => ['ą®žą®¾', 'தி', 'ą®šąÆ†', 'பு', 'வி', 'வெ', 'ச'], 'first_day_of_week' => 1, 'meridiem' => ['மு.ப', 'பி.ப'], ]); PK!īa£…  "carbon/src/Carbon/Lang/sr_Latn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/sr.php'; PK!ž«[Ч§carbon/src/Carbon/Lang/saq.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['Tesiran', 'Teipa'], 'weekdays' => ['Mderot ee are', 'Mderot ee kuni', 'Mderot ee ong’wan', 'Mderot ee inet', 'Mderot ee ile', 'Mderot ee sapa', 'Mderot ee kwe'], 'weekdays_short' => ['Are', 'Kun', 'Ong', 'Ine', 'Ile', 'Sap', 'Kwe'], 'weekdays_min' => ['Are', 'Kun', 'Ong', 'Ine', 'Ile', 'Sap', 'Kwe'], 'months' => ['Lapa le obo', 'Lapa le waare', 'Lapa le okuni', 'Lapa le ong’wan', 'Lapa le imet', 'Lapa le ile', 'Lapa le sapa', 'Lapa le isiet', 'Lapa le saal', 'Lapa le tomon', 'Lapa le tomon obo', 'Lapa le tomon waare'], 'months_short' => ['Obo', 'Waa', 'Oku', 'Ong', 'Ime', 'Ile', 'Sap', 'Isi', 'Saa', 'Tom', 'Tob', 'Tow'], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK!¶ią§[[carbon/src/Carbon/Lang/teo.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ta.php', [ 'meridiem' => ['Taparachu', 'Ebongi'], 'weekdays' => ['Nakaejuma', 'Nakaebarasa', 'Nakaare', 'Nakauni', 'Nakaung’on', 'Nakakany', 'Nakasabiti'], 'weekdays_short' => ['Jum', 'Bar', 'Aar', 'Uni', 'Ung', 'Kan', 'Sab'], 'weekdays_min' => ['Jum', 'Bar', 'Aar', 'Uni', 'Ung', 'Kan', 'Sab'], 'months' => ['Orara', 'Omuk', 'Okwamg’', 'Odung’el', 'Omaruk', 'Omodok’king’ol', 'Ojola', 'Opedel', 'Osokosokoma', 'Otibar', 'Olabor', 'Opoo'], 'months_short' => ['Rar', 'Muk', 'Kwa', 'Dun', 'Mar', 'Mod', 'Jol', 'Ped', 'Sok', 'Tib', 'Lab', 'Poo'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK!4rĖ(nn carbon/src/Carbon/Lang/xh_ZA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['eyoMqungu', 'eyoMdumba', 'eyoKwindla', 'uTshazimpuzi', 'uCanzibe', 'eyeSilimela', 'eyeKhala', 'eyeThupa', 'eyoMsintsi', 'eyeDwarha', 'eyeNkanga', 'eyoMnga'], 'months_short' => ['Mqu', 'Mdu', 'Kwi', 'Tsh', 'Can', 'Sil', 'Kha', 'Thu', 'Msi', 'Dwa', 'Nka', 'Mng'], 'weekdays' => ['iCawa', 'uMvulo', 'lwesiBini', 'lwesiThathu', 'ulweSine', 'lwesiHlanu', 'uMgqibelo'], 'weekdays_short' => ['Caw', 'Mvu', 'Bin', 'Tha', 'Sin', 'Hla', 'Mgq'], 'weekdays_min' => ['Caw', 'Mvu', 'Bin', 'Tha', 'Sin', 'Hla', 'Mgq'], 'day_of_first_week_of_year' => 1, 'year' => ':count ihlobo', // less reliable 'y' => ':count ihlobo', // less reliable 'a_year' => ':count ihlobo', // less reliable 'hour' => ':count iwotshi', // less reliable 'h' => ':count iwotshi', // less reliable 'a_hour' => ':count iwotshi', // less reliable 'minute' => ':count ingqalelo', // less reliable 'min' => ':count ingqalelo', // less reliable 'a_minute' => ':count ingqalelo', // less reliable 'second' => ':count nceda', // less reliable 's' => ':count nceda', // less reliable 'a_second' => ':count nceda', // less reliable 'month' => ':count inyanga', 'm' => ':count inyanga', 'a_month' => ':count inyanga', 'week' => ':count veki', 'w' => ':count veki', 'a_week' => ':count veki', 'day' => ':count imini', 'd' => ':count imini', 'a_day' => ':count imini', ]); PK!§‘©NNcarbon/src/Carbon/Lang/yi.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/yi_US.php'; PK!Vēü™žžcarbon/src/Carbon/Lang/ebu.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['KI', 'UT'], 'weekdays' => ['Kiumia', 'Njumatatu', 'Njumaine', 'Njumatano', 'Aramithi', 'Njumaa', 'NJumamothii'], 'weekdays_short' => ['Kma', 'Tat', 'Ine', 'Tan', 'Arm', 'Maa', 'NMM'], 'weekdays_min' => ['Kma', 'Tat', 'Ine', 'Tan', 'Arm', 'Maa', 'NMM'], 'months' => ['Mweri wa mbere', 'Mweri wa kaÄ©ri', 'Mweri wa kathatÅ©', 'Mweri wa kana', 'Mweri wa gatano', 'Mweri wa gatantatÅ©', 'Mweri wa mÅ©gwanja', 'Mweri wa kanana', 'Mweri wa kenda', 'Mweri wa ikÅ©mi', 'Mweri wa ikÅ©mi na Å©mwe', 'Mweri wa ikÅ©mi na KaÄ©rÄ©'], 'months_short' => ['Mbe', 'Kai', 'Kat', 'Kan', 'Gat', 'Gan', 'Mug', 'Knn', 'Ken', 'Iku', 'Imw', 'Igi'], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK!ƒpX] carbon/src/Carbon/Lang/ln_CF.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ln.php', [ 'weekdays' => ['eyenga', 'mokɔlɔ mwa yambo', 'mokɔlɔ mwa mĆ­balĆ©', 'mokɔlɔ mwa mĆ­sĆ”to', 'mokɔlɔ ya mĆ­nĆ©i', 'mokɔlɔ ya mĆ­tĆ”no', 'mpɔ́sɔ'], 'weekdays_short' => ['eye', 'ybo', 'mbl', 'mst', 'min', 'mtn', 'mps'], 'weekdays_min' => ['eye', 'ybo', 'mbl', 'mst', 'min', 'mtn', 'mps'], 'meridiem' => ['ntɔ́ngɔ́', 'mpókwa'], ]); PK!¼ģņ««carbon/src/Carbon/Lang/en.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Milos Sakovic * - Paul * - Pete Scopes (pdscopes) */ return [ /* * {1}, {0} and ]1,Inf[ are not needed as it's the default for English pluralization. * But as some languages are using en.php as a fallback, it's better to specify it * explicitly so those languages also fallback to English pluralization when a unit * is missing. */ 'year' => '{1}:count year|{0}:count years|]1,Inf[:count years', 'a_year' => '{1}a year|{0}:count years|]1,Inf[:count years', 'y' => '{1}:countyr|{0}:countyrs|]1,Inf[:countyrs', 'month' => '{1}:count month|{0}:count months|]1,Inf[:count months', 'a_month' => '{1}a month|{0}:count months|]1,Inf[:count months', 'm' => '{1}:countmo|{0}:countmos|]1,Inf[:countmos', 'week' => '{1}:count week|{0}:count weeks|]1,Inf[:count weeks', 'a_week' => '{1}a week|{0}:count weeks|]1,Inf[:count weeks', 'w' => ':countw', 'day' => '{1}:count day|{0}:count days|]1,Inf[:count days', 'a_day' => '{1}a day|{0}:count days|]1,Inf[:count days', 'd' => ':countd', 'hour' => '{1}:count hour|{0}:count hours|]1,Inf[:count hours', 'a_hour' => '{1}an hour|{0}:count hours|]1,Inf[:count hours', 'h' => ':counth', 'minute' => '{1}:count minute|{0}:count minutes|]1,Inf[:count minutes', 'a_minute' => '{1}a minute|{0}:count minutes|]1,Inf[:count minutes', 'min' => ':countm', 'second' => '{1}:count second|{0}:count seconds|]1,Inf[:count seconds', 'a_second' => '{1}a few seconds|{0}:count seconds|]1,Inf[:count seconds', 's' => ':counts', 'millisecond' => '{1}:count millisecond|{0}:count milliseconds|]1,Inf[:count milliseconds', 'a_millisecond' => '{1}a millisecond|{0}:count milliseconds|]1,Inf[:count milliseconds', 'ms' => ':countms', 'microsecond' => '{1}:count microsecond|{0}:count microseconds|]1,Inf[:count microseconds', 'a_microsecond' => '{1}a microsecond|{0}:count microseconds|]1,Inf[:count microseconds', 'µs' => ':countµs', 'ago' => ':time ago', 'from_now' => ':time from now', 'after' => ':time after', 'before' => ':time before', 'diff_now' => 'just now', 'diff_today' => 'today', 'diff_yesterday' => 'yesterday', 'diff_tomorrow' => 'tomorrow', 'diff_before_yesterday' => 'before yesterday', 'diff_after_tomorrow' => 'after tomorrow', 'period_recurrences' => '{1}once|{0}:count times|]1,Inf[:count times', 'period_interval' => 'every :interval', 'period_start_date' => 'from :date', 'period_end_date' => 'to :date', 'months' => ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'], 'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 'weekdays' => ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], 'weekdays_short' => ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 'weekdays_min' => ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'], 'ordinal' => function ($number) { $lastDigit = $number % 10; return $number.( (~~($number % 100 / 10) === 1) ? 'th' : ( ($lastDigit === 1) ? 'st' : ( ($lastDigit === 2) ? 'nd' : ( ($lastDigit === 3) ? 'rd' : 'th' ) ) ) ); }, 'list' => [', ', ' and '], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]; PK!x^“FF carbon/src/Carbon/Lang/en_SE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!īō6ņNNcarbon/src/Carbon/Lang/ak.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/ak_GH.php'; PK!½7OOcarbon/src/Carbon/Lang/tcy.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/tcy_IN.php'; PK!ōĖ!kµµ carbon/src/Carbon/Lang/ru_UA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RFC 2319 bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/ru.php', [ 'weekdays' => ['Š²Š¾ŃŠŗŃ€ŠµŃŠµŠ½ŃŒŠµ', 'понеГельник', 'вторник', 'среГа', 'четверг', 'ŠæŃŃ‚Š½ŠøŃ†Š°', 'ŃŃƒŠ±Š±Š¾Ń‚Š°'], 'weekdays_short' => ['вск', 'пнГ', 'вто', 'срГ', 'чтв', 'птн', 'суб'], 'weekdays_min' => ['вс', 'пн', 'вт', 'ср', 'чт', 'пт', 'су'], ]); PK!Šfōc   carbon/src/Carbon/Lang/fr_GF.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!ŲX…Ń  carbon/src/Carbon/Lang/th.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Nate Whittaker * - John MacAslan * - Chanintorn Asavavichairoj * - JD Isaacks * - ROKAISAKKON * - RO'KAISAKKON * - Andreas Möller * - nithisa */ return [ 'year' => ':count ปี', 'y' => ':count ปี', 'month' => ':count เดือน', 'm' => ':count เดือน', 'week' => ':count ąøŖąø±ąø›ąø”ąø²ąø«ą¹Œ', 'w' => ':count ąøŖąø±ąø›ąø”ąø²ąø«ą¹Œ', 'day' => ':count วัน', 'd' => ':count วัน', 'hour' => ':count ąøŠąø±ą¹ˆąø§ą¹‚ąø”ąø‡', 'h' => ':count ąøŠąø±ą¹ˆąø§ą¹‚ąø”ąø‡', 'minute' => ':count นาที', 'min' => ':count นาที', 'second' => ':count วณนาที', 'a_second' => '{1}ą¹„ąø”ą¹ˆąøąøµą¹ˆąø§ąø“ąø™ąø²ąø—ąøµ|]1,Inf[:count วณนาที', 's' => ':count วณนาที', 'ago' => ':timeąø—ąøµą¹ˆą¹ąø„ą¹‰ąø§', 'from_now' => 'อีก :time', 'after' => ':timeąø«ąø„ąø±ąø‡ąøˆąø²ąøąø™ąøµą¹‰', 'before' => ':timeąøą¹ˆąø­ąø™', 'diff_now' => 'ขณะนี้', 'diff_today' => 'วันนี้', 'diff_today_regexp' => 'วันนี้(?:\\s+เวคา)?', 'diff_yesterday' => 'ą¹€ąø”ąø·ą¹ˆąø­ąø§ąø²ąø™', 'diff_yesterday_regexp' => 'ą¹€ąø”ąø·ą¹ˆąø­ąø§ąø²ąø™ąø™ąøµą¹‰(?:\\s+เวคา)?', 'diff_tomorrow' => 'ąøžąø£ąøøą¹ˆąø‡ąø™ąøµą¹‰', 'diff_tomorrow_regexp' => 'ąøžąø£ąøøą¹ˆąø‡ąø™ąøµą¹‰(?:\\s+เวคา)?', 'formats' => [ 'LT' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY เวคา H:mm', 'LLLL' => 'วันddddąø—ąøµą¹ˆ D MMMM YYYY เวคา H:mm', ], 'calendar' => [ 'sameDay' => '[วันนี้ เวคา] LT', 'nextDay' => '[ąøžąø£ąøøą¹ˆąø‡ąø™ąøµą¹‰ เวคา] LT', 'nextWeek' => 'dddd[หน้า เวคา] LT', 'lastDay' => '[ą¹€ąø”ąø·ą¹ˆąø­ąø§ąø²ąø™ąø™ąøµą¹‰ เวคา] LT', 'lastWeek' => '[วัน]dddd[ąø—ąøµą¹ˆą¹ąø„ą¹‰ąø§ เวคา] LT', 'sameElse' => 'L', ], 'meridiem' => ['ąøą¹ˆąø­ąø™ą¹€ąø—ąøµą¹ˆąø¢ąø‡', 'ąø«ąø„ąø±ąø‡ą¹€ąø—ąøµą¹ˆąø¢ąø‡'], 'months' => ['ดกราคด', 'ąøąøøąø”ąø ąø²ąøžąø±ąø™ąø˜ą¹Œ', 'ดีนาคด', 'เดษายน', 'ąøžąø¤ąø©ąø ąø²ąø„ąø”', 'ดณถุนายน', 'ąøąø£ąøąøŽąø²ąø„ąø”', 'สณงหาคด', 'กันยายน', 'ตุคาคด', 'ąøžąø¤ąøØąøˆąø“ąøąø²ąø¢ąø™', 'ąø˜ąø±ąø™ąø§ąø²ąø„ąø”'], 'months_short' => ['ąø”.ąø„.', 'ก.ąøž.', 'ดี.ąø„.', 'เด.ąø¢.', 'ąøž.ąø„.', 'ดณ.ąø¢.', 'ก.ąø„.', 'ąøŖ.ąø„.', 'ก.ąø¢.', 'ąø•.ąø„.', 'ąøž.ąø¢.', 'ธ.ąø„.'], 'weekdays' => ['ąø­ąø²ąø—ąø“ąø•ąø¢ą¹Œ', 'ąøˆąø±ąø™ąø—ąø£ą¹Œ', 'อังคาร', 'ąøžąøøąø˜', 'ąøžąø¤ąø«ąø±ąøŖąøšąø”ąøµ', 'ศุกร์', 'ą¹€ąøŖąø²ąø£ą¹Œ'], 'weekdays_short' => ['ąø­ąø²ąø—ąø“ąø•ąø¢ą¹Œ', 'ąøˆąø±ąø™ąø—ąø£ą¹Œ', 'อังคาร', 'ąøžąøøąø˜', 'ąøžąø¤ąø«ąø±ąøŖ', 'ศุกร์', 'ą¹€ąøŖąø²ąø£ą¹Œ'], 'weekdays_min' => ['ąø­ąø².', 'จ.', 'ąø­.', 'ąøž.', 'ąøžąø¤.', 'ąøØ.', 'ąøŖ.'], 'list' => [', ', ' แคะ '], ]; PK!Ą×Y((carbon/src/Carbon/Lang/kkj.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ ]); PK!šc ÷żżcarbon/src/Carbon/Lang/dyo.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'weekdays' => ['Dimas', 'Teneŋ', 'Talata', 'Alarbay', 'Aramisay', 'Arjuma', 'Sibiti'], 'weekdays_short' => ['Dim', 'Ten', 'Tal', 'Ala', 'Ara', 'Arj', 'Sib'], 'weekdays_min' => ['Dim', 'Ten', 'Tal', 'Ala', 'Ara', 'Arj', 'Sib'], 'months' => ['Sanvie', 'FĆ©birie', 'Mars', 'Aburil', 'Mee', 'Sueŋ', 'SĆŗuyee', 'Ut', 'Settembar', 'Oktobar', 'Novembar', 'Disambar'], 'months_short' => ['Sa', 'Fe', 'Ma', 'Ab', 'Me', 'Su', 'SĆŗ', 'Ut', 'Se', 'Ok', 'No', 'De'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], ]); PK!Ēl3·AA carbon/src/Carbon/Lang/ug_CN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Kunal Marwaha * - Alim Boyaq */ return require __DIR__.'/ug.php'; PK!źśķ carbon/src/Carbon/Lang/en_CY.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - NehaGautam */ return array_replace_recursive(require __DIR__.'/en.php', [ 'from_now' => 'in :time', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD-MM-YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, ]); PK!łŪŻ;;carbon/src/Carbon/Lang/khq.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['Adduha', 'Aluula'], 'weekdays' => ['Alhadi', 'Atini', 'Atalata', 'Alarba', 'Alhamiisa', 'Aljuma', 'Assabdu'], 'weekdays_short' => ['Alh', 'Ati', 'Ata', 'Ala', 'Alm', 'Alj', 'Ass'], 'weekdays_min' => ['Alh', 'Ati', 'Ata', 'Ala', 'Alm', 'Alj', 'Ass'], 'months' => ['Žanwiye', 'Feewiriye', 'Marsi', 'Awiril', 'Me', 'Žuweŋ', 'Žuyye', 'Ut', 'Sektanbur', 'Oktoobur', 'Noowanbur', 'Deesanbur'], 'months_short' => ['Žan', 'Fee', 'Mar', 'Awi', 'Me', 'Žuw', 'Žuy', 'Ut', 'Sek', 'Okt', 'Noo', 'Dee'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM, YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], ]); PK!WWŪ   carbon/src/Carbon/Lang/ca_ES.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ca.php'; PK!­5±Ļąą carbon/src/Carbon/Lang/li_NL.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - information from Kenneth Christiansen Kenneth Christiansen, Pablo Saratxaga kenneth@gnu.org, pablo@mandriva.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], 'months' => ['jannewarie', 'fibberwarie', 'miert', 'eprĆØl', 'meij', 'junie', 'julie', 'augustus', 'september', 'oktober', 'november', 'desember'], 'months_short' => ['jan', 'fib', 'mie', 'epr', 'mei', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'des'], 'weekdays' => ['zóndig', 'maondig', 'daensdig', 'goonsdig', 'dónderdig', 'vriedig', 'zaoterdig'], 'weekdays_short' => ['zón', 'mao', 'dae', 'goo', 'dón', 'vri', 'zao'], 'weekdays_min' => ['zón', 'mao', 'dae', 'goo', 'dón', 'vri', 'zao'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'minute' => ':count momĆŖnt', // less reliable 'min' => ':count momĆŖnt', // less reliable 'a_minute' => ':count momĆŖnt', // less reliable 'year' => ':count jaor', 'y' => ':count jaor', 'a_year' => ':count jaor', 'month' => ':count maond', 'm' => ':count maond', 'a_month' => ':count maond', 'week' => ':count waek', 'w' => ':count waek', 'a_week' => ':count waek', 'day' => ':count daag', 'd' => ':count daag', 'a_day' => ':count daag', 'hour' => ':count oer', 'h' => ':count oer', 'a_hour' => ':count oer', 'second' => ':count Secónd', 's' => ':count Secónd', 'a_second' => ':count Secónd', ]); PK!°įĒĀ Ā carbon/src/Carbon/Lang/bm.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Estelle Comment */ return [ 'year' => 'san :count', 'a_year' => '{1}san kelen|san :count', 'y' => 'san :count', 'month' => 'kalo :count', 'a_month' => '{1}kalo kelen|kalo :count', 'm' => 'k. :count', 'week' => 'dɔgɔkun :count', 'a_week' => 'dɔgɔkun kelen', 'w' => 'd. :count', 'day' => 'tile :count', 'd' => 't. :count', 'a_day' => '{1}tile kelen|tile :count', 'hour' => 'lɛrɛ :count', 'a_hour' => '{1}lɛrɛ kelen|lɛrɛ :count', 'h' => 'l. :count', 'minute' => 'miniti :count', 'a_minute' => '{1}miniti kelen|miniti :count', 'min' => 'm. :count', 'second' => 'sekondi :count', 'a_second' => '{1}sanga dama dama|sekondi :count', 's' => 'sek. :count', 'ago' => 'a bɛ :time bɔ', 'from_now' => ':time kɔnɔ', 'diff_today' => 'Bi', 'diff_yesterday' => 'Kunu', 'diff_yesterday_regexp' => 'Kunu(?:\\s+lɛrɛ)?', 'diff_tomorrow' => 'Sini', 'diff_tomorrow_regexp' => 'Sini(?:\\s+lɛrɛ)?', 'diff_today_regexp' => 'Bi(?:\\s+lɛrɛ)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'MMMM [tile] D [san] YYYY', 'LLL' => 'MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm', 'LLLL' => 'dddd MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm', ], 'calendar' => [ 'sameDay' => '[Bi lɛrɛ] LT', 'nextDay' => '[Sini lɛrɛ] LT', 'nextWeek' => 'dddd [don lɛrɛ] LT', 'lastDay' => '[Kunu lɛrɛ] LT', 'lastWeek' => 'dddd [tɛmɛnen lɛrɛ] LT', 'sameElse' => 'L', ], 'months' => ['Zanwuyekalo', 'Fewuruyekalo', 'Marisikalo', 'Awirilikalo', 'Mɛkalo', 'Zuwɛnkalo', 'Zuluyekalo', 'Utikalo', 'Sɛtanburukalo', 'ɔkutɔburukalo', 'Nowanburukalo', 'Desanburukalo'], 'months_short' => ['Zan', 'Few', 'Mar', 'Awi', 'Mɛ', 'Zuw', 'Zul', 'Uti', 'Sɛt', 'ɔku', 'Now', 'Des'], 'weekdays' => ['Kari', 'Ntɛnɛn', 'Tarata', 'Araba', 'Alamisa', 'Juma', 'Sibiri'], 'weekdays_short' => ['Kar', 'Ntɛ', 'Tar', 'Ara', 'Ala', 'Jum', 'Sib'], 'weekdays_min' => ['Ka', 'Nt', 'Ta', 'Ar', 'Al', 'Ju', 'Si'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' ni '], ]; PK!¬TAz   carbon/src/Carbon/Lang/pt_GW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/pt.php'; PK!žœ+oŠŠcarbon/src/Carbon/Lang/nmg.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['manĆ”', 'kugĆŗ'], 'weekdays' => ['sɔ́ndɔ', 'mɔ́ndɔ', 'sɔ́ndɔ mafĆŗ mĆ”ba', 'sɔ́ndɔ mafĆŗ mĆ”lal', 'sɔ́ndɔ mafĆŗ mĆ”na', 'mabĆ”gĆ” mĆ” sukul', 'sĆ”sadi'], 'weekdays_short' => ['sɔ́n', 'mɔ́n', 'smb', 'sml', 'smn', 'mbs', 'sas'], 'weekdays_min' => ['sɔ́n', 'mɔ́n', 'smb', 'sml', 'smn', 'mbs', 'sas'], 'months' => ['ngwɛn matĆ”hra', 'ngwɛn ńmba', 'ngwɛn ńlal', 'ngwɛn ńna', 'ngwɛn ńtan', 'ngwɛn ńtuó', 'ngwɛn hɛmbuɛrĆ­', 'ngwɛn lɔmbi', 'ngwɛn rɛbvuĆ¢', 'ngwɛn wum', 'ngwɛn wum navĒ”r', 'krĆ­simin'], 'months_short' => ['ng1', 'ng2', 'ng3', 'ng4', 'ng5', 'ng6', 'ng7', 'ng8', 'ng9', 'ng10', 'ng11', 'kris'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], ]); PK!øüdĢ!carbon/src/Carbon/Lang/tcy_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IndLinux.org, Samsung Electronics Co., Ltd. alexey.merzlyakov@samsung.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['ಜನವರಿ', 'ą²«ą³†ą²¬ą³ą²°ą³ą²µą²°ą²æ', 'ą²®ą²¾ą²°ą³ą²šą³', 'ą²ą²Ŗą³ą²°ą²æą²²ą³ā€Œā€Œ', 'ಮೇ', 'ą²œą³‚ą²Øą³', 'ಜುಲೈ', 'ą²†ą²—ą²øą³ą²Ÿą³', 'ą²øą³†ą²Ŗą³ą²Ÿą³†ą²‚ą²¬ą²°ą³ā€Œ', 'ą²…ą²•ą³ą²Ÿą³‹ą²¬ą²°ą³', 'ą²Øą²µą³†ą²‚ą²¬ą²°ą³', 'ą²”ą²æą²øą³†ą²‚ą²¬ą²°ą³'], 'months_short' => ['ಜ', 'ಫೆ', 'ಮಾ', 'ą²', 'ಮೇ', 'ą²œą³‚', 'ಜು', 'ಆ', 'ಸೆ', 'ą²…', 'ನ', 'ಔಿ'], 'weekdays' => ['ಐ಄ಾರ', 'ಸೋಮಾರ', 'ಅಂಗರೆ', 'ಬುಧಾರ', 'ಗುರುವಾರ', 'ą²¶ą³ą²•ą³ą²°ą²°', 'ಶನಿವಾರ'], 'weekdays_short' => ['ಐ', 'ಸೋ', 'ಅಂ', 'ಬು', 'ಗು', 'ಶು', 'ą²¶'], 'weekdays_min' => ['ಐ', 'ಸೋ', 'ಅಂ', 'ಬು', 'ಗು', 'ಶು', 'ą²¶'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['ಕಾಂಔೆ', 'ą²¬ą²Æą³ą²Æ'], 'year' => ':count ą²Øą³€ą²°ą³', // less reliable 'y' => ':count ą²Øą³€ą²°ą³', // less reliable 'a_year' => ':count ą²Øą³€ą²°ą³', // less reliable 'month' => ':count ą²®ą³€ą²Øą³', // less reliable 'm' => ':count ą²®ą³€ą²Øą³', // less reliable 'a_month' => ':count ą²®ą³€ą²Øą³', // less reliable 'day' => ':count ą²øą³ą²—ą³ą²—ą²æ', // less reliable 'd' => ':count ą²øą³ą²—ą³ą²—ą²æ', // less reliable 'a_day' => ':count ą²øą³ą²—ą³ą²—ą²æ', // less reliable ]); PK!m÷|®®carbon/src/Carbon/Lang/tet.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Joshua Brooks * - FranƧois B */ return [ 'year' => 'tinan :count', 'a_year' => '{1}tinan ida|tinan :count', 'month' => 'fulan :count', 'a_month' => '{1}fulan ida|fulan :count', 'week' => 'semana :count', 'a_week' => '{1}semana ida|semana :count', 'day' => 'loron :count', 'a_day' => '{1}loron ida|loron :count', 'hour' => 'oras :count', 'a_hour' => '{1}oras ida|oras :count', 'minute' => 'minutu :count', 'a_minute' => '{1}minutu ida|minutu :count', 'second' => 'segundu :count', 'a_second' => '{1}segundu balun|segundu :count', 'ago' => ':time liuba', 'from_now' => 'iha :time', 'diff_yesterday' => 'Horiseik', 'diff_yesterday_regexp' => 'Horiseik(?:\\s+iha)?', 'diff_today' => 'Ohin', 'diff_today_regexp' => 'Ohin(?:\\s+iha)?', 'diff_tomorrow' => 'Aban', 'diff_tomorrow_regexp' => 'Aban(?:\\s+iha)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Ohin iha] LT', 'nextDay' => '[Aban iha] LT', 'nextWeek' => 'dddd [iha] LT', 'lastDay' => '[Horiseik iha] LT', 'lastWeek' => 'dddd [semana kotuk] [iha] LT', 'sameElse' => 'L', ], 'ordinal' => ':numberĀŗ', 'months' => ['Janeiru', 'Fevereiru', 'Marsu', 'Abril', 'Maiu', 'JuƱu', 'Jullu', 'Agustu', 'Setembru', 'Outubru', 'Novembru', 'Dezembru'], 'months_short' => ['Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'Out', 'Nov', 'Dez'], 'weekdays' => ['Domingu', 'Segunda', 'Tersa', 'Kuarta', 'Kinta', 'Sesta', 'Sabadu'], 'weekdays_short' => ['Dom', 'Seg', 'Ters', 'Kua', 'Kint', 'Sest', 'Sab'], 'weekdays_min' => ['Do', 'Seg', 'Te', 'Ku', 'Ki', 'Ses', 'Sa'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, ]; PK!Šfōc   carbon/src/Carbon/Lang/fr_RW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!K‚ČzFF carbon/src/Carbon/Lang/pt_MZ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/pt.php', [ 'first_day_of_week' => 0, ]); PK!œ#zł“ “ carbon/src/Carbon/Lang/ga.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Thanks to AndrĆ© Silva : https://github.com/askpt */ return [ 'year' => ':count bliain', 'a_year' => '{1}bliain|:count bliain', 'y' => ':countb', 'month' => ':count mĆ­', 'a_month' => '{1}mĆ­|:count mĆ­', 'm' => ':countm', 'week' => ':count sheachtain', 'a_week' => '{1}sheachtain|:count sheachtain', 'w' => ':countsh', 'day' => ':count lĆ”', 'a_day' => '{1}lĆ”|:count lĆ”', 'd' => ':countl', 'hour' => ':count uair an chloig', 'a_hour' => '{1}uair an chloig|:count uair an chloig', 'h' => ':countu', 'minute' => ':count nóimĆ©ad', 'a_minute' => '{1}nóimĆ©ad|:count nóimĆ©ad', 'min' => ':countn', 'second' => ':count soicind', 'a_second' => '{1}cĆŗpla soicind|:count soicind', 's' => ':countso', 'ago' => ':time ó shin', 'from_now' => 'i :time', 'after' => ':time tar Ć©is', 'before' => ':time roimh', 'diff_now' => 'anois', 'diff_today' => 'Inniu', 'diff_today_regexp' => 'Inniu(?:\\s+ag)?', 'diff_yesterday' => 'innĆ©', 'diff_yesterday_regexp' => 'InnĆ©(?:\\s+aig)?', 'diff_tomorrow' => 'amĆ”rach', 'diff_tomorrow_regexp' => 'AmĆ”rach(?:\\s+ag)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Inniu ag] LT', 'nextDay' => '[AmĆ”rach ag] LT', 'nextWeek' => 'dddd [ag] LT', 'lastDay' => '[InnĆ© aig] LT', 'lastWeek' => 'dddd [seo caite] [ag] LT', 'sameElse' => 'L', ], 'months' => ['EanĆ”ir', 'Feabhra', 'MĆ”rta', 'AibreĆ”n', 'Bealtaine', 'MĆ©itheamh', 'IĆŗil', 'LĆŗnasa', 'MeĆ”n Fómhair', 'Deaireadh Fómhair', 'Samhain', 'Nollaig'], 'months_short' => ['EanĆ”', 'Feab', 'MĆ”rt', 'Aibr', 'Beal', 'MĆ©it', 'IĆŗil', 'LĆŗna', 'MeĆ”n', 'Deai', 'Samh', 'Noll'], 'weekdays' => ['DĆ© Domhnaigh', 'DĆ© Luain', 'DĆ© MĆ”irt', 'DĆ© CĆ©adaoin', 'DĆ©ardaoin', 'DĆ© hAoine', 'DĆ© Satharn'], 'weekdays_short' => ['Dom', 'Lua', 'MĆ”i', 'CĆ©a', 'DĆ©a', 'hAo', 'Sat'], 'weekdays_min' => ['Do', 'Lu', 'MĆ”', 'Ce', 'DĆ©', 'hA', 'Sa'], 'ordinal' => function ($number) { return $number.($number === 1 ? 'd' : ($number % 10 === 2 ? 'na' : 'mh')); }, 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' agus '], 'meridiem' => ['r.n.', 'i.n.'], ]; PK!5ó.!carbon/src/Carbon/Lang/shs_CA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Neskie Manuel bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['PellkwetĢ“min', 'PelctsipwenĢ“ten', 'PellsqĆ©pts', 'PesllĆ©wten', 'Pell7ell7Ć©7llqten', 'PelltspĆ©ntsk', 'PelltqwelqĢ“wĆ©lĢ“t', 'Pellct̓éxelĢ“cten', 'PesqelqlĆ©lten', 'PesllwĆ©lsten', 'Pellc7ell7Ć©7llcwtenĢ“', 'PelltetĆ©tqĢ“em'], 'months_short' => ['Kwe', 'Tsi', 'Sqe', 'Ɖwt', 'Ell', 'Tsp', 'Tqw', 'Ct̓é', 'Qel', 'WĆ©l', 'U7l', 'Tet'], 'weekdays' => ['SxetspesqĢ“t', 'SpetkesqĢ“t', 'SelesqĢ“t', 'SkellesqĢ“t', 'SmesesqĢ“t', 'StselkstesqĢ“t', 'StqmekstesqĢ“t'], 'weekdays_short' => ['Sxe', 'Spe', 'Sel', 'Ske', 'Sme', 'Sts', 'Stq'], 'weekdays_min' => ['Sxe', 'Spe', 'Sel', 'Ske', 'Sme', 'Sts', 'Stq'], 'day_of_first_week_of_year' => 1, 'year' => ':count sqlĆ©lten', // less reliable 'y' => ':count sqlĆ©lten', // less reliable 'a_year' => ':count sqlĆ©lten', // less reliable 'month' => ':count swewll', // less reliable 'm' => ':count swewll', // less reliable 'a_month' => ':count swewll', // less reliable 'hour' => ':count seqwlĆŗt', // less reliable 'h' => ':count seqwlĆŗt', // less reliable 'a_hour' => ':count seqwlĆŗt', // less reliable ]); PK!’L(‹OOcarbon/src/Carbon/Lang/wal.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/wal_ET.php'; PK!Ū}£Ś % %carbon/src/Carbon/Lang/uk.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ $processHoursFunction = function (\Carbon\CarbonInterface $date, string $format) { return $format.'о'.($date->hour === 11 ? 'б' : '').'] LT'; }; /* * Authors: * - Kunal Marwaha * - Josh Soref * - FranƧois B * - Tim Fish * - Serhan Apaydın * - Max Mykhailenko * - JD Isaacks * - Max Kovpak * - AucT * - Philippe Vaucher * - Ilya Shaplyko * - Vadym Ievsieiev * - Denys Kurets * - Igor Kasyanchuk * - Tsutomu Kuroda * - tjku * - Max Melentiev * - Oleh * - epaminond * - Juanito Fatas * - Vitalii Khustochka * - Akira Matsuda * - Christopher Dell * - Enrique Vidal * - Simone Carletti * - Aaron Patterson * - Andriy Tyurnikov * - NicolĆ”s Hock Isaza * - Iwakura Taro * - Andrii Ponomarov * - alecrabbit * - vystepanenko * - AlexWalkerson * - Andre Havryliuk (Andrend) * - Max Datsenko (datsenko-md) */ return [ 'year' => ':count рік|:count роки|:count років', 'y' => ':countр', 'a_year' => '{1}рік|:count рік|:count роки|:count років', 'month' => ':count Š¼Ń–ŃŃŃ†ŃŒ|:count Š¼Ń–ŃŃŃ†Ń–|:count Š¼Ń–ŃŃŃ†Ń–Š²', 'm' => ':countм', 'a_month' => '{1}Š¼Ń–ŃŃŃ†ŃŒ|:count Š¼Ń–ŃŃŃ†ŃŒ|:count Š¼Ń–ŃŃŃ†Ń–|:count Š¼Ń–ŃŃŃ†Ń–Š²', 'week' => ':count Ń‚ŠøŠ¶Š“ŠµŠ½ŃŒ|:count тижні|:count тижнів', 'w' => ':countт', 'a_week' => '{1}Ń‚ŠøŠ¶Š“ŠµŠ½ŃŒ|:count Ń‚ŠøŠ¶Š“ŠµŠ½ŃŒ|:count тижні|:count тижнів', 'day' => ':count Гень|:count Гні|:count Гнів', 'd' => ':countŠ“', 'a_day' => '{1}Гень|:count Гень|:count Гні|:count Гнів', 'hour' => ':count гоГина|:count гоГини|:count гоГин', 'h' => ':countг', 'a_hour' => '{1}гоГина|:count гоГина|:count гоГини|:count гоГин', 'minute' => ':count хвилина|:count хвилини|:count хвилин', 'min' => ':countхв', 'a_minute' => '{1}хвилина|:count хвилина|:count хвилини|:count хвилин', 'second' => ':count секунГа|:count секунГи|:count секунГ', 's' => ':countсек', 'a_second' => '{1}ŠŗŃ–Š»ŃŒŠŗŠ° секунГ|:count секунГа|:count секунГи|:count секунГ', 'hour_ago' => ':count гоГину|:count гоГини|:count гоГин', 'a_hour_ago' => '{1}гоГину|:count гоГину|:count гоГини|:count гоГин', 'minute_ago' => ':count Ń…Š²ŠøŠ»ŠøŠ½Ńƒ|:count хвилини|:count хвилин', 'a_minute_ago' => '{1}Ń…Š²ŠøŠ»ŠøŠ½Ńƒ|:count Ń…Š²ŠøŠ»ŠøŠ½Ńƒ|:count хвилини|:count хвилин', 'second_ago' => ':count секунГу|:count секунГи|:count секунГ', 'a_second_ago' => '{1}ŠŗŃ–Š»ŃŒŠŗŠ° секунГ|:count секунГу|:count секунГи|:count секунГ', 'hour_from_now' => ':count гоГину|:count гоГини|:count гоГин', 'a_hour_from_now' => '{1}гоГину|:count гоГину|:count гоГини|:count гоГин', 'minute_from_now' => ':count Ń…Š²ŠøŠ»ŠøŠ½Ńƒ|:count хвилини|:count хвилин', 'a_minute_from_now' => '{1}Ń…Š²ŠøŠ»ŠøŠ½Ńƒ|:count Ń…Š²ŠøŠ»ŠøŠ½Ńƒ|:count хвилини|:count хвилин', 'second_from_now' => ':count секунГу|:count секунГи|:count секунГ', 'a_second_from_now' => '{1}ŠŗŃ–Š»ŃŒŠŗŠ° секунГ|:count секунГу|:count секунГи|:count секунГ', 'hour_after' => ':count гоГину|:count гоГини|:count гоГин', 'a_hour_after' => '{1}гоГину|:count гоГину|:count гоГини|:count гоГин', 'minute_after' => ':count Ń…Š²ŠøŠ»ŠøŠ½Ńƒ|:count хвилини|:count хвилин', 'a_minute_after' => '{1}Ń…Š²ŠøŠ»ŠøŠ½Ńƒ|:count Ń…Š²ŠøŠ»ŠøŠ½Ńƒ|:count хвилини|:count хвилин', 'second_after' => ':count секунГу|:count секунГи|:count секунГ', 'a_second_after' => '{1}ŠŗŃ–Š»ŃŒŠŗŠ° секунГ|:count секунГу|:count секунГи|:count секунГ', 'hour_before' => ':count гоГину|:count гоГини|:count гоГин', 'a_hour_before' => '{1}гоГину|:count гоГину|:count гоГини|:count гоГин', 'minute_before' => ':count Ń…Š²ŠøŠ»ŠøŠ½Ńƒ|:count хвилини|:count хвилин', 'a_minute_before' => '{1}Ń…Š²ŠøŠ»ŠøŠ½Ńƒ|:count Ń…Š²ŠøŠ»ŠøŠ½Ńƒ|:count хвилини|:count хвилин', 'second_before' => ':count секунГу|:count секунГи|:count секунГ', 'a_second_before' => '{1}ŠŗŃ–Š»ŃŒŠŗŠ° секунГ|:count секунГу|:count секунГи|:count секунГ', 'ago' => ':time Ń‚Š¾Š¼Ńƒ', 'from_now' => 'за :time', 'after' => ':time ŠæŃ–ŃŠ»Ń', 'before' => ':time Го', 'diff_now' => 'щойно', 'diff_today' => 'Š”ŃŒŠ¾Š³Š¾Š“Š½Ń–', 'diff_today_regexp' => 'Š”ŃŒŠ¾Š³Š¾Š“Š½Ń–(?:\\s+о)?', 'diff_yesterday' => 'вчора', 'diff_yesterday_regexp' => 'Вчора(?:\\s+о)?', 'diff_tomorrow' => 'завтра', 'diff_tomorrow_regexp' => 'Завтра(?:\\s+о)?', 'diff_before_yesterday' => 'позавчора', 'diff_after_tomorrow' => 'ŠæŃ–ŃŠ»ŃŠ·Š°Š²Ń‚Ń€Š°', 'period_recurrences' => 'оГин раз|:count рази|:count разів', 'period_interval' => 'кожні :interval', 'period_start_date' => 'Š· :date', 'period_end_date' => 'Го :date', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY, HH:mm', 'LLLL' => 'dddd, D MMMM YYYY, HH:mm', ], 'calendar' => [ 'sameDay' => function (\Carbon\CarbonInterface $date) use ($processHoursFunction) { return $processHoursFunction($date, '[Š”ŃŒŠ¾Š³Š¾Š“Š½Ń– '); }, 'nextDay' => function (\Carbon\CarbonInterface $date) use ($processHoursFunction) { return $processHoursFunction($date, '[Завтра '); }, 'nextWeek' => function (\Carbon\CarbonInterface $date) use ($processHoursFunction) { return $processHoursFunction($date, '[Š£] dddd ['); }, 'lastDay' => function (\Carbon\CarbonInterface $date) use ($processHoursFunction) { return $processHoursFunction($date, '[Вчора '); }, 'lastWeek' => function (\Carbon\CarbonInterface $date) use ($processHoursFunction) { switch ($date->dayOfWeek) { case 0: case 3: case 5: case 6: return $processHoursFunction($date, '[ŠœŠøŠ½ŃƒŠ»Š¾Ń—] dddd ['); default: return $processHoursFunction($date, '[Минулого] dddd ['); } }, 'sameElse' => 'L', ], 'ordinal' => function ($number, $period) { switch ($period) { case 'M': case 'd': case 'DDD': case 'w': case 'W': return $number.'-й'; case 'D': return $number.'-го'; default: return $number; } }, 'meridiem' => function ($hour) { if ($hour < 4) { return 'ночі'; } if ($hour < 12) { return 'Ń€Š°Š½ŠŗŃƒ'; } if ($hour < 17) { return 'Š“Š½Ń'; } return 'вечора'; }, 'months' => ['ŃŃ–Ń‡Š½Ń', 'Š»ŃŽŃ‚Š¾Š³Š¾', 'Š±ŠµŃ€ŠµŠ·Š½Ń', 'ŠŗŠ²Ń–Ń‚Š½Ń', 'Ń‚Ń€Š°Š²Š½Ń', 'Ń‡ŠµŃ€Š²Š½Ń', 'Š»ŠøŠæŠ½Ń', 'ŃŠµŃ€ŠæŠ½Ń', 'Š²ŠµŃ€ŠµŃŠ½Ń', 'Š¶Š¾Š²Ń‚Š½Ń', 'листопаГа', 'Š³Ń€ŃƒŠ“Š½Ń'], 'months_standalone' => ['ŃŃ–Ń‡ŠµŠ½ŃŒ', 'Š»ŃŽŃ‚ŠøŠ¹', 'Š±ŠµŃ€ŠµŠ·ŠµŠ½ŃŒ', 'ŠŗŠ²Ń–Ń‚ŠµŠ½ŃŒ', 'Ń‚Ń€Š°Š²ŠµŠ½ŃŒ', 'Ń‡ŠµŃ€Š²ŠµŠ½ŃŒ', 'липень', 'ŃŠµŃ€ŠæŠµŠ½ŃŒ', 'Š²ŠµŃ€ŠµŃŠµŠ½ŃŒ', 'Š¶Š¾Š²Ń‚ŠµŠ½ŃŒ', 'листопаГ', 'Š³Ń€ŃƒŠ“ŠµŠ½ŃŒ'], 'months_short' => ['січ', 'Š»ŃŽŃ‚', 'бер', 'кві', 'тра', 'чер', 'лип', 'сер', 'вер', 'жов', 'лис', 'Š³Ń€Ńƒ'], 'months_regexp' => '/(D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|L{2,4}|l{2,4})/', 'weekdays' => function (\Carbon\CarbonInterface $date, $format, $index) { static $words = [ 'nominative' => ['Š½ŠµŠ“Ń–Š»Ń', 'понеГілок', 'вівторок', 'сереГа', 'четвер', 'Šæā€™ŃŃ‚Š½ŠøŃ†Ń', 'ŃŃƒŠ±Š¾Ń‚Š°'], 'accusative' => ['Š½ŠµŠ“Ń–Š»ŃŽ', 'понеГілок', 'вівторок', 'ŃŠµŃ€ŠµŠ“Ńƒ', 'четвер', 'Šæā€™ŃŃ‚Š½ŠøŃ†ŃŽ', 'ŃŃƒŠ±Š¾Ń‚Ńƒ'], 'genitive' => ['неГілі', 'понеГілка', 'вівторка', 'сереГи', 'четверга', 'Šæā€™ŃŃ‚Š½ŠøŃ†Ń–', 'ŃŃƒŠ±Š¾Ń‚Šø'], ]; $nounCase = preg_match('/(\[(Š’|в|Š£|у)\])\s+dddd/', $format) ? 'accusative' : ( preg_match('/\[?(?:Š¼ŠøŠ½ŃƒŠ»Š¾Ń—|Š½Š°ŃŃ‚ŃƒŠæŠ½Š¾Ń—)?\s*\]\s+dddd/', $format) ? 'genitive' : 'nominative' ); return $words[$nounCase][$index] ?? null; }, 'weekdays_short' => ['нГ', 'пн', 'вт', 'ср', 'чт', 'пт', 'сб'], 'weekdays_min' => ['нГ', 'пн', 'вт', 'ср', 'чт', 'пт', 'сб'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' i '], ]; PK!Šfōc   carbon/src/Carbon/Lang/fr_ML.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!Tʟ%@@ carbon/src/Carbon/Lang/ar_LY.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Atef Ben Ali (atefBB) * - Ibrahim AshShohail * - MLTDev */ $months = [ 'ŁŠŁ†Ų§ŁŠŲ±', 'فبراير', 'Ł…Ų§Ų±Ų³', 'Ų£ŲØŲ±ŁŠŁ„', 'Ł…Ų§ŁŠŁˆ', 'ŁŠŁˆŁ†ŁŠŁˆ', 'ŁŠŁˆŁ„ŁŠŁˆ', 'Ų£ŲŗŲ³Ų·Ų³', 'Ų³ŲØŲŖŁ…ŲØŲ±', 'أكتوبر', 'Ł†ŁˆŁŁ…ŲØŲ±', 'ŲÆŁŠŲ³Ł…ŲØŲ±', ]; return [ 'year' => implode('|', [':count سنة', 'سنة', 'Ų³Ł†ŲŖŁŠŁ†', ':count Ų³Ł†ŁˆŲ§ŲŖ', ':count سنة']), 'a_year' => implode('|', [':count سنة', 'سنة', 'Ų³Ł†ŲŖŁŠŁ†', ':count Ų³Ł†ŁˆŲ§ŲŖ', ':count سنة']), 'month' => implode('|', [':count ؓهر', 'ؓهر', 'Ų“Ł‡Ų±ŁŠŁ†', ':count أؓهر', ':count ؓهر']), 'a_month' => implode('|', [':count ؓهر', 'ؓهر', 'Ų“Ł‡Ų±ŁŠŁ†', ':count أؓهر', ':count ؓهر']), 'week' => implode('|', [':count أسبوع', 'أسبوع', 'Ų£Ų³ŲØŁˆŲ¹ŁŠŁ†', ':count أسابيع', ':count أسبوع']), 'a_week' => implode('|', [':count أسبوع', 'أسبوع', 'Ų£Ų³ŲØŁˆŲ¹ŁŠŁ†', ':count أسابيع', ':count أسبوع']), 'day' => implode('|', [':count ŁŠŁˆŁ…', 'ŁŠŁˆŁ…', 'ŁŠŁˆŁ…ŁŠŁ†', ':count Ų£ŁŠŲ§Ł…', ':count ŁŠŁˆŁ…']), 'a_day' => implode('|', [':count ŁŠŁˆŁ…', 'ŁŠŁˆŁ…', 'ŁŠŁˆŁ…ŁŠŁ†', ':count Ų£ŁŠŲ§Ł…', ':count ŁŠŁˆŁ…']), 'hour' => implode('|', [':count Ų³Ų§Ų¹Ų©', 'Ų³Ų§Ų¹Ų©', 'Ų³Ų§Ų¹ŲŖŁŠŁ†', ':count Ų³Ų§Ų¹Ų§ŲŖ', ':count Ų³Ų§Ų¹Ų©']), 'a_hour' => implode('|', [':count Ų³Ų§Ų¹Ų©', 'Ų³Ų§Ų¹Ų©', 'Ų³Ų§Ų¹ŲŖŁŠŁ†', ':count Ų³Ų§Ų¹Ų§ŲŖ', ':count Ų³Ų§Ų¹Ų©']), 'minute' => implode('|', [':count ŲÆŁ‚ŁŠŁ‚Ų©', 'ŲÆŁ‚ŁŠŁ‚Ų©', 'ŲÆŁ‚ŁŠŁ‚ŲŖŁŠŁ†', ':count دقائق', ':count ŲÆŁ‚ŁŠŁ‚Ų©']), 'a_minute' => implode('|', [':count ŲÆŁ‚ŁŠŁ‚Ų©', 'ŲÆŁ‚ŁŠŁ‚Ų©', 'ŲÆŁ‚ŁŠŁ‚ŲŖŁŠŁ†', ':count دقائق', ':count ŲÆŁ‚ŁŠŁ‚Ų©']), 'second' => implode('|', [':count Ų«Ų§Ł†ŁŠŲ©', 'Ų«Ų§Ł†ŁŠŲ©', 'Ų«Ų§Ł†ŁŠŲŖŁŠŁ†', ':count Ų«ŁˆŲ§Ł†ŁŠ', ':count Ų«Ų§Ł†ŁŠŲ©']), 'a_second' => implode('|', [':count Ų«Ų§Ł†ŁŠŲ©', 'Ų«Ų§Ł†ŁŠŲ©', 'Ų«Ų§Ł†ŁŠŲŖŁŠŁ†', ':count Ų«ŁˆŲ§Ł†ŁŠ', ':count Ų«Ų§Ł†ŁŠŲ©']), 'ago' => 'منذ :time', 'from_now' => ':time من الآن', 'after' => 'ŲØŲ¹ŲÆ :time', 'before' => 'قبل :time', 'diff_now' => 'الآن', 'diff_today' => 'Ų§Ł„ŁŠŁˆŁ…', 'diff_today_regexp' => 'Ų§Ł„ŁŠŁˆŁ…(?:\\s+عند)?(?:\\s+الساعة)?', 'diff_yesterday' => 'أمس', 'diff_yesterday_regexp' => 'أمس(?:\\s+عند)?(?:\\s+الساعة)?', 'diff_tomorrow' => 'ŲŗŲÆŲ§Ł‹', 'diff_tomorrow_regexp' => 'غدًا(?:\\s+عند)?(?:\\s+الساعة)?', 'diff_before_yesterday' => 'قبل الأمس', 'diff_after_tomorrow' => 'ŲØŲ¹ŲÆ ŲŗŲÆ', 'period_recurrences' => implode('|', ['Ł…Ų±Ų©', 'Ł…Ų±Ų©', ':count Ł…Ų±ŲŖŁŠŁ†', ':count Ł…Ų±Ų§ŲŖ', ':count Ł…Ų±Ų©']), 'period_interval' => 'ŁƒŁ„ :interval', 'period_start_date' => 'من :date', 'period_end_date' => '؄لى :date', 'months' => $months, 'months_short' => $months, 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų£Ų­ŲÆ', 'Ų§Ų«Ł†ŁŠŁ†', 'ثلاثاؔ', 'Ų£Ų±ŲØŲ¹Ų§Ų”', 'Ų®Ł…ŁŠŲ³', 'جمعة', 'Ų³ŲØŲŖ'], 'weekdays_min' => ['Ų­', 'Ų§Ų«', 'Ų«Ł„', 'Ų£Ų±', 'خم', 'Ų¬', 'Ų³'], 'list' => ['، ', ' و '], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Ų§Ł„ŁŠŁˆŁ… عند الساعة] LT', 'nextDay' => '[غدًا عند الساعة] LT', 'nextWeek' => 'dddd [عند الساعة] LT', 'lastDay' => '[أمس عند الساعة] LT', 'lastWeek' => 'dddd [عند الساعة] LT', 'sameElse' => 'L', ], 'meridiem' => ['Ųµ', 'Ł…'], 'weekend' => [5, 6], ]; PK!¬TAz   carbon/src/Carbon/Lang/pt_CV.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/pt.php'; PK!ŽłndNNcarbon/src/Carbon/Lang/dz.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/dz_BT.php'; PK!” ÕFF carbon/src/Carbon/Lang/es_BR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 0, ]); PK!č²t€¬¬carbon/src/Carbon/Lang/sn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['a', 'p'], 'weekdays' => ['Svondo', 'Muvhuro', 'Chipiri', 'Chitatu', 'China', 'Chishanu', 'Mugovera'], 'weekdays_short' => ['Svo', 'Muv', 'Chp', 'Cht', 'Chn', 'Chs', 'Mug'], 'weekdays_min' => ['Sv', 'Mu', 'Cp', 'Ct', 'Cn', 'Cs', 'Mg'], 'months' => ['Ndira', 'Kukadzi', 'Kurume', 'Kubvumbi', 'Chivabvu', 'Chikumi', 'Chikunguru', 'Nyamavhuvhu', 'Gunyana', 'Gumiguru', 'Mbudzi', 'Zvita'], 'months_short' => ['Ndi', 'Kuk', 'Kur', 'Kub', 'Chv', 'Chk', 'Chg', 'Nya', 'Gun', 'Gum', 'Mbu', 'Zvi'], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY-MM-dd', 'LL' => 'YYYY MMM D', 'LLL' => 'YYYY MMMM D HH:mm', 'LLLL' => 'YYYY MMMM D, dddd HH:mm', ], 'year' => 'makore :count', 'y' => 'makore :count', 'a_year' => 'makore :count', 'month' => 'mwedzi :count', 'm' => 'mwedzi :count', 'a_month' => 'mwedzi :count', 'week' => 'vhiki :count', 'w' => 'vhiki :count', 'a_week' => 'vhiki :count', 'day' => 'mazuva :count', 'd' => 'mazuva :count', 'a_day' => 'mazuva :count', 'hour' => 'maawa :count', 'h' => 'maawa :count', 'a_hour' => 'maawa :count', 'minute' => 'minitsi :count', 'min' => 'minitsi :count', 'a_minute' => 'minitsi :count', 'second' => 'sekonzi :count', 's' => 'sekonzi :count', 'a_second' => 'sekonzi :count', ]); PK!“|˜   carbon/src/Carbon/Lang/ru_KZ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ru.php'; PK!+Ükk carbon/src/Carbon/Lang/ig_NG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - pablo@mandriva.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['JenỄwarị', 'FebrỄwarị', 'Maachị', 'Eprel', 'Mee', 'Juun', 'Julaị', 'Ọgį»į»st', 'Septemba', 'Ọktoba', 'Novemba', 'Disemba'], 'months_short' => ['Jen', 'Feb', 'Maa', 'Epr', 'Mee', 'Juu', 'Jul', 'Ọgį»', 'Sep', 'Ọkt', 'Nov', 'Dis'], 'weekdays' => ['sį»nde', 'mį»nde', 'tuzde', 'wenzde', 'tį»sde', 'fraịde', 'satį»de'], 'weekdays_short' => ['sį»n', 'mį»n', 'tuz', 'wen', 'tį»s', 'fra', 'sat'], 'weekdays_min' => ['sį»n', 'mį»n', 'tuz', 'wen', 'tį»s', 'fra', 'sat'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'year' => 'afo :count', 'y' => 'afo :count', 'a_year' => 'afo :count', 'month' => 'ƶnwa :count', 'm' => 'ƶnwa :count', 'a_month' => 'ƶnwa :count', 'week' => 'izu :count', 'w' => 'izu :count', 'a_week' => 'izu :count', 'day' => 'Ễbį»chị :count', 'd' => 'Ễbį»chị :count', 'a_day' => 'Ễbį»chị :count', 'hour' => 'awa :count', 'h' => 'awa :count', 'a_hour' => 'awa :count', 'minute' => 'minit :count', 'min' => 'minit :count', 'a_minute' => 'minit :count', 'second' => 'sekį»nd :count', 's' => 'sekį»nd :count', 'a_second' => 'sekį»nd :count', ]); PK!š³(±NNcarbon/src/Carbon/Lang/mg.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/mg_MG.php'; PK!Y™eecarbon/src/Carbon/Lang/nyn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'weekdays' => ['Sande', 'Orwokubanza', 'Orwakabiri', 'Orwakashatu', 'Orwakana', 'Orwakataano', 'Orwamukaaga'], 'weekdays_short' => ['SAN', 'ORK', 'OKB', 'OKS', 'OKN', 'OKT', 'OMK'], 'weekdays_min' => ['SAN', 'ORK', 'OKB', 'OKS', 'OKN', 'OKT', 'OMK'], 'months' => ['Okwokubanza', 'Okwakabiri', 'Okwakashatu', 'Okwakana', 'Okwakataana', 'Okwamukaaga', 'Okwamushanju', 'Okwamunaana', 'Okwamwenda', 'Okwaikumi', 'Okwaikumi na kumwe', 'Okwaikumi na ibiri'], 'months_short' => ['KBZ', 'KBR', 'KST', 'KKN', 'KTN', 'KMK', 'KMS', 'KMN', 'KMW', 'KKM', 'KNK', 'KNB'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK!fÅž/xxcarbon/src/Carbon/Lang/zgh.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - BAKTETE Miloud */ return [ 'year' => ':count ⵓⵙ⓳⓳ⵯ⓰ⵙ|:count ⵉⵙ⓳⓳ⵓⵙ⓰', 'a_year' => 'ⵓⵙ⓳⓳ⵯ⓰ⵙ|:count ⵉⵙ⓳⓳ⵓⵙ⓰', 'y' => ':count ⵓⵙ⓳⓳ⵯ⓰ⵙ|:count ⵉⵙ⓳⓳ⵓⵙ⓰', 'month' => ':count ⵔ⓰ⵢⵢⵓⵔ|:count ā“°āµ¢āµ¢āµ“āµ”āµ', 'a_month' => 'āµ‰ā“·āµŠ ⵔ⓰ⵢⵢⵓⵔ|:count ā“°āµ¢āµ¢āµ“āµ”āµ', 'm' => ':count ā“°āµ¢āµ¢āµ“āµ”āµ', 'week' => ':count āµ‰āµŽā“°āµā“°āµ™āµ™|:count āµ‰āµŽā“°āµā“°āµ™āµ™āµ', 'a_week' => 'āµ‰āµ›āµœ āµ‰āµŽā“°āµā“°āµ™āµ™|:count āµ‰āµŽā“°āµā“°āµ™āµ™āµ', 'w' => ':count āµ‰āµŽā“°āµā“°āµ™āµ™.', 'day' => ':count ⵔ⓰ⵙⵙ|:count āµ“āµ™āµ™ā“°āµ', 'a_day' => 'āµ‰ā“·āµŠ ⵔ⓰ⵙⵙ|:count āµ“āµ™āµ™ā“°āµ', 'd' => ':count ⵓ', 'hour' => ':count āµœāµ™āµ”ā“°ā“³āµœ|:count āµœāµ‰āµ™āµ”ā“°ā“³āµ‰āµ', 'a_hour' => 'āµ‰āµ›āµœ āµœāµ™āµ”ā“°ā“³āµœ|:count āµœāµ‰āµ™āµ”ā“°ā“³āµ‰āµ', 'h' => ':count ⵜ', 'minute' => ':count āµœāµ“āµ™ā“·āµ‰ā“·āµœ|:count āµœāµ“āµ™ā“·āµ‰ā“·āµ‰āµ', 'a_minute' => 'āµ‰āµ›āµœ āµœāµ“āµ™ā“·āµ‰ā“·āµœ|:count āµœāµ“āµ™ā“·āµ‰ā“·āµ‰āµ', 'min' => ':count āµœāµ“āµ™', 'second' => ':count āµœāµ™āµ‰āµāµœ|:count āµœāµ‰āµ™āµ‰āµā“°', 'a_second' => '⓽ⵔ⓰ āµœāµ‰āµ™āµ‰āµā“°|:count āµœāµ‰āµ™āµ‰āµā“°', 's' => ':count ⵜ', 'ago' => 'ⵣ⓳ :time', 'from_now' => '⓷⓳ :time', 'after' => ':time ⓰ⵔ⓰ⵔ', 'before' => ':time ⓷⓰ⵜ', 'diff_now' => 'ā“°ā“·āµ”ā“°āµāµ‰', 'diff_today' => '⓰ⵙⵙ', 'diff_today_regexp' => '⓰ⵙⵙ(?:\\s+ā“°/ā“°ā“·)?(?:\\s+⓳)?', 'diff_yesterday' => 'ā“°āµ™āµ™āµāµā“°āµŸ', 'diff_yesterday_regexp' => 'ā“°āµ™āµ™āµāµā“°āµŸ(?:\\s+⓳)?', 'diff_tomorrow' => '⓰ⵙ⓽⓽⓰', 'diff_tomorrow_regexp' => '⓰ⵙ⓽⓽⓰(?:\\s+⓳)?', 'diff_before_yesterday' => '⓼ⵔ āµ‰ā“¹āµāµā“°āµŸ', 'diff_after_tomorrow' => 'āµā“°ā“¼ ⵓⵙ⓽⓽⓰', 'period_recurrences' => ':count āµœāµ‰ā“½ā“½ā“°āµ', 'period_interval' => '⓽ⵓ :interval', 'period_start_date' => '⓳ :date', 'period_end_date' => 'ⵉ :date', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[⓰ⵙⵙ ā“°/ā“°ā“· ⓳] LT', 'nextDay' => '[⓰ⵙ⓽⓽⓰ ⓳] LT', 'nextWeek' => 'dddd [⓳] LT', 'lastDay' => '[ā“°āµ™āµ™āµāµā“°āµŸ ⓳] LT', 'lastWeek' => 'dddd [ā“°āµŽā“³ā“³ā“°āµ”āµ“ ⓳] LT', 'sameElse' => 'L', ], 'meridiem' => ['āµœāµ‰ā“¼ā“°āµ”āµœ', 'ⵜ⓰⓷⓳⓳ⵯ⓰ⵜ'], 'months' => ['āµ‰āµāµā“°āµ¢āµ”', '⓱ⵕ⓰ⵢⵕ', 'āµŽā“°āµ•āµš', 'ⵉ⓱ⵔⵉⵔ', 'āµŽā“°āµ¢āµ¢āµ“', 'āµ¢āµ“āµāµ¢āµ“', 'āµ¢āµ“āµāµ¢āµ“āµ£', 'āµ–āµ“āµ›āµœ', 'āµ›āµ“āµœā“°āµā“±āµ‰āµ”', 'ā“½āµŸāµ“ā“±āµ•', 'āµāµ“āµ”ā“°āµā“±āµ‰āµ”', 'ā“·āµ“āµŠā“°āµā“±āµ‰āµ”'], 'months_short' => ['āµ‰āµāµ', '⓱ⵕ⓰', 'āµŽā“°āµ•', 'ⵉ⓱ⵔ', 'āµŽā“°āµ¢', 'āµ¢āµ“āµ', 'āµ¢āµ“āµ', 'ⵖⵓⵛ', 'āµ›āµ“āµœ', 'ā“½āµŸāµ“', 'āµāµ“āµ”', 'ā“·āµ“āµŠ'], 'weekdays' => ['āµ“āµ™ā“°āµŽā“°āµ™', 'āµ”ā“°āµ¢āµā“°āµ™', 'āµ“āµ™āµ‰āµā“°āµ™', 'ⵔ⓰⓽ⵕ⓰ⵙ', 'ⵓ⓽ⵔ⓰ⵙ', 'āµ“āµ™āµ‰āµŽāµ”ā“°āµ™', 'ⵓⵙⵉ⓹ⵢ⓰ⵙ'], 'weekdays_short' => ['ⵓⵙ⓰', 'ⵔ⓰ⵢ', 'ⵓⵙⵉ', 'ⵔ⓰⓽', 'ⵓ⓽ⵔ', 'āµ“āµ™āµ‰āµŽ', 'ⵓⵙⵉ⓹'], 'weekdays_min' => ['ⵓⵙ⓰', 'ⵔ⓰ⵢ', 'ⵓⵙⵉ', 'ⵔ⓰⓽', 'ⵓ⓽ⵔ', 'āµ“āµ™āµ‰āµŽ', 'ⵓⵙⵉ⓹'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' ā“· '], ]; PK!×-^7MM carbon/src/Carbon/Lang/yo_BJ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/yo.php', [ 'meridiem' => ['ƀƔrɔ̀', 'Ɔ̀sĆ”n'], 'weekdays' => ['ʆjɔ́ ƀƬkĆŗ', 'ʆjɔ́ AjĆ©', 'ʆjɔ́ Ìsɛ́gun', 'ʆjɔ́rĆŗ', 'ʆjɔ́bɔ', 'ʆjɔ́ ʐtƬ', 'ʆjɔ́ ƀbĆ”mɛ́ta'], 'weekdays_short' => ['ƀƬkĆŗ', 'AjĆ©', 'Ìsɛ́gun', 'ʆjɔ́rĆŗ', 'ʆjɔ́bɔ', 'ʐtƬ', 'ƀbĆ”mɛ́ta'], 'weekdays_min' => ['ƀƬkĆŗ', 'AjĆ©', 'Ìsɛ́gun', 'ʆjɔ́rĆŗ', 'ʆjɔ́bɔ', 'ʐtƬ', 'ƀbĆ”mɛ́ta'], 'months' => ['Oshù Shɛ́rɛ́', 'Oshù ƈrĆØlĆØ', 'Oshù ʐrɛ̀nĆ ', 'Oshù ÌgbĆ©', 'Oshù Ɛ̀bibi', 'Oshù ƒkĆŗdu', 'Oshù Agɛmɔ', 'Oshù ƒgĆŗn', 'Oshù Owewe', 'Oshù Ɔ̀wĆ rĆ ', 'Oshù BĆ©lĆŗ', 'Oshù Ɔ̀pɛ̀'], 'months_short' => ['Shɛ́rɛ́', 'ƈrĆØlĆØ', 'ʐrɛ̀nĆ ', 'ÌgbĆ©', 'Ɛ̀bibi', 'ƒkĆŗdu', 'Agɛmɔ', 'ƒgĆŗn', 'Owewe', 'Ɔ̀wĆ rĆ ', 'BĆ©lĆŗ', 'Ɔ̀pɛ̀'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK!¢ 7   carbon/src/Carbon/Lang/km_KH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/km.php'; PK!ĮŁĮ>ŅŅcarbon/src/Carbon/Lang/lv.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Philippe Vaucher * - pirminis * - Tsutomu Kuroda * - tjku * - Andris Zāģeris * - Max Melentiev * - Edgars Beigarts * - Juanito Fatas * - Vitauts Stočka * - Akira Matsuda * - Christopher Dell * - Enrique Vidal * - Simone Carletti * - Aaron Patterson * - Kaspars Bankovskis * - NicolĆ”s Hock Isaza * - Viesturs Kavacs (Kavacky) * - zakse * - Janis Eglitis (janiseglitis) * - Guntars * - Juris Sudmalis */ $daysOfWeek = ['svētdiena', 'pirmdiena', 'otrdiena', 'treÅ”diena', 'ceturtdiena', 'piektdiena', 'sestdiena']; $daysOfWeekLocativum = ['svētdien', 'pirmdien', 'otrdien', 'treÅ”dien', 'ceturtdien', 'piektdien', 'sestdien']; $transformDiff = function ($input) { return strtr($input, [ // Nominative => "pirms/pēc" Dative 'gads' => 'gada', 'gadi' => 'gadiem', 'gadu' => 'gadiem', 'mēnesis' => 'mēneÅ”a', 'mēneÅ”i' => 'mēneÅ”iem', 'mēneÅ”u' => 'mēneÅ”iem', 'nedēļa' => 'nedēļas', 'nedēļas' => 'nedēļām', 'nedēļu' => 'nedēļām', 'diena' => 'dienas', 'dienas' => 'dienām', 'dienu' => 'dienām', 'stunda' => 'stundas', 'stundas' => 'stundām', 'stundu' => 'stundām', 'minÅ«te' => 'minÅ«tes', 'minÅ«tes' => 'minÅ«tēm', 'minūŔu' => 'minÅ«tēm', 'sekunde' => 'sekundes', 'sekundes' => 'sekundēm', 'sekunžu' => 'sekundēm', ]); }; return [ 'ago' => function ($time) use ($transformDiff) { return 'pirms '.$transformDiff($time); }, 'from_now' => function ($time) use ($transformDiff) { return 'pēc '.$transformDiff($time); }, 'year' => '0 gadu|:count gads|:count gadi', 'y' => ':count g.', 'a_year' => '{1}gads|0 gadu|:count gads|:count gadi', 'month' => '0 mēneÅ”u|:count mēnesis|:count mēneÅ”i', 'm' => ':count mēn.', 'a_month' => '{1}mēnesis|0 mēneÅ”u|:count mēnesis|:count mēneÅ”i', 'week' => '0 nedēļu|:count nedēļa|:count nedēļas', 'w' => ':count ned.', 'a_week' => '{1}nedēļa|0 nedēļu|:count nedēļa|:count nedēļas', 'day' => '0 dienu|:count diena|:count dienas', 'd' => ':count d.', 'a_day' => '{1}diena|0 dienu|:count diena|:count dienas', 'hour' => '0 stundu|:count stunda|:count stundas', 'h' => ':count st.', 'a_hour' => '{1}stunda|0 stundu|:count stunda|:count stundas', 'minute' => '0 minūŔu|:count minÅ«te|:count minÅ«tes', 'min' => ':count min.', 'a_minute' => '{1}minÅ«te|0 minūŔu|:count minÅ«te|:count minÅ«tes', 'second' => '0 sekunžu|:count sekunde|:count sekundes', 's' => ':count sek.', 'a_second' => '{1}sekunde|0 sekunžu|:count sekunde|:count sekundes', 'after' => ':time vēlāk', 'year_after' => '0 gadus|:count gadu|:count gadus', 'a_year_after' => '{1}gadu|0 gadus|:count gadu|:count gadus', 'month_after' => '0 mēneÅ”us|:count mēnesi|:count mēneÅ”us', 'a_month_after' => '{1}mēnesi|0 mēneÅ”us|:count mēnesi|:count mēneÅ”us', 'week_after' => '0 nedēļas|:count nedēļu|:count nedēļas', 'a_week_after' => '{1}nedēļu|0 nedēļas|:count nedēļu|:count nedēļas', 'day_after' => '0 dienas|:count dienu|:count dienas', 'a_day_after' => '{1}dienu|0 dienas|:count dienu|:count dienas', 'hour_after' => '0 stundas|:count stundu|:count stundas', 'a_hour_after' => '{1}stundu|0 stundas|:count stundu|:count stundas', 'minute_after' => '0 minÅ«tes|:count minÅ«ti|:count minÅ«tes', 'a_minute_after' => '{1}minÅ«ti|0 minÅ«tes|:count minÅ«ti|:count minÅ«tes', 'second_after' => '0 sekundes|:count sekundi|:count sekundes', 'a_second_after' => '{1}sekundi|0 sekundes|:count sekundi|:count sekundes', 'before' => ':time agrāk', 'year_before' => '0 gadus|:count gadu|:count gadus', 'a_year_before' => '{1}gadu|0 gadus|:count gadu|:count gadus', 'month_before' => '0 mēneÅ”us|:count mēnesi|:count mēneÅ”us', 'a_month_before' => '{1}mēnesi|0 mēneÅ”us|:count mēnesi|:count mēneÅ”us', 'week_before' => '0 nedēļas|:count nedēļu|:count nedēļas', 'a_week_before' => '{1}nedēļu|0 nedēļas|:count nedēļu|:count nedēļas', 'day_before' => '0 dienas|:count dienu|:count dienas', 'a_day_before' => '{1}dienu|0 dienas|:count dienu|:count dienas', 'hour_before' => '0 stundas|:count stundu|:count stundas', 'a_hour_before' => '{1}stundu|0 stundas|:count stundu|:count stundas', 'minute_before' => '0 minÅ«tes|:count minÅ«ti|:count minÅ«tes', 'a_minute_before' => '{1}minÅ«ti|0 minÅ«tes|:count minÅ«ti|:count minÅ«tes', 'second_before' => '0 sekundes|:count sekundi|:count sekundes', 'a_second_before' => '{1}sekundi|0 sekundes|:count sekundi|:count sekundes', 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' un '], 'diff_now' => 'tagad', 'diff_today' => 'Å”odien', 'diff_yesterday' => 'vakar', 'diff_before_yesterday' => 'aizvakar', 'diff_tomorrow' => 'rÄ«t', 'diff_after_tomorrow' => 'parÄ«t', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY.', 'LL' => 'YYYY. [gada] D. MMMM', 'LLL' => 'DD.MM.YYYY., HH:mm', 'LLLL' => 'YYYY. [gada] D. MMMM, HH:mm', ], 'calendar' => [ 'sameDay' => '[Å”odien] [plkst.] LT', 'nextDay' => '[rÄ«t] [plkst.] LT', 'nextWeek' => function (CarbonInterface $current, CarbonInterface $other) use ($daysOfWeekLocativum) { if ($current->week !== $other->week) { return '[nākoÅ”o] ['.$daysOfWeekLocativum[$current->dayOfWeek].'] [plkst.] LT'; } return '['.$daysOfWeekLocativum[$current->dayOfWeek].'] [plkst.] LT'; }, 'lastDay' => '[vakar] [plkst.] LT', 'lastWeek' => function (CarbonInterface $current) use ($daysOfWeekLocativum) { return '[pagājuÅ”o] ['.$daysOfWeekLocativum[$current->dayOfWeek].'] [plkst.] LT'; }, 'sameElse' => 'L', ], 'weekdays' => $daysOfWeek, 'weekdays_short' => ['Sv.', 'P.', 'O.', 'T.', 'C.', 'Pk.', 'S.'], 'weekdays_min' => ['Sv.', 'P.', 'O.', 'T.', 'C.', 'Pk.', 'S.'], 'months' => ['janvārÄ«', 'februārÄ«', 'martā', 'aprÄ«lÄ«', 'maijā', 'jÅ«nijā', 'jÅ«lijā', 'augustā', 'septembrÄ«', 'oktobrÄ«', 'novembrÄ«', 'decembrÄ«'], 'months_short' => ['Janv', 'Feb', 'Mar', 'Apr', 'Mai', 'JÅ«n', 'JÅ«l', 'Aug', 'Sept', 'Okt', 'Nov', 'Dec'], 'meridiem' => ['priekÅ”pusdiena', 'pēcpusdiena'], ]; PK!,döyYYcarbon/src/Carbon/Lang/bg.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - FranƧois B * - Serhan Apaydın * - JD Isaacks * - Glavić */ return [ 'year' => ':count гоГина|:count гоГини', 'a_year' => 'гоГина|:count гоГини', 'y' => ':count гоГина|:count гоГини', 'month' => ':count месец|:count месеца', 'a_month' => 'месец|:count месеца', 'm' => ':count месец|:count месеца', 'week' => ':count сеГмица|:count сеГмици', 'a_week' => 'сеГмица|:count сеГмици', 'w' => ':count сеГмица|:count сеГмици', 'day' => ':count Ген|:count Гни', 'a_day' => 'Ген|:count Гни', 'd' => ':count Ген|:count Гни', 'hour' => ':count час|:count часа', 'a_hour' => 'час|:count часа', 'h' => ':count час|:count часа', 'minute' => ':count Š¼ŠøŠ½ŃƒŃ‚Š°|:count Š¼ŠøŠ½ŃƒŃ‚Šø', 'a_minute' => 'Š¼ŠøŠ½ŃƒŃ‚Š°|:count Š¼ŠøŠ½ŃƒŃ‚Šø', 'min' => ':count Š¼ŠøŠ½ŃƒŃ‚Š°|:count Š¼ŠøŠ½ŃƒŃ‚Šø', 'second' => ':count секунГа|:count секунГи', 'a_second' => 'Š½ŃŠŗŠ¾Š»ŠŗŠ¾ секунГи|:count секунГи', 's' => ':count секунГа|:count секунГи', 'ago' => 'преГи :time', 'from_now' => 'слеГ :time', 'after' => 'слеГ :time', 'before' => 'преГи :time', 'diff_now' => 'сега', 'diff_today' => 'Днес', 'diff_today_regexp' => 'Днес(?:\\s+в)?', 'diff_yesterday' => 'вчера', 'diff_yesterday_regexp' => 'Вчера(?:\\s+в)?', 'diff_tomorrow' => 'ŃƒŃ‚Ń€Šµ', 'diff_tomorrow_regexp' => 'Утре(?:\\s+в)?', 'formats' => [ 'LT' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'D.MM.YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY H:mm', 'LLLL' => 'dddd, D MMMM YYYY H:mm', ], 'calendar' => [ 'sameDay' => '[Днес в] LT', 'nextDay' => '[Утре в] LT', 'nextWeek' => 'dddd [в] LT', 'lastDay' => '[Вчера в] LT', 'lastWeek' => function (\Carbon\CarbonInterface $current) { switch ($current->dayOfWeek) { case 0: case 3: case 6: return '[Š’ изминалата] dddd [в] LT'; default: return '[Š’ ŠøŠ·Š¼ŠøŠ½Š°Š»ŠøŃ] dddd [в] LT'; } }, 'sameElse' => 'L', ], 'ordinal' => function ($number) { $lastDigit = $number % 10; $last2Digits = $number % 100; if ($number === 0) { return "$number-ев"; } if ($last2Digits === 0) { return "$number-ен"; } if ($last2Digits > 10 && $last2Digits < 20) { return "$number-ти"; } if ($lastDigit === 1) { return "$number-ви"; } if ($lastDigit === 2) { return "$number-ри"; } if ($lastDigit === 7 || $lastDigit === 8) { return "$number-ми"; } return "$number-ти"; }, 'months' => ['ŃŠ½ŃƒŠ°Ń€Šø', 'Ń„ŠµŠ²Ń€ŃƒŠ°Ń€Šø', 'март', 'април', 'май', 'ŃŽŠ½Šø', 'ŃŽŠ»Šø', 'Š°Š²Š³ŃƒŃŃ‚', 'септември', 'октомври', 'ноември', 'Гекември'], 'months_short' => ['ŃŠ½Ńƒ', 'фев', 'мар', 'апр', 'май', 'ŃŽŠ½Šø', 'ŃŽŠ»Šø', 'авг', 'сеп', 'окт', 'ное', 'Гек'], 'weekdays' => ['Š½ŠµŠ“ŠµŠ»Ń', 'понеГелник', 'вторник', 'ŃŃ€ŃŠ“Š°', 'Ń‡ŠµŃ‚Š²ŃŠŃ€Ń‚ŃŠŠŗ', 'ŠæŠµŃ‚ŃŠŠŗ', 'ŃŃŠŠ±Š¾Ń‚Š°'], 'weekdays_short' => ['неГ', 'пон', 'вто', 'сря', 'чет', 'пет', 'съб'], 'weekdays_min' => ['нГ', 'пн', 'вт', 'ср', 'чт', 'пт', 'сб'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' Šø '], 'meridiem' => ['преГи Š¾Š±ŃŠ“', 'слеГобеГ'], ]; PK!Éåµ0   carbon/src/Carbon/Lang/lt_LT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/lt.php'; PK!WQfu   carbon/src/Carbon/Lang/ro_RO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ro.php'; PK!Eˆkīī carbon/src/Carbon/Lang/nl_BE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Roy * - Stephan * - FranƧois B * - Tim Fish * - Kevin Huang * - Jacob Middag * - JD Isaacks * - Propaganistas */ return array_replace_recursive(require __DIR__.'/nl.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], ]); PK!‡ädŖ¦¦ carbon/src/Carbon/Lang/es_PA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]); PK!7ș¶NNcarbon/src/Carbon/Lang/ik.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/ik_CA.php'; PK!“C   carbon/src/Carbon/Lang/bg_BG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/bg.php'; PK!Śl`POOcarbon/src/Carbon/Lang/ayc.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/ayc_PE.php'; PK!Ś‘“QQ carbon/src/Carbon/Lang/so_ET.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ge'ez Frontier Foundation locales@geez.org */ return require __DIR__.'/so.php'; PK!3I1ŚOOcarbon/src/Carbon/Lang/agr.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/agr_PE.php'; PK!jĶ\ ĢĢ carbon/src/Carbon/Lang/ks_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Red Hat, Pune bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'M/D/YY', ], 'months' => ['Ų¬Ł†Ų¤Ų±ŪŒ', 'فرؤری', 'مارٕچ', 'Ų§Ł¾Ų±ŪŒŁ„', 'Ł…ŪŒŁ”', 'Ų¬ŁˆŁ—Ł†', 'Ų¬ŁˆŁ—Ł„Ų§ŪŒŪŒ', 'Ų§ŚÆŲ³ŲŖ', 'Ų³ŲŖŁ…ŲØŲ±', 'Ų§Ś©ŲŖŁˆŁ—ŲØŲ±', 'Ł†ŁˆŁ…ŲØŲ±', 'دسمبر'], 'months_short' => ['Ų¬Ł†Ų¤Ų±ŪŒ', 'فرؤری', 'مارٕچ', 'Ų§Ł¾Ų±ŪŒŁ„', 'Ł…ŪŒŁ”', 'Ų¬ŁˆŁ—Ł†', 'Ų¬ŁˆŁ—Ł„Ų§ŪŒŪŒ', 'Ų§ŚÆŲ³ŲŖ', 'Ų³ŲŖŁ…ŲØŲ±', 'Ų§Ś©ŲŖŁˆŁ—ŲØŲ±', 'Ł†ŁˆŁ…ŲØŲ±', 'دسمبر'], 'weekdays' => ['Ų¢ŲŖŁ‡ŁˆŲ§Ų±', 'Ś˜Ų”Ł†ŲÆŲ±ŁˆŲ§Ų±', 'بوؔںوار', 'ŲØŁˆŲÆŁ‡ŁˆŲ§Ų±', 'ŲØŲ±Ł‰Ų³ŁˆŲ§Ų±', 'جمع', 'بٹوار'], 'weekdays_short' => ['Ų¢ŲŖŁ‡ŁˆŲ§Ų±', 'Ś˜Ų”Ł†ŲŖŲ±ŁˆŲ§Ų±', 'بوؔںوار', 'ŲØŁˆŲÆŁ‡ŁˆŲ§Ų±', 'ŲØŲ±Ł‰Ų³ŁˆŲ§Ų±', 'جمع', 'بٹوار'], 'weekdays_min' => ['Ų¢ŲŖŁ‡ŁˆŲ§Ų±', 'Ś˜Ų”Ł†ŲŖŲ±ŁˆŲ§Ų±', 'بوؔںوار', 'ŲØŁˆŲÆŁ‡ŁˆŲ§Ų±', 'ŲØŲ±Ł‰Ų³ŁˆŲ§Ų±', 'جمع', 'بٹوار'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['ŲÆŁˆŁ¾Ś¾Ų±ŲØŲ±ŁˆŁ†Ś¾', 'دوپھرپتھ'], 'year' => ':count Ų¢ŲØ', // less reliable 'y' => ':count Ų¢ŲØ', // less reliable 'a_year' => ':count Ų¢ŲØ', // less reliable 'month' => ':count ą¤°ą¤¾ą¤Øą„', // less reliable 'm' => ':count ą¤°ą¤¾ą¤Øą„', // less reliable 'a_month' => ':count ą¤°ą¤¾ą¤Øą„', // less reliable 'week' => ':count Ų¢ŲŖŚ¾Ł•ŁˆŲ§Ų±', // less reliable 'w' => ':count Ų¢ŲŖŚ¾Ł•ŁˆŲ§Ų±', // less reliable 'a_week' => ':count Ų¢ŲŖŚ¾Ł•ŁˆŲ§Ų±', // less reliable 'hour' => ':count سۄن', // less reliable 'h' => ':count سۄن', // less reliable 'a_hour' => ':count سۄن', // less reliable 'minute' => ':count ŁŁŽŁ†', // less reliable 'min' => ':count ŁŁŽŁ†', // less reliable 'a_minute' => ':count ŁŁŽŁ†', // less reliable 'second' => ':count ą¤¦ą„‹Ź¼ą¤Æą„ą¤®', // less reliable 's' => ':count ą¤¦ą„‹Ź¼ą¤Æą„ą¤®', // less reliable 'a_second' => ':count ą¤¦ą„‹Ź¼ą¤Æą„ą¤®', // less reliable ]); PK!…8½„ŒŒcarbon/src/Carbon/Lang/my.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - JD Isaacks * - Nay Lin Aung */ return [ 'year' => '{1}တစ်နှစ်|]1,Inf[:count နှစ်', 'y' => ':count နှစ်', 'month' => '{1}į€į€…į€ŗį€œ|]1,Inf[:count į€œ', 'm' => ':count į€œ', 'week' => ':count ပတ်', 'w' => ':count ပတ်', 'day' => '{1}တစ်ရက်|]1,Inf[:count ရက်', 'd' => ':count ရက်', 'hour' => '{1}တစ်နာရီ|]1,Inf[:count နာရီ', 'h' => ':count နာရီ', 'minute' => '{1}တစ်မိနစ်|]1,Inf[:count မိနစ်', 'min' => ':count မိနစ်', 'second' => '{1}စက္ကန်.į€”į€”į€Šį€ŗį€øį€„į€šį€ŗ|]1,Inf[:count စက္ကန့်', 's' => ':count စက္ကန့်', 'ago' => 'į€œį€½į€”į€ŗį€į€²į€·į€žį€±į€¬ :time က', 'from_now' => 'į€œį€¬į€™į€Šį€ŗį€· :time မှာ', 'after' => ':time ကြာပြီးနောက်', 'before' => ':time မတိုင်ခင်', 'diff_now' => 'į€”į€į€Æį€œį€±į€øį€į€„į€ŗ', 'diff_today' => 'į€šį€”į€±.', 'diff_yesterday' => 'မနေ့က', 'diff_yesterday_regexp' => 'မနေ.က', 'diff_tomorrow' => 'မနက်ဖြန်', 'diff_before_yesterday' => 'တမြန်နေ့က', 'diff_after_tomorrow' => 'į€į€˜į€€į€ŗį€į€«', 'period_recurrences' => ':count ကြိမ်', 'formats' => [ 'LT' => 'Oh:Om A', 'LTS' => 'Oh:Om:Os A', 'L' => 'OD/OM/OY', 'LL' => 'OD MMMM OY', 'LLL' => 'OD MMMM OY Oh:Om A', 'LLLL' => 'dddd OD MMMM OY Oh:Om A', ], 'calendar' => [ 'sameDay' => '[į€šį€”į€±.] LT [မှာ]', 'nextDay' => '[မနက်ဖြန်] LT [မှာ]', 'nextWeek' => 'dddd LT [မှာ]', 'lastDay' => '[မနေ.က] LT [မှာ]', 'lastWeek' => '[į€•į€¼į€®į€øį€į€²į€·į€žį€±į€¬] dddd LT [မှာ]', 'sameElse' => 'L', ], 'months' => ['į€‡į€”į€ŗį€”į€į€«į€›į€®', 'į€–į€±į€–į€±į€¬į€ŗį€į€«į€›į€®', 'မတ်', 'ဧပြီ', 'မေ', 'ဇွန်', 'į€‡į€°į€œį€­į€Æį€„į€ŗ', 'į€žį€¼į€‚į€Æį€į€ŗ', 'į€…į€€į€ŗį€į€„į€ŗį€˜į€¬', 'į€”į€±į€¬į€€į€ŗį€į€­į€Æį€˜į€¬', 'į€”į€­į€Æį€į€„į€ŗį€˜į€¬', 'į€’į€®į€‡į€„į€ŗį€˜į€¬'], 'months_short' => ['ဇန်', 'ဖေ', 'မတ်', 'ပြီ', 'မေ', 'ဇွန်', 'į€œį€­į€Æį€„į€ŗ', 'į€žį€¼', 'စက်', 'နောက်', 'နို', 'ဒီ'], 'weekdays' => ['တနင်္ဂနွေ', 'į€į€”į€„į€ŗį€¹į€œį€¬', 'နင်္ဂါ', 'į€—į€Æį€’į€¹į€“į€Ÿį€°į€ø', 'į€€į€¼į€¬į€žį€•į€į€±į€ø', 'į€žį€±į€¬į€€į€¼į€¬', 'စနေ'], 'weekdays_short' => ['နွေ', 'į€œį€¬', 'ဂါ', 'į€Ÿį€°į€ø', 'ကြာ', 'į€žį€±į€¬', 'နေ'], 'weekdays_min' => ['နွေ', 'į€œį€¬', 'ဂါ', 'į€Ÿį€°į€ø', 'ကြာ', 'į€žį€±į€¬', 'နေ'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'alt_numbers' => ['၀၀', '၀၁', '၀၂', 'į€įƒ', '၀၄', '၀၅', '၀၆', '၀၇', 'į€įˆ', '၀၉', '၁၀', '၁၁', '၁၂', '၁၃', '၁၄', '၁၅', '၁၆', '၁၇', '၁၈', '၁၉', '၂၀', '၂၁', '၂၂', 'į‚įƒ', '၂၄', '၂၅', '၂၆', '၂၇', 'į‚įˆ', '၂၉', 'įƒį€', '၃၁', 'įƒį‚', '၃၃', 'įƒį„', 'įƒį…', 'įƒį†', 'įƒį‡', '၃၈', 'įƒį‰', '၄၀', '၄၁', '၄၂', 'į„įƒ', '၄၄', '၄၅', '၄၆', '၄၇', 'į„įˆ', '၄၉', '၅၀', '၅၁', '၅၂', 'į…įƒ', '၅၄', '၅၅', '၅၆', '၅၇', 'į…įˆ', '၅၉', '၆၀', '၆၁', '၆၂', 'į†įƒ', '၆၄', '၆၅', '၆၆', '၆၇', 'į†įˆ', '၆၉', '၇၀', '၇၁', '၇၂', 'į‡įƒ', '၇၄', '၇၅', '၇၆', '၇၇', 'į‡įˆ', '၇၉', 'įˆį€', '၈၁', 'įˆį‚', '၈၃', 'įˆį„', 'įˆį…', 'įˆį†', 'įˆį‡', '၈၈', 'įˆį‰', '၉၀', '၉၁', '၉၂', 'į‰įƒ', '၉၄', '၉၅', '၉၆', '၉၇', 'į‰įˆ', '၉၉'], 'meridiem' => ['နံနက်', 'į€Šį€”į€±'], ]; PK!å7h»## carbon/src/Carbon/Lang/tn_ZA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['Ferikgong', 'Tlhakole', 'Mopitlwe', 'Moranang', 'Motsheganong', 'Seetebosigo', 'Phukwi', 'Phatwe', 'Lwetse', 'Diphalane', 'Ngwanatsele', 'Sedimonthole'], 'months_short' => ['Fer', 'Tlh', 'Mop', 'Mor', 'Mot', 'See', 'Phu', 'Pha', 'Lwe', 'Dip', 'Ngw', 'Sed'], 'weekdays' => ['laTshipi', 'Mosupologo', 'Labobedi', 'Laboraro', 'Labone', 'Labotlhano', 'Lamatlhatso'], 'weekdays_short' => ['Tsh', 'Mos', 'Bed', 'Rar', 'Ne', 'Tlh', 'Mat'], 'weekdays_min' => ['Tsh', 'Mos', 'Bed', 'Rar', 'Ne', 'Tlh', 'Mat'], 'day_of_first_week_of_year' => 1, 'year' => 'dingwaga di le :count', 'y' => 'dingwaga di le :count', 'a_year' => 'dingwaga di le :count', 'month' => 'dikgwedi di le :count', 'm' => 'dikgwedi di le :count', 'a_month' => 'dikgwedi di le :count', 'week' => 'dibeke di le :count', 'w' => 'dibeke di le :count', 'a_week' => 'dibeke di le :count', 'day' => 'malatsi :count', 'd' => 'malatsi :count', 'a_day' => 'malatsi :count', 'hour' => 'diura di le :count', 'h' => 'diura di le :count', 'a_hour' => 'diura di le :count', 'minute' => 'metsotso e le :count', 'min' => 'metsotso e le :count', 'a_minute' => 'metsotso e le :count', 'second' => 'metsotswana e le :count', 's' => 'metsotswana e le :count', 'a_second' => 'metsotswana e le :count', ]); PK!?J[Ī   carbon/src/Carbon/Lang/gd_GB.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/gd.php'; PK!¬ŗ]ÉĖĖ!carbon/src/Carbon/Lang/wal_ET.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ge'ez Frontier Foundation locales@geez.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['įŒƒįŠ•į‹©į‹ˆįˆŖ', 'įŒį‰„įˆ©į‹ˆįˆŖ', 'įˆ›įˆ­į‰½', 'įŠ¤į•įˆØįˆ', 'įˆœį‹­', 'įŒįŠ•', 'įŒįˆ‹į‹­', 'įŠ¦įŒˆįˆµį‰µ', 'įˆ“į•į‰“įˆį‰ įˆ­', 'įŠ¦įŠ­į‰°į‹į‰ įˆ­', 'įŠ–į‰¬įˆį‰ įˆ­', 'į‹²įˆ“įˆį‰ įˆ­'], 'months_short' => ['įŒƒįŠ•į‹©', 'įŒį‰„įˆ©', 'įˆ›įˆ­į‰½', 'įŠ¤į•įˆØ', 'įˆœį‹­ ', 'įŒįŠ• ', 'įŒįˆ‹į‹­', 'ኦገስ', 'įˆ“į•į‰“', 'įŠ¦įŠ­į‰°', 'įŠ–į‰¬įˆ', 'į‹²įˆ“įˆ'], 'weekdays' => ['į‹ˆįŒ‹', 'įˆ³į‹­įŠ–', 'įˆ›į‰†įˆ³įŠ›', 'įŠ įˆ©į‹‹', 'įˆƒįˆ™įˆ³', 'įŠ įˆ­į‰£', 'į‰„įˆ«'], 'weekdays_short' => ['į‹ˆįŒ‹ ', 'įˆ³į‹­įŠ–', 'įˆ›į‰†įˆ³', 'įŠ įˆ©į‹‹', 'įˆƒįˆ™įˆ³', 'įŠ įˆ­į‰£', 'į‰„įˆ« '], 'weekdays_min' => ['į‹ˆįŒ‹ ', 'įˆ³į‹­įŠ–', 'įˆ›į‰†įˆ³', 'įŠ įˆ©į‹‹', 'įˆƒįˆ™įˆ³', 'įŠ įˆ­į‰£', 'į‰„įˆ« '], 'day_of_first_week_of_year' => 1, 'meridiem' => ['įˆ›įˆˆį‹¶', 'į‰ƒįˆ›'], ]); PK!o«ęv22 carbon/src/Carbon/Lang/ce_RU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - ANCHR */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'YYYY.DD.MM', ], 'months' => ['ŠÆŠ½Š²Š°Ń€ŃŒ', 'Š¤ŠµŠ²Ń€Š°Š»ŃŒ', 'ŠœŠ°Ń€Ń‚', 'ŠŠæŃ€ŠµŠ»ŃŒ', 'Май', 'Š˜ŃŽŠ½ŃŒ', 'Š˜ŃŽŠ»ŃŒ', 'ŠŠ²Š³ŃƒŃŃ‚', 'Š”ŠµŠ½Ń‚ŃŠ±Ń€ŃŒ', 'ŠžŠŗŃ‚ŃŠ±Ń€ŃŒ', 'ŠŠ¾ŃŠ±Ń€ŃŒ', 'Š”ŠµŠŗŠ°Š±Ń€ŃŒ'], 'months_short' => ['ŃŠ½Š²', 'фев', 'мар', 'апр', 'май', 'ŠøŃŽŠ½', 'ŠøŃŽŠ»', 'авг', 'сен', 'окт', 'Š½Š¾Ń', 'Гек'], 'weekdays' => ['ŠšÓ€ŠøŃ€Š°Š½Š°Š½ Ге', 'ŠžŃ€ŃˆŠ¾Ń‚Š°Š½ Ге', 'Шинарин Ге', 'ŠšŃ…Š°Š°Ń€ŠøŠ½ Ге', 'Еарин Ге', 'ŠŸÓ€ŠµŃ€Š°ŃŠŗŠ°Š½ Ге', 'Шот Ге'], 'weekdays_short' => ['ŠšÓ€', 'ŠžŃ€', 'ŠØŠø', 'ŠšŃ…', 'Еа', 'ŠŸÓ€', 'Шо'], 'weekdays_min' => ['ŠšÓ€', 'ŠžŃ€', 'ŠØŠø', 'ŠšŃ…', 'Еа', 'ŠŸÓ€', 'Шо'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'year' => ':count шо', 'y' => ':count шо', 'a_year' => ':count шо', 'month' => ':count Š±ŃƒŃ‚Ń‚', 'm' => ':count Š±ŃƒŃ‚Ń‚', 'a_month' => ':count Š±ŃƒŃ‚Ń‚', 'week' => ':count ŠŗÓŠøŃ€Š°', 'w' => ':count ŠŗÓŠøŃ€Š°', 'a_week' => ':count ŠŗÓŠøŃ€Š°', 'day' => ':count Ге', 'd' => ':count Ге', 'a_day' => ':count Ге', 'hour' => ':count ŃŠ°Ń…ŃŒŃ‚', 'h' => ':count ŃŠ°Ń…ŃŒŃ‚', 'a_hour' => ':count ŃŠ°Ń…ŃŒŃ‚', 'minute' => ':count минот', 'min' => ':count минот', 'a_minute' => ':count минот', 'second' => ':count секунГ', 's' => ':count секунГ', 'a_second' => ':count секунГ', ]); PK!ažźčĮĮ carbon/src/Carbon/Lang/es_CR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Free Software Foundation, Inc. bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, ]); PK!zOkؚšcarbon/src/Carbon/Lang/fr.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Dieter Sting * - FranƧois B * - Maxime VALY * - JD Isaacks * - Dieter Sting * - FranƧois B * - JD Isaacks * - Sebastian Thierer * - Fastfuel * - Pete Scopes (pdscopes) */ return [ 'year' => ':count an|:count ans', 'a_year' => 'un an|:count ans', 'y' => ':count an|:count ans', 'month' => ':count mois|:count mois', 'a_month' => 'un mois|:count mois', 'm' => ':count mois', 'week' => ':count semaine|:count semaines', 'a_week' => 'une semaine|:count semaines', 'w' => ':count sem.', 'day' => ':count jour|:count jours', 'a_day' => 'un jour|:count jours', 'd' => ':count j', 'hour' => ':count heure|:count heures', 'a_hour' => 'une heure|:count heures', 'h' => ':count h', 'minute' => ':count minute|:count minutes', 'a_minute' => 'une minute|:count minutes', 'min' => ':count min', 'second' => ':count seconde|:count secondes', 'a_second' => 'quelques secondes|:count secondes', 's' => ':count s', 'millisecond' => ':count milliseconde|:count millisecondes', 'a_millisecond' => 'une milliseconde|:count millisecondes', 'ms' => ':countms', 'microsecond' => ':count microseconde|:count microsecondes', 'a_microsecond' => 'une microseconde|:count microsecondes', 'µs' => ':countµs', 'ago' => 'il y a :time', 'from_now' => 'dans :time', 'after' => ':time aprĆØs', 'before' => ':time avant', 'diff_now' => "Ć  l'instant", 'diff_today' => "aujourd'hui", 'diff_today_regexp' => "aujourd'hui(?:\s+Ć )?", 'diff_yesterday' => 'hier', 'diff_yesterday_regexp' => 'hier(?:\s+Ć )?', 'diff_tomorrow' => 'demain', 'diff_tomorrow_regexp' => 'demain(?:\s+Ć )?', 'diff_before_yesterday' => 'avant-hier', 'diff_after_tomorrow' => 'aprĆØs-demain', 'period_recurrences' => ':count fois', 'period_interval' => 'tous les :interval', 'period_start_date' => 'de :date', 'period_end_date' => 'Ć  :date', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Aujourd’hui Ć ] LT', 'nextDay' => '[Demain Ć ] LT', 'nextWeek' => 'dddd [Ć ] LT', 'lastDay' => '[Hier Ć ] LT', 'lastWeek' => 'dddd [dernier Ć ] LT', 'sameElse' => 'L', ], 'months' => ['janvier', 'fĆ©vrier', 'mars', 'avril', 'mai', 'juin', 'juillet', 'aoĆ»t', 'septembre', 'octobre', 'novembre', 'dĆ©cembre'], 'months_short' => ['janv.', 'fĆ©vr.', 'mars', 'avr.', 'mai', 'juin', 'juil.', 'aoĆ»t', 'sept.', 'oct.', 'nov.', 'dĆ©c.'], 'weekdays' => ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'], 'weekdays_short' => ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.', 'sam.'], 'weekdays_min' => ['di', 'lu', 'ma', 'me', 'je', 've', 'sa'], 'ordinal' => function ($number, $period) { switch ($period) { // In french, only the first has be ordinal, other number remains cardinal // @link https://fr.wikihow.com/%C3%A9crire-la-date-en-fran%C3%A7ais case 'D': return $number.($number === 1 ? 'er' : ''); default: case 'M': case 'Q': case 'DDD': case 'd': return $number.($number === 1 ? 'er' : 'e'); // Words with feminine grammatical gender: semaine case 'w': case 'W': return $number.($number === 1 ? 're' : 'e'); } }, 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' et '], ]; PK!īKWę   carbon/src/Carbon/Lang/sk_SK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/sk.php'; PK!§Ō‘OOcarbon/src/Carbon/Lang/nhn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/nhn_MX.php'; PK!›ĄBÕććcarbon/src/Carbon/Lang/sr.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - FranƧois B * - shaishavgandhi05 * - Serhan Apaydın * - JD Isaacks * - Glavić * - Milos Sakovic */ return [ 'year' => ':count godina|:count godine|:count godina', 'y' => ':count g.', 'month' => ':count mesec|:count meseca|:count meseci', 'm' => ':count mj.', 'week' => ':count nedelja|:count nedelje|:count nedelja', 'w' => ':count ned.', 'day' => ':count dan|:count dana|:count dana', 'd' => ':count d.', 'hour' => ':count sat|:count sata|:count sati', 'h' => ':count č.', 'minute' => ':count minut|:count minuta|:count minuta', 'min' => ':count min.', 'second' => ':count sekundu|:count sekunde|:count sekundi', 's' => ':count sek.', 'ago' => 'pre :time', 'from_now' => 'za :time', 'after' => 'nakon :time', 'before' => 'pre :time', 'year_from_now' => ':count godinu|:count godine|:count godina', 'year_ago' => ':count godinu|:count godine|:count godina', 'week_from_now' => ':count nedelju|:count nedelje|:count nedelja', 'week_ago' => ':count nedelju|:count nedelje|:count nedelja', 'diff_now' => 'upravo sada', 'diff_today' => 'danas', 'diff_today_regexp' => 'danas(?:\\s+u)?', 'diff_yesterday' => 'juče', 'diff_yesterday_regexp' => 'juče(?:\\s+u)?', 'diff_tomorrow' => 'sutra', 'diff_tomorrow_regexp' => 'sutra(?:\\s+u)?', 'diff_before_yesterday' => 'prekjuče', 'diff_after_tomorrow' => 'preksutra', 'formats' => [ 'LT' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D. MMMM YYYY', 'LLL' => 'D. MMMM YYYY H:mm', 'LLLL' => 'dddd, D. MMMM YYYY H:mm', ], 'calendar' => [ 'sameDay' => '[danas u] LT', 'nextDay' => '[sutra u] LT', 'nextWeek' => function (\Carbon\CarbonInterface $date) { switch ($date->dayOfWeek) { case 0: return '[u nedelju u] LT'; case 3: return '[u sredu u] LT'; case 6: return '[u subotu u] LT'; default: return '[u] dddd [u] LT'; } }, 'lastDay' => '[juče u] LT', 'lastWeek' => function (\Carbon\CarbonInterface $date) { switch ($date->dayOfWeek) { case 0: return '[proÅ”le nedelje u] LT'; case 1: return '[proÅ”log ponedeljka u] LT'; case 2: return '[proÅ”log utorka u] LT'; case 3: return '[proÅ”le srede u] LT'; case 4: return '[proÅ”log četvrtka u] LT'; case 5: return '[proÅ”log petka u] LT'; default: return '[proÅ”le subote u] LT'; } }, 'sameElse' => 'L', ], 'ordinal' => ':number.', 'months' => ['januar', 'februar', 'mart', 'april', 'maj', 'jun', 'jul', 'avgust', 'septembar', 'oktobar', 'novembar', 'decembar'], 'months_short' => ['jan.', 'feb.', 'mar.', 'apr.', 'maj', 'jun', 'jul', 'avg.', 'sep.', 'okt.', 'nov.', 'dec.'], 'weekdays' => ['nedelja', 'ponedeljak', 'utorak', 'sreda', 'četvrtak', 'petak', 'subota'], 'weekdays_short' => ['ned.', 'pon.', 'uto.', 'sre.', 'čet.', 'pet.', 'sub.'], 'weekdays_min' => ['ne', 'po', 'ut', 'sr', 'če', 'pe', 'su'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' i '], ]; PK!ģÉųäšš carbon/src/Carbon/Lang/ar_LB.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/ar.php', [ 'formats' => [ 'L' => 'DD MMM, YYYY', ], 'months' => ['ŁƒŲ§Ł†ŁˆŁ† Ų§Ł„Ų«Ų§Ł†ŁŠ', 'Ų“ŲØŲ§Ų·', 'Ų¢Ų°Ų§Ų±', 'Ł†ŁŠŲ³Ų§Ł†', 'أيار', 'Ų­Ų²ŁŠŲ±Ų§Ł†', 'ŲŖŁ…ŁˆŲ²', 'Ų¢ŲØ', 'Ų£ŁŠŁ„ŁˆŁ„', 'ŲŖŲ“Ų±ŁŠŁ† Ų§Ł„Ų£ŁˆŁ„', 'ŲŖŲ“Ų±ŁŠŁ† Ų§Ł„Ų«Ų§Ł†ŁŠ', 'ŁƒŲ§Ł†ŁˆŁ† Ų§Ł„Ų£ŁˆŁ„'], 'months_short' => ['ŁƒŲ§Ł†ŁˆŁ† Ų§Ł„Ų«Ų§Ł†ŁŠ', 'Ų“ŲØŲ§Ų·', 'Ų¢Ų°Ų§Ų±', 'Ł†ŁŠŲ³Ų§Ł†', 'أيار', 'Ų­Ų²ŁŠŲ±Ų§Ł†', 'ŲŖŁ…ŁˆŲ²', 'Ų¢ŲØ', 'Ų£ŁŠŁ„ŁˆŁ„', 'ŲŖŲ“Ų±ŁŠŁ† Ų§Ł„Ų£ŁˆŁ„', 'ŲŖŲ“Ų±ŁŠŁ† Ų§Ł„Ų«Ų§Ł†ŁŠ', 'ŁƒŲ§Ł†ŁˆŁ† Ų§Ł„Ų£ŁˆŁ„'], 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'weekdays_min' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, ]); PK!“ār   carbon/src/Carbon/Lang/lv_LV.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/lv.php'; PK!x^“FF carbon/src/Carbon/Lang/en_KY.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!•D"" carbon/src/Carbon/Lang/ms_BN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ms.php', [ 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'D/MM/yy', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY, h:mm a', 'LLLL' => 'dd MMMM YYYY, h:mm a', ], 'meridiem' => ['a', 'p'], ]); PK!LųĄnppcarbon/src/Carbon/Lang/dua.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['idiɓa', 'ebyĆ”mu'], 'weekdays' => ['Ć©ti', 'mɔ́sĆŗ', 'kwasĆŗ', 'mukɔ́sĆŗ', 'ŋgisĆŗ', 'ɗónɛsĆŗ', 'esaɓasĆŗ'], 'weekdays_short' => ['Ć©t', 'mɔ́s', 'kwa', 'muk', 'ŋgi', 'ɗón', 'esa'], 'weekdays_min' => ['Ć©t', 'mɔ́s', 'kwa', 'muk', 'ŋgi', 'ɗón', 'esa'], 'months' => ['dimɔ́di', 'ŋgɔndɛ', 'sɔŋɛ', 'diɓƔɓƔ', 'emiasele', 'esɔpɛsɔpɛ', 'madiɓɛ́díɓɛ́', 'diŋgindi', 'nyɛtɛki', 'mayĆ©sɛ́', 'tinĆ­nĆ­', 'elÔŋgɛ́'], 'months_short' => ['di', 'ŋgɔn', 'sɔŋ', 'diɓ', 'emi', 'esɔ', 'mad', 'diŋ', 'nyɛt', 'may', 'tin', 'elĆ”'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'year' => ':count ma mbu', // less reliable 'y' => ':count ma mbu', // less reliable 'a_year' => ':count ma mbu', // less reliable 'month' => ':count myo̱di', // less reliable 'm' => ':count myo̱di', // less reliable 'a_month' => ':count myo̱di', // less reliable 'week' => ':count woki', // less reliable 'w' => ':count woki', // less reliable 'a_week' => ':count woki', // less reliable 'day' => ':count buńa', // less reliable 'd' => ':count buńa', // less reliable 'a_day' => ':count buńa', // less reliable 'hour' => ':count ma awa', // less reliable 'h' => ':count ma awa', // less reliable 'a_hour' => ':count ma awa', // less reliable 'minute' => ':count minuti', // less reliable 'min' => ':count minuti', // less reliable 'a_minute' => ':count minuti', // less reliable 'second' => ':count maba', // less reliable 's' => ':count maba', // less reliable 'a_second' => ':count maba', // less reliable ]); PK!¾._ŗŗ!carbon/src/Carbon/Lang/sgs_LT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Arnas Udovičius bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'YYYY.MM.DD', ], 'months' => ['sausė', 'vasarė', 'kuova', 'balondė', 'gegožės', 'bėrželė', 'lĆ«pas', 'rogpjÅ«tė', 'siejės', 'spalė', 'lapkrėstė', 'grÅÆdė'], 'months_short' => ['Sau', 'Vas', 'Kuo', 'Bal', 'Geg', 'Bėr', 'LĆ«p', 'Rgp', 'Sie', 'Spa', 'Lap', 'Grd'], 'weekdays' => ['nedielės dĆ«na', 'panedielis', 'oterninks', 'sereda', 'četvergs', 'petnīčė', 'sobata'], 'weekdays_short' => ['Nd', 'Pn', 'Ot', 'Sr', 'Čt', 'Pt', 'Sb'], 'weekdays_min' => ['Nd', 'Pn', 'Ot', 'Sr', 'Čt', 'Pt', 'Sb'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'minute' => ':count mažos', // less reliable 'min' => ':count mažos', // less reliable 'a_minute' => ':count mažos', // less reliable 'year' => ':count metā', 'y' => ':count metā', 'a_year' => ':count metā', 'month' => ':count mienou', 'm' => ':count mienou', 'a_month' => ':count mienou', 'week' => ':count nedielė', 'w' => ':count nedielė', 'a_week' => ':count nedielė', 'day' => ':count dÄ«na', 'd' => ':count dÄ«na', 'a_day' => ':count dÄ«na', 'hour' => ':count adÄ«na', 'h' => ':count adÄ«na', 'a_hour' => ':count adÄ«na', 'second' => ':count Sekondė', 's' => ':count Sekondė', 'a_second' => ':count Sekondė', ]); PK!Zōž)__ carbon/src/Carbon/Lang/de_DE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Free Software Foundation, Inc. bug-glibc-locales@gnu.org */ return require __DIR__.'/de.php'; PK!č&¾uucarbon/src/Carbon/Lang/ses.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['Adduha', 'Aluula'], 'weekdays' => ['Alhadi', 'Atinni', 'Atalaata', 'Alarba', 'Alhamiisa', 'Alzuma', 'Asibti'], 'weekdays_short' => ['Alh', 'Ati', 'Ata', 'Ala', 'Alm', 'Alz', 'Asi'], 'weekdays_min' => ['Alh', 'Ati', 'Ata', 'Ala', 'Alm', 'Alz', 'Asi'], 'months' => ['Žanwiye', 'Feewiriye', 'Marsi', 'Awiril', 'Me', 'Žuweŋ', 'Žuyye', 'Ut', 'Sektanbur', 'Oktoobur', 'Noowanbur', 'Deesanbur'], 'months_short' => ['Žan', 'Fee', 'Mar', 'Awi', 'Me', 'Žuw', 'Žuy', 'Ut', 'Sek', 'Okt', 'Noo', 'Dee'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'month' => ':count alaada', // less reliable 'm' => ':count alaada', // less reliable 'a_month' => ':count alaada', // less reliable 'hour' => ':count ɲaajin', // less reliable 'h' => ':count ɲaajin', // less reliable 'a_hour' => ':count ɲaajin', // less reliable 'minute' => ':count zarbu', // less reliable 'min' => ':count zarbu', // less reliable 'a_minute' => ':count zarbu', // less reliable 'year' => ':count jiiri', 'y' => ':count jiiri', 'a_year' => ':count jiiri', 'week' => ':count jirbiiyye', 'w' => ':count jirbiiyye', 'a_week' => ':count jirbiiyye', 'day' => ':count zaari', 'd' => ':count zaari', 'a_day' => ':count zaari', 'second' => ':count ihinkante', 's' => ':count ihinkante', 'a_second' => ':count ihinkante', ]); PK!¦ŅlżNNcarbon/src/Carbon/Lang/ti.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/ti_ER.php'; PK!Ńē±   carbon/src/Carbon/Lang/nl_CW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/nl.php'; PK!Ćū%Ū.. carbon/src/Carbon/Lang/zh_SG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/zh.php', [ 'formats' => [ 'L' => 'YYYY幓MM月DDę—„', ], 'months' => ['äø€ęœˆ', '二月', 'äø‰ęœˆ', 'å››ęœˆ', 'äŗ”ęœˆ', 'å…­ęœˆ', '七月', 'å…«ęœˆ', 'ä¹ęœˆ', 'åęœˆ', 'åäø€ęœˆ', 'åäŗŒęœˆ'], 'months_short' => ['äø€ęœˆ', '二月', 'äø‰ęœˆ', 'å››ęœˆ', 'äŗ”ęœˆ', 'å…­ęœˆ', '七月', 'å…«ęœˆ', 'ä¹ęœˆ', 'åęœˆ', 'åäø€ęœˆ', 'åäŗŒęœˆ'], 'weekdays' => ['ę˜ŸęœŸę—„', 'ę˜ŸęœŸäø€', '星期二', 'ę˜ŸęœŸäø‰', 'ę˜ŸęœŸå››', 'ę˜ŸęœŸäŗ”', 'ę˜ŸęœŸå…­'], 'weekdays_short' => ['ę—„', 'äø€', '二', 'äø‰', '四', 'äŗ”', '六'], 'weekdays_min' => ['ę—„', 'äø€', '二', 'äø‰', '四', 'äŗ”', '六'], 'day_of_first_week_of_year' => 1, ]); PK![ä˼   carbon/src/Carbon/Lang/my_MM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/my.php'; PK!śóĪ˜˜ carbon/src/Carbon/Lang/wa_BE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Djan SACRE Pablo Saratxaga pablo@mandrakesoft.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['di djanvĆ®', 'di fevrĆ®', 'di mĆ„ss', 'd’ avri', 'di may', 'di djun', 'di djulete', 'd’ awousse', 'di setimbe', 'd’ octĆ“be', 'di nĆ“vimbe', 'di decimbe'], 'months_short' => ['dja', 'fev', 'mĆ„s', 'avr', 'may', 'djn', 'djl', 'awo', 'set', 'oct', 'nĆ“v', 'dec'], 'weekdays' => ['dimegne', 'londi', 'mĆ„rdi', 'mierkidi', 'djudi', 'vĆ©nrdi', 'semdi'], 'weekdays_short' => ['dim', 'lon', 'mĆ„r', 'mie', 'dju', 'vĆ©n', 'sem'], 'weekdays_min' => ['dim', 'lon', 'mĆ„r', 'mie', 'dju', 'vĆ©n', 'sem'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'year' => ':count anĆŖye', 'y' => ':count anĆŖye', 'a_year' => ':count anĆŖye', 'month' => ':count meĆ»s', 'm' => ':count meĆ»s', 'a_month' => ':count meĆ»s', 'week' => ':count samwinne', 'w' => ':count samwinne', 'a_week' => ':count samwinne', 'day' => ':count djoĆ»', 'd' => ':count djoĆ»', 'a_day' => ':count djoĆ»', 'hour' => ':count eure', 'h' => ':count eure', 'a_hour' => ':count eure', 'minute' => ':count munute', 'min' => ':count munute', 'a_minute' => ':count munute', 'second' => ':count Sigonde', 's' => ':count Sigonde', 'a_second' => ':count Sigonde', ]); PK!nć•Ć”” carbon/src/Carbon/Lang/sd_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Red Hat, Pune bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/sd.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['Ų¬Ł†ŁˆŲ±ŁŠ', 'فبروري', 'مارچ', 'Ų§Ł¾Ų±ŁŠŁ„', 'Ł…ŁŠ', 'Ų¬ŁˆŁ†', 'Ų¬ŁˆŁ„Ų§Ų”Ł', 'آگسٽ', 'Ų³ŁŠŁ¾Ł½ŁŠŁ…ŲØŲ±', 'آڪٽوبر', 'Ł†ŁˆŁ…ŲØŲ±', 'ŚŠŲ³Ł…ŲØŲ±'], 'months_short' => ['Ų¬Ł†ŁˆŲ±ŁŠ', 'فبروري', 'مارچ', 'Ų§Ł¾Ų±ŁŠŁ„', 'Ł…ŁŠ', 'Ų¬ŁˆŁ†', 'Ų¬ŁˆŁ„Ų§Ų”Ł', 'آگسٽ', 'Ų³ŁŠŁ¾Ł½ŁŠŁ…ŲØŲ±', 'آڪٽوبر', 'Ł†ŁˆŁ…ŲØŲ±', 'ŚŠŲ³Ł…ŲØŲ±'], 'weekdays' => ['Ų¢Ų±ŲŖŁˆŲ§Ų±Ł', 'Ų³ŁˆŁ…Ų±Ł', 'Ł…Ł†ŚÆŁ„Ł', 'Ł»ŁŚŒŲ±Ł', 'وسپت', 'Ų¬ŁŁ…Łˆ', 'ڇنڇر'], 'weekdays_short' => ['Ų¢Ų±ŲŖŁˆŲ§Ų±Ł', 'Ų³ŁˆŁ…Ų±Ł', 'Ł…Ł†ŚÆŁ„Ł', 'Ł»ŁŚŒŲ±Ł', 'وسپت', 'Ų¬ŁŁ…Łˆ', 'ڇنڇر'], 'weekdays_min' => ['Ų¢Ų±ŲŖŁˆŲ§Ų±Ł', 'Ų³ŁˆŁ…Ų±Ł', 'Ł…Ł†ŚÆŁ„Ł', 'Ł»ŁŚŒŲ±Ł', 'وسپت', 'Ų¬ŁŁ…Łˆ', 'ڇنڇر'], 'day_of_first_week_of_year' => 1, ]); PK!Ąd2½   carbon/src/Carbon/Lang/fr_TD.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/fr.php', [ 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY h:mm a', 'LLLL' => 'dddd D MMMM YYYY h:mm a', ], ]); PK!x^“FF carbon/src/Carbon/Lang/en_VG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!x^“FF carbon/src/Carbon/Lang/en_PN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!Zø1¼   carbon/src/Carbon/Lang/fa_AF.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/fa.php', [ 'meridiem' => ['Ł‚', 'ŲØ'], 'weekend' => [4, 5], 'formats' => [ 'L' => 'OY/OM/OD', 'LL' => 'OD MMM OY', 'LLL' => 'OD MMMM OYŲŒā€ H:mm', 'LLLL' => 'dddd OD MMMM OYŲŒā€ H:mm', ], ]); PK! ³ ĆLL carbon/src/Carbon/Lang/fr_CM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/fr.php', [ 'meridiem' => ['mat.', 'soir'], ]); PK!P!Ų((carbon/src/Carbon/Lang/qu.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/es_UY.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM, YYYY HH:mm', ], 'first_day_of_week' => 0, ]); PK!ābĆ(( carbon/src/Carbon/Lang/ar_PS.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ar.php', [ ]); PK!x^“FF carbon/src/Carbon/Lang/en_GH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!Šfōc   carbon/src/Carbon/Lang/fr_CI.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!x^“FF carbon/src/Carbon/Lang/en_AI.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!ābĆ(( carbon/src/Carbon/Lang/ar_DJ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ar.php', [ ]); PK!"żBOOcarbon/src/Carbon/Lang/anp.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/anp_IN.php'; PK!tßÄżńń carbon/src/Carbon/Lang/tk_TM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Authors: * - Ghorban M. Tavakoly Pablo Saratxaga & Ghorban M. Tavakoly pablo@walon.org & gmt314@yahoo.com * - SuperManPHP * - Maksat Meredow (isadma) */ $transformDiff = function ($input) { return strtr($input, [ 'sekunt' => 'sekunt', 'hepde' => 'hepde', ]); }; return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], 'months' => ['Ɲanwar', 'Fewral', 'Mart', 'Aprel', 'Maý', 'Iýun', 'Iýul', 'Awgust', 'Sentýabr', 'Oktýabr', 'Noýabr', 'Dekabr'], 'months_short' => ['Ɲan', 'Few', 'Mar', 'Apr', 'Maý', 'Iýn', 'Iýl', 'Awg', 'Sen', 'Okt', 'Noý', 'Dek'], 'weekdays' => ['Duşenbe', 'Sişenbe', 'Ƈarşenbe', 'Penşenbe', 'Anna', 'Şenbe', 'Ɲekşenbe'], 'weekdays_short' => ['Duş', 'Siş', 'Ƈar', 'Pen', 'Ann', 'Şen', 'Ɲek'], 'weekdays_min' => ['Du', 'Si', 'Ƈa', 'Pe', 'An', 'Şe', 'Ɲe'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'year' => ':count ýyl', 'y' => ':count ýyl', 'a_year' => ':count ýyl', 'month' => ':count aý', 'm' => ':count aý', 'a_month' => ':count aý', 'week' => ':count hepde', 'w' => ':count hepde', 'a_week' => ':count hepde', 'day' => ':count gün', 'd' => ':count gün', 'a_day' => ':count gün', 'hour' => ':count sagat', 'h' => ':count sagat', 'a_hour' => ':count sagat', 'minute' => ':count minut', 'min' => ':count minut', 'a_minute' => ':count minut', 'second' => ':count sekunt', 's' => ':count sekunt', 'a_second' => ':count sekunt', 'ago' => function ($time) use ($transformDiff) { return $transformDiff($time).' ozal'; }, 'from_now' => function ($time) use ($transformDiff) { return $transformDiff($time).' soňra'; }, 'after' => function ($time) use ($transformDiff) { return $transformDiff($time).' soň'; }, 'before' => function ($time) use ($transformDiff) { return $transformDiff($time).' öň'; }, ]); PK!ŗ!ŪNNcarbon/src/Carbon/Lang/os.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/os_RU.php'; PK!“v˜ūū carbon/src/Carbon/Lang/sw_TZ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Kamusi Project Martin Benjamin locales@kamusi.org */ return array_replace_recursive(require __DIR__.'/sw.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['Januari', 'Februari', 'Machi', 'Aprili', 'Mei', 'Juni', 'Julai', 'Agosti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'], 'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'], 'weekdays' => ['Jumapili', 'Jumatatu', 'Jumanne', 'Jumatano', 'Alhamisi', 'Ijumaa', 'Jumamosi'], 'weekdays_short' => ['J2', 'J3', 'J4', 'J5', 'Alh', 'Ij', 'J1'], 'weekdays_min' => ['J2', 'J3', 'J4', 'J5', 'Alh', 'Ij', 'J1'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'meridiem' => ['asubuhi', 'alasiri'], ]); PK!x^“FF carbon/src/Carbon/Lang/en_CC.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!x^“FF carbon/src/Carbon/Lang/en_MW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!‰[Ƀƒ carbon/src/Carbon/Lang/es_SV.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/es.php', [ 'months' => ['enero', 'febrero', 'marzo', 'abril', 'mayo', 'junio', 'julio', 'agosto', 'septiembre', 'octubre', 'noviembre', 'diciembre'], 'months_short' => ['ene', 'feb', 'mar', 'abr', 'may', 'jun', 'jul', 'ago', 'sep', 'oct', 'nov', 'dic'], 'day_of_first_week_of_year' => 1, ]); PK!Šfōc   carbon/src/Carbon/Lang/fr_NC.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!°āÕOOcarbon/src/Carbon/Lang/nan.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/nan_TW.php'; PK!B7²ņ   carbon/src/Carbon/Lang/bs_BA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/bs.php'; PK!B½6«   carbon/src/Carbon/Lang/hr_HR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/hr.php'; PK!x^“FF carbon/src/Carbon/Lang/en_LR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!öpµNNcarbon/src/Carbon/Lang/kl.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/kl_GL.php'; PK!ㄯ¹   carbon/src/Carbon/Lang/kn_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/kn.php'; PK! “¢ą@@ carbon/src/Carbon/Lang/fr_DZ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/fr.php', [ 'first_day_of_week' => 6, 'weekend' => [5, 6], 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY h:mm a', 'LLLL' => 'dddd D MMMM YYYY h:mm a', ], ]); PK!M|UNNcarbon/src/Carbon/Lang/tn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/tn_ZA.php'; PK!J> OOcarbon/src/Carbon/Lang/lzh.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/lzh_TW.php'; PK!ŹG“ŲŲcarbon/src/Carbon/Lang/is.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - KristjĆ”n Ingi Geirsson */ return [ 'year' => '1 Ć”r|:count Ć”r', 'y' => '1 Ć”r|:count Ć”r', 'month' => '1 mĆ”nuưur|:count mĆ”nuưir', 'm' => '1 mĆ”nuưur|:count mĆ”nuưir', 'week' => '1 vika|:count vikur', 'w' => '1 vika|:count vikur', 'day' => '1 dagur|:count dagar', 'd' => '1 dagur|:count dagar', 'hour' => '1 klukkutĆ­mi|:count klukkutĆ­mar', 'h' => '1 klukkutĆ­mi|:count klukkutĆ­mar', 'minute' => '1 mĆ­nĆŗta|:count mĆ­nĆŗtur', 'min' => '1 mĆ­nĆŗta|:count mĆ­nĆŗtur', 'second' => '1 sekĆŗnda|:count sekĆŗndur', 's' => '1 sekĆŗnda|:count sekĆŗndur', 'ago' => ':time sƭưan', 'from_now' => ':time sƭưan', 'after' => ':time eftir', 'before' => ':time fyrir', 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' og '], 'meridiem' => ['fh', 'eh'], 'diff_now' => 'nĆŗna', 'diff_yesterday' => 'Ć­ gƦr', 'diff_tomorrow' => 'Ć” morgun', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D. MMMM YYYY', 'LLL' => 'D. MMMM [kl.] HH:mm', 'LLLL' => 'dddd D. MMMM YYYY [kl.] HH:mm', ], 'weekdays' => ['sunnudaginn', 'mĆ”nudaginn', 'þriưjudaginn', 'miưvikudaginn', 'fimmtudaginn', 'fƶstudaginn', 'laugardaginn'], 'weekdays_short' => ['sun', 'mĆ”n', 'þri', 'miư', 'fim', 'fƶs', 'lau'], 'weekdays_min' => ['sun', 'mĆ”n', 'þri', 'miư', 'fim', 'fƶs', 'lau'], 'months' => ['janĆŗar', 'febrĆŗar', 'mars', 'aprĆ­l', 'maĆ­', 'jĆŗnĆ­', 'jĆŗlĆ­', 'Ć”gĆŗst', 'september', 'október', 'nóvember', 'desember'], 'months_short' => ['jan', 'feb', 'mar', 'apr', 'maĆ­', 'jĆŗn', 'jĆŗl', 'Ć”gĆŗ', 'sep', 'okt', 'nóv', 'des'], ]; PK!:€šŠŠ carbon/src/Carbon/Lang/sq_XK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/sq.php', [ 'formats' => [ 'L' => 'D.M.YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY, HH:mm', 'LLLL' => 'dddd, D MMMM YYYY, HH:mm', ], ]); PK!pa I   carbon/src/Carbon/Lang/ss_ZA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ss.php'; PK!ŲTrŁ  !carbon/src/Carbon/Lang/nds_NL.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - information from Kenneth Christiansen Kenneth Christiansen, Pablo Saratxaga kenneth@gnu.org, pablo@mandrakesoft.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], 'months' => ['Jaunuwoa', 'Februwoa', 'Moaz', 'Aprell', 'Mai', 'Juni', 'Juli', 'August', 'Septamba', 'Oktoba', 'Nowamba', 'Dezamba'], 'months_short' => ['Jan', 'Feb', 'Moz', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Now', 'Dez'], 'weekdays' => ['Sinndag', 'Mondag', 'Dingsdag', 'MeddwƤakj', 'Donnadag', 'Friedag', 'Sinnowend'], 'weekdays_short' => ['Sdg', 'Mdg', 'Dsg', 'Mwk', 'Ddg', 'Fdg', 'Swd'], 'weekdays_min' => ['Sdg', 'Mdg', 'Dsg', 'Mwk', 'Ddg', 'Fdg', 'Swd'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, ]); PK!‰­BÓÓ!carbon/src/Carbon/Lang/anp_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - bhashaghar@googlegroups.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą„ˆą¤²', 'मई', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'सितंबर', 'ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°', 'नवंबर', 'दिसंबर"'], 'months_short' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą„ˆą¤²', 'मई', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'सितंबर', 'ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°', 'नवंबर', 'दिसंबर'], 'weekdays' => ['रविवार', 'ą¤øą„‹ą¤®ą¤µą¤¾ą¤°', 'मंगलवार', 'ą¤¬ą„ą¤§ą¤µą¤¾ą¤°', 'ą¤¬ą„ƒą¤¹ą¤øą„ą¤Ŗą¤¤ą¤æą¤µą¤¾ą¤°', 'ą¤¶ą„ą¤•ą„ą¤°ą¤µą¤¾ą¤°', 'शनिवार'], 'weekdays_short' => ['रवि', 'ą¤øą„‹ą¤®', 'मंगल', 'ą¤¬ą„ą¤§', 'ą¤¬ą„ƒą¤¹ą¤øą„ą¤Ŗą¤¤ą¤æ', 'ą¤¶ą„ą¤•ą„ą¤°', 'शनि'], 'weekdays_min' => ['रवि', 'ą¤øą„‹ą¤®', 'मंगल', 'ą¤¬ą„ą¤§', 'ą¤¬ą„ƒą¤¹ą¤øą„ą¤Ŗą¤¤ą¤æ', 'ą¤¶ą„ą¤•ą„ą¤°', 'शनि'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤¹ą„ą¤Ø', 'ą¤…ą¤Ŗą¤°ą¤¾ą¤¹ą„ą¤Ø'], ]); PK!Ŗ3Zżżcarbon/src/Carbon/Lang/bez.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['pamilau', 'pamunyi'], 'weekdays' => ['pa mulungu', 'pa shahuviluha', 'pa hivili', 'pa hidatu', 'pa hitayi', 'pa hihanu', 'pa shahulembela'], 'weekdays_short' => ['Mul', 'Vil', 'Hiv', 'Hid', 'Hit', 'Hih', 'Lem'], 'weekdays_min' => ['Mul', 'Vil', 'Hiv', 'Hid', 'Hit', 'Hih', 'Lem'], 'months' => ['pa mwedzi gwa hutala', 'pa mwedzi gwa wuvili', 'pa mwedzi gwa wudatu', 'pa mwedzi gwa wutai', 'pa mwedzi gwa wuhanu', 'pa mwedzi gwa sita', 'pa mwedzi gwa saba', 'pa mwedzi gwa nane', 'pa mwedzi gwa tisa', 'pa mwedzi gwa kumi', 'pa mwedzi gwa kumi na moja', 'pa mwedzi gwa kumi na mbili'], 'months_short' => ['Hut', 'Vil', 'Dat', 'Tai', 'Han', 'Sit', 'Sab', 'Nan', 'Tis', 'Kum', 'Kmj', 'Kmb'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK!x^“FF carbon/src/Carbon/Lang/en_TO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!&oqŪ|| carbon/src/Carbon/Lang/en_IL.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Yoav Amit * - FranƧois B * - Mayank Badola * - JD Isaacks */ return array_replace_recursive(require __DIR__.'/en.php', [ 'from_now' => 'in :time', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK!·«Æbbcarbon/src/Carbon/Lang/sbp.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['Lwamilawu', 'Pashamihe'], 'weekdays' => ['Mulungu', 'Jumatatu', 'Jumanne', 'Jumatano', 'Alahamisi', 'Ijumaa', 'Jumamosi'], 'weekdays_short' => ['Mul', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'], 'weekdays_min' => ['Mul', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'], 'months' => ['Mupalangulwa', 'Mwitope', 'Mushende', 'Munyi', 'Mushende Magali', 'Mujimbi', 'Mushipepo', 'Mupuguto', 'Munyense', 'Mokhu', 'Musongandembwe', 'Muhaano'], 'months_short' => ['Mup', 'Mwi', 'Msh', 'Mun', 'Mag', 'Muj', 'Msp', 'Mpg', 'Mye', 'Mok', 'Mus', 'Muh'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK!>įF   carbon/src/Carbon/Lang/oc_FR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/oc.php'; PK!x^“FF carbon/src/Carbon/Lang/en_DE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!**––"carbon/src/Carbon/Lang/uz_Arab.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/fa.php', [ 'weekdays' => ['ŪŒŚ©Ų“Ł†ŲØŁ‡', 'ŲÆŁˆŲ“Ł†ŲØŁ‡', 'Ų³Ł‡ā€ŒŲ“Ł†ŲØŁ‡', 'چهارؓنبه', 'پنجؓنبه', 'جمعه', 'ؓنبه'], 'weekdays_short' => ['ی.', 'ŲÆ.', 'Ų³.', 'چ.', 'پ.', 'Ų¬.', 'Ų“.'], 'weekdays_min' => ['ی.', 'ŲÆ.', 'Ų³.', 'چ.', 'پ.', 'Ų¬.', 'Ų“.'], 'months' => ['Ų¬Ł†ŁˆŲ±ŪŒ', 'فبروری', 'مارچ', 'Ų§Ł¾Ų±ŪŒŁ„', 'Ł…ŪŒ', 'Ų¬ŁˆŁ†', 'Ų¬ŁˆŁ„Ų§ŪŒ', 'Ų§ŚÆŲ³ŲŖ', 'سپتمبر', 'اکتوبر', 'Ł†ŁˆŁ…ŲØŲ±', 'دسمبر'], 'months_short' => ['Ų¬Ł†Łˆ', 'فبر', 'Ł…Ų§Ų±', 'اپر', 'Ł…ŪŒ', 'Ų¬ŁˆŁ†', 'Ų¬ŁˆŁ„', 'Ų§ŚÆŲ³', 'سپت', 'اکت', 'Ł†ŁˆŁ…', 'دسم'], 'first_day_of_week' => 6, 'weekend' => [4, 5], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY-MM-dd', 'LL' => 'YYYY MMM D', 'LLL' => 'YYYY MMMM D HH:mm', 'LLLL' => 'YYYY MMMM D, dddd HH:mm', ], ]); PK!’›W”rrcarbon/src/Carbon/Lang/ii.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['źŽøź„‘', 'ꁯꋒ'], 'weekdays' => ['ź‘­ź†ź‘', 'ź†źŠ‚ź‹', 'ź†źŠ‚ź‘', 'ź†źŠ‚źŒ•', 'ź†źŠ‚ź‡–', 'ź†źŠ‚ź‰¬', 'ź†źŠ‚źƒ˜'], 'weekdays_short' => ['ź‘­ź†', 'ź†ź‹', 'ź†ź‘', 'ź†źŒ•', 'ź†ź‡–', 'ź†ź‰¬', 'ź†źƒ˜'], 'weekdays_min' => ['ź‘­ź†', 'ź†ź‹', 'ź†ź‘', 'ź†źŒ•', 'ź†ź‡–', 'ź†ź‰¬', 'ź†źƒ˜'], 'months' => null, 'months_short' => ['ź‹ź†Ŗ', 'ź‘ź†Ŗ', 'źŒ•ź†Ŗ', 'ꇖꆪ', 'ꉬꆪ', 'źƒ˜ź†Ŗ', 'źƒź†Ŗ', 'ꉆꆪ', 'źˆ¬ź†Ŗ', 'źŠ°ź†Ŗ', 'źŠ°źŠŖź†Ŗ', 'źŠ°ź‘‹ź†Ŗ'], 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'YYYY-MM-dd', 'LL' => 'YYYY MMM D', 'LLL' => 'YYYY MMMM D h:mm a', 'LLLL' => 'YYYY MMMM D, dddd h:mm a', ], 'year' => ':count ź’‰', // less reliable 'y' => ':count ź’‰', // less reliable 'a_year' => ':count ź’‰', // less reliable 'month' => ':count ꆪ', 'm' => ':count ꆪ', 'a_month' => ':count ꆪ', 'week' => ':count źƒ', // less reliable 'w' => ':count źƒ', // less reliable 'a_week' => ':count źƒ', // less reliable 'day' => ':count źœ', // less reliable 'd' => ':count źœ', // less reliable 'a_day' => ':count źœ', // less reliable 'hour' => ':count ź„®źˆ‰', 'h' => ':count ź„®źˆ‰', 'a_hour' => ':count ź„®źˆ‰', 'minute' => ':count ź€„źŠ­', // less reliable 'min' => ':count ź€„źŠ­', // less reliable 'a_minute' => ':count ź€„źŠ­', // less reliable 'second' => ':count ꇅ', // less reliable 's' => ':count ꇅ', // less reliable 'a_second' => ':count ꇅ', // less reliable ]); PK! f,   carbon/src/Carbon/Lang/sq_AL.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/sq.php'; PK!µ]„p   carbon/src/Carbon/Lang/ps_AF.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ps.php'; PK!hŁ4·EE carbon/src/Carbon/Lang/af_NA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/af.php', [ 'meridiem' => ['v', 'n'], 'weekdays' => ['Sondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrydag', 'Saterdag'], 'weekdays_short' => ['So.', 'Ma.', 'Di.', 'Wo.', 'Do.', 'Vr.', 'Sa.'], 'weekdays_min' => ['So.', 'Ma.', 'Di.', 'Wo.', 'Do.', 'Vr.', 'Sa.'], 'months' => ['Januarie', 'Februarie', 'Maart', 'April', 'Mei', 'Junie', 'Julie', 'Augustus', 'September', 'Oktober', 'November', 'Desember'], 'months_short' => ['Jan.', 'Feb.', 'Mrt.', 'Apr.', 'Mei', 'Jun.', 'Jul.', 'Aug.', 'Sep.', 'Okt.', 'Nov.', 'Des.'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY-MM-DD', 'LL' => 'DD MMM YYYY', 'LLL' => 'DD MMMM YYYY HH:mm', 'LLLL' => 'dddd, DD MMMM YYYY HH:mm', ], ]); PK!Ór9Å carbon/src/Carbon/Lang/tt_RU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Rinat Norkin Pablo Saratxaga, Rinat Norkin pablo@mandrakesoft.com, rinat@taif.ru */ return [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'DD MMM, HH:mm', 'LLLL' => 'DD MMMM YYYY, HH:mm', ], 'months' => ['ŃŠ½Š²Š°Ń€Ń', 'Ń„ŠµŠ²Ń€Š°Š»Ń', 'марта', 'Š°ŠæŃ€ŠµŠ»Ń', 'Š¼Š°Ń', 'ŠøŃŽŠ½Ń', 'ŠøŃŽŠ»Ń', 'Š°Š²Š³ŃƒŃŃ‚Š°', 'ŃŠµŠ½Ń‚ŃŠ±Ń€Ń', 'Š¾ŠŗŃ‚ŃŠ±Ń€Ń', 'Š½Š¾ŃŠ±Ń€Ń', 'Š“ŠµŠŗŠ°Š±Ń€Ń'], 'months_short' => ['ŃŠ½Š²', 'фев', 'мар', 'апр', 'май', 'ŠøŃŽŠ½', 'ŠøŃŽŠ»', 'авг', 'сен', 'окт', 'Š½Š¾Ń', 'Гек'], 'weekdays' => ['ŃŠŗŃˆÓ™Š¼Š±Šµ', 'Š“Ń‹ŃˆÓ™Š¼Š±Šµ', 'ŃŠøŃˆÓ™Š¼Š±Šµ', 'Ń‡Ó™Ń€ŃˆÓ™Ó™Š¼Š±Šµ', 'ŠæÓ™Š½Ņ—ŠµŃˆŠ¼Š±Šµ', 'җомга', 'ŃˆŠøŠ¼Š±Ó™'], 'weekdays_short' => ['ŃŠŗŃˆ', 'Š“Ń‹Ńˆ', 'сиш', 'чәрш', 'пәнҗ', 'җом', 'шим'], 'weekdays_min' => ['ŃŠŗŃˆ', 'Š“Ń‹Ńˆ', 'сиш', 'чәрш', 'пәнҗ', 'җом', 'шим'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'year' => ':count ел', 'month' => ':count ай', 'week' => ':count атна', 'day' => ':count көн', 'hour' => ':count ŃÓ™Š³Š°Ń‚ŃŒ', 'minute' => ':count Š¼ŠøŠ½ŃƒŃ‚', 'second' => ':count секунГ', ]; PK!x^“FF carbon/src/Carbon/Lang/en_NA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!Ę¢:ž ž carbon/src/Carbon/Lang/br.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - Serhan Apaydın * - JD Isaacks */ return [ 'year' => '{1}:count bloaz|{3,4,5,9}:count bloaz|[0,Inf[:count vloaz', 'a_year' => '{1}ur bloaz|{3,4,5,9}:count bloaz|[0,Inf[:count vloaz', 'month' => '{1}:count miz|{2}:count viz|[0,Inf[:count miz', 'a_month' => '{1}ur miz|{2}:count viz|[0,Inf[:count miz', 'week' => ':count sizhun', 'a_week' => '{1}ur sizhun|:count sizhun', 'day' => '{1}:count devezh|{2}:count zevezh|[0,Inf[:count devezh', 'a_day' => '{1}un devezh|{2}:count zevezh|[0,Inf[:count devezh', 'hour' => ':count eur', 'a_hour' => '{1}un eur|:count eur', 'minute' => '{1}:count vunutenn|{2}:count vunutenn|[0,Inf[:count munutenn', 'a_minute' => '{1}ur vunutenn|{2}:count vunutenn|[0,Inf[:count munutenn', 'second' => ':count eilenn', 'a_second' => '{1}un nebeud segondennoù|[0,Inf[:count eilenn', 'ago' => ':time \'zo', 'from_now' => 'a-benn :time', 'diff_now' => 'bremaƱ', 'diff_today' => 'Hiziv', 'diff_today_regexp' => 'Hiziv(?:\\s+da)?', 'diff_yesterday' => 'decʼh', 'diff_yesterday_regexp' => 'Dec\'h(?:\\s+da)?', 'diff_tomorrow' => 'warcʼhoazh', 'diff_tomorrow_regexp' => 'Warc\'hoazh(?:\\s+da)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D [a viz] MMMM YYYY', 'LLL' => 'D [a viz] MMMM YYYY HH:mm', 'LLLL' => 'dddd, D [a viz] MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Hiziv da] LT', 'nextDay' => '[Warc\'hoazh da] LT', 'nextWeek' => 'dddd [da] LT', 'lastDay' => '[Dec\'h da] LT', 'lastWeek' => 'dddd [paset da] LT', 'sameElse' => 'L', ], 'ordinal' => function ($number) { return $number.($number === 1 ? 'aƱ' : 'vet'); }, 'months' => ['Genver', 'C\'hwevrer', 'Meurzh', 'Ebrel', 'Mae', 'Mezheven', 'Gouere', 'Eost', 'Gwengolo', 'Here', 'Du', 'Kerzu'], 'months_short' => ['Gen', 'C\'hwe', 'Meu', 'Ebr', 'Mae', 'Eve', 'Gou', 'Eos', 'Gwe', 'Her', 'Du', 'Ker'], 'weekdays' => ['Sul', 'Lun', 'Meurzh', 'Merc\'her', 'Yaou', 'Gwener', 'Sadorn'], 'weekdays_short' => ['Sul', 'Lun', 'Meu', 'Mer', 'Yao', 'Gwe', 'Sad'], 'weekdays_min' => ['Su', 'Lu', 'Me', 'Mer', 'Ya', 'Gw', 'Sa'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' hag '], 'meridiem' => ['A.M.', 'G.M.'], 'y' => ':count bl.', 'd' => ':count d', 'h' => ':count e', 'min' => ':count min', 's' => ':count s', ]; PK!x^“FF carbon/src/Carbon/Lang/en_NL.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!‘żÕąššcarbon/src/Carbon/Lang/eu.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - FranƧois B * - JD Isaacks */ return [ 'year' => 'urte bat|:count urte', 'y' => 'Urte 1|:count urte', 'month' => 'hilabete bat|:count hilabete', 'm' => 'Hile 1|:count hile', 'week' => 'Aste 1|:count aste', 'w' => 'Aste 1|:count aste', 'day' => 'egun bat|:count egun', 'd' => 'Egun 1|:count egun', 'hour' => 'ordu bat|:count ordu', 'h' => 'Ordu 1|:count ordu', 'minute' => 'minutu bat|:count minutu', 'min' => 'Minutu 1|:count minutu', 'second' => 'segundo batzuk|:count segundo', 's' => 'Segundu 1|:count segundu', 'ago' => 'duela :time', 'from_now' => ':time barru', 'after' => ':time geroago', 'before' => ':time lehenago', 'diff_now' => 'orain', 'diff_today' => 'gaur', 'diff_yesterday' => 'atzo', 'diff_tomorrow' => 'bihar', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY-MM-DD', 'LL' => 'YYYY[ko] MMMM[ren] D[a]', 'LLL' => 'YYYY[ko] MMMM[ren] D[a] HH:mm', 'LLLL' => 'dddd, YYYY[ko] MMMM[ren] D[a] HH:mm', ], 'calendar' => [ 'sameDay' => '[gaur] LT[etan]', 'nextDay' => '[bihar] LT[etan]', 'nextWeek' => 'dddd LT[etan]', 'lastDay' => '[atzo] LT[etan]', 'lastWeek' => '[aurreko] dddd LT[etan]', 'sameElse' => 'L', ], 'ordinal' => ':number.', 'months' => ['urtarrila', 'otsaila', 'martxoa', 'apirila', 'maiatza', 'ekaina', 'uztaila', 'abuztua', 'iraila', 'urria', 'azaroa', 'abendua'], 'months_short' => ['urt.', 'ots.', 'mar.', 'api.', 'mai.', 'eka.', 'uzt.', 'abu.', 'ira.', 'urr.', 'aza.', 'abe.'], 'weekdays' => ['igandea', 'astelehena', 'asteartea', 'asteazkena', 'osteguna', 'ostirala', 'larunbata'], 'weekdays_short' => ['ig.', 'al.', 'ar.', 'az.', 'og.', 'ol.', 'lr.'], 'weekdays_min' => ['ig', 'al', 'ar', 'az', 'og', 'ol', 'lr'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' eta '], 'meridiem' => ['g', 'a'], ]; PK!Šfōc   carbon/src/Carbon/Lang/fr_YT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!ņkžOOcarbon/src/Carbon/Lang/unm.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/unm_US.php'; PK!Ä·7q(( carbon/src/Carbon/Lang/ca_IT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ca.php', [ ]); PK!X=£¶¶carbon/src/Carbon/Lang/ru.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Bari Badamshin * - JĆørn Ƙlmheim * - FranƧois B * - Tim Fish * - ŠšŠ¾Ń€ŠµŠ½Š±ŠµŃ€Š³ ŠœŠ°Ń€Šŗ (imac) * - Serhan Apaydın * - RomeroMsk * - vsn4ik * - JD Isaacks * - Bari Badamshin * - JĆørn Ƙlmheim * - FranƧois B * - ŠšŠ¾Ń€ŠµŠ½Š±ŠµŃ€Š³ ŠœŠ°Ń€Šŗ (imac) * - Serhan Apaydın * - RomeroMsk * - vsn4ik * - JD Isaacks * - Fellzo * - andrey-helldar * - Pavel Skripkin (psxx) * - AlexWalkerson * - Vladislav UnsealedOne * - dima-bzz */ $transformDiff = function ($input) { return strtr($input, [ 'Š½ŠµŠ“ŠµŠ»Ń' => 'Š½ŠµŠ“ŠµŠ»ŃŽ', 'секунГа' => 'секунГу', 'Š¼ŠøŠ½ŃƒŃ‚Š°' => 'Š¼ŠøŠ½ŃƒŃ‚Ńƒ', ]); }; return [ 'year' => ':count гоГ|:count гоГа|:count лет', 'y' => ':count г.|:count г.|:count Š».', 'a_year' => '{1}гоГ|:count гоГ|:count гоГа|:count лет', 'month' => ':count Š¼ŠµŃŃŃ†|:count Š¼ŠµŃŃŃ†Š°|:count Š¼ŠµŃŃŃ†ŠµŠ²', 'm' => ':count мес.', 'a_month' => '{1}Š¼ŠµŃŃŃ†|:count Š¼ŠµŃŃŃ†|:count Š¼ŠµŃŃŃ†Š°|:count Š¼ŠµŃŃŃ†ŠµŠ²', 'week' => ':count Š½ŠµŠ“ŠµŠ»Ń|:count неГели|:count неГель', 'w' => ':count неГ.', 'a_week' => '{1}Š½ŠµŠ“ŠµŠ»Ń|:count Š½ŠµŠ“ŠµŠ»ŃŽ|:count неГели|:count неГель', 'day' => ':count Гень|:count Š“Š½Ń|:count Гней', 'd' => ':count Š“.', 'a_day' => '{1}Гень|:count Гень|:count Š“Š½Ń|:count Гней', 'hour' => ':count час|:count часа|:count часов', 'h' => ':count ч.', 'a_hour' => '{1}час|:count час|:count часа|:count часов', 'minute' => ':count Š¼ŠøŠ½ŃƒŃ‚Š°|:count Š¼ŠøŠ½ŃƒŃ‚Ń‹|:count Š¼ŠøŠ½ŃƒŃ‚', 'min' => ':count мин.', 'a_minute' => '{1}Š¼ŠøŠ½ŃƒŃ‚Š°|:count Š¼ŠøŠ½ŃƒŃ‚Š°|:count Š¼ŠøŠ½ŃƒŃ‚Ń‹|:count Š¼ŠøŠ½ŃƒŃ‚', 'second' => ':count секунГа|:count ŃŠµŠŗŃƒŠ½Š“Ń‹|:count секунГ', 's' => ':count сек.', 'a_second' => '{1}несколько секунГ|:count секунГу|:count ŃŠµŠŗŃƒŠ½Š“Ń‹|:count секунГ', 'ago' => function ($time) use ($transformDiff) { return $transformDiff($time).' назаГ'; }, 'from_now' => function ($time) use ($transformDiff) { return 'через '.$transformDiff($time); }, 'after' => function ($time) use ($transformDiff) { return $transformDiff($time).' после'; }, 'before' => function ($time) use ($transformDiff) { return $transformDiff($time).' Го'; }, 'diff_now' => 'Ń‚Š¾Š»ŃŒŠŗŠ¾ что', 'diff_today' => 'Š”ŠµŠ³Š¾Š“Š½Ń,', 'diff_today_regexp' => 'Š”ŠµŠ³Š¾Š“Š½Ń,?(?:\\s+в)?', 'diff_yesterday' => 'вчера', 'diff_yesterday_regexp' => 'Вчера,?(?:\\s+в)?', 'diff_tomorrow' => 'завтра', 'diff_tomorrow_regexp' => 'Завтра,?(?:\\s+в)?', 'diff_before_yesterday' => 'позавчера', 'diff_after_tomorrow' => 'послезавтра', 'formats' => [ 'LT' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D MMMM YYYY г.', 'LLL' => 'D MMMM YYYY г., H:mm', 'LLLL' => 'dddd, D MMMM YYYY г., H:mm', ], 'calendar' => [ 'sameDay' => '[Š”ŠµŠ³Š¾Š“Š½Ń, в] LT', 'nextDay' => '[Завтра, в] LT', 'nextWeek' => function (\Carbon\CarbonInterface $current, \Carbon\CarbonInterface $other) { if ($current->week !== $other->week) { switch ($current->dayOfWeek) { case 0: return '[Š’ ŃŠ»ŠµŠ“ŃƒŃŽŃ‰ŠµŠµ] dddd, [в] LT'; case 1: case 2: case 4: return '[Š’ ŃŠ»ŠµŠ“ŃƒŃŽŃ‰ŠøŠ¹] dddd, [в] LT'; case 3: case 5: case 6: return '[Š’ ŃŠ»ŠµŠ“ŃƒŃŽŃ‰ŃƒŃŽ] dddd, [в] LT'; } } if ($current->dayOfWeek === 2) { return '[Во] dddd, [в] LT'; } return '[Š’] dddd, [в] LT'; }, 'lastDay' => '[Вчера, в] LT', 'lastWeek' => function (\Carbon\CarbonInterface $current, \Carbon\CarbonInterface $other) { if ($current->week !== $other->week) { switch ($current->dayOfWeek) { case 0: return '[Š’ ŠæŃ€Š¾ŃˆŠ»Š¾Šµ] dddd, [в] LT'; case 1: case 2: case 4: return '[Š’ ŠæŃ€Š¾ŃˆŠ»Ń‹Š¹] dddd, [в] LT'; case 3: case 5: case 6: return '[Š’ ŠæŃ€Š¾ŃˆŠ»ŃƒŃŽ] dddd, [в] LT'; } } if ($current->dayOfWeek === 2) { return '[Во] dddd, [в] LT'; } return '[Š’] dddd, [в] LT'; }, 'sameElse' => 'L', ], 'ordinal' => function ($number, $period) { switch ($period) { case 'M': case 'd': case 'DDD': return $number.'-й'; case 'D': return $number.'-го'; case 'w': case 'W': return $number.'-я'; default: return $number; } }, 'meridiem' => function ($hour) { if ($hour < 4) { return 'ночи'; } if ($hour < 12) { return 'ŃƒŃ‚Ń€Š°'; } if ($hour < 17) { return 'Š“Š½Ń'; } return 'вечера'; }, 'months' => ['ŃŠ½Š²Š°Ń€Ń', 'Ń„ŠµŠ²Ń€Š°Š»Ń', 'марта', 'Š°ŠæŃ€ŠµŠ»Ń', 'Š¼Š°Ń', 'ŠøŃŽŠ½Ń', 'ŠøŃŽŠ»Ń', 'Š°Š²Š³ŃƒŃŃ‚Š°', 'ŃŠµŠ½Ń‚ŃŠ±Ń€Ń', 'Š¾ŠŗŃ‚ŃŠ±Ń€Ń', 'Š½Š¾ŃŠ±Ń€Ń', 'Š“ŠµŠŗŠ°Š±Ń€Ń'], 'months_standalone' => ['ŃŠ½Š²Š°Ń€ŃŒ', 'Ń„ŠµŠ²Ń€Š°Š»ŃŒ', 'март', 'Š°ŠæŃ€ŠµŠ»ŃŒ', 'май', 'ŠøŃŽŠ½ŃŒ', 'ŠøŃŽŠ»ŃŒ', 'Š°Š²Š³ŃƒŃŃ‚', 'ŃŠµŠ½Ń‚ŃŠ±Ń€ŃŒ', 'Š¾ŠŗŃ‚ŃŠ±Ń€ŃŒ', 'Š½Š¾ŃŠ±Ń€ŃŒ', 'Š“ŠµŠŗŠ°Š±Ń€ŃŒ'], 'months_short' => ['ŃŠ½Š²', 'фев', 'мар', 'апр', 'Š¼Š°Ń', 'ŠøŃŽŠ½', 'ŠøŃŽŠ»', 'авг', 'сен', 'окт', 'Š½Š¾Ń', 'Гек'], 'months_short_standalone' => ['ŃŠ½Š²', 'фев', 'мар', 'апр', 'май', 'ŠøŃŽŠ½', 'ŠøŃŽŠ»', 'авг', 'сен', 'окт', 'Š½Š¾Ń', 'Гек'], 'months_regexp' => '/(DD?o?\.?(\[[^\[\]]*\]|\s)+MMMM?|L{2,4}|l{2,4})/', 'weekdays' => ['Š²Š¾ŃŠŗŃ€ŠµŃŠµŠ½ŃŒŠµ', 'понеГельник', 'вторник', 'ŃŃ€ŠµŠ“Ńƒ', 'четверг', 'ŠæŃŃ‚Š½ŠøŃ†Ńƒ', 'ŃŃƒŠ±Š±Š¾Ń‚Ńƒ'], 'weekdays_standalone' => ['Š²Š¾ŃŠŗŃ€ŠµŃŠµŠ½ŃŒŠµ', 'понеГельник', 'вторник', 'среГа', 'четверг', 'ŠæŃŃ‚Š½ŠøŃ†Š°', 'ŃŃƒŠ±Š±Š¾Ń‚Š°'], 'weekdays_short' => ['вск', 'пнГ', 'втр', 'срГ', 'чтв', 'птн', 'сбт'], 'weekdays_min' => ['вс', 'пн', 'вт', 'ср', 'чт', 'пт', 'сб'], 'weekdays_regexp' => '/\[\s*(Š’|в)\s*((?:ŠæŃ€Š¾ŃˆŠ»ŃƒŃŽ|ŃŠ»ŠµŠ“ŃƒŃŽŃ‰ŃƒŃŽ|эту)\s*)?\]\s*dddd/', 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' Šø '], ]; PK!Šfōc   carbon/src/Carbon/Lang/fr_PF.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!˜NJŽŽ carbon/src/Carbon/Lang/sc_IT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Sardinian Translators Team Massimeddu Cireddu massimeddu@gmail.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD. MM. YY', ], 'months' => ['GhennĆ rgiu', 'FreĆ rgiu', 'Martzu', 'Abrile', 'Maju', 'LĆ mpadas', 'Argiolas//TrƬulas', 'Austu', 'Cabudanni', 'Santugaine//LadĆ mine', 'Onniasantu//Santandria', 'Nadale//Idas'], 'months_short' => ['Ghe', 'Fre', 'Mar', 'Abr', 'Maj', 'LĆ m', 'Arg', 'Aus', 'Cab', 'Lad', 'Onn', 'Nad'], 'weekdays' => ['DomƬnigu', 'Lunis', 'Martis', 'MĆØrcuris', 'Giòbia', 'ChenĆ bura', 'SĆ badu'], 'weekdays_short' => ['Dom', 'Lun', 'Mar', 'MĆØr', 'Giò', 'Che', 'SĆ b'], 'weekdays_min' => ['Dom', 'Lun', 'Mar', 'MĆØr', 'Giò', 'Che', 'SĆ b'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'minute' => ':count mementu', // less reliable 'min' => ':count mementu', // less reliable 'a_minute' => ':count mementu', // less reliable 'year' => ':count annu', 'y' => ':count annu', 'a_year' => ':count annu', 'month' => ':count mese', 'm' => ':count mese', 'a_month' => ':count mese', 'week' => ':count chida', 'w' => ':count chida', 'a_week' => ':count chida', 'day' => ':count dĆ­', 'd' => ':count dĆ­', 'a_day' => ':count dĆ­', 'hour' => ':count ora', 'h' => ':count ora', 'a_hour' => ':count ora', 'second' => ':count secundu', 's' => ':count secundu', 'a_second' => ':count secundu', ]); PK!JBém carbon/src/Carbon/Lang/aa_DJ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ge'ez Frontier Foundation locales@geez.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], 'months' => ['Qunxa Garablu', 'Kudo', 'Ciggilta Kudo', 'Agda Baxisso', 'Caxah Alsa', 'Qasa Dirri', 'Qado Dirri', 'Liiqen', 'Waysu', 'Diteli', 'Ximoli', 'Kaxxa Garablu'], 'months_short' => ['qun', 'nah', 'cig', 'agd', 'cax', 'qas', 'qad', 'leq', 'way', 'dit', 'xim', 'kax'], 'weekdays' => ['Acaada', 'Etleeni', 'Talaata', 'Arbaqa', 'Kamiisi', 'Gumqata', 'Sabti'], 'weekdays_short' => ['aca', 'etl', 'tal', 'arb', 'kam', 'gum', 'sab'], 'weekdays_min' => ['aca', 'etl', 'tal', 'arb', 'kam', 'gum', 'sab'], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, 'meridiem' => ['saaku', 'carra'], 'year' => ':count gaqambo', // less reliable 'y' => ':count gaqambo', // less reliable 'a_year' => ':count gaqambo', // less reliable 'month' => ':count Ć lsa', 'm' => ':count Ć lsa', 'a_month' => ':count Ć lsa', 'day' => ':count saaku', // less reliable 'd' => ':count saaku', // less reliable 'a_day' => ':count saaku', // less reliable 'hour' => ':count ayti', // less reliable 'h' => ':count ayti', // less reliable 'a_hour' => ':count ayti', // less reliable ]); PK!­‘™  carbon/src/Carbon/Lang/in.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/id.php'; PK! ś  carbon/src/Carbon/Lang/i18n.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'YYYY-MM-DD', ], 'months' => ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'months_short' => ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'], 'weekdays' => ['1', '2', '3', '4', '5', '6', '7'], 'weekdays_short' => ['1', '2', '3', '4', '5', '6', '7'], 'weekdays_min' => ['1', '2', '3', '4', '5', '6', '7'], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 4, ]); PK!ŅŽ mH H carbon/src/Carbon/Lang/ur.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ $months = [ 'Ų¬Ł†ŁˆŲ±ŪŒ', 'فروری', 'مارچ', 'Ų§Ł¾Ų±ŪŒŁ„', 'Ł…Ų¦ŪŒ', 'Ų¬ŁˆŁ†', 'Ų¬ŁˆŁ„Ų§Ų¦ŪŒ', 'Ų§ŚÆŲ³ŲŖ', 'Ų³ŲŖŁ…ŲØŲ±', 'اکتوبر', 'Ł†ŁˆŁ…ŲØŲ±', 'دسمبر', ]; $weekdays = [ 'اتوار', 'پیر', 'منگل', 'بدھ', 'جمعرات', 'جمعہ', 'ہفتہ', ]; /* * Authors: * - Sawood Alam * - Mehshan * - Philippe Vaucher * - Tsutomu Kuroda * - tjku * - Zaid Akram * - Max Melentiev * - hafezdivandari * - Hossein Jabbari * - nimamo */ return [ 'year' => 'ایک Ų³Ų§Ł„|:count Ų³Ų§Ł„', 'month' => 'ایک ماہ|:count ماہ', 'week' => ':count ہفتے', 'day' => 'ایک دن|:count دن', 'hour' => 'ایک گھنٹہ|:count گھنٹے', 'minute' => 'ایک منٹ|:count منٹ', 'second' => 'چند Ų³ŪŒŚ©Ł†Śˆ|:count Ų³ŪŒŚ©Ł†Śˆ', 'ago' => ':time قبل', 'from_now' => ':time ŲØŲ¹ŲÆ', 'after' => ':time ŲØŲ¹ŲÆ', 'before' => ':time پہلے', 'diff_now' => 'Ų§ŲØ', 'diff_today' => 'Ų¢Ų¬', 'diff_today_regexp' => 'Ų¢Ų¬(?:\\s+ŲØŁˆŁ‚ŲŖ)?', 'diff_yesterday' => 'گزؓتہ کل', 'diff_yesterday_regexp' => 'گذؓتہ(?:\\s+روز)?(?:\\s+ŲØŁˆŁ‚ŲŖ)?', 'diff_tomorrow' => 'آئندہ کل', 'diff_tomorrow_regexp' => 'کل(?:\\s+ŲØŁˆŁ‚ŲŖ)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd، D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Ų¢Ų¬ ŲØŁˆŁ‚ŲŖ] LT', 'nextDay' => '[کل ŲØŁˆŁ‚ŲŖ] LT', 'nextWeek' => 'dddd [ŲØŁˆŁ‚ŲŖ] LT', 'lastDay' => '[گذؓتہ روز ŲØŁˆŁ‚ŲŖ] LT', 'lastWeek' => '[گذؓتہ] dddd [ŲØŁˆŁ‚ŲŖ] LT', 'sameElse' => 'L', ], 'meridiem' => ['ŲµŲØŲ­', 'Ų“Ų§Ł…'], 'months' => $months, 'months_short' => $months, 'weekdays' => $weekdays, 'weekdays_short' => $weekdays, 'weekdays_min' => $weekdays, 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => ['، ', ' اور '], ]; PK!¬TAz   carbon/src/Carbon/Lang/pt_TL.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/pt.php'; PK!“śX««!carbon/src/Carbon/Lang/mag_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - bhashaghar@googlegroups.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤¼ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą„‡ą¤²', 'मई', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'ą¤øą¤æą¤¤ą¤®ą„ą¤¬ą¤°', 'ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°', 'ą¤Øą¤µą¤®ą„ą¤¬ą¤°', 'ą¤¦ą¤æą¤øą¤®ą„ą¤¬ą¤°'], 'months_short' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤¼ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą„‡ą¤²', 'मई', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'ą¤øą¤æą¤¤ą¤®ą„ą¤¬ą¤°', 'ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°', 'ą¤Øą¤µą¤®ą„ą¤¬ą¤°', 'ą¤¦ą¤æą¤øą¤®ą„ą¤¬ą¤°'], 'weekdays' => ['ą¤ą¤¤ą¤µą¤¾ą¤°', 'ą¤øą„‹ą¤®ą¤¾ą¤°', 'मंगर', 'ą¤¬ą„ą¤§', 'ą¤¬ą¤æą¤«ą„‡', 'ą¤øą„‚ą¤•', 'सनिचर'], 'weekdays_short' => ['ą¤ą¤¤ą¤µą¤¾ą¤°', 'ą¤øą„‹ą¤®ą¤¾ą¤°', 'मंगर', 'ą¤¬ą„ą¤§', 'ą¤¬ą¤æą¤«ą„‡', 'ą¤øą„‚ą¤•', 'सनिचर'], 'weekdays_min' => ['ą¤ą¤¤ą¤µą¤¾ą¤°', 'ą¤øą„‹ą¤®ą¤¾ą¤°', 'मंगर', 'ą¤¬ą„ą¤§', 'ą¤¬ą¤æą¤«ą„‡', 'ą¤øą„‚ą¤•', 'सनिचर'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤¹ą„ą¤Ø', 'ą¤…ą¤Ŗą¤°ą¤¾ą¤¹ą„ą¤Ø'], ]); PK!Ō>ž1ŲŲ!carbon/src/Carbon/Lang/zh_YUE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/zh.php', [ 'formats' => [ 'L' => 'YYYY-MM-DD', ], ]); PK!«ŸÆÆ carbon/src/Carbon/Lang/de_CH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - sheriffmarley * - Timo * - Michael Hohl */ return array_replace_recursive(require __DIR__.'/de.php', [ 'weekdays_short' => ['So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'], ]); PK!„Õģģcarbon/src/Carbon/Lang/iw.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'months' => ['ינואר', 'פברואר', '×ž×Ø×„', '××¤×Ø×™×œ', 'מאי', 'יוני', 'יולי', 'אוגוהט', '×”×¤×˜×ž×‘×Ø', '××•×§×˜×•×‘×Ø', '× ×•×‘×ž×‘×Ø', '×“×¦×ž×‘×Ø'], 'months_short' => ['ינו׳', 'פבר׳', '×ž×Ø×„', 'אפר׳', 'מאי', 'יוני', 'יולי', 'אוג׳', 'הפט׳', 'אוק׳', 'נוב׳', 'דצמ׳'], 'weekdays' => ['יום ×Ø××©×•×Ÿ', 'יום שני', 'יום שלישי', 'יום רביעי', 'יום חמישי', 'יום שישי', 'יום שבת'], 'weekdays_short' => ['יום א׳', 'יום ב׳', 'יום ג׳', 'יום ד׳', 'יום ה׳', 'יום ו׳', 'שבת'], 'weekdays_min' => ['א׳', 'ב׳', 'ג׳', 'ד׳', 'ה׳', 'ו׳', 'ש׳'], 'meridiem' => ['לפנהדצ', 'אחהדצ'], 'formats' => [ 'LT' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'D.M.YYYY', 'LL' => 'D בMMM YYYY', 'LLL' => 'D בMMMM YYYY H:mm', 'LLLL' => 'dddd, D בMMMM YYYY H:mm', ], 'year' => ':count שנה', 'y' => ':count שנה', 'a_year' => ':count שנה', 'month' => ':count חודש', 'm' => ':count חודש', 'a_month' => ':count חודש', 'week' => ':count שבוע', 'w' => ':count שבוע', 'a_week' => ':count שבוע', 'day' => ':count יום', 'd' => ':count יום', 'a_day' => ':count יום', 'hour' => ':count שעה', 'h' => ':count שעה', 'a_hour' => ':count שעה', 'minute' => ':count דקה', 'min' => ':count דקה', 'a_minute' => ':count דקה', 'second' => ':count שניה', 's' => ':count שניה', 'a_second' => ':count שניה', 'ago' => 'לפני :time', 'from_now' => 'בעוד :time', ]); PK!ÜYŻó   carbon/src/Carbon/Lang/se_SE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/se.php'; PK!õ}Š„ĻĻ carbon/src/Carbon/Lang/sv_AX.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/sv.php', [ 'formats' => [ 'L' => 'YYYY-MM-dd', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], ]); PK!éęLOOcarbon/src/Carbon/Lang/brx.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/brx_IN.php'; PK!֘e¼¼carbon/src/Carbon/Lang/nus.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['RW', 'TŊ'], 'weekdays' => ['Cäŋ kuɔth', 'Jiec la̱t', 'Rɛw lƤtni', 'Diɔ̱k lƤtni', 'Ŋuaan lƤtni', 'Dhieec lƤtni', 'BƤkɛl lƤtni'], 'weekdays_short' => ['Cäŋ', 'Jiec', 'Rɛw', 'Diɔ̱k', 'Ŋuaan', 'Dhieec', 'BƤkɛl'], 'weekdays_min' => ['Cäŋ', 'Jiec', 'Rɛw', 'Diɔ̱k', 'Ŋuaan', 'Dhieec', 'BƤkɛl'], 'months' => ['Tiop thar pɛt', 'Pɛt', 'Duɔ̱ɔ̱ŋ', 'Guak', 'DuƤt', 'Kornyoot', 'Pay yie̱tni', 'Tho̱o̱r', 'Tɛɛr', 'Laath', 'Kur', 'Tio̱p in di̱i̱t'], 'months_short' => ['Tiop', 'Pɛt', 'Duɔ̱ɔ̱', 'Guak', 'DuƤ', 'Kor', 'Pay', 'Thoo', 'Tɛɛ', 'Laa', 'Kur', 'Tid'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'D/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY h:mm a', 'LLLL' => 'dddd D MMMM YYYY h:mm a', ], 'year' => ':count jiƶk', // less reliable 'y' => ':count jiƶk', // less reliable 'a_year' => ':count jiƶk', // less reliable 'month' => ':count pay', // less reliable 'm' => ':count pay', // less reliable 'a_month' => ':count pay', // less reliable ]); PK!PĄ‘   carbon/src/Carbon/Lang/fa_IR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fa.php'; PK!K‚}ŗOOcarbon/src/Carbon/Lang/nds.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/nds_DE.php'; PK!z±ēļ carbon/src/Carbon/Lang/zh_HK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/zh_Hant_HK.php'; PK!ķ¦Ęų¬¬carbon/src/Carbon/Lang/pl.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Wacław Jacek * - FranƧois B * - Tim Fish * - Serhan Apaydın * - Massimiliano Caniparoli * - JD Isaacks * - Jakub Szwacz * - Jan * - Paul * - damlys * - Marek (marast78) * - Peter (UnrulyNatives) * - Qrzysio * - Jan (aso824) */ return [ 'year' => ':count rok|:count lata|:count lat', 'a_year' => 'rok|:count lata|:count lat', 'y' => ':count r|:count l', 'month' => ':count miesiąc|:count miesiące|:count miesięcy', 'a_month' => 'miesiąc|:count miesiące|:count miesięcy', 'm' => ':count mies.', 'week' => ':count tydzień|:count tygodnie|:count tygodni', 'a_week' => 'tydzień|:count tygodnie|:count tygodni', 'w' => ':count tyg.', 'day' => ':count dzień|:count dni|:count dni', 'a_day' => 'dzień|:count dni|:count dni', 'd' => ':count d', 'hour' => ':count godzina|:count godziny|:count godzin', 'a_hour' => 'godzina|:count godziny|:count godzin', 'h' => ':count godz.', 'minute' => ':count minuta|:count minuty|:count minut', 'a_minute' => 'minuta|:count minuty|:count minut', 'min' => ':count min.', 'second' => ':count sekunda|:count sekundy|:count sekund', 'a_second' => '{1}kilka sekund|:count sekunda|:count sekundy|:count sekund', 's' => ':count sek.', 'ago' => ':time temu', 'from_now' => 'za :time', 'after' => ':time po', 'before' => ':time przed', 'diff_now' => 'przed chwilą', 'diff_today' => 'Dziś', 'diff_today_regexp' => 'Dziś(?:\\s+o)?', 'diff_yesterday' => 'wczoraj', 'diff_yesterday_regexp' => 'Wczoraj(?:\\s+o)?', 'diff_tomorrow' => 'jutro', 'diff_tomorrow_regexp' => 'Jutro(?:\\s+o)?', 'diff_before_yesterday' => 'przedwczoraj', 'diff_after_tomorrow' => 'pojutrze', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Dziś o] LT', 'nextDay' => '[Jutro o] LT', 'nextWeek' => function (\Carbon\CarbonInterface $date) { switch ($date->dayOfWeek) { case 0: return '[W niedzielę o] LT'; case 2: return '[We wtorek o] LT'; case 3: return '[W środę o] LT'; case 6: return '[W sobotę o] LT'; default: return '[W] dddd [o] LT'; } }, 'lastDay' => '[Wczoraj o] LT', 'lastWeek' => function (\Carbon\CarbonInterface $date) { switch ($date->dayOfWeek) { case 0: return '[W zeszłą niedzielę o] LT'; case 3: return '[W zeszłą środę o] LT'; case 6: return '[W zeszłą sobotę o] LT'; default: return '[W zeszły] dddd [o] LT'; } }, 'sameElse' => 'L', ], 'ordinal' => ':number.', 'months' => ['stycznia', 'lutego', 'marca', 'kwietnia', 'maja', 'czerwca', 'lipca', 'sierpnia', 'września', 'paÅŗdziernika', 'listopada', 'grudnia'], 'months_standalone' => ['styczeń', 'luty', 'marzec', 'kwiecień', 'maj', 'czerwiec', 'lipiec', 'sierpień', 'wrzesień', 'paÅŗdziernik', 'listopad', 'grudzień'], 'months_short' => ['sty', 'lut', 'mar', 'kwi', 'maj', 'cze', 'lip', 'sie', 'wrz', 'paÅŗ', 'lis', 'gru'], 'months_regexp' => '/(DD?o?\.?(\[[^\[\]]*\]|\s)+MMMM?|L{2,4}|l{2,4})/', 'weekdays' => ['niedziela', 'poniedziałek', 'wtorek', 'środa', 'czwartek', 'piątek', 'sobota'], 'weekdays_short' => ['ndz', 'pon', 'wt', 'śr', 'czw', 'pt', 'sob'], 'weekdays_min' => ['Nd', 'Pn', 'Wt', 'Śr', 'Cz', 'Pt', 'So'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' i '], 'meridiem' => ['przed południem', 'po południu'], ]; PK!q~mq   carbon/src/Carbon/Lang/en_ZW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!x^“FF carbon/src/Carbon/Lang/en_BE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!š’2¦ŹŹcarbon/src/Carbon/Lang/mas.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['ʐnkakɛnyĆ”', 'ʐndĆ”mĆ¢'], 'weekdays' => ['JumapĆ­lĆ­', 'JumatĆ”tu', 'Jumane', 'JumatĆ”nɔ', 'AlaĆ”misi', 'JumĆ”a', 'Jumamósi'], 'weekdays_short' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'], 'weekdays_min' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'], 'months' => ['Oladalʉ́', 'ArĆ”t', 'ʆɛnɨ́ɔɨŋɔk', 'OlodoyíórĆ­ĆŖ inkókĆŗĆ¢', 'OloilĆ©pÅ«nyīē inkókĆŗĆ¢', 'KĆŗjĆŗÉ”rɔk', 'MórusĆ”sin', 'ʆlɔ́ɨ́bɔ́rĆ”rɛ', 'KĆŗshĆ®n', 'OlgĆ­san', 'Pʉshʉ́ka', 'Ntʉ́ŋʉ́s'], 'months_short' => ['Dal', 'ArĆ”', 'ʆɛn', 'Doy', 'LĆ©p', 'Rok', 'SĆ”s', 'Bɔ́r', 'KĆŗs', 'GĆ­s', 'Shʉ́', 'Ntʉ́'], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'year' => ':count olameyu', // less reliable 'y' => ':count olameyu', // less reliable 'a_year' => ':count olameyu', // less reliable 'week' => ':count engolongeare orwiki', // less reliable 'w' => ':count engolongeare orwiki', // less reliable 'a_week' => ':count engolongeare orwiki', // less reliable 'hour' => ':count esahabu', // less reliable 'h' => ':count esahabu', // less reliable 'a_hour' => ':count esahabu', // less reliable 'second' => ':count are', // less reliable 's' => ':count are', // less reliable 'a_second' => ':count are', // less reliable 'month' => ':count olapa', 'm' => ':count olapa', 'a_month' => ':count olapa', 'day' => ':count enkolongʼ', 'd' => ':count enkolongʼ', 'a_day' => ':count enkolongʼ', ]); PK!īa£…  &carbon/src/Carbon/Lang/sr_RS@latin.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/sr.php'; PK!Šfōc   carbon/src/Carbon/Lang/fr_MU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!±˜r§carbon/src/Carbon/Lang/cu.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'months' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'], 'months_short' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY-MM-DD', 'LL' => 'YYYY MMM D', 'LLL' => 'YYYY MMMM D HH:mm', 'LLLL' => 'YYYY MMMM D, dddd HH:mm', ], 'year' => ':count лѣто', 'y' => ':count лѣто', 'a_year' => ':count лѣто', 'month' => ':count Š¼Ń£ŃŃ§Ń†ŃŒ', 'm' => ':count Š¼Ń£ŃŃ§Ń†ŃŒ', 'a_month' => ':count Š¼Ń£ŃŃ§Ń†ŃŒ', 'week' => ':count сєГмица', 'w' => ':count сєГмица', 'a_week' => ':count сєГмица', 'day' => ':count Гьнь', 'd' => ':count Гьнь', 'a_day' => ':count Гьнь', 'hour' => ':count гоГина', 'h' => ':count гоГина', 'a_hour' => ':count гоГина', 'minute' => ':count малъ', // less reliable 'min' => ':count малъ', // less reliable 'a_minute' => ':count малъ', // less reliable 'second' => ':count Š²ŃŠŃ‚Š¾Ń€ŃŠ', 's' => ':count Š²ŃŠŃ‚Š¾Ń€ŃŠ', 'a_second' => ':count Š²ŃŠŃ‚Š¾Ń€ŃŠ', ]); PK!aŲ ÕOOcarbon/src/Carbon/Lang/tig.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/tig_ER.php'; PK!õ–Z™™!carbon/src/Carbon/Lang/nan_TW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'YYYY幓MM月DDę—„', ], 'months' => ['äø€ęœˆ', '二月', 'äø‰ęœˆ', 'å››ęœˆ', 'äŗ”ęœˆ', 'å…­ęœˆ', '七月', 'å…«ęœˆ', 'ä¹ęœˆ', 'åęœˆ', 'åäø€ęœˆ', 'åäŗŒęœˆ'], 'months_short' => [' 1月', ' 2月', ' 3月', ' 4月', ' 5月', ' 6月', ' 7月', ' 8月', ' 9月', '10月', '11月', '12月'], 'weekdays' => ['ē¦®ę‹œę—„', 'ē¦®ę‹œäø€', 'ē¦®ę‹œäŗŒ', 'ē¦®ę‹œäø‰', 'ē¦®ę‹œå››', 'ē¦®ę‹œäŗ”', 'ē¦®ę‹œå…­'], 'weekdays_short' => ['ę—„', 'äø€', '二', 'äø‰', '四', 'äŗ”', '六'], 'weekdays_min' => ['ę—„', 'äø€', '二', 'äø‰', '四', 'äŗ”', '六'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['é ‚ę™”', 'äø‹ę™”'], 'year' => ':count 幓', 'y' => ':count 幓', 'a_year' => ':count 幓', 'month' => ':count goeĢh', 'm' => ':count goeĢh', 'a_month' => ':count goeĢh', 'week' => ':count lĆ©-pĆ i', 'w' => ':count lĆ©-pĆ i', 'a_week' => ':count lĆ©-pĆ i', 'day' => ':count ę—„', 'd' => ':count ę—„', 'a_day' => ':count ę—„', 'hour' => ':count tiĆ”m-cheng', 'h' => ':count tiĆ”m-cheng', 'a_hour' => ':count tiĆ”m-cheng', 'minute' => ':count Hun-cheng', 'min' => ':count Hun-cheng', 'a_minute' => ':count Hun-cheng', 'second' => ':count Bió', 's' => ':count Bió', 'a_second' => ':count Bió', ]); PK!е„®ļļcarbon/src/Carbon/Lang/dje.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['Subbaahi', 'Zaarikay b'], 'weekdays' => ['Alhadi', 'Atinni', 'Atalaata', 'Alarba', 'Alhamisi', 'Alzuma', 'Asibti'], 'weekdays_short' => ['Alh', 'Ati', 'Ata', 'Ala', 'Alm', 'Alz', 'Asi'], 'weekdays_min' => ['Alh', 'Ati', 'Ata', 'Ala', 'Alm', 'Alz', 'Asi'], 'months' => ['Žanwiye', 'Feewiriye', 'Marsi', 'Awiril', 'Me', 'Žuweŋ', 'Žuyye', 'Ut', 'Sektanbur', 'Oktoobur', 'Noowanbur', 'Deesanbur'], 'months_short' => ['Žan', 'Fee', 'Mar', 'Awi', 'Me', 'Žuw', 'Žuy', 'Ut', 'Sek', 'Okt', 'Noo', 'Dee'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM, YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'year' => ':count hari', // less reliable 'y' => ':count hari', // less reliable 'a_year' => ':count hari', // less reliable 'week' => ':count alzuma', // less reliable 'w' => ':count alzuma', // less reliable 'a_week' => ':count alzuma', // less reliable 'second' => ':count atinni', // less reliable 's' => ':count atinni', // less reliable 'a_second' => ':count atinni', // less reliable ]); PK!Ņ »NNcarbon/src/Carbon/Lang/tk.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/tk_TM.php'; PK!x^“FF carbon/src/Carbon/Lang/en_GD.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!D€łˆ ˆ carbon/src/Carbon/Lang/ms.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - Azri Jamil * - JD Isaacks * - Josh Soref * - Azri Jamil * - Hariadi Hinta * - Ashraf Kamarudin */ return [ 'year' => ':count tahun', 'a_year' => '{1}setahun|]1,Inf[:count tahun', 'y' => ':count tahun', 'month' => ':count bulan', 'a_month' => '{1}sebulan|]1,Inf[:count bulan', 'm' => ':count bulan', 'week' => ':count minggu', 'a_week' => '{1}seminggu|]1,Inf[:count minggu', 'w' => ':count minggu', 'day' => ':count hari', 'a_day' => '{1}sehari|]1,Inf[:count hari', 'd' => ':count hari', 'hour' => ':count jam', 'a_hour' => '{1}sejam|]1,Inf[:count jam', 'h' => ':count jam', 'minute' => ':count minit', 'a_minute' => '{1}seminit|]1,Inf[:count minit', 'min' => ':count minit', 'second' => ':count saat', 'a_second' => '{1}beberapa saat|]1,Inf[:count saat', 'millisecond' => ':count milisaat', 'a_millisecond' => '{1}semilisaat|]1,Inf[:count milliseconds', 'microsecond' => ':count mikrodetik', 'a_microsecond' => '{1}semikrodetik|]1,Inf[:count mikrodetik', 's' => ':count saat', 'ago' => ':time yang lepas', 'from_now' => ':time dari sekarang', 'after' => ':time kemudian', 'before' => ':time lepas', 'diff_now' => 'sekarang', 'diff_today' => 'Hari', 'diff_today_regexp' => 'Hari(?:\\s+ini)?(?:\\s+pukul)?', 'diff_yesterday' => 'semalam', 'diff_yesterday_regexp' => 'Semalam(?:\\s+pukul)?', 'diff_tomorrow' => 'esok', 'diff_tomorrow_regexp' => 'Esok(?:\\s+pukul)?', 'diff_before_yesterday' => 'kelmarin', 'diff_after_tomorrow' => 'lusa', 'formats' => [ 'LT' => 'HH.mm', 'LTS' => 'HH.mm.ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY [pukul] HH.mm', 'LLLL' => 'dddd, D MMMM YYYY [pukul] HH.mm', ], 'calendar' => [ 'sameDay' => '[Hari ini pukul] LT', 'nextDay' => '[Esok pukul] LT', 'nextWeek' => 'dddd [pukul] LT', 'lastDay' => '[Kelmarin pukul] LT', 'lastWeek' => 'dddd [lepas pukul] LT', 'sameElse' => 'L', ], 'meridiem' => function ($hour) { if ($hour < 11) { return 'pagi'; } if ($hour < 15) { return 'tengahari'; } if ($hour < 19) { return 'petang'; } return 'malam'; }, 'months' => ['Januari', 'Februari', 'Mac', 'April', 'Mei', 'Jun', 'Julai', 'Ogos', 'September', 'Oktober', 'November', 'Disember'], 'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ogs', 'Sep', 'Okt', 'Nov', 'Dis'], 'weekdays' => ['Ahad', 'Isnin', 'Selasa', 'Rabu', 'Khamis', 'Jumaat', 'Sabtu'], 'weekdays_short' => ['Ahd', 'Isn', 'Sel', 'Rab', 'Kha', 'Jum', 'Sab'], 'weekdays_min' => ['Ah', 'Is', 'Sl', 'Rb', 'Km', 'Jm', 'Sb'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' dan '], ]; PK! zC’OOcarbon/src/Carbon/Lang/sah.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/sah_RU.php'; PK!x^“FF carbon/src/Carbon/Lang/en_SB.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!‡ädŖ¦¦ carbon/src/Carbon/Lang/es_CL.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]); PK!OöĆĆcarbon/src/Carbon/Lang/hr.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - FranƧois B * - Tim Fish * - shaishavgandhi05 * - Serhan Apaydın * - JD Isaacks * - tomhorvat * - Josh Soref * - FranƧois B * - shaishavgandhi05 * - Serhan Apaydın * - JD Isaacks * - tomhorvat * - Stjepan Majdak * - Vanja Retkovac (vr00) */ return [ 'year' => ':count godinu|:count godine|:count godina', 'y' => ':count god.|:count god.|:count god.', 'month' => ':count mjesec|:count mjeseca|:count mjeseci', 'm' => ':count mj.|:count mj.|:count mj.', 'week' => ':count tjedan|:count tjedna|:count tjedana', 'w' => ':count tj.|:count tj.|:count tj.', 'day' => ':count dan|:count dana|:count dana', 'd' => ':count d.|:count d.|:count d.', 'hour' => ':count sat|:count sata|:count sati', 'h' => ':count sat|:count sata|:count sati', 'minute' => ':count minutu|:count minute|:count minuta', 'min' => ':count min.|:count min.|:count min.', 'second' => ':count sekundu|:count sekunde|:count sekundi', 'a_second' => 'nekoliko sekundi|:count sekunde|:count sekundi', 's' => ':count sek.|:count sek.|:count sek.', 'ago' => 'prije :time', 'from_now' => 'za :time', 'after' => ':time poslije', 'before' => ':time prije', 'diff_now' => 'sad', 'diff_today' => 'danas', 'diff_today_regexp' => 'danas(?:\\s+u)?', 'diff_yesterday' => 'jučer', 'diff_yesterday_regexp' => 'jučer(?:\\s+u)?', 'diff_tomorrow' => 'sutra', 'diff_tomorrow_regexp' => 'sutra(?:\\s+u)?', 'diff_before_yesterday' => 'prekjučer', 'diff_after_tomorrow' => 'prekosutra', 'formats' => [ 'LT' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'D. M. YYYY.', 'LL' => 'D. MMMM YYYY.', 'LLL' => 'D. MMMM YYYY. H:mm', 'LLLL' => 'dddd, D. MMMM YYYY. H:mm', ], 'calendar' => [ 'sameDay' => '[danas u] LT', 'nextDay' => '[sutra u] LT', 'nextWeek' => function (\Carbon\CarbonInterface $date) { switch ($date->dayOfWeek) { case 0: return '[u] [nedjelju] [u] LT'; case 3: return '[u] [srijedu] [u] LT'; case 6: return '[u] [subotu] [u] LT'; default: return '[u] dddd [u] LT'; } }, 'lastDay' => '[jučer u] LT', 'lastWeek' => function (\Carbon\CarbonInterface $date) { switch ($date->dayOfWeek) { case 0: case 3: return '[proÅ”lu] dddd [u] LT'; case 6: return '[proÅ”le] [subote] [u] LT'; default: return '[proÅ”li] dddd [u] LT'; } }, 'sameElse' => 'L', ], 'ordinal' => ':number.', 'months' => ['siječnja', 'veljače', 'ožujka', 'travnja', 'svibnja', 'lipnja', 'srpnja', 'kolovoza', 'rujna', 'listopada', 'studenoga', 'prosinca'], 'months_standalone' => ['siječanj', 'veljača', 'ožujak', 'travanj', 'svibanj', 'lipanj', 'srpanj', 'kolovoz', 'rujan', 'listopad', 'studeni', 'prosinac'], 'months_short' => ['sij.', 'velj.', 'ožu.', 'tra.', 'svi.', 'lip.', 'srp.', 'kol.', 'ruj.', 'lis.', 'stu.', 'pro.'], 'months_regexp' => '/(D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|L{2,4}|l{2,4})/', 'weekdays' => ['nedjelju', 'ponedjeljak', 'utorak', 'srijedu', 'četvrtak', 'petak', 'subotu'], 'weekdays_standalone' => ['nedjelja', 'ponedjeljak', 'utorak', 'srijeda', 'četvrtak', 'petak', 'subota'], 'weekdays_short' => ['ned.', 'pon.', 'uto.', 'sri.', 'čet.', 'pet.', 'sub.'], 'weekdays_min' => ['ne', 'po', 'ut', 'sr', 'če', 'pe', 'su'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' i '], ]; PK!n!KA  !carbon/src/Carbon/Lang/kok_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Red Hat, Pune bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'D-M-YY', ], 'months' => ['ą¤œą¤¾ą¤Øą„‡ą¤µą¤¾ą¤°ą„€', 'ą¤«ą„‡ą¤¬ą„ą¤°ą„ą¤µą¤¾ą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤ą¤Ŗą„ą¤°ą¤æą¤²', 'ą¤®ą„‡', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą„ˆ', 'ą¤“ą¤—ą¤øą„ą¤Ÿ', 'ą¤øą„‡ą¤Ŗą„ą¤Ÿą„‡ą¤‚ą¤¬ą¤°', 'ą¤“ą¤•ą„ą¤Ÿą„‹ą¤¬ą¤°', 'ą¤Øą„‹ą¤µą„ą¤¹ą„‡ą¤‚ą¤¬ą¤°', 'ą¤”ą¤æą¤øą„‡ą¤‚ą¤¬ą¤°'], 'months_short' => ['ą¤œą¤¾ą¤Øą„‡ą¤µą¤¾ą¤°ą„€', 'ą¤«ą„‡ą¤¬ą„ą¤°ą„ą¤µą¤¾ą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤ą¤Ŗą„ą¤°ą¤æą¤²', 'ą¤®ą„‡', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą„ˆ', 'ą¤“ą¤—ą¤øą„ą¤Ÿ', 'ą¤øą„‡ą¤Ŗą„ą¤Ÿą„‡ą¤‚ą¤¬ą¤°', 'ą¤“ą¤•ą„ą¤Ÿą„‹ą¤¬ą¤°', 'ą¤Øą„‹ą¤µą„ą¤¹ą„‡ą¤‚ą¤¬ą¤°', 'ą¤”ą¤æą¤øą„‡ą¤‚ą¤¬ą¤°'], 'weekdays' => ['आयतार', 'ą¤øą„‹ą¤®ą¤¾ą¤°', 'मंगळवार', 'ą¤¬ą„ą¤§ą¤µą¤¾ą¤°', 'ą¤¬ą„‡ą¤°ą„‡ą¤øą¤¤ą¤¾ą¤°', 'ą¤¶ą„ą¤•ą¤°ą¤¾ą¤°', 'ą¤¶ą„‡ą¤Øą¤µą¤¾ą¤°'], 'weekdays_short' => ['आयतार', 'ą¤øą„‹ą¤®ą¤¾ą¤°', 'मंगळवार', 'ą¤¬ą„ą¤§ą¤µą¤¾ą¤°', 'ą¤¬ą„‡ą¤°ą„‡ą¤øą¤¤ą¤¾ą¤°', 'ą¤¶ą„ą¤•ą¤°ą¤¾ą¤°', 'ą¤¶ą„‡ą¤Øą¤µą¤¾ą¤°'], 'weekdays_min' => ['आयतार', 'ą¤øą„‹ą¤®ą¤¾ą¤°', 'मंगळवार', 'ą¤¬ą„ą¤§ą¤µą¤¾ą¤°', 'ą¤¬ą„‡ą¤°ą„‡ą¤øą¤¤ą¤¾ą¤°', 'ą¤¶ą„ą¤•ą¤°ą¤¾ą¤°', 'ą¤¶ą„‡ą¤Øą¤µą¤¾ą¤°'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['म.ą¤Ŗą„‚.', 'म.नं.'], 'year' => ':count ą¤µą„ˆą¤¶ą¤¾ą¤•ą„', // less reliable 'y' => ':count ą¤µą„ˆą¤¶ą¤¾ą¤•ą„', // less reliable 'a_year' => ':count ą¤µą„ˆą¤¶ą¤¾ą¤•ą„', // less reliable 'week' => ':count ą¤†ą¤¦ą¤æą¤¤ą„ą¤Æą¤µą¤¾ą¤°', // less reliable 'w' => ':count ą¤†ą¤¦ą¤æą¤¤ą„ą¤Æą¤µą¤¾ą¤°', // less reliable 'a_week' => ':count ą¤†ą¤¦ą¤æą¤¤ą„ą¤Æą¤µą¤¾ą¤°', // less reliable 'minute' => ':count ą¤Øą„‹ą¤‚ą¤¦', // less reliable 'min' => ':count ą¤Øą„‹ą¤‚ą¤¦', // less reliable 'a_minute' => ':count ą¤Øą„‹ą¤‚ą¤¦', // less reliable 'second' => ':count ą¤¤ą„‡ą¤‚ą¤•ą„‹', // less reliable 's' => ':count ą¤¤ą„‡ą¤‚ą¤•ą„‹', // less reliable 'a_second' => ':count ą¤¤ą„‡ą¤‚ą¤•ą„‹', // less reliable 'month' => ':count ą¤®ą„ˆą¤Øą„‹', 'm' => ':count ą¤®ą„ˆą¤Øą„‹', 'a_month' => ':count ą¤®ą„ˆą¤Øą„‹', 'day' => ':count ą¤¦ą¤æą¤µą¤øą„', 'd' => ':count ą¤¦ą¤æą¤µą¤øą„', 'a_day' => ':count ą¤¦ą¤æą¤µą¤øą„', 'hour' => ':count ą¤˜ą¤‚ą¤¤ą„‡', 'h' => ':count ą¤˜ą¤‚ą¤¤ą„‡', 'a_hour' => ':count ą¤˜ą¤‚ą¤¤ą„‡', ]); PK!‡ädŖ¦¦ carbon/src/Carbon/Lang/es_GT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]); PK!x^“FF carbon/src/Carbon/Lang/en_LS.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!UėZj j carbon/src/Carbon/Lang/eo.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - FranƧois B * - Mia Nordentoft * - JD Isaacks */ return [ 'year' => ':count jaro|:count jaroj', 'a_year' => 'jaro|:count jaroj', 'y' => ':count j.', 'month' => ':count monato|:count monatoj', 'a_month' => 'monato|:count monatoj', 'm' => ':count mo.', 'week' => ':count semajno|:count semajnoj', 'a_week' => 'semajno|:count semajnoj', 'w' => ':count sem.', 'day' => ':count tago|:count tagoj', 'a_day' => 'tago|:count tagoj', 'd' => ':count t.', 'hour' => ':count horo|:count horoj', 'a_hour' => 'horo|:count horoj', 'h' => ':count h.', 'minute' => ':count minuto|:count minutoj', 'a_minute' => 'minuto|:count minutoj', 'min' => ':count min.', 'second' => ':count sekundo|:count sekundoj', 'a_second' => 'sekundoj|:count sekundoj', 's' => ':count sek.', 'ago' => 'antaÅ­ :time', 'from_now' => 'post :time', 'after' => ':time poste', 'before' => ':time antaÅ­e', 'diff_yesterday' => 'HieraÅ­', 'diff_yesterday_regexp' => 'HieraÅ­(?:\\s+je)?', 'diff_today' => 'HodiaÅ­', 'diff_today_regexp' => 'HodiaÅ­(?:\\s+je)?', 'diff_tomorrow' => 'MorgaÅ­', 'diff_tomorrow_regexp' => 'MorgaÅ­(?:\\s+je)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY-MM-DD', 'LL' => 'D[-a de] MMMM, YYYY', 'LLL' => 'D[-a de] MMMM, YYYY HH:mm', 'LLLL' => 'dddd, [la] D[-a de] MMMM, YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[HodiaÅ­ je] LT', 'nextDay' => '[MorgaÅ­ je] LT', 'nextWeek' => 'dddd [je] LT', 'lastDay' => '[HieraÅ­ je] LT', 'lastWeek' => '[pasinta] dddd [je] LT', 'sameElse' => 'L', ], 'ordinal' => ':numbera', 'meridiem' => ['a.t.m.', 'p.t.m.'], 'months' => ['januaro', 'februaro', 'marto', 'aprilo', 'majo', 'junio', 'julio', 'aÅ­gusto', 'septembro', 'oktobro', 'novembro', 'decembro'], 'months_short' => ['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'aÅ­g', 'sep', 'okt', 'nov', 'dec'], 'weekdays' => ['dimanĉo', 'lundo', 'mardo', 'merkredo', 'ĵaÅ­do', 'vendredo', 'sabato'], 'weekdays_short' => ['dim', 'lun', 'mard', 'merk', 'ĵaÅ­', 'ven', 'sab'], 'weekdays_min' => ['di', 'lu', 'ma', 'me', 'ĵa', 've', 'sa'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' kaj '], ]; PK!q~mq   carbon/src/Carbon/Lang/en_PK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!Ē–ŽŸŃŃ carbon/src/Carbon/Lang/an_ES.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Softaragones Jordi Mallach PĆ©rez, Juan Pablo MartĆ­nez bug-glibc-locales@gnu.org, softaragones@softaragones.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['chinero', 'febrero', 'marzo', 'abril', 'mayo', 'chunyo', 'chuliol', 'agosto', 'setiembre', 'octubre', 'noviembre', 'aviento'], 'months_short' => ['chi', 'feb', 'mar', 'abr', 'may', 'chn', 'chl', 'ago', 'set', 'oct', 'nov', 'avi'], 'weekdays' => ['domingo', 'luns', 'martes', 'mierques', 'chueves', 'viernes', 'sabado'], 'weekdays_short' => ['dom', 'lun', 'mar', 'mie', 'chu', 'vie', 'sab'], 'weekdays_min' => ['dom', 'lun', 'mar', 'mie', 'chu', 'vie', 'sab'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'year' => ':count aƱo', 'y' => ':count aƱo', 'a_year' => ':count aƱo', 'month' => ':count mes', 'm' => ':count mes', 'a_month' => ':count mes', 'week' => ':count semana', 'w' => ':count semana', 'a_week' => ':count semana', 'day' => ':count dĆ­a', 'd' => ':count dĆ­a', 'a_day' => ':count dĆ­a', 'hour' => ':count reloch', // less reliable 'h' => ':count reloch', // less reliable 'a_hour' => ':count reloch', // less reliable 'minute' => ':count minuto', 'min' => ':count minuto', 'a_minute' => ':count minuto', 'second' => ':count segundo', 's' => ':count segundo', 'a_second' => ':count segundo', ]); PK!Ö~`Ņ Ņ carbon/src/Carbon/Lang/sa_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - The Debian project Christian Perrier bubulle@debian.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'D-MM-YY', ], 'months' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤¼ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą„‡ą¤²', 'मई', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'ą¤øą¤æą¤¤ą¤®ą„ą¤¬ą¤°', 'ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°', 'ą¤Øą¤µą¤®ą„ą¤¬ą¤°', 'ą¤¦ą¤æą¤øą¤®ą„ą¤¬ą¤°'], 'months_short' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤¼ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą„‡ą¤²', 'मई', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'ą¤øą¤æą¤¤ą¤®ą„ą¤¬ą¤°', 'ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°', 'ą¤Øą¤µą¤®ą„ą¤¬ą¤°', 'ą¤¦ą¤æą¤øą¤®ą„ą¤¬ą¤°'], 'weekdays' => ['रविवासर:', 'ą¤øą„‹ą¤®ą¤µą¤¾ą¤øą¤°:', 'मंगलवासर:', 'ą¤¬ą„ą¤§ą¤µą¤¾ą¤øą¤°:', 'ą¤¬ą„ƒą¤¹ą¤øą„ą¤Ŗą¤¤ą¤æą¤µą¤¾ą¤øą¤°ą¤ƒ', 'ą¤¶ą„ą¤•ą„ą¤°ą¤µą¤¾ą¤øą¤°', 'शनिवासर:'], 'weekdays_short' => ['रविः', 'ą¤øą„‹ą¤®:', 'मंगल:', 'ą¤¬ą„ą¤§:', 'ą¤¬ą„ƒą¤¹ą¤øą„ą¤Ŗą¤¤ą¤æą¤ƒ', 'ą¤¶ą„ą¤•ą„ą¤°', 'शनि:'], 'weekdays_min' => ['रविः', 'ą¤øą„‹ą¤®:', 'मंगल:', 'ą¤¬ą„ą¤§:', 'ą¤¬ą„ƒą¤¹ą¤øą„ą¤Ŗą¤¤ą¤æą¤ƒ', 'ą¤¶ą„ą¤•ą„ą¤°', 'शनि:'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤¹ą„ą¤Ø', 'ą¤…ą¤Ŗą¤°ą¤¾ą¤¹ą„ą¤Ø'], 'minute' => ':count ą¤¹ą„‹ą¤°ą¤¾', // less reliable 'min' => ':count ą¤¹ą„‹ą¤°ą¤¾', // less reliable 'a_minute' => ':count ą¤¹ą„‹ą¤°ą¤¾', // less reliable 'year' => ':count ą¤µą¤°ą„ą¤·', 'y' => ':count ą¤µą¤°ą„ą¤·', 'a_year' => ':count ą¤µą¤°ą„ą¤·', 'month' => ':count मास', 'm' => ':count मास', 'a_month' => ':count मास', 'week' => ':count ą¤øą¤Ŗą„ą¤¤ą¤¾ą¤¹ą¤ƒ saptahaÄ„', 'w' => ':count ą¤øą¤Ŗą„ą¤¤ą¤¾ą¤¹ą¤ƒ saptahaÄ„', 'a_week' => ':count ą¤øą¤Ŗą„ą¤¤ą¤¾ą¤¹ą¤ƒ saptahaÄ„', 'day' => ':count दिन', 'd' => ':count दिन', 'a_day' => ':count दिन', 'hour' => ':count ą¤˜ą¤£ą„ą¤Ÿą¤¾', 'h' => ':count ą¤˜ą¤£ą„ą¤Ÿą¤¾', 'a_hour' => ':count ą¤˜ą¤£ą„ą¤Ÿą¤¾', 'second' => ':count ą¤¦ą„ą¤µą¤æą¤¤ą„€ą¤Æą¤ƒ', 's' => ':count ą¤¦ą„ą¤µą¤æą¤¤ą„€ą¤Æą¤ƒ', 'a_second' => ':count ą¤¦ą„ą¤µą¤æą¤¤ą„€ą¤Æą¤ƒ', ]); PK!śŗJ~))!carbon/src/Carbon/Lang/lrc_IQ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/lrc.php', [ ]); PK!Ä!8£M M carbon/src/Carbon/Lang/si.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - Serhan Apaydın * - JD Isaacks * - Malinda Weerasinghe (MalindaWMD) */ return [ 'year' => '{1}ą·€ą·ƒą¶» 1|ą·€ą·ƒą¶» :count', 'a_year' => '{1}ą·€ą·ƒą¶»ą¶šą·Š|ą·€ą·ƒą¶» :count', 'month' => '{1}ą¶øą·ą·ƒ 1|ą¶øą·ą·ƒ :count', 'a_month' => '{1}ą¶øą·ą·ƒą¶ŗ|ą¶øą·ą·ƒ :count', 'week' => '{1}ą·ƒą¶­ą·’ 1|ą·ƒą¶­ą·’ :count', 'a_week' => '{1}ą·ƒą¶­ą·’ą¶ŗą¶šą·Š|ą·ƒą¶­ą·’ :count', 'day' => '{1}ą¶Æą·’ą¶± 1|ą¶Æą·’ą¶± :count', 'a_day' => '{1}ą¶Æą·’ą¶±ą¶šą·Š|ą¶Æą·’ą¶± :count', 'hour' => '{1}ඓැය 1|ඓැය :count', 'a_hour' => '{1}ඓැයක්|ඓැය :count', 'minute' => '{1}ą¶øą·’ą¶±ą·’ą¶­ą·Šą¶­ą·” 1|ą¶øą·’ą¶±ą·’ą¶­ą·Šą¶­ą·” :count', 'a_minute' => '{1}ą¶øą·’ą¶±ą·’ą¶­ą·Šą¶­ą·”ą·€ą¶šą·Š|ą¶øą·’ą¶±ą·’ą¶­ą·Šą¶­ą·” :count', 'second' => '{1}තත්ඓර 1|තත්ඓර :count', 'a_second' => '{1}තත්ඓර ą¶šą·’ą·„ą·’ą¶“ą¶ŗą¶šą¶§|තත්ඓර :count', 'ago' => ':time කට ඓෙර', 'from_now' => function ($time) { if (preg_match('/ą¶Æą·’ą¶± \d+/', $time)) { return $time.' න්'; } return $time.' ą¶šą·’ą¶±ą·Š'; }, 'before' => ':time කට ඓෙර', 'after' => function ($time) { if (preg_match('/ą¶Æą·’ą¶± \d+/', $time)) { return $time.' න්'; } return $time.' ą¶šą·’ą¶±ą·Š'; }, 'diff_now' => 'දැන්', 'diff_today' => 'ą¶…ą¶Æ', 'diff_yesterday' => 'ඊයේ', 'diff_tomorrow' => 'හෙට', 'formats' => [ 'LT' => 'a h:mm', 'LTS' => 'a h:mm:ss', 'L' => 'YYYY/MM/DD', 'LL' => 'YYYY MMMM D', 'LLL' => 'YYYY MMMM D, a h:mm', 'LLLL' => 'YYYY MMMM D [වැනි] dddd, a h:mm:ss', ], 'calendar' => [ 'sameDay' => '[ą¶…ą¶Æ] LT[ą¶§]', 'nextDay' => '[හෙට] LT[ą¶§]', 'nextWeek' => 'dddd LT[ą¶§]', 'lastDay' => '[ඊයේ] LT[ą¶§]', 'lastWeek' => '[ą¶“ą·ƒą·”ą¶œą·’ą¶ŗ] dddd LT[ą¶§]', 'sameElse' => 'L', ], 'ordinal' => ':number වැනි', 'meridiem' => ['ඓෙර වරු', 'ඓස් වරු', 'ą¶“ą·™.ą·€.', 'ą¶“.ą·€.'], 'months' => ['ą¶¢ą¶±ą·€ą·ą¶»ą·’', 'ą¶“ą·™ą¶¶ą¶»ą·€ą·ą¶»ą·’', 'ą¶øą·ą¶»ą·Šą¶­ą·”', 'ą¶…ą¶“ą·Šā€ą¶»ą·šą¶½ą·Š', 'මැයි', 'ජූනි', 'ජූලි', 'ą¶…ą¶œą·ą·ƒą·Šą¶­ą·”', 'සැඓ්තැම්බර්', 'ą¶”ą¶šą·Šą¶­ą·ą¶¶ą¶»ą·Š', 'ą¶±ą·œą·€ą·ą¶øą·Šą¶¶ą¶»ą·Š', 'ą¶Æą·™ą·ƒą·ą¶øą·Šą¶¶ą¶»ą·Š'], 'months_short' => ['ජන', 'ඓෙබ', 'ą¶øą·ą¶»ą·Š', 'ą¶…ą¶“ą·Š', 'මැයි', 'ජූනි', 'ජූලි', 'ą¶…ą¶œą·', 'සැඓ්', 'ą¶”ą¶šą·Š', 'ą¶±ą·œą·€ą·', 'ą¶Æą·™ą·ƒą·'], 'weekdays' => ['ą¶‰ą¶»ą·’ą¶Æą·', 'ą·ƒą¶³ą·”ą¶Æą·', 'ą¶…ą¶Ÿą·„ą¶»ą·”ą·€ą·ą¶Æą·', 'ą¶¶ą¶Æą·ą¶Æą·', 'ą¶¶ą·Šā€ą¶»ą·„ą·ƒą·Šą¶“ą¶­ą·’ą¶±ą·Šą¶Æą·', 'ą·ƒą·’ą¶šą·”ą¶»ą·ą¶Æą·', 'ą·ƒą·™ą¶±ą·ƒą·”ą¶»ą·ą¶Æą·'], 'weekdays_short' => ['ඉරි', 'ą·ƒą¶³ą·”', 'ą¶…ą¶Ÿ', 'ą¶¶ą¶Æą·', 'ą¶¶ą·Šā€ą¶»ą·„', 'ą·ƒą·’ą¶šą·”', 'ą·ƒą·™ą¶±'], 'weekdays_min' => ['ඉ', 'ස', 'ą¶…', 'ą¶¶', 'ą¶¶ą·Šā€ą¶»', 'ą·ƒą·’', 'ą·ƒą·™'], 'first_day_of_week' => 1, ]; PK!äjä’’!carbon/src/Carbon/Lang/ber_DZ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Pablo Saratxaga pablo@mandrakesoft.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], 'months' => ['yanvar', 'fevral', 'mart', 'aprel', 'may', 'iyun', 'iyul', 'avqust', 'sentyabr', 'oktyabr', 'noyabr', 'dekabr'], 'months_short' => ['Yan', 'Fev', 'Mar', 'Apr', 'May', 'İyn', 'İyl', 'Avq', 'Sen', 'Okt', 'Noy', 'Dek'], 'weekdays' => ['bazar günü', 'birinci gün', 'ikinci gün', 'üçüncü gün', 'dƶrdüncü gün', 'beşinci gün', 'altıncı gün'], 'weekdays_short' => ['baz', 'bir', 'iki', 'üçü', 'dƶr', 'beş', 'alt'], 'weekdays_min' => ['baz', 'bir', 'iki', 'üçü', 'dƶr', 'beş', 'alt'], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, ]); PK!“FcKöö&carbon/src/Carbon/Lang/be_BY@latin.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], 'months' => ['studzienia', 'lutaha', 'sakavika', 'krasavika', 'maja', 'červienia', 'lipienia', 'žniÅ­nia', 'vieraśnia', 'kastryčnika', 'listapada', 'śniežnia'], 'months_short' => ['Stu', 'Lut', 'Sak', 'Kra', 'Maj', 'Čer', 'Lip', 'Žni', 'Vie', 'Kas', 'Lis', 'Śni'], 'weekdays' => ['Niadziela', 'Paniadziełak', 'AÅ­torak', 'Sierada', 'Čaćvier', 'Piatnica', 'Subota'], 'weekdays_short' => ['Nia', 'Pan', 'AÅ­t', 'Sie', 'Čać', 'Pia', 'Sub'], 'weekdays_min' => ['Nia', 'Pan', 'AÅ­t', 'Sie', 'Čać', 'Pia', 'Sub'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, ]); PK!¬TAz   carbon/src/Carbon/Lang/pt_CH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/pt.php'; PK!óĆ6Äkk!carbon/src/Carbon/Lang/pap_AW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - information from native speaker Pablo Saratxaga pablo@mandrakesoft.com */ return require __DIR__.'/pap.php'; PK!ūŚ—OOcarbon/src/Carbon/Lang/dsb.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/dsb_DE.php'; PK!¹‚ ōōcarbon/src/Carbon/Lang/yav.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['kiɛmɛ́ɛm', 'kisɛ́ndɛ'], 'weekdays' => ['sɔ́ndiɛ', 'móndie', 'muĆ”nyÔŋmóndie', 'metĆŗkpĆ­Ć”pɛ', 'kĆŗpĆ©limetĆŗkpiapɛ', 'felĆ©te', 'sĆ©selĆ©'], 'weekdays_short' => ['sd', 'md', 'mw', 'et', 'kl', 'fl', 'ss'], 'weekdays_min' => ['sd', 'md', 'mw', 'et', 'kl', 'fl', 'ss'], 'months' => ['pikĆ­tĆ­kĆ­tie, oólĆ­ Ćŗ kutĆŗan', 'siɛyɛ́, oóli Ćŗ kĆ”ndƭɛ', 'ɔnsĆŗmbɔl, oóli Ćŗ kĆ”tĆ”tĆŗÉ›', 'mesiŋ, oóli Ćŗ kĆ©nie', 'ensil, oóli Ćŗ kĆ”tĆ”nuɛ', 'ɔsɔn', 'efute', 'pisuyĆŗ', 'imɛŋ i puɔs', 'imɛŋ i putĆŗk,oóli Ćŗ kĆ”tƭɛ', 'makandikɛ', 'pilɔndɔ́'], 'months_short' => ['o.1', 'o.2', 'o.3', 'o.4', 'o.5', 'o.6', 'o.7', 'o.8', 'o.9', 'o.10', 'o.11', 'o.12'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], ]); PK!ŲädēOOcarbon/src/Carbon/Lang/yuw.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/yuw_PG.php'; PK!x^“FF!carbon/src/Carbon/Lang/en_150.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!€=Ä8®® carbon/src/Carbon/Lang/ar_DZ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Authors: * - Josh Soref * - Noureddine LOUAHEDJ * - JD Isaacks * - Atef Ben Ali (atefBB) * - Mohamed Sabil (mohamedsabil83) */ $months = [ 'Ų¬Ų§Ł†ŁŁŠ', 'فيفري', 'Ł…Ų§Ų±Ų³', 'Ų£ŁŲ±ŁŠŁ„', 'Ł…Ų§ŁŠ', 'Ų¬ŁˆŲ§Ł†', 'Ų¬ŁˆŁŠŁ„ŁŠŲ©', 'أوت', 'Ų³ŲØŲŖŁ…ŲØŲ±', 'أكتوبر', 'Ł†ŁˆŁŁ…ŲØŲ±', 'ŲÆŁŠŲ³Ł…ŲØŲ±', ]; return [ 'year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}Ų³Ł†ŲŖŁŠŁ†', ']2,11[:count Ų³Ł†ŁˆŲ§ŲŖ', ']10,Inf[:count سنة']), 'a_year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}Ų³Ł†ŲŖŁŠŁ†', ']2,11[:count Ų³Ł†ŁˆŲ§ŲŖ', ']10,Inf[:count سنة']), 'month' => implode('|', ['{0}:count ؓهر', '{1}ؓهر', '{2}Ų“Ł‡Ų±ŁŠŁ†', ']2,11[:count أؓهر', ']10,Inf[:count ؓهر']), 'a_month' => implode('|', ['{0}:count ؓهر', '{1}ؓهر', '{2}Ų“Ł‡Ų±ŁŠŁ†', ']2,11[:count أؓهر', ']10,Inf[:count ؓهر']), 'week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}Ų£Ų³ŲØŁˆŲ¹ŁŠŁ†', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']), 'a_week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}Ų£Ų³ŲØŁˆŲ¹ŁŠŁ†', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']), 'day' => implode('|', ['{0}:count ŁŠŁˆŁ…', '{1}ŁŠŁˆŁ…', '{2}ŁŠŁˆŁ…ŁŠŁ†', ']2,11[:count Ų£ŁŠŲ§Ł…', ']10,Inf[:count ŁŠŁˆŁ…']), 'a_day' => implode('|', ['{0}:count ŁŠŁˆŁ…', '{1}ŁŠŁˆŁ…', '{2}ŁŠŁˆŁ…ŁŠŁ†', ']2,11[:count Ų£ŁŠŲ§Ł…', ']10,Inf[:count ŁŠŁˆŁ…']), 'hour' => implode('|', ['{0}:count Ų³Ų§Ų¹Ų©', '{1}Ų³Ų§Ų¹Ų©', '{2}Ų³Ų§Ų¹ŲŖŁŠŁ†', ']2,11[:count Ų³Ų§Ų¹Ų§ŲŖ', ']10,Inf[:count Ų³Ų§Ų¹Ų©']), 'a_hour' => implode('|', ['{0}:count Ų³Ų§Ų¹Ų©', '{1}Ų³Ų§Ų¹Ų©', '{2}Ų³Ų§Ų¹ŲŖŁŠŁ†', ']2,11[:count Ų³Ų§Ų¹Ų§ŲŖ', ']10,Inf[:count Ų³Ų§Ų¹Ų©']), 'minute' => implode('|', ['{0}:count ŲÆŁ‚ŁŠŁ‚Ų©', '{1}ŲÆŁ‚ŁŠŁ‚Ų©', '{2}ŲÆŁ‚ŁŠŁ‚ŲŖŁŠŁ†', ']2,11[:count دقائق', ']10,Inf[:count ŲÆŁ‚ŁŠŁ‚Ų©']), 'a_minute' => implode('|', ['{0}:count ŲÆŁ‚ŁŠŁ‚Ų©', '{1}ŲÆŁ‚ŁŠŁ‚Ų©', '{2}ŲÆŁ‚ŁŠŁ‚ŲŖŁŠŁ†', ']2,11[:count دقائق', ']10,Inf[:count ŲÆŁ‚ŁŠŁ‚Ų©']), 'second' => implode('|', ['{0}:count Ų«Ų§Ł†ŁŠŲ©', '{1}Ų«Ų§Ł†ŁŠŲ©', '{2}Ų«Ų§Ł†ŁŠŲŖŁŠŁ†', ']2,11[:count Ų«ŁˆŲ§Ł†ŁŠ', ']10,Inf[:count Ų«Ų§Ł†ŁŠŲ©']), 'a_second' => implode('|', ['{0}:count Ų«Ų§Ł†ŁŠŲ©', '{1}Ų«Ų§Ł†ŁŠŲ©', '{2}Ų«Ų§Ł†ŁŠŲŖŁŠŁ†', ']2,11[:count Ų«ŁˆŲ§Ł†ŁŠ', ']10,Inf[:count Ų«Ų§Ł†ŁŠŲ©']), 'ago' => 'منذ :time', 'from_now' => 'في :time', 'after' => 'ŲØŲ¹ŲÆ :time', 'before' => 'قبل :time', 'diff_now' => 'الآن', 'diff_today' => 'Ų§Ł„ŁŠŁˆŁ…', 'diff_today_regexp' => 'Ų§Ł„ŁŠŁˆŁ…(?:\\s+على)?(?:\\s+الساعة)?', 'diff_yesterday' => 'أمس', 'diff_yesterday_regexp' => 'أمس(?:\\s+على)?(?:\\s+الساعة)?', 'diff_tomorrow' => 'ŲŗŲÆŲ§Ł‹', 'diff_tomorrow_regexp' => 'ŲŗŲÆŲ§(?:\\s+على)?(?:\\s+الساعة)?', 'diff_before_yesterday' => 'قبل الأمس', 'diff_after_tomorrow' => 'ŲØŲ¹ŲÆ ŲŗŲÆ', 'period_recurrences' => implode('|', ['{0}Ł…Ų±Ų©', '{1}Ł…Ų±Ų©', '{2}:count Ł…Ų±ŲŖŁŠŁ†', ']2,11[:count Ł…Ų±Ų§ŲŖ', ']10,Inf[:count Ł…Ų±Ų©']), 'period_interval' => 'ŁƒŁ„ :interval', 'period_start_date' => 'من :date', 'period_end_date' => '؄لى :date', 'months' => $months, 'months_short' => $months, 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų£Ų­ŲÆ', 'Ų§Ų«Ł†ŁŠŁ†', 'ثلاثاؔ', 'Ų£Ų±ŲØŲ¹Ų§Ų”', 'Ų®Ł…ŁŠŲ³', 'جمعة', 'Ų³ŲØŲŖ'], 'weekdays_min' => ['Ų£Ų­', 'Ų„Ų«', 'ثلا', 'Ų£Ų±', 'خم', 'جم', 'Ų³ŲØ'], 'list' => ['، ', ' و '], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 4, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Ų§Ł„ŁŠŁˆŁ… على الساعة] LT', 'nextDay' => '[ŲŗŲÆŲ§ على الساعة] LT', 'nextWeek' => 'dddd [على الساعة] LT', 'lastDay' => '[أمس على الساعة] LT', 'lastWeek' => 'dddd [على الساعة] LT', 'sameElse' => 'L', ], 'meridiem' => ['Ųµ', 'Ł…'], ]; PK!K:†õõ!carbon/src/Carbon/Lang/sah_RU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Valery Timiriliyev Valery Timiriliyev timiriliyev@gmail.com */ return array_replace_recursive(require __DIR__.'/ru.php', [ 'formats' => [ 'L' => 'YYYY.MM.DD', ], 'months' => ['Ń‚Š¾Ń…ŃŃƒŠ½Š½ŃŒŃƒ', 'олунньу', 'кулун Ń‚ŃƒŃ‚Š°Ń€', 'муус ŃƒŃŃ‚Š°Ń€', 'ыам ыйын', 'Š±ŃŃ ыйын', 'от ыйын', 'Š°Ń‚Ń‹Ń€Š“ŃŒŠ°Ń… ыйын', 'балаҕан ыйын', 'Š°Š»Ń‚Ń‹Š½Š½ŃŒŃ‹', 'ŃŃŃ‚ŠøŠ½Š½ŃŒŠø', 'Š°Ń…ŃŃ‹Š½Š½ŃŒŃ‹'], 'months_short' => ['тохс', 'олун', 'кул', 'муус', 'ыам', 'Š±ŃŃ', 'от', 'атыр', 'бал', 'алт', 'сэт', 'ахс'], 'weekdays' => ['Š±Š°ŃŠŗŃ‹Ņ»Ń‹Š°Š½Š½ŃŒŠ°', 'Š±ŃŠ½ŠøŠ“ŠøŃŠ½Š½ŃŒŠøŠŗ', 'Š¾ŠæŃ‚ŃƒŠ¾Ń€ŃƒŠ½Š½ŃŒŃƒŠŗ', 'ŃŃŃ€ŃŠ“Ń', 'Ń‡ŃŠæŠæŠøŃŃ€', 'Š±ŃŃŃ‚ŠøŠ½ŃŃ', 'ŃŃƒŠ±ŃƒŠ¾Ń‚Š°'], 'weekdays_short' => ['бс', 'бн', 'оп', 'ср', 'чп', 'бт', 'сб'], 'weekdays_min' => ['бс', 'бн', 'оп', 'ср', 'чп', 'бт', 'сб'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, ]); PK!q~mq   carbon/src/Carbon/Lang/en_PR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!x^“FF carbon/src/Carbon/Lang/en_BM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!q~mq   carbon/src/Carbon/Lang/en_MT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!Œ|į ŻŻcarbon/src/Carbon/Lang/lkt.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'month' => ':count haŋwĆ­', // less reliable 'm' => ':count haŋwĆ­', // less reliable 'a_month' => ':count haŋwĆ­', // less reliable 'week' => ':count Å”akówiŋ', // less reliable 'w' => ':count Å”akówiŋ', // less reliable 'a_week' => ':count Å”akówiŋ', // less reliable 'hour' => ':count maza Å”kaŋŔkaŋ', // less reliable 'h' => ':count maza Å”kaŋŔkaŋ', // less reliable 'a_hour' => ':count maza Å”kaŋŔkaŋ', // less reliable 'minute' => ':count čƭkʼala', // less reliable 'min' => ':count čƭkʼala', // less reliable 'a_minute' => ':count čƭkʼala', // less reliable 'year' => ':count wanĆ­yetu', 'y' => ':count wanĆ­yetu', 'a_year' => ':count wanĆ­yetu', 'day' => ':count aŋpĆ©tu', 'd' => ':count aŋpĆ©tu', 'a_day' => ':count aŋpĆ©tu', 'second' => ':count icinuŋpa', 's' => ':count icinuŋpa', 'a_second' => ':count icinuŋpa', ]); PK!½ōē88!carbon/src/Carbon/Lang/dsb_DE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Information from Michael Wolf bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'DD. MMMM YYYY', 'LLL' => 'DD. MMMM, HH:mm [góź.]', 'LLLL' => 'dddd, DD. MMMM YYYY, HH:mm [góź.]', ], 'months' => ['januara', 'februara', 'měrca', 'apryla', 'maja', 'junija', 'julija', 'awgusta', 'septembra', 'oktobra', 'nowembra', 'decembra'], 'months_short' => ['Jan', 'Feb', 'Měr', 'Apr', 'Maj', 'Jun', 'Jul', 'Awg', 'Sep', 'Okt', 'Now', 'Dec'], 'weekdays' => ['NjeÅŗela', 'PónjeÅŗele', 'Wałtora', 'Srjoda', 'Stwórtk', 'Pětk', 'Sobota'], 'weekdays_short' => ['Nj', 'Pó', 'Wa', 'Sr', 'St', 'Pě', 'So'], 'weekdays_min' => ['Nj', 'Pó', 'Wa', 'Sr', 'St', 'Pě', 'So'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'year' => ':count lěto', 'y' => ':count lěto', 'a_year' => ':count lěto', 'month' => ':count mjasec', 'm' => ':count mjasec', 'a_month' => ':count mjasec', 'week' => ':count tyÅŗeń', 'w' => ':count tyÅŗeń', 'a_week' => ':count tyÅŗeń', 'day' => ':count Åŗeń', 'd' => ':count Åŗeń', 'a_day' => ':count Åŗeń', 'hour' => ':count góźina', 'h' => ':count góźina', 'a_hour' => ':count góźina', 'minute' => ':count minuta', 'min' => ':count minuta', 'a_minute' => ':count minuta', 'second' => ':count drugi', 's' => ':count drugi', 'a_second' => ':count drugi', ]); PK!Ä!¹   carbon/src/Carbon/Lang/th_TH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/th.php'; PK!vR`OOcarbon/src/Carbon/Lang/mhr.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/mhr_RU.php'; PK!œnčč!carbon/src/Carbon/Lang/lij_IT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Gastaldi alessio.gastaldi@libero.it */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['zenĆ¢', 'fevrĆ¢', 'marzo', 'avrĆ®', 'mazzo', 'zĆ»gno', 'lĆ»ggio', 'agosto', 'settembre', 'ottobre', 'novembre', 'dixembre'], 'months_short' => ['zen', 'fev', 'mar', 'arv', 'maz', 'zĆ»g', 'lĆ»g', 'ago', 'set', 'ƶtt', 'nov', 'dix'], 'weekdays' => ['domenega', 'lĆ»nedƬ', 'martedƬ', 'mercUrdƬ', 'zĆŖggia', 'venardƬ', 'sabbo'], 'weekdays_short' => ['dom', 'lĆ»n', 'mar', 'mer', 'zĆŖu', 'ven', 'sab'], 'weekdays_min' => ['dom', 'lĆ»n', 'mar', 'mer', 'zĆŖu', 'ven', 'sab'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'year' => ':count etƦ', // less reliable 'y' => ':count etƦ', // less reliable 'a_year' => ':count etƦ', // less reliable 'month' => ':count meize', 'm' => ':count meize', 'a_month' => ':count meize', 'week' => ':count settemannha', 'w' => ':count settemannha', 'a_week' => ':count settemannha', 'day' => ':count giorno', 'd' => ':count giorno', 'a_day' => ':count giorno', 'hour' => ':count relĆ©uio', // less reliable 'h' => ':count relĆ©uio', // less reliable 'a_hour' => ':count relĆ©uio', // less reliable 'minute' => ':count menĆ»o', 'min' => ':count menĆ»o', 'a_minute' => ':count menĆ»o', 'second' => ':count segondo', 's' => ':count segondo', 'a_second' => ':count segondo', ]); PK!x‡ØŖ Ŗ carbon/src/Carbon/Lang/ccp.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'weekdays' => ['š‘„¢š‘„§š‘„š‘„Øš‘„š‘„¢š‘„“', 'š‘„„š‘„§š‘„Ÿš‘„“š‘„š‘„¢š‘„“', 'š‘„Ÿš‘„§š‘„š‘„‰š‘„§š‘„£š‘„“š‘„š‘„¢š‘„“', 'š‘„š‘„Ŗš‘„–š‘„“š‘„š‘„¢š‘„“', 'š‘„š‘„³š‘„¢š‘„Øš‘„„š‘„Ŗš‘„›š‘„“š‘„š‘„¢š‘„“', 'š‘„„š‘„Ŗš‘„‡š‘„“š‘„‡š‘„®š‘„¢š‘„“š‘„š‘„¢š‘„“', 'š‘„„š‘„§š‘„šš‘„Øš‘„š‘„¢š‘„“'], 'weekdays_short' => ['š‘„¢š‘„§š‘„š‘„Ø', 'š‘„„š‘„§š‘„Ÿš‘„“', 'š‘„Ÿš‘„§š‘„š‘„‰š‘„§š‘„£š‘„“', 'š‘„š‘„Ŗš‘„–š‘„“', 'š‘„š‘„³š‘„¢š‘„Øš‘„„š‘„Ŗš‘„›š‘„“', '𑄄𑄪𑄇𑄓𑄇𑄮𑄢𑄓', 'š‘„„š‘„§š‘„šš‘„Ø'], 'weekdays_min' => ['š‘„¢š‘„§š‘„š‘„Ø', 'š‘„„š‘„§š‘„Ÿš‘„“', 'š‘„Ÿš‘„§š‘„š‘„‰š‘„§š‘„£š‘„“', 'š‘„š‘„Ŗš‘„–š‘„“', 'š‘„š‘„³š‘„¢š‘„Øš‘„„š‘„Ŗš‘„›š‘„“', '𑄄𑄪𑄇𑄓𑄇𑄮𑄢𑄓', 'š‘„„š‘„§š‘„šš‘„Ø'], 'months' => ['š‘„Žš‘„šš‘„Ŗš‘„ š‘„¢š‘„Ø', 'š‘„œš‘„¬š‘„›š‘„“š‘„š‘„³š‘„¢š‘„Ŗš‘„ š‘„¢š‘„Ø', 'š‘„Ÿš‘„¢š‘„“š‘„Œš‘„§', 'š‘„ƒš‘„¬š‘„›š‘„³š‘„¢š‘„Øš‘„£š‘„“', 'š‘„Ÿš‘„¬', 'š‘„Žš‘„Ŗš‘„šš‘„“', 'š‘„Žš‘„Ŗš‘„£š‘„­', 'š‘„ƒš‘„‰š‘„§š‘„Œš‘„“š‘„‘š‘„“', 'š‘„„š‘„¬š‘„›š‘„“š‘„‘š‘„¬š‘„Ÿš‘„“š‘„š‘„§š‘„¢š‘„“', 'š‘„ƒš‘„§š‘„‡š‘„“š‘„‘š‘„¬š‘„š‘„§š‘„¢š‘„“', 'š‘„šš‘„§š‘„žš‘„¬š‘„Ÿš‘„“š‘„š‘„§š‘„¢š‘„“', 'š‘„“š‘„Øš‘„„š‘„¬š‘„Ÿš‘„“š‘„š‘„§š‘„¢š‘„“'], 'months_short' => ['š‘„Žš‘„šš‘„Ŗ', 'š‘„œš‘„¬š‘„›š‘„“', 'š‘„Ÿš‘„¢š‘„“š‘„Œš‘„§', 'š‘„ƒš‘„¬š‘„›š‘„³š‘„¢š‘„Øš‘„£š‘„“', 'š‘„Ÿš‘„¬', 'š‘„Žš‘„Ŗš‘„šš‘„“', 'š‘„Žš‘„Ŗš‘„£š‘„­', 'š‘„ƒš‘„‰š‘„§š‘„Œš‘„“š‘„‘š‘„“', 'š‘„„š‘„¬š‘„›š‘„“š‘„‘š‘„¬š‘„Ÿš‘„“š‘„š‘„§š‘„¢š‘„“', 'š‘„ƒš‘„§š‘„‡š‘„“š‘„‘š‘„®š‘„š‘„§š‘„¢š‘„“', 'š‘„šš‘„§š‘„žš‘„¬š‘„Ÿš‘„“š‘„š‘„§š‘„¢š‘„“', 'š‘„“š‘„Øš‘„„š‘„¬š‘„Ÿš‘„“š‘„š‘„¢š‘„“'], 'months_short_standalone' => ['š‘„Žš‘„šš‘„Ŗš‘„ š‘„¢š‘„Ø', 'š‘„œš‘„¬š‘„›š‘„“š‘„š‘„³š‘„¢š‘„Ŗš‘„ š‘„¢š‘„Ø', 'š‘„Ÿš‘„¢š‘„“š‘„Œš‘„§', 'š‘„ƒš‘„¬š‘„›š‘„³š‘„¢š‘„Øš‘„£š‘„“', 'š‘„Ÿš‘„¬', 'š‘„Žš‘„Ŗš‘„šš‘„“', 'š‘„Žš‘„Ŗš‘„£š‘„­', 'š‘„ƒš‘„‰š‘„§š‘„Œš‘„“š‘„‘š‘„“', 'š‘„„š‘„¬š‘„›š‘„“š‘„‘š‘„¬š‘„Ÿš‘„“š‘„š‘„§š‘„¢š‘„“', 'š‘„ƒš‘„§š‘„‡š‘„“š‘„‘š‘„®š‘„š‘„§š‘„¢š‘„“', 'š‘„šš‘„§š‘„žš‘„¬š‘„Ÿš‘„“š‘„š‘„§š‘„¢š‘„“', 'š‘„“š‘„Øš‘„„š‘„¬š‘„Ÿš‘„“š‘„š‘„§š‘„¢š‘„“'], 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'D/M/YYYY', 'LL' => 'D MMM, YYYY', 'LLL' => 'D MMMM, YYYY h:mm a', 'LLLL' => 'dddd, D MMMM, YYYY h:mm a', ], ]); PK!·PĆīµµ!carbon/src/Carbon/Lang/nds_DE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - information from Kenneth Christiansen Kenneth Christiansen, Pablo Saratxaga kenneth@gnu.org, pablo@mandrakesoft.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], 'months' => ['Jannuaar', 'Feberwaar', 'MƤrz', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'], 'months_short' => ['Jan', 'Feb', 'MƤr', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'], 'weekdays' => ['Sünndag', 'Maandag', 'Dingsdag', 'Middeweek', 'Dunnersdag', 'Freedag', 'Sünnavend'], 'weekdays_short' => ['Sdag', 'Maan', 'Ding', 'Migg', 'Dunn', 'Free', 'Svd.'], 'weekdays_min' => ['Sdag', 'Maan', 'Ding', 'Migg', 'Dunn', 'Free', 'Svd.'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'year' => ':count Johr', 'y' => ':count Johr', 'a_year' => ':count Johr', 'month' => ':count Maand', 'm' => ':count Maand', 'a_month' => ':count Maand', 'week' => ':count Week', 'w' => ':count Week', 'a_week' => ':count Week', 'day' => ':count Dag', 'd' => ':count Dag', 'a_day' => ':count Dag', 'hour' => ':count Stünn', 'h' => ':count Stünn', 'a_hour' => ':count Stünn', 'minute' => ':count Minuut', 'min' => ':count Minuut', 'a_minute' => ':count Minuut', 'second' => ':count sekunn', 's' => ':count sekunn', 'a_second' => ':count sekunn', ]); PK!Ü/ŁNNcarbon/src/Carbon/Lang/nr.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/nr_ZA.php'; PK!ēī”{Ü Ü carbon/src/Carbon/Lang/yo.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - Atolagbe Abisoye */ return [ 'year' => 'į»dún :count', 'a_year' => '{1}į»dún kan|į»dún :count', 'month' => 'osuĢ€ :count', 'a_month' => '{1}osuĢ€ kan|osuĢ€ :count', 'week' => 'į»sįŗ¹ :count', 'a_week' => '{1}į»sįŗ¹ kan|į»sįŗ¹ :count', 'day' => 'į»jį»Ģ :count', 'a_day' => '{1}į»jį»Ģ kan|į»jį»Ģ :count', 'hour' => 'wákati :count', 'a_hour' => '{1}wákati kan|wákati :count', 'minute' => 'iĢ€sįŗ¹jú :count', 'a_minute' => '{1}iĢ€sįŗ¹jú kan|iĢ€sįŗ¹jú :count', 'second' => 'iaayá :count', 'a_second' => '{1}iĢ€sįŗ¹jú aayá die|aayá :count', 'ago' => ':time kį»já', 'from_now' => 'ní :time', 'diff_yesterday' => 'AĢ€na', 'diff_yesterday_regexp' => 'AĢ€na(?:\\s+ni)?', 'diff_today' => 'OĢ€niĢ€', 'diff_today_regexp' => 'OĢ€niĢ€(?:\\s+ni)?', 'diff_tomorrow' => 'į»ŒĢ€la', 'diff_tomorrow_regexp' => 'į»ŒĢ€la(?:\\s+ni)?', 'formats' => [ 'LT' => 'h:mm A', 'LTS' => 'h:mm:ss A', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY h:mm A', 'LLLL' => 'dddd, D MMMM YYYY h:mm A', ], 'calendar' => [ 'sameDay' => '[OĢ€niĢ€ ni] LT', 'nextDay' => '[į»ŒĢ€la ni] LT', 'nextWeek' => 'dddd [Ọsẹ̀ tón\'bį»] [ni] LT', 'lastDay' => '[AĢ€na ni] LT', 'lastWeek' => 'dddd [Ọsẹ̀ tólį»Ģ] [ni] LT', 'sameElse' => 'L', ], 'ordinal' => 'į»jį»Ģ :number', 'months' => ['Sẹ́rẹ́', 'EĢ€reĢ€leĢ€', 'įŗørẹ̀naĢ€', 'IĢ€gbé', 'EĢ€bibi', 'OĢ€kuĢ€du', 'Agįŗ¹mo', 'OĢ€gún', 'Owewe', 'į»ŒĢ€waĢ€raĢ€', 'Bélú', 'į»ŒĢ€pẹ̀̀'], 'months_short' => ['Sẹ́r', 'EĢ€rl', 'įŗørn', 'IĢ€gb', 'EĢ€bi', 'OĢ€kuĢ€', 'Agįŗ¹', 'OĢ€gú', 'Owe', 'į»ŒĢ€waĢ€', 'Bél', 'į»ŒĢ€pẹ̀̀'], 'weekdays' => ['AĢ€iĢ€kú', 'Ajé', 'IĢ€sẹ́gun', 'Ọjį»Ģrú', 'Ọjį»Ģbį»', 'įŗøtiĢ€', 'AĢ€bámẹ́ta'], 'weekdays_short' => ['AĢ€iĢ€k', 'Ajé', 'IĢ€sẹ́', 'Ọjr', 'Ọjb', 'įŗøtiĢ€', 'AĢ€bá'], 'weekdays_min' => ['AĢ€iĢ€', 'Aj', 'IĢ€s', 'Ọr', 'Ọb', 'įŗøt', 'AĢ€b'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'meridiem' => ['ƀƔrį»Ģ€', 'į»ŒĢ€sĆ”n'], ]; PK!SóO  !carbon/src/Carbon/Lang/gsw_CH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/gsw.php'; PK!?`ęW carbon/src/Carbon/Lang/ak_GH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Sugar Labs // OLPC sugarlabs.org libc-alpha@sourceware.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'YYYY/MM/DD', ], 'months' => ['Sanda-ʆpɛpɔn', 'Kwakwar-ʆgyefuo', 'Ebɔw-ʆbenem', 'Ebɔbira-Oforisuo', 'Esusow Aketseaba-Kɔtɔnimba', 'Obirade-Ayɛwohomumu', 'Ayɛwoho-Kitawonsa', 'Difuu-ʆsandaa', 'Fankwa-ʐbɔ', 'ʆbɛsɛ-Ahinime', 'ʆberɛfɛw-Obubuo', 'Mumu-ʆpɛnimba'], 'months_short' => ['S-ʆ', 'K-ʆ', 'E-ʆ', 'E-O', 'E-K', 'O-A', 'A-K', 'D-ʆ', 'F-ʐ', 'ʆ-A', 'ʆ-O', 'M-ʆ'], 'weekdays' => ['Kwesida', 'Dwowda', 'Benada', 'Wukuda', 'Yawda', 'Fida', 'Memeneda'], 'weekdays_short' => ['Kwe', 'Dwo', 'Ben', 'Wuk', 'Yaw', 'Fia', 'Mem'], 'weekdays_min' => ['Kwe', 'Dwo', 'Ben', 'Wuk', 'Yaw', 'Fia', 'Mem'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'meridiem' => ['AN', 'EW'], 'year' => ':count afe', 'y' => ':count afe', 'a_year' => ':count afe', 'month' => ':count bosume', 'm' => ':count bosume', 'a_month' => ':count bosume', 'day' => ':count ɛda', 'd' => ':count ɛda', 'a_day' => ':count ɛda', ]); PK!Ęźŗ"" carbon/src/Carbon/Lang/fr_TN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/fr.php', [ 'weekend' => [5, 6], 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY h:mm a', 'LLLL' => 'dddd D MMMM YYYY h:mm a', ], ]); PK!:€šŠŠ carbon/src/Carbon/Lang/sq_MK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/sq.php', [ 'formats' => [ 'L' => 'D.M.YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY, HH:mm', 'LLLL' => 'dddd, D MMMM YYYY, HH:mm', ], ]); PK![“ó”   carbon/src/Carbon/Lang/hu_HU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/hu.php'; PK!ē¹ÕÕ!carbon/src/Carbon/Lang/ayc_PE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - runasimipi.org libc-alpha@sourceware.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['inĆÆru', 'phiwriru', 'marsu', 'awrila', 'mayu', 'junyu', 'julyu', 'awustu', 'sitimri', 'uktuwri', 'nuwimri', 'risimri'], 'months_short' => ['ini', 'phi', 'mar', 'awr', 'may', 'jun', 'jul', 'awu', 'sit', 'ukt', 'nuw', 'ris'], 'weekdays' => ['tuminku', 'lunisa', 'martisa', 'mirkulisa', 'juywisa', 'wirnisa', 'sawƤru'], 'weekdays_short' => ['tum', 'lun', 'mar', 'mir', 'juy', 'wir', 'saw'], 'weekdays_min' => ['tum', 'lun', 'mar', 'mir', 'juy', 'wir', 'saw'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['VM', 'NM'], ]); PK!BkŠOOcarbon/src/Carbon/Lang/lij.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/lij_IT.php'; PK!q~mq   carbon/src/Carbon/Lang/en_GU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!²5OOcarbon/src/Carbon/Lang/sgs.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/sgs_LT.php'; PK!kųˆ0 0 carbon/src/Carbon/Lang/ug.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Philippe Vaucher * - Tsutomu Kuroda * - yasinn */ return [ 'year' => '{1}'.'بىر ŁŠŁ‰Ł„'.'|:count '.'ŁŠŁ‰Ł„', 'month' => '{1}'.'بىر ئاي'.'|:count '.'ئاي', 'week' => '{1}'.'بىر ھەپتە'.'|:count '.'ھەپتە', 'day' => '{1}'.'بىر ŁƒŪˆŁ†'.'|:count '.'ŁƒŪˆŁ†', 'hour' => '{1}'.'بىر Ų³Ų§Ų¦Ū•ŲŖ'.'|:count '.'Ų³Ų§Ų¦Ū•ŲŖ', 'minute' => '{1}'.'بىر مىنۇت'.'|:count '.'مىنۇت', 'second' => '{1}'.'نەچچە Ų³ŪŁƒŁˆŁ†ŲŖ'.'|:count '.'Ų³ŪŁƒŁˆŁ†ŲŖ', 'ago' => ':time بۇرۇن', 'from_now' => ':time ŁƒŪŁŠŁ‰Ł†', 'diff_today' => 'ŲØŪˆŚÆŪˆŁ†', 'diff_yesterday' => 'ŲŖŪ†Ł†ŪˆŚÆŪˆŁ†', 'diff_tomorrow' => 'Ų¦Ū•ŲŖŪ•', 'diff_tomorrow_regexp' => 'Ų¦Ū•ŲŖŪ•(?:\\s+Ų³Ų§Ų¦Ū•ŲŖ)?', 'diff_today_regexp' => 'ŲØŪˆŚÆŪˆŁ†(?:\\s+Ų³Ų§Ų¦Ū•ŲŖ)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY-MM-DD', 'LL' => 'YYYY-ŁŠŁ‰Ł„Ł‰M-Ų¦Ų§ŁŠŁ†Ł‰Ś­D-ŁƒŪˆŁ†Ł‰', 'LLL' => 'YYYY-ŁŠŁ‰Ł„Ł‰M-Ų¦Ų§ŁŠŁ†Ł‰Ś­D-ŁƒŪˆŁ†Ł‰ŲŒ HH:mm', 'LLLL' => 'dddd، YYYY-ŁŠŁ‰Ł„Ł‰M-Ų¦Ų§ŁŠŁ†Ł‰Ś­D-ŁƒŪˆŁ†Ł‰ŲŒ HH:mm', ], 'calendar' => [ 'sameDay' => '[ŲØŪˆŚÆŪˆŁ† Ų³Ų§Ų¦Ū•ŲŖ] LT', 'nextDay' => '[Ų¦Ū•ŲŖŪ• Ų³Ų§Ų¦Ū•ŲŖ] LT', 'nextWeek' => '[ŁƒŪŁ„Ū•Ų±ŁƒŁ‰] dddd [Ų³Ų§Ų¦Ū•ŲŖ] LT', 'lastDay' => '[ŲŖŪ†Ł†ŪˆŚÆŪˆŁ†] LT', 'lastWeek' => '[ئالدىنقى] dddd [Ų³Ų§Ų¦Ū•ŲŖ] LT', 'sameElse' => 'L', ], 'ordinal' => function ($number, $period) { switch ($period) { case 'd': case 'D': case 'DDD': return $number.'-ŁƒŪˆŁ†Ł‰'; case 'w': case 'W': return $number.'-ھەپتە'; default: return $number; } }, 'meridiem' => function ($hour, $minute) { $time = $hour * 100 + $minute; if ($time < 600) { return 'ŁŠŪŲ±Ł‰Ł… ŁƒŪŚ†Ū•'; } if ($time < 900) { return 'سەھەر'; } if ($time < 1130) { return 'Ś†ŪˆŲ“ŲŖŁ‰Ł† بۇرۇن'; } if ($time < 1230) { return 'Ś†ŪˆŲ“'; } if ($time < 1800) { return 'Ś†ŪˆŲ“ŲŖŁ‰Ł† ŁƒŪŁŠŁ‰Ł†'; } return 'ŁƒŪ•Ś†'; }, 'months' => ['ŁŠŲ§Ł†Ū‹Ų§Ų±', 'فېۋرال', 'Ł…Ų§Ų±ŲŖ', 'ئاپرېل', 'Ł…Ų§ŁŠ', 'Ų¦Ł‰ŁŠŪ‡Ł†', 'Ų¦Ł‰ŁŠŪ‡Ł„', 'Ų¦Ų§Ū‹ŲŗŪ‡Ų³ŲŖ', 'سېنتەبىر', 'Ų¦Ū†ŁƒŲŖŪ•ŲØŁ‰Ų±', 'Ł†ŁˆŁŠŲ§ŲØŁ‰Ų±', 'ŲÆŪŁƒŲ§ŲØŁ‰Ų±'], 'months_short' => ['ŁŠŲ§Ł†Ū‹Ų§Ų±', 'فېۋرال', 'Ł…Ų§Ų±ŲŖ', 'ئاپرېل', 'Ł…Ų§ŁŠ', 'Ų¦Ł‰ŁŠŪ‡Ł†', 'Ų¦Ł‰ŁŠŪ‡Ł„', 'Ų¦Ų§Ū‹ŲŗŪ‡Ų³ŲŖ', 'سېنتەبىر', 'Ų¦Ū†ŁƒŲŖŪ•ŲØŁ‰Ų±', 'Ł†ŁˆŁŠŲ§ŲØŁ‰Ų±', 'ŲÆŪŁƒŲ§ŲØŁ‰Ų±'], 'weekdays' => ['ŁŠŪ•ŁƒŲ“Ū•Ł†ŲØŪ•', 'ŲÆŪˆŲ“Ū•Ł†ŲØŪ•', 'Ų³Ū•ŁŠŲ“Ū•Ł†ŲØŪ•', 'چارؓەنبە', 'Ł¾Ū•ŁŠŲ“Ū•Ł†ŲØŪ•', 'Ų¬ŪˆŁ…Ū•', 'ؓەنبە'], 'weekdays_short' => ['ŁŠŪ•', 'دۈ', 'Ų³Ū•', 'چا', 'پە', 'جۈ', 'Ų“Ū•'], 'weekdays_min' => ['ŁŠŪ•', 'دۈ', 'Ų³Ū•', 'چا', 'پە', 'جۈ', 'Ų“Ū•'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' Ū‹Ū• '], ]; PK!¬TAz   carbon/src/Carbon/Lang/pt_GQ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/pt.php'; PK!›œD!carbon/src/Carbon/Lang/niu_NU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RockET Systems Emani Fakaotimanava-Lui emani@niue.nu */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['Ianuali', 'Fepuali', 'Masi', 'Apelila', 'Me', 'Iuni', 'Iulai', 'Aokuso', 'Sepetema', 'Oketopa', 'Novema', 'Tesemo'], 'months_short' => ['Ian', 'Fep', 'Mas', 'Ape', 'Me', 'Iun', 'Iul', 'Aok', 'Sep', 'Oke', 'Nov', 'Tes'], 'weekdays' => ['Aho Tapu', 'Aho Gofua', 'Aho Ua', 'Aho Lotu', 'Aho Tuloto', 'Aho Falaile', 'Aho Faiumu'], 'weekdays_short' => ['Tapu', 'Gofua', 'Ua', 'Lotu', 'Tuloto', 'Falaile', 'Faiumu'], 'weekdays_min' => ['Tapu', 'Gofua', 'Ua', 'Lotu', 'Tuloto', 'Falaile', 'Faiumu'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'year' => ':count tau', 'y' => ':count tau', 'a_year' => ':count tau', 'month' => ':count mahina', 'm' => ':count mahina', 'a_month' => ':count mahina', 'week' => ':count faahi tapu', 'w' => ':count faahi tapu', 'a_week' => ':count faahi tapu', 'day' => ':count aho', 'd' => ':count aho', 'a_day' => ':count aho', 'hour' => ':count e tulā', 'h' => ':count e tulā', 'a_hour' => ':count e tulā', 'minute' => ':count minuti', 'min' => ':count minuti', 'a_minute' => ':count minuti', 'second' => ':count sekone', 's' => ':count sekone', 'a_second' => ':count sekone', ]); PK!Šfōc   carbon/src/Carbon/Lang/fr_NE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!Ü åī   carbon/src/Carbon/Lang/vi_VN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/vi.php'; PK!Sņņ%OOcarbon/src/Carbon/Lang/niu.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/niu_NU.php'; PK!žx6æ   carbon/src/Carbon/Lang/da_DK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/da.php'; PK!^5&åżżcarbon/src/Carbon/Lang/fa.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - FranƧois B * - Nasser Ghiasi * - JD Isaacks * - Hossein Jabbari * - nimamo * - hafezdivandari * - Hassan Pezeshk (hpez) */ return [ 'year' => ':count Ų³Ų§Ł„', 'a_year' => 'یک Ų³Ų§Ł„'.'|:count '.'Ų³Ų§Ł„', 'y' => ':count Ų³Ų§Ł„', 'month' => ':count ماه', 'a_month' => 'یک ماه'.'|:count '.'ماه', 'm' => ':count ماه', 'week' => ':count هفته', 'a_week' => 'یک هفته'.'|:count '.'هفته', 'w' => ':count هفته', 'day' => ':count روز', 'a_day' => 'یک روز'.'|:count '.'روز', 'd' => ':count روز', 'hour' => ':count Ų³Ų§Ų¹ŲŖ', 'a_hour' => 'یک Ų³Ų§Ų¹ŲŖ'.'|:count '.'Ų³Ų§Ų¹ŲŖ', 'h' => ':count Ų³Ų§Ų¹ŲŖ', 'minute' => ':count ŲÆŁ‚ŪŒŁ‚Ł‡', 'a_minute' => 'یک ŲÆŁ‚ŪŒŁ‚Ł‡'.'|:count '.'ŲÆŁ‚ŪŒŁ‚Ł‡', 'min' => ':count ŲÆŁ‚ŪŒŁ‚Ł‡', 'second' => ':count Ų«Ų§Ł†ŪŒŁ‡', 's' => ':count Ų«Ų§Ł†ŪŒŁ‡', 'ago' => ':time پیؓ', 'from_now' => ':time دیگر', 'after' => ':time پس Ų§Ų²', 'before' => ':time پیؓ Ų§Ų²', 'diff_now' => 'Ų§Ś©Ł†ŁˆŁ†', 'diff_today' => 'Ų§Ł…Ų±ŁˆŲ²', 'diff_today_regexp' => 'Ų§Ł…Ų±ŁˆŲ²(?:\\s+Ų³Ų§Ų¹ŲŖ)?', 'diff_yesterday' => 'دیروز', 'diff_yesterday_regexp' => 'دیروز(?:\\s+Ų³Ų§Ų¹ŲŖ)?', 'diff_tomorrow' => 'فردا', 'diff_tomorrow_regexp' => 'فردا(?:\\s+Ų³Ų§Ų¹ŲŖ)?', 'formats' => [ 'LT' => 'OH:Om', 'LTS' => 'OH:Om:Os', 'L' => 'OD/OM/OY', 'LL' => 'OD MMMM OY', 'LLL' => 'OD MMMM OY OH:Om', 'LLLL' => 'dddd, OD MMMM OY OH:Om', ], 'calendar' => [ 'sameDay' => '[Ų§Ł…Ų±ŁˆŲ² Ų³Ų§Ų¹ŲŖ] LT', 'nextDay' => '[فردا Ų³Ų§Ų¹ŲŖ] LT', 'nextWeek' => 'dddd [Ų³Ų§Ų¹ŲŖ] LT', 'lastDay' => '[دیروز Ų³Ų§Ų¹ŲŖ] LT', 'lastWeek' => 'dddd [پیؓ] [Ų³Ų§Ų¹ŲŖ] LT', 'sameElse' => 'L', ], 'ordinal' => ':timeŁ…', 'meridiem' => ['قبل Ų§Ų² ظهر', 'ŲØŲ¹ŲÆ Ų§Ų² ظهر'], 'months' => ['Ś˜Ų§Ł†ŁˆŪŒŁ‡', 'ŁŁˆŲ±ŪŒŁ‡', 'Ł…Ų§Ų±Ų³', 'Ų¢ŁˆŲ±ŪŒŁ„', 'مه', 'Ś˜ŁˆŲ¦Ł†', 'Ś˜ŁˆŲ¦ŪŒŁ‡', 'اوت', 'سپتامبر', 'اکتبر', 'Ł†ŁˆŲ§Ł…ŲØŲ±', 'ŲÆŲ³Ų§Ł…ŲØŲ±'], 'months_short' => ['Ś˜Ų§Ł†ŁˆŪŒŁ‡', 'ŁŁˆŲ±ŪŒŁ‡', 'Ł…Ų§Ų±Ų³', 'Ų¢ŁˆŲ±ŪŒŁ„', 'مه', 'Ś˜ŁˆŲ¦Ł†', 'Ś˜ŁˆŲ¦ŪŒŁ‡', 'اوت', 'سپتامبر', 'اکتبر', 'Ł†ŁˆŲ§Ł…ŲØŲ±', 'ŲÆŲ³Ų§Ł…ŲØŲ±'], 'weekdays' => ['ŪŒŚ©Ų“Ł†ŲØŁ‡', 'ŲÆŁˆŲ“Ł†ŲØŁ‡', 'Ų³Ł‡ā€ŒŲ“Ł†ŲØŁ‡', 'چهارؓنبه', 'پنجؓنبه', 'جمعه', 'ؓنبه'], 'weekdays_short' => ['ŪŒŚ©Ų“Ł†ŲØŁ‡', 'ŲÆŁˆŲ“Ł†ŲØŁ‡', 'Ų³Ł‡ā€ŒŲ“Ł†ŲØŁ‡', 'چهارؓنبه', 'پنجؓنبه', 'جمعه', 'ؓنبه'], 'weekdays_min' => ['ی', 'ŲÆ', 'Ų³', 'چ', 'پ', 'Ų¬', 'Ų“'], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, 'list' => ['، ', ' و '], 'alt_numbers' => ['Ū°Ū°', 'Ū°Ū±', 'Ū°Ū²', 'Ū°Ū³', 'Ū°Ū“', 'Ū°Ūµ', 'Ū°Ū¶', 'Ū°Ū·', 'Ū°Ūø', 'Ū°Ū¹', 'Ū±Ū°', 'Ū±Ū±', 'Ū±Ū²', 'Ū±Ū³', 'Ū±Ū“', 'Ū±Ūµ', 'Ū±Ū¶', 'Ū±Ū·', 'Ū±Ūø', 'Ū±Ū¹', 'Ū²Ū°', 'Ū²Ū±', 'Ū²Ū²', 'Ū²Ū³', 'Ū²Ū“', 'Ū²Ūµ', 'Ū²Ū¶', 'Ū²Ū·', 'Ū²Ūø', 'Ū²Ū¹', 'Ū³Ū°', 'Ū³Ū±', 'Ū³Ū²', 'Ū³Ū³', 'Ū³Ū“', 'Ū³Ūµ', 'Ū³Ū¶', 'Ū³Ū·', 'Ū³Ūø', 'Ū³Ū¹', 'Ū“Ū°', 'Ū“Ū±', 'Ū“Ū²', 'Ū“Ū³', 'Ū“Ū“', 'Ū“Ūµ', 'Ū“Ū¶', 'Ū“Ū·', 'Ū“Ūø', 'Ū“Ū¹', 'ŪµŪ°', 'ŪµŪ±', 'ŪµŪ²', 'ŪµŪ³', 'ŪµŪ“', 'ŪµŪµ', 'ŪµŪ¶', 'ŪµŪ·', 'ŪµŪø', 'ŪµŪ¹', 'Ū¶Ū°', 'Ū¶Ū±', 'Ū¶Ū²', 'Ū¶Ū³', 'Ū¶Ū“', 'Ū¶Ūµ', 'Ū¶Ū¶', 'Ū¶Ū·', 'Ū¶Ūø', 'Ū¶Ū¹', 'Ū·Ū°', 'Ū·Ū±', 'Ū·Ū²', 'Ū·Ū³', 'Ū·Ū“', 'Ū·Ūµ', 'Ū·Ū¶', 'Ū·Ū·', 'Ū·Ūø', 'Ū·Ū¹', 'ŪøŪ°', 'ŪøŪ±', 'ŪøŪ²', 'ŪøŪ³', 'ŪøŪ“', 'ŪøŪµ', 'ŪøŪ¶', 'ŪøŪ·', 'ŪøŪø', 'ŪøŪ¹', 'Ū¹Ū°', 'Ū¹Ū±', 'Ū¹Ū²', 'Ū¹Ū³', 'Ū¹Ū“', 'Ū¹Ūµ', 'Ū¹Ū¶', 'Ū¹Ū·', 'Ū¹Ūø', 'Ū¹Ū¹'], 'months_short_standalone' => ['Ś˜Ų§Ł†ŁˆŪŒŁ‡', 'ŁŁˆŲ±ŪŒŁ‡', 'Ł…Ų§Ų±Ų³', 'Ų¢ŁˆŲ±ŪŒŁ„', 'مه', 'Ś˜ŁˆŲ¦Ł†', 'Ś˜ŁˆŲ¦ŪŒŁ‡', 'اوت', 'سپتامبر', 'اکتبر', 'Ł†ŁˆŲ§Ł…ŲØŲ±', 'ŲÆŲ³Ų§Ł…ŲØŲ±'], 'weekend' => [5, 5], ]; PK!‹7Óænncarbon/src/Carbon/Lang/ku.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Halwest Manguri * - Kardo Qadir */ $months = ['Ś©Ų§Ł†ŁˆŁ†ŪŒ ŲÆŁˆŁˆŪ•Ł…', 'ؓوبات', 'Ų¦Ų§Ų²Ų§Ų±', 'Ł†ŪŒŲ³Ų§Ł†', 'ئایار', 'ā€ŒŲ­ŁˆŲ²Ū•ŪŒŲ±Ų§Ł†', 'ŲŖŪ•Ł…Ł…ŁˆŲ²', 'Ų¦Ų§ŲØ', 'Ų¦Ū•ŪŒŁ„ŁˆŁ„', 'ŲŖŲ“Ų±ŪŒŁ†ŪŒ ŪŒŪ•Ś©Ū•Ł…', 'ŲŖŲ“Ų±ŪŒŁ†ŪŒ ŲÆŁˆŁˆŪ•Ł…', 'Ś©Ų§Ł†ŁˆŁ†ŪŒ ŪŒŪ•Ś©Ū•Ł…']; $weekdays = ['دوو Ų“Ū•Ł…Ł…Ū•', 'Ų³ŪŽ Ų“Ū•Ł…Ł…Ū•', 'Ś†ŁˆŲ§Ų± Ų“Ū•Ł…Ł…Ū•', 'Ł¾ŪŽŁ†Ų¬ Ų“Ū•Ł…Ł…Ū•', 'Ł‡Ū•ŪŒŁ†ŪŒ', 'Ų“Ū•Ł…Ł…Ū•', 'ŪŒŪ•Ś© Ų“Ū•Ł…Ł…Ū•']; return [ 'ago' => 'Ł¾ŪŽŲ“ :time', 'from_now' => ':time لە Ų¦ŪŽŲ³ŲŖŲ§ŁˆŪ•', 'after' => 'دوای :time', 'before' => 'Ł¾ŪŽŲ“ :time', 'year' => '{0}ساڵ|{1}Ų³Ų§ŚµŪŽŚ©|{2}Ł¢ ساڵ|[3,10]:count ساڵ|[11,Inf]:count ساڵ', 'month' => '{0}مانگ|{1}Ł…Ų§Ł†ŚÆŪŽŚ©|{2}Ł¢ مانگ|[3,10]:count مانگ|[11,Inf]:count مانگ', 'week' => '{0}هەفتە|{1}Ł‡Ū•ŁŲŖŪ•ŪŒŪ•Ś©|{2}Ł¢ هەفتە|[3,10]:count هەفتە|[11,Inf]:count هەفتە', 'day' => '{0}Ś•Ū†Ś˜|{1}Ś•Ū†Ś˜ŪŽŚ©|{2}Ł¢ Ś•Ū†Ś˜|[3,10]:count Ś•Ū†Ś˜|[11,Inf]:count Ś•Ū†Ś˜', 'hour' => '{0}Ś©Ų§ŲŖŚ˜Ł…ŪŽŲ±|{1}Ś©Ų§ŲŖŚ˜Ł…ŪŽŲ±ŪŽŚ©|{2}Ł¢ Ś©Ų§ŲŖŚ˜Ł…ŪŽŲ±|[3,10]:count Ś©Ų§ŲŖŚ˜Ł…ŪŽŲ±|[11,Inf]:count Ś©Ų§ŲŖŚ˜Ł…ŪŽŲ±', 'minute' => '{0}Ų®ŁˆŁ„Ū•Ś©|{1}Ų®ŁˆŁ„Ū•Ś©ŪŽŚ©|{2}Ł¢ Ų®ŁˆŁ„Ū•Ś©|[3,10]:count Ų®ŁˆŁ„Ū•Ś©|[11,Inf]:count Ų®ŁˆŁ„Ū•Ś©', 'second' => '{0}چرکە|{1}Ś†Ų±Ś©Ū•ŪŒŪ•Ś©|{2}Ł¢ چرکە|[3,10]:count چرکە|[11,Inf]:count چرکە', 'months' => $months, 'months_standalone' => $months, 'months_short' => $months, 'weekdays' => $weekdays, 'weekdays_short' => $weekdays, 'weekdays_min' => $weekdays, 'list' => [', ', ' Ć» '], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, ]; PK!w¦}©!carbon/src/Carbon/Lang/yue_HK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/zh_HK.php', [ 'formats' => [ 'L' => 'YYYY幓MM月DDę—„ dddd', ], 'months' => ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'], 'months_short' => ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'], 'weekdays' => ['ę˜ŸęœŸę—„', 'ę˜ŸęœŸäø€', '星期二', 'ę˜ŸęœŸäø‰', 'ę˜ŸęœŸå››', 'ę˜ŸęœŸäŗ”', 'ę˜ŸęœŸå…­'], 'weekdays_short' => ['ę—„', 'äø€', '二', 'äø‰', '四', 'äŗ”', '六'], 'weekdays_min' => ['ę—„', 'äø€', '二', 'äø‰', '四', 'äŗ”', '六'], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, 'meridiem' => ['äøŠåˆ', 'äø‹åˆ'], ]); PK!XŃNÖee!carbon/src/Carbon/Lang/crh_UA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Reşat SABIQ tilde.birlik@gmail.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], 'months' => ['Yanvar', 'Fevral', 'Mart', 'Aprel', 'Mayıs', 'İyun', 'İyul', 'Avgust', 'SentĆ¢br', 'OktĆ¢br', 'Noyabr', 'Dekabr'], 'months_short' => ['Yan', 'Fev', 'Mar', 'Apr', 'May', 'İyn', 'İyl', 'Avg', 'Sen', 'Okt', 'Noy', 'Dek'], 'weekdays' => ['Bazar', 'Bazarertesi', 'Salı', 'Ƈarşembe', 'Cumaaqşamı', 'Cuma', 'Cumaertesi'], 'weekdays_short' => ['Baz', 'Ber', 'Sal', 'Ƈar', 'Caq', 'Cum', 'Cer'], 'weekdays_min' => ['Baz', 'Ber', 'Sal', 'Ƈar', 'Caq', 'Cum', 'Cer'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'meridiem' => ['ÜE', 'ÜS'], 'year' => ':count yıl', 'y' => ':count yıl', 'a_year' => ':count yıl', 'month' => ':count ay', 'm' => ':count ay', 'a_month' => ':count ay', 'week' => ':count afta', 'w' => ':count afta', 'a_week' => ':count afta', 'day' => ':count kün', 'd' => ':count kün', 'a_day' => ':count kün', 'hour' => ':count saat', 'h' => ':count saat', 'a_hour' => ':count saat', 'minute' => ':count daqqa', 'min' => ':count daqqa', 'a_minute' => ':count daqqa', 'second' => ':count ekinci', 's' => ':count ekinci', 'a_second' => ':count ekinci', ]); PK!—ł÷OOcarbon/src/Carbon/Lang/fur.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/fur_IT.php'; PK!Š‹Y   carbon/src/Carbon/Lang/ha_NE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ha.php'; PK!x^“FF carbon/src/Carbon/Lang/en_CM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!„ļk’iicarbon/src/Carbon/Lang/ee.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['ŋ', 'É£'], 'weekdays' => ['kɔsiɖa', 'dzoɖa', 'blaɖa', 'kuɖa', 'yawoɖa', 'fiɖa', 'memleɖa'], 'weekdays_short' => ['kɔs', 'dzo', 'bla', 'kuɖ', 'yaw', 'fiɖ', 'mem'], 'weekdays_min' => ['kɔs', 'dzo', 'bla', 'kuɖ', 'yaw', 'fiɖ', 'mem'], 'months' => ['dzove', 'dzodze', 'tedoxe', 'afɔfÄ©e', 'dama', 'masa', 'siamlɔm', 'deasiamime', 'anyɔnyɔ', 'kele', 'adeɛmekpɔxe', 'dzome'], 'months_short' => ['dzv', 'dzd', 'ted', 'afɔ', 'dam', 'mas', 'sia', 'dea', 'any', 'kel', 'ade', 'dzm'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'a [ga] h:mm', 'LTS' => 'a [ga] h:mm:ss', 'L' => 'M/D/YYYY', 'LL' => 'MMM D [lia], YYYY', 'LLL' => 'a [ga] h:mm MMMM D [lia] YYYY', 'LLLL' => 'a [ga] h:mm dddd, MMMM D [lia] YYYY', ], 'year' => 'ʒe :count', 'y' => 'ʒe :count', 'a_year' => 'ʒe :count', 'month' => 'É£leti :count', 'm' => 'É£leti :count', 'a_month' => 'É£leti :count', 'week' => 'kwasiɖa :count', 'w' => 'kwasiɖa :count', 'a_week' => 'kwasiɖa :count', 'day' => 'ŋkeke :count', 'd' => 'ŋkeke :count', 'a_day' => 'ŋkeke :count', 'hour' => 'gaʒoʒo :count', 'h' => 'gaʒoʒo :count', 'a_hour' => 'gaʒoʒo :count', 'minute' => 'miniti :count', // less reliable 'min' => 'miniti :count', // less reliable 'a_minute' => 'miniti :count', // less reliable 'second' => 'sɛkɛnd :count', // less reliable 's' => 'sɛkɛnd :count', // less reliable 'a_second' => 'sɛkɛnd :count', // less reliable ]); PK!’Sœ   carbon/src/Carbon/Lang/et_EE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/et.php'; PK!õx0NNcarbon/src/Carbon/Lang/ts.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/ts_ZA.php'; PK!ąź2ÜÜ!carbon/src/Carbon/Lang/sid_ET.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ge'ez Frontier Foundation locales@geez.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'], 'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 'weekdays' => ['Sambata', 'Sanyo', 'Maakisanyo', 'Roowe', 'Hamuse', 'Arbe', 'Qidaame'], 'weekdays_short' => ['Sam', 'San', 'Mak', 'Row', 'Ham', 'Arb', 'Qid'], 'weekdays_min' => ['Sam', 'San', 'Mak', 'Row', 'Ham', 'Arb', 'Qid'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['soodo', 'hawwaro'], ]); PK!WtģU carbon/src/Carbon/Lang/ff_MR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ff.php', [ 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'D/M/YYYY', 'LL' => 'D MMM, YYYY', 'LLL' => 'D MMMM YYYY h:mm a', 'LLLL' => 'dddd D MMMM YYYY h:mm a', ], ]); PK!Ņ8枻 » carbon/src/Carbon/Lang/ne.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - nootanghimire * - Josh Soref * - Nj Subedi * - JD Isaacks */ return [ 'year' => 'ą¤ą¤• ą¤¬ą¤°ą„ą¤·|:count ą¤¬ą¤°ą„ą¤·', 'y' => ':count ą¤µą¤°ą„ą¤·', 'month' => 'ą¤ą¤• महिना|:count महिना', 'm' => ':count महिना', 'week' => ':count ą¤¹ą¤Ŗą„ą¤¤ą¤¾', 'w' => ':count ą¤¹ą¤Ŗą„ą¤¤ą¤¾', 'day' => 'ą¤ą¤• दिन|:count दिन', 'd' => ':count दिन', 'hour' => 'ą¤ą¤• ą¤˜ą¤£ą„ą¤Ÿą¤¾|:count ą¤˜ą¤£ą„ą¤Ÿą¤¾', 'h' => ':count ą¤˜ą¤£ą„ą¤Ÿą¤¾', 'minute' => 'ą¤ą¤• ą¤®ą¤æą¤Øą„‡ą¤Ÿ|:count ą¤®ą¤æą¤Øą„‡ą¤Ÿ', 'min' => ':count ą¤®ą¤æą¤Øą„‡ą¤Ÿ', 'second' => 'ą¤•ą„‡ą¤¹ą„€ ą¤•ą„ą¤·ą¤£|:count ą¤øą„‡ą¤•ą„‡ą¤£ą„ą¤”', 's' => ':count ą¤øą„‡ą¤•ą„‡ą¤£ą„ą¤”', 'ago' => ':time अगाऔि', 'from_now' => ':timeमा', 'after' => ':time पछि', 'before' => ':time ą¤…ą¤˜ą¤æ', 'diff_now' => 'ą¤…ą¤¹ą¤æą¤²ą„‡', 'diff_today' => 'ą¤†ą¤œ', 'diff_yesterday' => 'ą¤¹ą¤æą¤œą„‹', 'diff_tomorrow' => 'ą¤­ą„‹ą¤²ą¤æ', 'formats' => [ 'LT' => 'Aą¤•ą„‹ h:mm ą¤¬ą¤œą„‡', 'LTS' => 'Aą¤•ą„‹ h:mm:ss ą¤¬ą¤œą„‡', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY, Aą¤•ą„‹ h:mm ą¤¬ą¤œą„‡', 'LLLL' => 'dddd, D MMMM YYYY, Aą¤•ą„‹ h:mm ą¤¬ą¤œą„‡', ], 'calendar' => [ 'sameDay' => '[ą¤†ą¤œ] LT', 'nextDay' => '[ą¤­ą„‹ą¤²ą¤æ] LT', 'nextWeek' => '[ą¤†ą¤‰ą¤ą¤¦ą„‹] dddd[,] LT', 'lastDay' => '[ą¤¹ą¤æą¤œą„‹] LT', 'lastWeek' => '[ą¤—ą¤ą¤•ą„‹] dddd[,] LT', 'sameElse' => 'L', ], 'meridiem' => function ($hour) { if ($hour < 3) { return 'राति'; } if ($hour < 12) { return 'बिहान'; } if ($hour < 16) { return 'ą¤¦ą¤æą¤‰ą¤ą¤øą„‹'; } if ($hour < 20) { return 'ą¤øą¤¾ą¤ą¤'; } return 'राति'; }, 'months' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą„‡ą¤¬ą„ą¤°ą„ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą¤æą¤²', 'मई', 'ą¤œą„ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤·ą„ą¤Ÿ', 'ą¤øą„‡ą¤Ŗą„ą¤Ÿą„‡ą¤®ą„ą¤¬ą¤°', 'ą¤…ą¤•ą„ą¤Ÿą„‹ą¤¬ą¤°', 'ą¤Øą„‹ą¤­ą„‡ą¤®ą„ą¤¬ą¤°', 'ą¤”ą¤æą¤øą„‡ą¤®ą„ą¤¬ą¤°'], 'months_short' => ['जन.', 'ą¤«ą„‡ą¤¬ą„ą¤°ą„.', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą¤æ.', 'मई', 'ą¤œą„ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ.', 'अग.', 'ą¤øą„‡ą¤Ŗą„ą¤Ÿ.', 'ą¤…ą¤•ą„ą¤Ÿą„‹.', 'ą¤Øą„‹ą¤­ą„‡.', 'ą¤”ą¤æą¤øą„‡.'], 'weekdays' => ['आइतबार', 'ą¤øą„‹ą¤®ą¤¬ą¤¾ą¤°', 'ą¤®ą¤™ą„ą¤—ą¤²ą¤¬ą¤¾ą¤°', 'ą¤¬ą„ą¤§ą¤¬ą¤¾ą¤°', 'बिहिबार', 'ą¤¶ą„ą¤•ą„ą¤°ą¤¬ą¤¾ą¤°', 'शनिबार'], 'weekdays_short' => ['आइत.', 'ą¤øą„‹ą¤®.', 'ą¤®ą¤™ą„ą¤—ą¤².', 'ą¤¬ą„ą¤§.', 'बिहि.', 'ą¤¶ą„ą¤•ą„ą¤°.', 'शनि.'], 'weekdays_min' => ['आ.', 'ą¤øą„‹.', 'मं.', 'ą¤¬ą„.', 'बि.', 'ą¤¶ą„.', 'श.'], 'list' => [', ', ' र '], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]; PK!а<½carbon/src/Carbon/Lang/ln.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ubuntu RenĆ© ManassĆ© GALEKWA renemanasse@gmail.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'months' => ['sĆ”nzĆ” ya yambo', 'sĆ”nzĆ” ya mĆ­balĆ©', 'sĆ”nzĆ” ya mĆ­sĆ”to', 'sĆ”nzĆ” ya mĆ­nei', 'sĆ”nzĆ” ya mĆ­tĆ”no', 'sĆ”nzĆ” ya motóbĆ”', 'sĆ”nzĆ” ya nsambo', 'sĆ”nzĆ” ya mwambe', 'sĆ”nzĆ” ya libwa', 'sĆ”nzĆ” ya zómi', 'sĆ”nzĆ” ya zómi na mÉ”ĢŒkɔ́', 'sĆ”nzĆ” ya zómi na mĆ­balĆ©'], 'months_short' => ['yan', 'fbl', 'msi', 'apl', 'mai', 'yun', 'yul', 'agt', 'stb', 'ɔtb', 'nvb', 'dsb'], 'weekdays' => ['LomĆ­ngo', 'MosĆ”lĆ” mÉ”ĢŒkɔ́', 'MisĆ”lĆ” mĆ­balĆ©', 'MisĆ”lĆ” mĆ­sĆ”to', 'MisĆ”lĆ” mĆ­nei', 'MisĆ”lĆ” mĆ­tĆ”no', 'Mpɔ́sɔ'], 'weekdays_short' => ['m1.', 'm2.', 'm3.', 'm4.', 'm5.', 'm6.', 'm7.'], 'weekdays_min' => ['m1.', 'm2.', 'm3.', 'm4.', 'm5.', 'm6.', 'm7.'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'year' => 'mbula :count', 'y' => 'mbula :count', 'a_year' => 'mbula :count', 'month' => 'sĆ”nzĆ” :count', 'm' => 'sĆ”nzĆ” :count', 'a_month' => 'sĆ”nzĆ” :count', 'week' => 'mpɔ́sɔ :count', 'w' => 'mpɔ́sɔ :count', 'a_week' => 'mpɔ́sɔ :count', 'day' => 'mokɔlɔ :count', 'd' => 'mokɔlɔ :count', 'a_day' => 'mokɔlɔ :count', 'hour' => 'ngonga :count', 'h' => 'ngonga :count', 'a_hour' => 'ngonga :count', 'minute' => 'miniti :count', 'min' => 'miniti :count', 'a_minute' => 'miniti :count', 'second' => 'segɔnde :count', 's' => 'segɔnde :count', 'a_second' => 'segɔnde :count', ]); PK!•IĆ^~~ carbon/src/Carbon/Lang/ar_EG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/ar.php', [ 'formats' => [ 'L' => 'DD MMM, YYYY', ], 'months' => ['ŁŠŁ†Ų§ŁŠŲ±', 'فبراير', 'Ł…Ų§Ų±Ų³', 'Ų£ŲØŲ±ŁŠŁ„', 'Ł…Ų§ŁŠŁˆ', 'ŁŠŁˆŁ†ŁŠŁˆ', 'ŁŠŁˆŁ„ŁŠŁˆ', 'Ų£ŲŗŲ³Ų·Ų³', 'Ų³ŲØŲŖŁ…ŲØŲ±', 'أكتوبر', 'Ł†ŁˆŁŁ…ŲØŲ±', 'ŲÆŁŠŲ³Ł…ŲØŲ±'], 'months_short' => ['ŁŠŁ†Ų§', 'فبر', 'Ł…Ų§Ų±', 'Ų£ŲØŲ±', 'Ł…Ų§ŁŠ', 'ŁŠŁˆŁ†', 'ŁŠŁˆŁ„', 'Ų£ŲŗŲ³', 'Ų³ŲØŲŖ', 'أكت', 'Ł†ŁˆŁ', 'ديس'], 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'weekdays_min' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, ]); PK!ŠńĪ'   carbon/src/Carbon/Lang/mt_MT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/mt.php'; PK!Hv|ńŽŽ!carbon/src/Carbon/Lang/bho_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - bhashaghar@googlegroups.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą„ˆą¤²', 'मई', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'ą¤øą¤æą¤¤ą¤®ą„ą¤¬ą¤°', 'ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°', 'ą¤Øą¤µą¤®ą„ą¤¬ą¤°', 'ą¤¦ą¤æą¤øą¤®ą„ą¤¬ą¤°"'], 'months_short' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą„ˆą¤²', 'मई', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'ą¤øą¤æą¤¤ą¤®ą„ą¤¬ą¤°', 'ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°', 'ą¤Øą¤µą¤®ą„ą¤¬ą¤°', 'ą¤¦ą¤æą¤øą¤®ą„ą¤¬ą¤°"'], 'weekdays' => ['रविवार', 'ą¤øą„‹ą¤®ą¤µą¤¾ą¤°', 'मंगलवार', 'ą¤¬ą„ą¤§ą¤µą¤¾ą¤°', 'ą¤—ą„ą¤°ą„ą¤µą¤¾ą¤°', 'ą¤¶ą„ą¤•ą„ą¤°ą¤µą¤¾ą¤°', 'शनिवार'], 'weekdays_short' => ['रवि', 'ą¤øą„‹ą¤®', 'मंगल', 'ą¤¬ą„ą¤§', 'ą¤—ą„ą¤°ą„', 'ą¤¶ą„ą¤•ą„ą¤°', 'शनि'], 'weekdays_min' => ['रवि', 'ą¤øą„‹ą¤®', 'मंगल', 'ą¤¬ą„ą¤§', 'ą¤—ą„ą¤°ą„', 'ą¤¶ą„ą¤•ą„ą¤°', 'शनि'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤¹ą„ą¤Ø', 'ą¤…ą¤Ŗą¤°ą¤¾ą¤¹ą„ą¤Ø'], 'hour' => ':count ą¤®ą„Œą¤øą¤®', 'h' => ':count ą¤®ą„Œą¤øą¤®', 'a_hour' => ':count ą¤®ą„Œą¤øą¤®', 'minute' => ':count कला', 'min' => ':count कला', 'a_minute' => ':count कला', 'second' => ':count ą¤øą„‹ą¤®ą¤¾ą¤°', 's' => ':count ą¤øą„‹ą¤®ą¤¾ą¤°', 'a_second' => ':count ą¤øą„‹ą¤®ą¤¾ą¤°', 'year' => ':count साल', 'y' => ':count साल', 'a_year' => ':count साल', 'month' => ':count महिना', 'm' => ':count महिना', 'a_month' => ':count महिना', 'week' => ':count ą¤øą¤Ŗą„ą¤¤ą¤¾ą¤¹', 'w' => ':count ą¤øą¤Ŗą„ą¤¤ą¤¾ą¤¹', 'a_week' => ':count ą¤øą¤Ŗą„ą¤¤ą¤¾ą¤¹', 'day' => ':count दिन', 'd' => ':count दिन', 'a_day' => ':count दिन', ]); PK!ē߬ carbon/src/Carbon/Lang/ts_ZA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['Sunguti', 'Nyenyenyani', 'Nyenyankulu', 'Dzivamisoko', 'Mudyaxihi', 'Khotavuxika', 'Mawuwani', 'Mhawuri', 'Ndzhati', 'Nhlangula', 'Hukuri', 'N\'wendzamhala'], 'months_short' => ['Sun', 'Yan', 'Kul', 'Dzi', 'Mud', 'Kho', 'Maw', 'Mha', 'Ndz', 'Nhl', 'Huk', 'N\'w'], 'weekdays' => ['Sonto', 'Musumbhunuku', 'Ravumbirhi', 'Ravunharhu', 'Ravumune', 'Ravuntlhanu', 'Mugqivela'], 'weekdays_short' => ['Son', 'Mus', 'Bir', 'Har', 'Ne', 'Tlh', 'Mug'], 'weekdays_min' => ['Son', 'Mus', 'Bir', 'Har', 'Ne', 'Tlh', 'Mug'], 'day_of_first_week_of_year' => 1, 'year' => 'malembe ya :count', 'y' => 'malembe ya :count', 'a_year' => 'malembe ya :count', 'month' => 'tin’hweti ta :count', 'm' => 'tin’hweti ta :count', 'a_month' => 'tin’hweti ta :count', 'week' => 'mavhiki ya :count', 'w' => 'mavhiki ya :count', 'a_week' => 'mavhiki ya :count', 'day' => 'masiku :count', 'd' => 'masiku :count', 'a_day' => 'masiku :count', 'hour' => 'tiawara ta :count', 'h' => 'tiawara ta :count', 'a_hour' => 'tiawara ta :count', 'minute' => 'timinete ta :count', 'min' => 'timinete ta :count', 'a_minute' => 'timinete ta :count', 'second' => 'tisekoni ta :count', 's' => 'tisekoni ta :count', 'a_second' => 'tisekoni ta :count', ]); PK!ƒpX] carbon/src/Carbon/Lang/ln_CG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ln.php', [ 'weekdays' => ['eyenga', 'mokɔlɔ mwa yambo', 'mokɔlɔ mwa mĆ­balĆ©', 'mokɔlɔ mwa mĆ­sĆ”to', 'mokɔlɔ ya mĆ­nĆ©i', 'mokɔlɔ ya mĆ­tĆ”no', 'mpɔ́sɔ'], 'weekdays_short' => ['eye', 'ybo', 'mbl', 'mst', 'min', 'mtn', 'mps'], 'weekdays_min' => ['eye', 'ybo', 'mbl', 'mst', 'min', 'mtn', 'mps'], 'meridiem' => ['ntɔ́ngɔ́', 'mpókwa'], ]); PK!“Q_L## carbon/src/Carbon/Lang/uz_UZ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Bobir Ismailov Bobir Ismailov, Pablo Saratxaga, Mashrab Kuvatov bobir_is@yahoo.com, pablo@mandrakesoft.com, kmashrab@uni-bremen.de */ return array_replace_recursive(require __DIR__.'/uz_Latn.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['Yanvar', 'Fevral', 'Mart', 'Aprel', 'May', 'Iyun', 'Iyul', 'Avgust', 'Sentabr', 'Oktabr', 'Noyabr', 'Dekabr'], 'months_short' => ['Yan', 'Fev', 'Mar', 'Apr', 'May', 'Iyn', 'Iyl', 'Avg', 'Sen', 'Okt', 'Noy', 'Dek'], 'weekdays' => ['Yakshanba', 'Dushanba', 'Seshanba', 'Chorshanba', 'Payshanba', 'Juma', 'Shanba'], 'weekdays_short' => ['Yak', 'Du', 'Se', 'Cho', 'Pay', 'Ju', 'Sha'], 'weekdays_min' => ['Yak', 'Du', 'Se', 'Cho', 'Pay', 'Ju', 'Sha'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, ]); PK!śRkk!carbon/src/Carbon/Lang/gsw_LI.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/gsw.php', [ 'meridiem' => ['vorm.', 'nam.'], 'months' => ['Januar', 'Februar', 'MƤrz', 'April', 'Mai', 'Juni', 'Juli', 'Auguscht', 'SeptƤmber', 'Oktoober', 'NovƤmber', 'DezƤmber'], 'first_day_of_week' => 1, 'formats' => [ 'LLL' => 'Do MMMM YYYY HH:mm', 'LLLL' => 'dddd, Do MMMM YYYY HH:mm', ], ]); PK!æ±^÷OOcarbon/src/Carbon/Lang/sid.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/sid_ET.php'; PK!ābĆ(( carbon/src/Carbon/Lang/ar_EH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ar.php', [ ]); PK!KV--NNcarbon/src/Carbon/Lang/kw.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/kw_GB.php'; PK! Ä©éNNcarbon/src/Carbon/Lang/gv.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/gv_GB.php'; PK!q~mq   carbon/src/Carbon/Lang/en_MH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!ŽibµEE!carbon/src/Carbon/Lang/hne_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Red Hat, Pune bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą¤°ą„‡ą¤²', 'मई', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'सितमबर', 'ą¤…ą¤•ą¤Ÿą„‚ą¤¬ą¤°', 'नवमबर', 'दिसमबर'], 'months_short' => ['जन', 'फर', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'अप', 'मई', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą¤¾', 'अग', 'सित', 'ą¤…ą¤•ą¤Ÿą„‚', 'नव', 'दिस'], 'weekdays' => ['इतवार', 'ą¤øą„‹ą¤®ą¤µą¤¾ą¤°', 'मंगलवार', 'ą¤¬ą„ą¤§ą¤µą¤¾ą¤°', 'बिरसपत', 'ą¤øą„ą¤•ą¤°ą¤µą¤¾ą¤°', 'सनिवार'], 'weekdays_short' => ['इत', 'ą¤øą„‹ą¤®', 'मंग', 'ą¤¬ą„ą¤§', 'बिर', 'ą¤øą„ą¤•', 'सनि'], 'weekdays_min' => ['इत', 'ą¤øą„‹ą¤®', 'मंग', 'ą¤¬ą„ą¤§', 'बिर', 'ą¤øą„ą¤•', 'सनि'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['बिहिनियाँ', 'ą¤®ą¤‚ą¤ą¤Øą¤æą¤Æą¤¾ą¤'], ]); PK!h3™Õ   carbon/src/Carbon/Lang/tg_TJ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/tg.php'; PK!Ų'½%carbon/src/Carbon/Lang/zh_Hant_HK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/zh_Hant.php'; PK!(Y}¾'' carbon/src/Carbon/Lang/ms_SG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ms.php', [ 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'D/MM/yy', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY, h:mm a', 'LLLL' => 'dddd, D MMMM YYYY, h:mm a', ], 'meridiem' => ['a', 'p'], ]); PK!žˆ~˜   carbon/src/Carbon/Lang/ku_TR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ku.php'; PK!q~mq   carbon/src/Carbon/Lang/en_WS.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!± ßv¢ ¢ carbon/src/Carbon/Lang/fi.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Philippe Vaucher * - Janne WarĆ©n * - digitalfrost * - Tsutomu Kuroda * - Roope Salmi * - tjku * - Max Melentiev * - Sami Haahtinen * - Teemu Leisti * - Artem Ignatyev * - Akira Matsuda * - Christopher Dell * - Enrique Vidal * - Simone Carletti * - Robert Bjarnason * - Aaron Patterson * - NicolĆ”s Hock Isaza * - Tom Hughes * - Sven Fuchs * - Petri Kivikangas * - Nizar Jouini * - Marko Seppae * - Tomi Mynttinen (Pikseli) * - Petteri (powergrip) */ return [ 'year' => ':count vuosi|:count vuotta', 'y' => ':count v', 'month' => ':count kuukausi|:count kuukautta', 'm' => ':count kk', 'week' => ':count viikko|:count viikkoa', 'w' => ':count vk', 'day' => ':count pƤivƤ|:count pƤivƤƤ', 'd' => ':count pv', 'hour' => ':count tunti|:count tuntia', 'h' => ':count t', 'minute' => ':count minuutti|:count minuuttia', 'min' => ':count min', 'second' => ':count sekunti|:count sekuntia', 'a_second' => 'muutama sekunti|:count sekuntia', 's' => ':count s', 'ago' => ':time sitten', 'from_now' => ':time pƤƤstƤ', 'year_from_now' => ':count vuoden', 'month_from_now' => ':count kuukauden', 'week_from_now' => ':count viikon', 'day_from_now' => ':count pƤivƤn', 'hour_from_now' => ':count tunnin', 'minute_from_now' => ':count minuutin', 'second_from_now' => ':count sekunnin', 'after' => ':time sen jƤlkeen', 'before' => ':time ennen', 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' ja '], 'diff_now' => 'nyt', 'diff_yesterday' => 'eilen', 'diff_tomorrow' => 'huomenna', 'formats' => [ 'LT' => 'HH.mm', 'LTS' => 'HH.mm:ss', 'L' => 'D.M.YYYY', 'LL' => 'dddd D. MMMM[ta] YYYY', 'LLL' => 'D.MM. HH.mm', 'LLLL' => 'D. MMMM[ta] YYYY HH.mm', ], 'weekdays' => ['sunnuntai', 'maanantai', 'tiistai', 'keskiviikko', 'torstai', 'perjantai', 'lauantai'], 'weekdays_short' => ['su', 'ma', 'ti', 'ke', 'to', 'pe', 'la'], 'weekdays_min' => ['su', 'ma', 'ti', 'ke', 'to', 'pe', 'la'], 'months' => ['tammikuu', 'helmikuu', 'maaliskuu', 'huhtikuu', 'toukokuu', 'kesƤkuu', 'heinƤkuu', 'elokuu', 'syyskuu', 'lokakuu', 'marraskuu', 'joulukuu'], 'months_short' => ['tammi', 'helmi', 'maalis', 'huhti', 'touko', 'kesƤ', 'heinƤ', 'elo', 'syys', 'loka', 'marras', 'joulu'], 'meridiem' => ['aamupƤivƤ', 'iltapƤivƤ'], ]; PK!Ī’ļ×× carbon/src/Carbon/Lang/ee_TG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ee.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'LLL' => 'HH:mm MMMM D [lia] YYYY', 'LLLL' => 'HH:mm dddd, MMMM D [lia] YYYY', ], ]); PK!īB` OOcarbon/src/Carbon/Lang/hsb.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/hsb_DE.php'; PK!øä|›› › carbon/src/Carbon/Lang/mr.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Vikram-enyota */ return [ 'year' => ':count ą¤µą¤°ą„ą¤·', 'y' => ':count ą¤µą¤°ą„ą¤·', 'month' => ':count महिना|:count ą¤®ą¤¹ą¤æą¤Øą„‡', 'm' => ':count महिना|:count ą¤®ą¤¹ą¤æą¤Øą„‡', 'week' => ':count आठवऔा|:count ą¤†ą¤ ą¤µą¤”ą„‡', 'w' => ':count आठवऔा|:count ą¤†ą¤ ą¤µą¤”ą„‡', 'day' => ':count दिवस', 'd' => ':count दिवस', 'hour' => ':count तास', 'h' => ':count तास', 'minute' => ':count ą¤®ą¤æą¤Øą¤æą¤Ÿą„‡', 'min' => ':count ą¤®ą¤æą¤Øą¤æą¤Ÿą„‡', 'second' => ':count ą¤øą„‡ą¤•ą¤‚ą¤¦', 's' => ':count ą¤øą„‡ą¤•ą¤‚ą¤¦', 'ago' => ':timeą¤Ŗą„‚ą¤°ą„ą¤µą„€', 'from_now' => ':timeą¤®ą¤§ą„ą¤Æą„‡', 'before' => ':timeą¤Ŗą„‚ą¤°ą„ą¤µą„€', 'after' => ':timeनंतर', 'diff_now' => 'ą¤†ą¤¤ą„ą¤¤ą¤¾', 'diff_today' => 'ą¤†ą¤œ', 'diff_yesterday' => 'काल', 'diff_tomorrow' => 'ą¤‰ą¤¦ą„ą¤Æą¤¾', 'formats' => [ 'LT' => 'A h:mm वाजता', 'LTS' => 'A h:mm:ss वाजता', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY, A h:mm वाजता', 'LLLL' => 'dddd, D MMMM YYYY, A h:mm वाजता', ], 'calendar' => [ 'sameDay' => '[ą¤†ą¤œ] LT', 'nextDay' => '[ą¤‰ą¤¦ą„ą¤Æą¤¾] LT', 'nextWeek' => 'dddd, LT', 'lastDay' => '[काल] LT', 'lastWeek' => '[ą¤®ą¤¾ą¤—ą„€ą¤²] dddd, LT', 'sameElse' => 'L', ], 'meridiem' => function ($hour) { if ($hour < 4) { return 'ą¤°ą¤¾ą¤¤ą„ą¤°ą„€'; } if ($hour < 10) { return 'ą¤øą¤•ą¤¾ą¤³ą„€'; } if ($hour < 17) { return 'ą¤¦ą„ą¤Ŗą¤¾ą¤°ą„€'; } if ($hour < 20) { return 'ą¤øą¤¾ą¤Æą¤‚ą¤•ą¤¾ą¤³ą„€'; } return 'ą¤°ą¤¾ą¤¤ą„ą¤°ą„€'; }, 'months' => ['ą¤œą¤¾ą¤Øą„‡ą¤µą¤¾ą¤°ą„€', 'ą¤«ą„‡ą¤¬ą„ą¤°ą„ą¤µą¤¾ą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤ą¤Ŗą„ą¤°ą¤æą¤²', 'ą¤®ą„‡', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą„ˆ', 'ą¤‘ą¤—ą¤øą„ą¤Ÿ', 'ą¤øą¤Ŗą„ą¤Ÿą„‡ą¤‚ą¤¬ą¤°', 'ą¤‘ą¤•ą„ą¤Ÿą„‹ą¤¬ą¤°', 'ą¤Øą„‹ą¤µą„ą¤¹ą„‡ą¤‚ą¤¬ą¤°', 'ą¤”ą¤æą¤øą„‡ą¤‚ą¤¬ą¤°'], 'months_short' => ['ą¤œą¤¾ą¤Øą„‡.', 'ą¤«ą„‡ą¤¬ą„ą¤°ą„.', 'ą¤®ą¤¾ą¤°ą„ą¤š.', 'ą¤ą¤Ŗą„ą¤°ą¤æ.', 'ą¤®ą„‡.', 'ą¤œą„‚ą¤Ø.', 'ą¤œą„ą¤²ą„ˆ.', 'ऑग.', 'ą¤øą¤Ŗą„ą¤Ÿą„‡ą¤‚.', 'ą¤‘ą¤•ą„ą¤Ÿą„‹.', 'ą¤Øą„‹ą¤µą„ą¤¹ą„‡ą¤‚.', 'ą¤”ą¤æą¤øą„‡ą¤‚.'], 'weekdays' => ['रविवार', 'ą¤øą„‹ą¤®ą¤µą¤¾ą¤°', 'मंगळवार', 'ą¤¬ą„ą¤§ą¤µą¤¾ą¤°', 'ą¤—ą„ą¤°ą„‚ą¤µą¤¾ą¤°', 'ą¤¶ą„ą¤•ą„ą¤°ą¤µą¤¾ą¤°', 'शनिवार'], 'weekdays_short' => ['रवि', 'ą¤øą„‹ą¤®', 'मंगळ', 'ą¤¬ą„ą¤§', 'ą¤—ą„ą¤°ą„‚', 'ą¤¶ą„ą¤•ą„ą¤°', 'शनि'], 'weekdays_min' => ['र', 'ą¤øą„‹', 'मं', 'ą¤¬ą„', 'ą¤—ą„', 'ą¤¶ą„', 'श'], 'list' => [', ', ' आणि '], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, 'weekend' => [0, 0], ]; PK! ösFF carbon/src/Carbon/Lang/es_GQ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 1, ]); PK!Šfōc   carbon/src/Carbon/Lang/fr_SC.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!臬O?? carbon/src/Carbon/Lang/ht_HT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Sugar Labs // OLPC sugarlabs.org libc-alpha@sourceware.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['janvye', 'fevriye', 'mas', 'avril', 'me', 'jen', 'jiyĆØ', 'out', 'septanm', 'oktòb', 'novanm', 'desanm'], 'months_short' => ['jan', 'fev', 'mas', 'avr', 'me', 'jen', 'jiy', 'out', 'sep', 'okt', 'nov', 'des'], 'weekdays' => ['dimanch', 'lendi', 'madi', 'mĆØkredi', 'jedi', 'vandredi', 'samdi'], 'weekdays_short' => ['dim', 'len', 'mad', 'mĆØk', 'jed', 'van', 'sam'], 'weekdays_min' => ['dim', 'len', 'mad', 'mĆØk', 'jed', 'van', 'sam'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'year' => ':count lane', 'y' => ':count lane', 'a_year' => ':count lane', 'month' => 'mwa :count', 'm' => 'mwa :count', 'a_month' => 'mwa :count', 'week' => 'semĆØn :count', 'w' => 'semĆØn :count', 'a_week' => 'semĆØn :count', 'day' => ':count jou', 'd' => ':count jou', 'a_day' => ':count jou', 'hour' => ':count lĆØ', 'h' => ':count lĆØ', 'a_hour' => ':count lĆØ', 'minute' => ':count minit', 'min' => ':count minit', 'a_minute' => ':count minit', 'second' => ':count segonn', 's' => ':count segonn', 'a_second' => ':count segonn', ]); PK!“|˜   carbon/src/Carbon/Lang/ru_RU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ru.php'; PK!ųžśE!carbon/src/Carbon/Lang/mfe_MU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Samsung Electronics Co., Ltd. akhilesh.k@samsung.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['zanvie', 'fevriye', 'mars', 'avril', 'me', 'zin', 'zilye', 'out', 'septam', 'oktob', 'novam', 'desam'], 'months_short' => ['zan', 'fev', 'mar', 'avr', 'me', 'zin', 'zil', 'out', 'sep', 'okt', 'nov', 'des'], 'weekdays' => ['dimans', 'lindi', 'mardi', 'merkredi', 'zedi', 'vandredi', 'samdi'], 'weekdays_short' => ['dim', 'lin', 'mar', 'mer', 'ze', 'van', 'sam'], 'weekdays_min' => ['dim', 'lin', 'mar', 'mer', 'ze', 'van', 'sam'], 'year' => ':count bananĆ©', 'y' => ':count bananĆ©', 'a_year' => ':count bananĆ©', 'month' => ':count mwa', 'm' => ':count mwa', 'a_month' => ':count mwa', 'week' => ':count sĆ©menn', 'w' => ':count sĆ©menn', 'a_week' => ':count sĆ©menn', 'day' => ':count zour', 'd' => ':count zour', 'a_day' => ':count zour', 'hour' => ':count -er-tan', 'h' => ':count -er-tan', 'a_hour' => ':count -er-tan', 'minute' => ':count minitt', 'min' => ':count minitt', 'a_minute' => ':count minitt', 'second' => ':count dĆ©ziĆ©m', 's' => ':count dĆ©ziĆ©m', 'a_second' => ':count dĆ©ziĆ©m', ]); PK!Šfōc   carbon/src/Carbon/Lang/fr_BL.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!—żFF carbon/src/Carbon/Lang/ko_KP.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ko.php', [ 'first_day_of_week' => 1, ]); PK!.z‰/——!carbon/src/Carbon/Lang/quz_PE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Sugar Labs // OLPC sugarlabs.org libc-alpha@sourceware.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['iniru', 'phiwriru', 'marsu', 'awril', 'mayu', 'huniyu', 'huliyu', 'agustu', 'siptiyimri', 'uktuwri', 'nuwiyimri', 'tisiyimri'], 'months_short' => ['ini', 'phi', 'mar', 'awr', 'may', 'hun', 'hul', 'agu', 'sip', 'ukt', 'nuw', 'tis'], 'weekdays' => ['tuminku', 'lunis', 'martis', 'miyirkulis', 'juywis', 'wiyirnis', 'sawatu'], 'weekdays_short' => ['tum', 'lun', 'mar', 'miy', 'juy', 'wiy', 'saw'], 'weekdays_min' => ['tum', 'lun', 'mar', 'miy', 'juy', 'wiy', 'saw'], 'day_of_first_week_of_year' => 1, 'minute' => ':count uchuy', // less reliable 'min' => ':count uchuy', // less reliable 'a_minute' => ':count uchuy', // less reliable 'year' => ':count wata', 'y' => ':count wata', 'a_year' => ':count wata', 'month' => ':count killa', 'm' => ':count killa', 'a_month' => ':count killa', 'week' => ':count simana', 'w' => ':count simana', 'a_week' => ':count simana', 'day' => ':count pʼunchaw', 'd' => ':count pʼunchaw', 'a_day' => ':count pʼunchaw', 'hour' => ':count ura', 'h' => ':count ura', 'a_hour' => ':count ura', 'second' => ':count iskay Ʊiqin', 's' => ':count iskay Ʊiqin', 'a_second' => ':count iskay Ʊiqin', ]); PK!{ÉõOOcarbon/src/Carbon/Lang/miq.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/miq_NI.php'; PK!' Āį   carbon/src/Carbon/Lang/tr_TR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/tr.php'; PK!–ešNNcarbon/src/Carbon/Lang/ve.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/ve_ZA.php'; PK!*öē—––!carbon/src/Carbon/Lang/nso_ZA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['Janaware', 'Febereware', 'MatÅ”he', 'Aprele', 'Mei', 'June', 'Julae', 'Agostose', 'Setemere', 'Oktobere', 'Nofemere', 'Disemere'], 'months_short' => ['Jan', 'Feb', 'Mat', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Set', 'Okt', 'Nof', 'Dis'], 'weekdays' => ['LaMorena', 'MoÅ”upologo', 'Labobedi', 'Laboraro', 'Labone', 'Labohlano', 'Mokibelo'], 'weekdays_short' => ['Son', 'MoÅ”', 'Bed', 'Rar', 'Ne', 'Hla', 'Mok'], 'weekdays_min' => ['Son', 'MoÅ”', 'Bed', 'Rar', 'Ne', 'Hla', 'Mok'], 'day_of_first_week_of_year' => 1, 'year' => ':count ngwaga', 'y' => ':count ngwaga', 'a_year' => ':count ngwaga', 'month' => ':count Kgwedi', 'm' => ':count Kgwedi', 'a_month' => ':count Kgwedi', 'week' => ':count Beke', 'w' => ':count Beke', 'a_week' => ':count Beke', 'day' => ':count LetÅ”atÅ”i', 'd' => ':count LetÅ”atÅ”i', 'a_day' => ':count LetÅ”atÅ”i', 'hour' => ':count Iri', 'h' => ':count Iri', 'a_hour' => ':count Iri', 'minute' => ':count Motsotso', 'min' => ':count Motsotso', 'a_minute' => ':count Motsotso', 'second' => ':count motsotswana', 's' => ':count motsotswana', 'a_second' => ':count motsotswana', ]); PK!®Ä²j¬¬)carbon/src/Carbon/Lang/uz_UZ@cyrillic.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Mashrab Kuvatov Mashrab Kuvatov, Pablo Saratxaga kmashrab@uni-bremen.de, pablo@mandrakesoft.com */ return array_replace_recursive(require __DIR__.'/uz.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['Январ', 'Феврал', 'ŠœŠ°Ń€Ń‚', 'Апрел', 'Май', 'Š˜ŃŽŠ½', 'Š˜ŃŽŠ»', 'ŠŠ²Š³ŃƒŃŃ‚', 'Š”ŠµŠ½Ń‚ŃŠ±Ń€', 'ŠžŠŗŃ‚ŃŠ±Ń€', 'ŠŠ¾ŃŠ±Ń€', 'Декабр'], 'months_short' => ['Янв', 'Фев', 'ŠœŠ°Ń€', 'Апр', 'Май', 'Š˜ŃŽŠ½', 'Š˜ŃŽŠ»', 'Авг', 'Ден', 'ŠžŠŗŃ‚', 'ŠŠ¾Ń', 'Дек'], 'weekdays' => ['Якшанба', 'Š”ŃƒŃˆŠ°Š½Š±Š°', 'Дешанба', 'Š§Š¾Ń€ŃˆŠ°Š½Š±Š°', 'Пайшанба', 'Š–ŃƒŠ¼Š°', 'Шанба'], 'weekdays_short' => ['Якш', 'Š”ŃƒŃˆ', 'Деш', 'Чор', 'Пай', 'Š–ŃƒŠ¼', 'Шан'], 'weekdays_min' => ['Якш', 'Š”ŃƒŃˆ', 'Деш', 'Чор', 'Пай', 'Š–ŃƒŠ¼', 'Шан'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, ]); PK!ÉuUIcarbon/src/Carbon/Lang/sd.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ $months = [ 'Ų¬Ł†ŁˆŲ±ŁŠ', 'فيبروري', 'مارچ', 'Ų§Ł¾Ų±ŁŠŁ„', 'Ł…Ų¦ŁŠ', 'Ų¬ŁˆŁ†', 'Ų¬ŁˆŁ„Ų§Ų”Ł', 'آگسٽ', 'Ų³ŁŠŁ¾Ł½Ł…ŲØŲ±', 'آڪٽوبر', 'Ł†ŁˆŁ…ŲØŲ±', 'ŚŠŲ³Ł…ŲØŲ±', ]; $weekdays = [ 'آچر', 'Ų³ŁˆŁ…Ų±', 'اڱارو', 'Ų§Ų±ŲØŲ¹', 'Ų®Ł…ŁŠŲ³', 'جمع', 'ڇنڇر', ]; /* * Authors: * - Narain Sagar * - Sawood Alam * - Narain Sagar */ return [ 'year' => '{1}'.'هڪ Ų³Ų§Ł„'.'|:count '.'Ų³Ų§Ł„', 'month' => '{1}'.'هڪ Ł…Ł‡ŁŠŁ†Łˆ'.'|:count '.'Ł…Ł‡ŁŠŁ†Ų§', 'week' => '{1}'.'ھڪ ھفتو'.'|:count '.'هفتا', 'day' => '{1}'.'هڪ ŚŁŠŁ†Ł‡Ł†'.'|:count '.'ŚŁŠŁ†Ł‡Ł†', 'hour' => '{1}'.'هڪ ڪلاڪ'.'|:count '.'ڪلاڪ', 'minute' => '{1}'.'هڪ منٽ'.'|:count '.'منٽ', 'second' => '{1}'.'چند Ų³ŁŠŚŖŁ†ŚŠ'.'|:count '.'Ų³ŁŠŚŖŁ†ŚŠ', 'ago' => ':time اڳ', 'from_now' => ':time پوؔ', 'diff_yesterday' => 'ڪالهه', 'diff_today' => 'Ų§Ś„', 'diff_tomorrow' => 'Ų³Ś€Ų§Ś»ŁŠ', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd، D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Ų§Ś„] LT', 'nextDay' => '[Ų³Ś€Ų§Ś»ŁŠ] LT', 'nextWeek' => 'dddd [Ų§Ś³ŁŠŁ† Ł‡ŁŲŖŁŠ تي] LT', 'lastDay' => '[ڪالهه] LT', 'lastWeek' => '[ŚÆŲ²Ų±ŁŠŁ„ Ł‡ŁŲŖŁŠ] dddd [تي] LT', 'sameElse' => 'L', ], 'meridiem' => ['ŲµŲØŲ­', 'Ų“Ų§Ł…'], 'months' => $months, 'months_short' => $months, 'weekdays' => $weekdays, 'weekdays_short' => $weekdays, 'weekdays_min' => $weekdays, 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => ['، ', ' Ū½ '], ]; PK!Šfōc   carbon/src/Carbon/Lang/fr_CD.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!p…HŻ   carbon/src/Carbon/Lang/he_IL.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/he.php'; PK!§å??carbon/src/Carbon/Lang/ksb.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['makeo', 'nyiaghuo'], 'weekdays' => ['Jumaapii', 'Jumaatatu', 'Jumaane', 'Jumaatano', 'Alhamisi', 'Ijumaa', 'Jumaamosi'], 'weekdays_short' => ['Jpi', 'Jtt', 'Jmn', 'Jtn', 'Alh', 'Iju', 'Jmo'], 'weekdays_min' => ['Jpi', 'Jtt', 'Jmn', 'Jtn', 'Alh', 'Iju', 'Jmo'], 'months' => ['Januali', 'Febluali', 'Machi', 'Aplili', 'Mei', 'Juni', 'Julai', 'Agosti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'], 'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK!O·`   carbon/src/Carbon/Lang/ka_GE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ka.php'; PK!Źü¤_šš carbon/src/Carbon/Lang/en_ZM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - ANLoc Martin Benjamin locales@africanlocalization.net */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, ]); PK!’“carbon/src/Carbon/Lang/ksf.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['sĆ”rĆŗwĆ”', 'cɛɛ́nko'], 'weekdays' => ['sɔ́ndĒ', 'lĒndĆ­', 'maadĆ­', 'mɛkrɛdĆ­', 'jĒĒdĆ­', 'jĆŗmbĆ”', 'samdĆ­'], 'weekdays_short' => ['sɔ́n', 'lĒn', 'maa', 'mɛk', 'jĒĒ', 'jĆŗm', 'sam'], 'weekdays_min' => ['sɔ́n', 'lĒn', 'maa', 'mɛk', 'jĒĒ', 'jĆŗm', 'sam'], 'months' => ['ŋwĆ­Ć­ a ntɔ́ntɔ', 'ŋwĆ­Ć­ akĒ bɛ́ɛ', 'ŋwĆ­Ć­ akĒ rƔƔ', 'ŋwĆ­Ć­ akĒ nin', 'ŋwĆ­Ć­ akĒ tĆ”an', 'ŋwĆ­Ć­ akĒ tĆ”afɔk', 'ŋwĆ­Ć­ akĒ tĆ”abɛɛ', 'ŋwĆ­Ć­ akĒ tĆ”araa', 'ŋwĆ­Ć­ akĒ tĆ”anin', 'ŋwĆ­Ć­ akĒ ntɛk', 'ŋwĆ­Ć­ akĒ ntɛk di bɔ́k', 'ŋwĆ­Ć­ akĒ ntɛk di bɛ́ɛ'], 'months_short' => ['ŋ1', 'ŋ2', 'ŋ3', 'ŋ4', 'ŋ5', 'ŋ6', 'ŋ7', 'ŋ8', 'ŋ9', 'ŋ10', 'ŋ11', 'ŋ12'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], ]); PK!m'×1üü!carbon/src/Carbon/Lang/mni_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Red Hat Pune libc-alpha@sourceware.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['জানুৱারি', 'ą¦«ą§‡ą¦¬ą§ą¦°ą§ą§±ą¦¾ą¦°ą¦æ', 'ą¦®ą¦¾ą¦°ą§ą¦š', 'ą¦ą¦Ŗą§ą¦°ą¦æą¦²', 'মে', 'জুন', 'ą¦œą§ą¦²ą¦¾ą¦‡', 'ą¦†ą¦—ą¦·ą§ą¦Ÿ', 'ą¦øą§‡ą¦Ŗą§ą¦¤ą§‡ą¦®ą§ą¦¬ą¦°', 'ą¦“ą¦•ą§ą¦¤ą§‹ą¦¬ą¦°', 'ą¦Øą¦¬ą§‡ą¦®ą§ą¦¬ą¦°', 'ą¦”ą¦æą¦øą§‡ą¦®ą§ą¦¬ą¦°'], 'months_short' => ['জান', 'ফেব', 'মার', 'ą¦ą¦Ŗą§ą¦°ą¦æ', 'মে', 'জুন', 'জুল', 'আগ', 'সেপ', 'ą¦“ą¦•ą§ą¦¤', 'নবে', 'ঔিস'], 'weekdays' => ['ą¦Øą§‹ą¦‚ą¦®ą¦¾ą¦‡ą¦œą¦æą¦‚', 'ą¦Øą¦æą¦‚ą¦„ą§Œą¦•ą¦¾ą¦¬ą¦¾', 'ą¦²ą§ˆą¦¬ą¦¾ą¦•ą¦Ŗą§‹ą¦•ą¦Ŗą¦¾', 'ą§Ÿą§ą¦®ą¦¶ą¦•ą§ˆą¦¶ą¦¾', 'শগোলশেন', 'ইরাই', 'ą¦„ą¦¾ą¦‚ą¦œ'], 'weekdays_short' => ['নোং', 'নিং', 'ą¦²ą§ˆą¦¬ą¦¾ą¦•', 'য়ুম', 'শগোল', 'ইরা', '঄াং'], 'weekdays_min' => ['নোং', 'নিং', 'ą¦²ą§ˆą¦¬ą¦¾ą¦•', 'য়ুম', 'শগোল', 'ইরা', '঄াং'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['ą¦.ম.', 'প.ম.'], 'year' => ':count ইসিং', // less reliable 'y' => ':count ইসিং', // less reliable 'a_year' => ':count ইসিং', // less reliable 'second' => ':count źÆ…źÆ¤źÆ”źÆŠźÆ§źÆ€źÆ„źÆ•', // less reliable 's' => ':count źÆ…źÆ¤źÆ”źÆŠźÆ§źÆ€źÆ„źÆ•', // less reliable 'a_second' => ':count źÆ…źÆ¤źÆ”źÆŠźÆ§źÆ€źÆ„źÆ•', // less reliable ]); PK!q~mq   carbon/src/Carbon/Lang/en_VI.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!÷B’ģ   carbon/src/Carbon/Lang/sl_SI.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/sl.php'; PK!ä ķ7||!carbon/src/Carbon/Lang/mhr_RU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - PeshSajSoft Ltd. Vyacheslav Kileev slavakileev@yandex.ru */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'YYYY.MM.DD', ], 'months' => ['Шорыкйол', 'ŠŸŃƒŃ€Š³Ń‹Š¶', 'Ó°ŃŃ€Š½Ń', 'Š’Ó±Š“ŃˆŠ¾Ń€', 'Ага', 'ŠŸŠµŠ»ŠµŠ“Ń‹Ńˆ', 'Дӱрем', 'Дорла', 'Š˜Š“Ń‹Š¼', 'Шыжа', 'ŠšŃ‹Š»Š¼Šµ', 'Теле'], 'months_short' => ['Шрк', 'Пгж', 'Ӱрн', 'Š’ŃˆŃ€', 'Ага', 'ПГш', 'Дрм', 'Дрл', 'ИГм', 'Шыж', 'Клм', 'Тел'], 'weekdays' => ['Š ŃƒŃˆŠ°Ń€Š½Ń', 'Шочмо', 'ŠšŃƒŃˆŠŗŃ‹Š¶Š¼Š¾', 'Вӱргече', 'Š˜Š·Š°Ń€Š½Ń', 'ŠšŃƒŠ³Š°Ń€Š½Ń', 'ŠØŃƒŠ¼Š°Ń‚ŠŗŠµŃ‡Šµ'], 'weekdays_short' => ['Š ŃˆŃ€', 'Шчм', 'Кжм', 'Вгч', 'Š˜Š·Ń€', 'ŠšŠ³Ń€', 'Шмт'], 'weekdays_min' => ['Š ŃˆŃ€', 'Шчм', 'Кжм', 'Вгч', 'Š˜Š·Ń€', 'ŠšŠ³Ń€', 'Шмт'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'year' => ':count иГалык', 'y' => ':count иГалык', 'a_year' => ':count иГалык', 'month' => ':count Тылзе', 'm' => ':count Тылзе', 'a_month' => ':count Тылзе', 'week' => ':count Š°Ń€Š½Ń', 'w' => ':count Š°Ń€Š½Ń', 'a_week' => ':count Š°Ń€Š½Ń', 'day' => ':count кече', 'd' => ':count кече', 'a_day' => ':count кече', 'hour' => ':count час', 'h' => ':count час', 'a_hour' => ':count час', 'minute' => ':count Š¼ŠøŠ½ŃƒŃ‚', 'min' => ':count Š¼ŠøŠ½ŃƒŃ‚', 'a_minute' => ':count Š¼ŠøŠ½ŃƒŃ‚', 'second' => ':count ŠŗŠ¾ŠŗŃ‹Š¼ŃˆŠ°Š½', 's' => ':count ŠŗŠ¾ŠŗŃ‹Š¼ŃˆŠ°Š½', 'a_second' => ':count ŠŗŠ¾ŠŗŃ‹Š¼ŃˆŠ°Š½', ]); PK! óĢj   carbon/src/Carbon/Lang/om_ET.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/om.php'; PK!އ®Ź  carbon/src/Carbon/Lang/ml.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - JD Isaacks */ return [ 'year' => ':count ą“µąµ¼ą“·ą“‚', 'a_year' => 'ą“’ą“°ąµ ą“µąµ¼ą“·ą“‚|:count ą“µąµ¼ą“·ą“‚', 'month' => ':count ą“®ą“¾ą“øą“‚', 'a_month' => 'ą“’ą“°ąµ ą“®ą“¾ą“øą“‚|:count ą“®ą“¾ą“øą“‚', 'week' => ':count ą“†ą““ąµą“š', 'a_week' => 'ą“’ą“°ą“¾ą““ąµą“š|:count ą“†ą““ąµą“š', 'day' => ':count ą“¦ą“æą“µą“øą“‚', 'a_day' => 'ą“’ą“°ąµ ą“¦ą“æą“µą“øą“‚|:count ą“¦ą“æą“µą“øą“‚', 'hour' => ':count ą“®ą“£ą“æą“•ąµą“•ąµ‚ąµ¼', 'a_hour' => 'ą“’ą“°ąµ ą“®ą“£ą“æą“•ąµą“•ąµ‚ąµ¼|:count ą“®ą“£ą“æą“•ąµą“•ąµ‚ąµ¼', 'minute' => ':count ą“®ą“æą“Øą“æą“±ąµą“±ąµ', 'a_minute' => 'ą“’ą“°ąµ ą“®ą“æą“Øą“æą“±ąµą“±ąµ|:count ą“®ą“æą“Øą“æą“±ąµą“±ąµ', 'second' => ':count ą“øąµ†ą“•ąµą“•ąµ»ą“”ąµ', 'a_second' => 'ą“…ąµ½ą“Ŗ ą“Øą“æą“®ą“æą“·ą“™ąµą“™ąµ¾|:count ą“øąµ†ą“•ąµą“•ąµ»ą“”ąµ', 'ago' => ':time ą“®ąµąµ»ą“Ŗąµ', 'from_now' => ':time ą“•ą““ą“æą“žąµą“žąµ', 'diff_now' => 'ą“‡ą“Ŗąµą“Ŗąµ‹ąµ¾', 'diff_today' => 'ą“‡ą“Øąµą“Øąµ', 'diff_yesterday' => 'ą“‡ą“Øąµą“Øą“²ąµ†', 'diff_tomorrow' => 'ą“Øą“¾ą“³ąµ†', 'formats' => [ 'LT' => 'A h:mm -ą“Øąµ', 'LTS' => 'A h:mm:ss -ą“Øąµ', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY, A h:mm -ą“Øąµ', 'LLLL' => 'dddd, D MMMM YYYY, A h:mm -ą“Øąµ', ], 'calendar' => [ 'sameDay' => '[ą“‡ą“Øąµą“Øąµ] LT', 'nextDay' => '[ą“Øą“¾ą“³ąµ†] LT', 'nextWeek' => 'dddd, LT', 'lastDay' => '[ą“‡ą“Øąµą“Øą“²ąµ†] LT', 'lastWeek' => '[ą“•ą““ą“æą“žąµą“ž] dddd, LT', 'sameElse' => 'L', ], 'meridiem' => function ($hour) { if ($hour < 4) { return 'ą“°ą“¾ą“¤ąµą“°ą“æ'; } if ($hour < 12) { return 'ą“°ą“¾ą“µą“æą“²ąµ†'; } if ($hour < 17) { return 'ą“‰ą“šąµą“š ą“•ą““ą“æą“žąµą“žąµ'; } if ($hour < 20) { return 'ą“µąµˆą“•ąµą“Øąµą“Øąµ‡ą“°ą“‚'; } return 'ą“°ą“¾ą“¤ąµą“°ą“æ'; }, 'months' => ['ą“œą“Øąµą“µą“°ą“æ', 'ą“«ąµ†ą“¬ąµą“°ąµą“µą“°ą“æ', 'ą“®ą“¾ąµ¼ą“šąµą“šąµ', 'ą“ą“Ŗąµą“°ą“æąµ½', 'ą“®ąµ‡ą“Æąµ', 'ą“œąµ‚ąµŗ', 'ą“œąµ‚ą“²ąµˆ', 'ą““ą“—ą“øąµą“±ąµą“±ąµ', 'ą“øąµ†ą“Ŗąµą“±ąµą“±ą“‚ą“¬ąµ¼', 'ą“’ą“•ąµą“Ÿąµ‹ą“¬ąµ¼', 'ą“Øą“µą“‚ą“¬ąµ¼', 'ą“”ą“æą“øą“‚ą“¬ąµ¼'], 'months_short' => ['ą“œą“Øąµ.', 'ą“«ąµ†ą“¬ąµą“°ąµ.', 'ą“®ą“¾ąµ¼.', 'ą“ą“Ŗąµą“°ą“æ.', 'ą“®ąµ‡ą“Æąµ', 'ą“œąµ‚ąµŗ', 'ą“œąµ‚ą“²ąµˆ.', 'ą““ą“—.', 'ą“øąµ†ą“Ŗąµą“±ąµą“±.', 'ą“’ą“•ąµą“Ÿąµ‹.', 'ą“Øą“µą“‚.', 'ą“”ą“æą“øą“‚.'], 'weekdays' => ['ą“žą“¾ą“Æą“±ą“¾ą““ąµą“š', 'ą“¤ą“æą“™ąµą“•ą“³ą“¾ą““ąµą“š', 'ą“šąµŠą“µąµą“µą“¾ą““ąµą“š', 'ą“¬ąµą“§ą“Øą“¾ą““ąµą“š', 'ą“µąµą“Æą“¾ą““ą“¾ą““ąµą“š', 'ą“µąµ†ą“³ąµą“³ą“æą“Æą“¾ą““ąµą“š', 'ą“¶ą“Øą“æą“Æą“¾ą““ąµą“š'], 'weekdays_short' => ['ą“žą“¾ą“Æąµ¼', 'ą“¤ą“æą“™ąµą“•ąµ¾', 'ą“šąµŠą“µąµą“µ', 'ą“¬ąµą“§ąµ»', 'ą“µąµą“Æą“¾ą““ą“‚', 'ą“µąµ†ą“³ąµą“³ą“æ', 'ą“¶ą“Øą“æ'], 'weekdays_min' => ['ą“žą“¾', 'ą“¤ą“æ', 'ą“šąµŠ', 'ą“¬ąµ', 'ą“µąµą“Æą“¾', 'ą“µąµ†', 'ą“¶'], 'list' => ', ', 'weekend' => [0, 0], ]; PK!yÆV²DDcarbon/src/Carbon/Lang/de.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Michael Hohl * - sheriffmarley * - dennisoderwald * - Timo * - Karag2006 * - Pete Scopes (pdscopes) */ return [ 'year' => ':count Jahr|:count Jahre', 'a_year' => 'ein Jahr|:count Jahre', 'y' => ':count J.', 'month' => ':count Monat|:count Monate', 'a_month' => 'ein Monat|:count Monate', 'm' => ':count Mon.', 'week' => ':count Woche|:count Wochen', 'a_week' => 'eine Woche|:count Wochen', 'w' => ':count Wo.', 'day' => ':count Tag|:count Tage', 'a_day' => 'ein Tag|:count Tage', 'd' => ':count Tg.', 'hour' => ':count Stunde|:count Stunden', 'a_hour' => 'eine Stunde|:count Stunden', 'h' => ':count Std.', 'minute' => ':count Minute|:count Minuten', 'a_minute' => 'eine Minute|:count Minuten', 'min' => ':count Min.', 'second' => ':count Sekunde|:count Sekunden', 'a_second' => 'ein paar Sekunden|:count Sekunden', 's' => ':count Sek.', 'millisecond' => ':count Millisekunde|:count Millisekunden', 'a_millisecond' => 'eine Millisekunde|:count Millisekunden', 'ms' => ':countms', 'microsecond' => ':count Mikrosekunde|:count Mikrosekunden', 'a_microsecond' => 'eine Mikrosekunde|:count Mikrosekunden', 'µs' => ':countµs', 'ago' => 'vor :time', 'from_now' => 'in :time', 'after' => ':time spƤter', 'before' => ':time zuvor', 'year_from_now' => ':count Jahr|:count Jahren', 'month_from_now' => ':count Monat|:count Monaten', 'week_from_now' => ':count Woche|:count Wochen', 'day_from_now' => ':count Tag|:count Tagen', 'year_ago' => ':count Jahr|:count Jahren', 'month_ago' => ':count Monat|:count Monaten', 'week_ago' => ':count Woche|:count Wochen', 'day_ago' => ':count Tag|:count Tagen', 'a_year_from_now' => 'ein Jahr|:count Jahren', 'a_month_from_now' => 'ein Monat|:count Monaten', 'a_week_from_now' => 'eine Woche|:count Wochen', 'a_day_from_now' => 'ein Tag|:count Tagen', 'a_year_ago' => 'ein Jahr|:count Jahren', 'a_month_ago' => 'ein Monat|:count Monaten', 'a_week_ago' => 'eine Woche|:count Wochen', 'a_day_ago' => 'ein Tag|:count Tagen', 'diff_now' => 'Gerade eben', 'diff_today' => 'heute', 'diff_today_regexp' => 'heute(?:\\s+um)?', 'diff_yesterday' => 'Gestern', 'diff_yesterday_regexp' => 'gestern(?:\\s+um)?', 'diff_tomorrow' => 'Morgen', 'diff_tomorrow_regexp' => 'morgen(?:\\s+um)?', 'diff_before_yesterday' => 'Vorgestern', 'diff_after_tomorrow' => 'Übermorgen', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D. MMMM YYYY', 'LLL' => 'D. MMMM YYYY HH:mm', 'LLLL' => 'dddd, D. MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[heute um] LT [Uhr]', 'nextDay' => '[morgen um] LT [Uhr]', 'nextWeek' => 'dddd [um] LT [Uhr]', 'lastDay' => '[gestern um] LT [Uhr]', 'lastWeek' => '[letzten] dddd [um] LT [Uhr]', 'sameElse' => 'L', ], 'months' => ['Januar', 'Februar', 'MƤrz', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'], 'months_short' => ['Jan', 'Feb', 'MƤr', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'], 'weekdays' => ['Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag'], 'weekdays_short' => ['So.', 'Mo.', 'Di.', 'Mi.', 'Do.', 'Fr.', 'Sa.'], 'weekdays_min' => ['So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'], 'ordinal' => ':number.', 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' und '], ]; PK!‡ädŖ¦¦ carbon/src/Carbon/Lang/es_VE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]); PK!q~mq   carbon/src/Carbon/Lang/en_UM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!{$Ž carbon/src/Carbon/Lang/zh_TW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/zh_Hant_TW.php'; PK!Ļ}Ö4OOcarbon/src/Carbon/Lang/quz.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/quz_PE.php'; PK!“|˜   carbon/src/Carbon/Lang/ru_MD.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ru.php'; PK!Šfōc   carbon/src/Carbon/Lang/fr_MQ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!x^“FF carbon/src/Carbon/Lang/en_CX.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!” ÕFF carbon/src/Carbon/Lang/es_BZ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 0, ]); PK!%‚lżßß!carbon/src/Carbon/Lang/raj_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - meghrajsuthar03@gmail.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą„ˆą¤²', 'मई', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'सितंबर', 'ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°', 'नवंबर', 'दिसंबर'], 'months_short' => ['जन', 'फर', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą„ˆ', 'मई', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²', 'अग', 'सित', 'ą¤…ą¤•ą„ą¤Ÿą„‚', 'नव', 'दिस'], 'weekdays' => ['रविवार', 'ą¤øą„‹ą¤®ą¤µą¤¾ą¤°', 'ą¤®ą¤‚ą¤—ą¤²ą„ą¤²ą¤µą¤¾ą¤°', 'ą¤¬ą„ą¤§ą¤µą¤¾ą¤°', 'ą¤¬ą„ƒą¤¹ą¤øą„ą¤Ŗą¤¤ą¤æą¤µą¤¾ą¤°', 'ą¤¶ą„ą¤•ą„ą¤°ą¤µą¤¾ą¤°', 'शनिवार'], 'weekdays_short' => ['रवि', 'ą¤øą„‹ą¤®', 'मंगल', 'ą¤¬ą„ą¤§', 'ą¤¬ą„ƒą¤¹ą¤øą„ą¤Ŗą¤¤ą¤æ', 'ą¤¶ą„ą¤•ą„ą¤°', 'शनि'], 'weekdays_min' => ['रवि', 'ą¤øą„‹ą¤®', 'मंगल', 'ą¤¬ą„ą¤§', 'ą¤¬ą„ƒą¤¹ą¤øą„ą¤Ŗą¤¤ą¤æ', 'ą¤¶ą„ą¤•ą„ą¤°', 'शनि'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤¹ą„ą¤Ø', 'ą¤…ą¤Ŗą¤°ą¤¾ą¤¹ą„ą¤Ø'], 'year' => ':count ą¤†ą¤‚ą¤¹ą„‚', // less reliable 'y' => ':count ą¤†ą¤‚ą¤¹ą„‚', // less reliable 'a_year' => ':count ą¤†ą¤‚ą¤¹ą„‚', // less reliable 'month' => ':count ą¤øą„‚ą¤°ą¤œ', // less reliable 'm' => ':count ą¤øą„‚ą¤°ą¤œ', // less reliable 'a_month' => ':count ą¤øą„‚ą¤°ą¤œ', // less reliable 'week' => ':count निवाज', // less reliable 'w' => ':count निवाज', // less reliable 'a_week' => ':count निवाज', // less reliable 'day' => ':count ą¤…ą„‡ą¤•', // less reliable 'd' => ':count ą¤…ą„‡ą¤•', // less reliable 'a_day' => ':count ą¤…ą„‡ą¤•', // less reliable 'hour' => ':count ą¤¦ą„ą¤Øą¤æą¤Æą¤¾ą¤‚ą¤£', // less reliable 'h' => ':count ą¤¦ą„ą¤Øą¤æą¤Æą¤¾ą¤‚ą¤£', // less reliable 'a_hour' => ':count ą¤¦ą„ą¤Øą¤æą¤Æą¤¾ą¤‚ą¤£', // less reliable ]); PK!W¹nNNcarbon/src/Carbon/Lang/rw.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/rw_RW.php'; PK!ĢÉ5¶¶"carbon/src/Carbon/Lang/az_Cyrl.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/az.php', [ 'weekdays' => ['базар', 'базар ертәси', 'Ń‡Ó™Ń€ŃˆÓ™Š½Š±Ó™ Š°Ń…ŃˆŠ°Š¼Ń‹', 'Ń‡Ó™Ń€ŃˆÓ™Š½Š±Ó™', 'ҹүмә Š°Ń…ŃˆŠ°Š¼Ń‹', 'ҹүмә', 'ŃˆÓ™Š½Š±Ó™'], 'weekdays_short' => ['Š‘.', 'Š‘.Š•.', 'Ч.А.', 'Ч.', 'Ņø.А.', 'Ņø.', 'ŠØ.'], 'weekdays_min' => ['Š‘.', 'Š‘.Š•.', 'Ч.А.', 'Ч.', 'Ņø.А.', 'Ņø.', 'ŠØ.'], 'months' => ['Ń˜Š°Š½Š²Š°Ń€', 'феврал', 'март', 'апрел', 'май', 'ијун', 'ијул', 'Š°Š²Š³ŃƒŃŃ‚', 'ŃŠµŠ½Ń‚Ń˜Š°Š±Ń€', 'Š¾ŠŗŃ‚Ń˜Š°Š±Ń€', 'Š½Š¾Ń˜Š°Š±Ń€', 'Гекабр'], 'months_short' => ['јан', 'фев', 'мар', 'апр', 'май', 'ијн', 'ијл', 'авг', 'сен', 'окт', 'ној', 'Гек'], 'months_standalone' => ['ŠˆŠ°Š½Š²Š°Ń€', 'Феврал', 'ŠœŠ°Ń€Ń‚', 'Апрел', 'Май', 'Ијун', 'Ијул', 'ŠŠ²Š³ŃƒŃŃ‚', 'Š”ŠµŠ½Ń‚Ń˜Š°Š±Ń€', 'ŠžŠŗŃ‚Ń˜Š°Š±Ń€', 'ŠŠ¾Ń˜Š°Š±Ń€', 'Декабр'], 'meridiem' => ['а', 'Šæ'], ]); PK!ž˜¼čIIcarbon/src/Carbon/Lang/bo.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - JD Isaacks */ return [ 'year' => '{1}ལོ་གཅིག|]1,Inf[:count ལོ', 'month' => '{1}ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‚ą½…ą½²ą½‚|]1,Inf[:count ą½Ÿą¾³ą¼‹ą½–', 'week' => ':count བདནན་ཕྲག', 'day' => '{1}ཉིན་གཅིག|]1,Inf[:count ཉིན་', 'hour' => '{1}ą½†ą½“ą¼‹ą½šą½¼ą½‘ą¼‹ą½‚ą½…ą½²ą½‚|]1,Inf[:count ą½†ą½“ą¼‹ą½šą½¼ą½‘', 'minute' => '{1}ą½¦ą¾ą½¢ą¼‹ą½˜ą¼‹ą½‚ą½…ą½²ą½‚|]1,Inf[:count ą½¦ą¾ą½¢ą¼‹ą½˜', 'second' => '{1}ą½£ą½˜ą¼‹ą½¦ą½„|]1,Inf[:count ą½¦ą¾ą½¢ą¼‹ą½†ą¼', 'ago' => ':time སྔན་ལ', 'from_now' => ':time ལ་', 'diff_yesterday' => 'ཁ་སང', 'diff_today' => 'དི་རིང', 'diff_tomorrow' => 'སང་ཉིན', 'formats' => [ 'LT' => 'A h:mm', 'LTS' => 'A h:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY, A h:mm', 'LLLL' => 'dddd, D MMMM YYYY, A h:mm', ], 'calendar' => [ 'sameDay' => '[དི་རིང] LT', 'nextDay' => '[སང་ཉིན] LT', 'nextWeek' => '[ą½–ą½‘ą½“ą½“ą¼‹ą½•ą¾²ą½‚ą¼‹ą½¢ą¾—ą½ŗą½¦ą¼‹ą½˜], LT', 'lastDay' => '[ཁ་སང] LT', 'lastWeek' => '[ą½–ą½‘ą½“ą½“ą¼‹ą½•ą¾²ą½‚ą¼‹ą½˜ą½ą½ ą¼‹ą½˜] dddd, LT', 'sameElse' => 'L', ], 'meridiem' => function ($hour) { if ($hour < 4) { return 'ą½˜ą½šą½“ą¼‹ą½˜ą½¼'; } if ($hour < 10) { return 'ą½žą½¼ą½‚ą½¦ą¼‹ą½€ą½¦'; } if ($hour < 17) { return 'ཉིན་གནང'; } if ($hour < 20) { return 'དགོང་དག'; } return 'ą½˜ą½šą½“ą¼‹ą½˜ą½¼'; }, 'months' => ['ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą½„ą¼‹ą½”ą½¼', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‚ą½‰ą½²ą½¦ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‚ą½¦ą½“ą½˜ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½žą½²ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½£ą¾”ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą¾²ą½“ą½‚ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½‘ą½“ą½“ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½¢ą¾’ą¾±ą½‘ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą½‚ą½“ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½‚ą½…ą½²ą½‚ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½‚ą½‰ą½²ą½¦ą¼‹ą½”'], 'months_short' => ['ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą½„ą¼‹ą½”ą½¼', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‚ą½‰ą½²ą½¦ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‚ą½¦ą½“ą½˜ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½žą½²ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½£ą¾”ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą¾²ą½“ą½‚ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½‘ą½“ą½“ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½¢ą¾’ą¾±ą½‘ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą½‚ą½“ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½‚ą½…ą½²ą½‚ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½‚ą½‰ą½²ą½¦ą¼‹ą½”'], 'weekdays' => ['ą½‚ą½Ÿą½ ą¼‹ą½‰ą½²ą¼‹ą½˜ą¼‹', 'ą½‚ą½Ÿą½ ą¼‹ą½Ÿą¾³ą¼‹ą½–ą¼‹', 'ą½‚ą½Ÿą½ ą¼‹ą½˜ą½²ą½‚ą¼‹ą½‘ą½˜ą½¢ą¼‹', 'ą½‚ą½Ÿą½ ą¼‹ą½£ą¾·ą½‚ą¼‹ą½”ą¼‹', 'ą½‚ą½Ÿą½ ą¼‹ą½•ą½“ą½¢ą¼‹ą½–ą½“', 'ą½‚ą½Ÿą½ ą¼‹ą½”ą¼‹ą½¦ą½„ą½¦ą¼‹', 'ą½‚ą½Ÿą½ ą¼‹ą½¦ą¾¤ą½ŗą½“ą¼‹ą½”ą¼‹'], 'weekdays_short' => ['ą½‰ą½²ą¼‹ą½˜ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹', 'ą½˜ą½²ą½‚ą¼‹ą½‘ą½˜ą½¢ą¼‹', 'ལྷག་པ་', 'ཕནར་བན', 'པ་སངས་', 'སྤེན་པ་'], 'weekdays_min' => ['ą½‰ą½²ą¼‹ą½˜ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹', 'ą½˜ą½²ą½‚ą¼‹ą½‘ą½˜ą½¢ą¼‹', 'ལྷག་པ་', 'ཕནར་བན', 'པ་སངས་', 'སྤེན་པ་'], 'list' => [', ', ' ཨནད་ '], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, 'months_standalone' => ['ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą½„ą¼‹ą½”ą½¼ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‚ą½‰ą½²ą½¦ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‚ą½¦ą½“ą½˜ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½žą½²ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½£ą¾”ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą¾²ą½“ą½‚ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½‘ą½“ą½“ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½¢ą¾’ą¾±ą½‘ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą½‚ą½“ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½‚ą½…ą½²ą½‚ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½‚ą½‰ą½²ą½¦ą¼‹ą½”ą¼‹'], ]; PK!Ń/­­ carbon/src/Carbon/Lang/ne_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ne.php', [ 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'yy/M/d', 'LL' => 'YYYY MMM D', 'LLL' => 'YYYY MMMM D, h:mm a', 'LLLL' => 'YYYY MMMM D, dddd, h:mm a', ], 'months' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą„‡ą¤¬ą„ą¤°ą„ą¤…ą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą¤æą¤²', 'ą¤®ą„‡', 'ą¤œą„ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤Ÿ', 'ą¤øą„‡ą¤Ŗą„ą¤Ÿą„‡ą¤®ą„ą¤¬ą¤°', 'ą¤…ą¤•ą„ą¤Ÿą„‹ą¤¬ą¤°', 'ą¤Øą„‹ą¤­ą„‡ą¤®ą„ą¤¬ą¤°', 'ą¤”ą¤æą¤øą„‡ą¤®ą„ą¤¬ą¤°'], 'months_short' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą„‡ą¤¬ą„ą¤°ą„ą¤…ą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą¤æą¤²', 'ą¤®ą„‡', 'ą¤œą„ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤Ÿ', 'ą¤øą„‡ą¤Ŗą„ą¤Ÿą„‡ą¤®ą„ą¤¬ą¤°', 'ą¤…ą¤•ą„ą¤Ÿą„‹ą¤¬ą¤°', 'ą¤Øą„‹ą¤­ą„‡ą¤®ą„ą¤¬ą¤°', 'ą¤”ą¤æą¤øą„‡ą¤®ą„ą¤¬ą¤°'], 'weekend' => [0, 0], 'meridiem' => ['ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤¹ą„ą¤Ø', 'ą¤…ą¤Ŗą¤°ą¤¾ą¤¹ą„ą¤Ø'], ]); PK!U³Ó]==!carbon/src/Carbon/Lang/byn_ER.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ge'ez Frontier Foundation locales@geez.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['įˆį‹°į‰µįˆŖ', 'įŠ«į‰„įŠ½į‰„į‰²', 'įŠ­į‰„įˆ‹', 'į‹įŒ…įŠŗįˆŖ', 'įŠ­į‰¢į‰…įˆŖ', 'įˆįŠŖįŠ¤įˆ į‰µįŒ“Ģ…įŠ’įˆŖ', 'ኰርኩ', 'įˆ›įˆ­į‹«įˆ į‰µįˆŖ', 'į‹«įŠøįŠ’ įˆ˜įˆ³į‰…įˆˆįˆŖ', 'įˆ˜į‰°įˆ‰', 'įˆįŠŖįŠ¤įˆ įˆ˜įˆ½į‹ˆįˆŖ', 'į‰°įˆ•įˆ³įˆµįˆŖ'], 'months_short' => ['įˆį‹°į‰µ', 'įŠ«į‰„įŠ½', 'įŠ­į‰„įˆ‹', 'į‹įŒ…įŠŗ', 'įŠ­į‰¢į‰…', 'įˆ/ት', 'ኰር', 'įˆ›įˆ­į‹«', 'į‹«įŠøįŠ’', 'įˆ˜į‰°įˆ‰', 'įˆ/įˆ', 'į‰°įˆ•įˆ³'], 'weekdays' => ['įˆ°įŠ•į‰ įˆ­ ቅዳዅ', 'įˆ°įŠ‘', 'įˆ°įˆŠįŒ', 'įˆˆįŒ“ į‹ˆįˆŖ įˆˆį‰„į‹‹', 'įŠ£įˆį‹µ', 'įŠ£įˆ­į‰„', 'įˆ°įŠ•į‰ įˆ­ įˆ½įŒ“į‹…'], 'weekdays_short' => ['ሰ/ቅ', 'įˆ°įŠ‘', 'įˆ°įˆŠįŒ', 'įˆˆįŒ“', 'įŠ£įˆį‹µ', 'įŠ£įˆ­į‰„', 'ሰ/ሽ'], 'weekdays_min' => ['ሰ/ቅ', 'įˆ°įŠ‘', 'įˆ°įˆŠįŒ', 'įˆˆįŒ“', 'įŠ£įˆį‹µ', 'įŠ£įˆ­į‰„', 'ሰ/ሽ'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'meridiem' => ['į‹į‹±įˆµ įŒƒį‰„', 'į‹į‹±įˆµ į‹°įˆį‰¢'], ]); PK!Sŗ;uucarbon/src/Carbon/Lang/el.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Alessandro Di Felice * - FranƧois B * - Tim Fish * - Gabriel Monteagudo * - JD Isaacks * - yiannisdesp * - Ilias Kasmeridis (iliaskasm) */ return [ 'year' => ':count Ļ‡ĻĻŒĪ½ĪæĻ‚|:count Ļ‡ĻĻŒĪ½Ī¹Ī±', 'a_year' => 'ένας Ļ‡ĻĻŒĪ½ĪæĻ‚|:count Ļ‡ĻĻŒĪ½Ī¹Ī±', 'y' => ':count χρ.', 'month' => ':count μήνας|:count μήνες', 'a_month' => 'ένας μήνας|:count μήνες', 'm' => ':count μήν.', 'week' => ':count εβΓομάΓα|:count εβΓομάΓες', 'a_week' => 'μια εβΓομάΓα|:count εβΓομάΓες', 'w' => ':count εβΓ.', 'day' => ':count μέρα|:count μέρες', 'a_day' => 'μία μέρα|:count μέρες', 'd' => ':count μέρ.', 'hour' => ':count ĻŽĻĪ±|:count ĻŽĻĪµĻ‚', 'a_hour' => 'μία ĻŽĻĪ±|:count ĻŽĻĪµĻ‚', 'h' => ':count ĻŽĻĪ±|:count ĻŽĻĪµĻ‚', 'minute' => ':count Ī»ĪµĻ€Ļ„ĻŒ|:count λεπτά', 'a_minute' => 'ένα Ī»ĪµĻ€Ļ„ĻŒ|:count λεπτά', 'min' => ':count λεπ.', 'second' => ':count Ī“ĪµĻ…Ļ„ĪµĻĻŒĪ»ĪµĻ€Ļ„Īæ|:count Ī“ĪµĻ…Ļ„ĪµĻĻŒĪ»ĪµĻ€Ļ„Ī±', 'a_second' => 'λίγα Ī“ĪµĻ…Ļ„ĪµĻĻŒĪ»ĪµĻ€Ļ„Ī±|:count Ī“ĪµĻ…Ļ„ĪµĻĻŒĪ»ĪµĻ€Ļ„Ī±', 's' => ':count Γευ.', 'ago' => 'πριν :time', 'from_now' => 'σε :time', 'after' => ':time μετά', 'before' => ':time πριν', 'diff_now' => 'Ļ„ĻŽĻĪ±', 'diff_today' => 'Σήμερα', 'diff_today_regexp' => 'Σήμερα(?:\\s+{})?', 'diff_yesterday' => 'χθες', 'diff_yesterday_regexp' => 'Χθες(?:\\s+{})?', 'diff_tomorrow' => 'Ī±ĻĻĪ¹Īæ', 'diff_tomorrow_regexp' => 'Ī‘ĻĻĪ¹Īæ(?:\\s+{})?', 'formats' => [ 'LT' => 'h:mm A', 'LTS' => 'h:mm:ss A', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY h:mm A', 'LLLL' => 'dddd, D MMMM YYYY h:mm A', ], 'calendar' => [ 'sameDay' => '[Σήμερα {}] LT', 'nextDay' => '[Ī‘ĻĻĪ¹Īæ {}] LT', 'nextWeek' => 'dddd [{}] LT', 'lastDay' => '[Χθες {}] LT', 'lastWeek' => function (\Carbon\CarbonInterface $current) { switch ($current->dayOfWeek) { case 6: return '[το Ļ€ĻĪæĪ·Ī³ĪæĻĪ¼ĪµĪ½Īæ] dddd [{}] LT'; default: return '[την Ļ€ĻĪæĪ·Ī³ĪæĻĪ¼ĪµĪ½Ī·] dddd [{}] LT'; } }, 'sameElse' => 'L', ], 'ordinal' => ':numberĪ·', 'meridiem' => ['ΠΜ', 'ΜΜ', 'πμ', 'μμ'], 'months' => ['Ιανουαρίου', 'Φεβρουαρίου', 'ĪœĪ±ĻĻ„ĪÆĪæĻ…', 'Απριλίου', 'ĪœĪ±ĪĪæĻ…', 'Ιουνίου', 'Ιουλίου', 'Ī‘Ļ…Ī³ĪæĻĻƒĻ„ĪæĻ…', 'Σεπτεμβρίου', 'ĪŸĪŗĻ„Ļ‰Ī²ĻĪÆĪæĻ…', 'ĪĪæĪµĪ¼Ī²ĻĪÆĪæĻ…', 'Δεκεμβρίου'], 'months_standalone' => ['Ιανουάριος', 'Φεβρουάριος', 'ĪœĪ¬ĻĻ„Ī¹ĪæĻ‚', 'Απρίλιος', 'ĪœĪ¬Ī¹ĪæĻ‚', 'Ī™ĪæĻĪ½Ī¹ĪæĻ‚', 'Ī™ĪæĻĪ»Ī¹ĪæĻ‚', 'Ī‘ĻĪ³ĪæĻ…ĻƒĻ„ĪæĻ‚', 'Σεπτέμβριος', 'ĪŸĪŗĻ„ĻŽĪ²ĻĪ¹ĪæĻ‚', 'ĪĪæĪ­Ī¼Ī²ĻĪ¹ĪæĻ‚', 'Δεκέμβριος'], 'months_regexp' => '/(D[oD]?[\s,]+MMMM|L{2,4}|l{2,4})/', 'months_short' => ['Ιαν', 'Φεβ', 'Μαρ', 'Απρ', 'Μαϊ', 'Ιουν', 'Ιουλ', 'Αυγ', 'Σεπ', 'ĪŸĪŗĻ„', 'ĪĪæĪµ', 'Δεκ'], 'weekdays' => ['ĪšĻ…ĻĪ¹Ī±ĪŗĪ®', 'Δευτέρα', 'Τρίτη', 'Τετάρτη', 'Πέμπτη', 'Ī Ī±ĻĪ±ĻƒĪŗĪµĻ…Ī®', 'Σάββατο'], 'weekdays_short' => ['ĪšĻ…Ļ', 'Δευ', 'Τρι', 'Τετ', 'Πεμ', 'Παρ', 'Σαβ'], 'weekdays_min' => ['ĪšĻ…', 'Δε', 'Τρ', 'Τε', 'Πε', 'Πα', 'Σα'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' και '], ]; PK!Pæ­ž†† carbon/src/Carbon/Lang/pa_PK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['Ų¬Ł†ŁˆŲ±ŁŠ', 'فروري', 'مارچ', 'Ų§Ł¾Ų±ŁŠŁ„', 'Ł…Ł“ŪŒ', 'Ų¬ŁˆŁ†', 'Ų¬ŁˆŁ„Ų§ŁŠ', 'Ų§ŚÆŲ³ŲŖ', 'Ų³ŲŖŁ…ŲØŲ±', 'اكتوبر', 'Ł†ŁˆŁ…ŲØŲ±', 'دسمبر'], 'months_short' => ['Ų¬Ł†ŁˆŲ±ŁŠ', 'فروري', 'مارچ', 'Ų§Ł¾Ų±ŁŠŁ„', 'Ł…Ł“ŪŒ', 'Ų¬ŁˆŁ†', 'Ų¬ŁˆŁ„Ų§ŁŠ', 'Ų§ŚÆŲ³ŲŖ', 'Ų³ŲŖŁ…ŲØŲ±', 'اكتوبر', 'Ł†ŁˆŁ…ŲØŲ±', 'دسمبر'], 'weekdays' => ['اتوار', 'پير', 'منگل', 'بدھ', 'جمعرات', 'جمعه', 'هفته'], 'weekdays_short' => ['اتوار', 'پير', 'منگل', 'بدھ', 'جمعرات', 'جمعه', 'هفته'], 'weekdays_min' => ['اتوار', 'پير', 'منگل', 'بدھ', 'جمعرات', 'جمعه', 'هفته'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['Ųµ', 'Ų“'], ]); PK!Uæqææ"carbon/src/Carbon/Lang/pa_Arab.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ur.php', [ 'weekdays' => ['اتوار', 'پیر', 'منگل', 'ŲØŁŲÆŚ¾', 'جمعرات', 'جمعہ', 'ہفتہ'], 'weekdays_short' => ['اتوار', 'پیر', 'منگل', 'ŲØŁŲÆŚ¾', 'جمعرات', 'جمعہ', 'ہفتہ'], 'weekdays_min' => ['اتوار', 'پیر', 'منگل', 'ŲØŁŲÆŚ¾', 'جمعرات', 'جمعہ', 'ہفتہ'], 'months' => ['Ų¬Ł†ŁˆŲ±ŪŒ', 'فروری', 'مارچ', 'Ų§Ł¾Ų±ŪŒŁ„', 'Ł…Ų¦', 'Ų¬ŁˆŁ†', 'Ų¬ŁˆŁ„Ų§Ų¦ŪŒ', 'Ų§ŚÆŲ³ŲŖ', 'Ų³ŲŖŁ…ŲØŲ±', 'اکتوبر', 'Ł†ŁˆŁ…ŲØŲ±', 'دسمبر'], 'months_short' => ['Ų¬Ł†ŁˆŲ±ŪŒ', 'فروری', 'مارچ', 'Ų§Ł¾Ų±ŪŒŁ„', 'Ł…Ų¦', 'Ų¬ŁˆŁ†', 'Ų¬ŁˆŁ„Ų§Ų¦ŪŒ', 'Ų§ŚÆŲ³ŲŖ', 'Ų³ŲŖŁ…ŲØŲ±', 'اکتوبر', 'Ł†ŁˆŁ…ŲØŲ±', 'دسمبر'], 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY h:mm a', 'LLLL' => 'dddd, DD MMMM YYYY h:mm a', ], ]); PK! S¼P   carbon/src/Carbon/Lang/eu_ES.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/eu.php'; PK!q~mq   carbon/src/Carbon/Lang/en_KE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!?ēŠ   carbon/src/Carbon/Lang/hi_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/hi.php'; PK!›HĻGG!carbon/src/Carbon/Lang/teo_KE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/teo.php', [ 'first_day_of_week' => 0, ]); PK!#Éå   carbon/src/Carbon/Lang/cs_CZ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/cs.php'; PK!•IĆ^~~ carbon/src/Carbon/Lang/ar_OM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/ar.php', [ 'formats' => [ 'L' => 'DD MMM, YYYY', ], 'months' => ['ŁŠŁ†Ų§ŁŠŲ±', 'فبراير', 'Ł…Ų§Ų±Ų³', 'Ų£ŲØŲ±ŁŠŁ„', 'Ł…Ų§ŁŠŁˆ', 'ŁŠŁˆŁ†ŁŠŁˆ', 'ŁŠŁˆŁ„ŁŠŁˆ', 'Ų£ŲŗŲ³Ų·Ų³', 'Ų³ŲØŲŖŁ…ŲØŲ±', 'أكتوبر', 'Ł†ŁˆŁŁ…ŲØŲ±', 'ŲÆŁŠŲ³Ł…ŲØŲ±'], 'months_short' => ['ŁŠŁ†Ų§', 'فبر', 'Ł…Ų§Ų±', 'Ų£ŲØŲ±', 'Ł…Ų§ŁŠ', 'ŁŠŁˆŁ†', 'ŁŠŁˆŁ„', 'Ų£ŲŗŲ³', 'Ų³ŲØŲŖ', 'أكت', 'Ł†ŁˆŁ', 'ديس'], 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'weekdays_min' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, ]); PK!4čwŲ××carbon/src/Carbon/Lang/ka.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Tornike Razmadze * - FranƧois B * - Lasha Dolidze * - Tim Fish * - JD Isaacks * - Tornike Razmadze * - FranƧois B * - Lasha Dolidze * - JD Isaacks * - LONGMAN * - Avtandil Kikabidze (akalongman) * - Levan Velijanashvili (Stichoza) */ return [ 'year' => ':count įƒ¬įƒ”įƒšįƒ˜', 'y' => ':count įƒ¬įƒ”įƒšįƒ˜', 'a_year' => '{1}įƒ¬įƒ”įƒšįƒ˜|]1,Inf[:count įƒ¬įƒ”įƒšįƒ˜', 'month' => ':count įƒ—įƒ•įƒ”', 'm' => ':count įƒ—įƒ•įƒ”', 'a_month' => '{1}įƒ—įƒ•įƒ”|]1,Inf[:count įƒ—įƒ•įƒ”', 'week' => ':count įƒ™įƒ•įƒ˜įƒ įƒ', 'w' => ':count įƒ™įƒ•įƒ˜įƒ įƒ', 'a_week' => '{1}įƒ™įƒ•įƒ˜įƒ įƒ|]1,Inf[:count įƒ™įƒ•įƒ˜įƒ įƒ', 'day' => ':count įƒ“įƒ¦įƒ”', 'd' => ':count įƒ“įƒ¦įƒ”', 'a_day' => '{1}įƒ“įƒ¦įƒ”|]1,Inf[:count įƒ“įƒ¦įƒ”', 'hour' => ':count įƒ”įƒįƒįƒ—įƒ˜', 'h' => ':count įƒ”įƒįƒįƒ—įƒ˜', 'a_hour' => '{1}įƒ”įƒįƒįƒ—įƒ˜|]1,Inf[:count įƒ”įƒįƒįƒ—įƒ˜', 'minute' => ':count įƒ¬įƒ£įƒ—įƒ˜', 'min' => ':count įƒ¬įƒ£įƒ—įƒ˜', 'a_minute' => '{1}įƒ¬įƒ£įƒ—įƒ˜|]1,Inf[:count įƒ¬įƒ£įƒ—įƒ˜', 'second' => ':count įƒ¬įƒįƒ›įƒ˜', 's' => ':count įƒ¬įƒįƒ›įƒ˜', 'a_second' => '{1}įƒ įƒįƒ›įƒ“įƒ”įƒœįƒ˜įƒ›įƒ” įƒ¬įƒįƒ›įƒ˜|]1,Inf[:count įƒ¬įƒįƒ›įƒ˜', 'ago' => function ($time) { $replacements = [ // year 'įƒ¬įƒ”įƒšįƒ˜' => 'წლიე', // month 'įƒ—įƒ•įƒ”' => 'įƒ—įƒ•įƒ˜įƒ”', // week 'įƒ™įƒ•įƒ˜įƒ įƒ' => 'įƒ™įƒ•įƒ˜įƒ įƒ˜įƒ”', // day 'įƒ“įƒ¦įƒ”' => 'įƒ“įƒ¦įƒ˜įƒ”', // hour 'įƒ”įƒįƒįƒ—įƒ˜' => 'įƒ”įƒįƒįƒ—įƒ˜įƒ”', // minute 'įƒ¬įƒ£įƒ—įƒ˜' => 'įƒ¬įƒ£įƒ—įƒ˜įƒ”', // second 'įƒ¬įƒįƒ›įƒ˜' => 'įƒ¬įƒįƒ›įƒ˜įƒ”', ]; $time = strtr($time, array_flip($replacements)); $time = strtr($time, $replacements); return "$time წინ"; }, 'from_now' => function ($time) { $replacements = [ // year 'įƒ¬įƒ”įƒšįƒ˜' => 'įƒ¬įƒ”įƒšįƒ˜įƒ¬įƒįƒ“įƒØįƒ˜', // week 'įƒ™įƒ•įƒ˜įƒ įƒ' => 'įƒ™įƒ•įƒ˜įƒ įƒįƒØįƒ˜', // day 'įƒ“įƒ¦įƒ”' => 'įƒ“įƒ¦įƒ”įƒØįƒ˜', // month 'įƒ—įƒ•įƒ”' => 'įƒ—įƒ•įƒ”įƒØįƒ˜', // hour 'įƒ”įƒįƒįƒ—įƒ˜' => 'įƒ”įƒįƒįƒ—įƒØįƒ˜', // minute 'įƒ¬įƒ£įƒ—įƒ˜' => 'įƒ¬įƒ£įƒ—įƒØįƒ˜', // second 'įƒ¬įƒįƒ›įƒ˜' => 'įƒ¬įƒįƒ›įƒØįƒ˜', ]; $time = strtr($time, array_flip($replacements)); $time = strtr($time, $replacements); return $time; }, 'after' => function ($time) { $replacements = [ // year 'įƒ¬įƒ”įƒšįƒ˜' => 'წლიე', // month 'įƒ—įƒ•įƒ”' => 'įƒ—įƒ•įƒ˜įƒ”', // week 'įƒ™įƒ•įƒ˜įƒ įƒ' => 'įƒ™įƒ•įƒ˜įƒ įƒ˜įƒ”', // day 'įƒ“įƒ¦įƒ”' => 'įƒ“įƒ¦įƒ˜įƒ”', // hour 'įƒ”įƒįƒįƒ—įƒ˜' => 'įƒ”įƒįƒįƒ—įƒ˜įƒ”', // minute 'įƒ¬įƒ£įƒ—įƒ˜' => 'įƒ¬įƒ£įƒ—įƒ˜įƒ”', // second 'įƒ¬įƒįƒ›įƒ˜' => 'įƒ¬įƒįƒ›įƒ˜įƒ”', ]; $time = strtr($time, array_flip($replacements)); $time = strtr($time, $replacements); return "$time įƒØįƒ”įƒ›įƒ“įƒ”įƒ’"; }, 'before' => function ($time) { $replacements = [ // year 'įƒ¬įƒ”įƒšįƒ˜' => 'įƒ¬įƒšįƒ˜įƒ—', // month 'įƒ—įƒ•įƒ”' => 'įƒ—įƒ•įƒ˜įƒ—', // week 'įƒ™įƒ•įƒ˜įƒ įƒ' => 'įƒ™įƒ•įƒ˜įƒ įƒ˜įƒ—', // day 'įƒ“įƒ¦įƒ”' => 'įƒ“įƒ¦įƒ˜įƒ—', // hour 'įƒ”įƒįƒįƒ—įƒ˜' => 'įƒ”įƒįƒįƒ—įƒ˜įƒ—', // minute 'įƒ¬įƒ£įƒ—įƒ˜' => 'įƒ¬įƒ£įƒ—įƒ˜įƒ—', // second 'įƒ¬įƒįƒ›įƒ˜' => 'įƒ¬įƒįƒ›įƒ˜įƒ—', ]; $time = strtr($time, array_flip($replacements)); $time = strtr($time, $replacements); return "$time įƒįƒ“įƒ įƒ”"; }, 'diff_now' => 'ახლა', 'diff_today' => 'įƒ“įƒ¦įƒ”įƒ”', 'diff_yesterday' => 'įƒ’įƒ£įƒØįƒ˜įƒœ', 'diff_tomorrow' => 'įƒ®įƒ•įƒįƒš', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[įƒ“įƒ¦įƒ”įƒ”], LT[-įƒ–įƒ”]', 'nextDay' => '[įƒ®įƒ•įƒįƒš], LT[-įƒ–įƒ”]', 'nextWeek' => function (\Carbon\CarbonInterface $current, \Carbon\CarbonInterface $other) { return ($current->isSameWeek($other) ? '' : '[įƒØįƒ”įƒ›įƒ“įƒ”įƒ’] ').'dddd, LT[-įƒ–įƒ”]'; }, 'lastDay' => '[įƒ’įƒ£įƒØįƒ˜įƒœ], LT[-įƒ–įƒ”]', 'lastWeek' => '[წინა] dddd, LT-įƒ–įƒ”', 'sameElse' => 'L', ], 'ordinal' => function ($number) { if ($number === 0) { return $number; } if ($number === 1) { return $number.'-ლი'; } if (($number < 20) || ($number <= 100 && ($number % 20 === 0)) || ($number % 100 === 0)) { return 'įƒ›įƒ”-'.$number; } return $number.'-įƒ”'; }, 'months' => ['įƒ˜įƒįƒœįƒ•įƒįƒ įƒ”', 'įƒ—įƒ”įƒ‘įƒ”įƒ įƒ•įƒįƒšįƒ”', 'įƒ›įƒįƒ įƒ¢įƒ”', 'įƒįƒžįƒ įƒ˜įƒšįƒ˜įƒ”', 'įƒ›įƒįƒ˜įƒ”įƒ”', 'įƒ˜įƒ•įƒœįƒ˜įƒ”įƒ”', 'įƒ˜įƒ•įƒšįƒ˜įƒ”įƒ”', 'įƒįƒ’įƒ•įƒ˜įƒ”įƒ¢įƒ”', 'įƒ”įƒ”įƒ„įƒ¢įƒ”įƒ›įƒ‘įƒ”įƒ įƒ”', 'įƒįƒ„įƒ¢įƒįƒ›įƒ‘įƒ”įƒ įƒ”', 'įƒœįƒįƒ”įƒ›įƒ‘įƒ”įƒ įƒ”', 'įƒ“įƒ”įƒ™įƒ”įƒ›įƒ‘įƒ”įƒ įƒ”'], 'months_standalone' => ['įƒ˜įƒįƒœįƒ•įƒįƒ įƒ˜', 'įƒ—įƒ”įƒ‘įƒ”įƒ įƒ•įƒįƒšįƒ˜', 'įƒ›įƒįƒ įƒ¢įƒ˜', 'įƒįƒžįƒ įƒ˜įƒšįƒ˜', 'įƒ›įƒįƒ˜įƒ”įƒ˜', 'įƒ˜įƒ•įƒœįƒ˜įƒ”įƒ˜', 'įƒ˜įƒ•įƒšįƒ˜įƒ”įƒ˜', 'įƒįƒ’įƒ•įƒ˜įƒ”įƒ¢įƒ', 'įƒ”įƒ”įƒ„įƒ¢įƒ”įƒ›įƒ‘įƒ”įƒ įƒ˜', 'įƒįƒ„įƒ¢įƒįƒ›įƒ‘įƒ”įƒ įƒ˜', 'įƒœįƒįƒ”įƒ›įƒ‘įƒ”įƒ įƒ˜', 'įƒ“įƒ”įƒ™įƒ”įƒ›įƒ‘įƒ”įƒ įƒ˜'], 'months_short' => ['იან', 'įƒ—įƒ”įƒ‘', 'įƒ›įƒįƒ ', 'įƒįƒžįƒ ', 'įƒ›įƒįƒ˜', 'įƒ˜įƒ•įƒœ', 'įƒ˜įƒ•įƒš', 'įƒįƒ’įƒ•', 'įƒ”įƒ”įƒ„', 'įƒįƒ„įƒ¢', 'įƒœįƒįƒ”', 'įƒ“įƒ”įƒ™'], 'months_regexp' => '/(D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|L{2,4}|l{2,4})/', 'weekdays' => ['įƒ™įƒ•įƒ˜įƒ įƒįƒ”', 'įƒįƒ įƒØįƒįƒ‘įƒįƒ—įƒ”', 'įƒ”įƒįƒ›įƒØįƒįƒ‘įƒįƒ—įƒ”', 'įƒįƒ—įƒ®įƒØįƒįƒ‘įƒįƒ—įƒ”', 'įƒ®įƒ£įƒ—įƒØįƒįƒ‘įƒįƒ—įƒ”', 'įƒžįƒįƒ įƒįƒ”įƒ™įƒ”įƒ•įƒ”', 'įƒØįƒįƒ‘įƒįƒ—įƒ”'], 'weekdays_standalone' => ['įƒ™įƒ•įƒ˜įƒ įƒ', 'įƒįƒ įƒØįƒįƒ‘įƒįƒ—įƒ˜', 'įƒ”įƒįƒ›įƒØįƒįƒ‘įƒįƒ—įƒ˜', 'įƒįƒ—įƒ®įƒØįƒįƒ‘įƒįƒ—įƒ˜', 'įƒ®įƒ£įƒ—įƒØįƒįƒ‘įƒįƒ—įƒ˜', 'įƒžįƒįƒ įƒįƒ”įƒ™įƒ”įƒ•įƒ˜', 'įƒØįƒįƒ‘įƒįƒ—įƒ˜'], 'weekdays_short' => ['įƒ™įƒ•įƒ˜', 'įƒįƒ įƒØ', 'įƒ”įƒįƒ›', 'įƒįƒ—įƒ®', 'įƒ®įƒ£įƒ—', 'įƒžįƒįƒ ', 'įƒØįƒįƒ‘'], 'weekdays_min' => ['įƒ™įƒ•', 'įƒįƒ ', 'ეა', 'įƒįƒ—', 'ხუ', 'įƒžįƒ', 'შა'], 'weekdays_regexp' => '/^([^d].*|.*[^d])$/', 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' įƒ“įƒ '], 'meridiem' => function ($hour) { if ($hour >= 4) { if ($hour < 11) { return 'įƒ“įƒ˜įƒšįƒ˜įƒ”'; } if ($hour < 16) { return 'įƒØįƒ£įƒįƒ“įƒ¦įƒ˜įƒ”'; } if ($hour < 22) { return 'įƒ”įƒįƒ¦įƒįƒ›įƒįƒ”'; } } return 'įƒ¦įƒįƒ›įƒ˜įƒ”'; }, ]; PK!x^“FF carbon/src/Carbon/Lang/en_AT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK! ų”į   carbon/src/Carbon/Lang/mr_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/mr.php'; PK!Ńā·%carbon/src/Carbon/Lang/zh_Hans_HK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/zh_Hans.php'; PK!ŠĮPPcarbon/src/Carbon/Lang/it.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ash * - FranƧois B * - Marco Perrando * - Massimiliano Caniparoli * - JD Isaacks * - Andrea Martini * - Francesco Marasco * - Tizianoz93 * - Davide Casiraghi (davide-casiraghi) * - Pete Scopes (pdscopes) */ return [ 'year' => ':count anno|:count anni', 'a_year' => 'un anno|:count anni', 'y' => ':count anno|:count anni', 'month' => ':count mese|:count mesi', 'a_month' => 'un mese|:count mesi', 'm' => ':count mese|:count mesi', 'week' => ':count settimana|:count settimane', 'a_week' => 'una settimana|:count settimane', 'w' => ':count set.', 'day' => ':count giorno|:count giorni', 'a_day' => 'un giorno|:count giorni', 'd' => ':count g|:count gg', 'hour' => ':count ora|:count ore', 'a_hour' => 'un\'ora|:count ore', 'h' => ':count h', 'minute' => ':count minuto|:count minuti', 'a_minute' => 'un minuto|:count minuti', 'min' => ':count min.', 'second' => ':count secondo|:count secondi', 'a_second' => 'alcuni secondi|:count secondi', 's' => ':count sec.', 'millisecond' => ':count millisecondo|:count millisecondi', 'a_millisecond' => 'un millisecondo|:count millisecondi', 'ms' => ':countms', 'microsecond' => ':count microsecondo|:count microsecondi', 'a_microsecond' => 'un microsecondo|:count microsecondi', 'µs' => ':countµs', 'ago' => ':time fa', 'from_now' => function ($time) { return (preg_match('/^[0-9].+$/', $time) ? 'tra' : 'in')." $time"; }, 'after' => ':time dopo', 'before' => ':time prima', 'diff_now' => 'proprio ora', 'diff_today' => 'Oggi', 'diff_today_regexp' => 'Oggi(?:\\s+alle)?', 'diff_yesterday' => 'ieri', 'diff_yesterday_regexp' => 'Ieri(?:\\s+alle)?', 'diff_tomorrow' => 'domani', 'diff_tomorrow_regexp' => 'Domani(?:\\s+alle)?', 'diff_before_yesterday' => 'l\'altro ieri', 'diff_after_tomorrow' => 'dopodomani', 'period_interval' => 'ogni :interval', 'period_start_date' => 'dal :date', 'period_end_date' => 'al :date', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Oggi alle] LT', 'nextDay' => '[Domani alle] LT', 'nextWeek' => 'dddd [alle] LT', 'lastDay' => '[Ieri alle] LT', 'lastWeek' => function (\Carbon\CarbonInterface $date) { switch ($date->dayOfWeek) { case 0: return '[la scorsa] dddd [alle] LT'; default: return '[lo scorso] dddd [alle] LT'; } }, 'sameElse' => 'L', ], 'ordinal' => ':numberĀŗ', 'months' => ['gennaio', 'febbraio', 'marzo', 'aprile', 'maggio', 'giugno', 'luglio', 'agosto', 'settembre', 'ottobre', 'novembre', 'dicembre'], 'months_short' => ['gen', 'feb', 'mar', 'apr', 'mag', 'giu', 'lug', 'ago', 'set', 'ott', 'nov', 'dic'], 'weekdays' => ['domenica', 'lunedƬ', 'martedƬ', 'mercoledƬ', 'giovedƬ', 'venerdƬ', 'sabato'], 'weekdays_short' => ['dom', 'lun', 'mar', 'mer', 'gio', 'ven', 'sab'], 'weekdays_min' => ['do', 'lu', 'ma', 'me', 'gi', 've', 'sa'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' e '], ]; PK!<Ū-OOcarbon/src/Carbon/Lang/bho.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/bho_IN.php'; PK!k¶zNN carbon/src/Carbon/Lang/ms_MY.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - Azri Jamil * - JD Isaacks */ return require __DIR__.'/ms.php'; PK!x^“FF carbon/src/Carbon/Lang/en_SC.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!w°HŒ··carbon/src/Carbon/Lang/lag.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['TOO', 'MUU'], 'weekdays' => ['JumapĆ­iri', 'JumatĆ”tu', 'JumaĆ­ne', 'JumatĆ”ano', 'AlamĆ­isi', 'IjumĆ”a', 'Jumamóosi'], 'weekdays_short' => ['PĆ­ili', 'TĆ”atu', 'ƍne', 'TĆ”ano', 'Alh', 'Ijm', 'Móosi'], 'weekdays_min' => ['PĆ­ili', 'TĆ”atu', 'ƍne', 'TĆ”ano', 'Alh', 'Ijm', 'Móosi'], 'months' => ['KʉfĆŗngatÉØ', 'KʉnaanÉØ', 'Kʉkeenda', 'Kwiikumi', 'KwiinyambĆ”la', 'Kwiidwaata', 'KʉmʉʉnchÉØ', 'KʉvÉØÉØrÉØ', 'Kʉsaatʉ', 'Kwiinyi', 'Kʉsaano', 'Kʉsasatʉ'], 'months_short' => ['FĆŗngatÉØ', 'NaanÉØ', 'Keenda', 'IkĆŗmi', 'Inyambala', 'Idwaata', 'MʉʉnchÉØ', 'VÉØÉØrÉØ', 'Saatʉ', 'Inyi', 'Saano', 'Sasatʉ'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK!ĀÉ}tĢĢ#carbon/src/Carbon/Lang/ar_Shakl.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Abdellah Chadidi * - Atef Ben Ali (atefBB) * - Mohamed Sabil (mohamedsabil83) */ // Same for long and short $months = [ // @TODO add shakl to months 'ŁŠŁ†Ų§ŁŠŲ±', 'فبراير', 'Ł…Ų§Ų±Ų³', 'Ų£ŲØŲ±ŁŠŁ„', 'Ł…Ų§ŁŠŁˆ', 'ŁŠŁˆŁ†ŁŠŁˆ', 'ŁŠŁˆŁ„ŁŠŁˆ', 'Ų£ŲŗŲ³Ų·Ų³', 'Ų³ŲØŲŖŁ…ŲØŲ±', 'أكتوبر', 'Ł†ŁˆŁŁ…ŲØŲ±', 'ŲÆŁŠŲ³Ł…ŲØŲ±', ]; return [ 'year' => implode('|', ['{0}:count Ų³ŁŽŁ†ŁŽŲ©', '{1}Ų³ŁŽŁ†ŁŽŲ©', '{2}Ų³ŁŽŁ†ŁŽŲŖŁŽŁŠŁ’Ł†', ']2,11[:count Ų³ŁŽŁ†ŁŽŁˆŁŽŲ§ŲŖ', ']10,Inf[:count Ų³ŁŽŁ†ŁŽŲ©']), 'a_year' => implode('|', ['{0}:count Ų³ŁŽŁ†ŁŽŲ©', '{1}Ų³ŁŽŁ†ŁŽŲ©', '{2}Ų³ŁŽŁ†ŁŽŲŖŁŽŁŠŁ’Ł†', ']2,11[:count Ų³ŁŽŁ†ŁŽŁˆŁŽŲ§ŲŖ', ']10,Inf[:count Ų³ŁŽŁ†ŁŽŲ©']), 'month' => implode('|', ['{0}:count Ų“ŁŽŁ‡Ł’Ų±ŁŽ', '{1}Ų“ŁŽŁ‡Ł’Ų±ŁŽ', '{2}Ų“ŁŽŁ‡Ł’Ų±ŁŽŁŠŁ’Ł†', ']2,11[:count Ų£ŁŽŲ“Ł’Ł‡ŁŲ±', ']10,Inf[:count Ų“ŁŽŁ‡Ł’Ų±ŁŽ']), 'a_month' => implode('|', ['{0}:count Ų“ŁŽŁ‡Ł’Ų±ŁŽ', '{1}Ų“ŁŽŁ‡Ł’Ų±ŁŽ', '{2}Ų“ŁŽŁ‡Ł’Ų±ŁŽŁŠŁ’Ł†', ']2,11[:count Ų£ŁŽŲ“Ł’Ł‡ŁŲ±', ']10,Inf[:count Ų“ŁŽŁ‡Ł’Ų±ŁŽ']), 'week' => implode('|', ['{0}:count Ų£ŁŲ³Ł’ŲØŁŁˆŲ¹', '{1}Ų£ŁŲ³Ł’ŲØŁŁˆŲ¹', '{2}Ų£ŁŲ³Ł’ŲØŁŁˆŲ¹ŁŽŁŠŁ’Ł†', ']2,11[:count Ų£ŁŽŲ³ŁŽŲ§ŲØŁŁŠŲ¹', ']10,Inf[:count Ų£ŁŲ³Ł’ŲØŁŁˆŲ¹']), 'a_week' => implode('|', ['{0}:count Ų£ŁŲ³Ł’ŲØŁŁˆŲ¹', '{1}Ų£ŁŲ³Ł’ŲØŁŁˆŲ¹', '{2}Ų£ŁŲ³Ł’ŲØŁŁˆŲ¹ŁŽŁŠŁ’Ł†', ']2,11[:count Ų£ŁŽŲ³ŁŽŲ§ŲØŁŁŠŲ¹', ']10,Inf[:count Ų£ŁŲ³Ł’ŲØŁŁˆŲ¹']), 'day' => implode('|', ['{0}:count ŁŠŁŽŁˆŁ’Ł…', '{1}ŁŠŁŽŁˆŁ’Ł…', '{2}ŁŠŁŽŁˆŁ’Ł…ŁŽŁŠŁ’Ł†', ']2,11[:count Ų£ŁŽŁŠŁ‘ŁŽŲ§Ł…', ']10,Inf[:count ŁŠŁŽŁˆŁ’Ł…']), 'a_day' => implode('|', ['{0}:count ŁŠŁŽŁˆŁ’Ł…', '{1}ŁŠŁŽŁˆŁ’Ł…', '{2}ŁŠŁŽŁˆŁ’Ł…ŁŽŁŠŁ’Ł†', ']2,11[:count Ų£ŁŽŁŠŁ‘ŁŽŲ§Ł…', ']10,Inf[:count ŁŠŁŽŁˆŁ’Ł…']), 'hour' => implode('|', ['{0}:count Ų³ŁŽŲ§Ų¹ŁŽŲ©', '{1}Ų³ŁŽŲ§Ų¹ŁŽŲ©', '{2}Ų³ŁŽŲ§Ų¹ŁŽŲŖŁŽŁŠŁ’Ł†', ']2,11[:count Ų³ŁŽŲ§Ų¹ŁŽŲ§ŲŖ', ']10,Inf[:count Ų³ŁŽŲ§Ų¹ŁŽŲ©']), 'a_hour' => implode('|', ['{0}:count Ų³ŁŽŲ§Ų¹ŁŽŲ©', '{1}Ų³ŁŽŲ§Ų¹ŁŽŲ©', '{2}Ų³ŁŽŲ§Ų¹ŁŽŲŖŁŽŁŠŁ’Ł†', ']2,11[:count Ų³ŁŽŲ§Ų¹ŁŽŲ§ŲŖ', ']10,Inf[:count Ų³ŁŽŲ§Ų¹ŁŽŲ©']), 'minute' => implode('|', ['{0}:count ŲÆŁŽŁ‚ŁŁŠŁ‚ŁŽŲ©', '{1}ŲÆŁŽŁ‚ŁŁŠŁ‚ŁŽŲ©', '{2}ŲÆŁŽŁ‚ŁŁŠŁ‚ŁŽŲŖŁŽŁŠŁ’Ł†', ']2,11[:count ŲÆŁŽŁ‚ŁŽŲ§Ų¦ŁŁ‚', ']10,Inf[:count ŲÆŁŽŁ‚ŁŁŠŁ‚ŁŽŲ©']), 'a_minute' => implode('|', ['{0}:count ŲÆŁŽŁ‚ŁŁŠŁ‚ŁŽŲ©', '{1}ŲÆŁŽŁ‚ŁŁŠŁ‚ŁŽŲ©', '{2}ŲÆŁŽŁ‚ŁŁŠŁ‚ŁŽŲŖŁŽŁŠŁ’Ł†', ']2,11[:count ŲÆŁŽŁ‚ŁŽŲ§Ų¦ŁŁ‚', ']10,Inf[:count ŲÆŁŽŁ‚ŁŁŠŁ‚ŁŽŲ©']), 'second' => implode('|', ['{0}:count Ų«ŁŽŲ§Ł†ŁŁŠŁŽŲ©', '{1}Ų«ŁŽŲ§Ł†ŁŁŠŁŽŲ©', '{2}Ų«ŁŽŲ§Ł†ŁŁŠŁŽŲŖŁŽŁŠŁ’Ł†', ']2,11[:count Ų«ŁŽŁˆŁŽŲ§Ł†', ']10,Inf[:count Ų«ŁŽŲ§Ł†ŁŁŠŁŽŲ©']), 'a_second' => implode('|', ['{0}:count Ų«ŁŽŲ§Ł†ŁŁŠŁŽŲ©', '{1}Ų«ŁŽŲ§Ł†ŁŁŠŁŽŲ©', '{2}Ų«ŁŽŲ§Ł†ŁŁŠŁŽŲŖŁŽŁŠŁ’Ł†', ']2,11[:count Ų«ŁŽŁˆŁŽŲ§Ł†', ']10,Inf[:count Ų«ŁŽŲ§Ł†ŁŁŠŁŽŲ©']), 'ago' => 'Ł…ŁŁ†Ł’Ų°Ł :time', 'from_now' => 'Ł…ŁŁ†ŁŽ الْآن :time', 'after' => 'ŲØŁŽŲ¹Ł’ŲÆŁŽ :time', 'before' => 'Ł‚ŁŽŲØŁ’Ł„ŁŽ :time', // @TODO add shakl to translations below 'diff_now' => 'الآن', 'diff_today' => 'Ų§Ł„ŁŠŁˆŁ…', 'diff_today_regexp' => 'Ų§Ł„ŁŠŁˆŁ…(?:\\s+عند)?(?:\\s+الساعة)?', 'diff_yesterday' => 'أمس', 'diff_yesterday_regexp' => 'أمس(?:\\s+عند)?(?:\\s+الساعة)?', 'diff_tomorrow' => 'ŲŗŲÆŲ§Ł‹', 'diff_tomorrow_regexp' => 'غدًا(?:\\s+عند)?(?:\\s+الساعة)?', 'diff_before_yesterday' => 'قبل الأمس', 'diff_after_tomorrow' => 'ŲØŲ¹ŲÆ ŲŗŲÆ', 'period_recurrences' => implode('|', ['{0}Ł…Ų±Ų©', '{1}Ł…Ų±Ų©', '{2}:count Ł…Ų±ŲŖŁŠŁ†', ']2,11[:count Ł…Ų±Ų§ŲŖ', ']10,Inf[:count Ł…Ų±Ų©']), 'period_interval' => 'ŁƒŁ„ :interval', 'period_start_date' => 'من :date', 'period_end_date' => '؄لى :date', 'months' => $months, 'months_short' => $months, 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų£Ų­ŲÆ', 'Ų§Ų«Ł†ŁŠŁ†', 'ثلاثاؔ', 'Ų£Ų±ŲØŲ¹Ų§Ų”', 'Ų®Ł…ŁŠŲ³', 'جمعة', 'Ų³ŲØŲŖ'], 'weekdays_min' => ['Ų­', 'Ų§Ų«', 'Ų«Ł„', 'Ų£Ų±', 'خم', 'Ų¬', 'Ų³'], 'list' => ['، ', ' و '], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Ų§Ł„ŁŠŁˆŁ… عند الساعة] LT', 'nextDay' => '[غدًا عند الساعة] LT', 'nextWeek' => 'dddd [عند الساعة] LT', 'lastDay' => '[أمس عند الساعة] LT', 'lastWeek' => 'dddd [عند الساعة] LT', 'sameElse' => 'L', ], 'meridiem' => ['Ųµ', 'Ł…'], 'weekend' => [5, 6], ]; PK!p‹R„„carbon/src/Carbon/Lang/zh.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - xuri * - sycuato * - bokideckonja * - Luo Ning * - William Yang (williamyang233) */ return array_merge(require __DIR__.'/zh_Hans.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY/MM/DD', 'LL' => 'YYYY幓M月Dę—„', 'LLL' => 'YYYY幓M月Dę—„ A h点mm分', 'LLLL' => 'YYYY幓M月Dę—„dddd A h点mm分', ], ]); PK!ߟW carbon/src/Carbon/Lang/pa.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Philippe Vaucher * - Tsutomu Kuroda * - Punjab */ return [ 'year' => 'ਇੱਕ ਸਾਲ|:count ਸਾਲ', 'month' => 'ਇੱਕ ਮਹੀਨਾ|:count ਮਹੀਨੇ', 'week' => 'ਹਫਤਾ|:count ਹਫ਼ਤੇ', 'day' => 'ਇੱਕ ਦਿਨ|:count ਦਿਨ', 'hour' => 'ਇੱਕ ਘੰਟਾ|:count ąØ˜ą©°ąØŸą©‡', 'minute' => 'ਇਕ ਮਿੰਟ|:count ਮਿੰਟ', 'second' => 'ąØ•ą©ąØ ąØøąØ•ąØæą©°ąØŸ|:count ąØøąØ•ąØæą©°ąØŸ', 'ago' => ':time ਪਹਿਲਾਂ', 'from_now' => ':time ਵਿੱਚ', 'before' => ':time ਤੋਂ ਪਹਿਲਾਂ', 'after' => ':time ਤੋਂ ਬਾਅਦ', 'diff_now' => 'ਹੁਣ', 'diff_today' => 'ąØ…ąØœ', 'diff_yesterday' => 'ਕਲ', 'diff_tomorrow' => 'ਕਲ', 'formats' => [ 'LT' => 'A h:mm ąØµąØœą©‡', 'LTS' => 'A h:mm:ss ąØµąØœą©‡', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY, A h:mm ąØµąØœą©‡', 'LLLL' => 'dddd, D MMMM YYYY, A h:mm ąØµąØœą©‡', ], 'calendar' => [ 'sameDay' => '[ąØ…ąØœ] LT', 'nextDay' => '[ਕਲ] LT', 'nextWeek' => '[ਅਗਲਾ] dddd, LT', 'lastDay' => '[ਕਲ] LT', 'lastWeek' => '[ਪਿਛਲੇ] dddd, LT', 'sameElse' => 'L', ], 'meridiem' => function ($hour) { if ($hour < 4) { return 'ਰਾਤ'; } if ($hour < 10) { return 'ਸਵੇਰ'; } if ($hour < 17) { return 'ਦੁਪਹਿਰ'; } if ($hour < 20) { return 'ਸ਼ਾਮ'; } return 'ਰਾਤ'; }, 'months' => ['ąØœąØØąØµąØ°ą©€', 'ਫ਼ਰਵਰੀ', 'ਮਾਰਚ', 'ąØ…ąØŖą©ąØ°ą©ˆąØ²', 'ਮਈ', 'ąØœą©‚ąØØ', 'ਜੁਲਾਈ', 'ਅਗਸਤ', 'ਸਤੰਬਰ', 'ਅਕਤੂਬਰ', 'ਨਵੰਬਰ', 'ਦਸੰਬਰ'], 'months_short' => ['ąØœąØØąØµąØ°ą©€', 'ਫ਼ਰਵਰੀ', 'ਮਾਰਚ', 'ąØ…ąØŖą©ąØ°ą©ˆąØ²', 'ਮਈ', 'ąØœą©‚ąØØ', 'ਜੁਲਾਈ', 'ਅਗਸਤ', 'ਸਤੰਬਰ', 'ਅਕਤੂਬਰ', 'ਨਵੰਬਰ', 'ਦਸੰਬਰ'], 'weekdays' => ['ਐਤਵਾਰ', 'ਸੋਮਵਾਰ', 'ਮੰਗਲਵਾਰ', 'ਬੁਧਵਾਰ', 'ਵੀਰਵਾਰ', 'ਸ਼ੁੱਕਰਵਾਰ', 'ąØøąØ¼ąØØą©€ąØšąØ°ąØµąØ¾ąØ°'], 'weekdays_short' => ['ਐਤ', 'ਸੋਮ', 'ਮੰਗਲ', 'ਬੁਧ', 'ਵੀਰ', 'ਸ਼ੁਕਰ', 'ਸ਼ਨੀ'], 'weekdays_min' => ['ਐਤ', 'ਸੋਮ', 'ਮੰਗਲ', 'ਬੁਧ', 'ਵੀਰ', 'ਸ਼ੁਕਰ', 'ਸ਼ਨੀ'], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' ਅਤੇ '], 'weekend' => [0, 0], 'alt_numbers' => ['੦', 'ą©§', '੨', 'ą©©', '੪', 'ą©«', '੬', 'ą©­', 'ą©®', '੯'], ]; PK!Ū@¬OOcarbon/src/Carbon/Lang/hif.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/hif_FJ.php'; PK!Š{J~   carbon/src/Carbon/Lang/gu_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/gu.php'; PK!Ńē±   carbon/src/Carbon/Lang/nl_SX.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/nl.php'; PK!Ä~õOOcarbon/src/Carbon/Lang/kab.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/kab_DZ.php'; PK!Ńā·#carbon/src/Carbon/Lang/yue_Hans.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/zh_Hans.php'; PK!,}ės` ` carbon/src/Carbon/Lang/he.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Daniel Cohen Gindi * - JD Isaacks * - Itai Nathaniel * - GabMic * - Yaakov Dahan (yakidahan) */ return [ 'year' => 'שנה|{2}×©× ×Ŗ×™×™×|:count שנים', 'y' => 'שנה|:count שנ׳', 'month' => 'חודש|{2}חודשיים|:count חודשים', 'm' => 'חודש|:count חו׳', 'week' => 'שבוע|{2}שבועיים|:count שבועות', 'w' => 'שבוע|:count שב׳', 'day' => 'יום|{2}יומיים|:count ימים', 'd' => 'יום|:count ימ׳', 'hour' => 'שעה|{2}×©×¢×Ŗ×™×™×|:count שעות', 'h' => 'שעה|:count שע׳', 'minute' => 'דקה|{2}שתי דקות|:count דקות', 'min' => 'דקה|:count דק׳', 'second' => 'שנייה|:count שניות', 'a_second' => 'כמה שניות|:count שניות', 's' => 'שניה|:count שנ׳', 'ago' => 'לפני :time', 'from_now' => 'בעוד :time מעכשיו', 'after' => 'אחרי :time', 'before' => 'לפני :time', 'diff_now' => 'עכשיו', 'diff_today' => 'היום', 'diff_today_regexp' => 'היום(?:\\s+ב־)?', 'diff_yesterday' => '××Ŗ×ž×•×œ', 'diff_yesterday_regexp' => '××Ŗ×ž×•×œ(?:\\s+ב־)?', 'diff_tomorrow' => '×ž×—×Ø', 'diff_tomorrow_regexp' => '×ž×—×Ø(?:\\s+ב־)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D [ב]MMMM YYYY', 'LLL' => 'D [ב]MMMM YYYY HH:mm', 'LLLL' => 'dddd, D [ב]MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[היום ב־]LT', 'nextDay' => '[×ž×—×Ø ב־]LT', 'nextWeek' => 'dddd [בשעה] LT', 'lastDay' => '[××Ŗ×ž×•×œ ב־]LT', 'lastWeek' => '[ביום] dddd [×”××—×Ø×•×Ÿ בשעה] LT', 'sameElse' => 'L', ], 'meridiem' => function ($hour, $minute, $isLower) { if ($hour < 5) { return '×œ×¤× ×•×Ŗ בוקר'; } if ($hour < 10) { return 'בבוקר'; } if ($hour < 12) { return $isLower ? 'לפנה"צ' : 'לפני ×”×¦×”×Ø×™×™×'; } if ($hour < 18) { return $isLower ? 'אחה"צ' : 'אחרי ×”×¦×”×Ø×™×™×'; } return 'בערב'; }, 'months' => ['ינואר', 'פברואר', '×ž×Ø×„', '××¤×Ø×™×œ', 'מאי', 'יוני', 'יולי', 'אוגוהט', '×”×¤×˜×ž×‘×Ø', '××•×§×˜×•×‘×Ø', '× ×•×‘×ž×‘×Ø', '×“×¦×ž×‘×Ø'], 'months_short' => ['ינו׳', 'פבר׳', '×ž×Ø×„', 'אפר׳', 'מאי', 'יוני', 'יולי', 'אוג׳', 'הפט׳', 'אוק׳', 'נוב׳', 'דצמ׳'], 'weekdays' => ['×Ø××©×•×Ÿ', 'שני', 'שלישי', 'רביעי', 'חמישי', 'שישי', 'שבת'], 'weekdays_short' => ['א׳', 'ב׳', 'ג׳', 'ד׳', 'ה׳', 'ו׳', 'ש׳'], 'weekdays_min' => ['א', 'ב', 'ג', 'ד', 'ה', 'ו', 'ש'], 'list' => [', ', ' ו -'], 'weekend' => [5, 6], ]; PK!’˜[ÕZZ carbon/src/Carbon/Lang/ta_LK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - J.Yogaraj 94-777-315206 yogaraj.ubuntu@gmail.com */ return array_replace_recursive(require __DIR__.'/ta.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['ஜனவரி', 'ą®Ŗą®æą®ŖąÆą®°ą®µą®°ą®æ', 'ą®®ą®¾ą®°ąÆą®šąÆ', 'ą®ą®ŖąÆą®°ą®²ąÆ', 'மே', 'ą®œąÆ‚ą®©ąÆ', 'ą®œąÆ‚ą®²ąÆˆ', 'ą®†ą®•ą®øąÆą®ŸąÆ', 'ą®šąÆ†ą®ŖąÆą®Ÿą®®ąÆą®Ŗą®°ąÆ', 'ą®…ą®•ąÆą®ŸąÆ‹ą®Ŗą®°ąÆ', 'ą®Øą®µą®®ąÆą®Ŗą®°ąÆ', 'ą®Ÿą®æą®šą®®ąÆą®Ŗą®°ąÆ'], 'months_short' => ['ஜன', 'ą®Ŗą®æą®ŖąÆ', 'ą®®ą®¾ą®°ąÆ', 'ą®ą®ŖąÆ', 'மே', 'ą®œąÆ‚ą®©ąÆ', 'ą®œąÆ‚ą®²ąÆˆ', 'ஆக', 'ą®šąÆ†ą®ŖąÆ', 'ą®…ą®•ąÆ', 'நவ', 'டிச'], 'weekdays' => ['ą®žą®¾ą®Æą®æą®±ąÆ', 'ą®¤ą®æą®™ąÆą®•ą®³ąÆ', 'ą®šąÆ†ą®µąÆą®µą®¾ą®ÆąÆ', 'ą®ŖąÆą®¤ą®©ąÆ', 'ą®µą®æą®Æą®¾ą®“ą®©ąÆ', 'ą®µąÆ†ą®³ąÆą®³ą®æ', 'சனி'], 'weekdays_short' => ['ą®žą®¾', 'தி', 'ą®šąÆ†', 'பு', 'வி', 'வெ', 'ச'], 'weekdays_min' => ['ą®žą®¾', 'தி', 'ą®šąÆ†', 'பு', 'வி', 'வெ', 'ச'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'meridiem' => ['ą®•ą®¾ą®²ąÆˆ', 'மாலை'], ]); PK!x^“FF carbon/src/Carbon/Lang/en_GY.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!q~mq   carbon/src/Carbon/Lang/en_US.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!ė©·ą%carbon/src/Carbon/Lang/sr_Cyrl_BA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/sr_Cyrl.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D.M.yy.', 'LL' => 'DD.MM.YYYY.', 'LLL' => 'DD. MMMM YYYY. HH:mm', 'LLLL' => 'dddd, DD. MMMM YYYY. HH:mm', ], 'weekdays' => ['Š½ŠµŠ“Ń˜ŠµŃ™Š°', 'понеГељак', 'ŃƒŃ‚Š¾Ń€Š°Šŗ', 'ŃŃ€ŠøŃ˜ŠµŠ“Š°', 'четвртак', 'петак', 'ŃŃƒŠ±Š¾Ń‚Š°'], 'weekdays_short' => ['неГ.', 'пон.', 'ут.', 'ср.', 'чет.', 'пет.', 'суб.'], ]); PK!±L¤–%carbon/src/Carbon/Lang/sr_Latn_XK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/sr_Latn_BA.php', [ 'weekdays' => ['nedelja', 'ponedeljak', 'utorak', 'sreda', 'četvrtak', 'petak', 'subota'], ]); PK!ū„øNNcarbon/src/Carbon/Lang/xh.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/xh_ZA.php'; PK!q~mq   carbon/src/Carbon/Lang/en_BS.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!¬ą8ó   carbon/src/Carbon/Lang/nn_NO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/nn.php'; PK!L-xVOOcarbon/src/Carbon/Lang/shn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/shn_MM.php'; PK!x^“FF carbon/src/Carbon/Lang/en_TC.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!Ś‘“QQ carbon/src/Carbon/Lang/so_SO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ge'ez Frontier Foundation locales@geez.org */ return require __DIR__.'/so.php'; PK!x^“FF carbon/src/Carbon/Lang/en_PW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!':ž ž carbon/src/Carbon/Lang/uz.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Dmitriy Shabanov * - JD Isaacks * - Inoyatulloh * - Jamshid * - aarkhipov * - Philippe Vaucher * - felixthemagnificent * - Tsutomu Kuroda * - tjku * - Max Melentiev * - Juanito Fatas * - Alisher Ulugbekov * - Ergashev Adizbek */ return [ 'year' => ':count йил', 'a_year' => '{1}бир йил|:count йил', 'y' => ':count й', 'month' => ':count ой', 'a_month' => '{1}бир ой|:count ой', 'm' => ':count о', 'week' => ':count ҳафта', 'a_week' => '{1}бир ҳафта|:count ҳафта', 'w' => ':count ҳ', 'day' => ':count кун', 'a_day' => '{1}бир кун|:count кун', 'd' => ':count Šŗ', 'hour' => ':count соат', 'a_hour' => '{1}бир соат|:count соат', 'h' => ':count с', 'minute' => ':count Гақиқа', 'a_minute' => '{1}бир Гақиқа|:count Гақиқа', 'min' => ':count Š“', 'second' => ':count ŃŠ¾Š½ŠøŃ', 'a_second' => '{1}ŃŠ¾Š½ŠøŃ|:count ŃŠ¾Š½ŠøŃ', 's' => ':count с', 'ago' => ':time аввал', 'from_now' => 'Якин :time ичиГа', 'after' => ':timeГан кейин', 'before' => ':time олГин', 'diff_now' => 'ҳозир', 'diff_today' => 'Š‘ŃƒŠ³ŃƒŠ½', 'diff_today_regexp' => 'Š‘ŃƒŠ³ŃƒŠ½(?:\\s+соат)?', 'diff_yesterday' => 'ŠšŠµŃ‡Š°', 'diff_yesterday_regexp' => 'ŠšŠµŃ‡Š°(?:\\s+соат)?', 'diff_tomorrow' => 'Эртага', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'D MMMM YYYY, dddd HH:mm', ], 'calendar' => [ 'sameDay' => '[Š‘ŃƒŠ³ŃƒŠ½ соат] LT [Га]', 'nextDay' => '[Эртага] LT [Га]', 'nextWeek' => 'dddd [куни соат] LT [Га]', 'lastDay' => '[ŠšŠµŃ‡Š° соат] LT [Га]', 'lastWeek' => '[Утган] dddd [куни соат] LT [Га]', 'sameElse' => 'L', ], 'months' => ['ŃŠ½Š²Š°Ń€', 'феврал', 'март', 'апрел', 'май', 'ŠøŃŽŠ½', 'ŠøŃŽŠ»', 'Š°Š²Š³ŃƒŃŃ‚', 'ŃŠµŠ½Ń‚ŃŠ±Ń€', 'Š¾ŠŗŃ‚ŃŠ±Ń€', 'Š½Š¾ŃŠ±Ń€', 'Гекабр'], 'months_short' => ['ŃŠ½Š²', 'фев', 'мар', 'апр', 'май', 'ŠøŃŽŠ½', 'ŠøŃŽŠ»', 'авг', 'сен', 'окт', 'Š½Š¾Ń', 'Гек'], 'weekdays' => ['ŃŠŗŃˆŠ°Š½Š±Š°', 'Гушанба', 'сешанба', 'Ń‡Š¾Ń€ŃˆŠ°Š½Š±Š°', 'пайшанба', 'жума', 'шанба'], 'weekdays_short' => ['ŃŠŗŃˆ', 'Гуш', 'сеш', 'чор', 'пай', 'жум', 'шан'], 'weekdays_min' => ['ŃŠŗ', 'Гу', 'се', 'чо', 'па', 'жу', 'ша'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'meridiem' => ['ŃŃ€Ń‚Š°Š»Š°Š±', 'кечаси'], 'list' => [', ', ' ва '], ]; PK!.•ŹĪĪ carbon/src/Carbon/Lang/gv_GB.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Alastair McKinstry bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['Jerrey-geuree', 'Toshiaght-arree', 'Mayrnt', 'Averil', 'Boaldyn', 'Mean-souree', 'Jerrey-souree', 'Luanistyn', 'Mean-fouyir', 'Jerrey-fouyir', 'Mee Houney', 'Mee ny Nollick'], 'months_short' => ['J-guer', 'T-arree', 'Mayrnt', 'Avrril', 'Boaldyn', 'M-souree', 'J-souree', 'Luanistyn', 'M-fouyir', 'J-fouyir', 'M.Houney', 'M.Nollick'], 'weekdays' => ['Jedoonee', 'Jelhein', 'Jemayrt', 'Jercean', 'Jerdein', 'Jeheiney', 'Jesarn'], 'weekdays_short' => ['Jed', 'Jel', 'Jem', 'Jerc', 'Jerd', 'Jeh', 'Jes'], 'weekdays_min' => ['Jed', 'Jel', 'Jem', 'Jerc', 'Jerd', 'Jeh', 'Jes'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'year' => ':count blein', 'y' => ':count blein', 'a_year' => ':count blein', 'month' => ':count mee', 'm' => ':count mee', 'a_month' => ':count mee', 'week' => ':count shiaghtin', 'w' => ':count shiaghtin', 'a_week' => ':count shiaghtin', 'day' => ':count laa', 'd' => ':count laa', 'a_day' => ':count laa', 'hour' => ':count oor', 'h' => ':count oor', 'a_hour' => ':count oor', 'minute' => ':count feer veg', 'min' => ':count feer veg', 'a_minute' => ':count feer veg', 'second' => ':count derrey', 's' => ':count derrey', 'a_second' => ':count derrey', ]); PK!‡ädŖ¦¦ carbon/src/Carbon/Lang/es_PE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]); PK!ŅŃ`Ŗ[[carbon/src/Carbon/Lang/xog.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['Munkyo', 'Eigulo'], 'weekdays' => ['Sabiiti', 'Balaza', 'Owokubili', 'Owokusatu', 'Olokuna', 'Olokutaanu', 'Olomukaaga'], 'weekdays_short' => ['Sabi', 'Bala', 'Kubi', 'Kusa', 'Kuna', 'Kuta', 'Muka'], 'weekdays_min' => ['Sabi', 'Bala', 'Kubi', 'Kusa', 'Kuna', 'Kuta', 'Muka'], 'months' => ['Janwaliyo', 'Febwaliyo', 'Marisi', 'Apuli', 'Maayi', 'Juuni', 'Julaayi', 'Agusito', 'Sebuttemba', 'Okitobba', 'Novemba', 'Desemba'], 'months_short' => ['Jan', 'Feb', 'Mar', 'Apu', 'Maa', 'Juu', 'Jul', 'Agu', 'Seb', 'Oki', 'Nov', 'Des'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK!ź!~P… … carbon/src/Carbon/Lang/nb.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - Alexander TĆømmerĆ„s * - Sigurd Gartmann * - JD Isaacks */ return [ 'year' => ':count Ć„r|:count Ć„r', 'a_year' => 'ett Ć„r|:count Ć„r', 'y' => ':count Ć„r|:count Ć„r', 'month' => ':count mĆ„ned|:count mĆ„neder', 'a_month' => 'en mĆ„ned|:count mĆ„neder', 'm' => ':count md.', 'week' => ':count uke|:count uker', 'a_week' => 'en uke|:count uker', 'w' => ':count u.', 'day' => ':count dag|:count dager', 'a_day' => 'en dag|:count dager', 'd' => ':count d.', 'hour' => ':count time|:count timer', 'a_hour' => 'en time|:count timer', 'h' => ':count t', 'minute' => ':count minutt|:count minutter', 'a_minute' => 'ett minutt|:count minutter', 'min' => ':count min', 'second' => ':count sekund|:count sekunder', 'a_second' => 'noen sekunder|:count sekunder', 's' => ':count sek', 'ago' => ':time siden', 'from_now' => 'om :time', 'after' => ':time etter', 'before' => ':time fĆør', 'diff_now' => 'akkurat nĆ„', 'diff_today' => 'i dag', 'diff_today_regexp' => 'i dag(?:\\s+kl.)?', 'diff_yesterday' => 'i gĆ„r', 'diff_yesterday_regexp' => 'i gĆ„r(?:\\s+kl.)?', 'diff_tomorrow' => 'i morgen', 'diff_tomorrow_regexp' => 'i morgen(?:\\s+kl.)?', 'diff_before_yesterday' => 'i forgĆ„rs', 'diff_after_tomorrow' => 'i overmorgen', 'period_recurrences' => 'en gang|:count ganger', 'period_interval' => 'hver :interval', 'period_start_date' => 'fra :date', 'period_end_date' => 'til :date', 'months' => ['januar', 'februar', 'mars', 'april', 'mai', 'juni', 'juli', 'august', 'september', 'oktober', 'november', 'desember'], 'months_short' => ['jan', 'feb', 'mar', 'apr', 'mai', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'des'], 'weekdays' => ['sĆøndag', 'mandag', 'tirsdag', 'onsdag', 'torsdag', 'fredag', 'lĆørdag'], 'weekdays_short' => ['sĆøn', 'man', 'tir', 'ons', 'tor', 'fre', 'lĆør'], 'weekdays_min' => ['sĆø', 'ma', 'ti', 'on', 'to', 'fr', 'lĆø'], 'ordinal' => ':number.', 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D. MMMM YYYY', 'LLL' => 'D. MMMM YYYY [kl.] HH:mm', 'LLLL' => 'dddd D. MMMM YYYY [kl.] HH:mm', ], 'calendar' => [ 'sameDay' => '[i dag kl.] LT', 'nextDay' => '[i morgen kl.] LT', 'nextWeek' => 'dddd [kl.] LT', 'lastDay' => '[i gĆ„r kl.] LT', 'lastWeek' => '[forrige] dddd [kl.] LT', 'sameElse' => 'L', ], 'list' => [', ', ' og '], 'meridiem' => ['a.m.', 'p.m.'], ]; PK!«ĄNNcarbon/src/Carbon/Lang/or.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/or_IN.php'; PK!× žŖŅ Ņ carbon/src/Carbon/Lang/lo.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - ryanhart2 */ return [ 'year' => ':count ປີ', 'y' => ':count ປີ', 'month' => ':count ເດືອນ', 'm' => ':count ąŗ”. ', 'week' => ':count ອາທຓດ', 'w' => ':count ąŗ­ąŗ—. ', 'day' => ':count ດື້', 'd' => ':count ດື້', 'hour' => ':count ąŗŠąŗ»ą»ˆąŗ§ą»‚ąŗ”ąŗ‡', 'h' => ':count ຊດ. ', 'minute' => ':count ນາທີ', 'min' => ':count ນທ. ', 'second' => '{1}ąŗšą»ą»ˆą»€ąŗ—ąŗ»ą»ˆąŗ²ą»ƒąŗ”ąŗ§ąŗ“ąŗ™ąŗ²ąŗ—ąŗµ|]1,Inf[:count ວຓນາທີ', 's' => ':count ąŗ§ąŗ“. ', 'ago' => ':timeąŗœą»ˆąŗ²ąŗ™ąŗ”ąŗ²', 'from_now' => 'ອີກ :time', 'diff_now' => 'ຕອນນີ້', 'diff_today' => 'ດື້ນີ້ເວຄາ', 'diff_yesterday' => 'ດື້ວານນີ້ເວຄາ', 'diff_tomorrow' => 'ąŗ”ąŗ·ą»‰ąŗ­ąŗ·ą»ˆąŗ™ą»€ąŗ§ąŗ„ąŗ²', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'ວັນdddd D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[ດື້ນີ້ເວຄາ] LT', 'nextDay' => '[ąŗ”ąŗ·ą»‰ąŗ­ąŗ·ą»ˆąŗ™ą»€ąŗ§ąŗ„ąŗ²] LT', 'nextWeek' => '[ວັນ]dddd[ą»œą»‰ąŗ²ą»€ąŗ§ąŗ„ąŗ²] LT', 'lastDay' => '[ດື້ວານນີ້ເວຄາ] LT', 'lastWeek' => '[ວັນ]dddd[ແຄ້ວນີ້ເວຄາ] LT', 'sameElse' => 'L', ], 'ordinal' => 'ąŗ—ąŗµą»ˆ:number', 'meridiem' => ['ąŗ•ąŗ­ąŗ™ą»€ąŗŠąŗ»ą»‰ąŗ²', 'ຕອນແຄງ'], 'months' => ['ດັງກອນ', 'ąŗąŗøąŗ”ąŗžąŗ²', 'ດີນາ', 'ເດສາ', 'ąŗžąŗ¶ąŗ”ąŗŖąŗ°ąŗžąŗ²', 'ດຓຖຸນາ', 'ąŗą»ąŗ„ąŗ°ąŗąŗ»ąŗ”', 'ສຓງຫາ', 'ąŗąŗ±ąŗ™ąŗąŗ²', 'ąŗ•ąŗøąŗ„ąŗ²', 'ąŗžąŗ°ąŗˆąŗ“ąŗ', 'ທັນວາ'], 'months_short' => ['ດັງກອນ', 'ąŗąŗøąŗ”ąŗžąŗ²', 'ດີນາ', 'ເດສາ', 'ąŗžąŗ¶ąŗ”ąŗŖąŗ°ąŗžąŗ²', 'ດຓຖຸນາ', 'ąŗą»ąŗ„ąŗ°ąŗąŗ»ąŗ”', 'ສຓງຫາ', 'ąŗąŗ±ąŗ™ąŗąŗ²', 'ąŗ•ąŗøąŗ„ąŗ²', 'ąŗžąŗ°ąŗˆąŗ“ąŗ', 'ທັນວາ'], 'weekdays' => ['ອາທຓດ', 'ąŗˆąŗ±ąŗ™', 'ອັງຄານ', 'ąŗžąŗøąŗ”', 'ąŗžąŗ°ąŗ«ąŗ±ąŗ”', 'ສຸກ', 'ເສົາ'], 'weekdays_short' => ['ąŗ—ąŗ“ąŗ”', 'ąŗˆąŗ±ąŗ™', 'ອັງຄານ', 'ąŗžąŗøąŗ”', 'ąŗžąŗ°ąŗ«ąŗ±ąŗ”', 'ສຸກ', 'ເສົາ'], 'weekdays_min' => ['ąŗ—', 'ຈ', 'ąŗ­ąŗ„', 'ąŗž', 'ąŗžąŗ«', 'ສກ', 'ąŗŖ'], 'list' => [', ', 'ແຄະ '], ]; PK! ŅU‚   carbon/src/Carbon/Lang/mk_MK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/mk.php'; PK!“Lr¤   carbon/src/Carbon/Lang/si_LK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/si.php'; PK!~@ÉOOcarbon/src/Carbon/Lang/hne.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/hne_IN.php'; PK!.J«‡'' carbon/src/Carbon/Lang/fr_DJ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/fr.php', [ 'first_day_of_week' => 6, 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY h:mm a', 'LLLL' => 'dddd D MMMM YYYY h:mm a', ], ]); PK!O2aNNcarbon/src/Carbon/Lang/am.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/am_ET.php'; PK!%šŽÖuu carbon/src/Carbon/Lang/ia_FR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Fedora Project Nik Kalach nikka@fedoraproject.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], 'months' => ['januario', 'februario', 'martio', 'april', 'maio', 'junio', 'julio', 'augusto', 'septembre', 'octobre', 'novembre', 'decembre'], 'months_short' => ['jan', 'feb', 'mar', 'apr', 'mai', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec'], 'weekdays' => ['dominica', 'lunedi', 'martedi', 'mercuridi', 'jovedi', 'venerdi', 'sabbato'], 'weekdays_short' => ['dom', 'lun', 'mar', 'mer', 'jov', 'ven', 'sab'], 'weekdays_min' => ['dom', 'lun', 'mar', 'mer', 'jov', 'ven', 'sab'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'year' => 'anno :count', 'y' => 'anno :count', 'a_year' => 'anno :count', 'month' => ':count mense', 'm' => ':count mense', 'a_month' => ':count mense', 'week' => ':count septimana', 'w' => ':count septimana', 'a_week' => ':count septimana', 'day' => ':count die', 'd' => ':count die', 'a_day' => ':count die', 'hour' => ':count hora', 'h' => ':count hora', 'a_hour' => ':count hora', 'minute' => ':count minuscule', 'min' => ':count minuscule', 'a_minute' => ':count minuscule', 'second' => ':count secunda', 's' => ':count secunda', 'a_second' => ':count secunda', ]); PK!‡ädŖ¦¦ carbon/src/Carbon/Lang/es_PY.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]); PK!„4E›› carbon/src/Carbon/Lang/en_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YY', 'LL' => 'MMMM DD, YYYY', 'LLL' => 'DD MMM HH:mm', 'LLLL' => 'MMMM DD, YYYY HH:mm', ], 'day_of_first_week_of_year' => 1, ]); PK!x^“FF carbon/src/Carbon/Lang/en_JE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!éńS˜GG carbon/src/Carbon/Lang/bn_BD.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ankur Group, http://www.ankurbangla.org, http://www.bengalinux.org Taneem Ahmed, Jamil Ahmed taneem@bengalinux.org, jamil@bengalinux.org */ return array_replace_recursive(require __DIR__.'/bn.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['ą¦œą¦¾ą¦Øą§ą¦Æą¦¼ą¦¾ą¦°ą§€', 'ą¦«ą§‡ą¦¬ą§ą¦°ą§ą¦Æą¦¼ą¦¾ą¦°ą§€', 'ą¦®ą¦¾ą¦°ą§ą¦š', 'ą¦ą¦Ŗą§ą¦°ą¦æą¦²', 'মে', 'জুন', 'ą¦œą§ą¦²ą¦¾ą¦‡', 'ą¦†ą¦—ą¦øą§ą¦Ÿ', 'ą¦øą§‡ą¦Ŗą§ą¦Ÿą§‡ą¦®ą§ą¦¬ą¦°', 'ą¦…ą¦•ą§ą¦Ÿą§‹ą¦¬ą¦°', 'ą¦Øą¦­ą§‡ą¦®ą§ą¦¬ą¦°', 'ą¦”ą¦æą¦øą§‡ą¦®ą§ą¦¬ą¦°'], 'months_short' => ['জানু', 'ফেব', 'ą¦®ą¦¾ą¦°ą§ą¦š', 'ą¦ą¦Ŗą§ą¦°ą¦æą¦²', 'মে', 'জুন', 'ą¦œą§ą¦²ą¦¾ą¦‡', 'ą¦†ą¦—ą¦øą§ą¦Ÿ', 'ą¦øą§‡ą¦Ŗą§ą¦Ÿą§‡ą¦®ą§ą¦¬ą¦°', 'ą¦…ą¦•ą§ą¦Ÿą§‹ą¦¬ą¦°', 'ą¦Øą¦­ą§‡ą¦®ą§ą¦¬ą¦°', 'ą¦”ą¦æą¦øą§‡ą¦®ą§ą¦¬ą¦°'], 'weekdays' => ['রবিবার', 'সোমবার', 'ą¦®ą¦™ą§ą¦—ą¦²ą¦¬ą¦¾ą¦°', 'বুধবার', 'ą¦¬ą§ƒą¦¹ą¦øą§ą¦Ŗą¦¤ą¦æą¦¬ą¦¾ą¦°', 'ą¦¶ą§ą¦•ą§ą¦°ą¦¬ą¦¾ą¦°', 'শনিবার'], 'weekdays_short' => ['রবি', 'সোম', 'ą¦®ą¦™ą§ą¦—ą¦²', 'বুধ', 'বৃহঃ', 'ą¦¶ą§ą¦•ą§ą¦°', 'শনি'], 'weekdays_min' => ['রবি', 'সোম', 'ą¦®ą¦™ą§ą¦—ą¦²', 'বুধ', 'বৃহঃ', 'ą¦¶ą§ą¦•ą§ą¦°', 'শনি'], 'first_day_of_week' => 5, 'day_of_first_week_of_year' => 1, ]); PK!x^“FF carbon/src/Carbon/Lang/en_SS.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!ÆHlŃŃ!carbon/src/Carbon/Lang/mjw_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Jor Teron bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['Arkoi', 'Thangthang', 'There', 'Jangmi', 'Aru', 'Vosik', 'Jakhong', 'Paipai', 'Chiti', 'Phere', 'Phaikuni', 'Matijong'], 'months_short' => ['Ark', 'Thang', 'The', 'Jang', 'Aru', 'Vos', 'Jak', 'Pai', 'Chi', 'Phe', 'Phai', 'Mati'], 'weekdays' => ['Bhomkuru', 'Urmi', 'Durmi', 'Thelang', 'Theman', 'Bhomta', 'Bhomti'], 'weekdays_short' => ['Bhom', 'Ur', 'Dur', 'Tkel', 'Tkem', 'Bhta', 'Bhti'], 'weekdays_min' => ['Bhom', 'Ur', 'Dur', 'Tkel', 'Tkem', 'Bhta', 'Bhti'], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]); PK!ķĮNNcarbon/src/Carbon/Lang/bi.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/bi_VU.php'; PK!x^“FF carbon/src/Carbon/Lang/en_SH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!ŗU’ÜÜ!carbon/src/Carbon/Lang/gez_ET.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ge'ez Frontier Foundation locales@geez.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['įŒƒįŠ•į‹©į‹ˆįˆŖ', 'įŒį‰„įˆ©į‹ˆįˆŖ', 'įˆ›įˆ­į‰½', 'įŠ¤į•įˆØįˆ', 'įˆœį‹­', 'įŒįŠ•', 'įŒįˆ‹į‹­', 'įŠ¦įŒˆįˆµį‰µ', 'įˆ“į•į‰“įˆį‰ įˆ­', 'įŠ¦įŠ­į‰°į‹į‰ įˆ­', 'įŠ–į‰¬įˆį‰ įˆ­', 'į‹²įˆ“įˆį‰ įˆ­'], 'months_short' => ['įŒƒįŠ•į‹©', 'įŒį‰„įˆ©', 'įˆ›įˆ­į‰½', 'įŠ¤į•įˆØ', 'įˆœį‹­ ', 'įŒįŠ• ', 'įŒįˆ‹į‹­', 'ኦገስ', 'įˆ“į•į‰“', 'įŠ¦įŠ­į‰°', 'įŠ–į‰¬įˆ', 'į‹²įˆ“įˆ'], 'weekdays' => ['įŠ„įŠį‹µ', 'įˆ°įŠ‘į‹­', 'įˆ įˆ‰įˆµ', 'įˆ«į‰„į‹•', 'įˆįˆ™įˆµ', 'į‹“įˆ­į‰ ', 'į‰€į‹³įˆšį‰µ'], 'weekdays_short' => ['įŠ„įŠį‹µ', 'įˆ°įŠ‘į‹­', 'įˆ įˆ‰įˆµ', 'įˆ«į‰„į‹•', 'įˆįˆ™įˆµ', 'į‹“įˆ­į‰ ', 'į‰€į‹³įˆš'], 'weekdays_min' => ['įŠ„įŠį‹µ', 'įˆ°įŠ‘į‹­', 'įˆ įˆ‰įˆµ', 'įˆ«į‰„į‹•', 'įˆįˆ™įˆµ', 'į‹“įˆ­į‰ ', 'į‰€į‹³įˆš'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['įŒ½į‰£įˆ•', 'įˆįˆ“į‰µ'], ]); PK!4ć•ģNNcarbon/src/Carbon/Lang/ia.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/ia_FR.php'; PK!˜"pĮ carbon/src/Carbon/Lang/ro_MD.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ro.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY, HH:mm', 'LLLL' => 'dddd, D MMMM YYYY, HH:mm', ], ]); PK!w'į0y y !carbon/src/Carbon/Lang/mai_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Maithili Computing Research Center, Pune, India rajeshkajha@yahoo.com,akhilesh.k@samusng.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['ą¤¬ą„ˆą¤øą¤¾ą¤–', 'ą¤œą„‡ą¤ ', 'अषाढ़', 'ą¤øą¤¾ą¤µą„‹ą¤Ø', 'ą¤­ą¤¾ą¤¦ą„‹', 'आसिन', 'कातिक', 'अगहन', 'ą¤Ŗą„‚ą¤ø', 'माघ', 'ą¤«ą¤¾ą¤—ą„ą¤Ø', 'ą¤šą„ˆą¤¤ą¤æ'], 'months_short' => ['ą¤¬ą„ˆą¤øą¤¾ą¤–', 'ą¤œą„‡ą¤ ', 'अषाढ़', 'ą¤øą¤¾ą¤µą„‹ą¤Ø', 'ą¤­ą¤¾ą¤¦ą„‹', 'आसिन', 'कातिक', 'अगहन', 'ą¤Ŗą„‚ą¤ø', 'माघ', 'ą¤«ą¤¾ą¤—ą„ą¤Ø', 'ą¤šą„ˆą¤¤ą¤æ'], 'weekdays' => ['रविदिन', 'ą¤øą„‹ą¤®ą¤¦ą¤æą¤Ø', 'मंगलदिन', 'ą¤¬ą„ą¤§ą¤¦ą¤æą¤Ø', 'ą¤¬ą„ƒą¤¹ą¤øą„ą¤Ŗą¤¤ą„€ą¤¦ą¤æą¤Ø', 'ą¤¶ą„ą¤•ą„ą¤°ą¤¦ą¤æą¤Ø', 'ą¤¶ą¤Øą„€ą¤¦ą¤æą¤Ø'], 'weekdays_short' => ['रवि', 'ą¤øą„‹ą¤®', 'मंगल', 'ą¤¬ą„ą¤§', 'ą¤¬ą„ƒą¤¹ą¤øą„ą¤Ŗą¤¤ą„€', 'ą¤¶ą„ą¤•ą„ą¤°', 'ą¤¶ą¤Øą„€'], 'weekdays_min' => ['रवि', 'ą¤øą„‹ą¤®', 'मंगल', 'ą¤¬ą„ą¤§', 'ą¤¬ą„ƒą¤¹ą¤øą„ą¤Ŗą¤¤ą„€', 'ą¤¶ą„ą¤•ą„ą¤°', 'ą¤¶ą¤Øą„€'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤¹ą„ą¤Ø', 'ą¤…ą¤Ŗą¤°ą¤¾ą¤¹ą„ą¤Ø'], 'year' => ':count ą¤‹ą¤¤ą„', // less reliable 'y' => ':count ą¤‹ą¤¤ą„', // less reliable 'a_year' => ':count ą¤‹ą¤¤ą„', // less reliable 'month' => ':count महिना', 'm' => ':count महिना', 'a_month' => ':count महिना', 'week' => ':count ą¤¶ą„ą¤°ą„‡ą¤£ą„€:ą¤•ą„ą¤Æą¤¾ą¤²ą„‡ą¤Øą„ą¤”ą¤°', // less reliable 'w' => ':count ą¤¶ą„ą¤°ą„‡ą¤£ą„€:ą¤•ą„ą¤Æą¤¾ą¤²ą„‡ą¤Øą„ą¤”ą¤°', // less reliable 'a_week' => ':count ą¤¶ą„ą¤°ą„‡ą¤£ą„€:ą¤•ą„ą¤Æą¤¾ą¤²ą„‡ą¤Øą„ą¤”ą¤°', // less reliable 'day' => ':count दिन', 'd' => ':count दिन', 'a_day' => ':count दिन', 'hour' => ':count ą¤˜ą¤£ą„ą¤Ÿą¤¾', 'h' => ':count ą¤˜ą¤£ą„ą¤Ÿą¤¾', 'a_hour' => ':count ą¤˜ą¤£ą„ą¤Ÿą¤¾', 'minute' => ':count समय', // less reliable 'min' => ':count समय', // less reliable 'a_minute' => ':count समय', // less reliable ]); PK!xƒ¦ŪŪcarbon/src/Carbon/Lang/dav.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['Luma lwa K', 'luma lwa p'], 'weekdays' => ['Ituku ja jumwa', 'Kuramuka jimweri', 'Kuramuka kawi', 'Kuramuka kadadu', 'Kuramuka kana', 'Kuramuka kasanu', 'Kifula nguwo'], 'weekdays_short' => ['Jum', 'Jim', 'Kaw', 'Kad', 'Kan', 'Kas', 'Ngu'], 'weekdays_min' => ['Jum', 'Jim', 'Kaw', 'Kad', 'Kan', 'Kas', 'Ngu'], 'months' => ['Mori ghwa imbiri', 'Mori ghwa kawi', 'Mori ghwa kadadu', 'Mori ghwa kana', 'Mori ghwa kasanu', 'Mori ghwa karandadu', 'Mori ghwa mfungade', 'Mori ghwa wunyanya', 'Mori ghwa ikenda', 'Mori ghwa ikumi', 'Mori ghwa ikumi na imweri', 'Mori ghwa ikumi na iwi'], 'months_short' => ['Imb', 'Kaw', 'Kad', 'Kan', 'Kas', 'Kar', 'Mfu', 'Wun', 'Ike', 'Iku', 'Imw', 'Iwi'], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK!Ą×Y((carbon/src/Carbon/Lang/jgo.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ ]); PK![Ū;ń88 carbon/src/Carbon/Lang/es_PH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 0, 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'D/M/yy', 'LL' => 'D MMM YYYY', 'LLL' => 'D [de] MMMM [de] YYYY h:mm a', 'LLLL' => 'dddd, D [de] MMMM [de] YYYY h:mm a', ], ]); PK!ʰ:&##carbon/src/Carbon/Lang/luy.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'weekdays' => ['Jumapiri', 'Jumatatu', 'Jumanne', 'Jumatano', 'Murwa wa Kanne', 'Murwa wa Katano', 'Jumamosi'], 'weekdays_short' => ['J2', 'J3', 'J4', 'J5', 'Al', 'Ij', 'J1'], 'weekdays_min' => ['J2', 'J3', 'J4', 'J5', 'Al', 'Ij', 'J1'], 'months' => ['Januari', 'Februari', 'Machi', 'Aprili', 'Mei', 'Juni', 'Julai', 'Agosti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'], 'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], // Too unreliable /* 'year' => ':count liliino', // less reliable 'y' => ':count liliino', // less reliable 'a_year' => ':count liliino', // less reliable 'month' => ':count kumwesi', // less reliable 'm' => ':count kumwesi', // less reliable 'a_month' => ':count kumwesi', // less reliable 'week' => ':count olutambi', // less reliable 'w' => ':count olutambi', // less reliable 'a_week' => ':count olutambi', // less reliable 'day' => ':count luno', // less reliable 'd' => ':count luno', // less reliable 'a_day' => ':count luno', // less reliable 'hour' => ':count ekengele', // less reliable 'h' => ':count ekengele', // less reliable 'a_hour' => ':count ekengele', // less reliable 'minute' => ':count omundu', // less reliable 'min' => ':count omundu', // less reliable 'a_minute' => ':count omundu', // less reliable 'second' => ':count liliino', // less reliable 's' => ':count liliino', // less reliable 'a_second' => ':count liliino', // less reliable */ ]); PK!x^“FF carbon/src/Carbon/Lang/en_DG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!i©Ą“ÖÖcarbon/src/Carbon/Lang/mgo.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'weekdays' => ['Aneg 1', 'Aneg 2', 'Aneg 3', 'Aneg 4', 'Aneg 5', 'Aneg 6', 'Aneg 7'], 'weekdays_short' => ['Aneg 1', 'Aneg 2', 'Aneg 3', 'Aneg 4', 'Aneg 5', 'Aneg 6', 'Aneg 7'], 'weekdays_min' => ['1', '2', '3', '4', '5', '6', '7'], 'months' => ['iməg mbegtug', 'imeg Ć bùbƬ', 'imeg mbəŋchubi', 'iməg ngwə̀t', 'iməg fog', 'iməg ichiibɔd', 'iməg Ć dùmbə̀ŋ', 'iməg ichika', 'iməg kud', 'iməg tĆØsiʼe', 'iməg zò', 'iməg krizmed'], 'months_short' => ['mbegtug', 'imeg Ć bùbƬ', 'imeg mbəŋchubi', 'iməg ngwə̀t', 'iməg fog', 'iməg ichiibɔd', 'iməg Ć dùmbə̀ŋ', 'iməg ichika', 'iməg kud', 'iməg tĆØsiʼe', 'iməg zò', 'iməg krizmed'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY-MM-dd', 'LL' => 'YYYY MMM D', 'LLL' => 'YYYY MMMM D HH:mm', 'LLLL' => 'dddd, YYYY MMMM DD HH:mm', ], ]); PK!WQfu  carbon/src/Carbon/Lang/mo.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ro.php'; PK!­K%B   carbon/src/Carbon/Lang/fi_FI.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fi.php'; PK!4ŠĶ   carbon/src/Carbon/Lang/es_UY.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/es.php', [ 'months' => ['enero', 'febrero', 'marzo', 'abril', 'mayo', 'junio', 'julio', 'agosto', 'setiembre', 'octubre', 'noviembre', 'diciembre'], 'months_short' => ['ene', 'feb', 'mar', 'abr', 'may', 'jun', 'jul', 'ago', 'set', 'oct', 'nov', 'dic'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, ]); PK!&ļŁ$ČČ carbon/src/Carbon/Lang/en_AU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Kunal Marwaha * - FranƧois B * - Mayank Badola * - JD Isaacks */ return array_replace_recursive(require __DIR__.'/en.php', [ 'from_now' => 'in :time', 'formats' => [ 'LT' => 'h:mm A', 'LTS' => 'h:mm:ss A', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY h:mm A', 'LLLL' => 'dddd, D MMMM YYYY h:mm A', ], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, ]); PK!KN õnncarbon/src/Carbon/Lang/no.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Daniel S. Billing * - Paul * - Jimmie Johansson * - Jens Herlevsen */ return array_replace_recursive(require __DIR__.'/nb.php', [ 'formats' => [ 'LLL' => 'D. MMMM YYYY HH:mm', 'LLLL' => 'dddd, D. MMMM YYYY [kl.] HH:mm', ], 'calendar' => [ 'nextWeek' => 'pĆ„ dddd [kl.] LT', 'lastWeek' => '[i] dddd[s kl.] LT', ], ]); PK!VŪÜ (carbon/src/Carbon/Lang/tt_RU@iqtelif.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Reshat Sabiq tatar.iqtelif.i18n@gmail.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], 'months' => ['Ğınwar', 'Fiwral\'', 'Mart', 'April', 'May', 'Yün', 'Yül', 'Awgust', 'SintebĆ­r', 'ÜktebĆ­r', 'NoyebĆ­r', 'DikebĆ­r'], 'months_short' => ['Ğın', 'Fiw', 'Mar', 'Apr', 'May', 'Yün', 'Yül', 'Awg', 'Sin', 'Ükt', 'Noy', 'Dik'], 'weekdays' => ['YekşembĆ­', 'DüşembĆ­', 'SişembĆ­', 'ƇerşembĆ­', 'PencíşembĆ­', 'Comğa', 'Şimbe'], 'weekdays_short' => ['Yek', 'Düş', 'Siş', 'Ƈer', 'Pen', 'Com', 'Şim'], 'weekdays_min' => ['Yek', 'Düş', 'Siş', 'Ƈer', 'Pen', 'Com', 'Şim'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'meridiem' => ['ƖA', 'ƖS'], ]); PK!„“ų‘ ‘ carbon/src/Carbon/Lang/et.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Philippe Vaucher * - Andres Ivanov * - Tsutomu Kuroda * - tjku * - Max Melentiev * - Juanito Fatas * - RM87 * - Akira Matsuda * - Christopher Dell * - Enrique Vidal * - Simone Carletti * - Aaron Patterson * - Esko Lehtme * - Mart Karu * - NicolĆ”s Hock Isaza * - Kevin Valdek * - Zahhar Kirillov * - JoĆ£o MagalhĆ£es * - Ingmar * - Illimar Tambek */ return [ 'year' => ':count aasta|:count aastat', 'y' => ':count aasta|:count aastat', 'month' => ':count kuu|:count kuud', 'm' => ':count kuu|:count kuud', 'week' => ':count nƤdal|:count nƤdalat', 'w' => ':count nƤdal|:count nƤdalat', 'day' => ':count pƤev|:count pƤeva', 'd' => ':count pƤev|:count pƤeva', 'hour' => ':count tund|:count tundi', 'h' => ':count tund|:count tundi', 'minute' => ':count minut|:count minutit', 'min' => ':count minut|:count minutit', 'second' => ':count sekund|:count sekundit', 's' => ':count sekund|:count sekundit', 'ago' => ':time tagasi', 'from_now' => ':time pƤrast', 'after' => ':time pƤrast', 'before' => ':time enne', 'year_from_now' => ':count aasta', 'month_from_now' => ':count kuu', 'week_from_now' => ':count nƤdala', 'day_from_now' => ':count pƤeva', 'hour_from_now' => ':count tunni', 'minute_from_now' => ':count minuti', 'second_from_now' => ':count sekundi', 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'diff_now' => 'nüüd', 'diff_today' => 'tƤna', 'diff_yesterday' => 'eile', 'diff_tomorrow' => 'homme', 'diff_before_yesterday' => 'üleeile', 'diff_after_tomorrow' => 'ülehomme', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D. MMMM YYYY', 'LLL' => 'D. MMMM YYYY HH:mm', 'LLLL' => 'dddd, D. MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[tƤna] LT', 'nextDay' => '[homme] LT', 'lastDay' => '[eile] LT', 'nextWeek' => 'dddd LT', 'lastWeek' => '[eelmine] dddd LT', 'sameElse' => 'L', ], 'months' => ['jaanuar', 'veebruar', 'mƤrts', 'aprill', 'mai', 'juuni', 'juuli', 'august', 'september', 'oktoober', 'november', 'detsember'], 'months_short' => ['jaan', 'veebr', 'mƤrts', 'apr', 'mai', 'juuni', 'juuli', 'aug', 'sept', 'okt', 'nov', 'dets'], 'weekdays' => ['pühapƤev', 'esmaspƤev', 'teisipƤev', 'kolmapƤev', 'neljapƤev', 'reede', 'laupƤev'], 'weekdays_short' => ['P', 'E', 'T', 'K', 'N', 'R', 'L'], 'weekdays_min' => ['P', 'E', 'T', 'K', 'N', 'R', 'L'], 'list' => [', ', ' ja '], 'meridiem' => ['enne lƵunat', 'pƤrast lƵunat'], ]; PK!Ģ>ŗĄz z carbon/src/Carbon/Lang/dv.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ $months = [ 'Ž–Ž¬Ž‚ŽŖŽ‡Ž¦ŽƒŽ©', 'ŽŠŽ¬Ž„Ž°ŽƒŽŖŽ‡Ž¦ŽƒŽ©', 'Ž‰Ž§ŽƒŽØŽ—ŽŖ', 'Ž‡Ž­Ž•Ž°ŽƒŽ©ŽŽŖ', 'މޭ', 'ޖޫން', 'Ž–ŽŖŽŽ¦Ž‡ŽØ', 'Ž‡ŽÆŽŽŽ¦ŽŽ°Ž“ŽŖ', 'ŽŽ¬Ž•Ž°Ž“Ž¬Ž‰Ž°Ž„Ž¦ŽƒŽŖ', 'Ž‡Ž®Ž†Ž°Ž“ŽÆŽ„Ž¦ŽƒŽŖ', 'Ž‚Ž®ŽˆŽ¬Ž‰Ž°Ž„Ž¦ŽƒŽŖ', 'Ž‘ŽØŽŽ¬Ž‰Ž°Ž„Ž¦ŽƒŽŖ', ]; $weekdays = [ 'Ž‡Ž§Ž‹ŽØŽ‡Ž°ŽŒŽ¦', 'ހޯމަ', 'Ž‡Ž¦Ž‚Ž°ŽŽŽ§ŽƒŽ¦', 'ބުދަ', 'Ž„ŽŖŽƒŽ§ŽŽ°ŽŠŽ¦ŽŒŽØ', 'Ž€ŽŖŽ†ŽŖŽƒŽŖ', 'Ž€Ž®Ž‚ŽØŽ€ŽØŽƒŽŖ', ]; /* * Authors: * - Josh Soref * - Jawish Hameed */ return [ 'year' => ':count '.'Ž‡Ž¦Ž€Ž¦ŽƒŽŖ', 'a_year' => '{1}'.'Ž‡Ž¦Ž€Ž¦ŽƒŽ¬Ž‡Ž°'.'|:count '.'Ž‡Ž¦Ž€Ž¦ŽƒŽŖ', 'month' => ':count '.'މަސް', 'a_month' => '{1}'.'މަހެއް'.'|:count '.'މަސް', 'week' => ':count '.'Ž€Ž¦ŽŠŽ°ŽŒŽ§', 'a_week' => '{1}'.'ŽŽØŽ†ŽŖŽ‚Ž°ŽŒŽŖŽ†Ž®Ž…Ž¬Ž‡Ž°'.'|:count '.'Ž€Ž¦ŽŠŽ°ŽŒŽ§', 'day' => ':count '.'Ž‹ŽŖŽˆŽ¦ŽŽ°', 'a_day' => '{1}'.'Ž‹ŽŖŽˆŽ¦Ž€Ž¬Ž‡Ž°'.'|:count '.'Ž‹ŽŖŽˆŽ¦ŽŽ°', 'hour' => ':count '.'ŽŽŽ¦Ž‘ŽØŽ‡ŽØŽƒŽŖ', 'a_hour' => '{1}'.'ŽŽŽ¦Ž‘ŽØŽ‡ŽØŽƒŽ¬Ž‡Ž°'.'|:count '.'ŽŽŽ¦Ž‘ŽØŽ‡ŽØŽƒŽŖ', 'minute' => ':count '.'މިނިޓު', 'a_minute' => '{1}'.'މިނިޓެއް'.'|:count '.'މިނިޓު', 'second' => ':count '.'ŽŽØŽ†ŽŖŽ‚Ž°ŽŒŽŖ', 'a_second' => '{1}'.'ŽŽØŽ†ŽŖŽ‚Ž°ŽŒŽŖŽ†Ž®Ž…Ž¬Ž‡Ž°'.'|:count '.'ŽŽØŽ†ŽŖŽ‚Ž°ŽŒŽŖ', 'ago' => 'Ž†ŽŖŽƒŽØŽ‚Ž° :time', 'from_now' => 'ŽŒŽ¬ŽƒŽ­ŽŽŽ¦Ž‡ŽØ :time', 'after' => ':time ŽŠŽ¦Ž€ŽŖŽ‚Ž°', 'before' => ':time Ž†ŽŖŽƒŽØ', 'diff_yesterday' => 'އިއްޔެ', 'diff_today' => 'މިއަދު', 'diff_tomorrow' => 'މާދަމާ', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[މިއަދު] LT', 'nextDay' => '[މާދަމާ] LT', 'nextWeek' => 'dddd LT', 'lastDay' => '[އިއްޔެ] LT', 'lastWeek' => '[ŽŠŽ§Ž‡ŽØŽŒŽŖŽˆŽØ] dddd LT', 'sameElse' => 'L', ], 'meridiem' => ['މކ', 'Ž‰ŽŠ'], 'months' => $months, 'months_short' => $months, 'weekdays' => $weekdays, 'weekdays_short' => $weekdays, 'weekdays_min' => ['އާދި', 'ހޯމަ', 'އަން', 'ބުދަ', 'Ž„ŽŖŽƒŽ§', 'ހުކު', 'ހޮނި'], 'list' => [', ', ' އަދި '], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]; PK!~[ēŠxx%carbon/src/Carbon/Lang/sr_Latn_ME.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Glavić * - Milos Sakovic */ return array_replace_recursive(require __DIR__.'/sr.php', [ 'month' => ':count mjesec|:count mjeseca|:count mjeseci', 'week' => ':count nedjelja|:count nedjelje|:count nedjelja', 'second' => ':count sekund|:count sekunde|:count sekundi', 'ago' => 'prije :time', 'from_now' => 'za :time', 'after' => ':time nakon', 'before' => ':time prije', 'week_from_now' => ':count nedjelju|:count nedjelje|:count nedjelja', 'week_ago' => ':count nedjelju|:count nedjelje|:count nedjelja', 'diff_tomorrow' => 'sjutra', 'calendar' => [ 'nextDay' => '[sjutra u] LT', 'nextWeek' => function (\Carbon\CarbonInterface $date) { switch ($date->dayOfWeek) { case 0: return '[u nedjelju u] LT'; case 3: return '[u srijedu u] LT'; case 6: return '[u subotu u] LT'; default: return '[u] dddd [u] LT'; } }, 'lastWeek' => function (\Carbon\CarbonInterface $date) { switch ($date->dayOfWeek) { case 0: return '[proÅ”le nedjelje u] LT'; case 1: return '[proÅ”le nedjelje u] LT'; case 2: return '[proÅ”log utorka u] LT'; case 3: return '[proÅ”le srijede u] LT'; case 4: return '[proÅ”log četvrtka u] LT'; case 5: return '[proÅ”log petka u] LT'; default: return '[proÅ”le subote u] LT'; } }, ], 'weekdays' => ['nedjelja', 'ponedjeljak', 'utorak', 'srijeda', 'četvrtak', 'petak', 'subota'], 'weekdays_short' => ['ned.', 'pon.', 'uto.', 'sri.', 'čet.', 'pet.', 'sub.'], ]); PK!ł”cŗŗ%carbon/src/Carbon/Lang/sr_Cyrl_XK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/sr_Cyrl_BA.php', [ 'weekdays' => ['неГеља', 'понеГељак', 'ŃƒŃ‚Š¾Ń€Š°Šŗ', 'среГа', 'четвртак', 'петак', 'ŃŃƒŠ±Š¾Ń‚Š°'], ]); PK!Č4d’   carbon/src/Carbon/Lang/af_ZA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/af.php'; PK!x^“FF carbon/src/Carbon/Lang/en_GG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!‘°l!carbon/src/Carbon/Lang/en_ISO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY-MM-dd', 'LL' => 'YYYY MMM D', 'LLL' => 'YYYY MMMM D HH:mm', 'LLLL' => 'dddd, YYYY MMMM DD HH:mm', ], ]); PK!^TĘ[[carbon/src/Carbon/Lang/ksh.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['v.M.', 'n.M.'], 'weekdays' => ['Sunndaach', 'Mohndaach', 'Dinnsdaach', 'Metwoch', 'Dunnersdaach', 'Friidaach', 'Samsdaach'], 'weekdays_short' => ['Su.', 'Mo.', 'Di.', 'Me.', 'Du.', 'Fr.', 'Sa.'], 'weekdays_min' => ['Su', 'Mo', 'Di', 'Me', 'Du', 'Fr', 'Sa'], 'months' => ['Jannewa', 'FƤbrowa', 'MƤƤz', 'Aprell', 'Mai', 'Juuni', 'Juuli', 'Oujoß', 'SeptƤmber', 'Oktohber', 'NovƤmber', 'DezƤmber'], 'months_short' => ['Jan', 'FƤb', 'MƤz', 'Apr', 'Mai', 'Jun', 'Jul', 'Ouj', 'SƤp', 'Okt', 'Nov', 'Dez'], 'months_short_standalone' => ['Jan.', 'FƤb.', 'MƤz.', 'Apr.', 'Mai', 'Jun.', 'Jul.', 'Ouj.', 'SƤp.', 'Okt.', 'Nov.', 'Dez.'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D. M. YYYY', 'LL' => 'D. MMM. YYYY', 'LLL' => 'D. MMMM YYYY HH:mm', 'LLLL' => 'dddd, [dƤ] D. MMMM YYYY HH:mm', ], 'year' => ':count Johr', 'y' => ':count Johr', 'a_year' => ':count Johr', 'month' => ':count Moohnd', 'm' => ':count Moohnd', 'a_month' => ':count Moohnd', 'week' => ':count woch', 'w' => ':count woch', 'a_week' => ':count woch', 'day' => ':count Daach', 'd' => ':count Daach', 'a_day' => ':count Daach', 'hour' => ':count Uhr', 'h' => ':count Uhr', 'a_hour' => ':count Uhr', 'minute' => ':count Menutt', 'min' => ':count Menutt', 'a_minute' => ':count Menutt', 'second' => ':count SekÅÆndt', 's' => ':count SekÅÆndt', 'a_second' => ':count SekÅÆndt', ]); PK!v³„¦¦ carbon/src/Carbon/Lang/so_DJ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ge'ez Frontier Foundation locales@geez.org */ return array_replace_recursive(require __DIR__.'/so.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], ]); PK!\BÉ@UUcarbon/src/Carbon/Lang/lu.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['Dinda', 'Dilolo'], 'weekdays' => ['Lumingu', 'Nkodya', 'NdĆ ayĆ ', 'Ndangù', 'Njòwa', 'Ngòvya', 'Lubingu'], 'weekdays_short' => ['Lum', 'Nko', 'Ndy', 'Ndg', 'Njw', 'Ngv', 'Lub'], 'weekdays_min' => ['Lum', 'Nko', 'Ndy', 'Ndg', 'Njw', 'Ngv', 'Lub'], 'months' => ['Ciongo', 'Lùishi', 'Lusòlo', 'MùuyĆ ', 'Lumùngùlù', 'Lufuimi', 'KabĆ lĆ shƬpù', 'LùshƬkĆ ', 'Lutongolo', 'Lungùdi', 'KaswĆØkĆØsĆØ', 'CiswĆ '], 'months_short' => ['Cio', 'Lui', 'Lus', 'Muu', 'Lum', 'Luf', 'Kab', 'Lush', 'Lut', 'Lun', 'Kas', 'Cis'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], ]); PK!ą²Ķq~~ carbon/src/Carbon/Lang/pt_BR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Cassiano Montanari * - Eduardo Dalla Vecchia * - David Rodrigues * - Matt Pope * - FranƧois B * - Prodis * - Marlon Maxwel * - JD Isaacks * - Raphael Amorim * - Rafael Raupp * - felipeleite1 * - swalker * - Lucas Macedo * - Paulo Freitas * - Sebastian Thierer */ return array_replace_recursive(require __DIR__.'/pt.php', [ 'period_recurrences' => 'uma|:count vez', 'period_interval' => 'toda :interval', 'formats' => [ 'LLL' => 'D [de] MMMM [de] YYYY [Ć s] HH:mm', 'LLLL' => 'dddd, D [de] MMMM [de] YYYY [Ć s] HH:mm', ], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]); PK!-'ĢOOcarbon/src/Carbon/Lang/doi.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/doi_IN.php'; PK!å&*Bcc carbon/src/Carbon/Lang/sr_RS.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - sr_YU, sr_CS locale Danilo Segan bug-glibc-locales@gnu.org */ return require __DIR__.'/sr_Cyrl.php'; PK!x^“FF carbon/src/Carbon/Lang/en_MU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!ģŃÉŽhhcarbon/src/Carbon/Lang/bn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - Shakib Hossain * - Raju * - Aniruddha Adhikary * - JD Isaacks * - Saiful Islam * - Faisal Islam */ return [ 'year' => ':count বছর', 'a_year' => 'ą¦ą¦• বছর|:count বছর', 'y' => 'ą§§ বছর|:count বছর', 'month' => ':count মাস', 'a_month' => 'ą¦ą¦• মাস|:count মাস', 'm' => 'ą§§ মাস|:count মাস', 'week' => ':count ą¦øą¦Ŗą§ą¦¤ą¦¾ą¦¹', 'a_week' => 'ą§§ ą¦øą¦Ŗą§ą¦¤ą¦¾ą¦¹|:count ą¦øą¦Ŗą§ą¦¤ą¦¾ą¦¹', 'w' => 'ą§§ ą¦øą¦Ŗą§ą¦¤ą¦¾ą¦¹|:count ą¦øą¦Ŗą§ą¦¤ą¦¾ą¦¹', 'day' => ':count দিন', 'a_day' => 'ą¦ą¦• দিন|:count দিন', 'd' => 'ą§§ দিন|:count দিন', 'hour' => ':count ą¦˜ą¦Øą§ą¦Ÿą¦¾', 'a_hour' => 'ą¦ą¦• ą¦˜ą¦Øą§ą¦Ÿą¦¾|:count ą¦˜ą¦Øą§ą¦Ÿą¦¾', 'h' => 'ą§§ ą¦˜ą¦Øą§ą¦Ÿą¦¾|:count ą¦˜ą¦Øą§ą¦Ÿą¦¾', 'minute' => ':count মিনিট', 'a_minute' => 'ą¦ą¦• মিনিট|:count মিনিট', 'min' => 'ą§§ মিনিট|:count মিনিট', 'second' => ':count ą¦øą§‡ą¦•ą§‡ą¦Øą§ą¦”', 'a_second' => 'ą¦•ą§Ÿą§‡ą¦• ą¦øą§‡ą¦•ą§‡ą¦Øą§ą¦”|:count ą¦øą§‡ą¦•ą§‡ą¦Øą§ą¦”', 's' => 'ą§§ ą¦øą§‡ą¦•ą§‡ą¦Øą§ą¦”|:count ą¦øą§‡ą¦•ą§‡ą¦Øą§ą¦”', 'ago' => ':time আগে', 'from_now' => ':time পরে', 'after' => ':time পরে', 'before' => ':time আগে', 'diff_now' => 'ą¦ą¦–ą¦Ø', 'diff_today' => 'ą¦†ą¦œ', 'diff_yesterday' => 'গতকাল', 'diff_tomorrow' => 'আগামীকাল', 'period_recurrences' => ':count বার|:count বার', 'period_interval' => 'ą¦Ŗą§ą¦°ą¦¤ą¦æ :interval', 'period_start_date' => ':date ঄েকে', 'period_end_date' => ':date ą¦Ŗą¦°ą§ą¦Æą¦Øą§ą¦¤', 'formats' => [ 'LT' => 'A Oh:Om সময়', 'LTS' => 'A Oh:Om:Os সময়', 'L' => 'OD/OM/OY', 'LL' => 'OD MMMM OY', 'LLL' => 'OD MMMM OY, A Oh:Om সময়', 'LLLL' => 'dddd, OD MMMM OY, A Oh:Om সময়', ], 'calendar' => [ 'sameDay' => '[ą¦†ą¦œ] LT', 'nextDay' => '[আগামীকাল] LT', 'nextWeek' => 'dddd, LT', 'lastDay' => '[গতকাল] LT', 'lastWeek' => '[গত] dddd, LT', 'sameElse' => 'L', ], 'meridiem' => function ($hour) { if ($hour < 4) { return 'রাত'; } if ($hour < 10) { return 'সকাল'; } if ($hour < 17) { return 'দুপুর'; } if ($hour < 20) { return 'বিকাল'; } return 'রাত'; }, 'months' => ['ą¦œą¦¾ą¦Øą§ą§Ÿą¦¾ą¦°ą§€', 'ą¦«ą§‡ą¦¬ą§ą¦°ą§ą§Ÿą¦¾ą¦°ą¦æ', 'ą¦®ą¦¾ą¦°ą§ą¦š', 'ą¦ą¦Ŗą§ą¦°ą¦æą¦²', 'মে', 'জুন', 'ą¦œą§ą¦²ą¦¾ą¦‡', 'ą¦†ą¦—ą¦øą§ą¦Ÿ', 'ą¦øą§‡ą¦Ŗą§ą¦Ÿą§‡ą¦®ą§ą¦¬ą¦°', 'ą¦…ą¦•ą§ą¦Ÿą§‹ą¦¬ą¦°', 'ą¦Øą¦­ą§‡ą¦®ą§ą¦¬ą¦°', 'ą¦”ą¦æą¦øą§‡ą¦®ą§ą¦¬ą¦°'], 'months_short' => ['জানু', 'ফেব', 'ą¦®ą¦¾ą¦°ą§ą¦š', 'ą¦ą¦Ŗą§ą¦°', 'মে', 'জুন', 'জুল', 'আগ', 'ą¦øą§‡ą¦Ŗą§ą¦Ÿ', 'ą¦…ą¦•ą§ą¦Ÿą§‹', 'নভে', 'ঔিসে'], 'weekdays' => ['রবিবার', 'সোমবার', 'ą¦®ą¦™ą§ą¦—ą¦²ą¦¬ą¦¾ą¦°', 'বুধবার', 'ą¦¬ą§ƒą¦¹ą¦øą§ą¦Ŗą¦¤ą¦æą¦¬ą¦¾ą¦°', 'ą¦¶ą§ą¦•ą§ą¦°ą¦¬ą¦¾ą¦°', 'শনিবার'], 'weekdays_short' => ['রবি', 'সোম', 'ą¦®ą¦™ą§ą¦—ą¦²', 'বুধ', 'ą¦¬ą§ƒą¦¹ą¦øą§ą¦Ŗą¦¤ą¦æ', 'ą¦¶ą§ą¦•ą§ą¦°', 'শনি'], 'weekdays_min' => ['রবি', 'সোম', 'ą¦®ą¦™ą§ą¦—', 'বুধ', 'বৃহঃ', 'ą¦¶ą§ą¦•ą§ą¦°', 'শনি'], 'list' => [', ', ' ą¦ą¦¬ą¦‚ '], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, 'weekdays_standalone' => ['রবিবার', 'সোমবার', 'ą¦®ą¦™ą§ą¦—ą¦²ą¦¬ą¦¾ą¦°', 'বুধবার', 'ą¦¬ą§ƒą¦¹ą¦·ą§ą¦Ŗą¦¤ą¦æą¦¬ą¦¾ą¦°', 'ą¦¶ą§ą¦•ą§ą¦°ą¦¬ą¦¾ą¦°', 'শনিবার'], 'weekdays_min_standalone' => ['রঃ', 'ą¦øą§‹ą¦ƒ', 'মঃ', 'বুঃ', 'বৃঃ', 'শুঃ', 'শনি'], 'months_short_standalone' => ['ą¦œą¦¾ą¦Øą§ą¦Æą¦¼ą¦¾ą¦°ą§€', 'ą¦«ą§‡ą¦¬ą§ą¦°ą§ą¦Æą¦¼ą¦¾ą¦°ą§€', 'ą¦®ą¦¾ą¦°ą§ą¦š', 'ą¦ą¦Ŗą§ą¦°ą¦æą¦²', 'মে', 'জুন', 'ą¦œą§ą¦²ą¦¾ą¦‡', 'ą¦†ą¦—ą¦øą§ą¦Ÿ', 'ą¦øą§‡ą¦Ŗą§ą¦Ÿą§‡ą¦®ą§ą¦¬ą¦°', 'ą¦…ą¦•ą§ą¦Ÿą§‹ą¦¬ą¦°', 'ą¦Øą¦­ą§‡ą¦®ą§ą¦¬ą¦°', 'ą¦”ą¦æą¦øą§‡ą¦®ą§ą¦¬ą¦°'], 'alt_numbers' => ['০', 'ą§§', 'ą§Ø', 'ą§©', 'ą§Ŗ', 'ą§«', '৬', 'ą§­', 'ą§®', 'ą§Æ'], ]; PK!Ŗ°“vĖĖ carbon/src/Carbon/Lang/fr_CH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Dieter Sting * - FranƧois B * - Gaspard Bucher * - Maxime VALY * - JD Isaacks */ return array_replace_recursive(require __DIR__.'/fr.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], ]); PK!Ńē±   carbon/src/Carbon/Lang/nl_SR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/nl.php'; PK!`YĀą ą "carbon/src/Carbon/Lang/zh_Hans.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - monkeycon * - FranƧois B * - Jason Katz-Brown * - Konstantin Konev * - Chris Lam * - Serhan Apaydın * - Gary Lo * - JD Isaacks * - Chris Hemp * - shankesgk2 * - Daniel Cheung (danvim) */ return [ 'year' => ':count:optional-space幓', 'y' => ':count:optional-space幓', 'month' => ':count:optional-space个月', 'm' => ':count:optional-space个月', 'week' => ':count:optional-space周', 'w' => ':count:optional-space周', 'day' => ':count:optional-space天', 'd' => ':count:optional-space天', 'hour' => ':count:optional-spaceå°ę—¶', 'h' => ':count:optional-spaceå°ę—¶', 'minute' => ':count:optional-space分钟', 'min' => ':count:optional-space分钟', 'second' => ':count:optional-spaceē§’', 'a_second' => '{1}几秒|]1,Inf[:count:optional-spaceē§’', 's' => ':count:optional-spaceē§’', 'ago' => ':time前', 'from_now' => ':time后', 'after' => ':time后', 'before' => ':time前', 'diff_now' => 'ēŽ°åœØ', 'diff_today' => '今天', 'diff_yesterday' => '昨天', 'diff_tomorrow' => 'ę˜Žå¤©', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY/MM/DD', 'LL' => 'YYYY幓M月Dę—„', 'LLL' => 'YYYY幓M月Dę—„ HH:mm', 'LLLL' => 'YYYY幓M月Dę—„dddd HH:mm', ], 'calendar' => [ 'sameDay' => '[今天]LT', 'nextDay' => '[ę˜Žå¤©]LT', 'nextWeek' => '[äø‹]ddddLT', 'lastDay' => '[昨天]LT', 'lastWeek' => '[上]ddddLT', 'sameElse' => 'L', ], 'ordinal' => function ($number, $period) { switch ($period) { case 'd': case 'D': case 'DDD': return $number.'ę—„'; case 'M': return $number.'月'; case 'w': case 'W': return $number.'周'; default: return $number; } }, 'meridiem' => function ($hour, $minute) { $time = $hour * 100 + $minute; if ($time < 600) { return 'å‡Œę™Ø'; } if ($time < 900) { return 'ę—©äøŠ'; } if ($time < 1130) { return 'äøŠåˆ'; } if ($time < 1230) { return 'äø­åˆ'; } if ($time < 1800) { return 'äø‹åˆ'; } return 'ę™šäøŠ'; }, 'months' => ['äø€ęœˆ', '二月', 'äø‰ęœˆ', 'å››ęœˆ', 'äŗ”ęœˆ', 'å…­ęœˆ', '七月', 'å…«ęœˆ', 'ä¹ęœˆ', 'åęœˆ', 'åäø€ęœˆ', 'åäŗŒęœˆ'], 'months_short' => ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'], 'weekdays' => ['ę˜ŸęœŸę—„', 'ę˜ŸęœŸäø€', '星期二', 'ę˜ŸęœŸäø‰', 'ę˜ŸęœŸå››', 'ę˜ŸęœŸäŗ”', 'ę˜ŸęœŸå…­'], 'weekdays_short' => ['周旄', '周一', 'å‘ØäŗŒ', '周三', '周四', '周五', '周六'], 'weekdays_min' => ['ę—„', 'äø€', '二', 'äø‰', '四', 'äŗ”', '六'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => '', ]; PK!RŲ^üII!carbon/src/Carbon/Lang/cmn_TW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'YYYY幓MM月DD號', ], 'months' => ['äø€ęœˆ', '二月', 'äø‰ęœˆ', 'å››ęœˆ', 'äŗ”ęœˆ', 'å…­ęœˆ', '七月', 'å…«ęœˆ', 'ä¹ęœˆ', 'åęœˆ', 'åäø€ęœˆ', 'åäŗŒęœˆ'], 'months_short' => [' 1月', ' 2月', ' 3月', ' 4月', ' 5月', ' 6月', ' 7月', ' 8月', ' 9月', '10月', '11月', '12月'], 'weekdays' => ['ę˜ŸęœŸę—„', 'ę˜ŸęœŸäø€', '星期二', 'ę˜ŸęœŸäø‰', 'ę˜ŸęœŸå››', 'ę˜ŸęœŸäŗ”', 'ę˜ŸęœŸå…­'], 'weekdays_short' => ['ę—„', 'äø€', '二', 'äø‰', '四', 'äŗ”', '六'], 'weekdays_min' => ['ę—„', 'äø€', '二', 'äø‰', '四', 'äŗ”', '六'], 'meridiem' => ['äøŠåˆ', 'äø‹åˆ'], 'year' => ':count 幓', 'y' => ':count 幓', 'a_year' => ':count 幓', 'month' => ':count 月', 'm' => ':count 月', 'a_month' => ':count 月', 'week' => ':count 周', 'w' => ':count 周', 'a_week' => ':count 周', 'day' => ':count 白天', 'd' => ':count 白天', 'a_day' => ':count 白天', 'hour' => ':count å°ę—¶', 'h' => ':count å°ę—¶', 'a_hour' => ':count å°ę—¶', 'minute' => ':count 分钟', 'min' => ':count 分钟', 'a_minute' => ':count 分钟', 'second' => ':count ē§’', 's' => ':count ē§’', 'a_second' => ':count ē§’', ]); PK!ÉB²E—— carbon/src/Carbon/Lang/tr_CY.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/tr.php', [ 'weekdays_short' => ['Paz', 'Pzt', 'Sal', 'Ƈar', 'Per', 'Cum', 'Cmt'], 'weekdays_min' => ['Pa', 'Pt', 'Sa', 'Ƈa', 'Pe', 'Cu', 'Ct'], 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'D.MM.YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY h:mm a', 'LLLL' => 'D MMMM YYYY dddd h:mm a', ], ]); PK!x^“FF carbon/src/Carbon/Lang/en_VU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!u·Ź\ \ carbon/src/Carbon/Lang/dz_BT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Sherubtse College bug-glibc@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'པསྱི་ལོYYཟལMMཚེསDD', ], 'months' => ['ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą½„ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‚ą½‰ą½²ą½¦ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‚ą½¦ą½“ą½˜ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½žą½²ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½£ą¾”ą¼‹ą½•ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą¾²ą½“ą½‚ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½‘ą½“ą½“ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½¢ą¾’ą¾±ą½‘ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą½‚ą½“ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½‚ą½…ą½²ą½‚ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½‚ą½‰ą½²ą½¦ą¼‹ą½”ą¼‹'], 'months_short' => ['ą½Ÿą¾³ą¼‹ą¼”', 'ą½Ÿą¾³ą¼‹ą¼¢', 'ą½Ÿą¾³ą¼‹ą¼£', 'ą½Ÿą¾³ą¼‹ą¼¤', 'ą½Ÿą¾³ą¼‹ą¼„', 'ą½Ÿą¾³ą¼‹ą¼¦', 'ą½Ÿą¾³ą¼‹ą¼§', 'ą½Ÿą¾³ą¼‹ą¼Ø', 'ą½Ÿą¾³ą¼‹ą¼©', 'ą½Ÿą¾³ą¼‹ą¼”ą¼ ', 'ą½Ÿą¾³ą¼‹ą¼”ą¼”', 'ą½Ÿą¾³ą¼‹ą¼”ą¼¢'], 'weekdays' => ['ą½‚ą½Ÿą½ ą¼‹ą½Ÿą¾³ą¼‹ą½–ą¼‹', 'ą½‚ą½Ÿą½ ą¼‹ą½˜ą½²ą½‚ą¼‹ą½‘ą½˜ą½¢ą¼‹', 'ą½‚ą½Ÿą½ ą¼‹ą½£ą¾·ą½‚ą¼‹ą½•ą¼‹', 'ą½‚ą½Ÿą½ ą¼‹ą½”ą½“ą½¢ą¼‹ą½–ą½“ą¼‹', 'ą½‚ą½Ÿą½ ą¼‹ą½”ą¼‹ą½¦ą½„ą½¦ą¼‹', 'ą½‚ą½Ÿą½ ą¼‹ą½¦ą¾¤ą½ŗą½“ą¼‹ą½•ą¼‹', 'ą½‚ą½Ÿą½ ą¼‹ą½‰ą½²ą¼‹ą½˜ą¼‹'], 'weekdays_short' => ['ą½Ÿą¾³ą¼‹', 'ą½˜ą½²ą½¢ą¼‹', 'ལྷག་', 'པནར་', 'སངས་', 'སྤེན་', 'ཉི་'], 'weekdays_min' => ['ą½Ÿą¾³ą¼‹', 'ą½˜ą½²ą½¢ą¼‹', 'ལྷག་', 'པནར་', 'སངས་', 'སྤེན་', 'ཉི་'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['ངས་ཆ', 'ཕྱི་ཆ'], 'year' => ':count ཆརཔ', // less reliable 'y' => ':count ཆརཔ', // less reliable 'a_year' => ':count ཆརཔ', // less reliable 'month' => ':count ą½Ÿą¾³ą¼‹ą½–', // less reliable 'm' => ':count ą½Ÿą¾³ą¼‹ą½–', // less reliable 'a_month' => ':count ą½Ÿą¾³ą¼‹ą½–', // less reliable 'day' => ':count ཉི', // less reliable 'd' => ':count ཉི', // less reliable 'a_day' => ':count ཉི', // less reliable 'second' => ':count ཆ', // less reliable 's' => ':count ཆ', // less reliable 'a_second' => ':count ཆ', // less reliable ]); PK!ābĆ(( carbon/src/Carbon/Lang/ar_ER.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ar.php', [ ]); PK!r®åqvv carbon/src/Carbon/Lang/se_FI.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/se.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'months' => ['ođđajagemĆ”nnu', 'guovvamĆ”nnu', 'njukčamĆ”nnu', 'cuoŋomĆ”nnu', 'miessemĆ”nnu', 'geassemĆ”nnu', 'suoidnemĆ”nnu', 'borgemĆ”nnu', 'čakčamĆ”nnu', 'golggotmĆ”nnu', 'skĆ”bmamĆ”nnu', 'juovlamĆ”nnu'], 'months_short' => ['ođđj', 'guov', 'njuk', 'cuoŋ', 'mies', 'geas', 'suoi', 'borg', 'čakč', 'golg', 'skĆ”b', 'juov'], 'weekdays' => ['sotnabeaivi', 'mĆ”nnodat', 'disdat', 'gaskavahkku', 'duorastat', 'bearjadat', 'lĆ”vvordat'], 'weekdays_short' => ['so', 'mĆ”', 'di', 'ga', 'du', 'be', 'lĆ”'], 'weekdays_min' => ['so', 'mĆ”', 'di', 'ga', 'du', 'be', 'lĆ”'], 'meridiem' => ['i', 'e'], ]); PK!Š‹Y   carbon/src/Carbon/Lang/ha_NG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ha.php'; PK!ĆćVĘķķ+carbon/src/Carbon/Lang/ks_IN@devanagari.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - ks-gnome-trans-commits@lists.code.indlinux.net */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'M/D/YY', ], 'months' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤¼ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą„‡ą¤²', 'मई', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'ą¤øą¤æą¤¤ą¤®ą„ą¤¬ą¤°', 'ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°', 'ą¤Øą¤µą¤®ą„ą¤¬ą¤°', 'ą¤¦ą¤æą¤øą¤®ą„ą¤¬ą¤°'], 'months_short' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤¼ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą„‡ą¤²', 'मई', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'ą¤øą¤æą¤¤ą¤®ą„ą¤¬ą¤°', 'ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°', 'ą¤Øą¤µą¤®ą„ą¤¬ą¤°', 'ą¤¦ą¤æą¤øą¤®ą„ą¤¬ą¤°'], 'weekdays' => ['आऄवार', 'ą¤šą„…ą¤¼ą¤¦ą„ą¤°ą¤µą¤¾ą¤°', 'ą¤¬ą„‹ą¤®ą¤µą¤¾ą¤°', 'ą¤¬ą„ą¤µą¤¦ą¤µą¤¾ą¤°', 'ą¤¬ą„ą¤°ą¤øą¤µą¤¾ą¤°', 'ą¤¶ą„‹ą¤•ą„ą¤°ą¤µą¤¾ą¤°', 'ą¤¬ą¤Ÿą„ą¤µą¤¾ą¤°'], 'weekdays_short' => ['आऄ ', 'ą¤šą„…ą¤¼ą¤¦ą„ą¤°', 'ą¤¬ą„‹ą¤®', 'ą¤¬ą„ą¤µą¤¦', 'ą¤¬ą„ą¤°ą¤ø', 'ą¤¶ą„‹ą¤•ą„ą¤°', 'ą¤¬ą¤Ÿą„'], 'weekdays_min' => ['आऄ ', 'ą¤šą„…ą¤¼ą¤¦ą„ą¤°', 'ą¤¬ą„‹ą¤®', 'ą¤¬ą„ą¤µą¤¦', 'ą¤¬ą„ą¤°ą¤ø', 'ą¤¶ą„‹ą¤•ą„ą¤°', 'ą¤¬ą¤Ÿą„'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤¹ą„ą¤Ø', 'ą¤…ą¤Ŗą¤°ą¤¾ą¤¹ą„ą¤Ø'], ]); PK!x^“FF carbon/src/Carbon/Lang/en_LC.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!;–ęOOcarbon/src/Carbon/Lang/bhb.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/bhb_IN.php'; PK!Šfōc   carbon/src/Carbon/Lang/fr_KM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!šM¹‹ÕÕ carbon/src/Carbon/Lang/ve_ZA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['Phando', 'Luhuhi', 'į¹°hafamuhwe', 'Lambamai', 'Shundunthule', 'Fulwi', 'Fulwana', 'į¹°hangule', 'Khubvumedzi', 'Tshimedzi', 'įø¼ara', 'Nyendavhusiku'], 'months_short' => ['Pha', 'Luh', 'Fam', 'Lam', 'Shu', 'Lwi', 'Lwa', 'Ngu', 'Khu', 'Tsh', 'įø¼ar', 'Nye'], 'weekdays' => ['Swondaha', 'Musumbuluwo', 'įø¼avhuvhili', 'įø¼avhuraru', 'įø¼avhuṋa', 'įø¼avhuį¹±anu', 'Mugivhela'], 'weekdays_short' => ['Swo', 'Mus', 'Vhi', 'Rar', 'ṋa', 'į¹°an', 'Mug'], 'weekdays_min' => ['Swo', 'Mus', 'Vhi', 'Rar', 'ṋa', 'į¹°an', 'Mug'], 'day_of_first_week_of_year' => 1, // Too unreliable /* 'day' => ':count vhege', // less reliable 'd' => ':count vhege', // less reliable 'a_day' => ':count vhege', // less reliable 'hour' => ':count watshi', // less reliable 'h' => ':count watshi', // less reliable 'a_hour' => ':count watshi', // less reliable 'minute' => ':count watshi', // less reliable 'min' => ':count watshi', // less reliable 'a_minute' => ':count watshi', // less reliable 'second' => ':count Mu', // less reliable 's' => ':count Mu', // less reliable 'a_second' => ':count Mu', // less reliable 'week' => ':count vhege', 'w' => ':count vhege', 'a_week' => ':count vhege', */ ]); PK!ż!-QWWcarbon/src/Carbon/Lang/twq.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ses.php', [ 'meridiem' => ['Subbaahi', 'Zaarikay b'], ]); PK!ü¼ĻFĒĒ carbon/src/Carbon/Lang/os_RU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], 'months' => ['ŃŠ½Š²Š°Ń€Ń‹', 'февралы', 'Š¼Š°Ń€Ń‚ŃŠŠøŠ¹Ń‹', 'апрелы', 'майы', 'ŠøŃŽŠ½Ń‹', 'ŠøŃŽŠ»Ń‹', 'Š°Š²Š³ŃƒŃŃ‚Ń‹', 'ŃŠµŠ½Ń‚ŃŠ±Ń€Ń‹', 'Š¾ŠŗŃ‚ŃŠ±Ń€Ń‹', 'Š½Š¾ŃŠ±Ń€Ń‹', 'Гекабры'], 'months_short' => ['Янв', 'Фев', 'ŠœŠ°Ń€', 'Апр', 'Май', 'Š˜ŃŽŠ½', 'Š˜ŃŽŠ»', 'Авг', 'Ден', 'ŠžŠŗŃ‚', 'ŠŠ¾Ń', 'Дек'], 'weekdays' => ['Š„ŃƒŃ‹Ń†Š°ŃƒŠ±Š¾Š½', 'ŠšŃŠŃƒŃ‹Ń€ŠøŃĆ¦Ń€', 'Дыццæг', 'Æртыццæг', 'Цыппæрæм', 'ŠœŠ°Š¹Ń€Ć¦Š¼Š±Š¾Š½', 'Дабат'], 'weekdays_short' => ['Єцб', 'ŠšŃ€Ń', 'Дцг', 'Ɔрт', 'Цпр', 'ŠœŃ€Š±', 'Дбт'], 'weekdays_min' => ['Єцб', 'ŠšŃ€Ń', 'Дцг', 'Ɔрт', 'Цпр', 'ŠœŃ€Š±', 'Дбт'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'minute' => ':count гыццыл', // less reliable 'min' => ':count гыццыл', // less reliable 'a_minute' => ':count гыццыл', // less reliable 'second' => ':count æнГæр', // less reliable 's' => ':count æнГæр', // less reliable 'a_second' => ':count æнГæр', // less reliable 'year' => ':count аз', 'y' => ':count аз', 'a_year' => ':count аз', 'month' => ':count мӕй', 'm' => ':count мӕй', 'a_month' => ':count мӕй', 'week' => ':count ŠŗŃŠŃƒŃ‹Ń€Šø', 'w' => ':count ŠŗŃŠŃƒŃ‹Ń€Šø', 'a_week' => ':count ŠŗŃŠŃƒŃ‹Ń€Šø', 'day' => ':count бон', 'd' => ':count бон', 'a_day' => ':count бон', 'hour' => ':count сахат', 'h' => ':count сахат', 'a_hour' => ':count сахат', ]); PK!-¶|KĮĮ carbon/src/Carbon/Lang/es_NI.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Free Software Foundation, Inc. bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]); PK!"„™™ carbon/src/Carbon/Lang/de_LU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/de.php', [ 'formats' => [ 'L' => 'YYYY-MM-DD', ], ]); PK!ń?-k——carbon/src/Carbon/Lang/mua.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['comme', 'lilli'], 'weekdays' => ['Com’yakke', 'Comlaaɗii', 'Comzyiiɗii', 'Comkolle', 'ComkaldĒÉ“lii', 'Comgaisuu', 'Comzyeɓsuu'], 'weekdays_short' => ['Cya', 'Cla', 'Czi', 'Cko', 'Cka', 'Cga', 'Cze'], 'weekdays_min' => ['Cya', 'Cla', 'Czi', 'Cko', 'Cka', 'Cga', 'Cze'], 'months' => ['FÄ©i Loo', 'Cokcwaklaŋne', 'Cokcwaklii', 'FÄ©i Marfoo', 'MadĒĒuutĒbijaŋ', 'MamĒÅ‹gwĆ£afahbii', 'MamĒÅ‹gwĆ£alii', 'MadĒmbii', 'FÄ©i DĒÉ“lii', 'FÄ©i Mundaŋ', 'FÄ©i Gwahlle', 'FÄ©i Yuru'], 'months_short' => ['FLO', 'CLA', 'CKI', 'FMF', 'MAD', 'MBI', 'MLI', 'MAM', 'FDE', 'FMU', 'FGW', 'FYU'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], ]); PK!EV?DD carbon/src/Carbon/Lang/es_ES.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return require __DIR__.'/es.php'; PK!é ņ  carbon/src/Carbon/Lang/or_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM AP Linux Technology Center, Yamato Software Laboratory bug-glibc@gnu.org */ return [ 'diff_now' => 'ą¬¬ą¬°ą­ą¬¤ą­ą¬¤ą¬®ą¬¾ą¬Ø', 'diff_yesterday' => 'ଗତକାଲି', 'diff_tomorrow' => 'ą¬†ą¬øą¬Øą­ą¬¤ą¬¾ą¬•ą¬¾ą¬²ą¬æ', 'formats' => [ 'LT' => 'Oh:Om A', 'LTS' => 'Oh:Om:Os A', 'L' => 'OD-OM-OY', 'LL' => 'OD MMMM OY', 'LLL' => 'OD MMMM OY Oh:Om A', 'LLLL' => 'dddd OD MMMM OY Oh:Om A', ], 'months' => ['ą¬œą¬¾ą¬Øą­ą¬†ą¬°ą­€', 'ą¬«ą­‡ą¬¬ą­ƒą¬†ą¬°ą­€', 'ą¬®ą¬¾ą¬°ą­ą¬šą­ą¬š', 'ą¬…ą¬Ŗą­ą¬°ą­‡ą¬²', 'ମଇ', 'ଜୁନ', 'ą¬œą­ą¬²ą¬¾ą¬‡', 'ą¬…ą¬—ą¬·ą­ą¬Ÿ', 'ą¬øą­‡ą¬Ŗą­ą¬Ÿą­‡ą¬®ą­ą¬¬ą¬°', 'ą¬…ą¬•ą­ą¬Ÿą­‹ą¬¬ą¬°', 'ą¬Øą¬­ą­‡ą¬®ą­ą¬¬ą¬°', 'ą¬”ą¬æą¬øą­‡ą¬®ą­ą¬¬ą¬°'], 'months_short' => ['ą¬œą¬¾ą¬Øą­ą¬†ą¬°ą­€', 'ą¬«ą­‡ą¬¬ą­ƒą¬†ą¬°ą­€', 'ą¬®ą¬¾ą¬°ą­ą¬šą­ą¬š', 'ą¬…ą¬Ŗą­ą¬°ą­‡ą¬²', 'ମଇ', 'ଜୁନ', 'ą¬œą­ą¬²ą¬¾ą¬‡', 'ą¬…ą¬—ą¬·ą­ą¬Ÿ', 'ą¬øą­‡ą¬Ŗą­ą¬Ÿą­‡ą¬®ą­ą¬¬ą¬°', 'ą¬…ą¬•ą­ą¬Ÿą­‹ą¬¬ą¬°', 'ą¬Øą¬­ą­‡ą¬®ą­ą¬¬ą¬°', 'ą¬”ą¬æą¬øą­‡ą¬®ą­ą¬¬ą¬°'], 'weekdays' => ['ରବିବାର', 'ସୋମବାର', 'ą¬®ą¬™ą­ą¬—ą¬³ą¬¬ą¬¾ą¬°', 'ବୁଧବାର', 'ଗୁରୁବାର', 'ą¬¶ą­ą¬•ą­ą¬°ą¬¬ą¬¾ą¬°', 'ଶନିବାର'], 'weekdays_short' => ['ରବି', 'ସୋମ', 'ą¬®ą¬™ą­ą¬—ą¬³', 'ବୁଧ', 'ଗୁରୁ', 'ą¬¶ą­ą¬•ą­ą¬°', 'ଶନି'], 'weekdays_min' => ['ରବି', 'ସୋମ', 'ą¬®ą¬™ą­ą¬—ą¬³', 'ବୁଧ', 'ଗୁରୁ', 'ą¬¶ą­ą¬•ą­ą¬°', 'ଶନି'], 'day_of_first_week_of_year' => 1, 'alt_numbers' => ['ą­¦', 'ą­§', 'ą­Ø', 'ą­©', 'ą­Ŗ', 'ą­«', 'ą­¬', 'ą­­', 'ą­®', 'ą­Æ', 'ą­§ą­¦', 'ą­§ą­§', 'ą­§ą­Ø', 'ą­§ą­©', 'ą­§ą­Ŗ', 'ą­§ą­«', 'ą­§ą­¬', 'ą­§ą­­', 'ą­§ą­®', 'ą­§ą­Æ', 'ą­Øą­¦', 'ą­Øą­§', 'ą­Øą­Ø', 'ą­Øą­©', 'ą­Øą­Ŗ', 'ą­Øą­«', 'ą­Øą­¬', 'ą­Øą­­', 'ą­Øą­®', 'ą­Øą­Æ', 'ą­©ą­¦', 'ą­©ą­§', 'ą­©ą­Ø', 'ą­©ą­©', 'ą­©ą­Ŗ', 'ą­©ą­«', 'ą­©ą­¬', 'ą­©ą­­', 'ą­©ą­®', 'ą­©ą­Æ', 'ą­Ŗą­¦', 'ą­Ŗą­§', 'ą­Ŗą­Ø', 'ą­Ŗą­©', 'ą­Ŗą­Ŗ', 'ą­Ŗą­«', 'ą­Ŗą­¬', 'ą­Ŗą­­', 'ą­Ŗą­®', 'ą­Ŗą­Æ', 'ą­«ą­¦', 'ą­«ą­§', 'ą­«ą­Ø', 'ą­«ą­©', 'ą­«ą­Ŗ', 'ą­«ą­«', 'ą­«ą­¬', 'ą­«ą­­', 'ą­«ą­®', 'ą­«ą­Æ', '୬୦', '୬୧', '୬୨', '୬୩', '୬୪', '୬୫', '୬୬', '୬୭', '୬୮', '୬୯', 'ą­­ą­¦', 'ą­­ą­§', 'ą­­ą­Ø', 'ą­­ą­©', 'ą­­ą­Ŗ', 'ą­­ą­«', 'ą­­ą­¬', 'ą­­ą­­', 'ą­­ą­®', 'ą­­ą­Æ', '୮୦', '୮୧', '୮୨', '୮୩', '୮୪', '୮୫', '୮୬', '୮୭', '୮୮', '୮୯', 'ą­Æą­¦', 'ą­Æą­§', 'ą­Æą­Ø', 'ą­Æą­©', 'ą­Æą­Ŗ', 'ą­Æą­«', 'ą­Æą­¬', 'ą­Æą­­', 'ą­Æą­®', 'ą­Æą­Æ'], 'year' => ':count ą¬¬ą¬°ą­ą¬·', 'y' => ':count ବ.', 'month' => ':count ମାସ', 'm' => ':count ମା.', 'week' => ':count ą¬øą¬Ŗą­ą¬¤ą¬¾ą¬¹', 'w' => ':count ą¬øą¬Ŗą­ą¬¤ą¬¾.', 'day' => ':count ଦିନ', 'd' => ':count ଦିନ', 'hour' => ':count ą¬˜ą¬£ą­ą¬¤', 'h' => ':count ଘ.', 'minute' => ':count ମିନଟ', 'min' => ':count ମି.', 'second' => ':count ą¬øą­‡ą¬•ą¬£ą­ą¬¢', 's' => ':count ସେ.', 'ago' => ':time ą¬Ŗą­‚ą¬°ą­ą¬¬ą­‡', 'from_now' => ':timeରେ', ]; PK!óœĆ‚~~ carbon/src/Carbon/Lang/ar_SS.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/ar.php', [ 'formats' => [ 'L' => 'DD MMM, YYYY', ], 'months' => ['ŁŠŁ†Ų§ŁŠŲ±', 'فبراير', 'Ł…Ų§Ų±Ų³', 'Ų£ŲØŲ±ŁŠŁ„', 'Ł…Ų§ŁŠŁˆ', 'ŁŠŁˆŁ†ŁŠŁˆ', 'ŁŠŁˆŁ„ŁŠŁˆ', 'Ų£ŲŗŲ³Ų·Ų³', 'Ų³ŲØŲŖŁ…ŲØŲ±', 'أكتوبر', 'Ł†ŁˆŁŁ…ŲØŲ±', 'ŲÆŁŠŲ³Ł…ŲØŲ±'], 'months_short' => ['ŁŠŁ†Ų§', 'فبر', 'Ł…Ų§Ų±', 'Ų£ŲØŲ±', 'Ł…Ų§ŁŠ', 'ŁŠŁˆŁ†', 'ŁŠŁˆŁ„', 'Ų£ŲŗŲ³', 'Ų³ŲØŲŖ', 'أكت', 'Ł†ŁˆŁ', 'ديس'], 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'weekdays_min' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, ]); PK!ÅĪóĻ……carbon/src/Carbon/Lang/ca.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - mestremuten * - FranƧois B * - Marc Ordinas i Llopis * - Pere Orga * - JD Isaacks * - QuentĆ­ * - VĆ­ctor DĆ­az * - Xavi * - qcardona */ return [ 'year' => ':count any|:count anys', 'a_year' => 'un any|:count anys', 'y' => ':count any|:count anys', 'month' => ':count mes|:count mesos', 'a_month' => 'un mes|:count mesos', 'm' => ':count mes|:count mesos', 'week' => ':count setmana|:count setmanes', 'a_week' => 'una setmana|:count setmanes', 'w' => ':count setmana|:count setmanes', 'day' => ':count dia|:count dies', 'a_day' => 'un dia|:count dies', 'd' => ':count d', 'hour' => ':count hora|:count hores', 'a_hour' => 'una hora|:count hores', 'h' => ':count h', 'minute' => ':count minut|:count minuts', 'a_minute' => 'un minut|:count minuts', 'min' => ':count min', 'second' => ':count segon|:count segons', 'a_second' => 'uns segons|:count segons', 's' => ':count s', 'ago' => 'fa :time', 'from_now' => 'd\'aquĆ­ a :time', 'after' => ':time desprĆ©s', 'before' => ':time abans', 'diff_now' => 'ara mateix', 'diff_today' => 'avui', 'diff_today_regexp' => 'avui(?:\\s+a)?(?:\\s+les)?', 'diff_yesterday' => 'ahir', 'diff_yesterday_regexp' => 'ahir(?:\\s+a)?(?:\\s+les)?', 'diff_tomorrow' => 'demĆ ', 'diff_tomorrow_regexp' => 'demĆ (?:\\s+a)?(?:\\s+les)?', 'diff_before_yesterday' => 'abans d\'ahir', 'diff_after_tomorrow' => 'demĆ  passat', 'period_recurrences' => ':count cop|:count cops', 'period_interval' => 'cada :interval', 'period_start_date' => 'de :date', 'period_end_date' => 'fins a :date', 'formats' => [ 'LT' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM [de] YYYY', 'LLL' => 'D MMMM [de] YYYY [a les] H:mm', 'LLLL' => 'dddd D MMMM [de] YYYY [a les] H:mm', ], 'calendar' => [ 'sameDay' => function (\Carbon\CarbonInterface $current) { return '[avui a '.($current->hour !== 1 ? 'les' : 'la').'] LT'; }, 'nextDay' => function (\Carbon\CarbonInterface $current) { return '[demĆ  a '.($current->hour !== 1 ? 'les' : 'la').'] LT'; }, 'nextWeek' => function (\Carbon\CarbonInterface $current) { return 'dddd [a '.($current->hour !== 1 ? 'les' : 'la').'] LT'; }, 'lastDay' => function (\Carbon\CarbonInterface $current) { return '[ahir a '.($current->hour !== 1 ? 'les' : 'la').'] LT'; }, 'lastWeek' => function (\Carbon\CarbonInterface $current) { return '[el] dddd [passat a '.($current->hour !== 1 ? 'les' : 'la').'] LT'; }, 'sameElse' => 'L', ], 'ordinal' => function ($number, $period) { return $number.( ($period === 'w' || $period === 'W') ? 'a' : ( ($number === 1) ? 'r' : ( ($number === 2) ? 'n' : ( ($number === 3) ? 'r' : ( ($number === 4) ? 't' : 'ĆØ' ) ) ) ) ); }, 'months' => ['de gener', 'de febrer', 'de marƧ', 'd\'abril', 'de maig', 'de juny', 'de juliol', 'd\'agost', 'de setembre', 'd\'octubre', 'de novembre', 'de desembre'], 'months_standalone' => ['gener', 'febrer', 'marƧ', 'abril', 'maig', 'juny', 'juliol', 'agost', 'setembre', 'octubre', 'novembre', 'desembre'], 'months_short' => ['de gen.', 'de febr.', 'de marƧ', 'd\'abr.', 'de maig', 'de juny', 'de jul.', 'd\'ag.', 'de set.', 'd\'oct.', 'de nov.', 'de des.'], 'months_short_standalone' => ['gen.', 'febr.', 'marƧ', 'abr.', 'maig', 'juny', 'jul.', 'ag.', 'set.', 'oct.', 'nov.', 'des.'], 'months_regexp' => '/(D[oD]?[\s,]+MMMM?|L{2,4}|l{2,4})/', 'weekdays' => ['diumenge', 'dilluns', 'dimarts', 'dimecres', 'dijous', 'divendres', 'dissabte'], 'weekdays_short' => ['dg.', 'dl.', 'dt.', 'dc.', 'dj.', 'dv.', 'ds.'], 'weekdays_min' => ['dg', 'dl', 'dt', 'dc', 'dj', 'dv', 'ds'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' i '], 'meridiem' => ['a. m.', 'p. m.'], ]; PK!É? t   carbon/src/Carbon/Lang/cy_GB.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/cy.php'; PK!¬TAz   carbon/src/Carbon/Lang/pt_LU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/pt.php'; PK!Ym6]VV!carbon/src/Carbon/Lang/doi_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Red Hat Pune libc-alpha@sourceware.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤ą¤Ŗą„ą¤°ą„ˆą¤²', 'ą¤®ą„‡ą¤ˆ', 'ą¤œą„‚ą¤Ø', 'ą¤œą„‚ą¤²ą„ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'सितंबर', 'ą¤…ą¤•ą„ą¤¤ą„‚ą¤¬ą¤°', 'नवंबर', 'दिसंबर'], 'months_short' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤ą¤Ŗą„ą¤°ą„ˆą¤²', 'ą¤®ą„‡ą¤ˆ', 'ą¤œą„‚ą¤Ø', 'ą¤œą„‚ą¤²ą„ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'सितंबर', 'ą¤…ą¤•ą„ą¤¤ą„‚ą¤¬ą¤°', 'नवंबर', 'दिसंबर'], 'weekdays' => ['ऐतबार', 'ą¤øą„‹ą¤®ą¤¬ą¤¾ą¤°', 'मंगलबर', 'ą¤¬ą„ą¤§ą¤¬ą¤¾ą¤°', 'ą¤¬ą„€ą¤°ą¤¬ą¤¾ą¤°', 'ą¤¶ą„ą¤•ą„ą¤•ą¤°ą¤¬ą¤¾ą¤°', 'ą¤¶ą„ą¤Øą„€ą¤šą¤°ą¤¬ą¤¾ą¤°'], 'weekdays_short' => ['ऐत', 'ą¤øą„‹ą¤®', 'मंगल', 'ą¤¬ą„ą¤§', 'ą¤¬ą„€ą¤°', 'ą¤¶ą„ą¤•ą„ą¤•ą¤°', 'ą¤¶ą„ą¤Øą„€ą¤šą¤°'], 'weekdays_min' => ['ऐत', 'ą¤øą„‹ą¤®', 'मंगल', 'ą¤¬ą„ą¤§', 'ą¤¬ą„€ą¤°', 'ą¤¶ą„ą¤•ą„ą¤•ą¤°', 'ą¤¶ą„ą¤Øą„€ą¤šą¤°'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['ą¤øą¤žą¤‚', 'ą¤øą¤¬ą„‡ą¤°'], 'second' => ':count सङार', // less reliable 's' => ':count सङार', // less reliable 'a_second' => ':count सङार', // less reliable ]); PK!x^“FF carbon/src/Carbon/Lang/en_ER.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!oé   carbon/src/Carbon/Lang/sv_SE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/sv.php'; PK!Æbü3ZZ carbon/src/Carbon/Lang/de_IT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Matthias Dieter Wallno:fer libc-locales@sourceware.org */ return require __DIR__.'/de.php'; PK!źČĒ„ÜÜ carbon/src/Carbon/Lang/fy_NL.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Free Software Foundation, Inc. bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/fy.php', [ 'formats' => [ 'L' => 'DD-MM-YY', ], 'months' => ['Jannewaris', 'Febrewaris', 'Maart', 'April', 'Maaie', 'Juny', 'July', 'Augustus', 'Septimber', 'Oktober', 'Novimber', 'Desimber'], 'months_short' => ['Jan', 'Feb', 'Mrt', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Des'], 'weekdays' => ['Snein', 'Moandei', 'Tiisdei', 'Woansdei', 'Tongersdei', 'Freed', 'Sneon'], 'weekdays_short' => ['Sn', 'Mo', 'Ti', 'Wo', 'To', 'Fr', 'Sn'], 'weekdays_min' => ['Sn', 'Mo', 'Ti', 'Wo', 'To', 'Fr', 'Sn'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, ]); PK!äjä’’!carbon/src/Carbon/Lang/ber_MA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Pablo Saratxaga pablo@mandrakesoft.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], 'months' => ['yanvar', 'fevral', 'mart', 'aprel', 'may', 'iyun', 'iyul', 'avqust', 'sentyabr', 'oktyabr', 'noyabr', 'dekabr'], 'months_short' => ['Yan', 'Fev', 'Mar', 'Apr', 'May', 'İyn', 'İyl', 'Avq', 'Sen', 'Okt', 'Noy', 'Dek'], 'weekdays' => ['bazar günü', 'birinci gün', 'ikinci gün', 'üçüncü gün', 'dƶrdüncü gün', 'beşinci gün', 'altıncı gün'], 'weekdays_short' => ['baz', 'bir', 'iki', 'üçü', 'dƶr', 'beş', 'alt'], 'weekdays_min' => ['baz', 'bir', 'iki', 'üçü', 'dƶr', 'beş', 'alt'], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, ]); PK!Šfōc   carbon/src/Carbon/Lang/fr_RE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!śRkk!carbon/src/Carbon/Lang/gsw_FR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/gsw.php', [ 'meridiem' => ['vorm.', 'nam.'], 'months' => ['Januar', 'Februar', 'MƤrz', 'April', 'Mai', 'Juni', 'Juli', 'Auguscht', 'SeptƤmber', 'Oktoober', 'NovƤmber', 'DezƤmber'], 'first_day_of_week' => 1, 'formats' => [ 'LLL' => 'Do MMMM YYYY HH:mm', 'LLLL' => 'dddd, Do MMMM YYYY HH:mm', ], ]); PK!„HžĻBBcarbon/src/Carbon/Lang/rwk.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['utuko', 'kyiukonyi'], 'weekdays' => ['Jumapilyi', 'Jumatatuu', 'Jumanne', 'Jumatanu', 'Alhamisi', 'Ijumaa', 'Jumamosi'], 'weekdays_short' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'], 'weekdays_min' => ['Jpi', 'Jtt', 'Jnn', 'Jtn', 'Alh', 'Iju', 'Jmo'], 'months' => ['Januari', 'Februari', 'Machi', 'Aprilyi', 'Mei', 'Junyi', 'Julyai', 'Agusti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'], 'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK!C‡–莎 carbon/src/Carbon/Lang/ar_TN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Authors: * - JD Isaacks * - Atef Ben Ali (atefBB) * - Mohamed Sabil (mohamedsabil83) */ $months = [ 'Ų¬Ų§Ł†ŁŁŠ', 'فيفري', 'Ł…Ų§Ų±Ų³', 'Ų£ŁŲ±ŁŠŁ„', 'Ł…Ų§ŁŠ', 'Ų¬ŁˆŲ§Ł†', 'Ų¬ŁˆŁŠŁ„ŁŠŲ©', 'أوت', 'Ų³ŲØŲŖŁ…ŲØŲ±', 'أكتوبر', 'Ł†ŁˆŁŁ…ŲØŲ±', 'ŲÆŁŠŲ³Ł…ŲØŲ±', ]; return [ 'year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}Ų³Ł†ŲŖŁŠŁ†', ']2,11[:count Ų³Ł†ŁˆŲ§ŲŖ', ']10,Inf[:count سنة']), 'a_year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}Ų³Ł†ŲŖŁŠŁ†', ']2,11[:count Ų³Ł†ŁˆŲ§ŲŖ', ']10,Inf[:count سنة']), 'month' => implode('|', ['{0}:count ؓهر', '{1}ؓهر', '{2}Ų“Ł‡Ų±ŁŠŁ†', ']2,11[:count أؓهر', ']10,Inf[:count ؓهر']), 'a_month' => implode('|', ['{0}:count ؓهر', '{1}ؓهر', '{2}Ų“Ł‡Ų±ŁŠŁ†', ']2,11[:count أؓهر', ']10,Inf[:count ؓهر']), 'week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}Ų£Ų³ŲØŁˆŲ¹ŁŠŁ†', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']), 'a_week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}Ų£Ų³ŲØŁˆŲ¹ŁŠŁ†', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']), 'day' => implode('|', ['{0}:count ŁŠŁˆŁ…', '{1}ŁŠŁˆŁ…', '{2}ŁŠŁˆŁ…ŁŠŁ†', ']2,11[:count Ų£ŁŠŲ§Ł…', ']10,Inf[:count ŁŠŁˆŁ…']), 'a_day' => implode('|', ['{0}:count ŁŠŁˆŁ…', '{1}ŁŠŁˆŁ…', '{2}ŁŠŁˆŁ…ŁŠŁ†', ']2,11[:count Ų£ŁŠŲ§Ł…', ']10,Inf[:count ŁŠŁˆŁ…']), 'hour' => implode('|', ['{0}:count Ų³Ų§Ų¹Ų©', '{1}Ų³Ų§Ų¹Ų©', '{2}Ų³Ų§Ų¹ŲŖŁŠŁ†', ']2,11[:count Ų³Ų§Ų¹Ų§ŲŖ', ']10,Inf[:count Ų³Ų§Ų¹Ų©']), 'a_hour' => implode('|', ['{0}:count Ų³Ų§Ų¹Ų©', '{1}Ų³Ų§Ų¹Ų©', '{2}Ų³Ų§Ų¹ŲŖŁŠŁ†', ']2,11[:count Ų³Ų§Ų¹Ų§ŲŖ', ']10,Inf[:count Ų³Ų§Ų¹Ų©']), 'minute' => implode('|', ['{0}:count ŲÆŁ‚ŁŠŁ‚Ų©', '{1}ŲÆŁ‚ŁŠŁ‚Ų©', '{2}ŲÆŁ‚ŁŠŁ‚ŲŖŁŠŁ†', ']2,11[:count دقائق', ']10,Inf[:count ŲÆŁ‚ŁŠŁ‚Ų©']), 'a_minute' => implode('|', ['{0}:count ŲÆŁ‚ŁŠŁ‚Ų©', '{1}ŲÆŁ‚ŁŠŁ‚Ų©', '{2}ŲÆŁ‚ŁŠŁ‚ŲŖŁŠŁ†', ']2,11[:count دقائق', ']10,Inf[:count ŲÆŁ‚ŁŠŁ‚Ų©']), 'second' => implode('|', ['{0}:count Ų«Ų§Ł†ŁŠŲ©', '{1}Ų«Ų§Ł†ŁŠŲ©', '{2}Ų«Ų§Ł†ŁŠŲŖŁŠŁ†', ']2,11[:count Ų«ŁˆŲ§Ł†ŁŠ', ']10,Inf[:count Ų«Ų§Ł†ŁŠŲ©']), 'a_second' => implode('|', ['{0}:count Ų«Ų§Ł†ŁŠŲ©', '{1}Ų«Ų§Ł†ŁŠŲ©', '{2}Ų«Ų§Ł†ŁŠŲŖŁŠŁ†', ']2,11[:count Ų«ŁˆŲ§Ł†ŁŠ', ']10,Inf[:count Ų«Ų§Ł†ŁŠŲ©']), 'ago' => 'منذ :time', 'from_now' => 'في :time', 'after' => 'ŲØŲ¹ŲÆ :time', 'before' => 'قبل :time', 'diff_now' => 'الآن', 'diff_today' => 'Ų§Ł„ŁŠŁˆŁ…', 'diff_today_regexp' => 'Ų§Ł„ŁŠŁˆŁ…(?:\\s+على)?(?:\\s+الساعة)?', 'diff_yesterday' => 'أمس', 'diff_yesterday_regexp' => 'أمس(?:\\s+على)?(?:\\s+الساعة)?', 'diff_tomorrow' => 'ŲŗŲÆŲ§Ł‹', 'diff_tomorrow_regexp' => 'ŲŗŲÆŲ§(?:\\s+على)?(?:\\s+الساعة)?', 'diff_before_yesterday' => 'قبل الأمس', 'diff_after_tomorrow' => 'ŲØŲ¹ŲÆ ŲŗŲÆ', 'period_recurrences' => implode('|', ['{0}Ł…Ų±Ų©', '{1}Ł…Ų±Ų©', '{2}:count Ł…Ų±ŲŖŁŠŁ†', ']2,11[:count Ł…Ų±Ų§ŲŖ', ']10,Inf[:count Ł…Ų±Ų©']), 'period_interval' => 'ŁƒŁ„ :interval', 'period_start_date' => 'من :date', 'period_end_date' => '؄لى :date', 'months' => $months, 'months_short' => $months, 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų£Ų­ŲÆ', 'Ų§Ų«Ł†ŁŠŁ†', 'ثلاثاؔ', 'Ų£Ų±ŲØŲ¹Ų§Ų”', 'Ų®Ł…ŁŠŲ³', 'جمعة', 'Ų³ŲØŲŖ'], 'weekdays_min' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'list' => ['، ', ' و '], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Ų§Ł„ŁŠŁˆŁ… على الساعة] LT', 'nextDay' => '[ŲŗŲÆŲ§ على الساعة] LT', 'nextWeek' => 'dddd [على الساعة] LT', 'lastDay' => '[أمس على الساعة] LT', 'lastWeek' => 'dddd [على الساعة] LT', 'sameElse' => 'L', ], 'meridiem' => ['Ųµ', 'Ł…'], 'weekend' => [5, 6], ]; PK!_£hž””carbon/src/Carbon/Lang/guz.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['Ma', 'Mo'], 'weekdays' => ['Chumapiri', 'Chumatato', 'Chumaine', 'Chumatano', 'Aramisi', 'Ichuma', 'Esabato'], 'weekdays_short' => ['Cpr', 'Ctt', 'Cmn', 'Cmt', 'Ars', 'Icm', 'Est'], 'weekdays_min' => ['Cpr', 'Ctt', 'Cmn', 'Cmt', 'Ars', 'Icm', 'Est'], 'months' => ['Chanuari', 'Feburari', 'Machi', 'Apiriri', 'Mei', 'Juni', 'Chulai', 'Agosti', 'Septemba', 'Okitoba', 'Nobemba', 'Disemba'], 'months_short' => ['Can', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Cul', 'Agt', 'Sep', 'Okt', 'Nob', 'Dis'], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'month' => ':count omotunyi', // less reliable 'm' => ':count omotunyi', // less reliable 'a_month' => ':count omotunyi', // less reliable 'week' => ':count isano naibere', // less reliable 'w' => ':count isano naibere', // less reliable 'a_week' => ':count isano naibere', // less reliable 'second' => ':count ibere', // less reliable 's' => ':count ibere', // less reliable 'a_second' => ':count ibere', // less reliable 'year' => ':count omwaka', 'y' => ':count omwaka', 'a_year' => ':count omwaka', 'day' => ':count rituko', 'd' => ':count rituko', 'a_day' => ':count rituko', ]); PK!q~mq  &carbon/src/Carbon/Lang/en_US_Posix.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!óQJž??!carbon/src/Carbon/Lang/tpi_PG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Samsung Electronics Co., Ltd. akhilesh.k@samsung.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['Janueri', 'Februeri', 'Mas', 'Epril', 'Me', 'Jun', 'Julai', 'Ogas', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'], 'months_short' => ['Jan', 'Feb', 'Mas', 'Epr', 'Me', 'Jun', 'Jul', 'Oga', 'Sep', 'Okt', 'Nov', 'Des'], 'weekdays' => ['Sande', 'Mande', 'Tunde', 'Trinde', 'Fonde', 'Fraide', 'Sarere'], 'weekdays_short' => ['San', 'Man', 'Tun', 'Tri', 'Fon', 'Fra', 'Sar'], 'weekdays_min' => ['San', 'Man', 'Tun', 'Tri', 'Fon', 'Fra', 'Sar'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['biknait', 'apinun'], 'year' => 'yia :count', 'y' => 'yia :count', 'a_year' => 'yia :count', 'month' => ':count mun', 'm' => ':count mun', 'a_month' => ':count mun', 'week' => ':count wik', 'w' => ':count wik', 'a_week' => ':count wik', 'day' => ':count de', 'd' => ':count de', 'a_day' => ':count de', 'hour' => ':count aua', 'h' => ':count aua', 'a_hour' => ':count aua', 'minute' => ':count minit', 'min' => ':count minit', 'a_minute' => ':count minit', 'second' => ':count namba tu', 's' => ':count namba tu', 'a_second' => ':count namba tu', ]); PK!xł°¾¾carbon/src/Carbon/Lang/lrc.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'minute' => ':count هنر', // less reliable 'min' => ':count هنر', // less reliable 'a_minute' => ':count هنر', // less reliable ]); PK!œ•=NNcarbon/src/Carbon/Lang/lg.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/lg_UG.php'; PK!8ޱīŗŗ!carbon/src/Carbon/Lang/csb_PL.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - csb_PL locale Michal Ostrowski bug-glibc-locales@gnu.org */ return [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY-MM-DD', 'LL' => 'MMMM DD, YYYY', 'LLL' => 'DD MMM HH:mm', 'LLLL' => 'MMMM DD, YYYY HH:mm', ], 'months' => ['stĆ«cznika', 'gromicznika', 'strĆ«miannika', 'łżëkwiata', 'maja', 'czerwińca', 'lĆ«pińca', 'zĆ©lnika', 'sĆ©wnika', 'rujana', 'lĆ«stopadnika', 'gòdnika'], 'months_short' => ['stĆ«', 'gro', 'str', 'łżë', 'maj', 'cze', 'lĆ«p', 'zĆ©l', 'sĆ©w', 'ruj', 'lĆ«s', 'gòd'], 'weekdays' => ['niedzela', 'pòniedzÓłk', 'wtórk', 'strzoda', 'czwiĆ“rtk', 'piątk', 'sobòta'], 'weekdays_short' => ['nie', 'pòn', 'wtó', 'str', 'czw', 'pią', 'sob'], 'weekdays_min' => ['nie', 'pòn', 'wtó', 'str', 'czw', 'pią', 'sob'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' a téż '], 'two_words_connector' => ' a téż ', 'year' => ':count rok', 'month' => ':count miesiąc', 'week' => ':count tidzéń', 'day' => ':count dzéń', 'hour' => ':count gòdzĆ«na', 'minute' => ':count minuta', 'second' => ':count sekunda', ]; PK!Šfōc   carbon/src/Carbon/Lang/fr_GN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!x^“FF carbon/src/Carbon/Lang/en_SL.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!ÄƏz• • carbon/src/Carbon/Lang/da.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Rune MĆønnike * - FranƧois B * - codenhagen * - JD Isaacks * - Jens Herlevsen * - Ulrik McArdle (mcardle) * - Frederik Sauer (FrittenKeeZ) */ return [ 'year' => ':count Ć„r|:count Ć„r', 'a_year' => 'et Ć„r|:count Ć„r', 'y' => ':count Ć„r|:count Ć„r', 'month' => ':count mĆ„ned|:count mĆ„neder', 'a_month' => 'en mĆ„ned|:count mĆ„neder', 'm' => ':count mdr.', 'week' => ':count uge|:count uger', 'a_week' => 'en uge|:count uger', 'w' => ':count u.', 'day' => ':count dag|:count dage', 'a_day' => ':count dag|:count dage', 'd' => ':count d.', 'hour' => ':count time|:count timer', 'a_hour' => 'en time|:count timer', 'h' => ':count t.', 'minute' => ':count minut|:count minutter', 'a_minute' => 'et minut|:count minutter', 'min' => ':count min.', 'second' => ':count sekund|:count sekunder', 'a_second' => 'fĆ„ sekunder|:count sekunder', 's' => ':count s.', 'ago' => ':time siden', 'from_now' => 'om :time', 'after' => ':time efter', 'before' => ':time fĆør', 'diff_now' => 'nu', 'diff_today' => 'i dag', 'diff_today_regexp' => 'i dag(?:\\s+kl.)?', 'diff_yesterday' => 'i gĆ„r', 'diff_yesterday_regexp' => 'i gĆ„r(?:\\s+kl.)?', 'diff_tomorrow' => 'i morgen', 'diff_tomorrow_regexp' => 'i morgen(?:\\s+kl.)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D. MMMM YYYY', 'LLL' => 'D. MMMM YYYY HH:mm', 'LLLL' => 'dddd [d.] D. MMMM YYYY [kl.] HH:mm', ], 'calendar' => [ 'sameDay' => '[i dag kl.] LT', 'nextDay' => '[i morgen kl.] LT', 'nextWeek' => 'pĆ„ dddd [kl.] LT', 'lastDay' => '[i gĆ„r kl.] LT', 'lastWeek' => '[i] dddd[s kl.] LT', 'sameElse' => 'L', ], 'ordinal' => ':number.', 'months' => ['januar', 'februar', 'marts', 'april', 'maj', 'juni', 'juli', 'august', 'september', 'oktober', 'november', 'december'], 'months_short' => ['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'], 'weekdays' => ['sĆøndag', 'mandag', 'tirsdag', 'onsdag', 'torsdag', 'fredag', 'lĆørdag'], 'weekdays_short' => ['sĆøn', 'man', 'tir', 'ons', 'tor', 'fre', 'lĆør'], 'weekdays_min' => ['sĆø', 'ma', 'ti', 'on', 'to', 'fr', 'lĆø'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' og '], ]; PK!įīÅ)) carbon/src/Carbon/Lang/be_BY.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/be.php', [ 'months' => ['ŃŃ‚ŃƒŠ“Š·ŠµŠ½Ń', 'Š»ŃŽŃ‚Š°Š³Š°', 'сакавіка', 'красавіка', 'Š¼Š°Ń', 'Ń‡ŃŃ€Š²ŠµŠ½Ń', 'Š»Ń–ŠæŠµŠ½Ń', 'Š¶Š½Ń–ŃžŠ½Ń', 'Š²ŠµŃ€Š°ŃŠ½Ń', 'кастрычніка', 'лістапаГа', 'ŃŠ½ŠµŠ¶Š½Ń'], 'months_short' => ['сту', 'Š»ŃŽŃ‚', 'сак', 'кра', 'Š¼Š°Ń', 'чэр', 'ліп', 'жні', 'вер', 'кас', 'ліс', 'сне'], 'weekdays' => ['ŠŃŠ“Š·ŠµŠ»Ń', 'ŠŸŠ°Š½ŃŠ“Š·ŠµŠ»Š°Šŗ', 'ŠŃžŃ‚Š¾Ń€Š°Šŗ', 'ДераГа', 'Чацвер', 'ŠŸŃŃ‚Š½Ń–Ń†Š°', 'Š”ŃƒŠ±Š¾Ń‚Š°'], 'weekdays_short' => ['ŠŃŠ“', 'Пан', 'ŠŃžŃ‚', 'ДрГ', 'Чцв', 'ŠŸŃŃ‚', 'Дуб'], 'weekdays_min' => ['ŠŃŠ“', 'Пан', 'ŠŃžŃ‚', 'ДрГ', 'Чцв', 'ŠŸŃŃ‚', 'Дуб'], ]); PK!ābĆ(( carbon/src/Carbon/Lang/ar_IL.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ar.php', [ ]); PK!ļKˆC·· carbon/src/Carbon/Lang/nb_SJ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/nb.php', [ 'formats' => [ 'LL' => 'D. MMM YYYY', 'LLL' => 'D. MMMM YYYY, HH:mm', 'LLLL' => 'dddd D. MMMM YYYY, HH:mm', ], ]); PK!Ø?щŻŻ carbon/src/Carbon/Lang/sw_KE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Kamusi Project Martin Benjamin locales@kamusi.org */ return array_replace_recursive(require __DIR__.'/sw.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['Januari', 'Februari', 'Machi', 'Aprili', 'Mei', 'Juni', 'Julai', 'Agosti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'], 'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'], 'weekdays' => ['Jumapili', 'Jumatatu', 'Jumanne', 'Jumatano', 'Alhamisi', 'Ijumaa', 'Jumamosi'], 'weekdays_short' => ['J2', 'J3', 'J4', 'J5', 'Alh', 'Ij', 'J1'], 'weekdays_min' => ['J2', 'J3', 'J4', 'J5', 'Alh', 'Ij', 'J1'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['asubuhi', 'alasiri'], ]); PK!é ö½{{carbon/src/Carbon/Lang/es.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Kunal Marwaha * - kostas * - FranƧois B * - Tim Fish * - Claire Coloma * - Steven Heinrich * - JD Isaacks * - Raphael Amorim * - Jorge Y. Castillo * - VĆ­ctor DĆ­az * - Diego * - Sebastian Thierer * - quinterocesar * - Daniel Commesse LiĆ©vanos (danielcommesse) * - Pete Scopes (pdscopes) */ return [ 'year' => ':count aƱo|:count aƱos', 'a_year' => 'un aƱo|:count aƱos', 'y' => ':count aƱo|:count aƱos', 'month' => ':count mes|:count meses', 'a_month' => 'un mes|:count meses', 'm' => ':count mes|:count meses', 'week' => ':count semana|:count semanas', 'a_week' => 'una semana|:count semanas', 'w' => ':countsem', 'day' => ':count dĆ­a|:count dĆ­as', 'a_day' => 'un dĆ­a|:count dĆ­as', 'd' => ':countd', 'hour' => ':count hora|:count horas', 'a_hour' => 'una hora|:count horas', 'h' => ':counth', 'minute' => ':count minuto|:count minutos', 'a_minute' => 'un minuto|:count minutos', 'min' => ':countm', 'second' => ':count segundo|:count segundos', 'a_second' => 'unos segundos|:count segundos', 's' => ':counts', 'millisecond' => ':count milisegundo|:count milisegundos', 'a_millisecond' => 'un milisegundo|:count milisegundos', 'ms' => ':countms', 'microsecond' => ':count microsegundo|:count microsegundos', 'a_microsecond' => 'un microsegundo|:count microsegundos', 'µs' => ':countµs', 'ago' => 'hace :time', 'from_now' => 'en :time', 'after' => ':time despuĆ©s', 'before' => ':time antes', 'diff_now' => 'ahora mismo', 'diff_today' => 'hoy', 'diff_today_regexp' => 'hoy(?:\\s+a)?(?:\\s+las)?', 'diff_yesterday' => 'ayer', 'diff_yesterday_regexp' => 'ayer(?:\\s+a)?(?:\\s+las)?', 'diff_tomorrow' => 'maƱana', 'diff_tomorrow_regexp' => 'maƱana(?:\\s+a)?(?:\\s+las)?', 'diff_before_yesterday' => 'anteayer', 'diff_after_tomorrow' => 'pasado maƱana', 'formats' => [ 'LT' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D [de] MMMM [de] YYYY', 'LLL' => 'D [de] MMMM [de] YYYY H:mm', 'LLLL' => 'dddd, D [de] MMMM [de] YYYY H:mm', ], 'calendar' => [ 'sameDay' => function (\Carbon\CarbonInterface $current) { return '[hoy a la'.($current->hour !== 1 ? 's' : '').'] LT'; }, 'nextDay' => function (\Carbon\CarbonInterface $current) { return '[maƱana a la'.($current->hour !== 1 ? 's' : '').'] LT'; }, 'nextWeek' => function (\Carbon\CarbonInterface $current) { return 'dddd [a la'.($current->hour !== 1 ? 's' : '').'] LT'; }, 'lastDay' => function (\Carbon\CarbonInterface $current) { return '[ayer a la'.($current->hour !== 1 ? 's' : '').'] LT'; }, 'lastWeek' => function (\Carbon\CarbonInterface $current) { return '[el] dddd [pasado a la'.($current->hour !== 1 ? 's' : '').'] LT'; }, 'sameElse' => 'L', ], 'months' => ['enero', 'febrero', 'marzo', 'abril', 'mayo', 'junio', 'julio', 'agosto', 'septiembre', 'octubre', 'noviembre', 'diciembre'], 'months_short' => ['ene', 'feb', 'mar', 'abr', 'may', 'jun', 'jul', 'ago', 'sep', 'oct', 'nov', 'dic'], 'mmm_suffix' => '.', 'ordinal' => ':numberĀŗ', 'weekdays' => ['domingo', 'lunes', 'martes', 'miĆ©rcoles', 'jueves', 'viernes', 'sĆ”bado'], 'weekdays_short' => ['dom.', 'lun.', 'mar.', 'miĆ©.', 'jue.', 'vie.', 'sĆ”b.'], 'weekdays_min' => ['do', 'lu', 'ma', 'mi', 'ju', 'vi', 'sĆ”'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' y '], 'meridiem' => ['a. m.', 'p. m.'], ]; PK!ČPwō ō carbon/src/Carbon/Lang/nl.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Roy * - Stephan * - FranƧois B * - Tim Fish * - Kevin Huang * - Jacob Middag * - JD Isaacks * - Roy * - Stephan * - FranƧois B * - Tim Fish * - Jacob Middag * - JD Isaacks * - Propaganistas * - MegaXLR * - adriaanzon * - MonkeyPhysics * - JeroenG * - RikSomers * - proclame * - Rik de Groot (hwdegroot) */ return [ 'year' => ':count jaar|:count jaar', 'a_year' => 'een jaar|:count jaar', 'y' => ':countj', 'month' => ':count maand|:count maanden', 'a_month' => 'een maand|:count maanden', 'm' => ':countmnd', 'week' => ':count week|:count weken', 'a_week' => 'een week|:count weken', 'w' => ':countw', 'day' => ':count dag|:count dagen', 'a_day' => 'een dag|:count dagen', 'd' => ':countd', 'hour' => ':count uur|:count uur', 'a_hour' => 'een uur|:count uur', 'h' => ':countu', 'minute' => ':count minuut|:count minuten', 'a_minute' => 'een minuut|:count minuten', 'min' => ':countmin', 'second' => ':count seconde|:count seconden', 'a_second' => 'een paar seconden|:count seconden', 's' => ':counts', 'ago' => ':time geleden', 'from_now' => 'over :time', 'after' => ':time later', 'before' => ':time eerder', 'diff_now' => 'nu', 'diff_today' => 'vandaag', 'diff_today_regexp' => 'vandaag(?:\\s+om)?', 'diff_yesterday' => 'gisteren', 'diff_yesterday_regexp' => 'gisteren(?:\\s+om)?', 'diff_tomorrow' => 'morgen', 'diff_tomorrow_regexp' => 'morgen(?:\\s+om)?', 'diff_after_tomorrow' => 'overmorgen', 'diff_before_yesterday' => 'eergisteren', 'period_recurrences' => ':count keer', 'period_interval' => function ($interval) { /** @var string $output */ $output = preg_replace('/^(een|ƩƩn|1)\s+/', '', $interval); if (preg_match('/^(een|ƩƩn|1)( jaar|j| uur|u)/', $interval)) { return "elk $output"; } return "elke $output"; }, 'period_start_date' => 'van :date', 'period_end_date' => 'tot :date', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD-MM-YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[vandaag om] LT', 'nextDay' => '[morgen om] LT', 'nextWeek' => 'dddd [om] LT', 'lastDay' => '[gisteren om] LT', 'lastWeek' => '[afgelopen] dddd [om] LT', 'sameElse' => 'L', ], 'ordinal' => function ($number) { return $number.(($number === 1 || $number === 8 || $number >= 20) ? 'ste' : 'de'); }, 'months' => ['januari', 'februari', 'maart', 'april', 'mei', 'juni', 'juli', 'augustus', 'september', 'oktober', 'november', 'december'], 'months_short' => ['jan', 'feb', 'mrt', 'apr', 'mei', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'], 'mmm_suffix' => '.', 'weekdays' => ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'], 'weekdays_short' => ['zo.', 'ma.', 'di.', 'wo.', 'do.', 'vr.', 'za.'], 'weekdays_min' => ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' en '], 'meridiem' => ['\'s ochtends', '\'s middags'], ]; PK!W]FŒNNcarbon/src/Carbon/Lang/an.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/an_ES.php'; PK!x^“FF carbon/src/Carbon/Lang/en_UG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!ś'JNNcarbon/src/Carbon/Lang/iu.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/iu_CA.php'; PK!x^“FF carbon/src/Carbon/Lang/en_FI.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!pŠ:__ carbon/src/Carbon/Lang/fr_MA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/fr.php', [ 'first_day_of_week' => 6, 'weekend' => [5, 6], ]); PK!Ė>”ŚŚ!carbon/src/Carbon/Lang/yuw_PG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Information from native speakers Hannah Sarvasy nungon.localization@gmail.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['jenuari', 'febuari', 'mas', 'epril', 'mei', 'jun', 'julai', 'ƶgus', 'septemba', 'ƶktoba', 'nƶwemba', 'diksemba'], 'months_short' => ['jen', 'feb', 'mas', 'epr', 'mei', 'jun', 'jul', 'ƶgu', 'sep', 'ƶkt', 'nƶw', 'dis'], 'weekdays' => ['sƶnda', 'mƶnda', 'sinda', 'mitiwƶ', 'sogipbono', 'nenggo', 'sƶndanggie'], 'weekdays_short' => ['sƶn', 'mƶn', 'sin', 'mit', 'soi', 'nen', 'sab'], 'weekdays_min' => ['sƶn', 'mƶn', 'sin', 'mit', 'soi', 'nen', 'sab'], 'day_of_first_week_of_year' => 1, ]); PK!5ėżuOOcarbon/src/Carbon/Lang/raj.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/raj_IN.php'; PK!g~б ± carbon/src/Carbon/Lang/cv.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - FranƧois B * - JD Isaacks */ return [ 'year' => ':count ҫул', 'a_year' => '{1}ŠæÓ—Ń€ ҫул|:count ҫул', 'month' => ':count ŃƒŠ¹Ó‘Ń…', 'a_month' => '{1}ŠæÓ—Ń€ ŃƒŠ¹Ó‘Ń…|:count ŃƒŠ¹Ó‘Ń…', 'week' => ':count ŃŃ€Š½Šµ', 'a_week' => '{1}ŠæÓ—Ń€ ŃŃ€Š½Šµ|:count ŃŃ€Š½Šµ', 'day' => ':count кун', 'a_day' => '{1}ŠæÓ—Ń€ кун|:count кун', 'hour' => ':count сехет', 'a_hour' => '{1}ŠæÓ—Ń€ сехет|:count сехет', 'minute' => ':count Š¼ŠøŠ½ŃƒŃ‚', 'a_minute' => '{1}ŠæÓ—Ń€ Š¼ŠøŠ½ŃƒŃ‚|:count Š¼ŠøŠ½ŃƒŃ‚', 'second' => ':count Ņ«ŠµŠŗŠŗŃƒŠ½Ń‚', 'a_second' => '{1}ŠæÓ—Ń€-ŠøŠŗ Ņ«ŠµŠŗŠŗŃƒŠ½Ń‚|:count Ņ«ŠµŠŗŠŗŃƒŠ½Ń‚', 'ago' => ':time ŠŗŠ°ŃŠ»Š»Š°', 'from_now' => function ($time) { return $time.(preg_match('/сехет$/', $time) ? 'рен' : (preg_match('/ҫул/', $time) ? 'тан' : 'ран')); }, 'diff_yesterday' => 'Ӗнер', 'diff_today' => 'ŠŸŠ°ŃŠ½', 'diff_tomorrow' => 'Ыран', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD-MM-YYYY', 'LL' => 'YYYY [Ņ«ŃƒŠ»Ń…Šø] MMMM [ŃƒŠ¹Ó‘Ń…Ó—Š½] D[-Š¼Ó—ŃˆÓ—]', 'LLL' => 'YYYY [Ņ«ŃƒŠ»Ń…Šø] MMMM [ŃƒŠ¹Ó‘Ń…Ó—Š½] D[-Š¼Ó—ŃˆÓ—], HH:mm', 'LLLL' => 'dddd, YYYY [Ņ«ŃƒŠ»Ń…Šø] MMMM [ŃƒŠ¹Ó‘Ń…Ó—Š½] D[-Š¼Ó—ŃˆÓ—], HH:mm', ], 'calendar' => [ 'sameDay' => '[ŠŸŠ°ŃŠ½] LT [сехетре]', 'nextDay' => '[Ыран] LT [сехетре]', 'nextWeek' => '[Ҫитес] dddd LT [сехетре]', 'lastDay' => '[Ӗнер] LT [сехетре]', 'lastWeek' => '[Š˜Ń€Ń‚Š½Ó—] dddd LT [сехетре]', 'sameElse' => 'L', ], 'ordinal' => ':number-Š¼Ó—Ńˆ', 'months' => ['кӑрлач', 'нарӑс', 'пуш', 'ака', 'май', 'ҫӗртме', 'утӑ', 'Ņ«ŃƒŃ€Š»Š°', 'авӑн', 'ŃŽŠæŠ°', 'чӳк', 'Ń€Š°ŃˆŃ‚Š°Š²'], 'months_short' => ['ŠŗÓ‘Ń€', 'нар', 'пуш', 'ака', 'май', 'ҫӗр', 'утӑ', 'Ņ«ŃƒŃ€', 'авн', 'ŃŽŠæŠ°', 'чӳк', 'Ń€Š°Ńˆ'], 'weekdays' => ['Š²Ń‹Ń€ŃŠ°Ń€Š½ŠøŠŗŃƒŠ½', 'Ń‚ŃƒŠ½Ń‚ŠøŠŗŃƒŠ½', 'Ń‹Ń‚Š»Š°Ń€ŠøŠŗŃƒŠ½', 'ŃŽŠ½ŠŗŃƒŠ½', 'ŠŗÓ—Ņ«Š½ŠµŃ€Š½ŠøŠŗŃƒŠ½', 'ŃŃ€Š½ŠµŠŗŃƒŠ½', 'ŃˆÓ‘Š¼Š°Ń‚ŠŗŃƒŠ½'], 'weekdays_short' => ['выр', 'Ń‚ŃƒŠ½', 'ытл', 'ŃŽŠ½', 'ŠŗÓ—Ņ«', 'ŃŃ€Š½', 'ŃˆÓ‘Š¼'], 'weekdays_min' => ['вр', 'тн', 'ыт', 'ŃŽŠ½', 'ŠŗŅ«', 'эр', 'шм'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' тата '], ]; PK!Šfōc   carbon/src/Carbon/Lang/fr_SN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!u®čNNcarbon/src/Carbon/Lang/as.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/as_IN.php'; PK!ŠQ¾   carbon/src/Carbon/Lang/gl_ES.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/gl.php'; PK!WÄy  carbon/src/Carbon/Lang/sv.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - Kristoffer Snabb * - JD Isaacks * - Jens Herlevsen * - Nightpine * - Anders Nygren (litemerafrukt) */ return [ 'year' => ':count Ć„r', 'a_year' => 'ett Ć„r|:count Ć„r', 'y' => ':count Ć„r', 'month' => ':count mĆ„nad|:count mĆ„nader', 'a_month' => 'en mĆ„nad|:count mĆ„nader', 'm' => ':count mĆ„n', 'week' => ':count vecka|:count veckor', 'a_week' => 'en vecka|:count veckor', 'w' => ':count v', 'day' => ':count dag|:count dagar', 'a_day' => 'en dag|:count dagar', 'd' => ':count dgr', 'hour' => ':count timme|:count timmar', 'a_hour' => 'en timme|:count timmar', 'h' => ':count tim', 'minute' => ':count minut|:count minuter', 'a_minute' => 'en minut|:count minuter', 'min' => ':count min', 'second' => ':count sekund|:count sekunder', 'a_second' => 'nĆ„gra sekunder|:count sekunder', 's' => ':count s', 'ago' => 'fƶr :time sedan', 'from_now' => 'om :time', 'after' => ':time efter', 'before' => ':time fƶre', 'diff_now' => 'nu', 'diff_today' => 'I dag', 'diff_yesterday' => 'i gĆ„r', 'diff_yesterday_regexp' => 'I gĆ„r', 'diff_tomorrow' => 'i morgon', 'diff_tomorrow_regexp' => 'I morgon', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY-MM-DD', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY [kl.] HH:mm', 'LLLL' => 'dddd D MMMM YYYY [kl.] HH:mm', ], 'calendar' => [ 'sameDay' => '[I dag] LT', 'nextDay' => '[I morgon] LT', 'nextWeek' => '[PĆ„] dddd LT', 'lastDay' => '[I gĆ„r] LT', 'lastWeek' => '[I] dddd[s] LT', 'sameElse' => 'L', ], 'ordinal' => function ($number) { $lastDigit = $number % 10; return $number.( (~~($number % 100 / 10) === 1) ? 'e' : ( ($lastDigit === 1 || $lastDigit === 2) ? 'a' : 'e' ) ); }, 'months' => ['januari', 'februari', 'mars', 'april', 'maj', 'juni', 'juli', 'augusti', 'september', 'oktober', 'november', 'december'], 'months_short' => ['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'], 'weekdays' => ['sƶndag', 'mĆ„ndag', 'tisdag', 'onsdag', 'torsdag', 'fredag', 'lƶrdag'], 'weekdays_short' => ['sƶn', 'mĆ„n', 'tis', 'ons', 'tors', 'fre', 'lƶr'], 'weekdays_min' => ['sƶ', 'mĆ„', 'ti', 'on', 'to', 'fr', 'lƶ'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' och '], 'meridiem' => ['fm', 'em'], ]; PK!Ńā·%carbon/src/Carbon/Lang/zh_Hans_MO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/zh_Hans.php'; PK!ęÜÜ carbon/src/Carbon/Lang/ti_ER.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ge'ez Frontier Foundation locales@geez.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['ጄሪ', 'įˆˆįŠ«į‰²į‰µ', 'įˆ˜įŒ‹į‰¢į‰µ', 'įˆšį‹«į‹į‹«', 'įŒįŠ•į‰¦į‰µ', 'ሰነ', 'įˆ“įˆįˆˆ', 'įŠįˆ“įˆ°', 'įˆ˜įˆµįŠØįˆØįˆ', 'įŒ„į‰…įˆį‰²', 'įˆ•į‹³įˆ­', 'į‰³įˆ•įˆ³įˆµ'], 'months_short' => ['ጄሪ ', 'įˆˆįŠ«į‰²', 'įˆ˜įŒ‹į‰¢', 'įˆšį‹«į‹', 'įŒįŠ•į‰¦', 'ሰነ ', 'įˆ“įˆįˆˆ', 'įŠįˆ“įˆ°', 'መስከ', 'įŒ„į‰…įˆ', 'įˆ•į‹³įˆ­', 'į‰³įˆ•įˆ³'], 'weekdays' => ['įˆ°įŠ•į‰ į‰µ', 'įˆ°įŠ‘į‹­', 'įˆ°įˆ‰įˆµ', 'įˆØį‰”į‹•', 'įˆ“įˆ™įˆµ', 'į‹“įˆ­į‰¢', 'į‰€į‹³įˆ'], 'weekdays_short' => ['įˆ°įŠ•į‰ ', 'įˆ°įŠ‘į‹­', 'įˆ°įˆ‰įˆµ', 'įˆØį‰”į‹•', 'įˆ“įˆ™įˆµ', 'į‹“įˆ­į‰¢', 'į‰€į‹³įˆ'], 'weekdays_min' => ['įˆ°įŠ•į‰ ', 'įˆ°įŠ‘į‹­', 'įˆ°įˆ‰įˆµ', 'įˆØį‰”į‹•', 'įˆ“įˆ™įˆµ', 'į‹“įˆ­į‰¢', 'į‰€į‹³įˆ'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'meridiem' => ['įŠ•įŒ‰įˆ† įˆ°į‹“į‰°', 'į‹µįˆ•įˆ­ įˆ°į‹“į‰µ'], 'year' => ':count į‹“įˆ˜į‰µ', 'y' => ':count į‹“įˆ˜į‰µ', 'a_year' => ':count į‹“įˆ˜į‰µ', 'month' => 'į‹ˆįˆ­įˆ’ :count', 'm' => 'į‹ˆįˆ­įˆ’ :count', 'a_month' => 'į‹ˆįˆ­įˆ’ :count', 'week' => ':count įˆ°įˆ™įŠ•', 'w' => ':count įˆ°įˆ™įŠ•', 'a_week' => ':count įˆ°įˆ™įŠ•', 'day' => ':count įˆ˜į‹“įˆį‰²', 'd' => ':count įˆ˜į‹“įˆį‰²', 'a_day' => ':count įˆ˜į‹“įˆį‰²', 'hour' => ':count įˆ°į‹“į‰µ', 'h' => ':count įˆ°į‹“į‰µ', 'a_hour' => ':count įˆ°į‹“į‰µ', 'minute' => ':count ደቒቕ', 'min' => ':count ደቒቕ', 'a_minute' => ':count ደቒቕ', 'second' => ':count įˆ°įŠØįŠ•į‹µ', 's' => ':count įˆ°įŠØįŠ•į‹µ', 'a_second' => ':count įˆ°įŠØįŠ•į‹µ', ]); PK!YÓb1«« carbon/src/Carbon/Lang/es_DO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - kostas * - FranƧois B * - Tim Fish * - Chiel Robben * - Claire Coloma * - Steven Heinrich * - JD Isaacks * - Raphael Amorim */ return array_replace_recursive(require __DIR__.'/es.php', [ 'diff_before_yesterday' => 'anteayer', 'formats' => [ 'LT' => 'h:mm A', 'LTS' => 'h:mm:ss A', 'LLL' => 'D [de] MMMM [de] YYYY h:mm A', 'LLLL' => 'dddd, D [de] MMMM [de] YYYY h:mm A', ], ]); PK!Ų'½#carbon/src/Carbon/Lang/yue_Hant.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/zh_Hant.php'; PK!‡ädŖ¦¦ carbon/src/Carbon/Lang/es_HN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]); PK!O DĘMM!carbon/src/Carbon/Lang/agr_PE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - somosazucar.org libc-alpha@sourceware.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['Petsatin', 'Kupitin', 'Uyaitin', 'Tayutin', 'Kegketin', 'Tegmatin', 'Kuntutin', 'Yagkujutin', 'Daiktatin', 'Ipamtatin', 'Shinutin', 'Sakamtin'], 'months_short' => ['Pet', 'Kup', 'Uya', 'Tay', 'Keg', 'Teg', 'Kun', 'Yag', 'Dait', 'Ipam', 'Shin', 'Sak'], 'weekdays' => ['Tuntuamtin', 'Achutin', 'Kugkuktin', 'Saketin', 'Shimpitin', 'Imaptin', 'Bataetin'], 'weekdays_short' => ['Tun', 'Ach', 'Kug', 'Sak', 'Shim', 'Im', 'Bat'], 'weekdays_min' => ['Tun', 'Ach', 'Kug', 'Sak', 'Shim', 'Im', 'Bat'], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 7, 'meridiem' => ['VM', 'NM'], 'year' => ':count yaya', // less reliable 'y' => ':count yaya', // less reliable 'a_year' => ':count yaya', // less reliable 'month' => ':count nantu', // less reliable 'm' => ':count nantu', // less reliable 'a_month' => ':count nantu', // less reliable 'day' => ':count nayaim', // less reliable 'd' => ':count nayaim', // less reliable 'a_day' => ':count nayaim', // less reliable 'hour' => ':count kuwiÅ”', // less reliable 'h' => ':count kuwiÅ”', // less reliable 'a_hour' => ':count kuwiÅ”', // less reliable ]); PK!‰ųęn££carbon/src/Carbon/Lang/ky.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - acutexyz * - Josh Soref * - FranƧois B * - Chyngyz Arystan uulu * - Chyngyz * - acutexyz * - Josh Soref * - FranƧois B * - Chyngyz Arystan uulu */ return [ 'year' => ':count жыл', 'a_year' => '{1}бир жыл|:count жыл', 'y' => ':count жыл', 'month' => ':count ай', 'a_month' => '{1}бир ай|:count ай', 'm' => ':count ай', 'week' => ':count апта', 'a_week' => '{1}бир апта|:count апта', 'w' => ':count апт.', 'day' => ':count күн', 'a_day' => '{1}бир күн|:count күн', 'd' => ':count күн', 'hour' => ':count саат', 'a_hour' => '{1}бир саат|:count саат', 'h' => ':count саат.', 'minute' => ':count мүнөт', 'a_minute' => '{1}бир мүнөт|:count мүнөт', 'min' => ':count мүн.', 'second' => ':count секунГ', 'a_second' => '{1}бирнече секунГ|:count секунГ', 's' => ':count сек.', 'ago' => ':time Š¼ŃƒŃ€ŃƒŠ½', 'from_now' => ':time ичинГе', 'diff_now' => 'азыр', 'diff_today' => 'Бүгүн', 'diff_today_regexp' => 'Бүгүн(?:\\s+саат)?', 'diff_yesterday' => 'ŠŗŠµŃ‡ŃŃ', 'diff_yesterday_regexp' => 'ŠšŠµŃ‡Šµ(?:\\s+саат)?', 'diff_tomorrow' => 'ŃŃ€Ń‚ŠµŅ£', 'diff_tomorrow_regexp' => 'Эртең(?:\\s+саат)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Бүгүн саат] LT', 'nextDay' => '[Эртең саат] LT', 'nextWeek' => 'dddd [саат] LT', 'lastDay' => '[ŠšŠµŃ‡Šµ саат] LT', 'lastWeek' => '[Өткен аптанын] dddd [күнү] [саат] LT', 'sameElse' => 'L', ], 'ordinal' => function ($number) { static $suffixes = [ 0 => '-чү', 1 => '-чи', 2 => '-чи', 3 => '-чү', 4 => '-чү', 5 => '-чи', 6 => '-чы', 7 => '-чи', 8 => '-чи', 9 => '-чу', 10 => '-чу', 20 => '-чы', 30 => '-чу', 40 => '-чы', 50 => '-чү', 60 => '-чы', 70 => '-чи', 80 => '-чи', 90 => '-чу', 100 => '-чү', ]; return $number.($suffixes[$number] ?? $suffixes[$number % 10] ?? $suffixes[$number >= 100 ? 100 : -1] ?? ''); }, 'months' => ['ŃŠ½Š²Š°Ń€ŃŒ', 'Ń„ŠµŠ²Ń€Š°Š»ŃŒ', 'март', 'Š°ŠæŃ€ŠµŠ»ŃŒ', 'май', 'ŠøŃŽŠ½ŃŒ', 'ŠøŃŽŠ»ŃŒ', 'Š°Š²Š³ŃƒŃŃ‚', 'ŃŠµŠ½Ń‚ŃŠ±Ń€ŃŒ', 'Š¾ŠŗŃ‚ŃŠ±Ń€ŃŒ', 'Š½Š¾ŃŠ±Ń€ŃŒ', 'Š“ŠµŠŗŠ°Š±Ń€ŃŒ'], 'months_short' => ['ŃŠ½Š²', 'фев', 'март', 'апр', 'май', 'ŠøŃŽŠ½ŃŒ', 'ŠøŃŽŠ»ŃŒ', 'авг', 'сен', 'окт', 'Š½Š¾Ń', 'Гек'], 'weekdays' => ['Š–ŠµŠŗŃˆŠµŠ¼Š±Šø', 'Š”ŅÆŠ¹ŃˆÓ©Š¼Š±ŅÆ', 'Шейшемби', 'ŠØŠ°Ń€ŃˆŠµŠ¼Š±Šø', 'Š‘ŠµŠ¹ŃˆŠµŠ¼Š±Šø', 'Š–ŃƒŠ¼Š°', 'Ишемби'], 'weekdays_short' => ['Жек', 'Дүй', 'Шей', 'Шар', 'Бей', 'Š–ŃƒŠ¼', 'Ише'], 'weekdays_min' => ['Š–Šŗ', 'Дй', 'Шй', 'ŠØŃ€', 'Бй', 'Жм', 'Иш'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => ' ', 'meridiem' => ['таңкы', 'Ń‚ŅÆŃˆŃ‚Ó©Š½ кийинки'], ]; PK! šŲ°Q Q carbon/src/Carbon/Lang/nn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - Alexander TĆømmerĆ„s * - Ƙystein * - JD Isaacks * - Gaute Hvoslef Kvalnes (gaute) */ return [ 'year' => ':count Ć„r', 'a_year' => 'eit Ć„r|:count Ć„r', 'y' => ':count Ć„r', 'month' => ':count mĆ„nad|:count mĆ„nader', 'a_month' => 'ein mĆ„nad|:count mĆ„nader', 'm' => ':count md', 'week' => ':count veke|:count veker', 'a_week' => 'ei veke|:count veker', 'w' => ':countv', 'day' => ':count dag|:count dagar', 'a_day' => 'ein dag|:count dagar', 'd' => ':countd', 'hour' => ':count time|:count timar', 'a_hour' => 'ein time|:count timar', 'h' => ':countt', 'minute' => ':count minutt', 'a_minute' => 'eit minutt|:count minutt', 'min' => ':countm', 'second' => ':count sekund', 'a_second' => 'nokre sekund|:count sekund', 's' => ':counts', 'ago' => ':time sidan', 'from_now' => 'om :time', 'after' => ':time etter', 'before' => ':time fĆør', 'diff_today' => 'I dag', 'diff_yesterday' => 'I gĆ„r', 'diff_yesterday_regexp' => 'I gĆ„r(?:\\s+klokka)?', 'diff_tomorrow' => 'I morgon', 'diff_tomorrow_regexp' => 'I morgon(?:\\s+klokka)?', 'diff_today_regexp' => 'I dag(?:\\s+klokka)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D. MMMM YYYY', 'LLL' => 'D. MMMM YYYY [kl.] H:mm', 'LLLL' => 'dddd D. MMMM YYYY [kl.] HH:mm', ], 'calendar' => [ 'sameDay' => '[I dag klokka] LT', 'nextDay' => '[I morgon klokka] LT', 'nextWeek' => 'dddd [klokka] LT', 'lastDay' => '[I gĆ„r klokka] LT', 'lastWeek' => '[FĆøregĆ„ande] dddd [klokka] LT', 'sameElse' => 'L', ], 'ordinal' => ':number.', 'months' => ['januar', 'februar', 'mars', 'april', 'mai', 'juni', 'juli', 'august', 'september', 'oktober', 'november', 'desember'], 'months_short' => ['jan', 'feb', 'mar', 'apr', 'mai', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'des'], 'weekdays' => ['sundag', 'mĆ„ndag', 'tysdag', 'onsdag', 'torsdag', 'fredag', 'laurdag'], 'weekdays_short' => ['sun', 'mĆ„n', 'tys', 'ons', 'tor', 'fre', 'lau'], 'weekdays_min' => ['su', 'mĆ„', 'ty', 'on', 'to', 'fr', 'la'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' og '], 'meridiem' => ['f.m.', 'e.m.'], ]; PK!F1ką ą carbon/src/Carbon/Lang/ko.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Kunal Marwaha * - FourwingsY * - FranƧois B * - Jason Katz-Brown * - Seokjun Kim * - Junho Kim * - JD Isaacks * - Juwon Kim */ return [ 'year' => ':countė…„', 'a_year' => '{1}ģ¼ė…„|]1,Inf[:countė…„', 'y' => ':countė…„', 'month' => ':countź°œģ›”', 'a_month' => '{1}ķ•œė‹¬|]1,Inf[:countź°œģ›”', 'm' => ':countź°œģ›”', 'week' => ':count주', 'a_week' => '{1}ģ¼ģ£¼ģ¼|]1,Inf[:count 주', 'w' => ':countģ£¼ģ¼', 'day' => ':countģ¼', 'a_day' => '{1}ķ•˜ė£Ø|]1,Inf[:countģ¼', 'd' => ':countģ¼', 'hour' => ':countģ‹œź°„', 'a_hour' => '{1}ķ•œģ‹œź°„|]1,Inf[:countģ‹œź°„', 'h' => ':countģ‹œź°„', 'minute' => ':countė¶„', 'a_minute' => '{1}ģ¼ė¶„|]1,Inf[:countė¶„', 'min' => ':countė¶„', 'second' => ':count쓈', 'a_second' => '{1}ėŖ‡ģ“ˆ|]1,Inf[:count쓈', 's' => ':count쓈', 'ago' => ':time ģ „', 'from_now' => ':time 후', 'after' => ':time 후', 'before' => ':time ģ „', 'diff_now' => 'ģ§€źøˆ', 'diff_today' => '오늘', 'diff_yesterday' => 'ģ–“ģ œ', 'diff_tomorrow' => 'ė‚“ģ¼', 'formats' => [ 'LT' => 'A h:mm', 'LTS' => 'A h:mm:ss', 'L' => 'YYYY.MM.DD.', 'LL' => 'YYYYė…„ MMMM Dģ¼', 'LLL' => 'YYYYė…„ MMMM Dģ¼ A h:mm', 'LLLL' => 'YYYYė…„ MMMM Dģ¼ dddd A h:mm', ], 'calendar' => [ 'sameDay' => '오늘 LT', 'nextDay' => 'ė‚“ģ¼ LT', 'nextWeek' => 'dddd LT', 'lastDay' => 'ģ–“ģ œ LT', 'lastWeek' => 'ģ§€ė‚œģ£¼ dddd LT', 'sameElse' => 'L', ], 'ordinal' => function ($number, $period) { switch ($period) { case 'd': case 'D': case 'DDD': return $number.'ģ¼'; case 'M': return $number.'ģ›”'; case 'w': case 'W': return $number.'주'; default: return $number; } }, 'meridiem' => ['ģ˜¤ģ „', 'ģ˜¤ķ›„'], 'months' => ['1ģ›”', '2ģ›”', '3ģ›”', '4ģ›”', '5ģ›”', '6ģ›”', '7ģ›”', '8ģ›”', '9ģ›”', '10ģ›”', '11ģ›”', '12ģ›”'], 'months_short' => ['1ģ›”', '2ģ›”', '3ģ›”', '4ģ›”', '5ģ›”', '6ģ›”', '7ģ›”', '8ģ›”', '9ģ›”', '10ģ›”', '11ģ›”', '12ģ›”'], 'weekdays' => ['ģ¼ģš”ģ¼', 'ģ›”ģš”ģ¼', 'ķ™”ģš”ģ¼', 'ģˆ˜ģš”ģ¼', 'ėŖ©ģš”ģ¼', 'źøˆģš”ģ¼', 'ķ† ģš”ģ¼'], 'weekdays_short' => ['ģ¼', 'ģ›”', 'ķ™”', '수', 'ėŖ©', '금', '토'], 'weekdays_min' => ['ģ¼', 'ģ›”', 'ķ™”', '수', 'ėŖ©', '금', '토'], 'list' => ' ', ]; PK!‚ŹćČČ carbon/src/Carbon/Lang/en_IE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Martin McWhorter * - FranƧois B * - Chris Cartlidge * - JD Isaacks */ return array_replace_recursive(require __DIR__.'/en.php', [ 'from_now' => 'in :time', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD-MM-YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, ]); PK!2o>Ø   carbon/src/Carbon/Lang/ik_CA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - pablo@mandriva.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['SiqiƱƱaatchiaq', 'SiqiƱƱaasrugruk', 'Paniqsiqsiivik', 'QilÄ”ich Tatqiat', 'Suppivik', 'IĔƱivik', 'Itchavik', 'TiƱƱivik', 'AmiÄ”aiqsivik', 'Sikkuvik', 'Nippivik', 'SiqiƱĔiįø·aq'], 'months_short' => ['SƱt', 'SƱs', 'Pan', 'Qil', 'Sup', 'IĔƱ', 'Itc', 'TiƱ', 'Ami', 'Sik', 'Nip', 'Siq'], 'weekdays' => ['MinÄ”uiqsioiq', 'Savałłiq', 'Ilaqtchiioiq', 'Qitchiioiq', 'Sisamiioiq', 'Tallimmiioiq', 'MaqinÄ”uoiq'], 'weekdays_short' => ['Min', 'Sav', 'Ila', 'Qit', 'Sis', 'Tal', 'Maq'], 'weekdays_min' => ['Min', 'Sav', 'Ila', 'Qit', 'Sis', 'Tal', 'Maq'], 'day_of_first_week_of_year' => 1, 'year' => ':count ukiuq', 'y' => ':count ukiuq', 'a_year' => ':count ukiuq', 'month' => ':count Tatqiat', 'm' => ':count Tatqiat', 'a_month' => ':count Tatqiat', 'week' => ':count tatqiat', // less reliable 'w' => ':count tatqiat', // less reliable 'a_week' => ':count tatqiat', // less reliable 'day' => ':count siqiƱiq', // less reliable 'd' => ':count siqiƱiq', // less reliable 'a_day' => ':count siqiƱiq', // less reliable 'hour' => ':count Siįø·a', // less reliable 'h' => ':count Siįø·a', // less reliable 'a_hour' => ':count Siįø·a', // less reliable 'second' => ':count iĔƱiq', // less reliable 's' => ':count iĔƱiq', // less reliable 'a_second' => ':count iĔƱiq', // less reliable ]); PK!oé   carbon/src/Carbon/Lang/sv_FI.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/sv.php'; PK!­>Ś° ° carbon/src/Carbon/Lang/hi.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - abhimanyu003 * - Josh Soref * - JD Isaacks */ return [ 'year' => 'ą¤ą¤• ą¤µą¤°ą„ą¤·|:count ą¤µą¤°ą„ą¤·', 'y' => '1 ą¤µą¤°ą„ą¤·|:count ą¤µą¤°ą„ą¤·ą„‹ą¤‚', 'month' => 'ą¤ą¤• ą¤®ą¤¹ą„€ą¤Øą„‡|:count ą¤®ą¤¹ą„€ą¤Øą„‡', 'm' => '1 माह|:count ą¤®ą¤¹ą„€ą¤Øą„‡', 'week' => '1 ą¤øą¤Ŗą„ą¤¤ą¤¾ą¤¹|:count ą¤øą¤Ŗą„ą¤¤ą¤¾ą¤¹', 'w' => '1 ą¤øą¤Ŗą„ą¤¤ą¤¾ą¤¹|:count ą¤øą¤Ŗą„ą¤¤ą¤¾ą¤¹', 'day' => 'ą¤ą¤• दिन|:count दिन', 'd' => '1 दिन|:count ą¤¦ą¤æą¤Øą„‹ą¤‚', 'hour' => 'ą¤ą¤• ą¤˜ą¤‚ą¤Ÿą¤¾|:count ą¤˜ą¤‚ą¤Ÿą„‡', 'h' => '1 ą¤˜ą¤‚ą¤Ÿą¤¾|:count ą¤˜ą¤‚ą¤Ÿą„‡', 'minute' => 'ą¤ą¤• मिनट|:count मिनट', 'min' => '1 मिनट|:count ą¤®ą¤æą¤Øą¤Ÿą„‹ą¤‚', 'second' => 'ą¤•ą„ą¤› ą¤¹ą„€ ą¤•ą„ą¤·ą¤£|:count ą¤øą„‡ą¤•ą¤‚ą¤”', 's' => '1 ą¤øą„‡ą¤•ą¤‚ą¤”|:count ą¤øą„‡ą¤•ą¤‚ą¤”', 'ago' => ':time ą¤Ŗą¤¹ą¤²ą„‡', 'from_now' => ':time ą¤®ą„‡ą¤‚', 'after' => ':time ą¤•ą„‡ बाद', 'before' => ':time ą¤•ą„‡ ą¤Ŗą¤¹ą¤²ą„‡', 'diff_now' => 'अब', 'diff_today' => 'ą¤†ą¤œ', 'diff_yesterday' => 'कल', 'diff_tomorrow' => 'कल', 'formats' => [ 'LT' => 'A h:mm ą¤¬ą¤œą„‡', 'LTS' => 'A h:mm:ss ą¤¬ą¤œą„‡', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY, A h:mm ą¤¬ą¤œą„‡', 'LLLL' => 'dddd, D MMMM YYYY, A h:mm ą¤¬ą¤œą„‡', ], 'calendar' => [ 'sameDay' => '[ą¤†ą¤œ] LT', 'nextDay' => '[कल] LT', 'nextWeek' => 'dddd, LT', 'lastDay' => '[कल] LT', 'lastWeek' => '[ą¤Ŗą¤æą¤›ą¤²ą„‡] dddd, LT', 'sameElse' => 'L', ], 'meridiem' => function ($hour) { if ($hour < 4) { return 'रात'; } if ($hour < 10) { return 'ą¤øą„ą¤¬ą¤¹'; } if ($hour < 17) { return 'ą¤¦ą„‹ą¤Ŗą¤¹ą¤°'; } if ($hour < 20) { return 'शाम'; } return 'रात'; }, 'months' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤¼ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą„ˆą¤²', 'मई', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'ą¤øą¤æą¤¤ą¤®ą„ą¤¬ą¤°', 'ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°', 'ą¤Øą¤µą¤®ą„ą¤¬ą¤°', 'ą¤¦ą¤æą¤øą¤®ą„ą¤¬ą¤°'], 'months_short' => ['जन.', 'फ़र.', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą„ˆ.', 'मई', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤².', 'अग.', 'सित.', 'ą¤…ą¤•ą„ą¤Ÿą„‚.', 'नव.', 'दिस.'], 'weekdays' => ['रविवार', 'ą¤øą„‹ą¤®ą¤µą¤¾ą¤°', 'मंगलवार', 'ą¤¬ą„ą¤§ą¤µą¤¾ą¤°', 'ą¤—ą„ą¤°ą„‚ą¤µą¤¾ą¤°', 'ą¤¶ą„ą¤•ą„ą¤°ą¤µą¤¾ą¤°', 'शनिवार'], 'weekdays_short' => ['रवि', 'ą¤øą„‹ą¤®', 'मंगल', 'ą¤¬ą„ą¤§', 'ą¤—ą„ą¤°ą„‚', 'ą¤¶ą„ą¤•ą„ą¤°', 'शनि'], 'weekdays_min' => ['र', 'ą¤øą„‹', 'मं', 'ą¤¬ą„', 'ą¤—ą„', 'ą¤¶ą„', 'श'], 'list' => [', ', ' और '], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, 'weekend' => [0, 0], ]; PK!•IĆ^~~ carbon/src/Carbon/Lang/ar_QA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/ar.php', [ 'formats' => [ 'L' => 'DD MMM, YYYY', ], 'months' => ['ŁŠŁ†Ų§ŁŠŲ±', 'فبراير', 'Ł…Ų§Ų±Ų³', 'Ų£ŲØŲ±ŁŠŁ„', 'Ł…Ų§ŁŠŁˆ', 'ŁŠŁˆŁ†ŁŠŁˆ', 'ŁŠŁˆŁ„ŁŠŁˆ', 'Ų£ŲŗŲ³Ų·Ų³', 'Ų³ŲØŲŖŁ…ŲØŲ±', 'أكتوبر', 'Ł†ŁˆŁŁ…ŲØŲ±', 'ŲÆŁŠŲ³Ł…ŲØŲ±'], 'months_short' => ['ŁŠŁ†Ų§', 'فبر', 'Ł…Ų§Ų±', 'Ų£ŲØŲ±', 'Ł…Ų§ŁŠ', 'ŁŠŁˆŁ†', 'ŁŠŁˆŁ„', 'Ų£ŲŗŲ³', 'Ų³ŲØŲŖ', 'أكت', 'Ł†ŁˆŁ', 'ديس'], 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'weekdays_min' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, ]); PK!-¶|KĮĮ carbon/src/Carbon/Lang/es_PR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Free Software Foundation, Inc. bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]); PK!óhīœœ carbon/src/Carbon/Lang/ar_MA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Authors: * - Josh Soref * - JD Isaacks * - Atef Ben Ali (atefBB) * - Mohamed Sabil (mohamedsabil83) */ $months = [ 'ŁŠŁ†Ų§ŁŠŲ±', 'فبراير', 'Ł…Ų§Ų±Ų³', 'Ų£ŲØŲ±ŁŠŁ„', 'Ł…Ų§ŁŠ', 'ŁŠŁˆŁ†ŁŠŁˆ', 'ŁŠŁˆŁ„ŁŠŁˆŲ²', 'ŲŗŲ“ŲŖ', 'ؓتنبر', 'أكتوبر', 'Ł†ŁˆŁ†ŲØŲ±', 'دجنبر', ]; return [ 'year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}Ų³Ł†ŲŖŁŠŁ†', ']2,11[:count Ų³Ł†ŁˆŲ§ŲŖ', ']10,Inf[:count سنة']), 'a_year' => implode('|', ['{0}:count سنة', '{1}سنة', '{2}Ų³Ł†ŲŖŁŠŁ†', ']2,11[:count Ų³Ł†ŁˆŲ§ŲŖ', ']10,Inf[:count سنة']), 'month' => implode('|', ['{0}:count ؓهر', '{1}ؓهر', '{2}Ų“Ł‡Ų±ŁŠŁ†', ']2,11[:count أؓهر', ']10,Inf[:count ؓهر']), 'a_month' => implode('|', ['{0}:count ؓهر', '{1}ؓهر', '{2}Ų“Ł‡Ų±ŁŠŁ†', ']2,11[:count أؓهر', ']10,Inf[:count ؓهر']), 'week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}Ų£Ų³ŲØŁˆŲ¹ŁŠŁ†', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']), 'a_week' => implode('|', ['{0}:count أسبوع', '{1}أسبوع', '{2}Ų£Ų³ŲØŁˆŲ¹ŁŠŁ†', ']2,11[:count أسابيع', ']10,Inf[:count أسبوع']), 'day' => implode('|', ['{0}:count ŁŠŁˆŁ…', '{1}ŁŠŁˆŁ…', '{2}ŁŠŁˆŁ…ŁŠŁ†', ']2,11[:count Ų£ŁŠŲ§Ł…', ']10,Inf[:count ŁŠŁˆŁ…']), 'a_day' => implode('|', ['{0}:count ŁŠŁˆŁ…', '{1}ŁŠŁˆŁ…', '{2}ŁŠŁˆŁ…ŁŠŁ†', ']2,11[:count Ų£ŁŠŲ§Ł…', ']10,Inf[:count ŁŠŁˆŁ…']), 'hour' => implode('|', ['{0}:count Ų³Ų§Ų¹Ų©', '{1}Ų³Ų§Ų¹Ų©', '{2}Ų³Ų§Ų¹ŲŖŁŠŁ†', ']2,11[:count Ų³Ų§Ų¹Ų§ŲŖ', ']10,Inf[:count Ų³Ų§Ų¹Ų©']), 'a_hour' => implode('|', ['{0}:count Ų³Ų§Ų¹Ų©', '{1}Ų³Ų§Ų¹Ų©', '{2}Ų³Ų§Ų¹ŲŖŁŠŁ†', ']2,11[:count Ų³Ų§Ų¹Ų§ŲŖ', ']10,Inf[:count Ų³Ų§Ų¹Ų©']), 'minute' => implode('|', ['{0}:count ŲÆŁ‚ŁŠŁ‚Ų©', '{1}ŲÆŁ‚ŁŠŁ‚Ų©', '{2}ŲÆŁ‚ŁŠŁ‚ŲŖŁŠŁ†', ']2,11[:count دقائق', ']10,Inf[:count ŲÆŁ‚ŁŠŁ‚Ų©']), 'a_minute' => implode('|', ['{0}:count ŲÆŁ‚ŁŠŁ‚Ų©', '{1}ŲÆŁ‚ŁŠŁ‚Ų©', '{2}ŲÆŁ‚ŁŠŁ‚ŲŖŁŠŁ†', ']2,11[:count دقائق', ']10,Inf[:count ŲÆŁ‚ŁŠŁ‚Ų©']), 'second' => implode('|', ['{0}:count Ų«Ų§Ł†ŁŠŲ©', '{1}Ų«Ų§Ł†ŁŠŲ©', '{2}Ų«Ų§Ł†ŁŠŲŖŁŠŁ†', ']2,11[:count Ų«ŁˆŲ§Ł†ŁŠ', ']10,Inf[:count Ų«Ų§Ł†ŁŠŲ©']), 'a_second' => implode('|', ['{0}:count Ų«Ų§Ł†ŁŠŲ©', '{1}Ų«Ų§Ł†ŁŠŲ©', '{2}Ų«Ų§Ł†ŁŠŲŖŁŠŁ†', ']2,11[:count Ų«ŁˆŲ§Ł†ŁŠ', ']10,Inf[:count Ų«Ų§Ł†ŁŠŲ©']), 'ago' => 'منذ :time', 'from_now' => 'في :time', 'after' => 'ŲØŲ¹ŲÆ :time', 'before' => 'قبل :time', 'diff_now' => 'الآن', 'diff_today' => 'Ų§Ł„ŁŠŁˆŁ…', 'diff_today_regexp' => 'Ų§Ł„ŁŠŁˆŁ…(?:\\s+على)?(?:\\s+الساعة)?', 'diff_yesterday' => 'أمس', 'diff_yesterday_regexp' => 'أمس(?:\\s+على)?(?:\\s+الساعة)?', 'diff_tomorrow' => 'ŲŗŲÆŲ§Ł‹', 'diff_tomorrow_regexp' => 'ŲŗŲÆŲ§(?:\\s+على)?(?:\\s+الساعة)?', 'diff_before_yesterday' => 'قبل الأمس', 'diff_after_tomorrow' => 'ŲØŲ¹ŲÆ ŲŗŲÆ', 'period_recurrences' => implode('|', ['{0}Ł…Ų±Ų©', '{1}Ł…Ų±Ų©', '{2}:count Ł…Ų±ŲŖŁŠŁ†', ']2,11[:count Ł…Ų±Ų§ŲŖ', ']10,Inf[:count Ł…Ų±Ų©']), 'period_interval' => 'ŁƒŁ„ :interval', 'period_start_date' => 'من :date', 'period_end_date' => '؄لى :date', 'months' => $months, 'months_short' => $months, 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų£Ų­ŲÆ', 'Ų§Ų«Ł†ŁŠŁ†', 'ثلاثاؔ', 'Ų£Ų±ŲØŲ¹Ų§Ų”', 'Ų®Ł…ŁŠŲ³', 'جمعة', 'Ų³ŲØŲŖ'], 'weekdays_min' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'list' => ['، ', ' و '], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Ų§Ł„ŁŠŁˆŁ… على الساعة] LT', 'nextDay' => '[ŲŗŲÆŲ§ على الساعة] LT', 'nextWeek' => 'dddd [على الساعة] LT', 'lastDay' => '[أمس على الساعة] LT', 'lastWeek' => 'dddd [على الساعة] LT', 'sameElse' => 'L', ], 'meridiem' => ['Ųµ', 'Ł…'], 'weekend' => [5, 6], ]; PK!k°˜l  #carbon/src/Carbon/Lang/vai_Vaii.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/vai.php'; PK!n±R¬OOcarbon/src/Carbon/Lang/crh.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/crh_UA.php'; PK!Ā5NoČČ carbon/src/Carbon/Lang/en_NZ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - Mayank Badola * - Luke McGregor * - JD Isaacks */ return array_replace_recursive(require __DIR__.'/en.php', [ 'from_now' => 'in :time', 'formats' => [ 'LT' => 'h:mm A', 'LTS' => 'h:mm:ss A', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY h:mm A', 'LLLL' => 'dddd, D MMMM YYYY h:mm A', ], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, ]); PK!ąyųå¹¹carbon/src/Carbon/Lang/tl.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return [ 'year' => ':count taon', 'a_year' => '{1}isang taon|:count taon', 'month' => ':count buwan', 'a_month' => '{1}isang buwan|:count buwan', 'week' => ':count linggo', 'a_week' => '{1}isang linggo|:count linggo', 'day' => ':count araw', 'a_day' => '{1}isang araw|:count araw', 'hour' => ':count oras', 'a_hour' => '{1}isang oras|:count oras', 'minute' => ':count minuto', 'a_minute' => '{1}isang minuto|:count minuto', 'min' => ':count min.', 'second' => ':count segundo', 'a_second' => '{1}ilang segundo|:count segundo', 's' => ':count seg.', 'ago' => ':time ang nakalipas', 'from_now' => 'sa loob ng :time', 'diff_now' => 'ngayon', 'diff_today' => 'ngayong', 'diff_today_regexp' => 'ngayong(?:\\s+araw)?', 'diff_yesterday' => 'kahapon', 'diff_tomorrow' => 'bukas', 'diff_tomorrow_regexp' => 'Bukas(?:\\s+ng)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'MM/D/YYYY', 'LL' => 'MMMM D, YYYY', 'LLL' => 'MMMM D, YYYY HH:mm', 'LLLL' => 'dddd, MMMM DD, YYYY HH:mm', ], 'calendar' => [ 'sameDay' => 'LT [ngayong araw]', 'nextDay' => '[Bukas ng] LT', 'nextWeek' => 'LT [sa susunod na] dddd', 'lastDay' => 'LT [kahapon]', 'lastWeek' => 'LT [noong nakaraang] dddd', 'sameElse' => 'L', ], 'months' => ['Enero', 'Pebrero', 'Marso', 'Abril', 'Mayo', 'Hunyo', 'Hulyo', 'Agosto', 'Setyembre', 'Oktubre', 'Nobyembre', 'Disyembre'], 'months_short' => ['Ene', 'Peb', 'Mar', 'Abr', 'May', 'Hun', 'Hul', 'Ago', 'Set', 'Okt', 'Nob', 'Dis'], 'weekdays' => ['Linggo', 'Lunes', 'Martes', 'Miyerkules', 'Huwebes', 'Biyernes', 'Sabado'], 'weekdays_short' => ['Lin', 'Lun', 'Mar', 'Miy', 'Huw', 'Biy', 'Sab'], 'weekdays_min' => ['Li', 'Lu', 'Ma', 'Mi', 'Hu', 'Bi', 'Sab'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' at '], ]; PK!<ŠZšĒ Ē carbon/src/Carbon/Lang/cy.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - JD Isaacks * - Daniel Monaghan */ return [ 'year' => '{1}blwyddyn|]1,Inf[:count flynedd', 'y' => ':countbl', 'month' => '{1}mis|]1,Inf[:count mis', 'm' => ':countmi', 'week' => ':count wythnos', 'w' => ':countw', 'day' => '{1}diwrnod|]1,Inf[:count diwrnod', 'd' => ':countd', 'hour' => '{1}awr|]1,Inf[:count awr', 'h' => ':counth', 'minute' => '{1}munud|]1,Inf[:count munud', 'min' => ':countm', 'second' => '{1}ychydig eiliadau|]1,Inf[:count eiliad', 's' => ':counts', 'ago' => ':time yn Ć“l', 'from_now' => 'mewn :time', 'after' => ':time ar Ć“l', 'before' => ':time o\'r blaen', 'diff_now' => 'nawr', 'diff_today' => 'Heddiw', 'diff_today_regexp' => 'Heddiw(?:\\s+am)?', 'diff_yesterday' => 'ddoe', 'diff_yesterday_regexp' => 'Ddoe(?:\\s+am)?', 'diff_tomorrow' => 'yfory', 'diff_tomorrow_regexp' => 'Yfory(?:\\s+am)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Heddiw am] LT', 'nextDay' => '[Yfory am] LT', 'nextWeek' => 'dddd [am] LT', 'lastDay' => '[Ddoe am] LT', 'lastWeek' => 'dddd [diwethaf am] LT', 'sameElse' => 'L', ], 'ordinal' => function ($number) { return $number.( $number > 20 ? (\in_array($number, [40, 50, 60, 80, 100]) ? 'fed' : 'ain') : ([ '', 'af', 'il', 'ydd', 'ydd', 'ed', 'ed', 'ed', 'fed', 'fed', 'fed', // 1af to 10fed 'eg', 'fed', 'eg', 'eg', 'fed', 'eg', 'eg', 'fed', 'eg', 'fed', // 11eg to 20fed ])[$number] ?? '' ); }, 'months' => ['Ionawr', 'Chwefror', 'Mawrth', 'Ebrill', 'Mai', 'Mehefin', 'Gorffennaf', 'Awst', 'Medi', 'Hydref', 'Tachwedd', 'Rhagfyr'], 'months_short' => ['Ion', 'Chwe', 'Maw', 'Ebr', 'Mai', 'Meh', 'Gor', 'Aws', 'Med', 'Hyd', 'Tach', 'Rhag'], 'weekdays' => ['Dydd Sul', 'Dydd Llun', 'Dydd Mawrth', 'Dydd Mercher', 'Dydd Iau', 'Dydd Gwener', 'Dydd Sadwrn'], 'weekdays_short' => ['Sul', 'Llun', 'Maw', 'Mer', 'Iau', 'Gwe', 'Sad'], 'weekdays_min' => ['Su', 'Ll', 'Ma', 'Me', 'Ia', 'Gw', 'Sa'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' a '], 'meridiem' => ['yb', 'yh'], ]; PK!cā{HHcarbon/src/Carbon/Lang/rn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['Z.MU.', 'Z.MW.'], 'weekdays' => ['Ku w’indwi', 'Ku wa mbere', 'Ku wa kabiri', 'Ku wa gatatu', 'Ku wa kane', 'Ku wa gatanu', 'Ku wa gatandatu'], 'weekdays_short' => ['cu.', 'mbe.', 'kab.', 'gtu.', 'kan.', 'gnu.', 'gnd.'], 'weekdays_min' => ['cu.', 'mbe.', 'kab.', 'gtu.', 'kan.', 'gnu.', 'gnd.'], 'months' => ['Nzero', 'Ruhuhuma', 'Ntwarante', 'Ndamukiza', 'Rusama', 'Ruheshi', 'Mukakaro', 'Nyandagaro', 'Nyakanga', 'Gitugutu', 'Munyonyo', 'Kigarama'], 'months_short' => ['Mut.', 'Gas.', 'Wer.', 'Mat.', 'Gic.', 'Kam.', 'Nya.', 'Kan.', 'Nze.', 'Ukw.', 'Ugu.', 'Uku.'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'year' => 'imyaka :count', 'y' => 'imyaka :count', 'a_year' => 'imyaka :count', 'month' => 'amezi :count', 'm' => 'amezi :count', 'a_month' => 'amezi :count', 'week' => 'indwi :count', 'w' => 'indwi :count', 'a_week' => 'indwi :count', 'day' => 'imisi :count', 'd' => 'imisi :count', 'a_day' => 'imisi :count', 'hour' => 'amasaha :count', 'h' => 'amasaha :count', 'a_hour' => 'amasaha :count', 'minute' => 'iminuta :count', 'min' => 'iminuta :count', 'a_minute' => 'iminuta :count', 'second' => 'inguvu :count', // less reliable 's' => 'inguvu :count', // less reliable 'a_second' => 'inguvu :count', // less reliable ]); PK!ėć±}} carbon/src/Carbon/Lang/sw_CD.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/sw.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', ], ]); PK!x^“FF carbon/src/Carbon/Lang/en_IM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!Üģü1NNcarbon/src/Carbon/Lang/zu.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/zu_ZA.php'; PK!ffńŪffcarbon/src/Carbon/Lang/ta.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - FranƧois B * - JD Isaacks * - Satheez */ return [ 'year' => ':count ą®µą®°ąÆą®Ÿą®®ąÆ|:count ą®†ą®£ąÆą®ŸąÆą®•ą®³ąÆ', 'a_year' => 'ஒரு ą®µą®°ąÆą®Ÿą®®ąÆ|:count ą®†ą®£ąÆą®ŸąÆą®•ą®³ąÆ', 'y' => ':count வருட.|:count ą®†ą®£ąÆ.', 'month' => ':count ą®®ą®¾ą®¤ą®®ąÆ|:count ą®®ą®¾ą®¤ą®™ąÆą®•ą®³ąÆ', 'a_month' => 'ஒரு ą®®ą®¾ą®¤ą®®ąÆ|:count ą®®ą®¾ą®¤ą®™ąÆą®•ą®³ąÆ', 'm' => ':count மாத.', 'week' => ':count ą®µą®¾ą®°ą®®ąÆ|:count ą®µą®¾ą®°ą®™ąÆą®•ą®³ąÆ', 'a_week' => 'ஒரு ą®µą®¾ą®°ą®®ąÆ|:count ą®µą®¾ą®°ą®™ąÆą®•ą®³ąÆ', 'w' => ':count வார.', 'day' => ':count ą®Øą®¾ą®³ąÆ|:count ą®Øą®¾ą®ŸąÆą®•ą®³ąÆ', 'a_day' => 'ஒரு ą®Øą®¾ą®³ąÆ|:count ą®Øą®¾ą®ŸąÆą®•ą®³ąÆ', 'd' => ':count ą®Øą®¾ą®³ąÆ|:count ą®Øą®¾ą®ŸąÆ.', 'hour' => ':count மணி ą®ØąÆ‡ą®°ą®®ąÆ|:count மணி ą®ØąÆ‡ą®°ą®®ąÆ', 'a_hour' => 'ஒரு மணி ą®ØąÆ‡ą®°ą®®ąÆ|:count மணி ą®ØąÆ‡ą®°ą®®ąÆ', 'h' => ':count மணி.', 'minute' => ':count ą®Øą®æą®®ą®æą®Ÿą®®ąÆ|:count ą®Øą®æą®®ą®æą®Ÿą®™ąÆą®•ą®³ąÆ', 'a_minute' => 'ஒரு ą®Øą®æą®®ą®æą®Ÿą®®ąÆ|:count ą®Øą®æą®®ą®æą®Ÿą®™ąÆą®•ą®³ąÆ', 'min' => ':count நிமி.', 'second' => ':count சில ą®µą®æą®Øą®¾ą®Ÿą®æą®•ą®³ąÆ|:count ą®µą®æą®Øą®¾ą®Ÿą®æą®•ą®³ąÆ', 'a_second' => 'ஒரு சில ą®µą®æą®Øą®¾ą®Ÿą®æą®•ą®³ąÆ|:count ą®µą®æą®Øą®¾ą®Ÿą®æą®•ą®³ąÆ', 's' => ':count விநா.', 'ago' => ':time ą®®ąÆą®©ąÆ', 'from_now' => ':time ą®‡ą®²ąÆ', 'before' => ':time ą®®ąÆą®©ąÆ', 'after' => ':time ą®Ŗą®æą®©ąÆ', 'diff_now' => 'ą®‡ą®ŖąÆą®ŖąÆ‹ą®¤ąÆ', 'diff_today' => 'ą®‡ą®©ąÆą®±ąÆ', 'diff_yesterday' => 'ą®ØąÆ‡ą®±ąÆą®±ąÆ', 'diff_tomorrow' => 'நாளை', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY, HH:mm', 'LLLL' => 'dddd, D MMMM YYYY, HH:mm', ], 'calendar' => [ 'sameDay' => '[ą®‡ą®©ąÆą®±ąÆ] LT', 'nextDay' => '[நாளை] LT', 'nextWeek' => 'dddd, LT', 'lastDay' => '[ą®ØąÆ‡ą®±ąÆą®±ąÆ] LT', 'lastWeek' => '[ą®•ą®Ÿą®ØąÆą®¤ ą®µą®¾ą®°ą®®ąÆ] dddd, LT', 'sameElse' => 'L', ], 'ordinal' => ':numberவது', 'meridiem' => function ($hour) { if ($hour < 2) { return ' ą®Æą®¾ą®®ą®®ąÆ'; } if ($hour < 6) { return ' ą®µąÆˆą®•ą®±ąÆˆ'; } if ($hour < 10) { return ' ą®•ą®¾ą®²ąÆˆ'; } if ($hour < 14) { return ' ą®Øą®£ąÆą®Ŗą®•ą®²ąÆ'; } if ($hour < 18) { return ' ą®Žą®±ąÆą®Ŗą®¾ą®ŸąÆ'; } if ($hour < 22) { return ' மாலை'; } return ' ą®Æą®¾ą®®ą®®ąÆ'; }, 'months' => ['ஜனவரி', 'ą®Ŗą®æą®ŖąÆą®°ą®µą®°ą®æ', 'ą®®ą®¾ą®°ąÆą®šąÆ', 'ą®ą®ŖąÆą®°ą®²ąÆ', 'மே', 'ą®œąÆ‚ą®©ąÆ', 'ą®œąÆ‚ą®²ąÆˆ', 'ą®†ą®•ą®øąÆą®ŸąÆ', 'ą®šąÆ†ą®ŖąÆą®ŸąÆ†ą®®ąÆą®Ŗą®°ąÆ', 'ą®…ą®•ąÆą®ŸąÆ‡ą®¾ą®Ŗą®°ąÆ', 'ą®Øą®µą®®ąÆą®Ŗą®°ąÆ', 'ą®Ÿą®æą®šą®®ąÆą®Ŗą®°ąÆ'], 'months_short' => ['ஜனவரி', 'ą®Ŗą®æą®ŖąÆą®°ą®µą®°ą®æ', 'ą®®ą®¾ą®°ąÆą®šąÆ', 'ą®ą®ŖąÆą®°ą®²ąÆ', 'மே', 'ą®œąÆ‚ą®©ąÆ', 'ą®œąÆ‚ą®²ąÆˆ', 'ą®†ą®•ą®øąÆą®ŸąÆ', 'ą®šąÆ†ą®ŖąÆą®ŸąÆ†ą®®ąÆą®Ŗą®°ąÆ', 'ą®…ą®•ąÆą®ŸąÆ‡ą®¾ą®Ŗą®°ąÆ', 'ą®Øą®µą®®ąÆą®Ŗą®°ąÆ', 'ą®Ÿą®æą®šą®®ąÆą®Ŗą®°ąÆ'], 'weekdays' => ['ą®žą®¾ą®Æą®æą®±ąÆą®±ąÆą®•ąÆą®•ą®æą®“ą®®ąÆˆ', 'ą®¤ą®æą®™ąÆą®•ą®ŸąÆą®•ą®æą®“ą®®ąÆˆ', 'ą®šąÆ†ą®µąÆą®µą®¾ą®ÆąÆą®•ą®æą®“ą®®ąÆˆ', 'ą®ŖąÆą®¤ą®©ąÆą®•ą®æą®“ą®®ąÆˆ', 'ą®µą®æą®Æą®¾ą®“ą®•ąÆą®•ą®æą®“ą®®ąÆˆ', 'ą®µąÆ†ą®³ąÆą®³ą®æą®•ąÆą®•ą®æą®“ą®®ąÆˆ', 'ą®šą®©ą®æą®•ąÆą®•ą®æą®“ą®®ąÆˆ'], 'weekdays_short' => ['ą®žą®¾ą®Æą®æą®±ąÆ', 'ą®¤ą®æą®™ąÆą®•ą®³ąÆ', 'ą®šąÆ†ą®µąÆą®µą®¾ą®ÆąÆ', 'ą®ŖąÆą®¤ą®©ąÆ', 'ą®µą®æą®Æą®¾ą®“ą®©ąÆ', 'ą®µąÆ†ą®³ąÆą®³ą®æ', 'சனி'], 'weekdays_min' => ['ą®žą®¾', 'தி', 'ą®šąÆ†', 'பு', 'வி', 'வெ', 'ச'], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' ą®®ą®±ąÆą®±ąÆą®®ąÆ '], 'weekend' => [0, 0], ]; PK!2~Õ   carbon/src/Carbon/Lang/pl_PL.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/pl.php'; PK!ÄūŁbļļcarbon/src/Carbon/Lang/ha.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - pablo@mandriva.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM, YYYY', 'LLL' => 'D MMMM, YYYY HH:mm', 'LLLL' => 'dddd, D MMMM, YYYY HH:mm', ], 'months' => ['Janairu', 'Faburairu', 'Maris', 'Afirilu', 'Mayu', 'Yuni', 'Yuli', 'Agusta', 'Satumba', 'Oktoba', 'Nuwamba', 'Disamba'], 'months_short' => ['Jan', 'Fab', 'Mar', 'Afi', 'May', 'Yun', 'Yul', 'Agu', 'Sat', 'Okt', 'Nuw', 'Dis'], 'weekdays' => ['Lahadi', 'Litini', 'Talata', 'Laraba', 'Alhamis', 'Jumaʼa', 'Asabar'], 'weekdays_short' => ['Lah', 'Lit', 'Tal', 'Lar', 'Alh', 'Jum', 'Asa'], 'weekdays_min' => ['Lh', 'Li', 'Ta', 'Lr', 'Al', 'Ju', 'As'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'year' => 'shekara :count', 'y' => 'shekara :count', 'a_year' => 'shekara :count', 'month' => ':count wĆ”tĆ a', 'm' => ':count wĆ”tĆ a', 'a_month' => ':count wĆ”tĆ a', 'week' => ':count mako', 'w' => ':count mako', 'a_week' => ':count mako', 'day' => ':count rana', 'd' => ':count rana', 'a_day' => ':count rana', 'hour' => ':count Ć”wĆ a', 'h' => ':count Ć”wĆ a', 'a_hour' => ':count Ć”wĆ a', 'minute' => 'minti :count', 'min' => 'minti :count', 'a_minute' => 'minti :count', 'second' => ':count nĆ” bĆ­yĆŗ', 's' => ':count nĆ” bĆ­yĆŗ', 'a_second' => ':count nĆ” bĆ­yĆŗ', ]); PK!8Ö¼OOcarbon/src/Carbon/Lang/gez.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/gez_ER.php'; PK!0RXwµµ!carbon/src/Carbon/Lang/chr_US.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Cherokee Nation Joseph Erb josepherb7@gmail.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'MM/DD/YYYY', ], 'months' => ['įŽ¤įƒįŽøį”į…', 'įŽ§įŽ¦įŽµ', 'įŽ į…į±', 'įŽ§į¬į‚', 'įŽ į‚įįŽ¬į˜', 'į•įŽ­įŽ·į±', 'įŽ«į°į‰į‚', 'įŽ¦įŽ¶į‚', 'įšįŽµįį—', 'įšį‚į…į—', 'į…į“į•į†', 'įŽ„įįŽ©į±'], 'months_short' => ['įŽ¤įƒ', 'įŽ§įŽ¦', 'įŽ į…', 'įŽ§į¬', 'įŽ į‚', 'į•įŽ­', 'įŽ«į°', 'įŽ¦įŽ¶', 'įšįŽµ', 'įšį‚', 'į…į“', 'įŽ„į'], 'weekdays' => ['įŽ¤įŽ¾į™į“į†įįŽ¬', 'įŽ¤įŽ¾į™į“į‰į…įŽÆ', 'į”įŽµįįŽ¢įŽ¦', 'į¦įŽ¢įįŽ¢įŽ¦', 'į…įŽ©įįŽ¢įŽ¦', 'į§įŽ¾įŽ©įŽ¶įį—', 'įŽ¤įŽ¾į™į“įˆį•įŽ¾'], 'weekdays_short' => ['į†įįŽ¬', 'į‰į…įŽÆ', 'į”įŽµį', 'į¦įŽ¢į', 'į…įŽ©į', 'į§įŽ¾įŽ©', 'įˆį•įŽ¾'], 'weekdays_min' => ['į†įįŽ¬', 'į‰į…įŽÆ', 'į”įŽµį', 'į¦įŽ¢į', 'į…įŽ©į', 'į§įŽ¾įŽ©', 'įˆį•įŽ¾'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['įŒįŽ¾įŽ“', 'į’įŽÆį±įŽ¢į—į¢', 'ź®œź®Žź®„', 'ź®¢ź­æį¹ź­²ź®§ź®²'], 'second' => ':count įįŽ¢', // less reliable 's' => ':count įįŽ¢', // less reliable 'a_second' => ':count įįŽ¢', // less reliable 'year' => ':count į‘į•į˜į“į“', 'y' => ':count į‘į•į˜į“į“', 'a_year' => ':count į‘į•į˜į“į“', 'month' => ':count įį…į™', 'm' => ':count įį…į™', 'a_month' => ':count įį…į™', 'week' => ':count į‘įŽ¾į™į“į†įį—', 'w' => ':count į‘įŽ¾į™į“į†įį—', 'a_week' => ':count į‘įŽ¾į™į“į†įį—', 'day' => ':count įŽ¢įŽ¦', 'd' => ':count įŽ¢įŽ¦', 'a_day' => ':count įŽ¢įŽ¦', 'hour' => ':count į‘įŸįŽ¶į›', 'h' => ':count į‘įŸįŽ¶į›', 'a_hour' => ':count į‘įŸįŽ¶į›', 'minute' => ':count įŽ¢įÆį”į¬įį”į…', 'min' => ':count įŽ¢įÆį”į¬įį”į…', 'a_minute' => ':count įŽ¢įÆį”į¬įį”į…', 'ago' => ':time į„įŽØį’', 'from_now' => 'įŽ¾įŽæ :time', ]); PK!Ķķ‰M M carbon/src/Carbon/Lang/gl.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - Fidel Pita * - JD Isaacks * - Diego Vilariño * - Sebastian Thierer */ return [ 'year' => ':count ano|:count anos', 'a_year' => 'un ano|:count anos', 'y' => ':count a.', 'month' => ':count mes|:count meses', 'a_month' => 'un mes|:count meses', 'm' => ':count mes.', 'week' => ':count semana|:count semanas', 'a_week' => 'unha semana|:count semanas', 'w' => ':count sem.', 'day' => ':count dĆ­a|:count dĆ­as', 'a_day' => 'un dĆ­a|:count dĆ­as', 'd' => ':count d.', 'hour' => ':count hora|:count horas', 'a_hour' => 'unha hora|:count horas', 'h' => ':count h.', 'minute' => ':count minuto|:count minutos', 'a_minute' => 'un minuto|:count minutos', 'min' => ':count min.', 'second' => ':count segundo|:count segundos', 'a_second' => 'uns segundos|:count segundos', 's' => ':count seg.', 'ago' => 'hai :time', 'from_now' => function ($time) { if (substr($time, 0, 2) === 'un') { return "n$time"; } return "en $time"; }, 'diff_now' => 'agora', 'diff_today' => 'hoxe', 'diff_today_regexp' => 'hoxe(?:\\s+Ć”s)?', 'diff_yesterday' => 'onte', 'diff_yesterday_regexp' => 'onte(?:\\s+Ć”)?', 'diff_tomorrow' => 'maƱƔ', 'diff_tomorrow_regexp' => 'maƱƔ(?:\\s+Ć”s)?', 'after' => ':time despois', 'before' => ':time antes', 'formats' => [ 'LT' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D [de] MMMM [de] YYYY', 'LLL' => 'D [de] MMMM [de] YYYY H:mm', 'LLLL' => 'dddd, D [de] MMMM [de] YYYY H:mm', ], 'calendar' => [ 'sameDay' => function (\Carbon\CarbonInterface $current) { return '[hoxe '.($current->hour !== 1 ? 'Ć”s' : 'Ć”').'] LT'; }, 'nextDay' => function (\Carbon\CarbonInterface $current) { return '[maƱƔ '.($current->hour !== 1 ? 'Ć”s' : 'Ć”').'] LT'; }, 'nextWeek' => function (\Carbon\CarbonInterface $current) { return 'dddd ['.($current->hour !== 1 ? 'Ć”s' : 'Ć”').'] LT'; }, 'lastDay' => function (\Carbon\CarbonInterface $current) { return '[onte '.($current->hour !== 1 ? 'Ć”' : 'a').'] LT'; }, 'lastWeek' => function (\Carbon\CarbonInterface $current) { return '[o] dddd [pasado '.($current->hour !== 1 ? 'Ć”s' : 'Ć”').'] LT'; }, 'sameElse' => 'L', ], 'ordinal' => ':numberĀŗ', 'months' => ['xaneiro', 'febreiro', 'marzo', 'abril', 'maio', 'xuƱo', 'xullo', 'agosto', 'setembro', 'outubro', 'novembro', 'decembro'], 'months_short' => ['xan.', 'feb.', 'mar.', 'abr.', 'mai.', 'xuƱ.', 'xul.', 'ago.', 'set.', 'out.', 'nov.', 'dec.'], 'weekdays' => ['domingo', 'luns', 'martes', 'mĆ©rcores', 'xoves', 'venres', 'sĆ”bado'], 'weekdays_short' => ['dom.', 'lun.', 'mar.', 'mĆ©r.', 'xov.', 'ven.', 'sĆ”b.'], 'weekdays_min' => ['do', 'lu', 'ma', 'mĆ©', 'xo', 've', 'sĆ”'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' e '], 'meridiem' => ['a.m.', 'p.m.'], ]; PK!{9ätšš!carbon/src/Carbon/Lang/hif_FJ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Samsung Electronics Co., Ltd. akhilesh.k@samsung.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'dddd DD MMM YYYY', ], 'months' => ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'], 'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 'weekdays' => ['Ravivar', 'Somvar', 'Mangalvar', 'Budhvar', 'Guruvar', 'Shukravar', 'Shanivar'], 'weekdays_short' => ['Ravi', 'Som', 'Mangal', 'Budh', 'Guru', 'Shukra', 'Shani'], 'weekdays_min' => ['Ravi', 'Som', 'Mangal', 'Budh', 'Guru', 'Shukra', 'Shani'], 'meridiem' => ['Purvahan', 'Aparaahna'], 'hour' => ':count minit', // less reliable 'h' => ':count minit', // less reliable 'a_hour' => ':count minit', // less reliable 'year' => ':count saal', 'y' => ':count saal', 'a_year' => ':count saal', 'month' => ':count Mahina', 'm' => ':count Mahina', 'a_month' => ':count Mahina', 'week' => ':count Hafta', 'w' => ':count Hafta', 'a_week' => ':count Hafta', 'day' => ':count Din', 'd' => ':count Din', 'a_day' => ':count Din', 'minute' => ':count Minit', 'min' => ':count Minit', 'a_minute' => ':count Minit', 'second' => ':count Second', 's' => ':count Second', 'a_second' => ':count Second', ]); PK!‡ädŖ¦¦!carbon/src/Carbon/Lang/es_419.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]); PK!x^“FF carbon/src/Carbon/Lang/en_CK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!Z,vcóó carbon/src/Carbon/Lang/nr_ZA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['Janabari', 'uFeberbari', 'uMatjhi', 'u-Apreli', 'Meyi', 'Juni', 'Julayi', 'Arhostosi', 'Septemba', 'Oktoba', 'Usinyikhaba', 'Disemba'], 'months_short' => ['Jan', 'Feb', 'Mat', 'Apr', 'Mey', 'Jun', 'Jul', 'Arh', 'Sep', 'Okt', 'Usi', 'Dis'], 'weekdays' => ['uSonto', 'uMvulo', 'uLesibili', 'lesithathu', 'uLesine', 'ngoLesihlanu', 'umGqibelo'], 'weekdays_short' => ['Son', 'Mvu', 'Bil', 'Tha', 'Ne', 'Hla', 'Gqi'], 'weekdays_min' => ['Son', 'Mvu', 'Bil', 'Tha', 'Ne', 'Hla', 'Gqi'], 'day_of_first_week_of_year' => 1, ]); PK!,͹¼  carbon/src/Carbon/Lang/ro.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - JD Isaacks * - Cătălin Georgescu * - Valentin Ivaşcu (oriceon) */ return [ 'year' => ':count an|:count ani|:count ani', 'a_year' => 'un an|:count ani|:count ani', 'y' => ':count a.', 'month' => ':count lună|:count luni|:count luni', 'a_month' => 'o lună|:count luni|:count luni', 'm' => ':count l.', 'week' => ':count săptămĆ¢nă|:count săptămĆ¢ni|:count săptămĆ¢ni', 'a_week' => 'o săptămĆ¢nă|:count săptămĆ¢ni|:count săptămĆ¢ni', 'w' => ':count săp.', 'day' => ':count zi|:count zile|:count zile', 'a_day' => 'o zi|:count zile|:count zile', 'd' => ':count z.', 'hour' => ':count oră|:count ore|:count ore', 'a_hour' => 'o oră|:count ore|:count ore', 'h' => ':count o.', 'minute' => ':count minut|:count minute|:count minute', 'a_minute' => 'un minut|:count minute|:count minute', 'min' => ':count m.', 'second' => ':count secundă|:count secunde|:count secunde', 'a_second' => 'cĆ¢teva secunde|:count secunde|:count secunde', 's' => ':count sec.', 'ago' => ':time Ć®n urmă', 'from_now' => 'peste :time', 'after' => 'peste :time', 'before' => 'acum :time', 'diff_now' => 'acum', 'diff_today' => 'azi', 'diff_today_regexp' => 'azi(?:\\s+la)?', 'diff_yesterday' => 'ieri', 'diff_yesterday_regexp' => 'ieri(?:\\s+la)?', 'diff_tomorrow' => 'mĆ¢ine', 'diff_tomorrow_regexp' => 'mĆ¢ine(?:\\s+la)?', 'formats' => [ 'LT' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY H:mm', 'LLLL' => 'dddd, D MMMM YYYY H:mm', ], 'calendar' => [ 'sameDay' => '[azi la] LT', 'nextDay' => '[mĆ¢ine la] LT', 'nextWeek' => 'dddd [la] LT', 'lastDay' => '[ieri la] LT', 'lastWeek' => '[fosta] dddd [la] LT', 'sameElse' => 'L', ], 'months' => ['ianuarie', 'februarie', 'martie', 'aprilie', 'mai', 'iunie', 'iulie', 'august', 'septembrie', 'octombrie', 'noiembrie', 'decembrie'], 'months_short' => ['ian.', 'feb.', 'mar.', 'apr.', 'mai', 'iun.', 'iul.', 'aug.', 'sept.', 'oct.', 'nov.', 'dec.'], 'weekdays' => ['duminică', 'luni', 'marți', 'miercuri', 'joi', 'vineri', 'sĆ¢mbătă'], 'weekdays_short' => ['dum', 'lun', 'mar', 'mie', 'joi', 'vin', 'sĆ¢m'], 'weekdays_min' => ['du', 'lu', 'ma', 'mi', 'jo', 'vi', 'sĆ¢'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' și '], 'meridiem' => ['a.m.', 'p.m.'], ]; PK!¬TAz   carbon/src/Carbon/Lang/pt_AO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/pt.php'; PK!³b’MNNcarbon/src/Carbon/Lang/ce.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/ce_RU.php'; PK!QtF±z z carbon/src/Carbon/Lang/sk.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Philippe Vaucher * - Martin Suja * - Tsutomu Kuroda * - tjku * - Max Melentiev * - Juanito Fatas * - Ivan Stana * - Akira Matsuda * - Christopher Dell * - James McKinney * - Enrique Vidal * - Simone Carletti * - Aaron Patterson * - Jozef Fulop * - NicolĆ”s Hock Isaza * - Tom Hughes * - Simon Hürlimann (CyT) * - jofi * - Jakub ADAMEC * - Marek Adamický */ return [ 'year' => 'rok|:count roky|:count rokov', 'y' => ':count r', 'month' => 'mesiac|:count mesiace|:count mesiacov', 'm' => ':count m', 'week' => 'týždeň|:count týždne|:count týždňov', 'w' => ':count t', 'day' => 'deň|:count dni|:count dnĆ­', 'd' => ':count d', 'hour' => 'hodinu|:count hodiny|:count hodĆ­n', 'h' => ':count h', 'minute' => 'minĆŗtu|:count minĆŗty|:count minĆŗt', 'min' => ':count min', 'second' => 'sekundu|:count sekundy|:count sekĆŗnd', 's' => ':count s', 'ago' => 'pred :time', 'from_now' => 'za :time', 'after' => 'o :time neskĆ“r', 'before' => ':time predtým', 'year_ago' => 'rokom|:count rokmi|:count rokmi', 'month_ago' => 'mesiacom|:count mesiacmi|:count mesiacmi', 'week_ago' => 'týždňom|:count týždňami|:count týždňami', 'day_ago' => 'dňom|:count dňami|:count dňami', 'hour_ago' => 'hodinou|:count hodinami|:count hodinami', 'minute_ago' => 'minĆŗtou|:count minĆŗtami|:count minĆŗtami', 'second_ago' => 'sekundou|:count sekundami|:count sekundami', 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' a '], 'diff_now' => 'teraz', 'diff_yesterday' => 'včera', 'diff_tomorrow' => 'zajtra', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'DD. MMMM YYYY', 'LLL' => 'D. M. HH:mm', 'LLLL' => 'dddd D. MMMM YYYY HH:mm', ], 'weekdays' => ['nedeľa', 'pondelok', 'utorok', 'streda', 'Å”tvrtok', 'piatok', 'sobota'], 'weekdays_short' => ['ne', 'po', 'ut', 'st', 'Å”t', 'pi', 'so'], 'weekdays_min' => ['ne', 'po', 'ut', 'st', 'Å”t', 'pi', 'so'], 'months' => ['januĆ”r', 'februĆ”r', 'marec', 'aprĆ­l', 'mĆ”j', 'jĆŗn', 'jĆŗl', 'august', 'september', 'október', 'november', 'december'], 'months_short' => ['jan', 'feb', 'mar', 'apr', 'mĆ”j', 'jĆŗn', 'jĆŗl', 'aug', 'sep', 'okt', 'nov', 'dec'], 'meridiem' => ['dopoludnia', 'popoludnĆ­'], ]; PK!r¶OOcarbon/src/Carbon/Lang/byn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/byn_ER.php'; PK! ösFF carbon/src/Carbon/Lang/es_EA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 1, ]); PK!Ąd2½   carbon/src/Carbon/Lang/fr_MR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/fr.php', [ 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY h:mm a', 'LLLL' => 'dddd D MMMM YYYY h:mm a', ], ]); PK!Ÿ·N)jjcarbon/src/Carbon/Lang/mer.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['RÅØ', 'ÅØG'], 'weekdays' => ['Kiumia', 'Muramuko', 'Wairi', 'Wethatu', 'Wena', 'Wetano', 'Jumamosi'], 'weekdays_short' => ['KIU', 'MRA', 'WAI', 'WET', 'WEN', 'WTN', 'JUM'], 'weekdays_min' => ['KIU', 'MRA', 'WAI', 'WET', 'WEN', 'WTN', 'JUM'], 'months' => ['JanuarÄ©', 'FeburuarÄ©', 'Machi', 'ÄØpurÅ©', 'Mĩĩ', 'Njuni', 'NjuraÄ©', 'Agasti', 'Septemba', 'OktÅ©ba', 'Novemba', 'Dicemba'], 'months_short' => ['JAN', 'FEB', 'MAC', 'ÄØPU', 'MÄØÄØ', 'NJU', 'NJR', 'AGA', 'SPT', 'OKT', 'NOV', 'DEC'], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'year' => ':count murume', // less reliable 'y' => ':count murume', // less reliable 'a_year' => ':count murume', // less reliable 'month' => ':count muchaara', // less reliable 'm' => ':count muchaara', // less reliable 'a_month' => ':count muchaara', // less reliable 'minute' => ':count monto', // less reliable 'min' => ':count monto', // less reliable 'a_minute' => ':count monto', // less reliable 'second' => ':count gikeno', // less reliable 's' => ':count gikeno', // less reliable 'a_second' => ':count gikeno', // less reliable ]); PK!Y#N››!carbon/src/Carbon/Lang/unm_US.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['enikwsi', 'chkwali', 'xamokhwite', 'kwetayoxe', 'tainipen', 'kichinipen', 'lainipen', 'winaminke', 'kichitahkok', 'puksit', 'wini', 'muxkotae'], 'months_short' => ['eni', 'chk', 'xam', 'kwe', 'tai', 'nip', 'lai', 'win', 'tah', 'puk', 'kun', 'mux'], 'weekdays' => ['kentuwei', 'manteke', 'tusteke', 'lelai', 'tasteke', 'pelaiteke', 'sateteke'], 'weekdays_short' => ['ken', 'man', 'tus', 'lel', 'tas', 'pel', 'sat'], 'weekdays_min' => ['ken', 'man', 'tus', 'lel', 'tas', 'pel', 'sat'], 'day_of_first_week_of_year' => 1, // Too unreliable /* 'year' => ':count kaxtĆ«ne', 'y' => ':count kaxtĆ«ne', 'a_year' => ':count kaxtĆ«ne', 'month' => ':count piskewĆ«ni kishux', // less reliable 'm' => ':count piskewĆ«ni kishux', // less reliable 'a_month' => ':count piskewĆ«ni kishux', // less reliable 'week' => ':count kishku', // less reliable 'w' => ':count kishku', // less reliable 'a_week' => ':count kishku', // less reliable 'day' => ':count kishku', 'd' => ':count kishku', 'a_day' => ':count kishku', 'hour' => ':count xkuk', // less reliable 'h' => ':count xkuk', // less reliable 'a_hour' => ':count xkuk', // less reliable 'minute' => ':count txituwĆ k', // less reliable 'min' => ':count txituwĆ k', // less reliable 'a_minute' => ':count txituwĆ k', // less reliable 'second' => ':count nisha', // less reliable 's' => ':count nisha', // less reliable 'a_second' => ':count nisha', // less reliable */ ]); PK!x^“FF carbon/src/Carbon/Lang/en_MS.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!Šfōc   carbon/src/Carbon/Lang/fr_MC.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!ųR3׆†carbon/src/Carbon/Lang/ki.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['Kiroko', 'HwaÄ©-inÄ©'], 'weekdays' => ['Kiumia', 'NjumatatÅ©', 'Njumaine', 'Njumatana', 'Aramithi', 'Njumaa', 'Njumamothi'], 'weekdays_short' => ['KMA', 'NTT', 'NMN', 'NMT', 'ART', 'NMA', 'NMM'], 'weekdays_min' => ['KMA', 'NTT', 'NMN', 'NMT', 'ART', 'NMA', 'NMM'], 'months' => ['NjenuarÄ©', 'Mwere wa kerÄ©', 'Mwere wa gatatÅ©', 'Mwere wa kana', 'Mwere wa gatano', 'Mwere wa gatandatÅ©', 'Mwere wa mÅ©gwanja', 'Mwere wa kanana', 'Mwere wa kenda', 'Mwere wa ikÅ©mi', 'Mwere wa ikÅ©mi na Å©mwe', 'Ndithemba'], 'months_short' => ['JEN', 'WKR', 'WGT', 'WKN', 'WTN', 'WTD', 'WMJ', 'WNN', 'WKD', 'WIK', 'WMW', 'DIT'], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'year' => ':count mÄ©aka', // less reliable 'y' => ':count mÄ©aka', // less reliable 'a_year' => ':count mÄ©aka', // less reliable 'month' => ':count mweri', // less reliable 'm' => ':count mweri', // less reliable 'a_month' => ':count mweri', // less reliable 'week' => ':count kiumia', // less reliable 'w' => ':count kiumia', // less reliable 'a_week' => ':count kiumia', // less reliable 'day' => ':count mÅ©thenya', // less reliable 'd' => ':count mÅ©thenya', // less reliable 'a_day' => ':count mÅ©thenya', // less reliable 'hour' => ':count thaa', // less reliable 'h' => ':count thaa', // less reliable 'a_hour' => ':count thaa', // less reliable 'minute' => ':count mundu', // less reliable 'min' => ':count mundu', // less reliable 'a_minute' => ':count mundu', // less reliable 'second' => ':count igego', // less reliable 's' => ':count igego', // less reliable 'a_second' => ':count igego', // less reliable ]); PK!q~mq   carbon/src/Carbon/Lang/en_JM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!x^“FF carbon/src/Carbon/Lang/en_NU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!Ó;i¢¢ carbon/src/Carbon/Lang/yi_US.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - http://www.uyip.org/ Pablo Saratxaga pablo@mandrakesoft.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['יאַנואַר', 'פֿעברואַר', '×ž×¢×Ø×„', '×Ö·×¤Ö¼×Ø×™×œ', 'מיי', 'יוני', 'יולי', 'אויגוהט', '×”×¢×¤Ö¼×˜×¢×ž×‘×¢×Ø', '××§×˜××‘×¢×Ø', '× ××•×•×¢×ž×‘×¢×Ø', '×“×¢×¦×¢×ž×‘×¢×Ø'], 'months_short' => ['יאַנ', 'פֿעב', '×ž×Ö·×Ø', 'אַפּר', 'מײַ ', 'יונ', 'יול', 'אױג', 'העפּ', 'אָקט', 'נאָװ', 'דעצ'], 'weekdays' => ['זונטיק', '×ž×Öø× ×˜×™×§', 'דינהטיק', '×ž×™×˜×°×Öø×š', '×“×Öø× ×¢×Ø×©×˜×™×§', '×¤Öæ×Ø×²Ö·×˜×™×§', 'שבת'], 'weekdays_short' => ['זונ\'', '×ž×Öø× \'', 'דינ\'', 'מיט\'', 'דאָנ\'', 'פֿרײַ\'', 'שבת'], 'weekdays_min' => ['זונ\'', '×ž×Öø× \'', 'דינ\'', 'מיט\'', 'דאָנ\'', 'פֿרײַ\'', 'שבת'], 'day_of_first_week_of_year' => 1, 'year' => ':count יאר', 'y' => ':count יאר', 'a_year' => ':count יאר', 'month' => ':count חודש', 'm' => ':count חודש', 'a_month' => ':count חודש', 'week' => ':count ×•×•×Öø×š', 'w' => ':count ×•×•×Öø×š', 'a_week' => ':count ×•×•×Öø×š', 'day' => ':count ×˜×Öø×’', 'd' => ':count ×˜×Öø×’', 'a_day' => ':count ×˜×Öø×’', 'hour' => ':count שעה', 'h' => ':count שעה', 'a_hour' => ':count שעה', 'minute' => ':count מינוט', 'min' => ':count מינוט', 'a_minute' => ':count מינוט', 'second' => ':count העקונדע', 's' => ':count העקונדע', 'a_second' => ':count העקונדע', ]); PK!x^“FF carbon/src/Carbon/Lang/en_TV.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!O%ėOOcarbon/src/Carbon/Lang/cmn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/cmn_TW.php'; PK!ߟ¦$$ carbon/src/Carbon/Lang/aa_ER.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ge'ez Frontier Foundation locales@geez.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['Qunxa Garablu', 'Naharsi Kudo', 'Ciggilta Kudo', 'Agda Baxisso', 'Caxah Alsa', 'Qasa Dirri', 'Qado Dirri', 'Leqeeni', 'Waysu', 'Diteli', 'Ximoli', 'Kaxxa Garablu'], 'months_short' => ['Qun', 'Nah', 'Cig', 'Agd', 'Cax', 'Qas', 'Qad', 'Leq', 'Way', 'Dit', 'Xim', 'Kax'], 'weekdays' => ['Acaada', 'Etleeni', 'Talaata', 'Arbaqa', 'Kamiisi', 'Gumqata', 'Sabti'], 'weekdays_short' => ['Aca', 'Etl', 'Tal', 'Arb', 'Kam', 'Gum', 'Sab'], 'weekdays_min' => ['Aca', 'Etl', 'Tal', 'Arb', 'Kam', 'Gum', 'Sab'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'meridiem' => ['saaku', 'carra'], ]); PK!Šfōc   carbon/src/Carbon/Lang/fr_HT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!į²Y¹^^ carbon/src/Carbon/Lang/ff_SN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Pular-Fulfulde.org Ibrahima Sarr admin@pulaar-fulfulde.org */ return require __DIR__.'/ff.php'; PK!ĢŠ\å55carbon/src/Carbon/Lang/kde.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['Muhi', 'Chilo'], 'weekdays' => ['Liduva lyapili', 'Liduva lyatatu', 'Liduva lyanchechi', 'Liduva lyannyano', 'Liduva lyannyano na linji', 'Liduva lyannyano na mavili', 'Liduva litandi'], 'weekdays_short' => ['Ll2', 'Ll3', 'Ll4', 'Ll5', 'Ll6', 'Ll7', 'Ll1'], 'weekdays_min' => ['Ll2', 'Ll3', 'Ll4', 'Ll5', 'Ll6', 'Ll7', 'Ll1'], 'months' => ['Mwedi Ntandi', 'Mwedi wa Pili', 'Mwedi wa Tatu', 'Mwedi wa Nchechi', 'Mwedi wa Nnyano', 'Mwedi wa Nnyano na Umo', 'Mwedi wa Nnyano na Mivili', 'Mwedi wa Nnyano na Mitatu', 'Mwedi wa Nnyano na Nchechi', 'Mwedi wa Nnyano na Nnyano', 'Mwedi wa Nnyano na Nnyano na U', 'Mwedi wa Nnyano na Nnyano na M'], 'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK!†Qs÷¬¬carbon/src/Carbon/Lang/rof.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['kang’ama', 'kingoto'], 'weekdays' => ['Ijumapili', 'Ijumatatu', 'Ijumanne', 'Ijumatano', 'Alhamisi', 'Ijumaa', 'Ijumamosi'], 'weekdays_short' => ['Ijp', 'Ijt', 'Ijn', 'Ijtn', 'Alh', 'Iju', 'Ijm'], 'weekdays_min' => ['Ijp', 'Ijt', 'Ijn', 'Ijtn', 'Alh', 'Iju', 'Ijm'], 'months' => ['Mweri wa kwanza', 'Mweri wa kaili', 'Mweri wa katatu', 'Mweri wa kaana', 'Mweri wa tanu', 'Mweri wa sita', 'Mweri wa saba', 'Mweri wa nane', 'Mweri wa tisa', 'Mweri wa ikumi', 'Mweri wa ikumi na moja', 'Mweri wa ikumi na mbili'], 'months_short' => ['M1', 'M2', 'M3', 'M4', 'M5', 'M6', 'M7', 'M8', 'M9', 'M10', 'M11', 'M12'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], ]); PK!ÓĘŁ××carbon/src/Carbon/Lang/naq.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['ǁgoagas', 'ǃuias'], 'weekdays' => ['Sontaxtsees', 'Mantaxtsees', 'Denstaxtsees', 'Wunstaxtsees', 'Dondertaxtsees', 'Fraitaxtsees', 'Satertaxtsees'], 'weekdays_short' => ['Son', 'Ma', 'De', 'Wu', 'Do', 'Fr', 'Sat'], 'weekdays_min' => ['Son', 'Ma', 'De', 'Wu', 'Do', 'Fr', 'Sat'], 'months' => ['ǃKhanni', 'ǃKhanĒ€gĆ“ab', 'Ē€KhuuǁkhĆ¢b', 'ǃHĆ“aĒ‚khaib', 'ǃKhaitsĆ¢b', 'GamaĒ€aeb', 'Ē‚Khoesaob', 'AoǁkhuumûǁkhĆ¢b', 'TaraĒ€khuumûǁkhĆ¢b', 'Ē‚NûǁnĆ¢iseb', 'Ē€HooĒ‚gaeb', 'HĆ“asoreǁkhĆ¢b'], 'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY h:mm a', 'LLLL' => 'dddd, D MMMM YYYY h:mm a', ], 'year' => ':count kurigu', 'y' => ':count kurigu', 'a_year' => ':count kurigu', 'month' => ':count ǁaub', // less reliable 'm' => ':count ǁaub', // less reliable 'a_month' => ':count ǁaub', // less reliable 'week' => ':count hĆ»', // less reliable 'w' => ':count hĆ»', // less reliable 'a_week' => ':count hĆ»', // less reliable 'day' => ':count Ē€hobas', // less reliable 'd' => ':count Ē€hobas', // less reliable 'a_day' => ':count Ē€hobas', // less reliable 'hour' => ':count Ē‚gaes', // less reliable 'h' => ':count Ē‚gaes', // less reliable 'a_hour' => ':count Ē‚gaes', // less reliable 'minute' => ':count minutga', // less reliable 'min' => ':count minutga', // less reliable 'a_minute' => ':count minutga', // less reliable ]); PK!ābĆ(( carbon/src/Carbon/Lang/ar_TD.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ar.php', [ ]); PK!x^“FF carbon/src/Carbon/Lang/en_PG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!ŌŌžĶßß'carbon/src/Carbon/Lang/nan_TW@latin.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Arne Goetje arne@canonical.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'YYYY-MM-DD', ], 'months' => ['1goeĢh', '2goeĢh', '3goeĢh', '4goeĢh', '5goeĢh', '6goeĢh', '7goeĢh', '8goeĢh', '9goeĢh', '10goeĢh', '11goeĢh', '12goeĢh'], 'months_short' => ['1g', '2g', '3g', '4g', '5g', '6g', '7g', '8g', '9g', '10g', '11g', '12g'], 'weekdays' => ['lĆ©-pĆ i-jiĢt', 'pĆ i-it', 'pĆ i-jÄ«', 'pĆ i-saⁿ', 'pĆ i-sƬ', 'pĆ i-gÅĶ˜', 'pĆ i-laĢk'], 'weekdays_short' => ['lp', 'p1', 'p2', 'p3', 'p4', 'p5', 'p6'], 'weekdays_min' => ['lp', 'p1', 'p2', 'p3', 'p4', 'p5', 'p6'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['tĆ©ng-po͘', 'ē-po͘'], ]); PK!Ü Ķžžcarbon/src/Carbon/Lang/rm.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Philippe Vaucher * - tjku * - Max Melentiev * - Juanito Fatas * - Tsutomu Kuroda * - Akira Matsuda * - Christopher Dell * - Enrique Vidal * - Simone Carletti * - Aaron Patterson * - NicolĆ”s Hock Isaza * - sebastian de castelberg */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'Do MMMM YYYY', 'LLL' => 'Do MMMM, HH:mm [Uhr]', 'LLLL' => 'dddd, Do MMMM YYYY, HH:mm [Uhr]', ], 'year' => ':count onn|:count onns', 'month' => ':count mais', 'week' => ':count emna|:count emnas', 'day' => ':count di|:count dis', 'hour' => ':count oura|:count ouras', 'minute' => ':count minuta|:count minutas', 'second' => ':count secunda|:count secundas', 'weekdays' => ['dumengia', 'glindesdi', 'mardi', 'mesemna', 'gievgia', 'venderdi', 'sonda'], 'weekdays_short' => ['du', 'gli', 'ma', 'me', 'gie', 've', 'so'], 'weekdays_min' => ['du', 'gli', 'ma', 'me', 'gie', 've', 'so'], 'months' => ['schaner', 'favrer', 'mars', 'avrigl', 'matg', 'zercladur', 'fanadur', 'avust', 'settember', 'october', 'november', 'december'], 'months_short' => ['schan', 'favr', 'mars', 'avr', 'matg', 'zercl', 'fan', 'avust', 'sett', 'oct', 'nov', 'dec'], 'meridiem' => ['avantmezdi', 'suentermezdi'], 'list' => [', ', ' e '], 'first_day_of_week' => 1, ]); PK!÷²› carbon/src/Carbon/Lang/sr_ME.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/sr_Latn_ME.php'; PK!»(RHkk carbon/src/Carbon/Lang/es_US.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Kunal Marwaha * - Josh Soref * - JĆørn Ƙlmheim * - Craig Patik * - bustta * - FranƧois B * - Tim Fish * - Claire Coloma * - Steven Heinrich * - JD Isaacks * - Raphael Amorim */ return array_replace_recursive(require __DIR__.'/es.php', [ 'diff_before_yesterday' => 'anteayer', 'formats' => [ 'LT' => 'h:mm A', 'LTS' => 'h:mm:ss A', 'L' => 'MM/DD/YYYY', 'LL' => 'MMMM [de] D [de] YYYY', 'LLL' => 'MMMM [de] D [de] YYYY h:mm A', 'LLLL' => 'dddd, MMMM [de] D [de] YYYY h:mm A', ], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]); PK!Šų8šš carbon/src/Carbon/Lang/ar_SY.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/ar.php', [ 'formats' => [ 'L' => 'DD MMM, YYYY', ], 'months' => ['ŁƒŲ§Ł†ŁˆŁ† Ų§Ł„Ų«Ų§Ł†ŁŠ', 'Ų“ŲØŲ§Ų·', 'Ų¢Ų°Ų§Ų±', 'Ł†ŁŠŲ³Ų§Ł†', 'أيار', 'Ų­Ų²ŁŠŲ±Ų§Ł†', 'ŲŖŁ…ŁˆŲ²', 'Ų¢ŲØ', 'Ų£ŁŠŁ„ŁˆŁ„', 'ŲŖŲ“Ų±ŁŠŁ† Ų§Ł„Ų£ŁˆŁ„', 'ŲŖŲ“Ų±ŁŠŁ† Ų§Ł„Ų«Ų§Ł†ŁŠ', 'ŁƒŲ§Ł†ŁˆŁ† Ų§Ł„Ų£ŁˆŁ„'], 'months_short' => ['ŁƒŲ§Ł†ŁˆŁ† Ų§Ł„Ų«Ų§Ł†ŁŠ', 'Ų“ŲØŲ§Ų·', 'Ų¢Ų°Ų§Ų±', 'Ł†ŁŠŲ³Ų§Ł†', 'أيار', 'Ų­Ų²ŁŠŲ±Ų§Ł†', 'ŲŖŁ…ŁˆŲ²', 'Ų¢ŲØ', 'Ų£ŁŠŁ„ŁˆŁ„', 'ŲŖŲ“Ų±ŁŠŁ† Ų§Ł„Ų£ŁˆŁ„', 'ŲŖŲ“Ų±ŁŠŁ† Ų§Ł„Ų«Ų§Ł†ŁŠ', 'ŁƒŲ§Ł†ŁˆŁ† Ų§Ł„Ų£ŁˆŁ„'], 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'weekdays_min' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, ]); PK!x^“FF carbon/src/Carbon/Lang/en_NF.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!ƒ4Ÿ†† carbon/src/Carbon/Lang/it_CH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Propaganistas */ return array_replace_recursive(require __DIR__.'/it.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], ]); PK!,Å H¦¦ carbon/src/Carbon/Lang/iu_CA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Pablo Saratxaga pablo@mandriva.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'MM/DD/YY', ], 'months' => ['į”®į“„įŠį“•', 'į••į•—įŠį“•', 'ᒪᔅᓯ', 'įƒį³į“—', 'į’Ŗįƒ', 'ᔪᓂ', 'į”Ŗį“šįƒ', 'įŠį’‹į“Æ', 'į“Æį‘Žį•™', 'įŠį‘¦į‘į•™', 'į“„į••į•™', 'į‘Žį“Æį•į•™'], 'months_short' => ['ᔮᓄ', 'į••į•—', 'į’Ŗį”…', 'ᐃᐳ', 'į’Ŗįƒ', 'ᔪᓂ', 'į”Ŗį“š', 'įŠį’‹', 'į“Æį‘Ž', 'įŠį‘¦', 'į“„į••', 'į‘Žį“Æ'], 'weekdays' => ['į“ˆį‘¦į‘Žį–‘į”­į•į••į’ƒ', 'ᓇᒔᒐᔾᔭᐅ', 'ᓇᒔᒐᔾᔭᐅᓕᖅᑭᑦ', 'ᐱᖓᓲᓕᖅᓯᐅᑦ', 'į•æį‘Žį–…į‘°į‘¦', 'į…į“Ŗį“—į•ˆį“˜į‘įƒį“‡į–…', 'į“Æį•™į‘–į••į’ƒ'], 'weekdays_short' => ['į“ˆ', 'ᓇ', 'į“•', 'ᐱ', 'ᕿ', 'ᐅ', 'ᓯ'], 'weekdays_min' => ['į“ˆ', 'ᓇ', 'į“•', 'ᐱ', 'ᕿ', 'ᐅ', 'ᓯ'], 'day_of_first_week_of_year' => 1, 'year' => ':count ᐅᑭᐅᖅ', 'y' => ':count ᐅᑭᐅᖅ', 'a_year' => ':count ᐅᑭᐅᖅ', 'month' => ':count qaammat', 'm' => ':count qaammat', 'a_month' => ':count qaammat', 'week' => ':count sapaatip akunnera', 'w' => ':count sapaatip akunnera', 'a_week' => ':count sapaatip akunnera', 'day' => ':count ulloq', 'd' => ':count ulloq', 'a_day' => ':count ulloq', 'hour' => ':count ikarraq', 'h' => ':count ikarraq', 'a_hour' => ':count ikarraq', 'minute' => ':count titiqqaralaaq', // less reliable 'min' => ':count titiqqaralaaq', // less reliable 'a_minute' => ':count titiqqaralaaq', // less reliable 'second' => ':count marluk', // less reliable 's' => ':count marluk', // less reliable 'a_second' => ':count marluk', // less reliable ]); PK!‡ädŖ¦¦ carbon/src/Carbon/Lang/es_CO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]); PK!Ä'鉂 ‚ carbon/src/Carbon/Lang/dv_MV.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ahmed Ali */ $months = [ 'Ž–Ž¬Ž‚ŽŖŽ‡Ž¦ŽƒŽ©', 'ŽŠŽ¬Ž„Ž°ŽƒŽŖŽ‡Ž¦ŽƒŽ©', 'Ž‰Ž§ŽƒŽØŽ—ŽŖ', 'Ž‡Ž­Ž•Ž°ŽƒŽ©ŽŽŖ', 'މޭ', 'ޖޫން', 'Ž–ŽŖŽŽ¦Ž‡ŽØ', 'Ž‡ŽÆŽŽŽ¦ŽŽ°Ž“ŽŖ', 'ŽŽ¬Ž•Ž°Ž“Ž¬Ž‰Ž°Ž„Ž¦ŽƒŽŖ', 'Ž‡Ž®Ž†Ž°Ž“ŽÆŽ„Ž¦ŽƒŽŖ', 'Ž‚Ž®ŽˆŽ¬Ž‰Ž°Ž„Ž¦ŽƒŽŖ', 'Ž‘ŽØŽŽ¬Ž‰Ž°Ž„Ž¦ŽƒŽŖ', ]; $weekdays = [ 'Ž‡Ž§Ž‹ŽØŽ‡Ž°ŽŒŽ¦', 'ހޯމަ', 'Ž‡Ž¦Ž‚Ž°ŽŽŽ§ŽƒŽ¦', 'ބުދަ', 'Ž„ŽŖŽƒŽ§ŽŽ°ŽŠŽ¦ŽŒŽØ', 'Ž€ŽŖŽ†ŽŖŽƒŽŖ', 'Ž€Ž®Ž‚ŽØŽ€ŽØŽƒŽŖ', ]; return [ 'year' => '{0}Ž‡Ž¦Ž€Ž¦ŽƒŽ¬Ž‡Ž°|[1,Inf]:count Ž‡Ž¦Ž€Ž¦ŽƒŽŖ', 'y' => '{0}Ž‡Ž¦Ž€Ž¦ŽƒŽ¬Ž‡Ž°|[1,Inf]:count Ž‡Ž¦Ž€Ž¦ŽƒŽŖ', 'month' => '{0}Ž‰Ž¦Ž‡Ž°ŽŽ¦ŽƒŽ¬Ž‡Ž°|[1,Inf]:count މަސް', 'm' => '{0}Ž‰Ž¦Ž‡Ž°ŽŽ¦ŽƒŽ¬Ž‡Ž°|[1,Inf]:count މަސް', 'week' => '{0}Ž€Ž¦ŽŠŽ°ŽŒŽ§Ž‡Ž¬Ž‡Ž°|[1,Inf]:count Ž€Ž¦ŽŠŽ°ŽŒŽ§', 'w' => '{0}Ž€Ž¦ŽŠŽ°ŽŒŽ§Ž‡Ž¬Ž‡Ž°|[1,Inf]:count Ž€Ž¦ŽŠŽ°ŽŒŽ§', 'day' => '{0}Ž‹ŽŖŽˆŽ¦ŽŽ°|[1,Inf]:count Ž‹ŽŖŽˆŽ¦ŽŽ°', 'd' => '{0}Ž‹ŽŖŽˆŽ¦ŽŽ°|[1,Inf]:count Ž‹ŽŖŽˆŽ¦ŽŽ°', 'hour' => '{0}ŽŽŽ¦Ž‘ŽØŽ‡ŽØŽƒŽ¬Ž‡Ž°|[1,Inf]:count ŽŽŽ¦Ž‘ŽØ', 'h' => '{0}ŽŽŽ¦Ž‘ŽØŽ‡ŽØŽƒŽ¬Ž‡Ž°|[1,Inf]:count ŽŽŽ¦Ž‘ŽØ', 'minute' => '{0}މިނެޓެއް|[1,Inf]:count މިނެޓް', 'min' => '{0}މިނެޓެއް|[1,Inf]:count މިނެޓް', 'second' => '{0}ŽŽØŽ†ŽŖŽ‚Ž°ŽŒŽ¬Ž‡Ž°|[1,Inf]:count ŽŽØŽ†ŽŖŽ‚Ž°ŽŒŽŖ', 's' => '{0}ŽŽØŽ†ŽŖŽ‚Ž°ŽŒŽ¬Ž‡Ž°|[1,Inf]:count ŽŽØŽ†ŽŖŽ‚Ž°ŽŒŽŖ', 'ago' => ':time Ž†ŽŖŽƒŽØŽ‚Ž°', 'from_now' => ':time ŽŠŽ¦Ž€ŽŖŽ‚Ž°', 'after' => ':time ŽŠŽ¦Ž€ŽŖŽ‚Ž°', 'before' => ':time Ž†ŽŖŽƒŽØ', 'diff_yesterday' => 'އިއްޔެ', 'diff_today' => 'މިއަދު', 'diff_tomorrow' => 'މާދަމާ', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[މިއަދު] LT', 'nextDay' => '[މާދަމާ] LT', 'nextWeek' => 'dddd LT', 'lastDay' => '[އިއްޔެ] LT', 'lastWeek' => '[ŽŠŽ§Ž‡ŽØŽŒŽŖŽˆŽØ] dddd LT', 'sameElse' => 'L', ], 'meridiem' => ['މކ', 'Ž‰ŽŠ'], 'months' => $months, 'months_short' => $months, 'weekdays' => $weekdays, 'weekdays_short' => $weekdays, 'weekdays_min' => ['އާދި', 'ހޯމަ', 'އަން', 'ބުދަ', 'Ž„ŽŖŽƒŽ§', 'ހުކު', 'ހޮނި'], 'list' => [', ', ' އަދި '], ]; PK!ė™NNcarbon/src/Carbon/Lang/ks.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/ks_IN.php'; PK!†ŽĄ)tt carbon/src/Carbon/Lang/ta_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/ta.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['ஜனவரி', 'ą®Ŗą®æą®ŖąÆą®°ą®µą®°ą®æ', 'ą®®ą®¾ą®°ąÆą®šąÆ', 'ą®ą®ŖąÆą®°ą®²ąÆ', 'மே', 'ą®œąÆ‚ą®©ąÆ', 'ą®œąÆ‚ą®²ąÆˆ', 'ą®†ą®•ą®øąÆą®ŸąÆ', 'ą®šąÆ†ą®ŖąÆą®Ÿą®®ąÆą®Ŗą®°ąÆ', 'ą®…ą®•ąÆą®ŸąÆ‹ą®Ŗą®°ąÆ', 'ą®Øą®µą®®ąÆą®Ŗą®°ąÆ', 'ą®Ÿą®æą®šą®®ąÆą®Ŗą®°ąÆ'], 'months_short' => ['ஜன.', 'ą®Ŗą®æą®ŖąÆ.', 'ą®®ą®¾ą®°ąÆ.', 'ą®ą®ŖąÆ.', 'மே', 'ą®œąÆ‚ą®©ąÆ', 'ą®œąÆ‚ą®²ąÆˆ', 'ஆக.', 'ą®šąÆ†ą®ŖąÆ.', 'ą®…ą®•ąÆ.', 'நவ.', 'டிச.'], 'weekdays' => ['ą®žą®¾ą®Æą®æą®±ąÆ', 'ą®¤ą®æą®™ąÆą®•ą®³ąÆ', 'ą®šąÆ†ą®µąÆą®µą®¾ą®ÆąÆ', 'ą®ŖąÆą®¤ą®©ąÆ', 'ą®µą®æą®Æą®¾ą®“ą®©ąÆ', 'ą®µąÆ†ą®³ąÆą®³ą®æ', 'சனி'], 'weekdays_short' => ['ą®žą®¾', 'தி', 'ą®šąÆ†', 'பு', 'வி', 'வெ', 'ச'], 'weekdays_min' => ['ą®žą®¾', 'தி', 'ą®šąÆ†', 'பு', 'வி', 'வெ', 'ச'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['ą®•ą®¾ą®²ąÆˆ', 'மாலை'], ]); PK!J–¦ūĆĆ%carbon/src/Carbon/Lang/sr_Latn_BA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/sr_Latn.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D.M.yy.', 'LL' => 'DD.MM.YYYY.', 'LLL' => 'DD. MMMM YYYY. HH:mm', 'LLLL' => 'dddd, DD. MMMM YYYY. HH:mm', ], 'weekdays' => ['nedjelja', 'ponedeljak', 'utorak', 'srijeda', 'četvrtak', 'petak', 'subota'], 'weekdays_short' => ['ned.', 'pon.', 'ut.', 'sr.', 'čet.', 'pet.', 'sub.'], ]); PK!}„u   carbon/src/Carbon/Lang/ko_KR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ko.php'; PK!aå=Ą Ą carbon/src/Carbon/Lang/ps.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Muhammad Nasir Rahimi * - Nassim Nasibullah (spinzar) */ return [ 'year' => ':count کال|:count کاله', 'y' => ':countکال|:countکاله', 'month' => ':count Ł…ŁŠŲ§Ų“ŲŖ|:count Ł…ŁŠŲ§Ų“ŲŖŁŠ', 'm' => ':countŁ…ŁŠŲ§Ų“ŲŖ|:countŁ…ŁŠŲ§Ų“ŲŖŁŠ', 'week' => ':count Ų§ŁˆŁ†Ū|:count Ų§ŁˆŁ†Ū', 'w' => ':countŲ§ŁˆŁ†Ū|:countŲ§ŁˆŁ†Ū', 'day' => ':count ورځ|:count ورځي', 'd' => ':countورځ|:countورځي', 'hour' => ':count Ų³Ų§Ų¹ŲŖ|:count ساعته', 'h' => ':countŲ³Ų§Ų¹ŲŖ|:countساعته', 'minute' => ':count ŲÆŁ‚ŁŠŁ‚Ł‡|:count ŲÆŁ‚ŁŠŁ‚Ū', 'min' => ':countŲÆŁ‚ŁŠŁ‚Ł‡|:countŲÆŁ‚ŁŠŁ‚Ū', 'second' => ':count Ų«Ų§Ł†ŁŠŁ‡|:count Ų«Ų§Ł†ŁŠŪ', 's' => ':countŲ«Ų§Ł†ŁŠŁ‡|:countŲ«Ų§Ł†ŁŠŪ', 'ago' => ':time دمخه', 'from_now' => ':time له اوس څخه', 'after' => ':time ŁˆŲ±ŁˆŲ³ŲŖŁ‡', 'before' => ':time دمخه', 'list' => ['، ', ' او '], 'meridiem' => ['Ųŗ.Ł….', 'Ųŗ.و.'], 'weekdays' => ['اتوار', 'ګل', 'نهه', 'ؓورو', 'زيارت', 'جمعه', 'Ų®Ų§Ł„ŁŠ'], 'weekdays_short' => ['Ų§', 'Ś«', 'ن', 'Ų“', 'Ų²', 'Ų¬', 'Ų®'], 'weekdays_min' => ['Ų§', 'Ś«', 'ن', 'Ų“', 'Ų²', 'Ų¬', 'Ų®'], 'months' => ['Ų¬Ł†ŁˆŲ±ŁŠ', 'فبروري', 'مارچ', 'Ų§Ł¾Ų±ŪŒŁ„', 'Ł…Ū', 'Ų¬ŁˆŁ†', 'Ų¬ŁˆŁ„Ų§ŪŒ', 'Ų§ŚÆŲ³ŲŖ', 'سېپتمبر', 'اکتوبر', 'Ł†ŁˆŁ…ŲØŲ±', 'دسمبر'], 'months_short' => ['Ų¬Ł†ŁˆŲ±ŁŠ', 'فبروري', 'مارچ', 'Ų§Ł¾Ų±ŪŒŁ„', 'Ł…Ū', 'Ų¬ŁˆŁ†', 'Ų¬ŁˆŁ„Ų§ŪŒ', 'Ų§ŚÆŲ³ŲŖ', 'سېپتمبر', 'اکتوبر', 'Ł†ŁˆŁ…ŲØŲ±', 'دسمبر'], 'months_standalone' => ['Ų¬Ł†ŁˆŲ±ŁŠ', 'فېبروري', 'مارچ', 'Ų§Ł¾Ų±ŪŒŁ„', 'Ł…Ū', 'Ų¬ŁˆŁ†', 'Ų¬ŁˆŁ„Ų§ŪŒ', 'Ų§ŚÆŲ³ŲŖ', 'سپتمبر', 'اکتوبر', 'Ł†ŁˆŁ…ŲØŲ±', 'دسمبر'], 'months_short_standalone' => ['Ų¬Ł†ŁˆŲ±ŁŠ', 'فبروري', 'مارچ', 'Ų§Ł¾Ų±ŪŒŁ„', 'Ł…Ū', 'Ų¬ŁˆŁ†', 'Ų¬ŁˆŁ„Ų§ŪŒ', 'Ų§ŚÆŲ³ŲŖ', 'سپتمبر', 'اکتوبر', 'Ł†ŁˆŁ…ŲØŲ±', 'دسمبر'], 'first_day_of_week' => 6, 'weekend' => [4, 5], 'formats' => [ 'LT' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'YYYY/M/d', 'LL' => 'YYYY MMM D', 'LLL' => 'ŲÆ YYYY ŲÆ MMMM D H:mm', 'LLLL' => 'dddd ŲÆ YYYY ŲÆ MMMM D H:mm', ], ]; PK!<Õ3¦¦carbon/src/Carbon/Lang/kea.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['a', 'p'], 'weekdays' => ['dumingu', 'sigunda-fera', 'tersa-fera', 'kuarta-fera', 'kinta-fera', 'sesta-fera', 'sabadu'], 'weekdays_short' => ['dum', 'sig', 'ter', 'kua', 'kin', 'ses', 'sab'], 'weekdays_min' => ['du', 'si', 'te', 'ku', 'ki', 'se', 'sa'], 'weekdays_standalone' => ['dumingu', 'sigunda-fera', 'tersa-fera', 'kuarta-fera', 'kinta-fera', 'sesta-fera', 'sĆ”badu'], 'months' => ['Janeru', 'Febreru', 'Marsu', 'Abril', 'Maiu', 'Junhu', 'Julhu', 'Agostu', 'Setenbru', 'Otubru', 'Nuvenbru', 'Dizenbru'], 'months_short' => ['Jan', 'Feb', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'Otu', 'Nuv', 'Diz'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D [di] MMMM [di] YYYY HH:mm', 'LLLL' => 'dddd, D [di] MMMM [di] YYYY HH:mm', ], 'year' => ':count otunu', // less reliable 'y' => ':count otunu', // less reliable 'a_year' => ':count otunu', // less reliable 'week' => ':count dĆ­a dumingu', // less reliable 'w' => ':count dĆ­a dumingu', // less reliable 'a_week' => ':count dĆ­a dumingu', // less reliable 'day' => ':count diĆ¢', // less reliable 'd' => ':count diĆ¢', // less reliable 'a_day' => ':count diĆ¢', // less reliable 'minute' => ':count sugundu', // less reliable 'min' => ':count sugundu', // less reliable 'a_minute' => ':count sugundu', // less reliable 'second' => ':count dós', // less reliable 's' => ':count dós', // less reliable 'a_second' => ':count dós', // less reliable ]); PK!C›×ĒĒ!carbon/src/Carbon/Lang/bhb_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Samsung Electronics Co., Ltd. alexey.merzlyakov@samsung.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'], 'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 'weekdays' => ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], 'weekdays_short' => ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 'weekdays_min' => ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 'day_of_first_week_of_year' => 1, ]); PK!Šfōc   carbon/src/Carbon/Lang/fr_CG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!Ä·7q(()carbon/src/Carbon/Lang/ca_ES_Valencia.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ca.php', [ ]); PK!^÷4ŅĒ Ē !carbon/src/Carbon/Lang/sat_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Red Hat Pune libc-alpha@sourceware.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą„‡ą¤²', 'मई', 'ą¤œą„ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'ą¤øą¤æą¤¤ą¤®ą„ą¤¬ą¤°', 'अखऄबर', 'ą¤Øą¤µą¤®ą„ą¤¬ą¤°', 'ą¤¦ą¤æą¤øą¤®ą„ą¤¬ą¤°'], 'months_short' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą„‡ą¤²', 'मई', 'ą¤œą„ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'ą¤øą¤æą¤¤ą¤®ą„ą¤¬ą¤°', 'अखऄबर', 'ą¤Øą¤µą¤®ą„ą¤¬ą¤°', 'ą¤¦ą¤æą¤øą¤®ą„ą¤¬ą¤°'], 'weekdays' => ['ą¤øą¤æą¤‚ą¤—ą„‡ą¤®ą¤¾ą¤ą¤¹ą¤¾ą¤', 'ą¤“ą¤¤ą„‡ą¤®ą¤¾ą¤ą¤¹ą¤¾ą¤', 'ą¤¬ą¤¾ą¤²ą„‡ą¤®ą¤¾ą¤ą¤¹ą¤¾ą¤', 'ą¤øą¤¾ą¤—ą„ą¤Øą¤®ą¤¾ą¤ą¤¹ą¤¾ą¤', 'ą¤øą¤¾ą¤°ą¤¦ą„€ą¤®ą¤¾ą¤ą¤¹ą¤¾ą¤', 'ą¤œą¤¾ą¤°ą„ą¤®ą¤®ą¤¾ą¤ą¤¹ą¤¾ą¤', 'ą¤žą„ą¤¹ą„ą¤®ą¤®ą¤¾ą¤ą¤¹ą¤¾ą¤'], 'weekdays_short' => ['ą¤øą¤æą¤‚ą¤—ą„‡', 'ą¤“ą¤¤ą„‡', 'ą¤¬ą¤¾ą¤²ą„‡', 'ą¤øą¤¾ą¤—ą„ą¤Ø', 'ą¤øą¤¾ą¤°ą¤¦ą„€', 'ą¤œą¤¾ą¤°ą„ą¤®', 'ą¤žą„ą¤¹ą„ą¤®'], 'weekdays_min' => ['ą¤øą¤æą¤‚ą¤—ą„‡', 'ą¤“ą¤¤ą„‡', 'ą¤¬ą¤¾ą¤²ą„‡', 'ą¤øą¤¾ą¤—ą„ą¤Ø', 'ą¤øą¤¾ą¤°ą¤¦ą„€', 'ą¤œą¤¾ą¤°ą„ą¤®', 'ą¤žą„ą¤¹ą„ą¤®'], 'day_of_first_week_of_year' => 1, 'month' => ':count ńindįŗ” cando', // less reliable 'm' => ':count ńindįŗ” cando', // less reliable 'a_month' => ':count ńindįŗ” cando', // less reliable 'week' => ':count mĆ£hĆ£', // less reliable 'w' => ':count mĆ£hĆ£', // less reliable 'a_week' => ':count mĆ£hĆ£', // less reliable 'hour' => ':count ᱄ᱳᱱᱚ', // less reliable 'h' => ':count ᱄ᱳᱱᱚ', // less reliable 'a_hour' => ':count ᱄ᱳᱱᱚ', // less reliable 'minute' => ':count į±Æį±¤į±žį±Ŗį±©', // less reliable 'min' => ':count į±Æį±¤į±žį±Ŗį±©', // less reliable 'a_minute' => ':count į±Æį±¤į±žį±Ŗį±©', // less reliable 'second' => ':count ar', // less reliable 's' => ':count ar', // less reliable 'a_second' => ':count ar', // less reliable 'year' => ':count ne̲s', 'y' => ':count ne̲s', 'a_year' => ':count ne̲s', 'day' => ':count ᱫᱤᱱ', 'd' => ':count ᱫᱤᱱ', 'a_day' => ':count ᱫᱤᱱ', ]); PK! ŪmNNcarbon/src/Carbon/Lang/st.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/st_ZA.php'; PK!-jÜINNcarbon/src/Carbon/Lang/to.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/to_TO.php'; PK!łwjOOcarbon/src/Carbon/Lang/az.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - Kunal Marwaha * - FranƧois B * - JD Isaacks * - Orxan * - Şəhriyar İmanov * - Baran Şengül */ return [ 'year' => ':count il', 'a_year' => '{1}bir il|]1,Inf[:count il', 'y' => ':count il', 'month' => ':count ay', 'a_month' => '{1}bir ay|]1,Inf[:count ay', 'm' => ':count ay', 'week' => ':count həftə', 'a_week' => '{1}bir həftə|]1,Inf[:count həftə', 'w' => ':count h.', 'day' => ':count gün', 'a_day' => '{1}bir gün|]1,Inf[:count gün', 'd' => ':count g.', 'hour' => ':count saat', 'a_hour' => '{1}bir saat|]1,Inf[:count saat', 'h' => ':count saat', 'minute' => ':count d.', 'a_minute' => '{1}bir dəqiqə|]1,Inf[:count dəqiqə', 'min' => ':count dəqiqə', 'second' => ':count san.', 'a_second' => '{1}birneƧə saniyə|]1,Inf[:count saniyə', 's' => ':count saniyə', 'ago' => ':time əvvəl', 'from_now' => ':time sonra', 'after' => ':time sonra', 'before' => ':time əvvəl', 'diff_now' => 'indi', 'diff_today' => 'bugün', 'diff_today_regexp' => 'bugün(?:\\s+saat)?', 'diff_yesterday' => 'dünən', 'diff_tomorrow' => 'sabah', 'diff_tomorrow_regexp' => 'sabah(?:\\s+saat)?', 'diff_before_yesterday' => 'srağagün', 'diff_after_tomorrow' => 'birisi gün', 'period_recurrences' => ':count dəfədən bir', 'period_interval' => 'hər :interval', 'period_start_date' => ':date tarixindən başlayaraq', 'period_end_date' => ':date tarixinədək', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[bugün saat] LT', 'nextDay' => '[sabah saat] LT', 'nextWeek' => '[gələn həftə] dddd [saat] LT', 'lastDay' => '[dünən] LT', 'lastWeek' => '[keƧən həftə] dddd [saat] LT', 'sameElse' => 'L', ], 'ordinal' => function ($number) { if ($number === 0) { // special case for zero return "$number-ıncı"; } static $suffixes = [ 1 => '-inci', 5 => '-inci', 8 => '-inci', 70 => '-inci', 80 => '-inci', 2 => '-nci', 7 => '-nci', 20 => '-nci', 50 => '-nci', 3 => '-üncü', 4 => '-üncü', 100 => '-üncü', 6 => '-ncı', 9 => '-uncu', 10 => '-uncu', 30 => '-uncu', 60 => '-ıncı', 90 => '-ıncı', ]; $lastDigit = $number % 10; return $number.($suffixes[$lastDigit] ?? $suffixes[$number % 100 - $lastDigit] ?? $suffixes[$number >= 100 ? 100 : -1] ?? ''); }, 'meridiem' => function ($hour) { if ($hour < 4) { return 'gecə'; } if ($hour < 12) { return 'səhər'; } if ($hour < 17) { return 'gündüz'; } return 'axşam'; }, 'months' => ['yanvar', 'fevral', 'mart', 'aprel', 'may', 'iyun', 'iyul', 'avqust', 'sentyabr', 'oktyabr', 'noyabr', 'dekabr'], 'months_short' => ['yan', 'fev', 'mar', 'apr', 'may', 'iyn', 'iyl', 'avq', 'sen', 'okt', 'noy', 'dek'], 'months_standalone' => ['Yanvar', 'Fevral', 'Mart', 'Aprel', 'May', 'İyun', 'İyul', 'Avqust', 'Sentyabr', 'Oktyabr', 'Noyabr', 'Dekabr'], 'weekdays' => ['bazar', 'bazar ertəsi', 'Ƨərşənbə axşamı', 'Ƨərşənbə', 'cümə axşamı', 'cümə', 'şənbə'], 'weekdays_short' => ['baz', 'bze', 'Ƨax', 'Ƨər', 'cax', 'cüm', 'şən'], 'weekdays_min' => ['bz', 'be', 'Ƨa', 'Ƨə', 'ca', 'cü', 'şə'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' və '], ]; PK!x^“FF carbon/src/Carbon/Lang/en_MY.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!1ƒH³((&carbon/src/Carbon/Lang/aa_ER@saaho.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ge'ez Frontier Foundation locales@geez.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['Qunxa Garablu', 'Naharsi Kudo', 'Ciggilta Kudo', 'Agda Baxisso', 'Caxah Alsa', 'Qasa Dirri', 'Qado Dirri', 'Leqeeni', 'Waysu', 'Diteli', 'Ximoli', 'Kaxxa Garablu'], 'months_short' => ['Qun', 'Nah', 'Cig', 'Agd', 'Cax', 'Qas', 'Qad', 'Leq', 'Way', 'Dit', 'Xim', 'Kax'], 'weekdays' => ['Naba Sambat', 'Sani', 'Salus', 'Rabuq', 'Camus', 'Jumqata', 'Qunxa Sambat'], 'weekdays_short' => ['Nab', 'San', 'Sal', 'Rab', 'Cam', 'Jum', 'Qun'], 'weekdays_min' => ['Nab', 'San', 'Sal', 'Rab', 'Cam', 'Jum', 'Qun'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'meridiem' => ['saaku', 'carra'], ]); PK!µzņOOcarbon/src/Carbon/Lang/mjw.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/mjw_IN.php'; PK!“|˜   carbon/src/Carbon/Lang/ru_KG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ru.php'; PK!Ś„”Ÿuucarbon/src/Carbon/Lang/nd.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'weekdays' => ['Sonto', 'Mvulo', 'Sibili', 'Sithathu', 'Sine', 'Sihlanu', 'Mgqibelo'], 'weekdays_short' => ['Son', 'Mvu', 'Sib', 'Sit', 'Sin', 'Sih', 'Mgq'], 'weekdays_min' => ['Son', 'Mvu', 'Sib', 'Sit', 'Sin', 'Sih', 'Mgq'], 'months' => ['Zibandlela', 'Nhlolanja', 'Mbimbitho', 'Mabasa', 'Nkwenkwezi', 'Nhlangula', 'Ntulikazi', 'Ncwabakazi', 'Mpandula', 'Mfumfu', 'Lwezi', 'Mpalakazi'], 'months_short' => ['Zib', 'Nhlo', 'Mbi', 'Mab', 'Nkw', 'Nhla', 'Ntu', 'Ncw', 'Mpan', 'Mfu', 'Lwe', 'Mpal'], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'year' => 'okweminyaka engu-:count', // less reliable 'y' => 'okweminyaka engu-:count', // less reliable 'a_year' => 'okweminyaka engu-:count', // less reliable 'month' => 'inyanga ezingu-:count', 'm' => 'inyanga ezingu-:count', 'a_month' => 'inyanga ezingu-:count', 'week' => 'amaviki angu-:count', 'w' => 'amaviki angu-:count', 'a_week' => 'amaviki angu-:count', 'day' => 'kwamalanga angu-:count', 'd' => 'kwamalanga angu-:count', 'a_day' => 'kwamalanga angu-:count', 'hour' => 'amahola angu-:count', 'h' => 'amahola angu-:count', 'a_hour' => 'amahola angu-:count', 'minute' => 'imizuzu engu-:count', 'min' => 'imizuzu engu-:count', 'a_minute' => 'imizuzu engu-:count', 'second' => 'imizuzwana engu-:count', 's' => 'imizuzwana engu-:count', 'a_second' => 'imizuzwana engu-:count', ]); PK!ų›(}: : carbon/src/Carbon/Lang/sh.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ // @codeCoverageIgnoreStart if (class_exists('Symfony\\Component\\Translation\\PluralizationRules')) { \Symfony\Component\Translation\PluralizationRules::set(function ($number) { return ((1 == $number % 10) && (11 != $number % 100)) ? 0 : ((($number % 10 >= 2) && ($number % 10 <= 4) && (($number % 100 < 10) || ($number % 100 >= 20))) ? 1 : 2); }, 'sh'); } // @codeCoverageIgnoreEnd /* * Authors: * - Томица ŠšŠ¾Ń€Š°Ń› * - Enrique Vidal * - Christopher Dell * - dmilisic * - danijel * - Miroslav Matkovic (mikki021) */ return [ 'diff_now' => 'sada', 'diff_yesterday' => 'juče', 'diff_tomorrow' => 'sutra', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'MMMM D, YYYY', 'LLL' => 'DD MMM HH:mm', 'LLLL' => 'MMMM DD, YYYY HH:mm', ], 'year' => ':count godina|:count godine|:count godina', 'y' => ':count g.', 'month' => ':count mesec|:count meseca|:count meseci', 'm' => ':count m.', 'week' => ':count nedelja|:count nedelje|:count nedelja', 'w' => ':count n.', 'day' => ':count dan|:count dana|:count dana', 'd' => ':count d.', 'hour' => ':count sat|:count sata|:count sati', 'h' => ':count č.', 'minute' => ':count minut|:count minuta|:count minuta', 'min' => ':count min.', 'second' => ':count sekund|:count sekunde|:count sekundi', 's' => ':count s.', 'ago' => 'pre :time', 'from_now' => 'za :time', 'after' => 'nakon :time', 'before' => ':time raniјe', 'weekdays' => ['Nedelja', 'Ponedeljak', 'Utorak', 'Sreda', 'Četvrtak', 'Petak', 'Subota'], 'weekdays_short' => ['Ned', 'Pon', 'Uto', 'Sre', 'Čet', 'Pet', 'Sub'], 'weekdays_min' => ['Ned', 'Pon', 'Uto', 'Sre', 'Čet', 'Pet', 'Sub'], 'months' => ['Januar', 'Februar', 'Mart', 'April', 'Maj', 'Jun', 'Jul', 'Avgust', 'Septembar', 'Oktobar', 'Novembar', 'Decembar'], 'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 'Jul', 'Avg', 'Sep', 'Okt', 'Nov', 'Dec'], 'list' => [', ', ' i '], 'meridiem' => ['pre podne', 'po podne'], ]; PK!„‚Ŗå‰‰ carbon/src/Carbon/Lang/en_CA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - Zhan Tong Zhang * - Mayank Badola * - JD Isaacks */ return array_replace_recursive(require __DIR__.'/en.php', [ 'from_now' => 'in :time', 'formats' => [ 'LT' => 'h:mm A', 'LTS' => 'h:mm:ss A', 'L' => 'YYYY-MM-DD', 'LL' => 'MMMM D, YYYY', 'LLL' => 'MMMM D, YYYY h:mm A', 'LLLL' => 'dddd, MMMM D, YYYY h:mm A', ], ]); PK!®ė¼& % %carbon/src/Carbon/Lang/be.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ // @codeCoverageIgnoreStart if (class_exists('Symfony\\Component\\Translation\\PluralizationRules')) { \Symfony\Component\Translation\PluralizationRules::set(function ($number) { return ((1 == $number % 10) && (11 != $number % 100)) ? 0 : ((($number % 10 >= 2) && ($number % 10 <= 4) && (($number % 100 < 10) || ($number % 100 >= 20))) ? 1 : 2); }, 'be'); } // @codeCoverageIgnoreEnd /* * Authors: * - Josh Soref * - SobakaSlava * - FranƧois B * - Serhan Apaydın * - JD Isaacks * - AbadonnaAbbys */ return [ 'year' => ':count гоГ|:count гаГы|:count Š³Š°Š“Š¾Ńž', 'a_year' => '{1}гоГ|:count гоГ|:count гаГы|:count Š³Š°Š“Š¾Ńž', 'y' => ':count гоГ|:count гаГы|:count Š³Š°Š“Š¾Ńž', 'month' => ':count Š¼ŠµŃŃŃ†|:count Š¼ŠµŃŃŃ†Ń‹|:count Š¼ŠµŃŃŃ†Š°Ńž', 'a_month' => '{1}Š¼ŠµŃŃŃ†|:count Š¼ŠµŃŃŃ†|:count Š¼ŠµŃŃŃ†Ń‹|:count Š¼ŠµŃŃŃ†Š°Ńž', 'm' => ':count Š¼ŠµŃŃŃ†|:count Š¼ŠµŃŃŃ†Ń‹|:count Š¼ŠµŃŃŃ†Š°Ńž', 'week' => ':count Ń‚Ń‹Š“Š·ŠµŠ½ŃŒ|:count тыГні|:count Ń‚Ń‹Š“Š½ŃŃž', 'a_week' => '{1}Ń‚Ń‹Š“Š·ŠµŠ½ŃŒ|:count Ń‚Ń‹Š“Š·ŠµŠ½ŃŒ|:count тыГні|:count Ń‚Ń‹Š“Š½ŃŃž', 'w' => ':count Ń‚Ń‹Š“Š·ŠµŠ½ŃŒ|:count тыГні|:count Ń‚Ń‹Š“Š½ŃŃž', 'day' => ':count Гзень|:count ні|:count Гзён', 'a_day' => '{1}Гзень|:count Гзень|:count ні|:count Гзён', 'd' => ':count Гзень|:count ні|:count Гзён', 'hour' => ':count Š³Š°Š“Š·Ń–Š½Ńƒ|:count гаГзіны|:count гаГзін', 'a_hour' => '{1}гаГзіна|:count гаГзіна|:count гаГзіны|:count гаГзін', 'h' => ':count гаГзіна|:count гаГзіны|:count гаГзін', 'minute' => ':count хвіліна|:count хвіліны|:count хвілін', 'a_minute' => '{1}хвіліна|:count хвіліна|:count хвіліны|:count хвілін', 'min' => ':count хвіліна|:count хвіліны|:count хвілін', 'second' => ':count секунГа|:count ŃŠµŠŗŃƒŠ½Š“Ń‹|:count секунГ', 'a_second' => '{1}Š½ŠµŠŗŠ°Š»ŃŒŠŗŃ– секунГ|:count секунГа|:count ŃŠµŠŗŃƒŠ½Š“Ń‹|:count секунГ', 's' => ':count секунГа|:count ŃŠµŠŗŃƒŠ½Š“Ń‹|:count секунГ', 'hour_ago' => ':count Š³Š°Š“Š·Ń–Š½Ńƒ|:count гаГзіны|:count гаГзін', 'a_hour_ago' => '{1}Š³Š°Š“Š·Ń–Š½Ńƒ|:count Š³Š°Š“Š·Ń–Š½Ńƒ|:count гаГзіны|:count гаГзін', 'h_ago' => ':count Š³Š°Š“Š·Ń–Š½Ńƒ|:count гаГзіны|:count гаГзін', 'minute_ago' => ':count Ń…Š²Ń–Š»Ń–Š½Ńƒ|:count хвіліны|:count хвілін', 'a_minute_ago' => '{1}Ń…Š²Ń–Š»Ń–Š½Ńƒ|:count Ń…Š²Ń–Š»Ń–Š½Ńƒ|:count хвіліны|:count хвілін', 'min_ago' => ':count Ń…Š²Ń–Š»Ń–Š½Ńƒ|:count хвіліны|:count хвілін', 'second_ago' => ':count секунГу|:count ŃŠµŠŗŃƒŠ½Š“Ń‹|:count секунГ', 'a_second_ago' => '{1}Š½ŠµŠŗŠ°Š»ŃŒŠŗŃ– секунГ|:count секунГу|:count ŃŠµŠŗŃƒŠ½Š“Ń‹|:count секунГ', 's_ago' => ':count секунГу|:count ŃŠµŠŗŃƒŠ½Š“Ń‹|:count секунГ', 'hour_from_now' => ':count Š³Š°Š“Š·Ń–Š½Ńƒ|:count гаГзіны|:count гаГзін', 'a_hour_from_now' => '{1}Š³Š°Š“Š·Ń–Š½Ńƒ|:count Š³Š°Š“Š·Ń–Š½Ńƒ|:count гаГзіны|:count гаГзін', 'h_from_now' => ':count Š³Š°Š“Š·Ń–Š½Ńƒ|:count гаГзіны|:count гаГзін', 'minute_from_now' => ':count Ń…Š²Ń–Š»Ń–Š½Ńƒ|:count хвіліны|:count хвілін', 'a_minute_from_now' => '{1}Ń…Š²Ń–Š»Ń–Š½Ńƒ|:count Ń…Š²Ń–Š»Ń–Š½Ńƒ|:count хвіліны|:count хвілін', 'min_from_now' => ':count Ń…Š²Ń–Š»Ń–Š½Ńƒ|:count хвіліны|:count хвілін', 'second_from_now' => ':count секунГу|:count ŃŠµŠŗŃƒŠ½Š“Ń‹|:count секунГ', 'a_second_from_now' => '{1}Š½ŠµŠŗŠ°Š»ŃŒŠŗŃ– секунГ|:count секунГу|:count ŃŠµŠŗŃƒŠ½Š“Ń‹|:count секунГ', 's_from_now' => ':count секунГу|:count ŃŠµŠŗŃƒŠ½Š“Ń‹|:count секунГ', 'hour_after' => ':count Š³Š°Š“Š·Ń–Š½Ńƒ|:count гаГзіны|:count гаГзін', 'a_hour_after' => '{1}Š³Š°Š“Š·Ń–Š½Ńƒ|:count Š³Š°Š“Š·Ń–Š½Ńƒ|:count гаГзіны|:count гаГзін', 'h_after' => ':count Š³Š°Š“Š·Ń–Š½Ńƒ|:count гаГзіны|:count гаГзін', 'minute_after' => ':count Ń…Š²Ń–Š»Ń–Š½Ńƒ|:count хвіліны|:count хвілін', 'a_minute_after' => '{1}Ń…Š²Ń–Š»Ń–Š½Ńƒ|:count Ń…Š²Ń–Š»Ń–Š½Ńƒ|:count хвіліны|:count хвілін', 'min_after' => ':count Ń…Š²Ń–Š»Ń–Š½Ńƒ|:count хвіліны|:count хвілін', 'second_after' => ':count секунГу|:count ŃŠµŠŗŃƒŠ½Š“Ń‹|:count секунГ', 'a_second_after' => '{1}Š½ŠµŠŗŠ°Š»ŃŒŠŗŃ– секунГ|:count секунГу|:count ŃŠµŠŗŃƒŠ½Š“Ń‹|:count секунГ', 's_after' => ':count секунГу|:count ŃŠµŠŗŃƒŠ½Š“Ń‹|:count секунГ', 'hour_before' => ':count Š³Š°Š“Š·Ń–Š½Ńƒ|:count гаГзіны|:count гаГзін', 'a_hour_before' => '{1}Š³Š°Š“Š·Ń–Š½Ńƒ|:count Š³Š°Š“Š·Ń–Š½Ńƒ|:count гаГзіны|:count гаГзін', 'h_before' => ':count Š³Š°Š“Š·Ń–Š½Ńƒ|:count гаГзіны|:count гаГзін', 'minute_before' => ':count Ń…Š²Ń–Š»Ń–Š½Ńƒ|:count хвіліны|:count хвілін', 'a_minute_before' => '{1}Ń…Š²Ń–Š»Ń–Š½Ńƒ|:count Ń…Š²Ń–Š»Ń–Š½Ńƒ|:count хвіліны|:count хвілін', 'min_before' => ':count Ń…Š²Ń–Š»Ń–Š½Ńƒ|:count хвіліны|:count хвілін', 'second_before' => ':count секунГу|:count ŃŠµŠŗŃƒŠ½Š“Ń‹|:count секунГ', 'a_second_before' => '{1}Š½ŠµŠŗŠ°Š»ŃŒŠŗŃ– секунГ|:count секунГу|:count ŃŠµŠŗŃƒŠ½Š“Ń‹|:count секунГ', 's_before' => ':count секунГу|:count ŃŠµŠŗŃƒŠ½Š“Ń‹|:count секунГ', 'ago' => ':time Ń‚Š°Š¼Ńƒ', 'from_now' => 'праз :time', 'after' => ':time ŠæŠ°ŃŠ»Ń', 'before' => ':time Га', 'diff_now' => 'Ń†ŃŠæŠµŃ€', 'diff_today' => 'Š”Ń‘Š½Š½Ń', 'diff_today_regexp' => 'Š”Ń‘Š½Š½Ń(?:\\s+ў)?', 'diff_yesterday' => 'ŃƒŃ‡Š¾Ń€Š°', 'diff_yesterday_regexp' => 'Учора(?:\\s+ў)?', 'diff_tomorrow' => 'Š·Š°ŃžŃ‚Ń€Š°', 'diff_tomorrow_regexp' => 'Š—Š°ŃžŃ‚Ń€Š°(?:\\s+ў)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D MMMM YYYY г.', 'LLL' => 'D MMMM YYYY г., HH:mm', 'LLLL' => 'dddd, D MMMM YYYY г., HH:mm', ], 'calendar' => [ 'sameDay' => '[Š”Ń‘Š½Š½Ń ў] LT', 'nextDay' => '[Š—Š°ŃžŃ‚Ń€Š° ў] LT', 'nextWeek' => '[Š£] dddd [ў] LT', 'lastDay' => '[Учора ў] LT', 'lastWeek' => function (\Carbon\CarbonInterface $current) { switch ($current->dayOfWeek) { case 1: case 2: case 4: return '[Š£ Š¼Ń–Š½ŃƒŠ»Ń‹] dddd [ў] LT'; default: return '[Š£ Š¼Ń–Š½ŃƒŠ»ŃƒŃŽ] dddd [ў] LT'; } }, 'sameElse' => 'L', ], 'ordinal' => function ($number, $period) { switch ($period) { case 'M': case 'd': case 'DDD': case 'w': case 'W': return ($number % 10 === 2 || $number % 10 === 3) && ($number % 100 !== 12 && $number % 100 !== 13) ? $number.'-і' : $number.'-ы'; case 'D': return $number.'-га'; default: return $number; } }, 'meridiem' => function ($hour) { if ($hour < 4) { return 'ночы'; } if ($hour < 12) { return 'раніцы'; } if ($hour < 17) { return 'Š“Š½Ń'; } return 'вечара'; }, 'months' => ['ŃŃ‚ŃƒŠ“Š·ŠµŠ½Ń', 'Š»ŃŽŃ‚Š°Š³Š°', 'сакавіка', 'красавіка', 'Ń‚Ń€Š°ŃžŠ½Ń', 'Ń‡ŃŃ€Š²ŠµŠ½Ń', 'Š»Ń–ŠæŠµŠ½Ń', 'Š¶Š½Ń–ŃžŠ½Ń', 'Š²ŠµŃ€Š°ŃŠ½Ń', 'кастрычніка', 'лістапаГа', 'ŃŠ½ŠµŠ¶Š½Ń'], 'months_standalone' => ['ŃŃ‚ŃƒŠ“Š·ŠµŠ½ŃŒ', 'Š»ŃŽŃ‚Ń‹', 'сакавік', 'красавік', 'Ń‚Ń€Š°Š²ŠµŠ½ŃŒ', 'Ń‡ŃŃ€Š²ŠµŠ½ŃŒ', 'Š»Ń–ŠæŠµŠ½ŃŒ', 'Š¶Š½Ń–Š²ŠµŠ½ŃŒ', 'Š²ŠµŃ€Š°ŃŠµŠ½ŃŒ', 'кастрычнік', 'лістапаГ', 'снежань'], 'months_short' => ['ŃŃ‚ŃƒŠ“', 'Š»ŃŽŃ‚', 'сак', 'крас', 'трав', 'Ń‡ŃŃ€Š²', 'ліп', 'жнів', 'вер', 'каст', 'ліст', 'снеж'], 'months_regexp' => '/(DD?o?\.?(\[[^\[\]]*\]|\s)+MMMM?|L{2,4}|l{2,4})/', 'weekdays' => ['Š½ŃŠ“Š·ŠµŠ»ŃŽ', 'ŠæŠ°Š½ŃŠ“Š·ŠµŠ»Š°Šŗ', 'Š°ŃžŃ‚Š¾Ń€Š°Šŗ', 'ŃŠµŃ€Š°Š“Ńƒ', 'чацвер', 'ŠæŃŃ‚Š½Ń–Ń†Ńƒ', 'ŃŃƒŠ±Š¾Ń‚Ńƒ'], 'weekdays_standalone' => ['Š½ŃŠ“Š·ŠµŠ»Ń', 'ŠæŠ°Š½ŃŠ“Š·ŠµŠ»Š°Šŗ', 'Š°ŃžŃ‚Š¾Ń€Š°Šŗ', 'сераГа', 'чацвер', 'ŠæŃŃ‚Š½Ń–Ń†Š°', 'ŃŃƒŠ±Š¾Ń‚Š°'], 'weekdays_short' => ['нГ', 'пн', 'ат', 'ср', 'чц', 'пт', 'сб'], 'weekdays_min' => ['нГ', 'пн', 'ат', 'ср', 'чц', 'пт', 'сб'], 'weekdays_regexp' => '/\[ ?[Š£ŃƒŃž] ?(?:Š¼Ń–Š½ŃƒŠ»ŃƒŃŽ|Š½Š°ŃŃ‚ŃƒŠæŠ½ŃƒŃŽ)? ?\] ?dddd/', 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' і '], 'months_short_standalone' => ['сту', 'Š»ŃŽŃ‚', 'сак', 'кра', 'май', 'чэр', 'ліп', 'жні', 'вер', 'кас', 'ліс', 'сне'], ]; PK!*'¢.ķ ķ carbon/src/Carbon/Lang/tg.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Orif N. Jr */ return [ 'year' => '{1}ŃŠŗ сол|:count сол', 'month' => '{1}ŃŠŗ моҳ|:count моҳ', 'week' => '{1}ŃŠŗ ҳафта|:count ҳафта', 'day' => '{1}ŃŠŗ Ń€ÓÆŠ·|:count Ń€ÓÆŠ·', 'hour' => '{1}ŃŠŗ соат|:count соат', 'minute' => '{1}ŃŠŗ Гақиқа|:count Гақиқа', 'second' => '{1}ŃŠŗŃ‡Š°Š½Š“ ŃŠ¾Š½ŠøŃ|:count ŃŠ¾Š½ŠøŃ', 'ago' => ':time пеш', 'from_now' => 'баъГи :time', 'diff_today' => 'Š˜Š¼Ń€ÓÆŠ·', 'diff_yesterday' => 'Дирӯз', 'diff_yesterday_regexp' => 'Дирӯз(?:\\s+соати)?', 'diff_tomorrow' => 'Пагоҳ', 'diff_tomorrow_regexp' => 'Пагоҳ(?:\\s+соати)?', 'diff_today_regexp' => 'Š˜Š¼Ń€ÓÆŠ·(?:\\s+соати)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Š˜Š¼Ń€ÓÆŠ· соати] LT', 'nextDay' => '[Пагоҳ соати] LT', 'nextWeek' => 'dddd[Šø] [ҳафтаи Š¾ŃŠ½Š“а соати] LT', 'lastDay' => '[Дирӯз соати] LT', 'lastWeek' => 'dddd[Šø] [ҳафтаи Š³ŃƒŠ·Š°ŃˆŃ‚а соати] LT', 'sameElse' => 'L', ], 'ordinal' => function ($number) { if ($number === 0) { // special case for zero return "$number-ıncı"; } static $suffixes = [ 0 => '-ум', 1 => '-ум', 2 => '-ŃŽŠ¼', 3 => '-ŃŽŠ¼', 4 => '-ум', 5 => '-ум', 6 => '-ум', 7 => '-ум', 8 => '-ум', 9 => '-ум', 10 => '-ум', 12 => '-ум', 13 => '-ум', 20 => '-ум', 30 => '-ŃŽŠ¼', 40 => '-ум', 50 => '-ум', 60 => '-ум', 70 => '-ум', 80 => '-ум', 90 => '-ум', 100 => '-ум', ]; return $number.($suffixes[$number] ?? $suffixes[$number % 10] ?? $suffixes[$number >= 100 ? 100 : -1] ?? ''); }, 'meridiem' => function ($hour) { if ($hour < 4) { return 'шаб'; } if ($hour < 11) { return 'субҳ'; } if ($hour < 16) { return 'Ń€ÓÆŠ·'; } if ($hour < 19) { return 'бегоҳ'; } return 'шаб'; }, 'months' => ['ŃŠ½Š²Š°Ń€', 'феврал', 'март', 'апрел', 'май', 'ŠøŃŽŠ½', 'ŠøŃŽŠ»', 'Š°Š²Š³ŃƒŃŃ‚', 'ŃŠµŠ½Ń‚ŃŠ±Ń€', 'Š¾ŠŗŃ‚ŃŠ±Ń€', 'Š½Š¾ŃŠ±Ń€', 'Гекабр'], 'months_short' => ['ŃŠ½Š²', 'фев', 'мар', 'апр', 'май', 'ŠøŃŽŠ½', 'ŠøŃŽŠ»', 'авг', 'сен', 'окт', 'Š½Š¾Ń', 'Гек'], 'weekdays' => ['ŃŠŗŃˆŠ°Š½Š±Šµ', 'Гушанбе', 'сешанбе', 'Ń‡Š¾Ń€ŃˆŠ°Š½Š±Šµ', 'панҷшанбе', 'ҷумъа', 'шанбе'], 'weekdays_short' => ['ŃŃˆŠ±', 'Гшб', 'сшб', 'Ń‡ŃˆŠ±', 'пшб', 'ҷум', 'шнб'], 'weekdays_min' => ['яш', 'Гш', 'сш', 'чш', 'пш', 'ҷм', 'шб'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' ва '], ]; PK!Ąd2½   carbon/src/Carbon/Lang/fr_VU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/fr.php', [ 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY h:mm a', 'LLLL' => 'dddd D MMMM YYYY h:mm a', ], ]); PK!śüR®   carbon/src/Carbon/Lang/ne_NP.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ne.php'; PK!x^“FF carbon/src/Carbon/Lang/en_KI.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!Æ ·`ĻĻ carbon/src/Carbon/Lang/es_MX.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/es.php', [ 'diff_before_yesterday' => 'antier', 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, ]); PK! Ėŗŗ!carbon/src/Carbon/Lang/bem_ZM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - ANLoc Martin Benjamin locales@africanlocalization.net */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'MM/DD/YYYY', ], 'months' => ['Januari', 'Februari', 'Machi', 'Epreo', 'Mei', 'Juni', 'Julai', 'Ogasti', 'Septemba', 'Oktoba', 'Novemba', 'Disemba'], 'months_short' => ['Jan', 'Feb', 'Mac', 'Epr', 'Mei', 'Jun', 'Jul', 'Oga', 'Sep', 'Okt', 'Nov', 'Dis'], 'weekdays' => ['Pa Mulungu', 'Palichimo', 'Palichibuli', 'Palichitatu', 'Palichine', 'Palichisano', 'Pachibelushi'], 'weekdays_short' => ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 'weekdays_min' => ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'meridiem' => ['uluchelo', 'akasuba'], 'year' => 'myaka :count', 'y' => 'myaka :count', 'a_year' => 'myaka :count', 'month' => 'myeshi :count', 'm' => 'myeshi :count', 'a_month' => 'myeshi :count', 'week' => 'umulungu :count', 'w' => 'umulungu :count', 'a_week' => 'umulungu :count', 'day' => 'inshiku :count', 'd' => 'inshiku :count', 'a_day' => 'inshiku :count', 'hour' => 'awala :count', 'h' => 'awala :count', 'a_hour' => 'awala :count', 'minute' => 'miniti :count', 'min' => 'miniti :count', 'a_minute' => 'miniti :count', 'second' => 'sekondi :count', 's' => 'sekondi :count', 'a_second' => 'sekondi :count', ]); PK!DšOOcarbon/src/Carbon/Lang/bem.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/bem_ZM.php'; PK!Ńā·%carbon/src/Carbon/Lang/zh_Hans_SG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/zh_Hans.php'; PK!"„™™ carbon/src/Carbon/Lang/de_BE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/de.php', [ 'formats' => [ 'L' => 'YYYY-MM-DD', ], ]); PK! “£‹NNcarbon/src/Carbon/Lang/ig.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/ig_NG.php'; PK!Ų'½%carbon/src/Carbon/Lang/zh_Hant_MO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/zh_Hant.php'; PK!pÕpĄ   carbon/src/Carbon/Lang/mi_NZ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/mi.php'; PK!i?#ÖÖ carbon/src/Carbon/Lang/en_AG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Free Software Foundation, Inc. bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'day_of_first_week_of_year' => 1, ]); PK!ÆQ9ž ž carbon/src/Carbon/Lang/lb.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Philippe Vaucher * - Tsutomu Kuroda * - dan-nl * - Simon Lelorrain (slelorrain) */ return [ 'year' => ':count Joer', 'y' => ':countJ', 'month' => ':count Mount|:count MĆ©int', 'm' => ':countMo', 'week' => ':count Woch|:count Wochen', 'w' => ':countWo|:countWo', 'day' => ':count Dag|:count Deeg', 'd' => ':countD', 'hour' => ':count Stonn|:count Stonnen', 'h' => ':countSto', 'minute' => ':count Minutt|:count Minutten', 'min' => ':countM', 'second' => ':count Sekonn|:count Sekonnen', 's' => ':countSek', 'ago' => 'virun :time', 'from_now' => 'an :time', 'before' => ':time virdrun', 'after' => ':time duerno', 'diff_today' => 'Haut', 'diff_yesterday' => 'GĆ«schter', 'diff_yesterday_regexp' => 'GĆ«schter(?:\\s+um)?', 'diff_tomorrow' => 'Muer', 'diff_tomorrow_regexp' => 'Muer(?:\\s+um)?', 'diff_today_regexp' => 'Haut(?:\\s+um)?', 'formats' => [ 'LT' => 'H:mm [Auer]', 'LTS' => 'H:mm:ss [Auer]', 'L' => 'DD.MM.YYYY', 'LL' => 'D. MMMM YYYY', 'LLL' => 'D. MMMM YYYY H:mm [Auer]', 'LLLL' => 'dddd, D. MMMM YYYY H:mm [Auer]', ], 'calendar' => [ 'sameDay' => '[Haut um] LT', 'nextDay' => '[Muer um] LT', 'nextWeek' => 'dddd [um] LT', 'lastDay' => '[GĆ«schter um] LT', 'lastWeek' => function (\Carbon\CarbonInterface $date) { // Different date string for 'DĆ«nschdeg' (Tuesday) and 'Donneschdeg' (Thursday) due to phonological rule switch ($date->dayOfWeek) { case 2: case 4: return '[Leschten] dddd [um] LT'; default: return '[Leschte] dddd [um] LT'; } }, 'sameElse' => 'L', ], 'months' => ['Januar', 'Februar', 'MƤerz', 'AbrĆ«ll', 'Mee', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'], 'months_short' => ['Jan.', 'Febr.', 'Mrz.', 'Abr.', 'Mee', 'Jun.', 'Jul.', 'Aug.', 'Sept.', 'Okt.', 'Nov.', 'Dez.'], 'weekdays' => ['Sonndeg', 'MĆ©indeg', 'DĆ«nschdeg', 'MĆ«ttwoch', 'Donneschdeg', 'Freideg', 'Samschdeg'], 'weekdays_short' => ['So.', 'MĆ©.', 'DĆ«.', 'MĆ«.', 'Do.', 'Fr.', 'Sa.'], 'weekdays_min' => ['So', 'MĆ©', 'DĆ«', 'MĆ«', 'Do', 'Fr', 'Sa'], 'ordinal' => ':number.', 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' an '], 'meridiem' => ['moies', 'mĆ«ttes'], 'weekdays_short_standalone' => ['Son', 'MĆ©i', 'DĆ«n', 'MĆ«t', 'Don', 'Fre', 'Sam'], 'months_short_standalone' => ['Jan', 'Feb', 'MƤe', 'Abr', 'Mee', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'], ]; PK!Y›   carbon/src/Carbon/Lang/ff_CM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ff.php'; PK!cj1ßŲŲ carbon/src/Carbon/Lang/da_GL.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/da.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', 'LL' => 'D. MMM YYYY', 'LLL' => 'D. MMMM YYYY HH.mm', 'LLLL' => 'dddd [den] D. MMMM YYYY HH.mm', ], ]); PK!ā„Ećć!carbon/src/Carbon/Lang/the_NP.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Chitwanix OS Development info@chitwanix.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'dddd DD MMM YYYY', ], 'months' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤¼ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą„‡ą¤²', 'मई', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'ą¤øą¤æą¤¤ą¤®ą„ą¤¬ą¤°', 'ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°', 'ą¤Øą¤µą¤®ą„ą¤¬ą¤°', 'ą¤¦ą¤æą¤øą¤®ą„ą¤¬ą¤°'], 'months_short' => ['ą¤œą¤Øą¤µą¤°ą„€', 'ą¤«ą¤¼ą¤°ą¤µą¤°ą„€', 'ą¤®ą¤¾ą¤°ą„ą¤š', 'ą¤…ą¤Ŗą„ą¤°ą„‡ą¤²', 'मई', 'ą¤œą„‚ą¤Ø', 'ą¤œą„ą¤²ą¤¾ą¤ˆ', 'ą¤…ą¤—ą¤øą„ą¤¤', 'ą¤øą¤æą¤¤ą¤®ą„ą¤¬ą¤°', 'ą¤…ą¤•ą„ą¤Ÿą„‚ą¤¬ą¤°', 'ą¤Øą¤µą¤®ą„ą¤¬ą¤°', 'ą¤¦ą¤æą¤øą¤®ą„ą¤¬ą¤°'], 'weekdays' => ['आइतबार', 'ą¤øą„‹ą¤®ą¤¬ą¤¾ą¤°', 'मंगलबार', 'ą¤¬ą„ą¤§ą¤¬ą¤¾ą¤°', 'बिहिबार', 'ą¤¶ą„ą¤•ą„ą¤°ą¤¬ą¤¾ą¤°', 'शनिबार'], 'weekdays_short' => ['आइत', 'ą¤øą„‹ą¤®', 'मंगल', 'ą¤¬ą„ą¤§', 'बिहि', 'ą¤¶ą„ą¤•ą„ą¤°', 'शनि'], 'weekdays_min' => ['आइत', 'ą¤øą„‹ą¤®', 'मंगल', 'ą¤¬ą„ą¤§', 'बिहि', 'ą¤¶ą„ą¤•ą„ą¤°', 'शनि'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤¹ą„ą¤Ø', 'ą¤…ą¤Ŗą¤°ą¤¾ą¤¹ą„ą¤Ø'], ]); PK!:‹Š*öö carbon/src/Carbon/Lang/sm_WS.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Samsung Electronics Co., Ltd. akhilesh.k@samsung.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['Ianuari', 'Fepuari', 'Mati', 'Aperila', 'Me', 'Iuni', 'Iulai', 'Auguso', 'Setema', 'Oketopa', 'Novema', 'Tesema'], 'months_short' => ['Ian', 'Fep', 'Mat', 'Ape', 'Me', 'Iun', 'Iul', 'Aug', 'Set', 'Oke', 'Nov', 'Tes'], 'weekdays' => ['Aso Sa', 'Aso Gafua', 'Aso Lua', 'Aso Lulu', 'Aso Tofi', 'Aso Farail', 'Aso To\'ana\'i'], 'weekdays_short' => ['Aso Sa', 'Aso Gaf', 'Aso Lua', 'Aso Lul', 'Aso Tof', 'Aso Far', 'Aso To\''], 'weekdays_min' => ['Aso Sa', 'Aso Gaf', 'Aso Lua', 'Aso Lul', 'Aso Tof', 'Aso Far', 'Aso To\''], 'hour' => ':count uati', // less reliable 'h' => ':count uati', // less reliable 'a_hour' => ':count uati', // less reliable 'minute' => ':count itiiti', // less reliable 'min' => ':count itiiti', // less reliable 'a_minute' => ':count itiiti', // less reliable 'second' => ':count lua', // less reliable 's' => ':count lua', // less reliable 'a_second' => ':count lua', // less reliable 'year' => ':count tausaga', 'y' => ':count tausaga', 'a_year' => ':count tausaga', 'month' => ':count māsina', 'm' => ':count māsina', 'a_month' => ':count māsina', 'week' => ':count vaiaso', 'w' => ':count vaiaso', 'a_week' => ':count vaiaso', 'day' => ':count aso', 'd' => ':count aso', 'a_day' => ':count aso', ]); PK!-µ»^ŠŠ carbon/src/Carbon/Lang/nl_NL.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/nl.php', [ 'months' => ['januari', 'februari', 'maart', 'april', 'mei', 'juni', 'juli', 'augustus', 'september', 'oktober', 'november', 'december'], 'months_short' => ['jan', 'feb', 'mrt', 'apr', 'mei', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'], 'weekdays' => ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'], 'weekdays_short' => ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'], 'weekdays_min' => ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, ]); PK!x^“FF carbon/src/Carbon/Lang/en_MP.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!x^“FF!carbon/src/Carbon/Lang/en_001.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!;¹n‡ ‡ carbon/src/Carbon/Lang/af.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - JD Isaacks * - Pierre du Plessis */ return [ 'year' => ':count jaar', 'a_year' => '\'n jaar|:count jaar', 'y' => ':count j.', 'month' => ':count maand|:count maande', 'a_month' => '\'n maand|:count maande', 'm' => ':count maa.', 'week' => ':count week|:count weke', 'a_week' => '\'n week|:count weke', 'w' => ':count w.', 'day' => ':count dag|:count dae', 'a_day' => '\'n dag|:count dae', 'd' => ':count d.', 'hour' => ':count uur', 'a_hour' => '\'n uur|:count uur', 'h' => ':count u.', 'minute' => ':count minuut|:count minute', 'a_minute' => '\'n minuut|:count minute', 'min' => ':count min.', 'second' => ':count sekond|:count sekondes', 'a_second' => '\'n paar sekondes|:count sekondes', 's' => ':count s.', 'ago' => ':time gelede', 'from_now' => 'oor :time', 'after' => ':time na', 'before' => ':time voor', 'diff_now' => 'Nou', 'diff_today' => 'Vandag', 'diff_today_regexp' => 'Vandag(?:\\s+om)?', 'diff_yesterday' => 'Gister', 'diff_yesterday_regexp' => 'Gister(?:\\s+om)?', 'diff_tomorrow' => 'MĆ“re', 'diff_tomorrow_regexp' => 'MĆ“re(?:\\s+om)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Vandag om] LT', 'nextDay' => '[MĆ“re om] LT', 'nextWeek' => 'dddd [om] LT', 'lastDay' => '[Gister om] LT', 'lastWeek' => '[Laas] dddd [om] LT', 'sameElse' => 'L', ], 'ordinal' => function ($number) { return $number.(($number === 1 || $number === 8 || $number >= 20) ? 'ste' : 'de'); }, 'meridiem' => ['VM', 'NM'], 'months' => ['Januarie', 'Februarie', 'Maart', 'April', 'Mei', 'Junie', 'Julie', 'Augustus', 'September', 'Oktober', 'November', 'Desember'], 'months_short' => ['Jan', 'Feb', 'Mrt', 'Apr', 'Mei', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Des'], 'weekdays' => ['Sondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrydag', 'Saterdag'], 'weekdays_short' => ['Son', 'Maa', 'Din', 'Woe', 'Don', 'Vry', 'Sat'], 'weekdays_min' => ['So', 'Ma', 'Di', 'Wo', 'Do', 'Vr', 'Sa'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' en '], ]; PK! £ōw   carbon/src/Carbon/Lang/ja_JP.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ja.php'; PK!*2ˆõõ#carbon/src/Carbon/Lang/shi_Latn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/shi.php', [ 'meridiem' => ['tifawt', 'tadggŹ·at'], 'weekdays' => ['asamas', 'aynas', 'asinas', 'akį¹›as', 'akwas', 'asimwas', 'asiįøyas'], 'weekdays_short' => ['asa', 'ayn', 'asi', 'akį¹›', 'akw', 'asim', 'asiįø'], 'weekdays_min' => ['asa', 'ayn', 'asi', 'akį¹›', 'akw', 'asim', 'asiįø'], 'months' => ['innayr', 'bį¹›ayį¹›', 'maṛṣ', 'ibrir', 'mayyu', 'yunyu', 'yulyuz', 'É£uct', 'cutanbir', 'ktubr', 'nuwanbir', 'dujanbir'], 'months_short' => ['inn', 'bį¹›a', 'maį¹›', 'ibr', 'may', 'yun', 'yul', 'É£uc', 'cut', 'ktu', 'nuw', 'duj'], 'first_day_of_week' => 6, 'weekend' => [5, 6], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM, YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'minute' => ':count agur', // less reliable 'min' => ':count agur', // less reliable 'a_minute' => ':count agur', // less reliable ]); PK!2ĘĀ€carbon/src/Carbon/Lang/haw.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'months' => ['Ianuali', 'Pepeluali', 'Malaki', 'Ź»Apelila', 'Mei', 'Iune', 'Iulai', 'Ź»Aukake', 'Kepakemapa', 'Ź»Okakopa', 'Nowemapa', 'Kekemapa'], 'months_short' => ['Ian.', 'Pep.', 'Mal.', 'Ź»Ap.', 'Mei', 'Iun.', 'Iul.', 'Ź»Au.', 'Kep.', 'Ź»Ok.', 'Now.', 'Kek.'], 'weekdays' => ['Lāpule', 'PoŹ»akahi', 'PoŹ»alua', 'PoŹ»akolu', 'PoŹ»ahā', 'PoŹ»alima', 'PoŹ»aono'], 'weekdays_short' => ['LP', 'P1', 'P2', 'P3', 'P4', 'P5', 'P6'], 'weekdays_min' => ['S', 'M', 'T', 'W', 'T', 'F', 'S'], 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'D/M/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY h:mm a', 'LLLL' => 'dddd, D MMMM YYYY h:mm a', ], 'year' => ':count makahiki', 'y' => ':count makahiki', 'a_year' => ':count makahiki', 'month' => ':count mahina', 'm' => ':count mahina', 'a_month' => ':count mahina', 'week' => ':count pule', 'w' => ':count pule', 'a_week' => ':count pule', 'day' => ':count lā', 'd' => ':count lā', 'a_day' => ':count lā', 'hour' => ':count hola', 'h' => ':count hola', 'a_hour' => ':count hola', 'minute' => ':count minuke', 'min' => ':count minuke', 'a_minute' => ':count minuke', 'second' => ':count lua', 's' => ':count lua', 'a_second' => ':count lua', ]); PK!UĮ}l­­!carbon/src/Carbon/Lang/szl_PL.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - szl_PL locale Przemyslaw Buczkowski libc-alpha@sourceware.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], 'months' => ['styczyń', 'luty', 'merc', 'kwjeciyń', 'moj', 'czyrwjyń', 'lipjyń', 'siyrpjyń', 'wrzesiyń', 'paÅŗdziernik', 'listopad', 'grudziyń'], 'months_short' => ['sty', 'lut', 'mer', 'kwj', 'moj', 'czy', 'lip', 'siy', 'wrz', 'paÅŗ', 'lis', 'gru'], 'weekdays' => ['niydziela', 'pyńdziŏek', 'wtŏrek', 'strzŏda', 'sztwortek', 'pjōntek', 'sobŏta'], 'weekdays_short' => ['niy', 'pyń', 'wtŏ', 'str', 'szt', 'pjō', 'sob'], 'weekdays_min' => ['niy', 'pyń', 'wtŏ', 'str', 'szt', 'pjō', 'sob'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'year' => ':count rok', 'y' => ':count rok', 'a_year' => ':count rok', 'month' => ':count mjeśůnc', 'm' => ':count mjeśůnc', 'a_month' => ':count mjeśůnc', 'week' => ':count TydÅŗyń', 'w' => ':count TydÅŗyń', 'a_week' => ':count TydÅŗyń', 'day' => ':count dÅŗyń', 'd' => ':count dÅŗyń', 'a_day' => ':count dÅŗyń', 'hour' => ':count godzina', 'h' => ':count godzina', 'a_hour' => ':count godzina', 'minute' => ':count Minuta', 'min' => ':count Minuta', 'a_minute' => ':count Minuta', 'second' => ':count SekÅÆnda', 's' => ':count SekÅÆnda', 'a_second' => ':count SekÅÆnda', ]); PK!)įÓˊ Š carbon/src/Carbon/Lang/gd.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - Jon Ashdown */ return [ 'year' => ':count bliadhna', 'a_year' => '{1}bliadhna|:count bliadhna', 'y' => ':count b.', 'month' => ':count mƬosan', 'a_month' => '{1}mƬos|:count mƬosan', 'm' => ':count ms.', 'week' => ':count seachdainean', 'a_week' => '{1}seachdain|:count seachdainean', 'w' => ':count s.', 'day' => ':count latha', 'a_day' => '{1}latha|:count latha', 'd' => ':count l.', 'hour' => ':count uairean', 'a_hour' => '{1}uair|:count uairean', 'h' => ':count u.', 'minute' => ':count mionaidean', 'a_minute' => '{1}mionaid|:count mionaidean', 'min' => ':count md.', 'second' => ':count diogan', 'a_second' => '{1}beagan diogan|:count diogan', 's' => ':count d.', 'ago' => 'bho chionn :time', 'from_now' => 'ann an :time', 'diff_yesterday' => 'An-dĆØ', 'diff_yesterday_regexp' => 'An-dĆØ(?:\\s+aig)?', 'diff_today' => 'An-diugh', 'diff_today_regexp' => 'An-diugh(?:\\s+aig)?', 'diff_tomorrow' => 'A-mĆ ireach', 'diff_tomorrow_regexp' => 'A-mĆ ireach(?:\\s+aig)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[An-diugh aig] LT', 'nextDay' => '[A-mĆ ireach aig] LT', 'nextWeek' => 'dddd [aig] LT', 'lastDay' => '[An-dĆØ aig] LT', 'lastWeek' => 'dddd [seo chaidh] [aig] LT', 'sameElse' => 'L', ], 'ordinal' => function ($number) { return $number.($number === 1 ? 'd' : ($number % 10 === 2 ? 'na' : 'mh')); }, 'months' => ['Am Faoilleach', 'An Gearran', 'Am MĆ rt', 'An Giblean', 'An CĆØitean', 'An t-ƒgmhios', 'An t-Iuchar', 'An Lùnastal', 'An t-Sultain', 'An DĆ mhair', 'An t-Samhain', 'An Dùbhlachd'], 'months_short' => ['Faoi', 'Gear', 'MĆ rt', 'Gibl', 'CĆØit', 'ƒgmh', 'Iuch', 'Lùn', 'Sult', 'DĆ mh', 'Samh', 'Dùbh'], 'weekdays' => ['Didòmhnaich', 'Diluain', 'DimĆ irt', 'Diciadain', 'Diardaoin', 'Dihaoine', 'Disathairne'], 'weekdays_short' => ['Did', 'Dil', 'Dim', 'Dic', 'Dia', 'Dih', 'Dis'], 'weekdays_min' => ['Dò', 'Lu', 'MĆ ', 'Ci', 'Ar', 'Ha', 'Sa'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' agus '], 'meridiem' => ['m', 'f'], ]; PK!e-)­   carbon/src/Carbon/Lang/cv_RU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/cv.php'; PK!•IĆ^~~ carbon/src/Carbon/Lang/ar_SD.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/ar.php', [ 'formats' => [ 'L' => 'DD MMM, YYYY', ], 'months' => ['ŁŠŁ†Ų§ŁŠŲ±', 'فبراير', 'Ł…Ų§Ų±Ų³', 'Ų£ŲØŲ±ŁŠŁ„', 'Ł…Ų§ŁŠŁˆ', 'ŁŠŁˆŁ†ŁŠŁˆ', 'ŁŠŁˆŁ„ŁŠŁˆ', 'Ų£ŲŗŲ³Ų·Ų³', 'Ų³ŲØŲŖŁ…ŲØŲ±', 'أكتوبر', 'Ł†ŁˆŁŁ…ŲØŲ±', 'ŲÆŁŠŲ³Ł…ŲØŲ±'], 'months_short' => ['ŁŠŁ†Ų§', 'فبر', 'Ł…Ų§Ų±', 'Ų£ŲØŲ±', 'Ł…Ų§ŁŠ', 'ŁŠŁˆŁ†', 'ŁŠŁˆŁ„', 'Ų£ŲŗŲ³', 'Ų³ŲØŲŖ', 'أكت', 'Ł†ŁˆŁ', 'ديس'], 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'weekdays_min' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, ]); PK!’ķ KK!carbon/src/Carbon/Lang/hsb_DE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Information from Michael Wolf Andrzej Krzysztofowicz ankry@mif.pg.gda.pl */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'DD. MMMM YYYY', 'LLL' => 'DD. MMMM, HH:mm [hodÅŗ.]', 'LLLL' => 'dddd, DD. MMMM YYYY, HH:mm [hodÅŗ.]', ], 'months' => ['januara', 'februara', 'měrca', 'apryla', 'meje', 'junija', 'julija', 'awgusta', 'septembra', 'oktobra', 'nowembra', 'decembra'], 'months_short' => ['Jan', 'Feb', 'Měr', 'Apr', 'Mej', 'Jun', 'Jul', 'Awg', 'Sep', 'Okt', 'Now', 'Dec'], 'weekdays' => ['NjedÅŗela', 'PóndÅŗela', 'Wutora', 'Srjeda', 'Å tvórtk', 'Pjatk', 'Sobota'], 'weekdays_short' => ['Nj', 'Pó', 'Wu', 'Sr', 'Å t', 'Pj', 'So'], 'weekdays_min' => ['Nj', 'Pó', 'Wu', 'Sr', 'Å t', 'Pj', 'So'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'year' => ':count lěto', 'y' => ':count lěto', 'a_year' => ':count lěto', 'month' => ':count měsac', 'm' => ':count měsac', 'a_month' => ':count měsac', 'week' => ':count tydÅŗeń', 'w' => ':count tydÅŗeń', 'a_week' => ':count tydÅŗeń', 'day' => ':count dÅŗeń', 'd' => ':count dÅŗeń', 'a_day' => ':count dÅŗeń', 'hour' => ':count hodÅŗina', 'h' => ':count hodÅŗina', 'a_hour' => ':count hodÅŗina', 'minute' => ':count chwila', 'min' => ':count chwila', 'a_minute' => ':count chwila', 'second' => ':count druhi', 's' => ':count druhi', 'a_second' => ':count druhi', ]); PK!vōäLLcarbon/src/Carbon/Lang/oc.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - QuentĆ­ */ // @codeCoverageIgnoreStart if (class_exists('Symfony\\Component\\Translation\\PluralizationRules')) { \Symfony\Component\Translation\PluralizationRules::set(function ($number) { return $number == 1 ? 0 : 1; }, 'oc'); } // @codeCoverageIgnoreEnd return [ 'year' => ':count an|:count ans', 'a_year' => 'un an|:count ans', 'y' => ':count an|:count ans', 'month' => ':count mes|:count meses', 'a_month' => 'un mes|:count meses', 'm' => ':count mes|:count meses', 'week' => ':count setmana|:count setmanas', 'a_week' => 'una setmana|:count setmanas', 'w' => ':count setmana|:count setmanas', 'day' => ':count jorn|:count jorns', 'a_day' => 'un jorn|:count jorns', 'd' => ':count jorn|:count jorns', 'hour' => ':count ora|:count oras', 'a_hour' => 'una ora|:count oras', 'h' => ':count ora|:count oras', 'minute' => ':count minuta|:count minutas', 'a_minute' => 'una minuta|:count minutas', 'min' => ':count minuta|:count minutas', 'second' => ':count segonda|:count segondas', 'a_second' => 'una segonda|:count segondas', 's' => ':count segonda|:count segondas', 'ago' => 'fa :time', 'from_now' => 'd\'aquĆ­ :time', 'after' => ':time aprĆØp', 'before' => ':time abans', 'diff_now' => 'ara meteis', 'diff_today' => 'UĆØi', 'diff_today_regexp' => 'UĆØi(?:\\s+a)?', 'diff_yesterday' => 'iĆØr', 'diff_yesterday_regexp' => 'IĆØr(?:\\s+a)?', 'diff_tomorrow' => 'deman', 'diff_tomorrow_regexp' => 'Deman(?:\\s+a)?', 'diff_before_yesterday' => 'iĆØr delĆ ', 'diff_after_tomorrow' => 'deman passat', 'period_recurrences' => ':count còp|:count còps', 'period_interval' => 'cada :interval', 'period_start_date' => 'de :date', 'period_end_date' => 'fins a :date', 'formats' => [ 'LT' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM [de] YYYY', 'LLL' => 'D MMMM [de] YYYY [a] H:mm', 'LLLL' => 'dddd D MMMM [de] YYYY [a] H:mm', ], 'calendar' => [ 'sameDay' => '[UĆØi a] LT', 'nextDay' => '[Deman a] LT', 'nextWeek' => 'dddd [a] LT', 'lastDay' => '[IĆØr a] LT', 'lastWeek' => 'dddd [passat a] LT', 'sameElse' => 'L', ], 'months' => ['de geniĆØr', 'de febriĆØr', 'de marƧ', 'd\'abrial', 'de mai', 'de junh', 'de julhet', 'd\'agost', 'de setembre', 'd’octòbre', 'de novembre', 'de decembre'], 'months_standalone' => ['geniĆØr', 'febriĆØr', 'marƧ', 'abrial', 'mai', 'junh', 'julh', 'agost', 'setembre', 'octòbre', 'novembre', 'decembre'], 'months_short' => ['gen.', 'feb.', 'marƧ', 'abr.', 'mai', 'junh', 'julh', 'ago.', 'sep.', 'oct.', 'nov.', 'dec.'], 'weekdays' => ['dimenge', 'diluns', 'dimars', 'dimĆØcres', 'dijòus', 'divendres', 'dissabte'], 'weekdays_short' => ['dg', 'dl', 'dm', 'dc', 'dj', 'dv', 'ds'], 'weekdays_min' => ['dg', 'dl', 'dm', 'dc', 'dj', 'dv', 'ds'], 'ordinal' => function ($number, $period) { $ordinal = [1 => 'ĆØr', 2 => 'nd'][(int) $number] ?? 'en'; // feminine for year, week, hour, minute, second if (preg_match('/^[yYwWhHgGis]$/', $period)) { $ordinal .= 'a'; } return $number.$ordinal; }, 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' e '], ]; PK!“|˜   carbon/src/Carbon/Lang/ru_BY.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ru.php'; PK!^­Ó§v v carbon/src/Carbon/Lang/mt.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Alessandro Maruccia */ return [ 'year' => 'sena|:count sni|:count sni|:count sni', 'y' => 'sa sena|:count snin|:count snin|:count snin', 'month' => 'xahar|:count xhur|:count xhur|:count xhur', 'm' => ':count xahar|:count xhur|:count xhur|:count xhur', 'week' => 'gimgħa|:count Ä”imgħat|:count Ä”imgħat|:count Ä”imgħat', 'w' => 'Ä”imgħa|:count Ä”imgħat|:count Ä”imgħat|:count Ä”imgħat', 'day' => 'Ä”urnata|:count Ä”ranet|:count Ä”ranet|:count Ä”ranet', 'd' => 'Ä”urnata|:count Ä”ranet|:count Ä”ranet|:count Ä”ranet', 'hour' => 'siegħa|:count siegħat|:count siegħat|:count siegħat', 'h' => 'siegħa|:count sigħat|:count sigħat|:count sigħat', 'minute' => 'minuta|:count minuti|:count minuti|:count minuti', 'min' => 'min.|:count min.|:count min.|:count min.', 'second' => 'ftit sekondi|:count sekondi|:count sekondi|:count sekondi', 's' => 'sek.|:count sek.|:count sek.|:count sek.', 'ago' => ':time ilu', 'from_now' => 'f’ :time', 'diff_now' => 'issa', 'diff_today' => 'Illum', 'diff_today_regexp' => 'Illum(?:\\s+fil-)?', 'diff_yesterday' => 'lbieraħ', 'diff_yesterday_regexp' => 'Il-bieraħ(?:\\s+fil-)?', 'diff_tomorrow' => 'għada', 'diff_tomorrow_regexp' => 'Għada(?:\\s+fil-)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[Illum fil-]LT', 'nextDay' => '[Għada fil-]LT', 'nextWeek' => 'dddd [fil-]LT', 'lastDay' => '[Il-bieraħ fil-]LT', 'lastWeek' => 'dddd [li għadda] [fil-]LT', 'sameElse' => 'L', ], 'ordinal' => ':numberĀŗ', 'months' => ['Jannar', 'Frar', 'Marzu', 'April', 'Mejju', 'Ä unju', 'Lulju', 'Awwissu', 'Settembru', 'Ottubru', 'Novembru', 'Diċembru'], 'months_short' => ['Jan', 'Fra', 'Mar', 'Apr', 'Mej', 'Ä un', 'Lul', 'Aww', 'Set', 'Ott', 'Nov', 'Diċ'], 'weekdays' => ['Il-Ħadd', 'It-Tnejn', 'It-Tlieta', 'L-Erbgħa', 'Il-Ħamis', 'Il-Ä imgħa', 'Is-Sibt'], 'weekdays_short' => ['Ħad', 'Tne', 'Tli', 'Erb', 'Ħam', 'Ä im', 'Sib'], 'weekdays_min' => ['Ħa', 'Tn', 'Tl', 'Er', 'Ħa', 'Ä i', 'Si'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' u '], ]; PK!AÓ§F„„carbon/src/Carbon/Lang/nnh.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['mbaʼÔmbaʼ', 'ncwònzĆ©m'], 'weekdays' => null, 'weekdays_short' => ['lyɛʼɛ́ sįŗ…Ć­Å‹tĆØ', 'mvfò lyÉ›ĢŒŹ¼', 'mbɔ́ɔntĆØ mvfò lyÉ›ĢŒŹ¼', 'tsĆØtsɛ̀ɛ lyÉ›ĢŒŹ¼', 'mbɔ́ɔntĆØ tsetsɛ̀ɛ lyÉ›ĢŒŹ¼', 'mvfò mĆ ga lyÉ›ĢŒŹ¼', 'mĆ ga lyÉ›ĢŒŹ¼'], 'weekdays_min' => null, 'months' => null, 'months_short' => ['saŋ tsetsɛ̀ɛ lùm', 'saŋ kĆ g ngwóŋ', 'saŋ lepyĆØ shĆŗm', 'saŋ cÿó', 'saŋ tsɛ̀ɛ cÿó', 'saŋ njĆæolÔʼ', 'saŋ tyɛ̀b tyɛ̀b mbʉ̀ŋ', 'saŋ mbʉ̀ŋ', 'saŋ ngwɔ̀ʼ mbÿɛ', 'saŋ tĆ Å‹a tsetsÔʼ', 'saŋ mejwoŋó', 'saŋ lùm'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/yy', 'LL' => 'D MMM, YYYY', 'LLL' => '[lyɛ]̌ʼ d [na] MMMM, YYYY HH:mm', 'LLLL' => 'dddd , [lyɛ]̌ʼ d [na] MMMM, YYYY HH:mm', ], ]); PK!óĆ6Äkk!carbon/src/Carbon/Lang/pap_CW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - information from native speaker Pablo Saratxaga pablo@mandrakesoft.com */ return require __DIR__.'/pap.php'; PK!Dɳ½½ carbon/src/Carbon/Lang/zh_CN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - monkeycon * - FranƧois B * - Jason Katz-Brown * - Serhan Apaydın * - Matt Johnson * - JD Isaacks * - Zeno Zeng * - Chris Hemp * - shankesgk2 */ return array_merge(require __DIR__.'/zh.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY/MM/DD', 'LL' => 'YYYY幓M月Dę—„', 'LLL' => 'YYYY幓M月Dę—„Ah点mm分', 'LLLL' => 'YYYY幓M月Dę—„ddddAh点mm分', ], ]); PK!Ńē±   carbon/src/Carbon/Lang/nl_BQ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/nl.php'; PK!ĻÉHH%carbon/src/Carbon/Lang/sr_Cyrl_ME.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Glavić * - Milos Sakovic */ return [ 'year' => '{2,3,4,22,23,24,32,33,34,42,43,44,52,53,54}:count гоГине|[0,Inf[:count гоГина', 'y' => ':count г.', 'month' => '{1}:count Š¼Ń˜ŠµŃŠµŃ†|{2,3,4}:count Š¼Ń˜ŠµŃŠµŃ†Š°|[0,Inf[:count Š¼Ń˜ŠµŃŠµŃ†Šø', 'm' => ':count мј.', 'week' => '{1}:count Š½ŠµŠ“Ń˜ŠµŃ™Š°|{2,3,4}:count Š½ŠµŠ“Ń˜ŠµŃ™Šµ|[0,Inf[:count Š½ŠµŠ“Ń˜ŠµŃ™Š°', 'w' => ':count неГ.', 'day' => '{1,21,31}:count Ган|[0,Inf[:count Гана', 'd' => ':count Š“.', 'hour' => '{1,21}:count сат|{2,3,4,22,23,24}:count сата|[0,Inf[:count сати', 'h' => ':count ч.', 'minute' => '{1,21,31,41,51}:count Š¼ŠøŠ½ŃƒŃ‚|[0,Inf[:count Š¼ŠøŠ½ŃƒŃ‚Š°', 'min' => ':count мин.', 'second' => '{1,21,31,41,51}:count секунГ|{2,3,4,22,23,24,32,33,34,42,43,44,52,53,54}:count секунГе|[0,Inf[:count секунГи', 's' => ':count сек.', 'ago' => 'ŠæŃ€ŠøŃ˜Šµ :time', 'from_now' => 'за :time', 'after' => ':time након', 'before' => ':time ŠæŃ€ŠøŃ˜Šµ', 'year_from_now' => '{1,21,31,41,51}:count гоГину|{2,3,4,22,23,24,32,33,34,42,43,44,52,53,54}:count гоГине|[0,Inf[:count гоГина', 'year_ago' => '{1,21,31,41,51}:count гоГину|{2,3,4,22,23,24,32,33,34,42,43,44,52,53,54}:count гоГине|[0,Inf[:count гоГина', 'week_from_now' => '{1}:count Š½ŠµŠ“Ń˜ŠµŃ™Ńƒ|{2,3,4}:count Š½ŠµŠ“Ń˜ŠµŃ™Šµ|[0,Inf[:count Š½ŠµŠ“Ń˜ŠµŃ™Š°', 'week_ago' => '{1}:count Š½ŠµŠ“Ń˜ŠµŃ™Ńƒ|{2,3,4}:count Š½ŠµŠ“Ń˜ŠµŃ™Šµ|[0,Inf[:count Š½ŠµŠ“Ń˜ŠµŃ™Š°', 'diff_now' => 'ŃƒŠæŃ€Š°Š²Š¾ саГа', 'diff_today' => 'Ганас', 'diff_today_regexp' => 'Ганас(?:\\s+у)?', 'diff_yesterday' => 'Ń˜ŃƒŃ‡Šµ', 'diff_yesterday_regexp' => 'Ń˜ŃƒŃ‡Šµ(?:\\s+у)?', 'diff_tomorrow' => 'ŃŃƒŃ‚Ń€Š°', 'diff_tomorrow_regexp' => 'ŃŃƒŃ‚Ń€Š°(?:\\s+у)?', 'diff_before_yesterday' => 'ŠæŃ€ŠµŠŗŃ˜ŃƒŃ‡Šµ', 'diff_after_tomorrow' => 'ŠæŃ€ŠµŠŗŠ¾ŃŃ˜ŃƒŃ‚Ń€Š°', 'formats' => [ 'LT' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D. MMMM YYYY', 'LLL' => 'D. MMMM YYYY H:mm', 'LLLL' => 'dddd, D. MMMM YYYY H:mm', ], 'calendar' => [ 'sameDay' => '[Ганас у] LT', 'nextDay' => '[ŃŃƒŃ‚Ń€Š° у] LT', 'nextWeek' => function (\Carbon\CarbonInterface $date) { switch ($date->dayOfWeek) { case 0: return '[у Š½ŠµŠ“ŠµŃ™Ńƒ у] LT'; case 3: return '[у ŃŃ€ŠµŠ“Ńƒ у] LT'; case 6: return '[у ŃŃƒŠ±Š¾Ń‚Ńƒ у] LT'; default: return '[у] dddd [у] LT'; } }, 'lastDay' => '[Ń˜ŃƒŃ‡Šµ у] LT', 'lastWeek' => function (\Carbon\CarbonInterface $date) { switch ($date->dayOfWeek) { case 0: return '[ŠæŃ€Š¾ŃˆŠ»Šµ неГеље у] LT'; case 1: return '[ŠæŃ€Š¾ŃˆŠ»Š¾Š³ понеГељка у] LT'; case 2: return '[ŠæŃ€Š¾ŃˆŠ»Š¾Š³ ŃƒŃ‚Š¾Ń€ŠŗŠ° у] LT'; case 3: return '[ŠæŃ€Š¾ŃˆŠ»Šµ среГе у] LT'; case 4: return '[ŠæŃ€Š¾ŃˆŠ»Š¾Š³ четвртка у] LT'; case 5: return '[ŠæŃ€Š¾ŃˆŠ»Š¾Š³ петка у] LT'; default: return '[ŠæŃ€Š¾ŃˆŠ»Šµ ŃŃƒŠ±Š¾Ń‚Šµ у] LT'; } }, 'sameElse' => 'L', ], 'ordinal' => ':number.', 'months' => ['Ń˜Š°Š½ŃƒŠ°Ń€', 'Ń„ŠµŠ±Ń€ŃƒŠ°Ń€', 'март', 'април', 'мај', 'јун', 'јул', 'Š°Š²Š³ŃƒŃŃ‚', 'септембар', 'октобар', 'новембар', 'Гецембар'], 'months_short' => ['јан.', 'феб.', 'мар.', 'апр.', 'мај', 'јун', 'јул', 'авг.', 'сеп.', 'окт.', 'нов.', 'Гец.'], 'weekdays' => ['неГеља', 'понеГељак', 'ŃƒŃ‚Š¾Ń€Š°Šŗ', 'среГа', 'четвртак', 'петак', 'ŃŃƒŠ±Š¾Ń‚Š°'], 'weekdays_short' => ['неГ.', 'пон.', 'ŃƒŃ‚Š¾.', 'сре.', 'чет.', 'пет.', 'суб.'], 'weekdays_min' => ['не', 'по', 'ут', 'ср', 'че', 'пе', 'су'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' Šø '], 'meridiem' => ['АМ', 'ПМ'], ]; PK!ÕÕØ€ carbon/src/Carbon/Lang/fy_DE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - information from Kenneth Christiansen Kenneth Christiansen, Pablo Saratxaga kenneth@gnu.org, pablo@mandriva.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD.MM.YYYY', ], 'months' => ['Jaunuwoa', 'Februwoa', 'Moaz', 'Aprell', 'Mai', 'Juni', 'Juli', 'August', 'Septamba', 'Oktoba', 'Nowamba', 'Dezamba'], 'months_short' => ['Jan', 'Feb', 'Moz', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Now', 'Dez'], 'weekdays' => ['Sinndag', 'Mondag', 'Dingsdag', 'MeddwƤakj', 'Donnadag', 'Friedag', 'Sinnowend'], 'weekdays_short' => ['Sdg', 'Mdg', 'Dsg', 'Mwk', 'Ddg', 'Fdg', 'Swd'], 'weekdays_min' => ['Sdg', 'Mdg', 'Dsg', 'Mwk', 'Ddg', 'Fdg', 'Swd'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, ]); PK!/{POOcarbon/src/Carbon/Lang/hak.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/hak_TW.php'; PK!ņõ^×ŪŪ!carbon/src/Carbon/Lang/miq_NI.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['siakwa kati', 'kuswa kati', 'kakamuk kati', 'lĆ® wainhka kati', 'lih mairin kati', 'lĆ® kati', 'pastara kati', 'sikla kati', 'wĆ®s kati', 'waupasa kati', 'yahbra kati', 'trisu kati'], 'months_short' => ['siakwa kati', 'kuswa kati', 'kakamuk kati', 'lĆ® wainhka kati', 'lih mairin kati', 'lĆ® kati', 'pastara kati', 'sikla kati', 'wĆ®s kati', 'waupasa kati', 'yahbra kati', 'trisu kati'], 'weekdays' => ['sandi', 'mundi', 'tiusdi', 'wensde', 'tausde', 'praidi', 'satadi'], 'weekdays_short' => ['san', 'mun', 'tius', 'wens', 'taus', 'prai', 'sat'], 'weekdays_min' => ['san', 'mun', 'tius', 'wens', 'taus', 'prai', 'sat'], 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 7, 'meridiem' => ['VM', 'NM'], 'month' => ':count kati', // less reliable 'm' => ':count kati', // less reliable 'a_month' => ':count kati', // less reliable ]); PK!¢_eŚŚcarbon/src/Carbon/Lang/sg.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['ND', 'LK'], 'weekdays' => ['Bikua-Ć“ko', 'BĆÆkua-Ć»se', 'BĆÆkua-ptĆ¢', 'BĆÆkua-usïö', 'BĆÆkua-okü', 'LĆ¢pĆ“sƶ', 'LĆ¢yenga'], 'weekdays_short' => ['Bk1', 'Bk2', 'Bk3', 'Bk4', 'Bk5', 'LĆ¢p', 'LĆ¢y'], 'weekdays_min' => ['Bk1', 'Bk2', 'Bk3', 'Bk4', 'Bk5', 'LĆ¢p', 'LĆ¢y'], 'months' => ['Nyenye', 'FulundĆÆgi', 'MbƤngü', 'Ngubùe', 'BĆŖlƤwü', 'Fƶndo', 'Lengua', 'Kükürü', 'Mvuka', 'Ngberere', 'NabƤndüru', 'Kakauka'], 'months_short' => ['Nye', 'Ful', 'MbƤ', 'Ngu', 'BĆŖl', 'Fƶn', 'Len', 'Kük', 'Mvu', 'Ngb', 'Nab', 'Kak'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM, YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'year' => ':count dā', // less reliable 'y' => ':count dā', // less reliable 'a_year' => ':count dā', // less reliable 'week' => ':count bĆÆkua-okü', // less reliable 'w' => ':count bĆÆkua-okü', // less reliable 'a_week' => ':count bĆÆkua-okü', // less reliable 'day' => ':count ziggawĆ¢', // less reliable 'd' => ':count ziggawĆ¢', // less reliable 'a_day' => ':count ziggawĆ¢', // less reliable 'hour' => ':count yĆ¢ngĆ¢kƶdƶrƶ', // less reliable 'h' => ':count yĆ¢ngĆ¢kƶdƶrƶ', // less reliable 'a_hour' => ':count yĆ¢ngĆ¢kƶdƶrƶ', // less reliable 'second' => ':count bĆÆkua-Ć“ko', // less reliable 's' => ':count bĆÆkua-Ć“ko', // less reliable 'a_second' => ':count bĆÆkua-Ć“ko', // less reliable 'month' => ':count Nze tĆ® ngu', 'm' => ':count Nze tĆ® ngu', 'a_month' => ':count Nze tĆ® ngu', ]); PK!‡“"žU U #carbon/src/Carbon/Lang/gom_Latn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return [ 'year' => ':count voros|:count vorsam', 'y' => ':countv', 'month' => ':count mhoino|:count mhoine', 'm' => ':countmh', 'week' => ':count satolleacho|:count satolleache', 'w' => ':countsa|:countsa', 'day' => ':count dis', 'd' => ':countd', 'hour' => ':count hor|:count horam', 'h' => ':counth', 'minute' => ':count minute|:count mintam', 'min' => ':countm', 'second' => ':count second', 's' => ':counts', 'diff_today' => 'Aiz', 'diff_yesterday' => 'Kal', 'diff_tomorrow' => 'Faleam', 'formats' => [ 'LT' => 'A h:mm [vazta]', 'LTS' => 'A h:mm:ss [vazta]', 'L' => 'DD-MM-YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY A h:mm [vazta]', 'LLLL' => 'dddd, MMMM[achea] Do, YYYY, A h:mm [vazta]', 'llll' => 'ddd, D MMM YYYY, A h:mm [vazta]', ], 'calendar' => [ 'sameDay' => '[Aiz] LT', 'nextDay' => '[Faleam] LT', 'nextWeek' => '[Ieta to] dddd[,] LT', 'lastDay' => '[Kal] LT', 'lastWeek' => '[Fatlo] dddd[,] LT', 'sameElse' => 'L', ], 'months' => ['Janer', 'Febrer', 'Mars', 'Abril', 'Mai', 'Jun', 'Julai', 'Agost', 'Setembr', 'Otubr', 'Novembr', 'Dezembr'], 'months_short' => ['Jan.', 'Feb.', 'Mars', 'Abr.', 'Mai', 'Jun', 'Jul.', 'Ago.', 'Set.', 'Otu.', 'Nov.', 'Dez.'], 'weekdays' => ['Aitar', 'Somar', 'Mongllar', 'Budvar', 'Brestar', 'Sukrar', 'Son\'var'], 'weekdays_short' => ['Ait.', 'Som.', 'Mon.', 'Bud.', 'Bre.', 'Suk.', 'Son.'], 'weekdays_min' => ['Ai', 'Sm', 'Mo', 'Bu', 'Br', 'Su', 'Sn'], 'ordinal' => function ($number, $period) { return $number.($period === 'D' ? 'er' : ''); }, 'meridiem' => function ($hour) { if ($hour < 4) { return 'rati'; } if ($hour < 12) { return 'sokalli'; } if ($hour < 16) { return 'donparam'; } if ($hour < 20) { return 'sanje'; } return 'rati'; }, 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' ani '], ]; PK!ähƼ ¼ carbon/src/Carbon/Lang/se.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - FranƧois B * - Karamell */ return [ 'year' => '{1}:count jahki|:count jagit', 'a_year' => '{1}okta jahki|:count jagit', 'y' => ':count j.', 'month' => '{1}:count mĆ”nnu|:count mĆ”nut', 'a_month' => '{1}okta mĆ”nnu|:count mĆ”nut', 'm' => ':count mĆ”n.', 'week' => '{1}:count vahkku|:count vahkku', 'a_week' => '{1}okta vahkku|:count vahkku', 'w' => ':count v.', 'day' => '{1}:count beaivi|:count beaivvit', 'a_day' => '{1}okta beaivi|:count beaivvit', 'd' => ':count b.', 'hour' => '{1}:count diimmu|:count diimmut', 'a_hour' => '{1}okta diimmu|:count diimmut', 'h' => ':count d.', 'minute' => '{1}:count minuhta|:count minuhtat', 'a_minute' => '{1}okta minuhta|:count minuhtat', 'min' => ':count min.', 'second' => '{1}:count sekunddat|:count sekunddat', 'a_second' => '{1}moadde sekunddat|:count sekunddat', 's' => ':count s.', 'ago' => 'maŋit :time', 'from_now' => ':time geažes', 'diff_yesterday' => 'ikte', 'diff_yesterday_regexp' => 'ikte(?:\\s+ti)?', 'diff_today' => 'otne', 'diff_today_regexp' => 'otne(?:\\s+ti)?', 'diff_tomorrow' => 'ihttin', 'diff_tomorrow_regexp' => 'ihttin(?:\\s+ti)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'MMMM D. [b.] YYYY', 'LLL' => 'MMMM D. [b.] YYYY [ti.] HH:mm', 'LLLL' => 'dddd, MMMM D. [b.] YYYY [ti.] HH:mm', ], 'calendar' => [ 'sameDay' => '[otne ti] LT', 'nextDay' => '[ihttin ti] LT', 'nextWeek' => 'dddd [ti] LT', 'lastDay' => '[ikte ti] LT', 'lastWeek' => '[ovddit] dddd [ti] LT', 'sameElse' => 'L', ], 'ordinal' => ':number.', 'months' => ['ođđajagemĆ”nnu', 'guovvamĆ”nnu', 'njukčamĆ”nnu', 'cuoŋomĆ”nnu', 'miessemĆ”nnu', 'geassemĆ”nnu', 'suoidnemĆ”nnu', 'borgemĆ”nnu', 'čakčamĆ”nnu', 'golggotmĆ”nnu', 'skĆ”bmamĆ”nnu', 'juovlamĆ”nnu'], 'months_short' => ['ođđj', 'guov', 'njuk', 'cuo', 'mies', 'geas', 'suoi', 'borg', 'čakč', 'golg', 'skĆ”b', 'juov'], 'weekdays' => ['sotnabeaivi', 'vuossĆ”rga', 'maŋŋebĆ”rga', 'gaskavahkku', 'duorastat', 'bearjadat', 'lĆ”vvardat'], 'weekdays_short' => ['sotn', 'vuos', 'maŋ', 'gask', 'duor', 'bear', 'lĆ”v'], 'weekdays_min' => ['s', 'v', 'm', 'g', 'd', 'b', 'L'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' ja '], 'meridiem' => ['i.b.', 'e.b.'], ]; PK!ąĶb‡šš carbon/src/Carbon/Lang/ti_ET.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ge'ez Frontier Foundation locales@geez.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['įŒƒįŠ•į‹©į‹ˆįˆŖ', 'įŒį‰„įˆ©į‹ˆįˆŖ', 'įˆ›įˆ­į‰½', 'įŠ¤į•įˆØįˆ', 'įˆœį‹­', 'įŒįŠ•', 'įŒįˆ‹į‹­', 'įŠ¦įŒˆįˆµį‰µ', 'įˆ“į•į‰“įˆį‰ įˆ­', 'įŠ¦įŠ­į‰°į‹į‰ įˆ­', 'įŠ–į‰¬įˆį‰ įˆ­', 'į‹²įˆ“įˆį‰ įˆ­'], 'months_short' => ['įŒƒįŠ•į‹©', 'įŒį‰„įˆ©', 'įˆ›įˆ­į‰½', 'įŠ¤į•įˆØ', 'įˆœį‹­ ', 'įŒįŠ• ', 'įŒįˆ‹į‹­', 'ኦገስ', 'įˆ“į•į‰“', 'įŠ¦įŠ­į‰°', 'įŠ–į‰¬įˆ', 'į‹²įˆ“įˆ'], 'weekdays' => ['įˆ°įŠ•į‰ į‰µ', 'įˆ°įŠ‘į‹­', 'įˆ°įˆ‰įˆµ', 'įˆØį‰”į‹•', 'įˆ“įˆ™įˆµ', 'į‹“įˆ­į‰¢', 'į‰€į‹³įˆ'], 'weekdays_short' => ['įˆ°įŠ•į‰ ', 'įˆ°įŠ‘į‹­', 'įˆ°įˆ‰įˆµ', 'įˆØį‰”į‹•', 'įˆ“įˆ™įˆµ', 'į‹“įˆ­į‰¢', 'į‰€į‹³įˆ'], 'weekdays_min' => ['įˆ°įŠ•į‰ ', 'įˆ°įŠ‘į‹­', 'įˆ°įˆ‰įˆµ', 'įˆØį‰”į‹•', 'įˆ“įˆ™įˆµ', 'į‹“įˆ­į‰¢', 'į‰€į‹³įˆ'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['įŠ•įŒ‰įˆ† įˆ°į‹“į‰°', 'į‹µįˆ•įˆ­ įˆ°į‹“į‰µ'], ]); PK!¾c…ŚŚ carbon/src/Carbon/Lang/nl_AW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Free Software Foundation, Inc. bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/nl.php', [ 'formats' => [ 'L' => 'DD-MM-YY', ], 'months' => ['januari', 'februari', 'maart', 'april', 'mei', 'juni', 'juli', 'augustus', 'september', 'oktober', 'november', 'december'], 'months_short' => ['jan', 'feb', 'mrt', 'apr', 'mei', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'], 'weekdays' => ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'], 'weekdays_short' => ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'], 'weekdays_min' => ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, ]); PK!“Ÿü Õ Õ carbon/src/Carbon/Lang/sw.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - leyluj * - Josh Soref * - ryanhart2 */ return [ 'year' => 'mwaka :count|miaka :count', 'a_year' => 'mwaka mmoja|miaka :count', 'y' => 'mwaka :count|miaka :count', 'month' => 'mwezi :count|miezi :count', 'a_month' => 'mwezi mmoja|miezi :count', 'm' => 'mwezi :count|miezi :count', 'week' => 'wiki :count', 'a_week' => 'wiki mmoja|wiki :count', 'w' => 'w. :count', 'day' => 'siku :count', 'a_day' => 'siku moja|masiku :count', 'd' => 'si. :count', 'hour' => 'saa :count|masaa :count', 'a_hour' => 'saa limoja|masaa :count', 'h' => 'saa :count|masaa :count', 'minute' => 'dakika :count', 'a_minute' => 'dakika moja|dakika :count', 'min' => 'd. :count', 'second' => 'sekunde :count', 'a_second' => 'hivi punde|sekunde :count', 's' => 'se. :count', 'ago' => 'tokea :time', 'from_now' => ':time baadaye', 'after' => ':time baada', 'before' => ':time kabla', 'diff_now' => 'sasa hivi', 'diff_today' => 'leo', 'diff_today_regexp' => 'leo(?:\\s+saa)?', 'diff_yesterday' => 'jana', 'diff_tomorrow' => 'kesho', 'diff_tomorrow_regexp' => 'kesho(?:\\s+saa)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[leo saa] LT', 'nextDay' => '[kesho saa] LT', 'nextWeek' => '[wiki ijayo] dddd [saat] LT', 'lastDay' => '[jana] LT', 'lastWeek' => '[wiki iliyopita] dddd [saat] LT', 'sameElse' => 'L', ], 'months' => ['Januari', 'Februari', 'Machi', 'Aprili', 'Mei', 'Juni', 'Julai', 'Agosti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'], 'months_short' => ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'], 'weekdays' => ['Jumapili', 'Jumatatu', 'Jumanne', 'Jumatano', 'Alhamisi', 'Ijumaa', 'Jumamosi'], 'weekdays_short' => ['Jpl', 'Jtat', 'Jnne', 'Jtan', 'Alh', 'Ijm', 'Jmos'], 'weekdays_min' => ['J2', 'J3', 'J4', 'J5', 'Al', 'Ij', 'J1'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' na '], ]; PK!ېˆ   carbon/src/Carbon/Lang/ml_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ml.php'; PK!eŻaŠ   carbon/src/Carbon/Lang/lb_LU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/lb.php'; PK!Šfōc   carbon/src/Carbon/Lang/fr_GQ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!ѝŃĻ   carbon/src/Carbon/Lang/ky_KG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ky.php'; PK!Ģ„A.øø carbon/src/Carbon/Lang/el_CY.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Greek Debian Translation Team bug-glibc@gnu.org */ return array_replace_recursive(require __DIR__.'/el.php', [ 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, ]); PK! ösFF carbon/src/Carbon/Lang/es_IC.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 1, ]); PK!x^“FF carbon/src/Carbon/Lang/en_MG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!q~mq   carbon/src/Carbon/Lang/en_DM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!źŗ8OOcarbon/src/Carbon/Lang/chr.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/chr_US.php'; PK!:öƒ’"carbon/src/Carbon/Lang/sr_Cyrl.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - FranƧois B * - shaishavgandhi05 * - Serhan Apaydın * - JD Isaacks * - Glavić * - Nikola Zeravcic * - Milos Sakovic */ return [ 'year' => '{2,3,4,22,23,24,32,33,34,42,43,44,52,53,54}:count гоГине|[0,Inf[:count гоГина', 'y' => ':count г.', 'month' => '{1}:count месец|{2,3,4}:count месеца|[0,Inf[:count месеци', 'm' => ':count м.', 'week' => '{1}:count неГеља|{2,3,4}:count неГеље|[0,Inf[:count неГеља', 'w' => ':count неГ.', 'day' => '{1,21,31}:count Ган|[0,Inf[:count Гана', 'd' => ':count Š“.', 'hour' => '{1,21}:count сат|{2,3,4,22,23,24}:count сата|[0,Inf[:count сати', 'h' => ':count ч.', 'minute' => '{1,21,31,41,51}:count Š¼ŠøŠ½ŃƒŃ‚|[0,Inf[:count Š¼ŠøŠ½ŃƒŃ‚Š°', 'min' => ':count мин.', 'second' => '{1,21,31,41,51}:count секунГ|{2,3,4,22,23,24,32,33,34,42,43,44,52,53,54}:count секунГе|[0,Inf[:count секунГи', 's' => ':count сек.', 'ago' => 'пре :time', 'from_now' => 'за :time', 'after' => ':time након', 'before' => ':time пре', 'year_from_now' => '{1,21,31,41,51}:count гоГину|{2,3,4,22,23,24,32,33,34,42,43,44,52,53,54}:count гоГине|[0,Inf[:count гоГина', 'year_ago' => '{1,21,31,41,51}:count гоГину|{2,3,4,22,23,24,32,33,34,42,43,44,52,53,54}:count гоГине|[0,Inf[:count гоГина', 'week_from_now' => '{1}:count Š½ŠµŠ“ŠµŃ™Ńƒ|{2,3,4}:count неГеље|[0,Inf[:count неГеља', 'week_ago' => '{1}:count Š½ŠµŠ“ŠµŃ™Ńƒ|{2,3,4}:count неГеље|[0,Inf[:count неГеља', 'diff_now' => 'ŃƒŠæŃ€Š°Š²Š¾ саГа', 'diff_today' => 'Ганас', 'diff_today_regexp' => 'Ганас(?:\\s+у)?', 'diff_yesterday' => 'Ń˜ŃƒŃ‡Šµ', 'diff_yesterday_regexp' => 'Ń˜ŃƒŃ‡Šµ(?:\\s+у)?', 'diff_tomorrow' => 'ŃŃƒŃ‚Ń€Š°', 'diff_tomorrow_regexp' => 'ŃŃƒŃ‚Ń€Š°(?:\\s+у)?', 'diff_before_yesterday' => 'ŠæŃ€ŠµŠŗŃ˜ŃƒŃ‡Šµ', 'diff_after_tomorrow' => 'ŠæŃ€ŠµŠŗŠ¾ŃŃƒŃ‚Ń€Š°', 'formats' => [ 'LT' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D. MMMM YYYY', 'LLL' => 'D. MMMM YYYY H:mm', 'LLLL' => 'dddd, D. MMMM YYYY H:mm', ], 'calendar' => [ 'sameDay' => '[Ганас у] LT', 'nextDay' => '[ŃŃƒŃ‚Ń€Š° у] LT', 'nextWeek' => function (\Carbon\CarbonInterface $date) { switch ($date->dayOfWeek) { case 0: return '[у Š½ŠµŠ“ŠµŃ™Ńƒ у] LT'; case 3: return '[у ŃŃ€ŠµŠ“Ńƒ у] LT'; case 6: return '[у ŃŃƒŠ±Š¾Ń‚Ńƒ у] LT'; default: return '[у] dddd [у] LT'; } }, 'lastDay' => '[Ń˜ŃƒŃ‡Šµ у] LT', 'lastWeek' => function (\Carbon\CarbonInterface $date) { switch ($date->dayOfWeek) { case 0: return '[ŠæŃ€Š¾ŃˆŠ»Šµ неГеље у] LT'; case 1: return '[ŠæŃ€Š¾ŃˆŠ»Š¾Š³ понеГељка у] LT'; case 2: return '[ŠæŃ€Š¾ŃˆŠ»Š¾Š³ ŃƒŃ‚Š¾Ń€ŠŗŠ° у] LT'; case 3: return '[ŠæŃ€Š¾ŃˆŠ»Šµ среГе у] LT'; case 4: return '[ŠæŃ€Š¾ŃˆŠ»Š¾Š³ четвртка у] LT'; case 5: return '[ŠæŃ€Š¾ŃˆŠ»Š¾Š³ петка у] LT'; default: return '[ŠæŃ€Š¾ŃˆŠ»Šµ ŃŃƒŠ±Š¾Ń‚Šµ у] LT'; } }, 'sameElse' => 'L', ], 'ordinal' => ':number.', 'months' => ['Ń˜Š°Š½ŃƒŠ°Ń€', 'Ń„ŠµŠ±Ń€ŃƒŠ°Ń€', 'март', 'април', 'мај', 'јун', 'јул', 'Š°Š²Š³ŃƒŃŃ‚', 'септембар', 'октобар', 'новембар', 'Гецембар'], 'months_short' => ['јан.', 'феб.', 'мар.', 'апр.', 'мај', 'јун', 'јул', 'авг.', 'сеп.', 'окт.', 'нов.', 'Гец.'], 'weekdays' => ['неГеља', 'понеГељак', 'ŃƒŃ‚Š¾Ń€Š°Šŗ', 'среГа', 'четвртак', 'петак', 'ŃŃƒŠ±Š¾Ń‚Š°'], 'weekdays_short' => ['неГ.', 'пон.', 'ŃƒŃ‚Š¾.', 'сре.', 'чет.', 'пет.', 'суб.'], 'weekdays_min' => ['не', 'по', 'ут', 'ср', 'че', 'пе', 'су'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' Šø '], 'meridiem' => ['АМ', 'ПМ'], ]; PK!BżŖ carbon/src/Carbon/Lang/bn_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/bn.php', [ 'formats' => [ 'L' => 'D/M/YY', ], 'months' => ['ą¦œą¦¾ą¦Øą§ą¦Æą¦¼ą¦¾ą¦°ą§€', 'ą¦«ą§‡ą¦¬ą§ą¦°ą§ą¦Æą¦¼ą¦¾ą¦°ą§€', 'ą¦®ą¦¾ą¦°ą§ą¦š', 'ą¦ą¦Ŗą§ą¦°ą¦æą¦²', 'মে', 'জুন', 'ą¦œą§ą¦²ą¦¾ą¦‡', 'ą¦†ą¦—ą¦øą§ą¦Ÿ', 'ą¦øą§‡ą¦Ŗą§ą¦Ÿą§‡ą¦®ą§ą¦¬ą¦°', 'ą¦…ą¦•ą§ą¦Ÿą§‹ą¦¬ą¦°', 'ą¦Øą¦­ą§‡ą¦®ą§ą¦¬ą¦°', 'ą¦”ą¦æą¦øą§‡ą¦®ą§ą¦¬ą¦°'], 'months_short' => ['জানু', 'ফেব', 'ą¦®ą¦¾ą¦°ą§ą¦š', 'ą¦ą¦Ŗą§ą¦°ą¦æą¦²', 'মে', 'জুন', 'ą¦œą§ą¦²ą¦¾ą¦‡', 'ą¦†ą¦—ą¦øą§ą¦Ÿ', 'ą¦øą§‡ą¦Ŗą§ą¦Ÿą§‡ą¦®ą§ą¦¬ą¦°', 'ą¦…ą¦•ą§ą¦Ÿą§‹ą¦¬ą¦°', 'ą¦Øą¦­ą§‡ą¦®ą§ą¦¬ą¦°', 'ą¦”ą¦æą¦øą§‡ą¦®ą§ą¦¬ą¦°'], 'weekdays' => ['রবিবার', 'সোমবার', 'ą¦®ą¦™ą§ą¦—ą¦²ą¦¬ą¦¾ą¦°', 'বুধবার', 'ą¦¬ą§ƒą¦¹ą¦øą§ą¦Ŗą¦¤ą¦æą¦¬ą¦¾ą¦°', 'ą¦¶ą§ą¦•ą§ą¦°ą¦¬ą¦¾ą¦°', 'শনিবার'], 'weekdays_short' => ['রবি', 'সোম', 'ą¦®ą¦™ą§ą¦—ą¦²', 'বুধ', 'ą¦¬ą§ƒą¦¹ą¦øą§ą¦Ŗą¦¤ą¦æ', 'ą¦¶ą§ą¦•ą§ą¦°', 'শনি'], 'weekdays_min' => ['রবি', 'সোম', 'ą¦®ą¦™ą§ą¦—ą¦²', 'বুধ', 'ą¦¬ą§ƒą¦¹ą¦øą§ą¦Ŗą¦¤ą¦æ', 'ą¦¶ą§ą¦•ą§ą¦°', 'শনি'], 'day_of_first_week_of_year' => 1, ]); PK!ōlIQOOcarbon/src/Carbon/Lang/yue.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/yue_HK.php'; PK!”³1¤00!carbon/src/Carbon/Lang/fil_PH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Rene Torres Rene Torres, Pablo Saratxaga rgtorre@rocketmail.com, pablo@mandrakesoft.com * - Jaycee Mariano (alohajaycee) */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'MM/DD/YY', ], 'months' => ['Enero', 'Pebrero', 'Marso', 'Abril', 'Mayo', 'Hunyo', 'Hulyo', 'Agosto', 'Setyembre', 'Oktubre', 'Nobyembre', 'Disyembre'], 'months_short' => ['Ene', 'Peb', 'Mar', 'Abr', 'May', 'Hun', 'Hul', 'Ago', 'Set', 'Okt', 'Nob', 'Dis'], 'weekdays' => ['Linggo', 'Lunes', 'Martes', 'Miyerkoles', 'Huwebes', 'Biyernes', 'Sabado'], 'weekdays_short' => ['Lin', 'Lun', 'Mar', 'Miy', 'Huw', 'Biy', 'Sab'], 'weekdays_min' => ['Lin', 'Lun', 'Mar', 'Miy', 'Huw', 'Biy', 'Sab'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['N.U.', 'N.H.'], 'before' => ':time bago', 'after' => ':time pagkatapos', 'year' => ':count taon', 'y' => ':count taon', 'a_year' => ':count taon', 'month' => ':count buwan', 'm' => ':count buwan', 'a_month' => ':count buwan', 'week' => ':count linggo', 'w' => ':count linggo', 'a_week' => ':count linggo', 'day' => ':count araw', 'd' => ':count araw', 'a_day' => ':count araw', 'hour' => ':count oras', 'h' => ':count oras', 'a_hour' => ':count oras', 'minute' => ':count minuto', 'min' => ':count minuto', 'a_minute' => ':count minuto', 'second' => ':count segundo', 's' => ':count segundo', 'a_second' => ':count segundo', 'ago' => ':time ang nakalipas', 'from_now' => 'sa :time', ]); PK!ƒf8£`` carbon/src/Carbon/Lang/ar_YE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/ar.php', [ 'formats' => [ 'L' => 'DD MMM, YYYY', ], 'months' => ['ŁŠŁ†Ų§ŁŠŲ±', 'فبراير', 'Ł…Ų§Ų±Ų³', 'Ų£ŲØŲ±ŁŠŁ„', 'Ł…Ų§ŁŠŁˆ', 'ŁŠŁˆŁ†ŁŠŁˆ', 'ŁŠŁˆŁ„ŁŠŁˆ', 'Ų£ŲŗŲ³Ų·Ų³', 'Ų³ŲØŲŖŁ…ŲØŲ±', 'أكتوبر', 'Ł†ŁˆŁŁ…ŲØŲ±', 'ŲÆŁŠŲ³Ł…ŲØŲ±'], 'months_short' => ['ŁŠŁ†Ų§', 'فبر', 'Ł…Ų§Ų±', 'Ų£ŲØŲ±', 'Ł…Ų§ŁŠ', 'ŁŠŁˆŁ†', 'ŁŠŁˆŁ„', 'Ų£ŲŗŲ³', 'Ų³ŲØŲŖ', 'أكت', 'Ł†ŁˆŁ', 'ديس'], 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'weekdays_min' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'day_of_first_week_of_year' => 1, ]); PK!„‘_ÆÆcarbon/src/Carbon/Lang/mzn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/fa.php', [ 'months' => ['Ś˜Ų§Ł†ŁˆŪŒŁ‡', 'ŁŁˆŲ±ŪŒŁ‡', 'Ł…Ų§Ų±Ų³', 'Ų¢ŁˆŲ±ŪŒŁ„', 'مه', 'Ś˜ŁˆŲ¦Ł†', 'Ś˜ŁˆŲ¦ŪŒŁ‡', 'اوت', 'سپتامبر', 'اکتبر', 'Ł†ŁˆŲ§Ł…ŲØŲ±', 'ŲÆŲ³Ų§Ł…ŲØŲ±'], 'months_short' => ['Ś˜Ų§Ł†ŁˆŪŒŁ‡', 'ŁŁˆŲ±ŪŒŁ‡', 'Ł…Ų§Ų±Ų³', 'Ų¢ŁˆŲ±ŪŒŁ„', 'مه', 'Ś˜ŁˆŲ¦Ł†', 'Ś˜ŁˆŲ¦ŪŒŁ‡', 'اوت', 'سپتامبر', 'اکتبر', 'Ł†ŁˆŲ§Ł…ŲØŲ±', 'ŲÆŲ³Ų§Ł…ŲØŲ±'], 'first_day_of_week' => 6, 'weekend' => [5, 5], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY-MM-dd', 'LL' => 'YYYY MMM D', 'LLL' => 'YYYY MMMM D HH:mm', 'LLLL' => 'YYYY MMMM D, dddd HH:mm', ], ]); PK!č“."NNcarbon/src/Carbon/Lang/wa.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/wa_BE.php'; PK!x^“FF carbon/src/Carbon/Lang/en_IO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!ČßofÜÜcarbon/src/Carbon/Lang/hu.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Adam Brunner * - Brett Johnson * - balping */ $huWeekEndings = ['vasĆ”rnap', 'hĆ©tfőn', 'kedden', 'szerdĆ”n', 'csütƶrtƶkƶn', 'pĆ©nteken', 'szombaton']; return [ 'year' => ':count Ć©v', 'y' => ':count Ć©v', 'month' => ':count hónap', 'm' => ':count hónap', 'week' => ':count hĆ©t', 'w' => ':count hĆ©t', 'day' => ':count nap', 'd' => ':count nap', 'hour' => ':count óra', 'h' => ':count óra', 'minute' => ':count perc', 'min' => ':count perc', 'second' => ':count mĆ”sodperc', 's' => ':count mĆ”sodperc', 'ago' => ':time', 'from_now' => ':time mĆŗlva', 'after' => ':time kĆ©sőbb', 'before' => ':time korĆ”bban', 'year_ago' => ':count Ć©ve', 'y_ago' => ':count Ć©ve', 'month_ago' => ':count hónapja', 'm_ago' => ':count hónapja', 'week_ago' => ':count hete', 'w_ago' => ':count hete', 'day_ago' => ':count napja', 'd_ago' => ':count napja', 'hour_ago' => ':count órĆ”ja', 'h_ago' => ':count órĆ”ja', 'minute_ago' => ':count perce', 'min_ago' => ':count perce', 'second_ago' => ':count mĆ”sodperce', 's_ago' => ':count mĆ”sodperce', 'year_after' => ':count Ć©vvel', 'y_after' => ':count Ć©vvel', 'month_after' => ':count hónappal', 'm_after' => ':count hónappal', 'week_after' => ':count hĆ©ttel', 'w_after' => ':count hĆ©ttel', 'day_after' => ':count nappal', 'd_after' => ':count nappal', 'hour_after' => ':count órĆ”val', 'h_after' => ':count órĆ”val', 'minute_after' => ':count perccel', 'min_after' => ':count perccel', 'second_after' => ':count mĆ”sodperccel', 's_after' => ':count mĆ”sodperccel', 'year_before' => ':count Ć©vvel', 'y_before' => ':count Ć©vvel', 'month_before' => ':count hónappal', 'm_before' => ':count hónappal', 'week_before' => ':count hĆ©ttel', 'w_before' => ':count hĆ©ttel', 'day_before' => ':count nappal', 'd_before' => ':count nappal', 'hour_before' => ':count órĆ”val', 'h_before' => ':count órĆ”val', 'minute_before' => ':count perccel', 'min_before' => ':count perccel', 'second_before' => ':count mĆ”sodperccel', 's_before' => ':count mĆ”sodperccel', 'months' => ['januĆ”r', 'februĆ”r', 'mĆ”rcius', 'Ć”prilis', 'mĆ”jus', 'jĆŗnius', 'jĆŗlius', 'augusztus', 'szeptember', 'október', 'november', 'december'], 'months_short' => ['jan.', 'feb.', 'mĆ”rc.', 'Ć”pr.', 'mĆ”j.', 'jĆŗn.', 'jĆŗl.', 'aug.', 'szept.', 'okt.', 'nov.', 'dec.'], 'weekdays' => ['vasĆ”rnap', 'hĆ©tfő', 'kedd', 'szerda', 'csütƶrtƶk', 'pĆ©ntek', 'szombat'], 'weekdays_short' => ['vas', 'hĆ©t', 'kedd', 'sze', 'csüt', 'pĆ©n', 'szo'], 'weekdays_min' => ['v', 'h', 'k', 'sze', 'cs', 'p', 'sz'], 'ordinal' => ':number.', 'diff_now' => 'most', 'diff_today' => 'ma', 'diff_yesterday' => 'tegnap', 'diff_tomorrow' => 'holnap', 'formats' => [ 'LT' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'YYYY.MM.DD.', 'LL' => 'YYYY. MMMM D.', 'LLL' => 'YYYY. MMMM D. H:mm', 'LLLL' => 'YYYY. MMMM D., dddd H:mm', ], 'calendar' => [ 'sameDay' => '[ma] LT[-kor]', 'nextDay' => '[holnap] LT[-kor]', 'nextWeek' => function (\Carbon\CarbonInterface $date) use ($huWeekEndings) { return '['.$huWeekEndings[$date->dayOfWeek].'] LT[-kor]'; }, 'lastDay' => '[tegnap] LT[-kor]', 'lastWeek' => function (\Carbon\CarbonInterface $date) use ($huWeekEndings) { return '[mĆŗlt '.$huWeekEndings[$date->dayOfWeek].'] LT[-kor]'; }, 'sameElse' => 'L', ], 'meridiem' => ['DE', 'DU'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', ' Ć©s '], ]; PK!x^“FF carbon/src/Carbon/Lang/en_BB.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!Ī‘”carbon/src/Carbon/Lang/ja.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Takuya Sawada * - Atsushi Tanaka * - FranƧois B * - Jason Katz-Brown * - Serhan Apaydın * - XueWei * - JD Isaacks * - toyama satoshi * - atakigawa */ return [ 'year' => ':count幓', 'y' => ':count幓', 'month' => ':countヶ月', 'm' => ':countヶ月', 'week' => ':count週間', 'w' => ':count週間', 'day' => ':countę—„', 'd' => ':countę—„', 'hour' => ':countꙂ間', 'h' => ':countꙂ間', 'minute' => ':count分', 'min' => ':count分', 'second' => ':countē§’', 'a_second' => '{1}ę•°ē§’|]1,Inf[:countē§’', 's' => ':countē§’', 'ago' => ':time前', 'from_now' => ':time後', 'after' => ':time後', 'before' => ':time前', 'diff_now' => '今', 'diff_today' => '今ꗄ', 'diff_yesterday' => 'ę˜Øę—„', 'diff_tomorrow' => 'ę˜Žę—„', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY/MM/DD', 'LL' => 'YYYY幓M月Dę—„', 'LLL' => 'YYYY幓M月Dę—„ HH:mm', 'LLLL' => 'YYYY幓M月Dę—„ dddd HH:mm', ], 'calendar' => [ 'sameDay' => '[今ꗄ] LT', 'nextDay' => '[ę˜Žę—„] LT', 'nextWeek' => function (\Carbon\CarbonInterface $current, \Carbon\CarbonInterface $other) { if ($other->week !== $current->week) { return '[ę„é€±]dddd LT'; } return 'dddd LT'; }, 'lastDay' => '[ę˜Øę—„] LT', 'lastWeek' => function (\Carbon\CarbonInterface $current, \Carbon\CarbonInterface $other) { if ($other->week !== $current->week) { return '[先週]dddd LT'; } return 'dddd LT'; }, 'sameElse' => 'L', ], 'ordinal' => function ($number, $period) { switch ($period) { case 'd': case 'D': case 'DDD': return $number.'ę—„'; default: return $number; } }, 'meridiem' => ['午前', '午後'], 'months' => ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'], 'months_short' => ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'], 'weekdays' => ['ę—„ę›œę—„', 'ęœˆę›œę—„', 'ē«ę›œę—„', 'ę°“ę›œę—„', 'ęœØę›œę—„', 'é‡‘ę›œę—„', 'åœŸę›œę—„'], 'weekdays_short' => ['ę—„', '月', '火', 'ę°“', '木', '金', '土'], 'weekdays_min' => ['ę—„', '月', '火', 'ę°“', '木', '金', '土'], 'list' => '态', 'alt_numbers' => ['怇', 'äø€', '二', 'äø‰', '四', 'äŗ”', '六', '七', '八', '九', '十', 'åäø€', 'åäŗŒ', 'åäø‰', '十四', 'åäŗ”', '十六', 'åäøƒ', '十八', '十九', 'äŗŒå', 'äŗŒåäø€', 'äŗŒåäŗŒ', 'äŗŒåäø‰', 'äŗŒåå››', 'äŗŒåäŗ”', 'äŗŒåå…­', 'äŗŒåäøƒ', 'äŗŒåå…«', 'äŗŒåä¹', 'äø‰å', 'äø‰åäø€', 'äø‰åäŗŒ', 'äø‰åäø‰', 'äø‰åå››', 'äø‰åäŗ”', 'äø‰åå…­', 'äø‰åäøƒ', 'äø‰åå…«', 'äø‰åä¹', '四十', 'å››åäø€', 'å››åäŗŒ', 'å››åäø‰', '四十四', 'å››åäŗ”', '四十六', 'å››åäøƒ', '四十八', '四十九', 'äŗ”å', 'äŗ”åäø€', 'äŗ”åäŗŒ', 'äŗ”åäø‰', 'äŗ”åå››', 'äŗ”åäŗ”', 'äŗ”åå…­', 'äŗ”åäøƒ', 'äŗ”åå…«', 'äŗ”åä¹', '六十', 'å…­åäø€', 'å…­åäŗŒ', 'å…­åäø‰', '六十四', 'å…­åäŗ”', '六十六', 'å…­åäøƒ', '六十八', '六十九', 'äøƒå', 'äøƒåäø€', 'äøƒåäŗŒ', 'äøƒåäø‰', 'äøƒåå››', 'äøƒåäŗ”', 'äøƒåå…­', 'äøƒåäøƒ', 'äøƒåå…«', 'äøƒåä¹', '八十', 'å…«åäø€', 'å…«åäŗŒ', 'å…«åäø‰', '八十四', 'å…«åäŗ”', '八十六', 'å…«åäøƒ', '八十八', '八十九', '九十', 'ä¹åäø€', 'ä¹åäŗŒ', 'ä¹åäø‰', '九十四', 'ä¹åäŗ”', '九十六', 'ä¹åäøƒ', '九十八', '九十九'], 'alt_numbers_pow' => [ 10000 => 'äø‡', 1000 => '千', 100 => '百', ], ]; PK!õŹOOcarbon/src/Carbon/Lang/csb.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/csb_PL.php'; PK!~łłŃŃ carbon/src/Carbon/Lang/fr_BE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/fr.php', [ 'months_short' => ['jan', 'fĆ©v', 'mar', 'avr', 'mai', 'jun', 'jui', 'aoĆ»', 'sep', 'oct', 'nov', 'dĆ©c'], ]); PK!Š‹Y   carbon/src/Carbon/Lang/ha_GH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ha.php'; PK!]jw¬OOcarbon/src/Carbon/Lang/shs.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/shs_CA.php'; PK!&¦Ł   carbon/src/Carbon/Lang/bo_CN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/bo.php'; PK!7‚æ$ carbon/src/Carbon/Lang/en_ZA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YY', 'LL' => 'MMMM DD, YYYY', 'LLL' => 'DD MMM HH:mm', 'LLLL' => 'MMMM DD, YYYY HH:mm', ], 'day_of_first_week_of_year' => 1, ]); PK!ÜYŻó   carbon/src/Carbon/Lang/se_NO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/se.php'; PK!ƒpX] carbon/src/Carbon/Lang/ln_AO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ln.php', [ 'weekdays' => ['eyenga', 'mokɔlɔ mwa yambo', 'mokɔlɔ mwa mĆ­balĆ©', 'mokɔlɔ mwa mĆ­sĆ”to', 'mokɔlɔ ya mĆ­nĆ©i', 'mokɔlɔ ya mĆ­tĆ”no', 'mpɔ́sɔ'], 'weekdays_short' => ['eye', 'ybo', 'mbl', 'mst', 'min', 'mtn', 'mps'], 'weekdays_min' => ['eye', 'ybo', 'mbl', 'mst', 'min', 'mtn', 'mps'], 'meridiem' => ['ntɔ́ngɔ́', 'mpókwa'], ]); PK!ŠĻ3÷   carbon/src/Carbon/Lang/yo_NG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/yo.php'; PK!·µŚ8¬ ¬ carbon/src/Carbon/Lang/tzm.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - JD Isaacks */ return [ 'year' => '{1}⓰ⵙ⓳⓰ⵙ|:count āµ‰āµ™ā“³ā“°āµ™āµ', 'month' => '{1}ā“°āµ¢oⵓⵔ|:count āµ‰āµ¢āµ¢āµ‰āµ”āµ', 'week' => ':count āµ‰āµŽā“°āµā“°āµ™āµ™', 'day' => '{1}⓰ⵙⵙ|:count oāµ™āµ™ā“°āµ', 'hour' => '{1}ⵙ⓰ⵄ⓰|:count āµœā“°āµ™āµ™ā“°āµ„āµ‰āµ', 'minute' => '{1}āµŽāµ‰āµāµ“ā“ŗ|:count āµŽāµ‰āµāµ“ā“ŗ', 'second' => '{1}āµ‰āµŽāµ‰ā“½|:count āµ‰āµŽāµ‰ā“½', 'ago' => 'āµ¢ā“°āµ :time', 'from_now' => 'ā“·ā“°ā“·āµ… āµ™ āµ¢ā“°āµ :time', 'diff_today' => '⓰ⵙ⓷ⵅ', 'diff_yesterday' => 'ā“°āµšā“°āµāµœ', 'diff_yesterday_regexp' => 'ā“°āµšā“°āµāµœ(?:\\s+ā““)?', 'diff_tomorrow' => '⓰ⵙ⓽⓰', 'diff_tomorrow_regexp' => '⓰ⵙ⓽⓰(?:\\s+ā““)?', 'diff_today_regexp' => '⓰ⵙ⓷ⵅ(?:\\s+ā““)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[⓰ⵙ⓷ⵅ ā““] LT', 'nextDay' => '[⓰ⵙ⓽⓰ ā““] LT', 'nextWeek' => 'dddd [ā““] LT', 'lastDay' => '[ā“°āµšā“°āµāµœ ā““] LT', 'lastWeek' => 'dddd [ā““] LT', 'sameElse' => 'L', ], 'months' => ['āµ‰āµāµā“°āµ¢āµ”', '⓱ⵕ⓰ⵢⵕ', 'āµŽā“°āµ•āµš', 'ⵉ⓱ⵔⵉⵔ', 'āµŽā“°āµ¢āµ¢āµ“', 'āµ¢āµ“āµāµ¢āµ“', 'āµ¢āµ“āµāµ¢āµ“āµ£', 'āµ–āµ“āµ›āµœ', 'āµ›āµ“āµœā“°āµā“±āµ‰āµ”', 'ā“½āµŸāµ“ā“±āµ•', 'āµāµ“āµ”ā“°āµā“±āµ‰āµ”', 'ā“·āµ“āµŠāµā“±āµ‰āµ”'], 'months_short' => ['āµ‰āµāµā“°āµ¢āµ”', '⓱ⵕ⓰ⵢⵕ', 'āµŽā“°āµ•āµš', 'ⵉ⓱ⵔⵉⵔ', 'āµŽā“°āµ¢āµ¢āµ“', 'āµ¢āµ“āµāµ¢āµ“', 'āµ¢āµ“āµāµ¢āµ“āµ£', 'āµ–āµ“āµ›āµœ', 'āµ›āµ“āµœā“°āµā“±āµ‰āµ”', 'ā“½āµŸāµ“ā“±āµ•', 'āµāµ“āµ”ā“°āµā“±āµ‰āµ”', 'ā“·āµ“āµŠāµā“±āµ‰āµ”'], 'weekdays' => ['ā“°āµ™ā“°āµŽā“°āµ™', 'ā“°āµ¢āµā“°āµ™', 'ā“°āµ™āµ‰āµā“°āµ™', '⓰⓽ⵔ⓰ⵙ', '⓰⓽ⵔ⓰ⵙ', 'ā“°āµ™āµ‰āµŽāµ”ā“°āµ™', '⓰ⵙⵉ⓹ⵢ⓰ⵙ'], 'weekdays_short' => ['ā“°āµ™ā“°āµŽā“°āµ™', 'ā“°āµ¢āµā“°āµ™', 'ā“°āµ™āµ‰āµā“°āµ™', '⓰⓽ⵔ⓰ⵙ', '⓰⓽ⵔ⓰ⵙ', 'ā“°āµ™āµ‰āµŽāµ”ā“°āµ™', '⓰ⵙⵉ⓹ⵢ⓰ⵙ'], 'weekdays_min' => ['ā“°āµ™ā“°āµŽā“°āµ™', 'ā“°āµ¢āµā“°āµ™', 'ā“°āµ™āµ‰āµā“°āµ™', '⓰⓽ⵔ⓰ⵙ', '⓰⓽ⵔ⓰ⵙ', 'ā“°āµ™āµ‰āµŽāµ”ā“°āµ™', '⓰ⵙⵉ⓹ⵢ⓰ⵙ'], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, 'weekend' => [5, 6], ]; PK!ĖÜżż carbon/src/Carbon/Lang/aa_ET.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ge'ez Frontier Foundation locales@geez.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', ], 'months' => ['Qunxa Garablu', 'Kudo', 'Ciggilta Kudo', 'Agda Baxisso', 'Caxah Alsa', 'Qasa Dirri', 'Qado Dirri', 'Liiqen', 'Waysu', 'Diteli', 'Ximoli', 'Kaxxa Garablu'], 'months_short' => ['Qun', 'Kud', 'Cig', 'Agd', 'Cax', 'Qas', 'Qad', 'Leq', 'Way', 'Dit', 'Xim', 'Kax'], 'weekdays' => ['Acaada', 'Etleeni', 'Talaata', 'Arbaqa', 'Kamiisi', 'Gumqata', 'Sabti'], 'weekdays_short' => ['Aca', 'Etl', 'Tal', 'Arb', 'Kam', 'Gum', 'Sab'], 'weekdays_min' => ['Aca', 'Etl', 'Tal', 'Arb', 'Kam', 'Gum', 'Sab'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['saaku', 'carra'], ]); PK!Šfōc   carbon/src/Carbon/Lang/fr_WF.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!ĖĢņ ¦¦ carbon/src/Carbon/Lang/es_BO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/es.php', [ 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, ]); PK!ˆŲß  carbon/src/Carbon/Lang/shi.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['āµœāµ‰ā“¼ā“°āµ”āµœ', 'ⵜ⓰⓷⓳⓳ⵯ⓰ⵜ'], 'weekdays' => ['ā“°āµ™ā“°āµŽā“°āµ™', 'ā“°āµ¢āµā“°āµ™', 'ā“°āµ™āµ‰āµā“°āµ™', '⓰⓽ⵕ⓰ⵙ', '⓰⓽ⵔ⓰ⵙ', 'āµ™āµ‰āµŽāµ”ā“°āµ™', '⓰ⵙⵉ⓹ⵢ⓰ⵙ'], 'weekdays_short' => ['⓰ⵙ⓰', 'ā“°āµ¢āµ', '⓰ⵙⵉ', '⓰⓽ⵕ', '⓰⓽ⵔ', 'ā“°āµ™āµ‰āµŽ', '⓰ⵙⵉ⓹'], 'weekdays_min' => ['⓰ⵙ⓰', 'ā“°āµ¢āµ', '⓰ⵙⵉ', '⓰⓽ⵕ', '⓰⓽ⵔ', 'ā“°āµ™āµ‰āµŽ', '⓰ⵙⵉ⓹'], 'months' => ['āµ‰āµāµā“°āµ¢āµ”', '⓱ⵕ⓰ⵢⵕ', 'āµŽā“°āµ•āµš', 'ⵉ⓱ⵔⵉⵔ', 'āµŽā“°āµ¢āµ¢āµ“', 'āµ¢āµ“āµāµ¢āµ“', 'āµ¢āµ“āµāµ¢āµ“āµ£', 'āµ–āµ“āµ›āµœ', 'āµ›āµ“āµœā“°āµā“±āµ‰āµ”', 'ā“½āµœāµ“ā“±āµ”', 'āµāµ“āµ”ā“°āµā“±āµ‰āµ”', 'ā“·āµ“āµŠā“°āµā“±āµ‰āµ”'], 'months_short' => ['āµ‰āµāµ', '⓱ⵕ⓰', 'āµŽā“°āµ•', 'ⵉ⓱ⵔ', 'āµŽā“°āµ¢', 'āµ¢āµ“āµ', 'āµ¢āµ“āµ', 'ⵖⵓⵛ', 'āµ›āµ“āµœ', 'ā“½āµœāµ“', 'āµāµ“āµ”', 'ā“·āµ“āµŠ'], 'first_day_of_week' => 6, 'weekend' => [5, 6], 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'D/M/YYYY', 'LL' => 'D MMM, YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd D MMMM YYYY HH:mm', ], 'year' => ':count aseggwas', 'y' => ':count aseggwas', 'a_year' => ':count aseggwas', 'month' => ':count ayyur', 'm' => ':count ayyur', 'a_month' => ':count ayyur', 'week' => ':count imalass', 'w' => ':count imalass', 'a_week' => ':count imalass', 'day' => ':count ass', 'd' => ':count ass', 'a_day' => ':count ass', 'hour' => ':count urÉ£', // less reliable 'h' => ':count urÉ£', // less reliable 'a_hour' => ':count urÉ£', // less reliable 'minute' => ':count ā“°āµŽāµ„āµ‰', // less reliable 'min' => ':count ā“°āµŽāµ„āµ‰', // less reliable 'a_minute' => ':count ā“°āµŽāµ„āµ‰', // less reliable 'second' => ':count sin', // less reliable 's' => ':count sin', // less reliable 'a_second' => ':count sin', // less reliable ]); PK!Šų8šš carbon/src/Carbon/Lang/ar_IQ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/ar.php', [ 'formats' => [ 'L' => 'DD MMM, YYYY', ], 'months' => ['ŁƒŲ§Ł†ŁˆŁ† Ų§Ł„Ų«Ų§Ł†ŁŠ', 'Ų“ŲØŲ§Ų·', 'Ų¢Ų°Ų§Ų±', 'Ł†ŁŠŲ³Ų§Ł†', 'أيار', 'Ų­Ų²ŁŠŲ±Ų§Ł†', 'ŲŖŁ…ŁˆŲ²', 'Ų¢ŲØ', 'Ų£ŁŠŁ„ŁˆŁ„', 'ŲŖŲ“Ų±ŁŠŁ† Ų§Ł„Ų£ŁˆŁ„', 'ŲŖŲ“Ų±ŁŠŁ† Ų§Ł„Ų«Ų§Ł†ŁŠ', 'ŁƒŲ§Ł†ŁˆŁ† Ų§Ł„Ų£ŁˆŁ„'], 'months_short' => ['ŁƒŲ§Ł†ŁˆŁ† Ų§Ł„Ų«Ų§Ł†ŁŠ', 'Ų“ŲØŲ§Ų·', 'Ų¢Ų°Ų§Ų±', 'Ł†ŁŠŲ³Ų§Ł†', 'أيار', 'Ų­Ų²ŁŠŲ±Ų§Ł†', 'ŲŖŁ…ŁˆŲ²', 'Ų¢ŲØ', 'Ų£ŁŠŁ„ŁˆŁ„', 'ŲŖŲ“Ų±ŁŠŁ† Ų§Ł„Ų£ŁˆŁ„', 'ŲŖŲ“Ų±ŁŠŁ† Ų§Ł„Ų«Ų§Ł†ŁŠ', 'ŁƒŲ§Ł†ŁˆŁ† Ų§Ł„Ų£ŁˆŁ„'], 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت'], 'weekdays_short' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'weekdays_min' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, ]); PK!ÅļćPP carbon/src/Carbon/Lang/to_TO.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - International Components for Unicode akhilesh.k@samsung.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'dddd DD MMM YYYY', ], 'months' => ['Sānuali', 'Fēpueli', 'MaŹ»asi', 'Ź»Epeleli', 'Mē', 'Sune', 'Siulai', 'Ź»Aokosi', 'Sepitema', 'Ź»Okatopa', 'Nōvema', 'TÄ«sema'], 'months_short' => ['Sān', 'Fēp', 'MaŹ»a', 'Ź»Epe', 'Mē', 'Sun', 'Siu', 'Ź»Aok', 'Sep', 'Ź»Oka', 'Nōv', 'TÄ«s'], 'weekdays' => ['Sāpate', 'Mōnite', 'TÅ«site', 'Pulelulu', 'TuŹ»apulelulu', 'Falaite', 'Tokonaki'], 'weekdays_short' => ['Sāp', 'Mōn', 'TÅ«s', 'Pul', 'TuŹ»a', 'Fal', 'Tok'], 'weekdays_min' => ['Sāp', 'Mōn', 'TÅ«s', 'Pul', 'TuŹ»a', 'Fal', 'Tok'], 'meridiem' => ['hengihengi', 'efiafi'], 'year' => ':count fitu', // less reliable 'y' => ':count fitu', // less reliable 'a_year' => ':count fitu', // less reliable 'month' => ':count mahina', // less reliable 'm' => ':count mahina', // less reliable 'a_month' => ':count mahina', // less reliable 'week' => ':count Sapate', // less reliable 'w' => ':count Sapate', // less reliable 'a_week' => ':count Sapate', // less reliable 'day' => ':count Ź»aho', // less reliable 'd' => ':count Ź»aho', // less reliable 'a_day' => ':count Ź»aho', // less reliable 'hour' => ':count houa', 'h' => ':count houa', 'a_hour' => ':count houa', 'minute' => ':count miniti', 'min' => ':count miniti', 'a_minute' => ':count miniti', 'second' => ':count sekoni', 's' => ':count sekoni', 'a_second' => ':count sekoni', ]); PK!Ē<¦NNcarbon/src/Carbon/Lang/ht.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/ht_HT.php'; PK!Ž`)Ć Ć carbon/src/Carbon/Lang/km.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Kruy Vanna * - Sereysethy Touch * - JD Isaacks * - Sovichet Tep */ return [ 'year' => '{1}įž˜įž½įž™įž†įŸ’įž“įž¶įŸ†|]1,Inf[:count įž†įŸ’įž“įž¶įŸ†', 'y' => ':count įž†įŸ’įž“įž¶įŸ†', 'month' => '{1}įž˜įž½įž™įžįŸ‚|]1,Inf[:count įžįŸ‚', 'm' => ':count įžįŸ‚', 'week' => ':count įžŸįž”įŸ’įžŠįž¶įž įŸ', 'w' => ':count įžŸįž”įŸ’įžŠįž¶įž įŸ', 'day' => '{1}įž˜įž½įž™įžįŸ’įž„įŸƒ|]1,Inf[:count įžįŸ’įž„įŸƒ', 'd' => ':count įžįŸ’įž„įŸƒ', 'hour' => '{1}įž˜įž½įž™įž˜įŸ‰įŸ„įž„|]1,Inf[:count įž˜įŸ‰įŸ„įž„', 'h' => ':count įž˜įŸ‰įŸ„įž„', 'minute' => '{1}įž˜įž½įž™įž“įž¶įž‘įžø|]1,Inf[:count įž“įž¶įž‘įžø', 'min' => ':count įž“įž¶įž‘įžø', 'second' => '{1}įž”įŸ‰įž»įž“įŸ’įž˜įž¶įž“įžœįž·įž“įž¶įž‘įžø|]1,Inf[:count įžœįž·įž“įž¶įž‘įžø', 's' => ':count įžœįž·įž“įž¶įž‘įžø', 'ago' => ':timeįž˜įž»įž“', 'from_now' => ':timeįž‘įŸ€įž', 'after' => 'įž“įŸ…ā€‹įž€įŸ’įžšįŸ„įž™ :time', 'before' => 'įž“įŸ…ā€‹įž˜įž»įž“ :time', 'diff_now' => 'įž„įž”įž¼įžœ', 'diff_today' => 'įžįŸ’įž„įŸƒįž“įŸįŸ‡', 'diff_today_regexp' => 'įžįŸ’įž„įŸƒįž“įŸįŸ‡(?:\\s+įž˜įŸ‰įŸ„įž„)?', 'diff_yesterday' => 'įž˜įŸ’įžŸįž·įž›įž˜įž·įž‰', 'diff_yesterday_regexp' => 'įž˜įŸ’įžŸįž·įž›įž˜įž·įž‰(?:\\s+įž˜įŸ‰įŸ„įž„)?', 'diff_tomorrow' => 'įžįŸ’įž„įŸƒā€‹įžŸįŸ’įž¢įŸ‚įž€', 'diff_tomorrow_regexp' => 'įžŸįŸ’įž¢įŸ‚įž€(?:\\s+įž˜įŸ‰įŸ„įž„)?', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'calendar' => [ 'sameDay' => '[įžįŸ’įž„įŸƒįž“įŸįŸ‡ įž˜įŸ‰įŸ„įž„] LT', 'nextDay' => '[įžŸįŸ’įž¢įŸ‚įž€ įž˜įŸ‰įŸ„įž„] LT', 'nextWeek' => 'dddd [įž˜įŸ‰įŸ„įž„] LT', 'lastDay' => '[įž˜įŸ’įžŸįž·įž›įž˜įž·įž‰ įž˜įŸ‰įŸ„įž„] LT', 'lastWeek' => 'dddd [įžŸįž”įŸ’įžįž¶įž įŸįž˜įž»įž“] [įž˜įŸ‰įŸ„įž„] LT', 'sameElse' => 'L', ], 'ordinal' => 'įž‘įžø:number', 'meridiem' => ['įž–įŸ’įžšįž¹įž€', 'įž›įŸ’įž„įž¶įž…'], 'months' => ['įž˜įž€įžšįž¶', 'įž€įž»įž˜įŸ’įž—įŸˆ', 'įž˜įžøįž“įž¶', 'įž˜įŸįžŸįž¶', 'įž§įžŸįž—įž¶', 'įž˜įž·įžįž»įž“įž¶', 'įž€įž€įŸ’įž€įžŠįž¶', 'įžŸįžøįž įž¶', 'įž€įž‰įŸ’įž‰įž¶', 'įžįž»įž›įž¶', 'įžœįž·įž…įŸ’įž†įž·įž€įž¶', 'įž’įŸ’įž“įž¼'], 'months_short' => ['įž˜įž€įžšįž¶', 'įž€įž»įž˜įŸ’įž—įŸˆ', 'įž˜įžøįž“įž¶', 'įž˜įŸįžŸįž¶', 'įž§įžŸįž—įž¶', 'įž˜įž·įžįž»įž“įž¶', 'įž€įž€įŸ’įž€įžŠįž¶', 'įžŸįžøįž įž¶', 'įž€įž‰įŸ’įž‰įž¶', 'įžįž»įž›įž¶', 'įžœįž·įž…įŸ’įž†įž·įž€įž¶', 'įž’įŸ’įž“įž¼'], 'weekdays' => ['įž¢įž¶įž‘įž·įžįŸ’įž™', 'įž…įŸįž“įŸ’įž‘', 'įž¢įž„įŸ’įž‚įž¶įžš', 'įž–įž»įž’', 'įž–įŸ’įžšįž įžŸįŸ’įž”įžįž·įŸ', 'įžŸįž»įž€įŸ’įžš', 'įžŸįŸ…įžšįŸ'], 'weekdays_short' => ['įž¢įž¶', 'įž…', 'įž¢', 'įž–', 'įž–įŸ’įžš', 'įžŸįž»', 'įžŸ'], 'weekdays_min' => ['įž¢įž¶', 'įž…', 'įž¢', 'įž–', 'įž–įŸ’įžš', 'įžŸįž»', 'įžŸ'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, 'list' => [', ', 'įž“įž·įž„ '], ]; PK!>™KNNcarbon/src/Carbon/Lang/sc.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/sc_IT.php'; PK![įNĮGG!carbon/src/Carbon/Lang/mas_TZ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/mas.php', [ 'first_day_of_week' => 1, ]); PK!ėć±}} carbon/src/Carbon/Lang/sw_UG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/sw.php', [ 'formats' => [ 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', ], ]); PK!}ŻėTOOcarbon/src/Carbon/Lang/sat.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/sat_IN.php'; PK!ڳąSž ž carbon/src/Carbon/Lang/bo_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/bo.php', [ 'meridiem' => ['སྔ་དྲོ་', 'ཕྱི་དྲོ་'], 'weekdays' => ['ą½‚ą½Ÿą½ ą¼‹ą½‰ą½²ą¼‹ą½˜ą¼‹', 'ą½‚ą½Ÿą½ ą¼‹ą½Ÿą¾³ą¼‹ą½–ą¼‹', 'ą½‚ą½Ÿą½ ą¼‹ą½˜ą½²ą½‚ą¼‹ą½‘ą½˜ą½¢ą¼‹', 'ą½‚ą½Ÿą½ ą¼‹ą½£ą¾·ą½‚ą¼‹ą½”ą¼‹', 'ą½‚ą½Ÿą½ ą¼‹ą½•ą½“ą½¢ą¼‹ą½–ą½“ą¼‹', 'ą½‚ą½Ÿą½ ą¼‹ą½”ą¼‹ą½¦ą½„ą½¦ą¼‹', 'ą½‚ą½Ÿą½ ą¼‹ą½¦ą¾¤ą½ŗą½“ą¼‹ą½”ą¼‹'], 'weekdays_short' => ['ą½‰ą½²ą¼‹ą½˜ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹', 'ą½˜ą½²ą½‚ą¼‹ą½‘ą½˜ą½¢ą¼‹', 'ལྷག་པ་', 'ཕནར་བན་', 'པ་སངས་', 'སྤེན་པ་'], 'weekdays_min' => ['ą½‰ą½²ą¼‹ą½˜ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹', 'ą½˜ą½²ą½‚ą¼‹ą½‘ą½˜ą½¢ą¼‹', 'ལྷག་པ་', 'ཕནར་བན་', 'པ་སངས་', 'སྤེན་པ་'], 'months' => ['ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą½„ą¼‹ą½”ą½¼', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‚ą½‰ą½²ą½¦ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‚ą½¦ą½“ą½˜ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½žą½²ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½£ą¾”ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą¾²ą½“ą½‚ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½‘ą½“ą½“ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½¢ą¾’ą¾±ą½‘ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą½‚ą½“ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½‚ą½…ą½²ą½‚ą¼‹ą½”', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½‚ą½‰ą½²ą½¦ą¼‹ą½”'], 'months_short' => ['ą½Ÿą¾³ą¼‹ą¼”', 'ą½Ÿą¾³ą¼‹ą¼¢', 'ą½Ÿą¾³ą¼‹ą¼£', 'ą½Ÿą¾³ą¼‹ą¼¤', 'ą½Ÿą¾³ą¼‹ą¼„', 'ą½Ÿą¾³ą¼‹ą¼¦', 'ą½Ÿą¾³ą¼‹ą¼§', 'ą½Ÿą¾³ą¼‹ą¼Ø', 'ą½Ÿą¾³ą¼‹ą¼©', 'ą½Ÿą¾³ą¼‹ą¼”ą¼ ', 'ą½Ÿą¾³ą¼‹ą¼”ą¼”', 'ą½Ÿą¾³ą¼‹ą¼”ą¼¢'], 'months_standalone' => ['ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą½„ą¼‹ą½”ą½¼ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‚ą½‰ą½²ą½¦ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‚ą½¦ą½“ą½˜ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½žą½²ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½£ą¾”ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą¾²ą½“ą½‚ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½‘ą½“ą½“ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½¢ą¾’ą¾±ą½‘ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½‘ą½‚ą½“ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½‚ą½…ą½²ą½‚ą¼‹ą½”ą¼‹', 'ą½Ÿą¾³ą¼‹ą½–ą¼‹ą½–ą½…ą½“ą¼‹ą½‚ą½‰ą½²ą½¦ą¼‹ą½”ą¼‹'], 'weekend' => [0, 0], 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'YYYY-MM-DD', 'LL' => 'YYYY ལོའི་MMMą½šą½ŗą½¦ą¼‹D', 'LLL' => 'སྤྱི་ལོ་YYYY MMMMą½ ą½²ą¼‹ą½šą½ŗą½¦ą¼‹D h:mm a', 'LLLL' => 'YYYY MMMMą½ ą½²ą¼‹ą½šą½ŗą½¦ą¼‹D, dddd h:mm a', ], ]); PK!4¼—   carbon/src/Carbon/Lang/te_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/te.php'; PK!Šfōc   carbon/src/Carbon/Lang/fr_GP.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!x^“FF carbon/src/Carbon/Lang/en_SI.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!ęŌ“¾¾carbon/src/Carbon/Lang/ast.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Jordi Mallach jordi@gnu.org * - Adolfo Jayme-Barrientos (fitojb) */ return array_replace_recursive(require __DIR__.'/es.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['de xineru', 'de febreru', 'de marzu', 'd’abril', 'de mayu', 'de xunu', 'de xunetu', 'd’agostu', 'de setiembre', 'd’ochobre', 'de payares', 'd’avientu'], 'months_short' => ['xin', 'feb', 'mar', 'abr', 'may', 'xun', 'xnt', 'ago', 'set', 'och', 'pay', 'avi'], 'weekdays' => ['domingu', 'llunes', 'martes', 'miĆ©rcoles', 'xueves', 'vienres', 'sĆ”badu'], 'weekdays_short' => ['dom', 'llu', 'mar', 'miĆ©', 'xue', 'vie', 'sĆ”b'], 'weekdays_min' => ['dom', 'llu', 'mar', 'miĆ©', 'xue', 'vie', 'sĆ”b'], 'year' => ':count aƱu|:count aƱos', 'y' => ':count aƱu|:count aƱos', 'a_year' => 'un aƱu|:count aƱos', 'month' => ':count mes', 'm' => ':count mes', 'a_month' => 'un mes|:count mes', 'week' => ':count selmana|:count selmanes', 'w' => ':count selmana|:count selmanes', 'a_week' => 'una selmana|:count selmanes', 'day' => ':count dĆ­a|:count dĆ­es', 'd' => ':count dĆ­a|:count dĆ­es', 'a_day' => 'un dĆ­a|:count dĆ­es', 'hour' => ':count hora|:count hores', 'h' => ':count hora|:count hores', 'a_hour' => 'una hora|:count hores', 'minute' => ':count minutu|:count minutos', 'min' => ':count minutu|:count minutos', 'a_minute' => 'un minutu|:count minutos', 'second' => ':count segundu|:count segundos', 's' => ':count segundu|:count segundos', 'a_second' => 'un segundu|:count segundos', 'ago' => 'hai :time', 'from_now' => 'en :time', 'after' => ':time dempuĆ©s', 'before' => ':time enantes', ]); PK!x^“FF carbon/src/Carbon/Lang/en_CH.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!Ų'½%carbon/src/Carbon/Lang/zh_Hant_TW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/zh_Hant.php'; PK!q~mq   carbon/src/Carbon/Lang/en_TT.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!Šfōc   carbon/src/Carbon/Lang/fr_MF.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!Šfōc   carbon/src/Carbon/Lang/fr_CF.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!­ä Pcc carbon/src/Carbon/Lang/pa_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Guo Xiang Tan * - Josh Soref * - Ash * - harpreetkhalsagtbit */ return require __DIR__.'/pa.php'; PK!īēĶS®® carbon/src/Carbon/Lang/ta_SG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ta.php', [ 'formats' => [ 'LT' => 'a h:mm', 'LTS' => 'a h:mm:ss', 'L' => 'D/M/yy', 'LL' => 'D MMM, YYYY', 'LLL' => 'D MMMM, YYYY, a h:mm', 'LLLL' => 'dddd, D MMMM, YYYY, a h:mm', ], 'months' => ['ஜனவரி', 'ą®Ŗą®æą®ŖąÆą®°ą®µą®°ą®æ', 'ą®®ą®¾ą®°ąÆą®šąÆ', 'ą®ą®ŖąÆą®°ą®²ąÆ', 'மே', 'ą®œąÆ‚ą®©ąÆ', 'ą®œąÆ‚ą®²ąÆˆ', 'ą®†ą®•ą®øąÆą®ŸąÆ', 'ą®šąÆ†ą®ŖąÆą®Ÿą®®ąÆą®Ŗą®°ąÆ', 'ą®…ą®•ąÆą®ŸąÆ‹ą®Ŗą®°ąÆ', 'ą®Øą®µą®®ąÆą®Ŗą®°ąÆ', 'ą®Ÿą®æą®šą®®ąÆą®Ŗą®°ąÆ'], 'months_short' => ['ஜன.', 'ą®Ŗą®æą®ŖąÆ.', 'ą®®ą®¾ą®°ąÆ.', 'ą®ą®ŖąÆ.', 'மே', 'ą®œąÆ‚ą®©ąÆ', 'ą®œąÆ‚ą®²ąÆˆ', 'ஆக.', 'ą®šąÆ†ą®ŖąÆ.', 'ą®…ą®•ąÆ.', 'நவ.', 'டிச.'], 'weekdays' => ['ą®žą®¾ą®Æą®æą®±ąÆ', 'ą®¤ą®æą®™ąÆą®•ą®³ąÆ', 'ą®šąÆ†ą®µąÆą®µą®¾ą®ÆąÆ', 'ą®ŖąÆą®¤ą®©ąÆ', 'ą®µą®æą®Æą®¾ą®“ą®©ąÆ', 'ą®µąÆ†ą®³ąÆą®³ą®æ', 'சனி'], 'weekdays_short' => ['ą®žą®¾ą®Æą®æ.', 'ą®¤ą®æą®™ąÆ.', 'ą®šąÆ†ą®µąÆ.', 'புத.', 'வியா.', 'ą®µąÆ†ą®³ąÆ.', 'சனி'], 'weekdays_min' => ['ą®žą®¾', 'தி', 'ą®šąÆ†', 'பு', 'வி', 'வெ', 'ச'], 'meridiem' => ['மு.ப', 'பி.ப'], ]); PK!ł/kØOOcarbon/src/Carbon/Lang/wae.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/wae_CH.php'; PK!x^“FF carbon/src/Carbon/Lang/en_VC.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!$’E°öö"carbon/src/Carbon/Lang/uz_Cyrl.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/uz.php', [ 'formats' => [ 'L' => 'DD/MM/yy', 'LL' => 'D MMM, YYYY', 'LLL' => 'D MMMM, YYYY HH:mm', 'LLLL' => 'dddd, DD MMMM, YYYY HH:mm', ], 'meridiem' => ['Š¢Šž', 'ТК'], ]); PK!VBOOcarbon/src/Carbon/Lang/szl.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/szl_PL.php'; PK!­‘™   carbon/src/Carbon/Lang/id_ID.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/id.php'; PK!©ö‡carbon/src/Carbon/Lang/vai.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'weekdays' => ['ź•žź•Œź”µ', 'ź—³ź—”ź˜‰', 'ź•šź•žź•š', 'ź•‰ź•žź•’', 'ꕉꔤꕆꕢ', 'ꕉꔤꕀꕮ', 'ꔻꔬꔳ'], 'weekdays_short' => ['ź•žź•Œź”µ', 'ź—³ź—”ź˜‰', 'ź•šź•žź•š', 'ź•‰ź•žź•’', 'ꕉꔤꕆꕢ', 'ꕉꔤꕀꕮ', 'ꔻꔬꔳ'], 'weekdays_min' => ['ź•žź•Œź”µ', 'ź—³ź—”ź˜‰', 'ź•šź•žź•š', 'ź•‰ź•žź•’', 'ꕉꔤꕆꕢ', 'ꕉꔤꕀꕮ', 'ꔻꔬꔳ'], 'months' => ['ź–Øź–• ꕪꕓ ź”žź”€ź•®ź•Š', 'ź•’ź•”ź–ź–•', 'ꕾꖺ', 'ꖢꖕ', 'ꖑꕱ', 'ź–±ź˜‹', 'ź–±ź•žź”¤', 'ꗛꔕ', 'ź•¢ź•Œ', 'ź•­ź–ƒ', 'ź”žź˜‹ź•”ź•æ ź•øź–ƒź—', 'ź–Øź–• ꕪꕓ ź—ź–ŗź•®ź•Š'], 'months_short' => ['ź–Øź–•ź”ž', 'ź•’ź•”', 'ꕾꖺ', 'ꖢꖕ', 'ꖑꕱ', 'ź–±ź˜‹', 'ź–±ź•ž', 'ꗛꔕ', 'ź•¢ź•Œ', 'ź•­ź–ƒ', 'ź”žź˜‹', 'ź–Øź–•ź—'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'h:mm a', 'LTS' => 'h:mm:ss a', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMM YYYY', 'LLL' => 'D MMMM YYYY h:mm a', 'LLLL' => 'dddd, D MMMM YYYY h:mm a', ], 'year' => ':count ź•€', // less reliable 'y' => ':count ź•€', // less reliable 'a_year' => ':count ź•€', // less reliable 'second' => ':count ź—±ź•žź•Æź•Š', // less reliable 's' => ':count ź—±ź•žź•Æź•Š', // less reliable 'a_second' => ':count ź—±ź•žź•Æź•Š', // less reliable ]); PK!ČB‹UŅŅ carbon/src/Carbon/Lang/fo_DK.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/fo.php', [ 'formats' => [ 'L' => 'DD.MM.yy', 'LL' => 'DD.MM.YYYY', 'LLL' => 'D. MMMM YYYY, HH:mm', 'LLLL' => 'dddd, D. MMMM YYYY, HH:mm', ], ]); PK!ąƒVŒŒ!carbon/src/Carbon/Lang/lzh_TW.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'OY[幓]MMMMOD[ę—„]', ], 'months' => ['äø€ęœˆ', '二月', 'äø‰ęœˆ', 'å››ęœˆ', 'äŗ”ęœˆ', 'å…­ęœˆ', '七月', 'å…«ęœˆ', 'ä¹ęœˆ', 'åęœˆ', 'åäø€ęœˆ', 'åäŗŒęœˆ'], 'months_short' => [' äø€ ', ' 二 ', ' äø‰ ', ' 四 ', ' äŗ” ', ' 六 ', ' 七 ', ' 八 ', ' 九 ', ' 十 ', 'åäø€', 'åäŗŒ'], 'weekdays' => ['週ꗄ', '週一', 'é€±äŗŒ', '週三', '週四', '週五', '週六'], 'weekdays_short' => ['ę—„', 'äø€', '二', 'äø‰', '四', 'äŗ”', '六'], 'weekdays_min' => ['ę—„', 'äø€', '二', 'äø‰', '四', 'äŗ”', '六'], 'day_of_first_week_of_year' => 1, 'alt_numbers' => ['怇', 'äø€', '二', 'äø‰', '四', 'äŗ”', '六', '七', '八', '九', '十', 'åäø€', 'åäŗŒ', 'åäø‰', '十四', 'åäŗ”', '十六', 'åäøƒ', '十八', '十九', '廿', '廿一', '廿二', '廿三', '廿四', '廿五', '廿六', '廿七', '廿八', 'å»æä¹', '卅', 'å…äø€'], 'meridiem' => ['ꜝ', '暮'], 'year' => ':count 夏', // less reliable 'y' => ':count 夏', // less reliable 'a_year' => ':count 夏', // less reliable 'month' => ':count 月', // less reliable 'm' => ':count 月', // less reliable 'a_month' => ':count 月', // less reliable 'hour' => ':count ę°§', // less reliable 'h' => ':count ę°§', // less reliable 'a_hour' => ':count ę°§', // less reliable 'minute' => ':count 點', // less reliable 'min' => ':count 點', // less reliable 'a_minute' => ':count 點', // less reliable 'second' => ':count 愚', // less reliable 's' => ':count 愚', // less reliable 'a_second' => ':count 愚', // less reliable 'week' => ':count 星期', 'w' => ':count 星期', 'a_week' => ':count 星期', 'day' => ':count ę—„(曆法)', 'd' => ':count ę—„(曆法)', 'a_day' => ':count ę—„(曆法)', ]); PK!Ną[[carbon/src/Carbon/Lang/vo.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'months' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'], 'months_short' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'YYYY-MM-dd', 'LL' => 'YYYY MMM D', 'LLL' => 'YYYY MMMM D HH:mm', 'LLLL' => 'YYYY MMMM D, dddd HH:mm', ], 'year' => ':count yel', 'y' => ':count yel', 'a_year' => ':count yel', 'month' => ':count mul', 'm' => ':count mul', 'a_month' => ':count mul', 'week' => ':count vig', 'w' => ':count vig', 'a_week' => ':count vig', 'day' => ':count del', 'd' => ':count del', 'a_day' => ':count del', 'hour' => ':count düp', 'h' => ':count düp', 'a_hour' => ':count düp', 'minute' => ':count minut', 'min' => ':count minut', 'a_minute' => ':count minut', 'second' => ':count sekun', 's' => ':count sekun', 'a_second' => ':count sekun', ]); PK!8¶Qsppcarbon/src/Carbon/Lang/om.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Ge'ez Frontier Foundation & Sagalee Oromoo Publishing Co. Inc. locales@geez.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'dd-MMM-YYYY', 'LLL' => 'dd MMMM YYYY HH:mm', 'LLLL' => 'dddd, MMMM D, YYYY HH:mm', ], 'months' => ['Amajjii', 'Guraandhala', 'Bitooteessa', 'Elba', 'Caamsa', 'Waxabajjii', 'Adooleessa', 'Hagayya', 'Fuulbana', 'Onkololeessa', 'Sadaasa', 'Muddee'], 'months_short' => ['Ama', 'Gur', 'Bit', 'Elb', 'Cam', 'Wax', 'Ado', 'Hag', 'Ful', 'Onk', 'Sad', 'Mud'], 'weekdays' => ['Dilbata', 'Wiixata', 'Qibxata', 'Roobii', 'Kamiisa', 'Jimaata', 'Sanbata'], 'weekdays_short' => ['Dil', 'Wix', 'Qib', 'Rob', 'Kam', 'Jim', 'San'], 'weekdays_min' => ['Dil', 'Wix', 'Qib', 'Rob', 'Kam', 'Jim', 'San'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['WD', 'WB'], 'year' => 'wggoota :count', 'y' => 'wggoota :count', 'a_year' => 'wggoota :count', 'month' => 'ji’a :count', 'm' => 'ji’a :count', 'a_month' => 'ji’a :count', 'week' => 'torban :count', 'w' => 'torban :count', 'a_week' => 'torban :count', 'day' => 'guyyaa :count', 'd' => 'guyyaa :count', 'a_day' => 'guyyaa :count', 'hour' => 'saʼaatii :count', 'h' => 'saʼaatii :count', 'a_hour' => 'saʼaatii :count', 'minute' => 'daqiiqaa :count', 'min' => 'daqiiqaa :count', 'a_minute' => 'daqiiqaa :count', 'second' => 'sekoondii :count', 's' => 'sekoondii :count', 'a_second' => 'sekoondii :count', ]); PK!—•M44 carbon/src/Carbon/Lang/az_IR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Mousa Moradi mousamk@gmail.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'OY/OM/OD', ], 'months' => ['Ś˜Ų§Ł†ŁˆŪŒŁ‡', 'ŁŁˆŲ±ŪŒŁ‡', 'Ł…Ų§Ų±Ų³', 'Ų¢ŁˆŲ±ŪŒŁ„', 'Ł…Ų¦ŪŒ', 'Ś˜ŁˆŲ¦Ł†', 'Ų¬ŁˆŁ„Ų§ŪŒ', 'آقۇست', 'سپتامبر', 'Ų§ŁˆŁ’Ś©ŲŖŁˆŁ’ŲØŲ±', 'Ł†ŁˆŁ’ŁˆŲ§Ł…ŲØŲ±', 'ŲÆŲ³Ų§Ł…ŲØŲ±'], 'months_short' => ['Ś˜Ų§Ł†ŁˆŪŒŁ‡', 'ŁŁˆŲ±ŪŒŁ‡', 'Ł…Ų§Ų±Ų³', 'Ų¢ŁˆŲ±ŪŒŁ„', 'Ł…Ų¦ŪŒ', 'Ś˜ŁˆŲ¦Ł†', 'Ų¬ŁˆŁ„Ų§ŪŒ', 'آقۇست', 'سپتامبر', 'Ų§ŁˆŁ’Ś©ŲŖŁˆŁ’ŲØŲ±', 'Ł†ŁˆŁ’ŁˆŲ§Ł…ŲØŲ±', 'ŲÆŲ³Ų§Ł…ŲØŲ±'], 'weekdays' => ['ŪŒŚ©Ų“Ł†ŲØŁ‡', 'ŲÆŁˆŲ“Ł†ŲØŁ‡', 'Ų³Ł‡ā€ŒŲ“Ł†ŲØŁ‡', 'چارؓنبه', 'جۆمعه Ų¢Ų®Ų“Ų§Ł…ŪŒ', 'جۆمعه', 'ؓنبه'], 'weekdays_short' => ['ŪŒŚ©Ų“Ł†ŲØŁ‡', 'ŲÆŁˆŲ“Ł†ŲØŁ‡', 'Ų³Ł‡ā€ŒŲ“Ł†ŲØŁ‡', 'چارؓنبه', 'جۆمعه Ų¢Ų®Ų“Ų§Ł…ŪŒ', 'جۆمعه', 'ؓنبه'], 'weekdays_min' => ['ŪŒŚ©Ų“Ł†ŲØŁ‡', 'ŲÆŁˆŲ“Ł†ŲØŁ‡', 'Ų³Ł‡ā€ŒŲ“Ł†ŲØŁ‡', 'چارؓنبه', 'جۆمعه Ų¢Ų®Ų“Ų§Ł…ŪŒ', 'جۆمعه', 'ؓنبه'], 'first_day_of_week' => 6, 'alt_numbers' => ['Ū°Ū°', 'Ū°Ū±', 'Ū°Ū²', 'Ū°Ū³', 'Ū°Ū“', 'Ū°Ūµ', 'Ū°Ū¶', 'Ū°Ū·', 'Ū°Ūø', 'Ū°Ū¹', 'Ū±Ū°', 'Ū±Ū±', 'Ū±Ū²', 'Ū±Ū³', 'Ū±Ū“', 'Ū±Ūµ', 'Ū±Ū¶', 'Ū±Ū·', 'Ū±Ūø', 'Ū±Ū¹', 'Ū²Ū°', 'Ū²Ū±', 'Ū²Ū²', 'Ū²Ū³', 'Ū²Ū“', 'Ū²Ūµ', 'Ū²Ū¶', 'Ū²Ū·', 'Ū²Ūø', 'Ū²Ū¹', 'Ū³Ū°', 'Ū³Ū±', 'Ū³Ū²', 'Ū³Ū³', 'Ū³Ū“', 'Ū³Ūµ', 'Ū³Ū¶', 'Ū³Ū·', 'Ū³Ūø', 'Ū³Ū¹', 'Ū“Ū°', 'Ū“Ū±', 'Ū“Ū²', 'Ū“Ū³', 'Ū“Ū“', 'Ū“Ūµ', 'Ū“Ū¶', 'Ū“Ū·', 'Ū“Ūø', 'Ū“Ū¹', 'ŪµŪ°', 'ŪµŪ±', 'ŪµŪ²', 'ŪµŪ³', 'ŪµŪ“', 'ŪµŪµ', 'ŪµŪ¶', 'ŪµŪ·', 'ŪµŪø', 'ŪµŪ¹', 'Ū¶Ū°', 'Ū¶Ū±', 'Ū¶Ū²', 'Ū¶Ū³', 'Ū¶Ū“', 'Ū¶Ūµ', 'Ū¶Ū¶', 'Ū¶Ū·', 'Ū¶Ūø', 'Ū¶Ū¹', 'Ū·Ū°', 'Ū·Ū±', 'Ū·Ū²', 'Ū·Ū³', 'Ū·Ū“', 'Ū·Ūµ', 'Ū·Ū¶', 'Ū·Ū·', 'Ū·Ūø', 'Ū·Ū¹', 'ŪøŪ°', 'ŪøŪ±', 'ŪøŪ²', 'ŪøŪ³', 'ŪøŪ“', 'ŪøŪµ', 'ŪøŪ¶', 'ŪøŪ·', 'ŪøŪø', 'ŪøŪ¹', 'Ū¹Ū°', 'Ū¹Ū±', 'Ū¹Ū²', 'Ū¹Ū³', 'Ū¹Ū“', 'Ū¹Ūµ', 'Ū¹Ū¶', 'Ū¹Ū·', 'Ū¹Ūø', 'Ū¹Ū¹'], ]); PK!x^“FF carbon/src/Carbon/Lang/en_KN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!d2M•   carbon/src/Carbon/Lang/uk_UA.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/uk.php'; PK!,Z¦carbon/src/Carbon/Lang/smn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'meridiem' => ['ip.', 'ep.'], 'weekdays' => ['pasepeeivi', 'vuossaargĆ¢', 'majebaargĆ¢', 'koskoho', 'tuorĆ¢stuv', 'vĆ”stuppeeivi', 'lĆ”vurduv'], 'weekdays_short' => ['pas', 'vuo', 'maj', 'kos', 'tuo', 'vĆ”s', 'lĆ”v'], 'weekdays_min' => ['pa', 'vu', 'ma', 'ko', 'tu', 'vĆ”', 'lĆ”'], 'weekdays_standalone' => ['pasepeivi', 'vuossargĆ¢', 'majebargĆ¢', 'koskokko', 'tuorĆ¢stĆ¢h', 'vĆ”stuppeivi', 'lĆ”vurdĆ¢h'], 'months' => ['uđđâivemƔƔnu', 'kuovĆ¢mƔƔnu', 'njuhÄĆ¢mƔƔnu', 'cuÔŋuimƔƔnu', 'vyesimƔƔnu', 'kesimƔƔnu', 'syeinimƔƔnu', 'porgemƔƔnu', 'čohÄĆ¢mƔƔnu', 'roovvĆ¢dmƔƔnu', 'skammĆ¢mƔƔnu', 'juovlĆ¢mƔƔnu'], 'months_short' => ['uđiv', 'kuovĆ¢', 'njuhÄĆ¢', 'cuÔŋui', 'vyesi', 'kesi', 'syeini', 'porge', 'čohÄĆ¢', 'roovvĆ¢d', 'skammĆ¢', 'juovlĆ¢'], 'first_day_of_week' => 1, 'formats' => [ 'LT' => 'H.mm', 'LTS' => 'H.mm.ss', 'L' => 'D.M.YYYY', 'LL' => 'MMM D. YYYY', 'LLL' => 'MMMM D. YYYY H.mm', 'LLLL' => 'dddd, MMMM D. YYYY H.mm', ], 'hour' => ':count Ƥigi', // less reliable 'h' => ':count Ƥigi', // less reliable 'a_hour' => ':count Ƥigi', // less reliable 'year' => ':count ihe', 'y' => ':count ihe', 'a_year' => ':count ihe', 'month' => ':count mĆ”nuppaje', 'm' => ':count mĆ”nuppaje', 'a_month' => ':count mĆ”nuppaje', 'week' => ':count okko', 'w' => ':count okko', 'a_week' => ':count okko', 'day' => ':count peivi', 'd' => ':count peivi', 'a_day' => ':count peivi', 'minute' => ':count miinut', 'min' => ':count miinut', 'a_minute' => ':count miinut', 'second' => ':count nubbe', 's' => ':count nubbe', 'a_second' => ':count nubbe', ]); PK!‘Ŗ†¦I I carbon/src/Carbon/Lang/as_IN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Amitakhya Phukan, Red Hat bug-glibc@gnu.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'D-MM-YYYY', ], 'months' => ['ą¦œą¦¾ą¦Øą§ą§±ą¦¾ą§°ą§€', 'ą¦«ą§‡ą¦¬ą§ą§°ą§ą§±ą¦¾ą§°ą§€', 'ą¦®ą¦¾ą§°ą§ą¦š', 'ą¦ą¦Ŗą§ą§°ą¦æą¦²', 'মে', 'জুন', 'ą¦œą§ą¦²ą¦¾ą¦‡', 'ą¦†ą¦—ą¦·ą§ą¦Ÿ', 'ą¦›ą§‡ą¦Ŗą§ą¦¤ą§‡ą¦®ą§ą¦¬ą§°', 'ą¦…ą¦•ą§ą¦Ÿą§‹ą¦¬ą§°', 'ą¦Øą§±ą§‡ą¦®ą§ą¦¬ą§°', 'ą¦”ą¦æą¦šą§‡ą¦®ą§ą¦¬ą§°'], 'months_short' => ['জানু', 'ą¦«ą§‡ą¦¬ą§ą§°ą§', 'ą¦®ą¦¾ą§°ą§ą¦š', 'ą¦ą¦Ŗą§ą§°ą¦æą¦²', 'মে', 'জুন', 'ą¦œą§ą¦²ą¦¾ą¦‡', 'আগ', 'ą¦øą§‡ą¦Ŗą§ą¦Ÿ', 'ą¦…ą¦•ą§ą¦Ÿą§‹', 'নভে', 'ঔিসে'], 'weekdays' => ['দেওবাৰ', 'সোমবাৰ', 'ą¦®ą¦™ą§ą¦—ą¦²ą¦¬ą¦¾ą§°', 'বুধবাৰ', 'ą¦¬ą§ƒą¦¹ą¦·ą§ą¦Ŗą¦¤ą¦æą¦¬ą¦¾ą§°', 'ą¦¶ą§ą¦•ą§ą§°ą¦¬ą¦¾ą§°', 'শনিবাৰ'], 'weekdays_short' => ['দেও', 'সোম', 'ą¦®ą¦™ą§ą¦—ą¦²', 'বুধ', 'ą¦¬ą§ƒą¦¹ą¦·ą§ą¦Ŗą¦¤ą¦æ', 'ą¦¶ą§ą¦•ą§ą§°', 'শনি'], 'weekdays_min' => ['দেও', 'সোম', 'ą¦®ą¦™ą§ą¦—ą¦²', 'বুধ', 'ą¦¬ą§ƒą¦¹ą¦·ą§ą¦Ŗą¦¤ą¦æ', 'ą¦¶ą§ą¦•ą§ą§°', 'শনি'], 'day_of_first_week_of_year' => 1, 'meridiem' => ['ą¦Ŗą§‚ą§°ą§ą¦¬ą§ą¦¬ą¦¾ą¦¹ą§ą¦Ø', 'ą¦…ą¦Ŗą§°ą¦¾ą¦¹ą§ą¦Ø'], 'year' => ':count বছৰ', 'y' => ':count বছৰ', 'a_year' => ':count বছৰ', 'month' => ':count মাহ', 'm' => ':count মাহ', 'a_month' => ':count মাহ', 'week' => ':count ą¦øą¦Ŗą§ą¦¤ą¦¾ą¦¹', 'w' => ':count ą¦øą¦Ŗą§ą¦¤ą¦¾ą¦¹', 'a_week' => ':count ą¦øą¦Ŗą§ą¦¤ą¦¾ą¦¹', 'day' => ':count বাৰ', 'd' => ':count বাৰ', 'a_day' => ':count বাৰ', 'hour' => ':count ą¦˜ą¦£ą§ą¦Ÿą¦¾', 'h' => ':count ą¦˜ą¦£ą§ą¦Ÿą¦¾', 'a_hour' => ':count ą¦˜ą¦£ą§ą¦Ÿą¦¾', 'minute' => ':count মিনিট', 'min' => ':count মিনিট', 'a_minute' => ':count মিনিট', 'second' => ':count ą¦¦ą§ą¦¬ą¦æą¦¤ą§€ą¦Æą¦¼', 's' => ':count ą¦¦ą§ą¦¬ą¦æą¦¤ą§€ą¦Æą¦¼', 'a_second' => ':count ą¦¦ą§ą¦¬ą¦æą¦¤ą§€ą¦Æą¦¼', ]); PK!gžÖĀY Y carbon/src/Carbon/Lang/id.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - du * - JD Isaacks * - Nafies Luthfi * - Raymundus Jati Primanda (mundusjp) * - diankur313 * - a-wip0 */ return [ 'year' => ':count tahun', 'a_year' => '{1}setahun|]1,Inf[:count tahun', 'y' => ':countthn', 'month' => ':count bulan', 'a_month' => '{1}sebulan|]1,Inf[:count bulan', 'm' => ':countbln', 'week' => ':count minggu', 'a_week' => '{1}seminggu|]1,Inf[:count minggu', 'w' => ':countmgg', 'day' => ':count hari', 'a_day' => '{1}sehari|]1,Inf[:count hari', 'd' => ':counthr', 'hour' => ':count jam', 'a_hour' => '{1}sejam|]1,Inf[:count jam', 'h' => ':countj', 'minute' => ':count menit', 'a_minute' => '{1}semenit|]1,Inf[:count menit', 'min' => ':countmnt', 'second' => ':count detik', 'a_second' => '{1}beberapa detik|]1,Inf[:count detik', 's' => ':countdt', 'ago' => ':time yang lalu', 'from_now' => ':time dari sekarang', 'after' => ':time setelahnya', 'before' => ':time sebelumnya', 'diff_now' => 'sekarang', 'diff_today' => 'Hari', 'diff_today_regexp' => 'Hari(?:\\s+ini)?(?:\\s+pukul)?', 'diff_yesterday' => 'kemarin', 'diff_yesterday_regexp' => 'Kemarin(?:\\s+pukul)?', 'diff_tomorrow' => 'besok', 'diff_tomorrow_regexp' => 'Besok(?:\\s+pukul)?', 'formats' => [ 'LT' => 'HH.mm', 'LTS' => 'HH.mm.ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY [pukul] HH.mm', 'LLLL' => 'dddd, D MMMM YYYY [pukul] HH.mm', ], 'calendar' => [ 'sameDay' => '[Hari ini pukul] LT', 'nextDay' => '[Besok pukul] LT', 'nextWeek' => 'dddd [pukul] LT', 'lastDay' => '[Kemarin pukul] LT', 'lastWeek' => 'dddd [lalu pukul] LT', 'sameElse' => 'L', ], 'meridiem' => function ($hour) { if ($hour < 11) { return 'pagi'; } if ($hour < 15) { return 'siang'; } if ($hour < 19) { return 'sore'; } return 'malam'; }, 'months' => ['Januari', 'Februari', 'Maret', 'April', 'Mei', 'Juni', 'Juli', 'Agustus', 'September', 'Oktober', 'November', 'Desember'], 'months_short' => ['Jan', 'Feb', 'Mar', 'Apr', 'Mei', 'Jun', 'Jul', 'Agt', 'Sep', 'Okt', 'Nov', 'Des'], 'weekdays' => ['Minggu', 'Senin', 'Selasa', 'Rabu', 'Kamis', 'Jumat', 'Sabtu'], 'weekdays_short' => ['Min', 'Sen', 'Sel', 'Rab', 'Kam', 'Jum', 'Sab'], 'weekdays_min' => ['Mg', 'Sn', 'Sl', 'Rb', 'Km', 'Jm', 'Sb'], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'list' => [', ', ' dan '], ]; PK!Šfōc   carbon/src/Carbon/Lang/fr_BI.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!x^“FF carbon/src/Carbon/Lang/en_SZ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!«įņ”” carbon/src/Carbon/Lang/en_NG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, ]); PK!āł×}OOcarbon/src/Carbon/Lang/mfe.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/mfe_MU.php'; PK!q~mq   carbon/src/Carbon/Lang/en_BZ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/en.php'; PK!/żņ·ŽŽcarbon/src/Carbon/Lang/sl.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Philippe Vaucher * - Tsutomu Kuroda * - tjku * - Max Melentiev * - Juanito Fatas * - Akira Matsuda * - Christopher Dell * - Enrique Vidal * - Simone Carletti * - Aaron Patterson * - NicolĆ”s Hock Isaza * - Miha Rebernik * - Gal Jakič (morpheus7CS) * - Glavić * - Anže Časar * - Lovro TramÅ”ek (Lovro1107) * - burut13 */ return [ 'year' => ':count leto|:count leti|:count leta|:count let', 'y' => ':count leto|:count leti|:count leta|:count let', 'month' => ':count mesec|:count meseca|:count mesece|:count mesecev', 'm' => ':count mes.', 'week' => ':count teden|:count tedna|:count tedne|:count tednov', 'w' => ':count ted.', 'day' => ':count dan|:count dni|:count dni|:count dni', 'd' => ':count dan|:count dni|:count dni|:count dni', 'hour' => ':count ura|:count uri|:count ure|:count ur', 'h' => ':count h', 'minute' => ':count minuta|:count minuti|:count minute|:count minut', 'min' => ':count min.', 'second' => ':count sekunda|:count sekundi|:count sekunde|:count sekund', 'a_second' => '{1}nekaj sekund|:count sekunda|:count sekundi|:count sekunde|:count sekund', 's' => ':count s', 'year_ago' => ':count letom|:count leti|:count leti|:count leti', 'y_ago' => ':count letom|:count leti|:count leti|:count leti', 'month_ago' => ':count mesecem|:count meseci|:count meseci|:count meseci', 'week_ago' => ':count tednom|:count tednoma|:count tedni|:count tedni', 'day_ago' => ':count dnem|:count dnevoma|:count dnevi|:count dnevi', 'd_ago' => ':count dnem|:count dnevoma|:count dnevi|:count dnevi', 'hour_ago' => ':count uro|:count urama|:count urami|:count urami', 'minute_ago' => ':count minuto|:count minutama|:count minutami|:count minutami', 'second_ago' => ':count sekundo|:count sekundama|:count sekundami|:count sekundami', 'day_from_now' => ':count dan|:count dneva|:count dni|:count dni', 'd_from_now' => ':count dan|:count dneva|:count dni|:count dni', 'hour_from_now' => ':count uro|:count uri|:count ure|:count ur', 'minute_from_now' => ':count minuto|:count minuti|:count minute|:count minut', 'second_from_now' => ':count sekundo|:count sekundi|:count sekunde|:count sekund', 'ago' => 'pred :time', 'from_now' => 'čez :time', 'after' => ':time kasneje', 'before' => ':time prej', 'diff_now' => 'ravnokar', 'diff_today' => 'danes', 'diff_today_regexp' => 'danes(?:\\s+ob)?', 'diff_yesterday' => 'včeraj', 'diff_yesterday_regexp' => 'včeraj(?:\\s+ob)?', 'diff_tomorrow' => 'jutri', 'diff_tomorrow_regexp' => 'jutri(?:\\s+ob)?', 'diff_before_yesterday' => 'predvčerajÅ”njim', 'diff_after_tomorrow' => 'pojutriÅ”njem', 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 1, 'period_start_date' => 'od :date', 'period_end_date' => 'do :date', 'formats' => [ 'LT' => 'H:mm', 'LTS' => 'H:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D. MMMM YYYY', 'LLL' => 'D. MMMM YYYY H:mm', 'LLLL' => 'dddd, D. MMMM YYYY H:mm', ], 'calendar' => [ 'sameDay' => '[danes ob] LT', 'nextDay' => '[jutri ob] LT', 'nextWeek' => 'dddd [ob] LT', 'lastDay' => '[včeraj ob] LT', 'lastWeek' => function (\Carbon\CarbonInterface $date) { switch ($date->dayOfWeek) { case 0: return '[preteklo] [nedeljo] [ob] LT'; case 1: return '[pretekli] [ponedeljek] [ob] LT'; case 2: return '[pretekli] [torek] [ob] LT'; case 3: return '[preteklo] [sredo] [ob] LT'; case 4: return '[pretekli] [četrtek] [ob] LT'; case 5: return '[pretekli] [petek] [ob] LT'; case 6: return '[preteklo] [soboto] [ob] LT'; } }, 'sameElse' => 'L', ], 'months' => ['januar', 'februar', 'marec', 'april', 'maj', 'junij', 'julij', 'avgust', 'september', 'oktober', 'november', 'december'], 'months_short' => ['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'avg', 'sep', 'okt', 'nov', 'dec'], 'weekdays' => ['nedelja', 'ponedeljek', 'torek', 'sreda', 'četrtek', 'petek', 'sobota'], 'weekdays_short' => ['ned', 'pon', 'tor', 'sre', 'čet', 'pet', 'sob'], 'weekdays_min' => ['ne', 'po', 'to', 'sr', 'če', 'pe', 'so'], 'list' => [', ', ' in '], 'meridiem' => ['dopoldan', 'popoldan'], ]; PK!Y›   carbon/src/Carbon/Lang/ff_GN.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/ff.php'; PK!ābĆ(( carbon/src/Carbon/Lang/ar_KM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/ar.php', [ ]); PK!Šfōc   carbon/src/Carbon/Lang/fr_TG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!x^“FF carbon/src/Carbon/Lang/en_BI.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!UG carbon/src/Carbon/Lang/tzl.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return [ 'year' => '[0,1]:count ar|:count ars', 'y' => '[0,1]:count ar|:count ars', 'month' => '[0,1]:count mes|:count mesen', 'm' => '[0,1]:count mes|:count mesen', 'week' => '[0,1]:count seifetziua|:count seifetziuas', 'w' => '[0,1]:count seifetziua|:count seifetziuas', 'day' => '[0,1]:count ziua|:count ziuas', 'd' => '[0,1]:count ziua|:count ziuas', 'hour' => '[0,1]:count þora|:count þoras', 'h' => '[0,1]:count þora|:count þoras', 'minute' => '[0,1]:count mĆ­ut|:count mĆ­uts', 'min' => '[0,1]:count mĆ­ut|:count mĆ­uts', 'second' => ':count secunds', 's' => ':count secunds', 'ago' => 'ja :time', 'from_now' => 'osprei :time', 'diff_yesterday' => 'ieiri', 'diff_yesterday_regexp' => 'ieiri(?:\\s+Ć )?', 'diff_today' => 'oxhi', 'diff_today_regexp' => 'oxhi(?:\\s+Ć )?', 'diff_tomorrow' => 'demĆ ', 'diff_tomorrow_regexp' => 'demĆ (?:\\s+Ć )?', 'formats' => [ 'LT' => 'HH.mm', 'LTS' => 'HH.mm.ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D. MMMM [dallas] YYYY', 'LLL' => 'D. MMMM [dallas] YYYY HH.mm', 'LLLL' => 'dddd, [li] D. MMMM [dallas] YYYY HH.mm', ], 'calendar' => [ 'sameDay' => '[oxhi Ć ] LT', 'nextDay' => '[demĆ  Ć ] LT', 'nextWeek' => 'dddd [Ć ] LT', 'lastDay' => '[ieiri Ć ] LT', 'lastWeek' => '[sür el] dddd [lasteu Ć ] LT', 'sameElse' => 'L', ], 'meridiem' => ["D'A", "D'O"], 'months' => ['Januar', 'Fevraglh', 'MarƧ', 'AvrĆÆu', 'Mai', 'Gün', 'Julia', 'Guscht', 'Setemvar', 'ListopƤts', 'Noemvar', 'Zecemvar'], 'months_short' => ['Jan', 'Fev', 'Mar', 'Avr', 'Mai', 'Gün', 'Jul', 'Gus', 'Set', 'Lis', 'Noe', 'Zec'], 'weekdays' => ['SĆŗladi', 'LĆŗneƧi', 'Maitzi', 'MĆ”rcuri', 'XhĆŗadi', 'ViĆ©nerƧi', 'SĆ”turi'], 'weekdays_short' => ['SĆŗl', 'LĆŗn', 'Mai', 'MĆ”r', 'XhĆŗ', 'ViĆ©', 'SĆ”t'], 'weekdays_min' => ['SĆŗ', 'LĆŗ', 'Ma', 'MĆ”', 'Xh', 'Vi', 'SĆ”'], 'ordinal' => ':number.', 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, ]; PK! vÅ__ carbon/src/Carbon/Lang/bi_VU.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Samsung Electronics Co., Ltd. akhilesh.k@samsung.com & maninder1.s@samsung.com */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'dddd DD MMM YYYY', ], 'months' => ['jenuware', 'febwari', 'maj', 'epril', 'mei', 'jun', 'julae', 'ogis', 'septemba', 'oktoba', 'novemba', 'disemba'], 'months_short' => ['jen', 'feb', 'maj', 'epr', 'mei', 'jun', 'jul', 'ogi', 'sep', 'okt', 'nov', 'dis'], 'weekdays' => ['sande', 'mande', 'maj', 'wota', 'fraede', 'sarede'], 'weekdays_short' => ['san', 'man', 'maj', 'wot', 'fra', 'sar'], 'weekdays_min' => ['san', 'man', 'maj', 'wot', 'fra', 'sar'], 'year' => ':count seven', // less reliable 'y' => ':count seven', // less reliable 'a_year' => ':count seven', // less reliable 'month' => ':count mi', // less reliable 'm' => ':count mi', // less reliable 'a_month' => ':count mi', // less reliable 'week' => ':count sarede', // less reliable 'w' => ':count sarede', // less reliable 'a_week' => ':count sarede', // less reliable 'day' => ':count betde', // less reliable 'd' => ':count betde', // less reliable 'a_day' => ':count betde', // less reliable 'hour' => ':count klok', // less reliable 'h' => ':count klok', // less reliable 'a_hour' => ':count klok', // less reliable 'minute' => ':count smol', // less reliable 'min' => ':count smol', // less reliable 'a_minute' => ':count smol', // less reliable 'second' => ':count tu', // less reliable 's' => ':count tu', // less reliable 'a_second' => ':count tu', // less reliable ]); PK!/ß&  carbon/src/Carbon/Lang/ar_AE.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - IBM Globalization Center of Competency, Yamato Software Laboratory bug-glibc-locales@gnu.org */ return array_replace_recursive(require __DIR__.'/ar.php', [ 'formats' => [ 'L' => 'DD MMM, YYYY', ], 'months' => ['ŁŠŁ†Ų§ŁŠŲ±', 'فبراير', 'Ł…Ų§Ų±Ų³', 'Ų£ŲØŲ±ŁŠŁ„', 'Ł…Ų§ŁŠŁˆ', 'ŁŠŁˆŁ†ŁŠŁˆ', 'ŁŠŁˆŁ„ŁŠŁˆ', 'Ų£ŲŗŲ³Ų·Ų³', 'Ų³ŲØŲŖŁ…ŲØŲ±', 'أكتوبر', 'Ł†ŁˆŁŁ…ŲØŲ±', 'ŲÆŁŠŲ³Ł…ŲØŲ±'], 'months_short' => ['ŁŠŁ†Ų§', 'فبر', 'Ł…Ų§Ų±', 'Ų£ŲØŲ±', 'Ł…Ų§ŁŠ', 'ŁŠŁˆŁ†', 'ŁŠŁˆŁ„', 'Ų£ŲŗŲ³', 'Ų³ŲØŲŖ', 'أكت', 'Ł†ŁˆŁ', 'ديس'], 'weekdays' => ['الأحد', 'Ų§Ł„Ų§Ų«Ł†ŁŠŁ†', 'الثلاثاؔ', 'الأربعاؔ', 'Ų§Ł„Ų®Ł…ŁŠŲ³', 'الجمعة', 'السبت '], 'weekdays_short' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'weekdays_min' => ['Ų­', 'ن', 'Ų«', 'Ų±', 'Ų®', 'Ų¬', 'Ų³'], 'first_day_of_week' => 6, 'day_of_first_week_of_year' => 1, ]); PK!ha‹Kżż carbon/src/Carbon/Lang/az_AZ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Pablo Saratxaga pablo@mandrakesoft.com */ return array_replace_recursive(require __DIR__.'/az.php', [ 'months_short' => ['Yan', 'Fev', 'Mar', 'Apr', 'May', 'İyn', 'İyl', 'Avq', 'Sen', 'Okt', 'Noy', 'Dek'], 'weekdays' => ['bazar günü', 'bazar ertəsi', 'Ƨərşənbə axşamı', 'Ƨərşənbə', 'cümə axşamı', 'cümə', 'şənbə'], 'weekdays_short' => ['baz', 'ber', 'Ƨax', 'Ƨər', 'cax', 'cüm', 'şnb'], 'weekdays_min' => ['baz', 'ber', 'Ƨax', 'Ƨər', 'cax', 'cüm', 'şnb'], ]); PK!ŻÕ-OOcarbon/src/Carbon/Lang/mag.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Unknown default region, use the first alphabetically. */ return require __DIR__.'/mag_IN.php'; PK!Łå5ŒR R carbon/src/Carbon/Lang/kn.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - Josh Soref * - MOHAN M U * - FranƧois B * - rajeevnaikte */ return [ 'year' => '{1}ಒಂದು ą²µą²°ą³ą²·|]1,Inf[:count ą²µą²°ą³ą²·', 'month' => '{1}ಒಂದು ತಿಂಗಳು|]1,Inf[:count ತಿಂಗಳು', 'week' => '{1}ಒಂದು ವಾರ|]1,Inf[:count ವಾರಗಳು', 'day' => '{1}ಒಂದು ದಿನ|]1,Inf[:count ದಿನ', 'hour' => '{1}ಒಂದು ą²—ą²‚ą²Ÿą³†|]1,Inf[:count ą²—ą²‚ą²Ÿą³†', 'minute' => '{1}ಒಂದು ನಿಮಿಷ|]1,Inf[:count ನಿಮಿಷ', 'second' => '{1}ಕೆಲವು ą²•ą³ą²·ą²£ą²—ą²³ą³|]1,Inf[:count ಸೆಕೆಂಔುಗಳು', 'ago' => ':time ಹಿಂದೆ', 'from_now' => ':time ನಂತರ', 'diff_now' => 'ą²ˆą²—', 'diff_today' => 'ಇಂದು', 'diff_yesterday' => 'ą²Øą²æą²Øą³ą²Øą³†', 'diff_tomorrow' => 'ನಾಳೆ', 'formats' => [ 'LT' => 'A h:mm', 'LTS' => 'A h:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY, A h:mm', 'LLLL' => 'dddd, D MMMM YYYY, A h:mm', ], 'calendar' => [ 'sameDay' => '[ಇಂದು] LT', 'nextDay' => '[ನಾಳೆ] LT', 'nextWeek' => 'dddd, LT', 'lastDay' => '[ą²Øą²æą²Øą³ą²Øą³†] LT', 'lastWeek' => '[ಕೊನೆಯ] dddd, LT', 'sameElse' => 'L', ], 'ordinal' => ':numberನೇ', 'meridiem' => function ($hour) { if ($hour < 4) { return 'ą²°ą²¾ą²¤ą³ą²°ą²æ'; } if ($hour < 10) { return 'ą²¬ą³†ą²³ą²æą²—ą³ą²—ą³†'; } if ($hour < 17) { return 'ą²®ą²§ą³ą²Æą²¾ą²¹ą³ą²Ø'; } if ($hour < 20) { return 'ą²øą²‚ą²œą³†'; } return 'ą²°ą²¾ą²¤ą³ą²°ą²æ'; }, 'months' => ['ಜನವರಿ', 'ą²«ą³†ą²¬ą³ą²°ą²µą²°ą²æ', 'ą²®ą²¾ą²°ą³ą²šą³', 'ą²ą²Ŗą³ą²°ą²æą²²ą³', 'ಮೇ', 'ą²œą³‚ą²Øą³', 'ą²œą³ą²²ą³†ą³–', 'ą²†ą²—ą²øą³ą²Ÿą³', 'ą²øą³†ą²Ŗą³ą²Ÿą³†ą²‚ą²¬ą²°ą³', 'ą²…ą²•ą³ą²Ÿą³†ą³‚ą³•ą²¬ą²°ą³', 'ą²Øą²µą³†ą²‚ą²¬ą²°ą³', 'ą²”ą²æą²øą³†ą²‚ą²¬ą²°ą³'], 'months_short' => ['ಜನ', 'ą²«ą³†ą²¬ą³ą²°', 'ą²®ą²¾ą²°ą³ą²šą³', 'ą²ą²Ŗą³ą²°ą²æą²²ą³', 'ಮೇ', 'ą²œą³‚ą²Øą³', 'ą²œą³ą²²ą³†ą³–', 'ą²†ą²—ą²øą³ą²Ÿą³', 'ą²øą³†ą²Ŗą³ą²Ÿą³†ą²‚', 'ą²…ą²•ą³ą²Ÿą³†ą³‚ą³•', 'ನವೆಂ', 'ಔಿಸೆಂ'], 'weekdays' => ['ಭಾನುವಾರ', 'ಸೋಮವಾರ', 'ಮಂಗಳವಾರ', 'ಬುಧವಾರ', 'ಗುರುವಾರ', 'ą²¶ą³ą²•ą³ą²°ą²µą²¾ą²°', 'ಶನಿವಾರ'], 'weekdays_short' => ['ಭಾನು', 'ಸೋಮ', 'ಮಂಗಳ', 'ಬುಧ', 'ಗುರು', 'ą²¶ą³ą²•ą³ą²°', 'ಶನಿ'], 'weekdays_min' => ['ą²­ą²¾', 'ಸೋ', 'ಮಂ', 'ಬು', 'ಗು', 'ಶು', 'ą²¶'], 'list' => ', ', 'first_day_of_week' => 0, 'day_of_first_week_of_year' => 1, 'weekend' => [0, 0], ]; PK! QóV!carbon/src/Carbon/Lang/nhn_MX.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - RAP libc-alpha@sourceware.org */ return array_replace_recursive(require __DIR__.'/en.php', [ 'formats' => [ 'L' => 'DD/MM/YY', ], 'months' => ['enero', 'febrero', 'marzo', 'abril', 'mayo', 'junio', 'julio', 'agosto', 'septiembre', 'octubre', 'noviembre', 'diciembre'], 'months_short' => ['ene', 'feb', 'mar', 'abr', 'may', 'jun', 'jul', 'ago', 'sep', 'oct', 'nov', 'dic'], 'weekdays' => ['teoilhuitl', 'ceilhuitl', 'omeilhuitl', 'yeilhuitl', 'nahuilhuitl', 'macuililhuitl', 'chicuaceilhuitl'], 'weekdays_short' => ['teo', 'cei', 'ome', 'yei', 'nau', 'mac', 'chi'], 'weekdays_min' => ['teo', 'cei', 'ome', 'yei', 'nau', 'mac', 'chi'], 'day_of_first_week_of_year' => 1, 'month' => ':count metztli', // less reliable 'm' => ':count metztli', // less reliable 'a_month' => ':count metztli', // less reliable 'week' => ':count tonalli', // less reliable 'w' => ':count tonalli', // less reliable 'a_week' => ':count tonalli', // less reliable 'day' => ':count tonatih', // less reliable 'd' => ':count tonatih', // less reliable 'a_day' => ':count tonatih', // less reliable 'minute' => ':count toltecayotl', // less reliable 'min' => ':count toltecayotl', // less reliable 'a_minute' => ':count toltecayotl', // less reliable 'second' => ':count ome', // less reliable 's' => ':count ome', // less reliable 'a_second' => ':count ome', // less reliable 'year' => ':count xihuitl', 'y' => ':count xihuitl', 'a_year' => ':count xihuitl', ]); PK!¬ū”ŹÓ Ó carbon/src/Carbon/Lang/hy.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /* * Authors: * - mhamlet */ return [ 'year' => ':count ÕæÕ”Ö€Õ«', 'a_year' => 'ÕæÕ”Ö€Õ«|:count ÕæÕ”Ö€Õ«', 'y' => ':countÕæ', 'month' => ':count Õ”Õ“Õ«Õ½', 'a_month' => 'Õ”Õ“Õ«Õ½|:count Õ”Õ“Õ«Õ½', 'm' => ':countÕ”Õ“', 'week' => ':count Õ·Õ”Õ¢Õ”Õ©', 'a_week' => 'Õ·Õ”Õ¢Õ”Õ©|:count Õ·Õ”Õ¢Õ”Õ©', 'w' => ':countÕ·', 'day' => ':count օր', 'a_day' => 'օր|:count օր', 'd' => ':countօր', 'hour' => ':count ÕŖÕ”Õ“', 'a_hour' => 'ÕŖÕ”Õ“|:count ÕŖÕ”Õ“', 'h' => ':countÕŖ', 'minute' => ':count Ö€ÕøÕŗÕ„', 'a_minute' => 'Ö€ÕøÕŗÕ„|:count Ö€ÕøÕŗÕ„', 'min' => ':countր', 'second' => ':count Õ¾Õ”ÕµÖ€ÕÆÕµÕ”Õ¶', 'a_second' => 'Õ“Õ« Ö„Õ”Õ¶Õ« Õ¾Õ”ÕµÖ€ÕÆÕµÕ”Õ¶|:count Õ¾Õ”ÕµÖ€ÕÆÕµÕ”Õ¶', 's' => ':countÕ¾Ö€ÕÆ', 'ago' => ':time Õ”Õ¼Õ”Õ»', 'from_now' => ':timeից', 'after' => ':time Õ°Õ„ÕæÕø', 'before' => ':time Õ”Õ¼Õ”Õ»', 'diff_now' => 'Õ°Õ«Õ“Õ”', 'diff_today' => 'Õ”ÕµÕ½Ö…Ö€', 'diff_yesterday' => 'Õ„Ö€Õ„ÕÆ', 'diff_tomorrow' => 'Õ¾Õ”Õ²ÕØ', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD.MM.YYYY', 'LL' => 'D MMMM YYYY Õ©.', 'LLL' => 'D MMMM YYYY Õ©., HH:mm', 'LLLL' => 'dddd, D MMMM YYYY Õ©., HH:mm', ], 'calendar' => [ 'sameDay' => '[Õ”ÕµÕ½Ö…Ö€] LT', 'nextDay' => '[Õ¾Õ”Õ²ÕØ] LT', 'nextWeek' => 'dddd [Ö…Ö€ÕØ ÕŖÕ”Õ“ÕØ] LT', 'lastDay' => '[Õ„Ö€Õ„ÕÆ] LT', 'lastWeek' => '[ՔնցՔծ] dddd [Ö…Ö€ÕØ ÕŖÕ”Õ“ÕØ] LT', 'sameElse' => 'L', ], 'ordinal' => function ($number, $period) { switch ($period) { case 'DDD': case 'w': case 'W': case 'DDDo': return $number.($number === 1 ? '-Õ«Õ¶' : '-րդ'); default: return $number; } }, 'meridiem' => function ($hour) { if ($hour < 4) { return 'Õ£Õ«Õ·Õ„Ö€Õ¾Õ”'; } if ($hour < 12) { return 'Õ”Õ¼Õ”Õ¾ÕøÕæÕ¾Õ”'; } if ($hour < 17) { return 'ցՄրՄկվՔ'; } return 'Õ„Ö€Õ„ÕÆÕøÕµÕ”Õ¶'; }, 'months' => ['Õ°ÕøÖ‚Õ¶Õ¾Õ”Ö€Õ«', 'ÖƒÕ„ÕæÖ€Õ¾Õ”Ö€Õ«', 'Õ“Õ”Ö€ÕæÕ«', 'Õ”ÕŗÖ€Õ«Õ¬Õ«', 'Õ“Õ”ÕµÕ«Õ½Õ«', 'Õ°ÕøÖ‚Õ¶Õ«Õ½Õ«', 'Õ°ÕøÖ‚Õ¬Õ«Õ½Õ«', 'Ö…Õ£ÕøÕ½ÕæÕøÕ½Õ«', 'Õ½Õ„ÕŗÕæÕ„Õ“Õ¢Õ„Ö€Õ«', 'Õ°ÕøÕÆÕæÕ„Õ“Õ¢Õ„Ö€Õ«', 'Õ¶ÕøÕµÕ„Õ“Õ¢Õ„Ö€Õ«', 'Õ¤Õ„ÕÆÕæÕ„Õ“Õ¢Õ„Ö€Õ«'], 'months_standalone' => ['Õ°ÕøÖ‚Õ¶Õ¾Õ”Ö€', 'ÖƒÕ„ÕæÖ€Õ¾Õ”Ö€', 'Õ“Õ”Ö€Õæ', 'Õ”ÕŗÖ€Õ«Õ¬', 'Õ“Õ”ÕµÕ«Õ½', 'Õ°ÕøÖ‚Õ¶Õ«Õ½', 'Õ°ÕøÖ‚Õ¬Õ«Õ½', 'Ö…Õ£ÕøÕ½ÕæÕøÕ½', 'Õ½Õ„ÕŗÕæÕ„Õ“Õ¢Õ„Ö€', 'Õ°ÕøÕÆÕæÕ„Õ“Õ¢Õ„Ö€', 'Õ¶ÕøÕµÕ„Õ“Õ¢Õ„Ö€', 'Õ¤Õ„ÕÆÕæÕ„Õ“Õ¢Õ„Ö€'], 'months_short' => ['Õ°Õ¶Õ¾', 'ÖƒÕæÖ€', 'Õ“Ö€Õæ', 'Õ”ÕŗÖ€', 'Õ“ÕµÕ½', 'Õ°Õ¶Õ½', 'Õ°Õ¬Õ½', 'օգս', 'Õ½ÕŗÕæ', 'Õ°ÕÆÕæ', 'Õ¶Õ“Õ¢', 'Õ¤ÕÆÕæ'], 'months_regexp' => '/(D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|L{2,4}|l{2,4})/', 'weekdays' => ['ÕÆÕ«Ö€Õ”ÕÆÕ«', 'Õ„Ö€ÕÆÕøÖ‚Õ·Õ”Õ¢Õ©Õ«', 'Õ„Ö€Õ„Ö„Õ·Õ”Õ¢Õ©Õ«', 'Õ¹ÕøÖ€Õ„Ö„Õ·Õ”Õ¢Õ©Õ«', 'Õ°Õ«Õ¶Õ£Õ·Õ”Õ¢Õ©Õ«', 'ÕøÖ‚Ö€Õ¢Õ”Õ©', 'Õ·Õ”Õ¢Õ”Õ©'], 'weekdays_short' => ['ÕÆÖ€ÕÆ', 'Õ„Ö€ÕÆ', 'Õ„Ö€Ö„', 'չրք', 'Õ°Õ¶Õ£', 'ÕøÖ‚Ö€Õ¢', 'Õ·Õ¢Õ©'], 'weekdays_min' => ['ÕÆÖ€ÕÆ', 'Õ„Ö€ÕÆ', 'Õ„Ö€Ö„', 'չրք', 'Õ°Õ¶Õ£', 'ÕøÖ‚Ö€Õ¢', 'Õ·Õ¢Õ©'], 'list' => [', ', ' Õ„Ö‚ '], 'first_day_of_week' => 1, ]; PK!Ÿ©ēp   carbon/src/Carbon/Lang/is_IS.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/is.php'; PK!x^“FF carbon/src/Carbon/Lang/en_FM.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!ķ„Q®ii carbon/src/Carbon/Lang/en_SG.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'from_now' => 'in :time', 'formats' => [ 'LT' => 'HH:mm', 'LTS' => 'HH:mm:ss', 'L' => 'DD/MM/YYYY', 'LL' => 'D MMMM YYYY', 'LLL' => 'D MMMM YYYY HH:mm', 'LLLL' => 'dddd, D MMMM YYYY HH:mm', ], 'first_day_of_week' => 1, 'day_of_first_week_of_year' => 4, ]); PK!Šfōc   carbon/src/Carbon/Lang/fr_BJ.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/fr.php'; PK!¬TAz   carbon/src/Carbon/Lang/pt_ST.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return require __DIR__.'/pt.php'; PK!x^“FF carbon/src/Carbon/Lang/en_NR.phpnuÕIw¶“ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array_replace_recursive(require __DIR__.'/en.php', [ 'first_day_of_week' => 1, ]); PK!h¢ā*carbon/src/Carbon/PHPStan/MacroScanner.phpnuÕIw¶“getProperty('globalMacros'); $property->setAccessible(true); $macro = $property->getValue()[$methodName]; return new Macro( $className, $methodName, $macro ); } } PK!7‘\\,carbon/src/Carbon/PHPStan/MacroExtension.phpnuÕIw¶“scanner = new MacroScanner(); $this->methodReflectionFactory = $methodReflectionFactory; } /** * {@inheritdoc} */ public function hasMethod(ClassReflection $classReflection, string $methodName): bool { return $this->scanner->hasMethod($classReflection->getName(), $methodName); } /** * {@inheritdoc} */ public function getMethod(ClassReflection $classReflection, string $methodName): MethodReflection { $builtinMacro = $this->scanner->getMethod($classReflection->getName(), $methodName); return $this->methodReflectionFactory->create( $classReflection, null, $builtinMacro, $classReflection->getActiveTemplateTypeMap(), [], TypehintHelper::decideTypeFromReflection($builtinMacro->getReturnType()), null, null, $builtinMacro->isDeprecated()->yes(), $builtinMacro->isInternal(), $builtinMacro->isFinal(), $builtinMacro->getDocComment() ); } } PK!ĮÄLŽŽ#carbon/src/Carbon/PHPStan/Macro.phpnuÕIw¶“className = $className; $this->methodName = $methodName; $this->reflectionFunction = \is_array($macro) ? new ReflectionMethod($macro[0], $macro[1]) : new ReflectionFunction($macro); $this->parameters = $this->reflectionFunction->getParameters(); if ($this->reflectionFunction->isClosure()) { try { /** @var Closure $closure */ $closure = $this->reflectionFunction->getClosure(); $boundClosure = Closure::bind($closure, new stdClass); $this->static = (!$boundClosure || (new ReflectionFunction($boundClosure))->getClosureThis() === null); } catch (Throwable $e) { $this->static = true; } } } /** * {@inheritdoc} */ public function getDeclaringClass(): ReflectionClass { return new ReflectionClass($this->className); } /** * {@inheritdoc} */ public function isPrivate(): bool { return false; } /** * {@inheritdoc} */ public function isPublic(): bool { return true; } /** * {@inheritdoc} */ public function isFinal(): bool { return false; } /** * {@inheritdoc} */ public function isInternal(): bool { return false; } /** * {@inheritdoc} */ public function isAbstract(): bool { return false; } /** * {@inheritdoc} */ public function isStatic(): bool { return $this->static; } /** * {@inheritdoc} */ public function getDocComment(): ?string { return $this->reflectionFunction->getDocComment() ?: null; } /** * {@inheritdoc} */ public function getFileName() { return $this->reflectionFunction->getFileName(); } /** * {@inheritdoc} */ public function getName(): string { return $this->methodName; } /** * {@inheritdoc} */ public function getParameters(): array { return $this->parameters; } /** * {@inheritdoc} */ public function getReturnType(): ?ReflectionType { return $this->reflectionFunction->getReturnType(); } /** * {@inheritdoc} */ public function getStartLine() { return $this->reflectionFunction->getStartLine(); } /** * {@inheritdoc} */ public function getEndLine() { return $this->reflectionFunction->getEndLine(); } /** * {@inheritdoc} */ public function isDeprecated(): TrinaryLogic { return TrinaryLogic::createFromBoolean( $this->reflectionFunction->isDeprecated() || preg_match('/@deprecated/i', $this->getDocComment() ?: '') ); } /** * {@inheritdoc} */ public function isVariadic(): bool { return $this->reflectionFunction->isVariadic(); } /** * {@inheritdoc} */ public function getPrototype(): BuiltinMethodReflection { return $this; } /** * {@inheritdoc} */ public function getReflection(): ?ReflectionMethod { return $this->reflectionFunction instanceof ReflectionMethod ? $this->reflectionFunction : null; } } PK!D,ńA©r ©r 3carbon/2c5419659a5256e79e72fcf8c217d5e2b1624cf5.zipnuÕIw¶“PK .3|Q briannesbitt-Carbon-d046377/UTŲ]Ā_PK .3|Q^¬ Tf# briannesbitt-Carbon-d046377/LICENSEUTŲ]Ā_]QĶnŪ0 ¾ū)ˆœZĄčī»)¶Ņs$CVšåØŲJ¬Į±KYŠ·餯:Ą€!’ßY„ĖūäO}‚§ā–“·#H>„,«Żtö1ś0‚Š»ÉŽį4Ł1¹.‡ćä„#“½N.‡ĄŽļpqSD@8$ėG?žĄB‹"N¦ib8¦›w`c ­·Č]hÆg7&›Hļčį)õͱxžE:g‡Ģ@½Ü|źĆ5Įäbš|K9ų±®yųhžģ Ÿ“Ē IƐĻĪ”óGś»9Öåz|ģsčØoˆlĆu±Ę'[ŠJ˜}ž­„‘ĹRŌLQl+¦”ŽźZ5åK¤•B®4Ŗš —ęU±ü ЬYU‘Tʶč^“?(T½×āum`­Ŗ’cqÉŃ[Vü.…”ŠŠ‰M%Ū°W>£²čŒĘīī`·ęT"=†_a„’£PŅh|ę˜R›OčN4<¦EC YiµÉ3Z'"ŌL‚8Éļ,“jųr”÷¶įŸ„PrV!žG~9ßKöPK .3|Q briannesbitt-Carbon-d046377/bin/UTŲ]Ā_PK .3|Q#ėŖ²¹z& briannesbitt-Carbon-d046377/bin/carbonUTŲ]Ā_­Š=‚0ཿāŒ$“K««!Vg’äFŅbJbüļ¶Ä‘Éx¹ÜņŽ=Ć­Wbģ­(•ØtMGI˜$Ŗ”…#HyĪ.RņXpļ Q5ŠU­Z”8©~čiŲói1¦5EÅżq̼ųZ@„C]ė­÷?“¹ĮšŚˆOß “ 6£®6ē“č–ͲÅĒØ,Āč2ÆROČÓĀ–Fēi«ņL;sGK£œóذ7Ē  ģ °PK .3|Q{mu0U]* briannesbitt-Carbon-d046377/bin/carbon.batUTŲ]Ā_spuöšWšwsć*N-ÉÉONĢQpń vtņquqõqŒ’Ž~Įžž~\Į®! Nž~ń!ŽAī®!¶Ŗu)śÉ‰EIły\ JŖYU%U-.PK .3|Q­ĆžŻ\v ) briannesbitt-Carbon-d046377/composer.jsonUTŲ]Ā_U[Ó:~ß_aõń'Ū½ˆ=<-^!±oģ.rœIkźŲĮvJģg|I§]*5N<ß|3ž›ü-kań W°•v%g¦Ņjń" ŻŠ”•af·k°ÜˆĪ D¢ōµ"Æ?½#°s ,ī‘Fņ–9ø-·fŽŲ¾ė“q–\Ü,I-š (G$S«ž­Ą#õ†ŚŌy愝hÉ"ś…ÄÓļŃŲ"l=$®µn”CvļćŚ¹īU™ŽWÄĆ\·£Żä Bh…µ=ŲQŻ¢žJøu_yŲ2‚)O$œ+ߎ2)L<³ŗ7žž"žą)y%ǐõļīF_YļÖŚä!:xeõ?o|Œ&&~“LH ~Üe<Č x}zńīl ę˜QŅž…‘IØ2̓Å,ߝ¬+j«¤§q¦‡$j…mß™Ā ŽJ Ū1¤•š•üÅÆc Œ¬¾÷Ā@^Żŗó /‹eqC~’&7Åł4ļŲ ō›żńOVCŪh5”–C#¤¤mejų–9Ėv†)+ŁŲp—ÅU0zUœ‡õÕ²ĀINSÄĢńZso JmŚ@uQ¼œZlŒU[Żą KüSni#v`x _ę~N³S¶½t‚:°nƕ‘µ­ĖšLāgbĢ’*÷ć„ …R&¶å[€§5@Ī‹åEq}5ƒõJø2­)y×§Rg1t?%«¬å§ k }jģF-5«gb ½Ź¶Āvlņū{Oe ēƼ¢ēÜĒy|†’£n#½O€}–™kՈՌÓhÖR?]uļctžM2ćhĒųĘĻėŌ]e¼lĪé½ČUŲ½Ó0›·Öa%Q¾¾9xž0õb8IĖĖķX'ö±Oš™”Iz%”n“eaVVÜ&Ō¾U> Ż¢†æéübjzu¢l“Ŗ%L19X@|LNoBƓ$ĒKKĻ)b…‚åD6 ‰­UģZ9Ccļ'8‰_…cYQß°<ƒxó+¾¦L f  “¶llõ‹bGS5];øLˆS—ĘB2ƶ ­`enE ³;o/»ź}Ōææ’ f‹W秤¶ČTNŚ>$df[(.ūž1½ŸR1=ĻŠA>{:ūPK .3|QÖÉ$Ī~ + briannesbitt-Carbon-d046377/contributing.mdUTŲ]Ā_•YkÜ¶ż®_Aģ"š®=ģ¦ #IėøyH#qF‹”$Ī ³’ؐŅĢĪ—žöžs/53ŽŻĶc5yß÷ÜCśŅ¼Ż}9¾Ū˜!˜×6–”+ŠĖKó&„ѝ-]*Š·³É™čśc»ƒI®£ĘĖś1QŅūw¾v_§ĻŁjų×Õvśōr¹ņ’EŚå“ģzQ·ī}Ó`[ˆµļģąĢ°ufķ6µOUŅŻb²©ݳaśąNŠĖq“L?–Æšƒ»Į7u0[»s¦t®ĆSW7®6%¾§EQ|¢ų°.R€Į ńofzÕVAÜäųd߯‰QėŠ4a/v®ķż²x’::Zß¹½Š8E`ć‡ķXŠ’eō¶ė\*ż0,5 KY–Ųx]æ„Ń“ö@]Ö;é€ē.™. }‘ĘC£©h'27™¬[ķĘśna^™& QµKUō=³«ńī܎.;cSQa‘ŒEjų¼!`«ÅĒ0=¤C—q÷½«³Ž”5~0WkÄĖłcōr¹ą%£°F<ø„\³Ī^Sōƒ2»ÄūŸ±ŪљŅm¦ACūü9×v£?¢­`ūŲŌā’É`i¶„šō†˜fØgüš* Łā_«ķ$«Cj5ĆŅ+Sę_ÅŹē_~ūܧ>y%æ^Čcč]÷B|Ānoiå q녬«¢ųŖIؾjė¤ģŠ‚ĮÖ­ķé0ĶŽÓÓ½C®mĒwu0¾ƒ‹÷¢/łOŌŅåͧ¾Ń\ü Uф5S٦9ĢhA‡č”-bY”}6.IŪØmļæńĆ·ciś~uē=’æõ^kk‡}ץ9RÖĖW«UŚŗ¦)6ԈŚuę ”Ÿ”Bbg[÷E¹ĄĒ¢Ŗ'\ćę覀¦±umĘ> čĪö)QOŲ'Ā`Hń£C˜+gV'}+ķ i¼ģżō ežįšI§THĻžqBĆ1T­MŗåX)NX“ŠK~ķ+SFŪ”žX«"·Ö,“®E„u†4óŅ“‡yn±y–0gļytŃRՉ)4‡…ķj”=źź€4"u!*rC%ńKc”Eā93Žx˜Ü FŅcÉ£üróÖoƦĪMüš_"@D€A©žGĪVčŁnø~äečÖ~cęóMJŪH„¢šān’ææŅ‰Ś jŅēE6įÆīŽK”ĮAĘ &x lFĘ^2c-a¾Ėüd¢P®źŠ–Z’G½ŗ°š0qč ń $Čā\žkFĘWa"˜‘’IšźGĆÆ;ŪP³V¬'CÉEcŁ6‘[†’å?ŸŪc`Eā¼5t<’l»܆MŽŹ›µjķķĄĀō÷ĄED{0}‡ˆ į%cēŪ%†ś†U ¢:nYJŗ±-]|œń£a—·7ękŒ 9"MlĻfż 5Ž%u_qnāøq×īCW©éŅ|2Øߏ|į߇z׎jÓg¢Ÿh£L?Š(Ń„!I-pōM1ŖcĻ\„Ą"*r9ŒāōY{§<ŒįG XøĖ“ņzVöź `µ!0j;hŖūm?v’ī7]ųżķ·o9ŌXd<$I7d÷yāŒReüPˆ䗋7Ė –—w_ ķpH{ķŗŹs¶0‹åqKæue”†é‡8Y‘u¢¦ÕF›Œ@ϵĒ×ēū߉דõ袪„KuˆĖiÉ_tĆßķ8'96iV0Ļ+ĒŹSÓ&½«e=6Ķ<ŗß0ü ‡‰Ė‘zJD•ŌŒT²ˆĪ|;¦ķYi… eyĢdD;v¶Z͊ź¹Oėé1d« ßźzb8QĆ4^ņp’KõUF†,0O‘…y«3ĻŽĀOó£śłŒqČū×pµą®b»Ž%ˆnēÉaµŠ`“…н©ķ!Nbóžo»»œdtÄšŻi~”»zå|’t1°xåßĖD.©ł' 38zu¶FL“>ą#ŻxEbš›ĘEÆķ.8¢*Ažø‹lö·°SģC9 šL;äO£b8Ū£ĄK%¶Øų“_K]ŗAh‹ć)”rX²ÜŸ”«…õ°·zs»Š»ĄŸ‚…(8ø‡z:p-…NށV‘-Jć»5ĀAˆÄéģ–Ć_|eÆąO]ŽńAŽ9ŗZLQ6öL&‚ŻŹŃ¶–8~)ń’†Ś]šuį;ĘŽ–¾ńŪFģl<Ą0śé`Ø%Ÿ2ūŅĀ—łĢSLś¹ŗčb“‰°ļĘ0&2?(D7ā±+‹wXŒEÆßĢĢ{žČ%RG+š ½ņ4twhܝPMZVbϼQõKQ\f—łÓĶø7ßiīę7¤×ĮW<&…!Ū}ńŅ\Š:µųb„·«ß®®IŪ~gõї9ķŗY]Ļ”ņ±Ś&\©ĮČTĆļuj3óK97ä! E Er āUēbVŽÆC)Ÿč2ya”Š>Õé¬RŠ=GŖ7ē/ļ¬zsĢšŁ%cš@|wńœó+!õr’½¦oĒB½Bó4cĶĪ5w-ń2»#ń9#6g@1rÜŲČŻyÜw¼S„žŌŗg÷·s,vnļJGū¦Ļ³ #n«×Ē:Œ³WØ@Žˆ+b™da¾<ƒ ³ŗYÜ~ŗx¾š«’ČćDz“ń ÷šA%L°¾śās¬łŲ|v³ų䓕ÕZĪģ{²• 7ĒŁHs%õć…2“Zቱ͗ƒ…Œ¢Rī§] ĒÓå…l‚’·§@…$lćæŃ‡z£›YߧɆې†ć±ra~ūÖóVb})'T%²z…š†©ĆŽ@ųJsz¹¶p§AĮi€!Él8m³ÉzxŸ1ŗzyźY¬ZżÄmäųm¤™'ń­…Åu©Łā,Ē_|~»žHSXŃpŲ„ĢŌe°Õ® «%z.Ę„€Õ[J”ė*IĒqĒY•÷­oą)ČGšpBū¤VģÕ2)šujY³ßbW¦®Ü$FžC¢> ²+[Ž£Ę߁6ŻMć6½×fó v‚9#|ØĆˆ1÷‡†¾4’÷ļiSń_PK .3|Qzķdˆ* briannesbitt-Carbon-d046377/extension.neonUTŲ]Ā_+N-*ĖLN-¶āR]0 É9‰ÅÅV ΉEIły1Į%‰y1¾‰ÉEł®%©yřłypÅ%‰éP`@W” £ ØE/©(?;µH/7µ$#?„ŲdlPjZNjr Š„QPK .3|QóT>Õ % briannesbitt-Carbon-d046377/phpmd.xmlUTŲ]Ā_„T]oŚ0}ēWDyf1퓨(bR%h+±U{«ŒsI<9¾‘ķ@诟m | B¶ś)‘ϹēÜßų”ŹE°„9ŹAxõ‡a'V„ &4‡A8­ƒ 0cQæ –Ø‚1U ”a'ŲLźA˜Sō )ņ$ŅĖH‚!»€Ä X‰3BæŅ¼&­×ėhż5B•’ū^ļŽüšMē,ƒœ~įR*Ó5ļk;EFĻį†ų||®’Ž­Ć÷­DTéäL[ā³­.(ƒł™Oź =?N@3Å rXG¼Ń-“üEõ] ,įNT†Ę? ²ņįA!†Š‰2ŻŒ7L`nccĢ 7›0 WńĻÆŌdķ “ŠŁlų f`2L¦ S“µ"ŒÕśšÆåBøJišš?gTn¶vt ä6n ü©ó å‰ż044K€Ū±ęn=":ąH„eŅ|4m²57®±#ęĢ5įž– .äȦ‘J÷ÕDų)Xr ÉUœ.4G)Tc”F”x)@QƒŖ}a<Ļo1*|qję“›ųT6×p²¢bRŹ5Ģnøćv  Įeśf _æķ³l,¤Į'9E,.HÜŹõąž\‘>.ŚZzx²ö›„œVŹūN+µś”•9Wڽ8–Ťg3)ņŌö¤ŽKžœó‰“.žĘJŲ‘vqā±zv:9°nž‹żqĪ]מXq#Ś+ åɞ6“śMŲĖ mhØĻŁs=S¹ę©½(©ūÉņ¬’yJ¶qÕfAœįSi摑\„t.Ž n0Ÿ”' téåYä…9&„Ć—«cé²jŌóČ8 QŒ(µ<ģģīnÅAĘk9ĀóMt*=ÅęFŌ$qR®Óį“VXń¹å`døJ²ż`Y/ßŃWGšŠę˜ńt"⚪+zŚŻŁ9<ģ÷½P¹V“CždbߙJÜæ½]ÄeVZ.ž!ve*r9v\[Æų#^{vķ m5²‰‘„CnĘåłdĮݓݓ•+N­®L"ö7Ü'’B¤²*ö cxī×^”\NVyZˆv=UL*XYq⋤„ ™ųą„¢ĮĘŚ°ēØCYˆ;!ĮɋĮف' TZ·ggg°_ōų€žG•uiśCx|E„ ćV㭜dŽ)=cŅ²ßŁF§¦ÜŪĆZ«Ż}āōB˜c‡3“V»żłŗÓŠ}‡ŅÕT˜µPͧ…02įń’¬ $Ę(®Ź\&ұÓS§L¢{NŚ@ļ,OÓē|Ž‚÷rÄė;!ĪÆĮ·“ᩬ{\ąM>/J™Ų ō ćÄ £ R“5Ųźx|/ø±­D÷ōx yN$Wy9żvœ   ééH¦goņōińr3ÆžīƆßAŸXNSZ«”Nłü•V)>Āņkh£ÕtŲ–’m~Q]Š8œjzB˜ ÷Nęł³\Ͼ-ߨ+XŠxū śÖßķ°mĻēlʕc.ƒ—f/K”˜Õ¬ŠÉ9ÅB“Ą·Ā Ń恑6{ ¢ēvĶń[r#­V–”F0žĻųÜ2Ø$(ƾFrĢZ9`¬µŚ¶ŪģĻĆO*¹å'Ļä(³;ģ­p•Q¤ƒŅ¦@ŽD††4_§É·†³“eB„­%+‘dš5øqó;Mb Žo(- -˹šTŌY‹«”iZ€u#&”L9Õ/gŪĢVe©é^ä!Æųk©*Œ­^S9æŠę«ŖąŹBZ$kXHŸčęM`rš\“šŹNæinÄżåÆł÷?žåo’¾³8$Śķn=ģ¶L{śMo)ż‚ģģZĶWųiÖPĆJX{‡}]!“?:Ģ8Ŏ^ß~!ų؜¾x{ 悛T‚{!$.° 0>8z½U‘‡˜N5lL]Pd7‘|Œ(k2r^s$P¬E“NēH}V•PW„¶³0‡e+< )­jå2<ēTa§“z,U"¾(u’mĢvōĆ¢lmÕNy©PÉ#Tķ1s~ ]–!Ć. ]l†ÖˆŒlŃIŁń…Ö÷›źŽwļ²— šę¹o“p—½#łQ“Ę··čž/ōŽÜł±’Ø—tVĮæ÷Ø%QČĢFMŁŲ«SÕ/^:†­Ę½žg OšŅw“źØ †Ķ)_›˜WNÓTŻĆ&2žŚ†‹Z²·¦Ń.ÜøŠV#W æĖę¾Īu…8t¬²k' ,g‰p‹5?ó¶–æw`ÉNņp;1"܊µsŲŗ¹»¦Gm¢š/+ēAź˜]œezģß’ņĀ&™œRÉF6pT_#§Ķœj8”0¬4ś=–zl˜”{, JĒǦ³‹&=£”‚jHɜ%hł– $HZO*T"±@Ō|ا„H{›\Vr—uī•ŗKÉn׉0{‚ĢŽ8½Å)ö7p~;$ƱH*#ŻÜ›™'ū²ę“cØŻ, lCE'PN«\ ĆG2Ē[‡•ŽiŒō}£å4½:PCoŖ5Y»-Ī$¹BkŌRE#Qp܇ąi“\ŪŹˆž×ąŠ ń ±}VF¢¾jŖ|C"źPĄŒŗ™"ćźÜän.…†l†F,Žc4Ž¢Ēœe('ūĘļÄš2³qrA†sÜ ¶ö§#ōęóƓǸē0k’*Ę*Œ¬h‰CL{ōš"’æóĢdź²żG»[÷±č“Ś£ˆ‹Ÿ<Žł“`‚!®Zč-p2\Ŗ[«™‰¼ōÄ/ŗšx™»2ĢZ\ĶW³Ä…ĖŽ•HZY,v+Ęq;Čņ õZO@ __jĆS’ŽĀīöŸŸ’õvrņ m Ó(Æ7Vl7Zčn l’°ĘYŸ:ō+}Sƒ\vK悎K ™Ž Ē”m†™vŽ£9Bą‘/\øĒ¾'Ćäz¢CXŒłŌō3āāŪ,gĪɌ¾ŠĶÄČJ × ę«Įnbæš¼¹żāśP¼×ܝ%Wp|ŹD&­ ł?Õæ]”ś·"Ōąv…܊PŪ·+Ōö­µs»Bķ\Ź÷ŒPģč»A×:4^+¢čé”ĖÜ£Ź‘Øøa-f޵smŹš@­DÓĘŠ‘Ÿš³3ß­hŌ²ųą÷4°0›Ōß\ś‘k¦Ķ9•ŸŪK6ČnśD·7(UC_,Ęoė¹ Å1Õ{5HJnŹ4)_ž]Øīśž¬qõ ļF}éĄĶ:—‰ļō¶ĒŽ9ę)‡k@-?­›œw<3Y jMiK©šÜeōKš¤J>'ńŻUCŠ’ų@#Å:YP°^įz¢pYA#’-\Vą×ńB”„nG’PK .3|Q briannesbitt-Carbon-d046377/src/UTŲ]Ā_PK .3|Q' briannesbitt-Carbon-d046377/src/Carbon/UTŲ]Ā_PK .3|QW.Rśq1 briannesbitt-Carbon-d046377/src/Carbon/Carbon.phpUTŲ]Ā_Ż]ksŪF–ż®_ŃårÕH.YŠ7ļÖ&™F¶wT;™HŽlRS•iMcąą!YYĻß¾Ż  H@Ÿn‚ĖqH‘Ą9÷Žs»oæšĶ®«££ógĻŽŲ3v³ˆr6bĮäæ+ž,³b!Ų%Ļfi"? >š[q&æK_?N؟²ˆ'ģČgQQ°ofōö»D¾M‹³ ]žŃ|õMš© ĶĖ8fAŗzČ¢ŪEĮx²8 D’Ė[&ó4[ņ"J“S¶Š—ŸŻEā^żīū«Ė×ļ®_Ó„¾bĮ vĻsFy‘E³²!»Š…ü‹Äž§ey£P=?JųRä~Eå룣2ÆŽüõ&ćQ‘’õ/Äןsśæ›h¹ńī*)D6—iükšČO*^°’›dÄ$·ś•ż¾įe‘†iĄnE"2NfģoŅl«4“®‘ż[eĆļVYŗYńĄŌ+J ¶łzś x6ä»WyŚ÷ėĖ4)}æņ‡¾_]H_õĘ%ŅÓ}杋 MĀž×²žĘ /w]’ÓŃU@(漌 *bdĻ_vŪ{Ė:Ļsńųs«e-źžż.+fn sVÕ{›g钽æ¹ń­ź ēn!.ĶMĘAü³ģڣP7騋¼ŖR3ė _°j‡Ŗė÷Ęó;‰~ń8’²ģn<݊ęy&xŲ‘5ĄY’ vLEšu™Č«ŸŌ)䄳˜eF Q–°(ˆ/4Ł[iAü·ņ¾)Y£SÆlž’ūĖ/^č– )—3‘‘ƒ©¹8UŹZ°ąYAFš&Lš_%Ųžä#]ōJ*¹īDĀ(hpŪ;»\’z+²(ŒÄī _>9²Z>aĒI!;¾Õå„·Lóbżŗ»ģ\Ž‹, ©%Ļ>l‹„ŻŠßÆä×pųŸ\¼•Š|ŪzI·½Jė>÷;Ł ZAߖ&[z¬ė šw‚f©õzœ77č÷'C‹L¾āTކ,TՑTROņXÆÕi4ć¶ŗ(:%õ™Q ĶY’Öæ£J~Ē£˜ĻdńDÉ®®§xr[ʾ[_ŹŖč{…å­®9aβ“fĢŲČ¦Oœ88Ā[ń­ĖūéVy‹eŻvņŌ/±-®z5šŃźźŌ( `­Ū4WœKlS­^öwߜ·öż’ōW‘„T°ĖW……*4] ½ j’ņÆCŗŠ¹®ģa ¾Ś9öŌÄ ń@±Œ¢‹ l½cŒwŖg«FĄ˜GY^cdó @ ^_¬+Ó¾0bG1†.ß°ē—/梊bsœÆÅ?JY~ č(­ŖŖėŖ U’²ŠM™_°ē¬wJ EĄCšH¤š‰ŅׯD×V ód™į§‚U]w,.š±I•Ą€šbZ_·“YšĘ …9x”V¾¤„bµ0%ēw²!ĪU}*‘…QĄ‹4;• o)Ø ~u}sŹę<–ķy*łd÷QŽøjÓĮĄƒ…>䄬5J*ĶŖī¶nŽŽ„^xō÷7—kąźĶēawŽb K•­£ĆF.ąc[F.† W˜¹SčĖ\Ó¬#« ÖŠŗ·Å" «ßl ½(_Ē'Xp—zUämbc ®B°öī;žSJ³ĶE-]“’'’N½śœńL°;i’šģ¤7%59Ž%õyJIšB‘Ą³DbRļOć{žOŽą ¤Aā”AŸ=ˆGMžļM<Š“Wń4łŚˆ‰^‹‡ž>LbÕ,er«8ØĪcÕŖ>˜ŻO²Ŗ€·Åė§’‚ąUi mbx=TUøx@'\?xq&öæH{Ć 2±Óx ÕC~ņļz9“%^OłWÅŚÄšśČæ°xš”Įxē_hüzČæx¼nó//ĆĶYö-{aaØ'ŠŲ1Į2— Ņ2)ĢݤqR”®—9ƒ¤§œi[žnėĢpģIND„ŽjkNŌ`ąęå o÷ėręŻī†ÖīDÄŻ«x’9*?܉l§÷Ö>@Ę»~$Qj 1ńqGATÄŒĒtöÖEÖL[D­4\0>•b žC*Ķė¹į’BG¢ņ\ZēłŃÜ<ĶfQŠd„źšTķŪS”ļ3jźę=?ŗĖė=¤ņĘĘ£ņŽ»”7§Æ½UĖĢ9ķĮ¼7}ķį¼7 ķĮl€·>EŌ¬æęā`mˆė7bWFƒcYt²–† rrdļ?°zu°2d?žŪЦŒö¦?‹¦ÖĮĒō‰š>ō¦A ŗօģˇ:ÄtåE‡ąe!Ń!ʇ‡¢C𪐠čWN‚, ™€q><:X²Gž,ÄüéĖ÷tUæ"DÄĶéĖD>‚€·;“o»"nN_ĘŪŻ„I=罊w’§ė.Ę 'Į‚µ~õžOŁĒ[æų.NŚ’Iš{Ž䔵"Z łÉr5Š ĢžNXŽXĘ ŽśÓÕģøĄ¬?ądµnė<›„ɏ"‹ÖŸé‹¾OŠ(>~*’š)č[–”q|Ź”3ę<(Ņl7~E™%Œ',’Rä³X°•¾ė©ŠśW/_Ią±ž”}äö.,lhŃ@>\oŻčz°žE뉓łµå -ią©oóķķæ2ĶaJߣÕōkO¤}žģ…Õ3|G ū,ŁJų]Ļ‘­¬½Æ­žŻkEgļJōćķ½MņŹ,ą”o’W¦h^ū wģĆŅ/lO?ZķŲ„×[ŌvOŻŽÖ ÖŚ×6„·įą`²|“µ·IŒ‚Vŗ7©“%JW»RÉnuŲh„cW)õY6Z&X{Ū­ ³"o×ĒŪ{›Ų•Yµ]W¦hØ]ūQĮ§I±ĄN÷©+z.ąéžų‰>ŗ*¾š…Z\Õļ>-ŽdŸÜoń­Õ»2Ģ”Nė)[4‹wķf€č±{³­wbŒ–=v_vĻ-£%ƒµŗõŽ [ąg¬ZY}›ų+ć@åļKü•5ņƝ Hæ¼{ +śU?‘Ąwņ‰\2X{“d|Ś»AßÉoļm¢Wf9ŌN¾2ECńŚĒˆĮ;či“¶'Q惞DŪńĆ_P›ŪžeI=Mgcó­yŚ4‡9MgŒŃĖ3žHūŒ.ū£ųG‹ū|®žgģ– Öģö‡ē[A™½ē©ųĆ@md š•*k42ĄŚŪ •»źĮ”°`÷ØK«e»śi“ˆxģ’,R«•®8ĖŪ?dԚĘņżŸ:nÅ®2Š!f‚†A6ģjŸŪ$ƒLĘHØjøyœri„U&‚($i‡S¦‘JŪ”IPčOŸØß<é°ŃOōå¹ŹµU5£ÆŠęXßĪøVžH’„ŗć`&9Ź^˜Hųi¶Ó'#•v“I*‘Œy»õǁvŒ9QŒ63»”uŒib—x•øō”Eź¹wÉÅĢŃĮøģ‡ŠRźnÆøPźn6ĆAƒß5hŅ+ŚŠzFf—€•ĄhI°óŅ%KZ]å.æØõ}~ŗaΈ(”īņČŲ6µ[Ø»ø … mVŻB&”¢Ü!T\؁ĀUĀR‹ŅżˆQ-Ļv—Vō/=0wL”HwśÄ‰Hw’ŒŁ_Md™¤Š6s‡Tax=ÕDÖxu!”w¹y)$ōn/‡E‘Łxˆ"³'.ŗĄŲķĘn:#Pćąµ*3Ą¦ī*3ˆyĘ)b%2³‘ŽGž1ŹŻå™źlyĘ%„Ųæ8Č3tF ö•gØIµhSwØŠŲKž 6}€z"ĻĪ>@=ę²OSMŠb²Ķł˜B§GÕēz”F!ßī‰įrš‚\÷°&ļģ-ĄQ£Ģķµ’]µÉCß Z•ć.ł¬‰9O>NÉ(żvyßgčā3ö. Ó6©mģõb!ć ķ²ž¦Ń‹Ÿ}TUf°Ć)'³ŻCętÉEOįģö‹ƒŖŖƒĪŌ¾Ŗ*j5™6u×d±—Ŗ €X‰¬ŚQéA›ÕĘBw‰¦Žę b³/2J³]žĮk¶‹ĻŲ0ø‡MŹE»C¹`Čølćr=ęQ挊čgĘ<"ēĘ­³±ŒöIØ éņŠŠĄśüXH§±Š!¢š½Aż3#"`c²{ŲF“ėĒĘ8ĻBė'§øĢBgśøĪBŽ )w{…ŗ9…ī% a k9cŽ)g'°Żg”į°šZÆ|‘fÅÅ,O㲯¢łüMšż¹\ņ$?®6k]ŃSē\Žōi*±dķMd+ŁĖ7øż—(źP^OHÜ““M݈öx-yqŹžPŻņl™†āD^‹q¶ ³LšPm.Ó_¦?5M§Å;6hø“€A!’Ė%e:&š –ßóÕJ„g'=ͧÉ-Ś[ĶA7š¼5”Ļ~1/dpy Žź–3ł mĮ1Qk“‚ć&}—Žl2 8Ō-'f“f„ L2 B¦h’0łī`m•Aa¢n91«“c”A²£H ŁžiĪć\ŽD޼o²tłFŻüø® žź=퇯Ž}Ŗ,õ+ķ„WśžOŪ鄿Č3yi^żVš-•ļq_m@OgAĮx¤YØ ½ ?_É®Ō<”1ÅöUƒ…łģ·ßrQüFĒ<Ėų{Ŗž±:1`Q«ü?ĪĻW‹ÕY"ŠséŖ’Ēē"9§ŻöDśLŽõ¹ŗė™ü’ÄJpæ9ēe‘†išGłīü(ˆyžWhÅĒBŠpź=łŃr‹„ōrõ•:öŽž÷ˆ@”ҐōķÆŌŪógĻŌæņ>śd€œY)h{~3dŌMĻėŽ«ģ8/Ė‚BģĢüŗŗČw™>_`–¦±łģ\ż»*g±“²1v]6Fł[}”ćõ5 ’^ęB„ękõį?žyōPK .3|QŽ6©”  C briannesbitt-Carbon-d046377/src/Carbon/CarbonConverterInterface.phpUTŲ]Ā_eĮNĆ0 †ļy vŲ¦i»Ć€‰2¤Ihönź“iR%ī*„xwÜŖCHä’ų÷ŸßŸ÷O]Ó³[Æ ¬įŅpĒž@ļ“@t A©ŒA%ū5mÕ;Ś—vω1Ą™rÉ"°/Ēņ“Œ²µ±}œ­Æ1MA®÷lģ>׍† <[ YGS‹Ā1l ó„Ŗ]™†éßŪ©8žßcŌÄ' ˜”ā,‰Ė^؂„ю²ēŲ'K:ؚ`w&`KYńo«ÜÓkž ]ø„SJNŪŖóķ=[‹®”Tū5™/zŗ¾Tv])ŲZ§MĘ1sł/Õ,m ŒŃĆ"P#õ8ō™Vwó¼?,ßęPK .3|Qˆ‰ p‚: briannesbitt-Carbon-d046377/src/Carbon/CarbonImmutable.phpUTŲ]Ā_Ż]ksÜ6–ż®_r¹j¤”,śwj’ĢŽF²wT;žHžlRS•H“šk6ŁĆ‡de½’}pM¶ŗ©&q²·?$V?ČsīĮ¹xo’s9_œ~ńÅū‚]Ļ£œĶ¢X0ł’%Ļ –ĪX1ģœg7i"ß >ņ[q"æK_? ŽŲŸ³ˆ'ģČo¢¢`ßŽŠŸJäŸiq¤‹?šÆ¾I3u”YĒ,H—Yt;/OBGHryĖd–f ^DirĢ–±ąņ½»HÜ«ß}yžśŻÕkŗ”ĀWĢyĮīyĪĀ(/²č¦,DČī£b.?‘Ųó“Ģ!o*°§ _ˆ\ĀÆØ|spPęÕæĪxTäæą…ųF½O’ŗŽār±( ~Ææ"›É«µßž%Mä;U0ĻX-$vöž’‰O…$)©1Iņń嫈~ĖĖ" Ó€ŻŠDdœHŻ<°Č@.Ó\dLŠ%?żGÕ?-³t)²ā©W”lėėłƒąŁ ]ęiļß-Ҥ˜÷žUČz’f.„ī/Jd‰éż³\iø[ !żŖėŽŸgqŹ‹ĻTž“Ūöo Yøņ‚/–ŪÆßū„”HoEI ”)?$Ń'öz™›”Ž«P$·q”Ļ/ųóŸ„ųˆHd ¢œuO—ŒöZߦ7¼|žfÅk,F‚Ēon2q)cƒ šH¾%ĆY"lAUFÅ…n=†Ö ć4ą±€ĆMå0(³LH·ėŪ±ļϽ¾|ūzXHæĒB~¢X‚ėŸC i»”ā# »µŠīŒł©Š"–e_gg›ūmļ_Ż£|Öx½”AĪŅņvξžŖ7 (Oaއ¢ż,^H@Ԑc<Ņ,¤ā_¤ŚįŗÉ=4dP^^ż`…2¤ äJŲÆ^½źHvž€Xō+LEĪøģĶf— ±ĶtW(3^Ęõäd÷GvYś§‡t6ĖEdž¼(Rõ7Ł]bę2VķĖY–.Ų‡ėóXßŖ¦}īėĀÜÄė_dß…t+Ö¹ŗIRŻ ®:°ėHė+_„“ŖüŖė÷ö’~ń8ā95žo„õ"<Ü%é€ė“/Ł! \•‰¼śQ^™·yQfōĮp¬²‹ĀśRƒ’­§Ö’hQ荔Ŗt.—Õˋ߿śņ„®c’rq#2Ņž*¢cõ¦ģģ<+Ø:JCiHóĖŪō]„«“ĖÉR·ŃHŲć”ņ‰:—4ߊ, #±”|ĘĻNŸ-ĻŲįYRČĘzuyYާy±zCŻ]¶ƒļEŠøß‚g7’8|XŹļćˆ<;{+9¼»+‡’noĮ”Ź;g«Ć;Yy[qŲ”n[=ķō7Āh ®õzœ×āŠ„ō¢|Å©¼Ŭź(SŸ¹Čx’Ē*œ­F¬:×}¼c²Ŗ±aь%iż;ęw<Ši6łīvf’ž"²”ŗ” ęņU¢>¤īB¾$Ž’öļƒš¹Ÿ€”ūzė(Ū.ˆĢ”"ŻÉĮö€įy§zøž‹ žY”åi&+võśr՛ī'ęp8VxtOŪIžźÕ×ŌÕYģÜĪ?KŁwŠQlՕ©®«ę¦DŌū•½ō$Éö%{Įś§¦P<ĖŖg€śŗė0{ć d.3\«šU×µHρD’D%°Õ”ī­®»ʛ4·c sš(¶|IæÅjSĪļdퟫε„F/ŅģXÖö„ Š’āźś˜Ķx,©$–ŻGyŖEfĢEš1'ˆ­Įchu·ó§-‡²Ą ŗ8|ø>_1P<·ŃdÆjćčĢĄųPdž™AĆ0ę7ōe®i¦(V!ld…r!ŠyVæé,žQž”°(Ļ©xV„s$›sULkįOŲįŸSš@PŌōHł/ł9u@rĘ3Įī¤"įÉQnjV–ŻÓܒ4yŃā×÷߈°OÜ=NUa–¾Yę{æÅHՌōø]#©°ĄÆŸŅ@)œ·²t œ†Īh¾®ŗį¤ś™ŒG¤‹t ŅėRä`ØŻH }ĆPaŪ õ¾ŗįøĪĖ Ų'ājn8ė›,ņ[Zgź†C2€y¦ģ-Ŗ¹¹į ¬ AŽC=ōöłŃ,}3EśsB‹žSNgß1śc+¹6Vż\Uż.Ŗ¶ęŌŌŅs–ņ£v9SWgKžē"ßó|r|h¬j(2s`055c|ƒ)ö^ Ö$1’€…6}>Š`S㣠6ģBV¶8ķl0Ŗ~Ē÷×°„±›’ Ž{!Ų“Šī֜"sMŒņÖšĘ!=”īRMĒ÷–bļµīj‡˜ IĄB»‹>hÆ©ńQžȇ ¦ēÜĆ,¶«Įō,ü XĢš‡(ŗ›˜mź“!I@xh›éo 4Śō8)« ęDf»Rėd¼›M/Ļ™€Ł fkS‡˜ IĀC›Mc Ł¦ĒI™m0']³YŠk;ī^³Õ{?LĄq:]wM”ųƒź8™Ŗ¢«æ6ø¶›$;SåŁ°«­˜Ć*æ=¶bŽI“°"ˆ Ž ԊÓc°bUi>°ß:AĶ@†A  Sųč C‹ŻŌé7‘)jÕó}!“vcTĶ0F6$ ]ÜĢWø ²REn8+õ,FĶÜöŽÅ6ĘĒoež»Ųmź˜'2@攌śĘŠē2“ć¤Ķ åDf;×ĖPnŪÕlÕź‡ńŻVĄ_ż¶Ęb7$ ķ7󕁆› +åøį¬tWŗZXqŻī]éz=Ļų®kÄĄZÜ]»gėōAi—Ŗ]}kp7zŠÜL/ŗ‹›¶U½æsƃڤÖŌ=æćq) ÉåJ×Ø ŅB+_ŖBŒģq.ŠŸįaöf§ˆUæ]7"6Ūm€ {± 2ķi“ČīĶƒLkēżd8µ[0ÆSĄ²P\Ąƒģ°ō¬vśō’ÜŌ\2b?®C!®vmuŸŚĄˆ=ų…Ųģ®ė±™ŖĆģ„-üŚ-ˆŪf÷­! fµ³µ‡ņlžĀ0ū(ĻHĢfšóņģ³óņŒĆ¬ĻŒš“ėźÓ)`Ążōž°ĄUÖCŻ'p=AEø=ĒŻkGŻ?pPŠżšę'Æf¦”€{ŹćPąŖØ ƒīø<Ž/*žņø+ąĪóø›2ī!;ī6Có0\Öžc/ķŹŹYź•ģš™Ėi™ę!½äsTĮÆ©–9m<¦’Ódł»Oéwa„ŻDŃŽŠĶĒ_`ÜyyƒWāŖ¼O Ć«1r¬D剟¢bžĆČfqzo­ Ņśˆ¶Ō@cāÓ2Ž‚ØˆiĆżsów”Übl-[Óą‰U®‚j‰t•3ŹX-ūŪĪY!UZ¦e‘ӏ/giv…”HlœŁäl_A£ŌN­éM˜ž~¼iM«'ŅÖEUéł.eŪ=ņgƒ³e¾ž?azī‘?qzN˟0-éµ'žÄiY‘_ĻŹŸP=÷ğX='ćĻG³5­‡ØØźÉ¶# ʀ׳•ūZ8ńcx-ؘ§EE ŖEå—ZŌ¾@v┾pŅ×Uœ”½ųĘq2<Wź,wœ”j°ž»r ķÄ{ņ¦}M ķÅCŻiÕĄĀ+źÉŸö¬”ŠB hW";ņ{åQXoaŠE)ŗW…):5";ó{ćQho~jE*ŗ7…*:®­B“Ÿ ”J+- it|Z[ŁÆ±0?×ŹŲX:hB`*ÓøÓAŸõõŒ˜¹cj1źH†ŸÆĄV†h.qÄ ¼T€FSĀ0r3w̔Ԣy“.ŅV ՎÓWk{k“ŅZK% yĆÕPm°ńŌØ9!ÕØ[X.ՐåčńK„7Ģtń‘¼>»€­¼Ńžę/Gx5؍ØFĶɅ7œŖ”rģŚ*M̳ßĘŗøŃ*ZÅéä šćEm.²-Z]ƒŒ«KEĢĶÓ`ēŗŌ~A¦°)łwÅ/H]¦äØ.žż²¶zTæ¬ÖėęčŁ5¬é—G‹ķ\+“.Ś/ćźRsTæøÖ„ö ¾~™†_Õ/Žü‚Æ_¦įGõ‹æč]9,•Uķ1uÕcĄm¤Y»1föŠvŚdĮjRµÅFÓ¤Į §I³!ęT“¦O` Ń>q3M°-jäP#¹™ß Wķ4§“qŖµ¢ÓBĖa“!żyÕnZNKWČH¼[ķf©Ą•õēWqœ²xĒBŠ.‡MŽÜKĻ"f`Mٳe÷ҳe§źYč¾SW¶åYԌɩzŗƒĄŌ•my„ģÄ<«Ļ·‹€skØčÕUGļŸŚĒV†¬Žęs6,‚„JÜØ‚Ō¬‚T>r+HÓ!Š‘¤ N:ĶF1ąb×Ar2ށ—ķ1‡“‘’2”Ćāj$…ńų‘P?—¼‚}jÕžĀĖźĻ©āHYĮ^Å“:”£;S—µķVP‡b²n… ķL]Ö¶[A²NŅ­Šq©Ėŗr+pģ$Ż Ō™ŗ¬+·e’[/DĄCųʵP_u¬Īźī.Vēh^—ĆÕPkœĒS£ęäbuŽS5VŽnZ†õ†“®±&ÜµlˆyœŒhąõÄŗĖ!i¤žCģē°Ø"7-óåO@•Üµ ėP«Ö^S_ŠFjŠu)¢ ÜølĻ|Š~Ī?¶¦mŸ‚4Ż3Ÿ¢Ÿš­éʧĄĶĖöČ§ČŻĖ¦ēS ¦{äS¤¦ņé_KžÉ;‡ ØĄžÓ\u¤ACŹĮ$CĢŻ^*lcź±"å`Ž[=žĄuōĮžpŅ6¬LĮé%˜“A ¼¢`‡¹dķ`ĪȊ®yÓŃ÷ęQDŻķ`HS«f^Uo>Ešv0’ftU×¼ŠéHģWĮÓoFWuĶ«U÷Ī«ąŁ7£«Śš*®ĆæW^u0łftU^Å©ŗW^u0÷ftUe™żIˆųŌļéŖ# ā#7;©+wƒx%؜¦„aäf'u‡J˜BOzØ<1≆”ƒ±MCĢm9ĀźQ9cē7šz4Ķįōō±»GBv(,¢…ļ,–v¤`ŠōŲŠŗ,Jx= ;‚HĮōč±+į.Šß‹,Z½WæōÕ?$E>IxAvūŽ%e3%όEšõŅēGQ”YĀxĀ"é[Æ„¾ż,K,(³LČK+kKJ·ŃH˜¼9;Ģ‹L:fćZ²bņĪMśˆZLš`Ž ½'[›ģæŪE!š1Ī ‡(×÷²Ė"Ø=5§”E`ūiސEPzL)‹Ąōš™EtŲ`¹ä’oAž”Ł‘E§$ōŲ‰a8¤]ųA¤“E zlĶ"tõ½m‹¬BÓŹ"¢€Ļ"Ų¶Č4²ˆƒ¶ˆ·,‚m‹L#‹8h‹øĻ"{Ūń›E°g›Łž2gŸ@°ēšķvœ½Ķ°*Ųž.‡āƒŽuŽYĘ@' õņ•1' 7­ äł g–'µ"ȳAW ®sAÕ1R…+ĖZQ|š§SŲŖ°µe”‚µŸyĀD„ÕØŠŚ#óö|ķ3«SĪķ³ölķ*Kt«mļ)¬WV§›cŲąØ2„­[ņƒ xųĀ[~P1id­:27\Ąē( ~nŸ.œĢMčxnļ%lü՚Ęāæ"ć`.‚eü·ä :-xĖ ’FZP’#³v™Żl>ū“€C¶ĖL>{+a°›Å‡aƒo1Ų*°%3Ø@ķk‹AŤ‘“źŠQ‡4)ęŲ'„źŠc :ŠĶńĻHéŖūčP ԘĆ(4鱟‹Śj°mÄA…j_ŸˆŖ 4“šČ ŻGĄzŻŽ}ŽĄī!°ć‚{[au°^i#>a Ć–LQ… š+|eŠ*,\QĖĢ? | +Ž”*ˆ ¾ÆAŒÜŁ «Łjlš} [¶dØ}ķkؘ4҃V:: ŻGŚv7Ą%t鯶g ėAU°Żw Åż„Ó^…m#•:Xūł„ÓD„9Xi“Gę ģńöētŲg ģс;Ąao-¬ö'k ”„ŲńČ ‹lQĒ ™/|e‹*,t±Ņ=Q[Ā KvĒśbfiė“uEu÷“˜1ó™qZŲ±Œc„Ńb÷³“-'h«ķcŚhDfm~¶.Ģ‘ÉāŖĪå,N¹ŒĘ2A”G’ Č1ӐeŹ$(ō»ĻŌožuėGś‚Ҳ F­©ź]© [t\V·3bĖéOŖ;§”9KIņH³­* tću&įØBŚ‹Õpš›õ†Žų@D1:šģ\^ŌpdнWNŌĻμŲW?;ņ’ĢćM©‘9)[o×Ʌ­·Ó²@4ˆ7ōdntč;Ģķ92/yA®ÜHs „.Ól8YIMÕōÓösĻH¹z›FCkėnWo#5;“Āö„\{‡«Ńø”!÷[¹P-Xšć\5cßC2Ņ+J¼4ūŪ™Õ ÆRśé×v„ōū:xŁĄ÷ÕļCĀWĻĮĄĮļzęŗ—~ŗrdµś×ƒ‘«µÆŅS½HDktVŹą]Zį ŽEĢ ?Ģ(ń“ĶŃįļ°¹+ģøå {=„SķĶŽ0ōC8‘æįóÖVśj“`VķtiÖ·Ģ==“ÓEΚÄ8ž9TO³āģ&Oć²Ńlö&ĶžR.x’V«/餌—wžJPY{UćR6ó5’’% ?”×’­±T7¢E‡ ^³ßU·ü[¤”8’×bœĶéĘ,Ł·Ī<‹·zÖρk{ֹ޸Qdżé’ł“’ō£­ž?~%}ķh0¬ž?¹ÜŪadŁ^ß¹=Ē aHoąc;r}ÆmMFŽ ß}v;zļķéŃÉyēA~ŃŠŽ¬;;“śnīĶ4rśÖ įĄ=ō§Aρś„ģö7ž=vB@_‘ņĒo¾™üŸķž™ żž‘=|é9žō›xš£ž6üOłcą‹śŽ•ēFsß8§‘}3rę?é}¶Gn’ŲŽJ?ūšŲ5÷é+ļ“ēßyæ8QäeŸ\)ūt'öȧ#žtzš`ÓuĒNņ_ša©ÆńÕˆ/łõß|O~ógHĒ广ů_:ƒ‘ÓC”Røu‡'žSŗ’ƒŠ»j$ “Qé=Ŗ©ų«ĘOŁĄŸģiä÷żžuėxN`£ŽÜ[æ‚źOüŠ ,0/ųõWe?MāѽEĶJ|Öī;(żąič—z‹†„žģŪ÷„ž‚•ŚõĄ6K=:=ßė—„Ś J’ŽOA~Œ|;zĄYÄ»µÖ"P«0²Ē‹ė#‡9ÉõzMf0u|±N&~/K&ƒĒ»¹įšŲ¾æ¼wœOĶQB$@Ņ8»ß!@׳NÄ „ ‡~pb…Ł77óŁ%j€œäÖŖ|#œȑ5į>i>ÕBkä÷ģ‘ĆØNYśŌ›Ö(³Ž]wOĻNʳķ-'’sŌ«®āFeKj™ŠĖU¾ŅXfMĻ#Š[1CV}”ü󄞼ć±ć³ , üéķŠz±_ š+™,²6 ȅąZš”€ŽŠe÷z~ŠG|awĀŁÆĀF“fq:ķ\TĘ«³+³bqķæ|Y ŲŽ±.>}ß -6VƒĮ©‡Ō…­ ±µź;{:ŠpgŪ)š“Ė™¬?„N4;PżĪDčØżžæ%ĮĆ<¤<­Aą­«īQģĪČM ‰ŻXQ»7ąmóą–‹Ż†(ĄMģŌ® qÓPŲ>ˆ›ZLōrØüʇ„ųĄFŅŃIXĖDd3pģ~Ž”Ą:‡ļX-܉v¦ĄŽŠóĆKłµMü”v°qäĮnW F»oH—Ā '_ŽŁ¦ōĶļ^īģŠyŻ›Žo`?ÅÉæM_¦,²ƒ—Ųå "Ź22<õ8ݾ=„‰Ępė~v„F&£–;°<_æēbĢļ³ķŽ0ŅG@½Å±½Ū)ų\„Ø„-Ų1'ÉqUɇ•XĖśģ÷+N3Nͬ*Ph±Å^ZIgœ'E»RĎ9Qś+£‚‹M‚ÅZµr§œ«/}Œ%õ±Éõß<’oNąć¶Š…Vų(4p%¶Q»HÕŽóŅĪo(vŪLų¼Čüäį £,ŒhTĒAl8żj…Ņœ“/ĪåßWÅ`ąa„’€Å“ńąōىw„0ŁĢTĘ@ģÆ87ƒū/_ óŸ«å!šÆ)ģ Ę((9÷ *eUøøĖƒż§×ƒén׌“ŹM}§g÷Yc~tz# ¦+…Qę½iĄ„* #µJõw<Ļ²­ßt,C-Õļ’XõCÖ((|ĄNF”Hڟa iŪHõŻžłAÖĶ©ƒKčq§Ū¶ö–cH īܰĪ“³āÜ:½O!"•E3i¬głĻ:XO£+ĪEX_ubœéó1Ī&šķ%2£ "ĢõŒB鰁5žļm&(*‡é’ YĖĆŌÅ1b%ĢøQY$aĪ]¦rŠj„wÉ5X[cÆgDś(1kjT1€ƒYš4\IÜDt~iøż øu§NȊ\1n‘®$rļ¾ĒŠ^1rwjø²¼NVęĶį®$vÆw™Z7 įŹZ«<ū[ēB9\iģĘnąZ"°ó0“Ź+S.. Ńe¹a‚†-ėt@°­‰†Næmõ(‘ŪĮēßY-™;.aØåh£$±Gb2&zY¤‘#ŠRÕz0öĒšGI¼Ļ/ŒH3ąmy€ż^’‚·vøb`ō¤ h(mYŗ”бųć Ń»DC1I­m(|H3ą- Æ`(«EJ ŠPŽa¹ć²“҆‚ ąćŲÉ1Ūź^NZ„µĶ„ēęh +)ļ“ ‘¬žd#՜.<ÕZśZBĒ^c#Dļ×“ŌŚF‡4ŽĀJš÷ f²ZT  Eäü2™JYCYĄd*’b©•X’ŲŚĘ‡6 ęĀ\Ä fÕØ “©DM‡rģ—l4"±’‘ŒFR¼4£I[ŪhųŠfĮ\x¢‚Ѭd4•Ø+M/š¹|²ņ+¾łühĖ ’Ķ!»²ÓŻ Å Ö.ÜłŠW ~¬Ņ곂ōČ%Ø*=ڤB¦Åč+3©cR|$“bĮżĘ&µjōŌ4)„^˜ńøĢ›2,+ÖˆK•ĀŖ(ÓjŃ ŌØ Rž"2)GƒŹØlŖB|xó .”H>RAVŽR¤jtPœŸņQ—¼Ķ”I°ź/m›™$¶~“Ÿ mĢeĄŸžØó_1*DŲæ h4G"ešĒjŹŹÓ~«Q$/k½IQ[ŪlųšęA]Ų|¤‚į¬d9ÕčŪI•ŚĻ`=巓ś>Įcķ&5Õ Xvū’&øĮf’ u6ģÕ^R=Ui+¹zŌȝd5²&¦.™IiOa ļć¬}¶GS‡aZč8Ńl®3„_)ÄöEƕʑE~C'śĄĢŹEįČÉJviĖ«™8Ź«ė \‚Ń4Bkd13sqH.Śl!‰w[—1’P•ŒŚ(2cȎ"ˆś˜™‘‹Aqń“O©źŪ¦ŹÜi€ć2ģ„ ŽŖFߢ'n1Mp”5Ž£LŒi„弊FXĘU-Ł0]$–‹ö+bI•E®—ņhÆ–‹×˦Xʬžė%– ÖĖfXŠjŲ˘‰tÕķFØ.c—ÓUš“x»hT¾ćaRމt Ør1vįŗŹĒŲå ŹĀŲÅ)&Š,c^óyš ŗ”yµ1Ŗ¤¼Œ]4Ŗ‹ŸWy`)ó*'Ŗ žWłtuįó*3Ŗ‹œW£j÷ūés ėk·‰öūāŲÉj!Fhϟz‘<< 6š˜Ö4Äā8āXV6¦Ė<=Ķ£³“Ҁչ̣LĆé 7·;ӛår[ŅĄÉm¤aÜVŗżŽ†ŸįŪ‘אóœŗ-Zøų1Ėł2¹=7Ż[öKgf ē™ ±”hŖ+?)Ź:åÅi¬DrŹ«ŗł°ŖÉ˟F"[Ž} üąĘķ÷ÆŖ…™T6]"¹$VÓʘd¶«E&§Ģ8­¬–’ĢĪ}–™qÅķĢ ²ŃÜøvĘ$³·3.™=¾1É ?+lg\ņRd>®1Źl…ķŒSfjg3™k ·Į؀"µp‰AÖ‚VlE‰d6ž;7æQy–ĖoE#æ•pó[ė7ßF–UæŁvD%ćN¶†°mʹ%Ęj!¼T2J¬† ńjćFvI6Vo­dÜɲZYe7†[jK²³zt2JÕŅjśk|›Ł•·5&O{UlGj+okLR[[ćŪŠ®“­1īhWĮÖų¤¶Ņ¶Ę(µĒµµŌ„¦‡ń¤ƒŌ.~yQÖźŲVlFĘ%&žķ;7ÆQs–ÉkA+ƕņóņ”"}÷‰#§‡®¦-Q±YėY[±b›×”xŌ‚›ŪØK嶤a9=ĢÜFæaęU3~“$`.3xĢY|Ś2¼ŸÄµ*¦Ą+3ĒÉ·Y.Ē5|מ 7ĒA;fļc5×q™8»Dg­mÅ:žLyåŃnŽ£v,™ćš ~gē8Ķ€©]g€ĘĶ›„Nęxćk'³gøęB^Ž‹}ł¼W¤,āTp!¼×zĻ7Ż<¶Žs\¶–¦÷|¼l½gäżō>uӌe¾o-Uļk÷[¦ŽĻ\čįR^Ž ½_>ļ) ™ļĮ{­÷ÜóżćéżBęū…ź=÷|’xzæł~az/*UŚLӎņs꒝¶R VŅɑõ>ŁN¾+g©|7čąā»éą°óŻŌw¦$2n}ēK¼Ņ äÉ$«k|YqĢ’ć¶vB¹$WפŲUŃfJ([žĶUO—HČ®yVæÕUĻ%`–Žņģ®6©\Ņć·¼Ś i3%˜}5¶×<ūeÕlAz_ķ5—Ž*Łć}ąU”^Āöx²ĪVÉöoÆ¢ō¶Ē#½°=ŃaĒeˇ@…ģ)˜KŒk°v ²bĆRķ€XƒÜLG=Z:Ó5|LWöĄĻtSÓ#œLgŪFJ©°]Œ«e l»|n±qŪ 3”|b«eLĢJ(ÅĘĖXŽŲj.”÷l×ć˜ķ­²—Ć-ŗåY\MRłDĒlsõ½9Ę(Ę*Š.iu,ĪųJYScE—“:Ń­ŒÕ1Ę/VQt±Õ±]™[«c ^¬¢čb«cŻc[hŖĶ{«@ōÄ^ź…GĪÖą–qįQō’ę½0ČĢqŗóø\Žk*ųo°s<Öq¶B>¼:ζYdņUņ©clūxn™ńZ 3™|2«cFĢ ČWČgYvVsŃä«äĆki•}n¹-ĖÖjŹ'7^k«ė»±ół ģ÷¼÷ńķEn_½ńžō>®½±ōYq{ć«č³öĘ&··7>¹=²½żejšo¶­2Ŗįæ$Ģ%'$ģI’Ž}=7ĻQ…–Ķó˜ öœ ~žzεŁeÖs¶ż”¤“=„¢’PŲ¶īÜRc¶n:Ł3*Aj)[ćŲģ.ĶÖź®žģ Lr«ģÜpKniöV—Rö|ŠG‘\Źę8œšÆĀęXÓ)VĮę8$÷UŲk6ÅcŪצwåmŽ=™ā±mŽKr+osģ¹esļēw…Ż;„¹Ä`Ұˆ »HļŸ›ŪØ=K嶤av™¹-õ¢ĻX­[éö’+£K2Ųcq’~ķąä¹Ņš%WHē湩äģUŅ/{ÄY„2WäŽųf<©N×+T媈,(7ĻY*r5 ƒ‰ēŖq•Aöøņ;ńŹ‹ÜQkĶńśĒh*?XŽt4j[$ *ņƒ 2øt¢iąY¶g¹ĄūfäX1ą šĒVo&£"nŻĻŽgĮŠV+Œ ”m!] Ć‚qĘšĢ ōÅ,Ēī ĢĄļĄo»·žš·;°lKRą†b¬źöĻS!ī±ķŸ©:Ü’ģŸ‡ēm’L<_“ż ę0Ķæ/ūē«„ĶR‰¹®żóUĮ®P…¹®įšńœ„s2Ųמ'ģ!~„ė̌„żāę±Īõ’ńģŸ}ż_Øżs®’g’ģė’bģ’+]’o’œ}_švŁ©gśœ=_ŹuŲ©g.œœnŚ]§ ¼ÕˆYm×Ģé³,[Ÿ5s¾žÆ{ŁaĆ^quw¾Īeńā^Ōµ¬ī‚ČĒéNĆqM(ą®7Ž”Ó‰ÕœXņ5ZøäCb!ņmjįœż7u:­gߜ½7•}õݬgœ\ī4źpZ..+ŪnŹeò‰¬Ūō„Y6qĮ°k!٦VĶŁ/ś°I_īzFĶŁ+Zß©Ź?­gœ<ī4éĒ]}ö“ę†<6,™ĮkŠK³hd‚aŠ$Ö¦öĢ™ĆÓ,[ŖžAsęļ”É”Ŗgœ\n–%UīUŗ)— ›&v|«4qĮ0j!ŁĘ»kߋ†œēgo™›kūä a2ļLłL{ė„ńŁ$€ū“¬)ŸĶ51äė<'#6˜k!ܦ¶Ķy?øń‚zÖĶy7øäezęĮÉėĘ·‘ĄŚ’×†+¦0Zł²l\1°r-ā¦vžĮ±Yćg÷o‰FŽųs{ęHÆyprĶci\6šēöĢ›rٰmbĒ×é™ Ć’m?c¬=Ś“zQĶcŻŃre‰j†”9Ż“ŽP xϽšsڌ„ –|ē^’f8MŹ·©…s6Ej^A½žs6D*Y½ž‰p2»yĶó&4š0»d1óŠv®¹Āgé˲sÅĆŠcs¤©r5uoŽģ±~Ž*WC÷ņ]ėēvrń»y{Ęf4pš»|ßÅé©Ä˜ÆĻą ^¤²S…¤kŪ|jѧķÖ`äŪ@’$pzn襂¶%жL½^$¾}Fļ<ĖeĻ%žLņRäk¹Ńīƒ #NăIĀKā5^5"B6*–O`ī¹’ØeUŻ Õ«DG5t³y^ßE¢ŪsÜ/s­#¹HTł»0TɆÄiĖ Oœ=,hś‡^Ld<dł²ą7Č|B*ā˦č ÅĶ’—½fɅ+ß²0\Ɏ0»ŠĶ)²>Ģ6ZŠ B nĖš¢CŁcžꭐÅö˜GF%lÉb‹öČĖŚ{䡔‘­‹Ā”쇭—as”w¼ ‰Cd»/ĮZd‹¹’X€-ęŅQ Żeķ\š”‹ÉĖÜ‹äAu);—fØ Ÿ_\ĮZ‚Ļ/ī#-jė"ļĀńŠńdˆ½@¾4ų÷ł”TE˜KŁ‹0ķX\“#`C–m&Y²dKņŗöāgywyA3‰ŗ7æš™dadaHƒ}&) ¤*ĀĖ™Iš"ŒĘÉĖąćäCv 3ISdåb®OҬ°p1×GJ óKŌĮ&Ē|ņX¤Č„¾P*ÕhŽR_HMu¤³ł_Uõ“Xö9]øģó"ĢĆä#LÖ„2s¾Č«,•M/q–Ō‚§—ÅŃAfZ$īÅæˆ”ŖēqžwbiŒ1)/‹ Œ”[.ö.[qī!zæ÷‘Ł­‹:¾‘™Õ ŸF†8ɗūާ€’Ŗ/gļÓa:aepŃé²KŲū4E–lIŻź[ø Ŗn šJōKB…2Ķ"yp›f)•1fRųcŒŹĖāåĖk>Y ¶:”Ŗę67Å9w±”ŁD!ćĘÄ<-:0Q$—jš4?0QDN-¬ ` X«š«ē„'ø1ę˜gŒ±“Ķø;ǂ癸KÅĀę£aŹbē™EŅ"-¶X.¼óL19µ°^Ā<ƀµ°ZNVZ-?ʋžgŖc,M,ž„C?ˆoB4œcw0xķo¦cŪ [źQLߚˆÉ{MpØĀYæ8!Üh  /¶h¼v4¶£¶µ®\·Ę~ߣH–m qX+pģ>ŻwćO&õ#ægœ-«%q±x‰ü×j±šHŻ8VxgO&Nk£ 'F¾wĖˈLNą0«Ķ’Õ„3²#Ч„©„p•8²āeD •XEF$T¢ėŸūwŁQA%hĄUb‡©<ÜØ +Ē”r\ ų† ©¤4ą*1$©üؤĖę²äOŪö4ņū~ļükūW–v‘œ/‘ƒ1fXжžś^Ē \{來x~óæß 7·’ėæčO¹hŻłAłķOŠi[ĪšxäķsĖļE¢y.½°MN¦7#·gŸFÖłÅõßN./®O_æŽīģžqö™?_uŗ×ēļń÷½Œß/ĪO®?\ææø<īąCĻ3꾿H>“»“ńTēä/W'ēŻÓĆ·×ļ/»ė‹ó·hܬ§//®ĪiĄ¬__æ½øø#eż|trśV@†_39Ž{‘żE1¶€‰Č¼ėß;oÆŗ'Ø”“¶·­»÷éĪśšŠxŗxćŽÜHFĮŌɁsyņö°{ś?'ׇWŻ Dp.°= ēBė^HfIpęыī›䯞,kŗ˜ģw:ŅŠēó§{yxŽą'×gēŻ7bQŃc (T懮ĪO»ųT¦¶Å#ž\žŸžœĮƒß)-ąK¦bĘϾEµ Ńąą`†°‡™ˆ”ŁÆņ³ßkt3 ‚āŠū=„¦ķEEr耹’9ePˆ3EsuŅæfÉäżÉń¹ś}?ėķ7W—ņē,a½’éĒY3Āa÷źRüü2›zq/r†~ü-t,&óõȚā„xsÆK?DČ]ėfĮ 솓ŽŖ÷ģ]ZTBū€€•Å)`ėŸĻÆ/óX÷śäēKłsļĪ/ŽäšķšŻ%ĶQYL;Ėå؟ÆĪO·2~¢ŁōŪ¬±®~i>ĒJ:'ļŗ'g?Ӕš}Ö pŌ½æfĻłÅ’Ø·w³Xt|r¤ߛņłt|ƒe2Ö_qMūP Š'‡—ėw'—×g§oߞœŸŸ^V™K@üō,:WB„sž\Oņ(Ó=ˆÆH‚Šū čFW͵–uņß p/²ķO=E€s4g"ŌžĖ,ķŃO!Š]ysq„ø!ę„L==‡ÕP<†/ Jf/łG0ó(”‹4óI驳øų{¾|ĻN./’š5„ o%^ŲÉr:§~LŁQKbH5h¤‹ ³ųé ¼T¬=Q®Fø˜šĻQ4 Šf”yOŅ'XGļr}Ė×GßīķļĘÅn„k« «Ē~ślrõĪSĀŗ~}qyvˆĆśqŪź[gÖė́{Złxö±›Å±3°$åW/`ö„;×בß^ƒÜ3Ü p»ļ'ŽõĻéķķˆü‰š'¬…óńÉėĆ«·]ō`:ŻĖÓó_ ģ?lŽ7ūõ œ_ \Iš’ƒˆō{Ÿ`ŻĄśGø 鍦XćĻlV] ͳ‹#g÷¤{zv’āÖ4Éwv»ĻźĆŽCœ ¾›ÆÜŠ—ųć&åą [›Čy ŖvŖ~©…ēiēBbĪį/'}‡H¶.žžįģųĶpžćįļo†’[aøńćƙ’pvö#žßƱ’p|L’ł’ļ”ßļ’Ų‡?üīžī?ÜżćLJ÷šē{ųó/šŻś<Ä’…’üųpūæ»ķ’~ųEüį<œ<Ų‡ĆįoŽüųšéӏćńaųćCłžß_žśšŪo?>üķo?nhęm[š¾šÕÓ{ĻYڣѽ5Ī”)Ā?BU«7²ĆYÓęOŸĶ[ß±} œ“_dĶé§Ž“ƒÜ5ŚJŖM¤ń×8#é£aąß…Ö•÷Éóļ¼3ąäKĻ!æūįg»/¾:‚ŃāÆ/ĮH(Iü]ŃV25B ŹkŻ/Ż„:čØėk¤©%Én›TldL_ƒ³9Y•W0ßG³,ėŠ·ew5”Jfd…Į“9ż‹›‚4O±B° üŃ~ęraŽŠOµ2€Ńģ`Ł–ēÜ„K”„…ńnäŲ!ŽøēZ‘Ҽh»żÆįŠP­W恔³ ’ą–Ā.<}īßµ668œ®Ę~ą oā‡”ŚŹĀ  Ż0&ž¼¦iģ\<Jó€A#+ńYĆ)<õ°Z$’|z0ß\‹~ĖѐSļ³=rūbJMkH® A-ĀBµ`ł÷ !u†žF ¢į½5 ü .H°ō@˜øÆūÓń¤µ1Ć©šdsź;7ÓŪSoągiF×l4šHHE…­,Ÿ“°Ų`Ń0‹g0z?ĻĄ¤D\/zøńżŃCB\ȵ9‚’Õ"d²L`čō>Q1?ąVŻąÕTŚ †J7ėŅ*ŃGœē`č†aŽB˜ł˜˜¦ŒlņV²,a')¬Õ&‡/Ÿ}wŽ£¹Ņ–ødp7žōä5N8Ž\^‚āyA¬ kh=¹J‡³W¹i]Ž"ˆHŠŖ•! פa̰ ⋨p”Œób½n±ØYt`‰dūGŽ3ɲmé(Ff™O;M“Ŗgƒ}Ņ…Oćį|±ĒķEXæžś«ś«ÓśRO<œū)z™ZetŲ¼g‡‘C²®Ø1{V˜C¼ŚddяUfEbĄŌsŃŚ‹¢ó hŚ-IeĢČAŅšŅß|e÷ū­u,“±Ž¶ö7ŠžŚ}ѶֱóŽzįcĘ! up€o“žėe4[¹Ń†Õ+G#?„-僀t$v4N`° õ)@xŹRł“˜-$š°gWį9|@r0ņļ*Ū¦=2(kõ}Ū1äüõÕBu'OWĮMĮŻ²Žł”‹gKj(°?;£Ššr(T7tA®žskg<ŒÜćLĄę8ĮłĀŹž¬+q ė _Į³œ+a>eM&½<ėß„āєlšKk‹ķݐ—0šHƟĀ\/” ĮŠ=ā$‘ŽR„ƒ‹ÄNMü•Ž¢] 8öūīą¾H%”UŁc*HHöū±jOĆ ؑņ4xbdĻIkĢžs’B‚jÅÄ*i““häų©©SąŖē»" O“h`mśBՉģj5ӕ_!Ļ ÉÆ¤oDš¶¹ż¼sAočÜ7°qc'@Ŗ9ńŽXœēD6ąq ĘĖ’lZėbču  īaGūµ·QīmL%Øū2‰×}YžÖ}żŸ¾ė©w1(Œ]¼ Ś;łžj§£ČÅõUŻKW:énä~Åa@žkĖż¤6ˆl=ĒJä>į`۷ƼU ,z}Ø­Ū=±tć:†¬œGižå™MG}K¹„ (’„PĄą6;rĘZUÉĀdH÷–ģŅ–¹Ę2ŁŸ.5°„aNE~xv_ÉaS„€(¶%5(ĀĆubŸķv*"ČŌŗ°żÖ:2v—d:Ҧˆ*®Ł¤Q%Tpfč1ģéH;@ ō³ƒ¢”Óéź.DŠM}Ta¢sa)1'¼£Č BSi¹Y$•›rpĢkŠĻQ©7™@=%,ūÖß&1Į„«GįDä4ą 7ؙ³mšźSłAŌ¹±ō`»2œeM$nY°j…“vį63¹Č0JDīU¾ƒ$f3Œ‰~qĒS`—>#æąŽRĄ·Zż$Ž»ꨜ7ņǐ“³\Nq‘U¹õ7g ߖZ(u L0ą‘ČŅ62½Ś1¹¾Ų¹BŁ)įŅŻ‡;°oäŽ-—ōøÅ…ā(܆žŁŅŌ`-1åmź¤ņŁ œ`ćG”ņ‡3ł]Ņ“ÅM_7JÖ"0ł,:Ž—FwÜŪĄœućDwz9w¾š‚fBņl‰†.liģąv:FĘĄjzļOióNą{~ƒQBĢŗPēe}Üb£×ŲĀys0$ǵęaĪūtˆ ś JŪĪł7]£Ią÷§½Ųķ‹`  ī©šżĄ²'ąMčm5ŹõüńŪ‚Č3Id…óŸ…)VžY›Æ$GN%­ ‹ŽŁä×'_ō×rĖ dHTl“$tZė{;»ßmī|»¹÷b}C½ū|½mÉĮ’v×E8EgUH €{;`œAVEųšÅ €m^¦a¢²ÖGĒ7Āüv›¼¼—;Ļ֜Mķ‘uźõQOe7)Ļ߂vRš_ą†ž8}ß«nV|$·%öm…Č$±Ō|i+{u¤±0›ˆ¶AnSIę3™Y”sLgUU¼®ŹiĀ“ŖĒÆkjĮaÖ5½ pėZ0Ÿ®Ķ¢\bšžؚ¦»¤Ŗ©Ē„ĄœČIšCG4{ö:p1µv÷ÅpēYŚ§ƒaņ‘Żķļ·Æß>Cķ€ē:ăźh³ł·˜™Zj?“ć*ęs&q(82Ę՝=Ź–)s>kb‹ŃĄ{WÄ·’ŲhO^Āä8šõß’‘wśŖ»…ŒÜ = oø”ćÉėČqf¾Óź(SDŒ¾Ī;­)°žžķżģˆ“ˆ>fM‰3²ÖśīīĮīŽĮs2!%Žåz.Œżlåfy5¶ 韲čęNś43{·­ĘČ=į4O§õ\-[ ā¹ńōvˆÜŅĒS¹x+¤°2’·Ų·AĶ  fGs¹vu(¬(Œ® +1‰>…©/õ¹ŁĒÄ)żK¾0Ē:›ķćz„’ĪŁÉŁa”½ÕÕĒI‚ieR«č™snšā(ذÅQyš2Ž%§ŃÓØˆ¼„¼CėžĶaHµfšĢbH*Į¤?"i)Ć[L¢›ź”!åœT !u 1‡čTˆØ˜d{e&oĘW”WźĒ‡sµI/>„ӌį'?q"WŸ˜hC”æw0+;<ŒdD s·)O;3®É;6*‰[E|łžŽ?0±į=€j%±ĢĻsĒī¼<¢ĒĢāh0¶\@Z§ƒc¤S/d2&„āŻ_ĘvFĀu•,ĶW=€y žØē|‰¬½É–¹‚ÕmäzŸ¬aMƒķķÉp²å9ŃöŲö`+ŗķxŪ8 ⢰%ˆŁ‚'Ч²T·Ī,š×²4nä†3…ĒŽ"»7tōĮŖZ^{šD‚óŪ²e¾Ļ@jTD;švąęĮč›KĘn“r5°CkķzĆśß«ßu¶P žŠ‘4Ģ t¾Lü JżpėD×b~¾žŒ/æę0DP{ æÓgeŌüØŲ˜·9¹O±_äāŠę\'­‚ ņņZÕi0yš”l¬|ā€/_wŃŪžrÜ@bÓž¼œNnYøŖ)ĘņÄ]­B=!' ¼£Å§9P¢ ¼†-TŪhźxŻœĀ5œ’1Ќ‰j8’į’ „¹n†9I}‘ė¢ĄÉ“øŒQÖØĻ˜#1%tLv1Ąź“ĢŽ-ĘÄpöšģxBǵ7¢ĻTSh¢äGš:/q[<œ‚„FŻÉ_³³µˆē„&ɔ~ŗogäÆä<‹Œ(ń”ōćIV-(7<Ū¶ĢM`ńžŒ ŖEņĄū»ŚÄ!Z‚ų©Œ|@čƒų‡Ō?ń¢Äsmŗ™fūĻiˆÓšģ–8ĀÅ ņ-Cm‹¹ŃŽѵåø¼hqÓ}lŠX*)Ė A—ø?P,Fcö͹!XœN®ų*c3ĒŅ]K¦ —RņjŁŹ ”QÕFÖÄ A‰œv.TŠ«Eį‘Ą™ŒĄcĄsםAćĀ_k#Ļ{™Ćõ"qā§‘H™Äœ ę7żw½uKĒęŻ*ĄRfįGžf3•æƒĖģŪn§ ’’‹’’q¢Ž–5¶{æ©Ÿ-X¦oī-Z£Ū°÷Ā1®{Ę)øöęó ųéLŒūńĄ÷ī?łć PēE»q¢’ž»ofuGśĖ˜;=˜³Ń Ž2nä&š~\£ŅwU ģŖ­%ōƒµīxėķÉ\³!łPśF„‹ĮqjßĪOoĪV.–éRŠ’ūŸcߝ3!Č_ܔ»$ŃĒ#>‰æ@üYsŸHo–ö²N”åĶF>ų]•żŁß馄šŸÖ¢w%B„Ņ jK2׈–qy˜‹×ņāĒģØ/<‰|s]S¾–ÕBBÅ!š ņn¢ųtaĘ3ķj€āO^ó«M7¢ŚāxAµKČ›T†QWČEĘkŽWśų&%MB#ķoU‘iC1Ńų­6Qį£°ū“ŠEpž§ a†÷Ģü¼ź,­ĪFĻąć'Ē™ØŪČzށYĘųāiCŽ– ŁŻ¾ēŽóBAOq»LII®-$v‡§'”=˜Ķ­y:BY™#„fށ®™ ŹAI÷šŹœŅCŌ”“DŹęå3­ˆ ž.v:ö¢‚M‹E”Qf%É1Å/Ķ(~1ųą`©ŗwŸORś†7ݶM¦ķĶe«¼D[¶“ˆK|“ģŃęäNd ‡ kźœ0¤”LY‰™*ŸC²_]{*•)ńĻKéĶČź,{$mšRÅ1ż…Ź6ŃĢ‘]’„ÅņX‡aņ…DębŪ@HŽ,)%Ū›{#‡MĖL*^ĶÅ ›ņ‚taŅ§ÖŒŅ ģ¹ņo‡ĘČØX®³OoŅ󠬱RYT˜B‰å¼J4×ņ±ī?‰ŃI—¹A“5S5—dJKCÅŖW"ė>éœR-ŗģx—Laž=£+™[ł° D‚]?Ń2aĆŚ²ž}ōžż±ā{Wõ~xeķżƒŹ~[Õa€ DjCUOÜc6\‹DkƒTŪś»*t‘‹hnžÜ;tóAU§”Ė$u@ŅŌŗ ²ÖæP×£©†F­ÉG)£Ā4‹qįPßķąœ¶ā†Ķż$YšAŪ”z£Ņ˜l„äW]™’y“ŗ,ó?Ķ*·”ƒ_»¶K)šõ«æ”ߤ>L©^Afžē×ÅԘ©5š²ŖŠŌAnIujJ”¶˜J65ø²¼Z75cŖ†3’ƒ3…čņdĢö’Ła!¬y9žłŸź{ęUҧžČ¬ExŠh\hž‡§pŠüKi”ưB,ņ‹•Ąb剒»ˆT:ŽŗEŁ»Tŗ0NMža†ģēĒ‚’c¢§Ž1Væe {³ćIeøžņi"Ä8š³° ӟģ'Éś7Č. ~² GćLذ»ŃׯėŁ8ē=ĶU)vǬįc7©>q:Ķiā “ń„ū‰Ē)SøXüÆ©P¬ś‰É&“’"ŁĀėį˜Ty6x”$u’&ĮœžT§äŲtv©ŗ\l¾BP PW†Œsź0[Bżœ-wŖ›I­Ē€łEnŪćō•ˆ¾b:ћ䛭4Ø'>Īį£ćÕd£źŽć[ø^…ØœęøNlŻääIŗ½E…®v_nķļ?žāÅŗ‘||ĆZ¦ƒÖ:… “ænų Īģėm=ĄėĖÓćĆ…uDónīg®„ģ±?ŃEPŖ½ųJ6aĻO˜[’Pą-+ÖnmmI€™…²A1Āøīg,J>‰Lƒ{}…ŽŪ?xń=üoė{ś° ŪžGbšV!£+ņĀYĄ‰Rgā«g  śŲę„XĀ«&÷>Lp}ēqÄ~Lcóņ@ƒ,= a“µ­C ¢Š„Ų'Ž`³&Ēz±@`“• `5-Ą œćyītü8šp¦ĒgeFliŗŠ^¦ˆ°3ń dE] ›¢£84/Äj<]ĆyœÄŹfi3źßNŒH[X2Ż6"@D©Z‰²ĮÉlj²5-®÷^‘aj¼*šC•ł1ŻŌõ(#_Ōł?¶F£KTČæų [1‘»ßZ·>˜1õ|ē°{u‰žvéėpŗ‚`oĆ& ޼¦QŠB”¬āÄ­$f¹é·ÅSŻ{”kńœ¶¤¦PÜfM7"“=óŗk ‚KŅśÆœŸŹwRKĆ+ó`š?}»øŽ}iZ ™t}= §5bn—4 B4~Ø×zoń:!čcV t±Ś‘‹ųU¤¼l‹U”£ŗi$ļśM¦Ś–óÅéa4æ’ż¾Ō0mlŹ«.źw'óŁõ§!ÖĢѝy©$OwŻ|ulDfŗŅĶz*,”üžĪ- Ī-„­*Ė?œ/[0A¦V÷­5¤#‡Ć$ƒ,ĻDķ{Ž»ŃP”3mÅÅKń”‚ˆ¼n$ųŃÅDQ;æIģ/Ē·@żžPŅ^¢Ć·ō5RŽEŗÜķ·¶°Š“狺4čBąl7 üĻnļūĶ11“1H ¢u%#Ęį›Q;¼FįÅWư$–ģ’+£A”8ż6)©ąßĮĮŁÅ98is«łč·ˆiSŪ·ąüģ\R‘;@V¹h˜/™4ōµe|®±ŲŌnó1Gõ¦8„&žŽE&ja•WĮ­6XE}Ė–2Øŗ>|„'ŗDx1£ń‰cöū„"Yų‰õ%YϜ2, žø_Žū‹¹ņńÄž²ģg½ ņ4ēWį=ę³.Ž’J,®,GY žDR$’ĒY!ždR(ÖeC$>ɤ‰Lµ’“˜W’{Āó“E4’GĶléf“Ō“¤žę£Ēäžņē¢'ÖKÖלv.ńņP"άÖt—‘h(#ߚķxņØ»›•ģ $xÆjœK~kˆ9,HÉo3ü ƒÄņswxAÅĘgˆ¶£ųT—īŌ¦?NÅĻJĮ×ÜY®`8•Šß8’å ˆĢ§f:5Ļ}/ĶÉ~ŖĢ‹8 J£™{¤ ś"%O—Iś³§’[āf öÖ “é ˜<[®<#Ų6¬aM¶·'Ćɖ'Ś”H…j“–h‘šfK‰zŽā}:|wsśŖ‹hÖ}#x¦ŻDČŌø_A_§jõĶŖVŸóyŖV?üSµś§jõOÕź øņT­?OÕź3?OÕźŸŖÕ?U«Æ“»-|Œ"õõ·<3»l:ėßäį _öѼāf>o#¶‘æŚŠ]†Æłėb<É °Ėņg‡^’ų+žg>Ž EĖóąf†fņϚ»G՝ŸE¹6Kq\–ā–š8,.Å2†…¹ēž]‹×PŻč3ŚĻ;+āŖ»9Į\āQś‘d[nŒ.ט;‹éXˆiG£)ŪMg޾uCŖ9žJyc»ų9ł7’tzŃC|YŒžć®M×Ü] ē‹ūнEēM’D3,Žo µ"‡|¼ķV†ų[VM·w†ČµŽm¬Ļ&EWk‡°EIt±„=pÅr|å}‚iĒū… qĶ0…©Ń’Cć~PlźónܸȶXŁ[„J¦ qqļŪĘzžmĄ•ćßxµŸžÄĮšbčx~¶]!šLGwŽörī“ ė:x8ŠĪ å–ć@¾]L·ņx\čī Ņ-¢=B’¾³±Ō¢“ ł„r·N„7ąŽz0õ«ĒŌĀĶäļA@ĀĮi"ļ3łJå4;:T‹›•av±A“"ų­ķŻNķ[Gź2IŪ±{Ćņ·¬īLQ>–8ŅSnćiēĀBk[BƒŌ˜ā»ęĄ™ųنéĒÓ֔£+’ Ćæ’£&N½_†ų°×·¹4†Ä ¤Iü;š7›ĖĆ#éģ„v|ĀŻŹµIܑDR¬ ”ŗ=[b»ŠK’ģmµ&śFŁć…vEž<ćī Aƃķķš~<š½ū­ž?Žīū½mɾm<ՂĪ‹ĀmĆmŽFćŃüMi~Å3gŽ™AŲk XŽPĪ ń­Ō™ĄŸ§ēŒAįą|ÖŚPī^Į }!¬ÖģŁd ¦KĮwżÓŠæ4FĻ×p½›Ņ„?åć“ĘNp‹‹ėȾ„ü&œo לJ”˜¦J3–šŽT|d…-šTɳ„ńåGĪvājč ‡i™ÜžßŸ\|+7 ūwIxoag|~Phź} ·Šęū:sĮ.Ōæ”5(&Ą_M·ˆ9®B–%¹£Ę-å‘IK÷/ĒR4«uź®öśeō@jLV˜å‘'Ź1Ń}¬¦Ūžļ‹[OgŹ3«FE3$ņĻ 0ÉĒ$?JÜšQˆ#Sōžļö¦pU% Cł…Ān=;xfŻÜ+}Õs<&ö˳Olct-żŹ[™Ž®×Ÿļ«É©>®®80¼½O4ƒŽ8rĘyė•ŁÖ3Ļæ{¦ ™uņz1Ÿ]hT6·8„|¾Q¦ÆMū7:Æ–÷J»š4žäomµY§żū›‰“%\-»×óƒ¾\ŒĖZz%ÖĪwZŅĻ„ŽĻ3”ų7czx† ~fLµĻrVÉ1G„[֟ļ5.­$j%öA-µŗSe€Š°Z“a&óEDG2vŠ…JŽ#ĆĆāźtr/Æ ŃēnčĒ™É茶žķL÷ žė²śšŽ}—ÆAϊ†–‹ē’ąłˆ•8Ō"ŁąŠ<†mä5Øœƒ[s`gKÓ®­b‚Ąs@Ē!āÜ` ķ›,CH­E–'Ō|y6åį™ėå°±D ņÆEӅ~ ]_E §ūūK×qqäū{ŠīRĀŖß‚7KŌņ3'WĆ -ŒN%tŽ C<3ĆQ soł•žŠł§üą_ĮĆø^æ€}eĖ83~ęGĮ› ¤& ų΁ÅRS#WŠZkF ‡Ę×"`Ą¢UšĻ3” ęŁr[{y‰s€ųkÅ=¹Ų-X²4’N°ņIćėk|3?~F±Œrː[¬zÕÕ³čģX>hhD¼¹ĆĘ̹<Ǽ(>š “Nć–q–å#õļu…Āƒo³t+ŪøźŽrŽČf֪сœ!U›ŅʽniæX-Jz܀ß1ļw15ņåX]"뙵ėäĻü2«Ž= 䬐obܤaB¦bąéӂ)ų_'łĶ X“„p„ś}ŹŽ°Śź£Ī®G‹ŅˆYS2į5™N2.¹‹9CŌnĒr}³K”ł[ÉūąćéH< 4Pg޶ Ž'­)-z–ņŌ!x(īī‰Ż”ˆFTčż«X?“C™ā·¾»{@¬]o[ėC”D!”ńśʊŹ%‰JHóD¤d¹įœÜ½śłXsM()‘”'īP”ŗõQśøpˆ¹¬xóĪ3ö­yūŌ҈ļ;˱’Ÿ QĢA½ŒŅ%Ė“LJƚ~ŠUŠ’‘ȾBešƒ9‚)Ą<*‰× ’“…eVŗJFč*”‰gI6\Jč’ķÜßłփDó8‚>‚#.ŹŹ±ļ”Q/ڲ³~RŠč¢ė=e¦”įązP „HMV$h‹,®;7t“Š<>ƒ«Ūl3GžņN›Zå±AYŽĢ8…»…ņwÕ*r™/ČŽĢ˜ čfi™9R9÷ņņךĻvpݟŽ'żņ¾ßÜy¹¹³‡ŽŌŽ>.ßąi¹”ų)«w^=Pß)P‰U§&Zšfō-•ņ'&€©×·ļ™€żyź9L čߜ°čߌąvvø“mwoX³IHū“1${œIŽ\'aŲXŖ³Ń¶<+Ē4į¶\æœØ·…éĢ…gšsŻ Ą59ņJG`ŻšįŻm*)€ś5ĘK9M‚&#' ­–(R°h=ł™F)R”Z2ĶŪHUņĮ~›”֋S”PS=‘“4Qu+"ŗó…:sĢTCA§ tüĆīsÜr‹Į’v«L#™ ˆro§’fä ¹÷‚Ķ rO“°É‰„ĆmÕjgk"${*ūS†¢ŹlØ5ŖŁŹŅC7°C„H œN6Ōm+TdeōĀ( UʉÄnāĘ ¢!ų[Öį*7t[8¢ŽJµB«ĮgS·ē[‡;·ĶWįōFTw!TGbŠŹWŗ¬įĒųRˆ9¶ ¼*„øźÕ™ēvvÕse¬”Š—ÕÜ·łŗ—ū·ŗę|§uP–žV­¶å5¤x“9Ī© ’Š\³\eW/UzƒņÓiÆ[_ÓÜšH@£kLėčąLm±–‰f{…Ŗ9ŽD J†ž‚-rĮž!LVTłŁīŸ9ŃŠļ٣ѼŠ*%äc’@˜Ģ‰tƒ0p‡ ·‰Ūu½t›ÜBI ¬ß c9VĶqµµ¼?9>?é~(ixE°^_žj@óē…,Hėļ>Ø,ķĆėć³ž:pc唇īķĢėś]Bž11“<ȲLLĒŃgM„¾·¹÷[ŁßĆ’¶¾§ąŌ‰×殐v÷öŸæxÉ©9ˆļŠČšÆ%8$ZŸpq)†V¹rpr•›\¬µźÜY|S(“č"·ń’ŗńÓ¼+l%LA£›1ņŹC­·p ¦‘Ø@éle‡-²Ź”–^Źģ~_¬JĀizMƒ•r™r_›'§ņ\Õ`+E¶{#; ·œ§V:ØźŒĢDÜĆS*÷€‹ŠńåB—N³ÄSö=Ƅ' +\ fŁieæąåłĘŗæ¹æÓčķŻŚˆ?/zN¬”¼Ņ%AW“YŪ9ö„zr5YÓöv6Ń£WœøA)˦Ü7ł,Ó\C>x®Č”&6š"A&@,Ķ —oĪcY“ 6wī'wāō]{Ėn·ń_Ū§‹ėļ^īģž”kŚŃ6ąrŒ]yÆJŌ_ańØvw3ü…3‚_Ķń ‚#tx2”œÆ”äcR Īī» oģZˆŌ$ō- wŌÕ\6Ēē,ßķ)åĘN`YNlʉJ#6勾ƒę;°)æ×x‰O %ŠŁYĄŒˆĘå©ų¢©šįī¾°¶Ž=vĆÖś‡Ķžz;óįŻ=zøt`²ąļ’/š"Œ,k™ØjkĖE½¶ŚfmŠł5ģmy§wiå1œq ‡ŒČ÷ŒöJŁ~§ÜØzĄY#q@ˆÅi¦#‚ųWVĮœJ« ‡ŸIéddù¤ę¹*0YĀozÜM9]^Æ~4”¹-ok7HÉ@ĘˆjOĪRWõŒ)OĻöYšVłtČ@øŅłPÖV­·‡Åˆś"‘U]@•&Ō gW ~2²įv‚Ąķ÷¼=Ā+­s;m”tĮ3ĄļÄƈAæzȀŽOj˜½'4ŗ~qh0ņĒ~Øtói¾żæ‚Z™zZ-$©R’ŹeĆ=„O\K¼ĮÉ øņy¦…0D“)k’Ø|/–žŁąĶYo²9Å`k1G–5įe-»~$łæČ§>1܊ Ņś]ƒ9)Ūų’³ä¬’~ƒ&ä޼Īī­ŖZMѤÖF{Ųēb˜Ū›6Īŗ›É[¹™uģüĄ½u={$Q™žgÖ+UlŽ‚ī½įŌūDQo0mZn“ķQ~k‰Ŗdq;™äāø¬S 5éę÷ĮśÅ‰¶CY¹ˆŖ#ŹĘ_‚ņ‚vŗ¢ÅOŌ÷—?ŠX€×Mū"ŖD¢ģ7ė" Ļ9ī|"ŚfčŹĘ ^öHēwI9ՕfLg€å<ń!ć¤6®Šō]ŃŠČ#ÖčĶ”?õ•Ü.ęxėĒm†<sæ ¹Špō‘„׌–}ĆpFæ„§¶€©¢d’bz‰P-¾XŅLŠ> šć•–™)_¶Ō(ĪĻ(2ļw.Æģ9¹ņFty׈õuXŽkÄE`\#.»¼kÄewŽ[¾åKØæ§°.Uڳ TŲ³ųÕՕ²=ĶHÜč5³|Wł6Æaœ­­­µA¢•o^¦ņ^Ż+ćŠ1uč%UX;cĄ’gb‘“ąÜŠģCŽ‹Ž`śnF0šD…¬ˆu»›ø0Ą‚6°Z’œĀęłwķ8$Ų֑öøÕcG€£¦L°ŠĮ¢ˆė”#2:ūr r·ugµŚšČĪI•É?p tŖž2„Ļ_¬7vH­…=ēŲ¾/*{‰_ĮqāpxļEöõ«Õ²oż¶Ų|×Åt×¶ÄÅ„jü~ϧVŸēāĆ"Ł+ų*øäæ\PLõ&^×Uņ½ÆEÉ»wž2”|;^æ?£ęm'Įżģ÷Ö_„Ī’'믿WEGĢX¼ŖSćMŃ\žZž£Ž‹ĪķRŚb‹ˆęĄCгЦ>ŸķĄµ¦ĻsŪ½.’­ŌœGō'ĻgźŹģ3 ė~×q#¹ güڊšż^žn£øŚw-92—ūĪų8šĮPź{4·Ō÷„¬³‹ē®ą Ć E%x+œŠÆMC'P­QĮ§’»śĮ²ÖÅ\µnżšŹZŸDėmć'\±Mŗųńp GĻŽīŲžõ;{:ņćg’ńĒ“ ĆÖ:Ž+k±Ö“"¹µA'­ZÖ’ĘC››—ĶW=Bēųr‹’xķļŠ€ĄŃoé5 ų3>ēõŕL9Ōæćæ:½”Ÿ?@½Ņ[»»š×˜ HéDϵŒĪā"Ž’€å§qõ³Öˆu9ŚōŁwūYŚ”^•Ęq‰ä¶„˜¢“?åĒK=­°ˆLN? ݌ėh‡£;tdÕIœéĶ®õŁņ=tˆ¢é<}3ü†}ķG÷²ķ.ݚ²Zį'w"¼‹Ļ0åØ‘ÄŁ©Š”†Q©ŗ–Ź<%ßZUVł7ÓČ(.,1Ķ,X,d"­’óģį¹Ģ|=M˜—õ*€ęŁ}rš00«0¦:TmʵĢT;TŽ›ėx*ģ"ˆƒ‚±–ĮŚ1:¢sņ|s+9Ė0‹Ø®F†#šYÖ»r”f@ŽtuÅśāĖ2:o”*''$sž¬T {d ,}×§O(Y7äT“1¹æx«žĪ DCŗ)LmŖŻæīŁ`ÜjO€iJŸmWĢ©åF*Ÿ©¤Čj%ŃRÉĄł Iń”øéߎŠįśhpp°æĄžų0ļNr9„B…u½•WŲ*ōzēŌ EĢ®7öų „A³‡›æ*'„2³Ē™ūEķnT.8ā•®Č×ČĀwtL‚éi¦±“ūż3ßB͇“Cjŗ°‰ßÓ.+€”ö‚ū;±›ˆŸ’św>įō† Q³$†+¼6Ł  &ÅĆYP|IjooŻxĮs¾DÆć—4ā„ %~ųfd÷>åƒw‹_šą'ŲĀŻŸ†?oĘ`ˆŠŌ äĶ?KąõŃ{–žy®łL®[/]vU"ķŹq/ĮČ!aĶóK»ö¤ĖbЬ‰ö”„t_,9ŲøETĄ8BlüŖ$–~м}’0U;g2œlyN“=¶=Ųśn;Ž64®č[〉nėoĻ}õ][=Ø7³ĘĀų]œˆÓ… é†m †˜Š×³ū0Ēö€USĮ™1lfĻsm«„ėš¢(å> gµŠŲ\ćü›*ƒ«„ŗ,j8ūu`ńŠ—3·Pټ”*ÄŖģ* ¹øŅĘ[:ÓŹ»Ć˜ht?q¬NoaóˆfVzrf«@#Ō»~‡`ÅŁõ’yŚNŒÓŹN_>鶌Ā_ UݟędHZ¢|ƈ_‹‰®œŲVä¬/0¢=ˆ²g“Ś&÷N2’Ŗ=\„ś÷š"µpē¢]ƒāÅ ŁŠŠŃE[„ėß°Öé‘õj,“#c_G[Ÿ¹ÜŌ«²&™Ä`īę kרEP†ŃģģLT(ēęlf+ećŲ§ŖŌįaGDĮsņb•+/¦v£ō›źāĖ—R§n¹ŒŌhę:~ŻDE;UV& ž“_“½dq6 ­ƒĄŠšŠeć0õ"w7Źm†Ć3’ꮩzońĮ‚ŸĢ(jpo!,Ŗü¶bĖ+]źĘEG92Ŗ&K%PеØ4^¢xžšÅSL(+$Ę3ROV8ɱ¾ųŽžz°į:¦Ń»BDZlvéTśIņ¬_vĪQbiņ³÷ JFQ3ŗ#’F”ɦ蕚ų~ģēź×ߨN(’·6„Ļ"J?«•Ģ `ųP»NƒÖ'0ŁHĖ/rnč7X粫Ų7_ę€5‰•īŽNŅ,īĀ LSŁĢ;Kō}ģKżx¤,óc76Lżw?0fŸx“&Łb æÕ “ęčūŁ1“dŗ ŖšĪcPķŒ`EčÅ]Ŗ©ä†‘Ö6ė޶\·§‘æŽĒ,ņIÕal+Fht· #·G×ŻÓ³“G«™„X’MƒŖœnž©„"ž’‰ »{“±ĢwbŒ»ZŅ\ƒb nƒėt¦fŽPIŒ'|ńx<ž‘n4ŗ?Čz?“^n¾±ęÖś/ėÖ`ŸūYĻ£5Ry°™2ƒĻÉčĀģī·Ń/Į’„Æ¢”®‹Ū÷ŪŽ$5|±Ÿłhå-_t&/ų·vŽ··G$VŒ}Ų!Źz)bt"…ģmėųÓĻó’ø_ŪßĶ-U&”ti{ ‚”–*ņ6õśN 0Š„v‡.ŸK‹›!›MėvĖj!“\ žŻrQiO‰ĪŽęūļ=JmŃ70K|’¶¾AÉ\Ā/T7ƍs_ųŸ8³Żc‡±ä¶Ķ #0¤Y„ųWü:¼½žE†„.Ó2UŠA„‚‰ję˜É³ē™“ās_&“é|GRX¼„fŻį<ė "LƒW>“¼\¶}Cē’ńFĖéy`b0;‰&"jž«Ųl§Õžr ~&ó”ūMĪŠū0½cĻĀ’ę „iB/Šå—G qFž?) 1Qž ³\Ļö’ł(3šbhøØS8G ©ŠPŽž֟iąČÖ%™y ā6ئå„ķ²¤Ńwؖ†YóI¾ÜL¹)KµQń0š å%ėśXygž,öōVrļ*ö­\[TG‘PŠJĄųŗ$U·°¤s7÷–‘v>Ē32Sš”ˆŠĆ`‘BR€„ā-ų-TĖ5‚‰nf.R?ĄÓ“©n§)œ ›Ŗ˜¶ÅyŚxÖd3,™ąäF ³Oéģź‹Ę 1{J+ “<{Dj¼™X…d‰‰¤üÓœpeZŁõhõżźp4}AZb‡‘X³%s(š||ņśšźm÷ŗ{qŻé^žž’rżśāņģ°Ū6×^óƒū!QóF.c YģQęiÄ΁t¦•#•vęūSŠtåÄ'O…Cfgfź(L1³Dš¦…$Ōź+VŚĀTĆ ¾u*‹$?ļ0M§±ć5I™fCY`4  „ ħöĀ›ņÉŃUe!3\¾Œė$Vņhāșk+N®ńҚį)Ą'³1[œ~Šh:Jœē—8f²½{ĶŪ@ Ÿün™–B3„tā„=Ņ[E­Ńsģ•Ģu/ōDņbjÖ±BĢ$łIņJ,øęfį[k s91,Ī™ź×ĘĢŽó™Z1„Š÷ķ$«æ8ąģ}Õ}½ł]˚ؽOš'n@dył±Żŗ³uP`‡×æÓ»-šm*ųF¹ś `aÄi4ų®äüq¶č…Uć/īčr’\┼*(Ö$±ƒ E§vq§ ”ĒÄ_{Ž;2[„šą±NYQ§$ą„–‡¾>WX§V‚×0‡]ūƒkJäV±Fy¢€FŅāU|!k4‘n£;0šįždmJ¬ >†L™rĒq8 wó8a2Ó„ŌŖfvżŹŹģ‰oż(»Ē‡ +y‡Š‚.2r 诟ƻ{3c¦­dÕʇ|OÜøÕŃÕ 3ˆ3›_}aDQžĄžģjÆg{Ɔv K궃©Cs•4k¼Ŗz[^I35¼™ŽęéSÅxē«īl Ōei£šĒVR Žؕ,J->CeļU’oHmYEŹˆÜ„ ķĻx.4väī%kD –ą€„@÷ś#XõŃ-1pÅÆzC^ŌS†č…rlĘ)Q™£˜–łIÕŖwĆc¼’;HTŖ„ŅU6ć:ŧn(:Ղ =<Ä_Š@FqJóóļģÆg;÷£śųż‹€Q mk …zœ²}ĮJ½”±/xi{Ū:ģ÷­ز›ž`@õąZ–lĢ)}‘‰īŻO"³1F¹“Äū››Ö+kg£€yQĻ5mÅJgNrĘ-圑¬·–õ@½ŁG\ciņÉK@ŠÉb5Šp­MŚō¢3æļPł5#BnŪįō& ģž 2Vōš–_HųqčJ ɾĆ"«Ø«,VK†“ńĄķ÷©^wlP:Ł8י(Œ@‹“2qÓ«°¬ųJāM·v2ÓĻÅE^Ō°PJ„Jk¶¢,ÖDŁSŅõՅ'źJŸUō?Y”!“L„=čßDˆ©EõoōQŒųVó&GŃšāAkM80ś¬ģB’›z™ÉŽxEy•DNĒ Äčė[+Y"FaRÆHŒŽčźC:X”0|¢×O~]Ņ­żżēĻ_¼Héæ’a†Ö:Xņ7ڦµÖi—ÕÖ¼¾<=>üP£_PöÕ'š¦’D§VTįķéŒ=nr‚*i’!Pģö*@ŸO«¢&3Ū+2<ŗZxÆ/}ŃA"<¼³s@’c—ŽČ—„‰±‹{4Ufµ€)i:c•ĶČyä$:é rœ{W©œˆK¦¢Ē447;4Š ó“yŽ!2vUžĄ ü Y(ŽĄčĢ\P ėj…ŗg<?Šfœéį™ł’\AC’gaĖы3“ hmŻŠ“–®TŖ˜™ f]vČkūĀUꗗ%Ō ",£LæZ˜™y}<‘ŖŖ“›ßøįÖt—cjÄzZDqnlåz¢uā`mćQ4‹®‡oX[Ö³™Ž<%[ĄŠ8żŗpB5įØ7:WXqj®’(÷óĖėR•‹łeē(Œē=ŠQŁj^[S Ó¼čØŠU¼ŁÄš×q¹C•&>ļ"‘¤_ßV˜Ž“ÖŃA„ĶāžFŃS»/ŚÖ:p× 3J5ZųFėłĘL7ž™Jcŗv‰ ‡ HG¾÷ŁĮ ŪČŹŲ‘Źä“jŸDĻLc(] RCbHKę„óv<””d¼~éČŗ·3`Ź*TY%*S%–Č6óš.›š|že±ā+É©²Ētų„“³hū+’[%Ń0·Šm²£Ė¶X¬ÆōģSzr)=wšØ7ń£¦~ÆnŠz–s ČPŽżÄöf‚Śśh’˜ŒżØ|ŗ¾<ū0ņā³q]ÄiXTś ¬±×ŅV3ļ(oŖ”[vX/ĮDRŗ0Q‰Ź“į01>nž«Æ*īR|N ēéYĀz!"aś‡r¦˜=4gHū֟-ž®eŖ_.ż83Š ŠYe|[•ŖĀįDvąĢx‰ÆSjß§Ķ,`¤üšRLÄyµøŃN&ĻŚaœOŠ1Ąęčć·fķĢlŽŖ„® Tį4.’©!Õ.”FÄ58śM‚)x5£mQ%>1|Oŗļā^ˆŖ»¢Ņ˜¤ūmąd8S3*ē£ų9+ƒ’ ē ­¤˜ÜŒv…«)j–x›—Č<̽ę]å³i­ äÖ-˜<‚{«… @‚ßą‚g·‹OGĮ‹/O—7Ą?}×SŠūq‹Ģ!X($žjaztq+޽eP!’ÖRÕĻÆˆčę†‰Œx[T;PĘ`:`D·†cÉ<°Ŗ·Ż›l²U•ž:rCŠyŹeŠdZ¦. ø@®xj’Œƒņ >Ķ„š•œ?U:“ź$aŽg”DwĘ”“\Įģ“Ąz;učž®T"Ż›Ö:ŠoŻ2 5Éz(Øū,ę4ƒÜŲ CŅcģ¶`%”Jsi2Īø¾$ę Ŗ$ĄBÖń"½l`)ž~_wśįY ŽłĄ+tRÉeįZ^R…QŽO_æ¾>ü¹sńöŖ{?iō–ĪĢgåłņäķa÷ōNšŚéłÅ{x9 Nå¶rc­TĆ …£qŃ}srIhp›üNV4Žå¬$¼Ń9BÉ”G&jY° '#J†§/ä¾g'Œ~S¼¤A|TęYą}qĒÓ±Q™Vü‚®œĄ€vLŚw(»j$°Ųh‚…Ź<›<Üś©ÜąŃ±ÉpøQU>eąČ^ř%b Ž#>ŪĮ5^¤Ö'AT fóUä"ąÖF™ƒĀaG$øYbDšr"d‚“śa÷ā¬<‰S•˜„ČĖś åĪOJH6 ³$1G’}zŅ”œ#ß’ä:Ü„”ęÄl"_ķZSƒÉ‚⧉®Ś‚ĶMdb4po„ŽV::Ŗ¤«T!ƔŖ¦ˆČcŠXZ¾Yµ7«J‡ä–mfš˜U‘Õ“į–ž:čųŁøļΣЯ‡ÆĘżZIŽĆTRīøŽmw3tp™Åą•§/Ź ęÖ1Ēī'ĪŲ½“ŸōPe]䞭oüo_©+„*/!nl`}ļö •©&Z†øŁå‘ d5›Sž.ÕĮ”¶Q§éKBdž »¬Ž eÄĢ%É2Ś‚ŁÄÄ!ŅuŗŹĢØū*¼ŖĘ€ Š%•ĮŽ;8Ö61 L‹Xär€ēLü‘(7¼)Ė ‹ŽÖĪŲS|’ķ·›;Ļ7÷öŗ;/EVĻߌˆųä8“ q+ ¦Ńt@^ėR‘ˆOĪ$ŠĻ @»ŠęĪ ųļģd>®ŽńꜽŻõߋüub,P¢(.Ģ+ƒ@å3ĄDƒ5TaąĘ æSŖ·¶¬Ųėą6²'õWŻ£¼#ZÜų<”’~Œæ‰ŒÜXõqõ‚ßó':Ėk^ó‘T÷ŁyČÕXn Ōͦ&wś†ŪŲfĄ¦©’™TI²„°iŅT[ĘŠśŪt4e¦A>ā’3‹E•U§Īµ!Ö%d®rĀų'ģ0SJƒŹ[­™kõmsĪČgł¹¬óʃšIŌII>ځc³ćÄF‡…Žō-ćļ×ÅŅe€]ÖÜģŠK:`ū’³ˆć³Š–w8634ÓŃW󓧼ēJ‹:5ZŹ™ŠRN|xĪsXNkxĪbšŃü³˜“P­ń…®Č8ąŽW.r¹h_¢õ]#Ą‚Öó0äĀlŽÆ‡x‰Ü[uFUUpT³“NÖś®n žW;v6ÓMꥄöQŗ’Œµ†CŃg"ŠÓCc CG ˆ= Em$1µe8QÉNµ3ĶāÓŻå\ «4@I›Ś*h!ĪderĻ-cü©ĢÖO4’mx§!8³©§s;“Õ˜tƒ…pēčŒxØE<×Ę£GŌßn¹ö’³½|}“»³’²éĪīrŠC0ÜūŲ°ØŚŻŪē  Ą,‚ŖŲņTķ}··Ē@‚YUI°å©Śßß’>{jń+Ų7īė.0M(Ē”JĒā2^*~«Č9cMmAx,Ÿ•ßīķ7Ó>f ’[ž*­_ŒŅ×Ōłļ^Ō½Žš éÅĪ"H2”–%©ÓiLO²c‚LS¢ŖU9¢ÜT:‚„Yņ#'’Ńńœž#Uiä&°²œ8ŽĆłĢń¼ņ~’Ø)?Žļ÷øåš™¦DoŅŻ.(ā÷ķ¼SYÕ!eo©ßr±Ķ»³•®¤F·R¾:ń±žŻćą.Ę.F_µ®pT“0#„šTmÓ-ū³ķRxoīéҟµONśZpŁ«1&”86Võ®;ū­ …ō#)c9JDŗ–p¬­j”1ł¬æ’£­×›Øfhk0ĀmµGѹøģ©]¹üš‚j1¢—¹OĮŻ,›Y¹±¤#„bŁEĶĆbkĀiAcĖZ@flB¶ŁĖK•k[²ŖÓ™¶C×}Ål7¦ŲīOƒ„eā=q=x O[ØV½»ŹĘ Ŗ^ŹIĮ]ż&O„0*…‘óy*…1üS)Œ§RO„0 øņT ?O„02?O„0žJa<•Āز¹œz‘;Zl5Œė*Ŗś(o¾Ņżę6T3Ū,•IWQVń$&Žŗ6ģ’АD4Œ±Ø‚·ŪśŪø.€ŪlõfÖXvą;ø ŹĪ @?Ö7ĒØõ~iĖ®FÄÕČĆeĄ•·Š¶Šāīi²nv˾SÆļ¢ B\dĮDÉ=ÜŗŲ£Žtß,W5g ; (ÅÕoĖv’œ%ąµRšA )Oėw”…E’:ńHE”c޵0^Žū~˜‰č7’.į§CČBI 8Ų_S/+‘Ž~Æ5 ćw%ŠÓµLĻ ōå×;)Š€MēĀ7%|0Įµ’ŠóõÆØ…hńåēŌ§QÆ(ļL“ŸøäUuy7;Ū¶¼š¦ć¹ÄrńS਩hqģ6ĪåcēĒ>ĖtmRÅ„n‘ą« ŽsEF²—«Śčč­ `©P•Öæ¹§³õO°„°øu÷c¶œ¶DŸźibNŚÅ ēŖé¶ā6µB‘Ÿ8ŸķoƒöEß*0ņGjMāz½Ń“/šßÄzjB“ N"Wł%5H¤ŠķŠŽŽÖ¶õg˜|^ęMź±”–-³?ö±!õū¹O 5ӓ;Żó%ö+õ੯p“Ā īŪ·ĀQœž*…DĆÓGÆŪ5£Ą Õ--nm1`$Uź©ūŽHqäų DƹDµ ›h{ŗ£č £ƒ—š/ĘĄĻז$ė3¹Kża&k½ŗ^QæĮ†ŗ•6|D+ęŠVfōDp W°A¤B]EŁż(#÷ y€6ļDJž{„¦N¢bŪĮ7u“Wi~¹łõZÕź«ų\a†§žPļz ŻuʝåѽE“låB©;„*<‰Ī„:q”¹zīø"įc_X£ĻÅY2„ʧ7ō¹@±k•ņmõFŽØčONŒęŸBn’Ÿ0&zäU¾5ščĖo‚¢z£¼dgÕ;*qęü@[ •}#Éqspģ÷>„S“s€ ŠĄ2.*2Vņ­„GÖ2Ōy2õr§ļžz“žäÉ£ąIp>Šó`£€ż? ³"H‡A1Š‚½0»NöŖ’.¼‰ÖXY(Žīw‚?gq˜GQ~Ešż5<ž)ai±ÖO'/xїi†€†³ń8č§Óū,¾A˜ ‚q܏’œ”L†i6 ‹8MŗĮt…ģŻmŻa½÷ŽĪŅWŒĀ"ø ó`ēE_ϊhÜÅň}a“ēé,ėG щ]”„“(g䋦<ōh–‹‡·ļūŃēo’^ŽgQRģ±§"›õ‹4“ŸŸ×U:‹Š"Ŗ/˜Ü†ćx°ęEÓ²‡ ĢžŖ-fyte Č~“ÄÅQ -Ę7³,4Øń.Iļ’š5“—nČ^ˆr—=ĻĀø†'NÓY2ˆ“›Ŗ2gE4u}揝Ą‰žiœęŒ-ō°‘Ko,*O£į8źĆ³õį|”„wįõ˜m7Čć “ń`÷ä0ˆŽl°āž5”ll@į 0Į4KoćA”£h<²<(Ņ`ÄĘxEļņ€‡ MĘ÷Į ¼Ļƒ0‹‚<¼ļ',ļśįø?‡0t®Łh°*8؊“ĒT•’ž,Ėv6Fó"LśRü‰QĀ(īŁ—"X¹˜šēXž.Õ×fUž¤I1µłĆÕ©įT›žöT֛=ĢŅ ‚Ęŗ ²÷8P7?8Ģ6”|ü>xŠ%;.h#¦–ō÷<ü‰¦å$ƒųÓņ؟&@<ĶEA?KM(Ę«¹@Ēń²@±zlȍgƒč5€e#qĘ S &L˜R60°Žß×ļęOš`” d|Lće'\č|ć%hcĶÆƒß;å>ؘĘ‘ 6FåÕ, ™ S6®ą żŻŃlrePaōY̘1Eō¹łY†÷š†”ČĒåā©} ›Åįķ_8dóƒ }v‘ł ‹%†ŗzÆp0+2hp?€ļ|tkŒēo‡yʇ‚)ĘCčŌ†±N¬öś!еѫC×^ĻlE6nWĘ)›¢€’ē“bŽ›DLo@]6łö¹½ fham>óm›`a*"5ōóiŌ‡÷€7 kh2!›¤ö)°æĘC˜¬Ę4333[Ÿ~Še„¤šHīŌĆ ĮŽ3ó<­ó·§yüóڇLŅT 9į šˆź§Ķ‡yČM Oūčėš ²Tćˆäm]Ųƹe®–‘ći~|@»`>ÓiRĶBj¶JŸ?K Ūļ¢h Õt½`uoē”|šµĀä‰QŖĘ`œ»ŚÜV‡­Ü¢õš•¾>€eĄ K5Hn¢ŃhmKcz.&LnŸRćߢՄEž¦×8ł ZŹēǶ“śēi©“Ā=-ߊRa‘§Z*ČoŌ§ŹŲh› ‹łzW«čļb­ŠƒśYĀq‘¬÷øÖøFĢP¶QŪ\°ĶĒ }-ęe†VčA̐p\$ėĢŠg0c½~x„` ŌęVä4c­CĻ ƒŌ•Ößp– Ÿ†½}Œuwō&¹×n`/‘oń&¾Ąū" Īr1GŠx­‚¶ü $ŽQ”f^Ęu‚óŒÕ¹™„*Ln6,U?ŠĒmŚcŸ—‡Äלå`A9Ąµųr…ķäåˆ6y ¾DņPäüĢ«9?•ø“﹐ģUµĖ/{‹”™_Ęēƒfīr…ˆ™½Ė‘p²Ąæ8ŚPä¼l«8Uˆķ90ÄU“Č/o ą˜_Øē@‚"°Ļd_œŌʾTö1mŁņģeĮ’ÅŁßž„IsES–'Ģąč^®ČĄŚ}9āŒNų/84/ćźĶKB¦ÅdzT qmņKÜ"Hę—ėy°żJž—åŚÆsIö5wż|‰’Õėg`­Õė'£Ū‚Fö\čŠü­j[…ł» ¢ ķ¹0”dŠvąrå‰|3Ėx¾]łEˆ"XĮĄ: ¬ £Ūb?:ĆʶłÅpQDó ü|˜ø£$‰g“e+QwYšžą…_,™\W²³^ W’S‡Õ͜å#%„\ÓŅ*½ü„¾F.JĪ2Ė–¼LķŠå ¢0^¶“,Q6«øX'™U„TćóńdÉA.«藬…QłŪ¶4d䉜į`ÉĘ’a.ÉQƒ°–ķ«YäFń3°Ö‘ā'£Ū‚~›¹Š”_„Ŗmž•-ąĆ™ JĘ_faVDKöäüƒ€.Gä9…K–łe‘ˆbXÅÄ:1¬"¤ßbr?'BĒźöłåqqTóĖžœø¤-‚/–nbĒĖ\ėįµ_.©Ņ0ÆbjӼРxõĶXŲčÕķ­¶Ņ†rŃÜ8¹Ŗąœ%K ¼¬Į¢E}±¤r”­fj½ĢVŌenÄ$¹uķ­܇¢\d°Ōć\Ō‡yn³įa¾AnćSĒ÷Dń½4¹`āĀ"ư=śöƒó‚åŽö:Ö(ŽāaʀźĆŸ{½ ¾s<ŪĒ<ĀēO²¢<ģˆošh"üž*Jsõƒi”ÅŒ·Ģ4o’°H³œ—[Ē’ūpP6898=<Žæ:9=xyų_Œæ­“ÖóņēŸvOĻąėĻ®ÆÆĪ_įē×®Ļū»?ćĒ}×ĒóĆ×ösW™WĒoū+'öĆ£7ē~ōg{ĒGūųż¬UęŁnPda’Apemm-`† ü'>DL͆C^CTüÓm˜oĻī'Ć4¹»—N¦iĀDN¤b­˜N§rŠJ`ō>˜fiõįD#±\QĔIEŒa–…÷“Łx\©ę°¾xĀQh‡°(h5€čx7Du^HYmŻ·‚ķš_W½ūŁń.u¼›Š»‰ž.q¼ū‰ŽaŌ¾ž~@ļś»æ;Ž}p¼Ń»‘žīĘńī•毎w1½‹õw9½3hžńö†Ņßߊ÷lšēļ/ēķłų–d”w×8žīÕōż9ӞYtēL(YOOBŠ›k.o" TäĆAśy<‰>°‘Į:gėīa] ` VqnHK‡lr-1–Sķ=ā<ɬ›Ø0%¾msŹ`|Æg)Ē`§§é6—z?Ń ²z½×‡{§Ē|R¹bs ›€~üń^tł/»&T@YŸj°4"lXüP‰ ˤ &Ę®ĀjCĄć76-8™b}˜v» ]ŽB™•qžĘŖlŹļ ųv=RēFE°°ŽO’Łå KķÅXV³"”ē¤+ Ūuńč¤ÕR4Z°.X7]‰@«{i KŃŖ”Ź„xfƒųCI0Ś+0ŠJC^²!š1ż0”"Š3Z56Q8F,•ߎFn0ŚwĒ{ō­il`¼,M„ĮƒöWy4²Qž=:ZIųy ź€ų1õ…żQŠ#Ļ1TĮÖ]a–ōĪ ©Š.›Ę˜®¾“qWāæ /„īHK ĪS H;€”š.æOŌ_%eā#ħhajDĆp6.”N54ķź ®˜ü#M:ØmƉŖĢKüw‚²E¤ŖÓĮ"Q\ó©Ųķ²EŖséįæZ8Sgē§oöĪŁrbq8Mé±»ŸŸį ƒ$ŗ³—ŸŚ±+WwĒI†OÕāżJ*ĢūłŽRQx¾‚žń~D]īĒKs„÷;Ÿ*ź«IÓę@ixr•µ'øE‰‘1ą —»ķ)[Ö3³“ r©ĆY’¤˜&SČ®„ßšŒ›Ģ4P0r¤\]õE*)ķ@~7Pgׁön O{óG~†—?‰sÆüQå/Ō‘9YĀ8Ho]śšS$䆣n<ė‘­2¹Č,ż)ŒA¬fź8Ł8s k ĻPw•ŲXæŁZø×әØMzÕ3Öyz§óÜEūPĪž6K˜šģ(ŗa·ØŌEj‡.ĮčXÓipg[WP˜§ĢYņmœ_‘‰ßʂąćĒą-ś©XSD3ąå”­Æ®Ųŗ¹?j·Ö’ūbcõk—ė­®ĶR7q“¢A†_Ę¢žŹ® ƒĮ3čaĶ@ž›^Šj=÷Ąąā́Г …{xLĪ>‰ü†~zŗ-F Ē"²."qŸŸDt"¦Ć0UĆ1ĘaįßXŽÓ@Y“WĻv#ŃOåh"J?c€ĄśVcń,Ę+{v™,’ £ęüzįŽį6éä!+÷²ÕÓÕ;ņ±Ō×ܟVMk3r•'e²  ļ[Ś'—il{†‹µlZߏSŹ6ų!ŹR[»»hom“œć¤ķēRl¤ \Ŗ4Ŗy6ŗ<š5gčžõĄ»ā¤æuõ„Q©Y§Øęrm ŽVfČżā”mqµHW‹0cC­ČgÓ±Ļž ŖåłH€<ėy1ß7\Ņ“Ųę»xieœFnóž¾kS äÆĮi5†ŅŠÕT–kieIAĢLX‚š §å²$l¢Ö v—R‚EÓö¶dŒcxˆÕ$A«€fQS9‹®@"KÜ)/”%įJ±{ÓĒ4–2Õ l[`¢ŸWˆIQC2¦”j‡j#­²„'”¾!§Ÿbö‘"‡2$o±a „CjĶŪG^įe1Śg8phŸ˜` …€ęįMä+X#ńŠRóV ƕtC µŻ\ “UØih+!{xkyT=k-?¹Ņ¼½Āǧ9ģŒ—ƒ õÆ6?AĆéļet³rt²Öóc óō¶ę(Õ<žV§;ż¬_`”¬234“ķE¶8āweūŲŅċA-”£†µ}šEŅĖOŁŖc\‰‡*e#ģē«ŌĶ&ŠĮ²ĖŁśCLÕ, ä÷I¾‡}, ާ3Ų¤al}ˆT·7;ĢŅJŲś" BĒ€ķrƒXy^Įļ—ńŗdüŽÆ#Ęēƒńŗ_*›½g-a,źp<+"‡}!8"ÉēJ¬”ĢtVšā²ģ”VZާųĪ/%™ĶĒ€‚ż+ »ĘR“EŻ`Ēnoii$ņ¶.žśŹf%7ň˜\ƒg‹=¶9{-cx“ņöEwķ²Ó¾˜Ż^vVб%ČZĮ2兮äÜv½ŸŽÓ$̃¢›—]­Ļķjƒč=«ó–­N¶–’å‚Õ`³T–¾]P­K\ÆeWÓpŠ.}„^l]Ņ>Ū-l²= zĮļŗą!(Ó!ɇø°äkė"˜āڲ)ĻE³¾ Ž<}ZācÅÓ)ŗŗóvšEGäńƁ‰²ģø/”Ż¢$wŃh½ÕB«o\=ģd–6BØć7.m5‡C£nõńņ)^IJāó2L;lBˆźżdfß~>Ń9.ĪUsĶÉčĒ- ±õøė,bRį.ÓBēÄ 7ćg[ ’×"ŗ .6h­‰‘3G—v9ÆŽE÷yŪ–ĘNgķńŪäqŁÉ‡XĻ¢(Å4ļ­ÆßŻŻ­MGÓµ$*Ö'a2 ĒėQ².C}LĒĀwa…Ę̼BHß*ĮīTöL­ülŗuöج Łjٽ8g¶¢d€ ?q‚h•ūfŜłŹķ+ūt¤Xūl’"fgą%1bŅöīj6ƒp„µĻ tZŜŸW_@ÕJ#ÅFUJlŒ©m2G0żu›=†°/„Éi%Öx-DŗkDXŚ#}3—h¾ ŻŽ‰īõ(ćų³Ņźē(-¢ž\Ē “N…ŅO†vƒ™…īyN„–©pm,4 Ąō…·ĒžCX^Tć“ęŲąg ‡ŗ<æ©U“¢‚|Šą S żÉÖĖ>'65¤±ūź ŠŸńu‘ÕÕŃŚ}\d÷†“Gā±fÅ?céƙ=Hąī°$€Õī2KĒWœdĖtkšZÉ¢[ t¼Įķµµ5½Éóćó4ι­+Hє“¢|>ĮōÉ’“5/hgį/‰óm§©¢Ōuå½TJ ˜¦‘ŠÄOooÖk%KŽ6»ŚėBņŠąš±Ē­6zÖŪ³Łpæ>°EÆ>²å.Ł_Ę© f7°€ó¢ī*ż>®®VüeżDŻ{jąG~µü›÷ōīdógQn’ņrÜ€åžį[VīŁkQīNĄ#?•Ūŗćš¶~å¢:ØÜÖ¢ÜöEĮ‘(H¾ųķˆ<’ö•¤P^Vpsk" nnIsQR8XÉļž˜‹’ßżńĢźœh-øY ~ټ ž ÷3vėYž Øg¾ęPonP{¾åŌ>Ū’Ō€jŽz&P–B}Į_€«Ž<Ź…ll ¶›ŃdZÜ ]|ĒBFCsGV«õŒF8Ăv_ȍDyMB7 G  ”éT"ŠėHµL›>ą; £öbękf¦łfŒ|‘A»Ī}/ŲXūīŽé—oźF“a?Ęl(į^|}CšŒĒ’”Į»‚~Ńζ*ū¤6Üʝt„ińŹ„¦æ~µ Ƅ²?¤‡Ķ€'Żlś[åU3ĖYÕĶO†/Nų`³ (t8!ÖZo³ee{§÷vżßŁé¼=i_ü÷ŪĮŪŃå“Īz¬…!ØåčUõH×ÕŻ4iL(ON~ø:;8æ:>Ż?8Õrw#øć°}%Y¶.­ØĮAė ķo4§—äÆ(£Ś¢įŲ³ę!(ؐØ(a5G®Æ/™—©y>Ī(˜ßÅ8gāhjKtŻąwĪ)C°ŁsÆ5Z­øžR»Ÿ>u¬Œįwͦ²wåŹˆw£ަ`­ W0B ÉžŸ’OŁų”D‘‚ Ėø’ĆĖ –Čō¶Ź$›%fGl ٧ۚ°<Ńēw8fÖėaD‹ÜÕ98::|óŗš‚xf/Į}‘óeYōīæ9ży!b)©†—Vś¼4J÷öv÷"PyÉ¤ó ŽÆĶÉ_ˆ4žœĮ‹Ÿ÷r‘OulŌN`üåĶīéłĮéBŌ"6’h¢CžĻs4b!ņ`Śō¢§ļWm47 ]KB ś|Ŗg£ <%Įw¾¤īō‡iBIėŅ­ŠVųÕŒŽŠÆfšŒ÷£U2ś«sʈ΁0”„r Ģ,/7(āÅūÕĒ+2Ż~fŁq>¶°T~‘ Z1éŘ÷»WMpÓö7įZ9^b_–Ź72·½|a%Žļ>¾ 3ž7’6gøŻr¹§-f*ķ½øŽt>ÜūÕ?ė«©„ņŚXŒ1ČÖ2Įfø?®É±ƒæł-ńT°R Ŗ,äż fæ—į&[5ų9A7å^ōŻ2ļŽŌƒ_>ĶIĆv‹W·w| '{)_ķ²-¾āu®†;Nų%Ē„śKž¹ōhMĄŸ4Šl ž6 ²iā<å”ĢPšŪi«w,š§Ē“ˆÄ-"žGĖJ4“›YxķIx„ććXА:HnXėGrƒĘÄĀ×ńŪrqpóæćżĒp bXd0PWF;ތÓkF//`Cŝx ć •ĘF!ØŁ²Vć ’ńØĒ^O@•9Ō†ŻŌ {ų6)ēéÓÉz?¹4³”ĶŚµjŹH€ąR€”ŠÕ!Ō†“W†’‡¦¤„I“° *(uļ;4‹"_rō0 p"cOƳ6e €Ųń~˜“ L—%ŒÕ"÷ $M ąOō&°‰rģĖĖąÖüž)„HøįĻß?śœÄõ |švÓėš]m'‘ģ߆Y ;ć0*§ižĒ×e[hw|Œ”»„ ’eŠ mʤB$‰“ė‡/X/°oćų]) є 7Ė’'?ŽćäF-÷Ö×ĖĖ0­É³%ŌŻ@%ĪvD«ÓD7»EØ­¤‰œÕa<# ];“^—2\Vr ēęņ·ĖņĀn^åķ M5xµą,!+T%œą‡ƒóóƒÓ³`÷h?8ć/gzģAįĢčäŅīõū, Ņļ¹u¢\ĪĒJŠÉļü6f’nØŃ>N6™‘³­*ŁU=’›%ōĢ ä‘½S‹„JV^ ̽Y*œĪF¤»É¦ƒ¶­äįLAL²Śµ‰oqR@sŽį!3}f3ÜyÓÓ5A у.“§`·Ä·W|¦Õ{ÄŅC\i!óseŪŪĮFšĶ7Ę`Ś”Ÿ2«(B|sųJ•Č=•łI“* Ĺ“Š2rŅØ„£Ļ.Ūņ“«ŸčŅČ0Ė‹tBwļĢ‘}É>£õŪ­ā.īG­®ź„¶Ō”OJ}~ڼ½„²2}RjŁd%«ĄŖž¶*^—ĻI±Ź”ĆH÷}„°Ü2¦›„MĀ-±ķo$%ßč¤Td‰ēy„”&p5ÅZ{bĄy‘Ź@×㾦¼@¦ś0@Az4t7{ökõĀNŹł•“õ¬ G$›ŌłF+€`BbŌJę'1‰TCīµwM¢”å{M™ˆJž’fIˆ¼ō®Ló $ØN³W³I˜ä‡pˆ(’•‡Š²54es†“=£4+]ń¬ŃvذoœšĻŽ@/Cß*”‹'[„+TµœUƅļ±Č0ē‘Yā²’$°Hźšę Jaļn£_?+jÖĘJžŹe5#¤Ē‘H“^|7¹ų:aų•¢&Ī©RÖÆ< BåńI:gö#4ęZ;¹V4FĆŪ8ӏˆ­Žƒlµn@×hvōZMfPkfƒpÜ $8É1“–t„_ĆÓČ„°6lXI5UßĢ%ÄB˜+ŠÆÜŹ“ˆó„~Õü>Ųņmńˆ5µH ÖX©ÜC®ΐųV$ښ¦Ó¶Øė³ye*o­Pc [³š,ęTŽ~–ļģH5—Ł;7ÜĀ&‰0>Uw܍#tĀřJbęč7/(vvš’.ČK „ÕM\Ķ”d½Ķ6®`.™ÖT”2³ ķŚ„¦wł¤ÕÕGeצÆkLaö•ϾólčćB†õ6­e "ZØoÜyS@Oäéwµr:ų¦»ŚyÄf•hœŽušÕ¦>[¬2—«Å*s£wŃź!õVīBŖåa”C |x¤·šøÉŸ r+“į|ՀI܈Øō“6AŒą.ģ4Ą„߄-hcČŠļ8½Zć@Ć(¢e$\ŲČ«v™,“rJv"cĶø7!ŻV­÷ic€€äĀŗSŻeƒö †Łx ņG,Ž"n"‘dćDĒPG9ąµp©Š:šÓV,ŲØXŗāĄ™DKę{€E¼øę±ę€Ķų ū¶6{åb #tJ}Å=ĘA”ÜvŒģJTŁ.”žÄyŽŅĮ:}Fƒ™ 4“ÕĄŌx% 7LNœż‰ń$Ā»?ć|:ŻÄŗö §Y£Ö·&iŃ+<ļŃŚĶ×ŗØŁG­ -„̓^7`ć8„Ę…kKƒ`’ -GÖD‹žš|*Ü`o¤w«įŖd’*R‡{zšćīłį_®ĪÆŽŽb%”įMŗŽņ—0å$°,Éńł«ƒSDrĶ»1BÆ1’}³#«ŁeM¬°gGPųVQ ä/פ)TŠUž9)|¢ ރük9ač‹&ß¶®nö  Ēń„ačųQ™¦ž(šlØŁw`zÖs NÕ)cf™;lŸ× h,*+6 żŲõµ§ž‘ąBwi*†ˆ“ŖāsvźFpOŃžįužŽgxIš±éĪ؊Č{qž„w€X#_ƒ…ė8ø¬W{ĒóńžßmCŲä§Z“‚qžrĘäL‹!éä¶Mˆ8āń-“ųČ ! 0L ˆ®˜"B„L3µ:ģ³źüNJ„„÷„ĢŃņöģ~2L“ū·{édš&lžz«ķ½U'q9qō·žČE{­‹žÜUÕ /ĘŹˆ ćh?ź£$ēĆCsšĻHŠłŗžż%Aē¼źźŲ£CHĖ9š•÷+2h=8K'‘Ģ[šSHXĪo¢¬Mń‡Pꮚ‚½vՐz `- bķ'Žēąį…ÖUkM“Ʊw§.#ćī‘”Ÿü,ó9ęēˆk ‰{4r±ß†Ŗ·µJW“‰ß§Gę“ńXÕŽįmO©-¾{\«Ņč¦2—Z4yzpE»åž}—ź„TЬ+ķégŃmœĪņ=®”poß(Āoō)qĮ¾Œ˜ąņ@v‚bZ³ĄÆ-µ£īü³Ü‹$¶ƒ“ƒx6 ųN?˜›ćā2ÉÕø±„„bLŽŹ „m 3™øl‚ėrėŅ}ģ¦ē*Yź Ņ7×¶¼Żin?”śK X;Āń‚ŽŠŅÖäE Ķ)ڐ°ŁĪÓTėæÖL:eš°x×ųp&żL­ū–ŐJL"¶ļz0MęĀÄĻ®y0įqio›īęĀTچ20ĮYńnąĆ4˜ Oīi.ć¼mĶ×O"!¹»Ÿčv×ÓOq2.™ņ܉‹N\łœ­Ryqŗ%Lś‘ėn¹Uó¢²rĖtMTź s$įæt Ф·7JcŒ ŠĢ#a«¬ż°…‰$ģ™®ĆĄ*M¢õ‹‰ŅL#“¼D,Ųr隇)ν! ™m ¶bÕ„40®Ąjń›Ó€Q!gČ®¹Ó ĮĄ3[ō›5¦ÜEÕ°_ŪGF‹*PZĒ7MėĻ·€%(±źcˆ-ÉĒ×a’ģ¼P:ƼbFķ4–ēWŲkŌßҐsģ6Ś…äš`V;—·½‚t€ŠF¬’Ż\÷½Øįź„ĖQI(· r(¤ŌN‰Ļ}£¦"Ōęģą/oŽĪw¼:Ł==?»:>śńgHIo„óźļć,”¼T±…­õ²ƒ¾mn/J\r¢`FäÆēĪ@„TÖ)Sѝ𨠔—”qt¦!p—ĪÓ„Aµ8|‡t2ĢĮ:w_ąńēą4ż)LŠŖ¤ó?ޜƒČŁ|ZĮ· eč‚qŒ"}?¢łņ»•ŠóĪ:ü¦‹v­Ī¼+w©I*Xvt|õ·ƒÓć+š£ńóEÖ-©RŪéņs!uÖ°T’­Ž–ē7p4• DÜ2ŅN6ø¾ūAšy¾p²źĪR‚³Ū@]y() Ū?0DØJĄļ“C=ŌuĮV]œ’tü€.@1st Ż’Įž0ŸL„žsÕD§vŖ—&ŹŃŽć^NšŠsĪ’{V ņ+*š¢ÕƒæxÜll¹÷®¤×Ÿ|‹“(ĆS0˜³Ū±G ĮŻżØQ„…½¤­NšųńPhgĢõ4±6/Åæ-oūńŠ ?°*’ņżY)×qĪ‹S‹l„LUÜw‰æŗLz?Q%ŠÓœg(źqzŖ¢ėU Į÷źpā ”¤÷FNü“W'<­H€×$ˆŽ“/Cš#’ń6Ģ®³É“]‘o(ՉP—c9ĆŻę½ķČnIGÓk޵łÓ~¤dY–äYąj’$ŹāŌ—Ų„BļÖÖÖčųyœXī`k•ó©ÄØhwŽ\Ņķ9üxHĆę m×ÉØaj+z< ŌAŠ ļ“Ź>––9ęįÄc|ÄĆ7dæAœÕŅļѶ=„)‰ų€GS Ž}EJ›ĄĀ ( ”K‰’RP/$P<~HŚ‘<{ķ½éõiw P[5ĢsģŲ4_Ł:s°%:[ߎ€ĀY ¾2‹öĻ:j āT$žR*C0Ü"īŽó.ņ¢qä#` éłć¾§¤kVŹ8ė-f‰³ŽQ¢'»:Ļ÷f½™ŪJ„µ¬nß;Ē„ŽåL¢ż~’gjJ|Ž* y?j ­­žb\ ė'ßXŽ ō§kĄFs‰‘Ū¼ ĶqW–‘$[“ę0³y–—p06Ū-Ļn²én< Ό,ø~7ÓĖēz±>ߍĄ[« ĄÕł"ÄISڧgRū•yƒŃŪüÉŪŽ“äD.< y#šł±Õé²}žesłšŗ›‡_Ęeuåj2Iip›q ³÷ӈrx3œĄåpyŁ` ÖóŁ5W_k¹åM“[™E¦|Ä_($iMķĘēńM‚)=ĖƒĀ×ļö4æī°įÅō«½¤i’§Ę•©÷L<Y©4×+fń‰·8j™§&]”ŚO$€åŽöMæł‰Šv¼ĄU6AUc䧜k,³|ģ-oݧĶĖēšĖ—p žŠNŌ/!tOas&e=ć"łO®ńŲČśM5ž¹ˆŃōļź[¼Ųŗ†U’m ’2]Į3ŖŌõ‡u5ŽŻ…ž‹>éČČ}łŽ[ŹUØ]S :ržc–ܲ"ŲĪžĄm 2ß°ĄŠĪSH`*"ōop9Ųó³Ķ.ž„q~ÜzÖ ¢¢æÖ‘g0ųn/䄤“_GApIheĪć7Lé‰܍XóąŲ»0œŻC•N™‘ū>žąż±żpܟqO£Š-¾ŅˆīÉfˇ~8ą1Ž6¢—)¤üe3t®ؼø±kKœ5ā¼ēĶKņH—›ąŖgČD#õ]įYæĘą³Aq^ÓIŸ\÷+Ū óy‡Öʄ‡U84fmņ?=N/=Ÿ“ėŽ!n€ €ßLé¬,¬sm‘¼»\— wM‘mÖQ•õ4‹ÜŌN¢…Éﯯ.;pŌ×&@?~ćĘ'ęT*!Ķ5IīĒ·ńĄq„6ī‘Ī`‘l-ČGaVV6ōYÓ4ŚšX¼ĆŅĮY|G9‰±ĪÖF xČ@×3¦šś)žß¢¢:–ß‹ .]#š„*āeUĆūda]Ć9!ąTO_¤˜6ƒu‰×w-­qż‰¼3Ø >v4¶8ąpįkwĢHXu²;‘ķŽł°©‹¹ń³+l>34SŲRęż:Ū‘DC؂+8*$¶ Spąć¶Fóß\‰Ā޵–oŪŠ‘čK‡|ĘHk»Q•&¤zŪLńsį”Ī“ƒÓĆćż«ŸvOĻ`S…O›p,I²Ŗ½>>:åŖ7©®·æū³«Ö@«uiœ=ćŪĻĶōźų³A£š½9?pUŒ«+ņ{­so£@ŲhæWócrx'§/’Ė™V;·ö*BśšøZj źų»<27ą]œL‹äóĆ×’n½š–ŗ±–ō¦äS‘ł˜5o{X Ń*'ēg-<Ī*+,¢1|{l "ŠwXæ±ÉŅśŽ½kĖwĀ44ĖTd¾¼ų¦zĮ¬•%hVņ4›!k¢ęśHd¤ĪŪBŗNÜ%Õ'¦¬m™±ŽR|±R„+ŚK€RA ų¢EÕąĢ Ub äÆ76—feĀūĮƋ ”Įō6Ė‘Õ1bA°ģ‚7Ö(Ÿ¤ƒŁ8Å=O¾Ą|*7Tæ–ė”ŽśŪŖoƒ”ÓWxvI»–„hUŌéŌ,W¦icŪ¶›I> ²¾ž“ā½å5ŌŽ²Æ—(Œ[RRs,ͦ[4Œ@Oų,ü [œŲé<±)ÓįSÜ­@Ž(ųVsDmhŒµņŚX’Uģ²ŗ›Qż¦ö‚qc)u¬I[ -ž0>HßĘŁw‘L¢ŹTuJéR3·w¶ł’[ś*gE5‘ӜøģŪöĀ\4ņÆiū̦Ŗ©[»ö‘–R>z­Ø|„:łėV„fŹkņ«ÜdՓ¤8ö+UbŽxhžž‹s°Yłł¦$eßJŪdØšĒæŒŠŹüÖ?ŸÓ‚VÉyZŽZ©¹ģYZ§Ń?“Sčεƒ¹ä=Ļ/‡;Ķ`7ČÉ=⟳‚ ¬œåŠŁy<_pOVły“Ó6„MvRØZL¾]`1žCōŌÆ"• ōĮC3‰ęL ēCeóWįSc>øŚUŏÆäH}0#D rr‰Gl:Į`äĻ)9ć9óøčÜ󉎎ōŸ‹e9ālįēUt2óĒ~E÷ā3Ø9w@¬ėÆ”ū4Vgւ7ŜjЉžóõÆĮŃÜÕģ…•€&¼Ė²|ĘQžmĢ_ō«ØTĄ÷0}:žSŸJŒ’L¬ǰr㾃ńūĻ G]Ü’µ“ØąņTčx^ZĘż9äųKŅžU-^l¼½ylyŸÅ] »JŪ‹ēx)cœ ‚0»™M`·(Ó;kC8Š.÷—[ć½ēn%±¹xÕ-«ŖŗČ÷[!æĆd²Nƒ;L”ö£Ąŗ8Ē£Qx»Ł54iā;,\«Ī×U“µ½­® Š<ŃÕ K>Ņ[“ÓĢŅŽŌŗTč×-3£WiŽ:ź°–„Y»BE\‰,UuHĶōłUȼئJj˜K„|!ć|ё'g$÷lbSŌaŗ’÷^q’ēµEå]2āóÉ»#ĄķæńŽó?~Spn$ Šōb™Ó\Éæ ‡„ŠļK0 ›WčO6б®Ō;O$«E?āqz–§Œg“ž!q#ĘOwū˱‘•½äHź#Ō~t¤śˆŖuz~”‚j›č†ŁpėcŠÕż^"āęvż'‹n-,Ż*El^‡y$vN&³noīõX;óØŻŚŚŲŲXŻŲd’‚žƒ°Ē7ē{-;ģŗ‚ó\Ē{ŒųQ0+sīŠ–#“ŠOÅķĆb*į„qaāĄäIŽr~šŖCčŠx3Wė5Į²››JŖōŖŅ¾L,ņŒ“b€o„žgŒ8ų“¬AśŪĘå)̚ąRÕŃū•"ŠBŠ-’)„(’»k*ŗ¦Ļōyz ū;¦bfć÷Ę/Ś’P{YĒŃ;?1&¶«fŒ/½g>“2jĻ-ēķåØ ĀŠ~(MõšéŃ’PK .3|Q°>­¹ć/-"7 briannesbitt-Carbon-d046377/src/Carbon/CarbonPeriod.phpUTŲ]Ā_å}m{Ūʱčw’ ÄGOH:Ō›ŪœžŹ±EVŸپ–ܤ•T"A5 0hY¾Źłķwgöż 7rƞÄ$ŻŁŁŁŁŁŁŁ™ŁoöÓŃŪ=ˆE§Ó“Œ&é,‰Čē".Ŗ(ŸDÕ4‰ćā*Ļȣѻų:Ł"e”x4ˆ¾+Ņ8‹^&åUZUŃ7WšóیüĢ«­Q>Ɗ~Ÿh²œĶ¢Q¾ø-ŅėiÅŁ8š„£$+I“Ł$/ęq•ęŁ0ZĢ’˜<{Ÿ&7XļLJG/OŽāWMć*ŗ‰Ėhœ–U‘^-«dݤՔ¼!ø—ł²%¤”1"»ż ‹ēIIŠē]yņąĮ²ä?Ī>Œ’4\žæČŽĒ³t|—•xś$\öEV%łÖ“üė¤HóńóøJŚÕx¤¤­Śj/óź€>=œÅeŁØķ§“(!p³¼ŠŹ¤l9@]åł,ŚH³Ńl9N.ˊHĖ1A7"t™&TjąÓŸ’ÉĶŹų6E’Nԃ'ČXĄĮZŠŲ­Ć.Q†|mPüŁČĪ4ŖK›¬¢Cö‰ØNŠ|^ßw t•aĮ{]Sš.P}{›“bvK¦£‘f¤W„.[ŃĮģ&¾%‹į‚ķ0ʳ„”½®n£q2‰—³J°Ō„Š£JG¬Q•Fż hdČFÆLß'ŃSĀh³Ł :$xbū“ŁØ\$£t‚ˆ)¼BÖäń[‹‰&Ń(žĶČ8“‘%Ė—@æ/‚JĄė`–’5‰¬c¬ƒf_ę7ż½¤SWvƒš_Tå„o «ųKļ'{¹rw “ŠĪ2”ŚŽ…˜ZśHČ·*b ųfõØÉį€žŌ‚m3¢'×Rö©Ņy܀I@¤sJēlŠK¬ŒŽURŻ$IvT$w_[·‚HĪćé|9÷,n:ŗī2+# ėŗUÉŌjÆź™;§ŠOƒ} ÷Ņ{ɟ®ŽÆüśz–†ø6V5³Œ·J+c›9z2„Ośt}ŌȾ‚¬fż Ø}E6:7Ų5„Q£•¢x J™åŒsGļ³x±Žy©•Q[,Ė©1ɬ õ¼@–ē ÷U:Ė*;:ĢŽtŠcZæģĒEA”‡ ö“ wvD®”Č\f õ†7Ӝ°ˆ^deÜøÖÓŠ‘„k²~d†¦¤Ļ'©@­¼D“ Óż@ä}RÜŽ LŹ*YÜD¾»4I32¢uĶĻ^tĢĪžžtĘ́®tĒĢ?ĄŽ­S–-_7ģünļrČh^ĀÕ1š…PK«ńt›¦€ć}ņsÜ*“ēė6­Pż•nÄ»Õ_fGś5³ÜG©Öė'`­ÖėG#ÜŚŠJv«ęPż õ- ž®ŲŠ Šv«–3N؝„S~¢Ę™nž„zī#‚Č‚Öq`pk«1|»ę€ƒ}ó³įŖ µgųv-1 :›%Y–.ē] Q·+IOįÅ÷M&ƒä¬ĀAtźZu§ūF©P®éiH.ÆÓ Æ“]¶‡œsH€,‹Ž·©# “›IA1L»V€ŗĀy3DÅ:Ī !nĻG“Ž[¾ wŠĻ•+7åļ[gQCH2ŠĒ+’c„Ł‘”aum«éAjFń°ÖāG#ÜŚŠv›VĶ”]%Ō·€eeņV°į“j 9ć’,ćœ&;eØ_)ŠnXžaŲ1Ļw…"²aˆˆulB¤¦½Õų¾eƒĄįžłłqõ¦Śó~˶„‚–Ÿ`ū;—€»Ū ¤å§Ųw‰ŖPĢCDm¢š‡jŠīŖÖ Ö s=Üß°–¾^“«XˆZ·ÉXpTäŸf²Ą]M°óÉŅŖŒiĆD­ēŁ0B Ś]u²“n˜rn]CŒ»n“«L–ś6·Œ ĢÜš8Ÿ/f D<—"Čy(C¬‡V¬óƒ’ū "4dڌļęo0Ŗ;¢%įļķĶńq\FWq™°Čoxż›Ø(¢¾ń FIĆߣč»e:«6Im²Å^š÷ß¾ 6YŲ£mü$)«čĶŃįŪ7oŽ^\~’āĒÓ£7„ž=p®’coĀ#C¶zO@G/Ÿ_>?8=jå(Ćō=»;'ąÕĻ"B½%„½¤£i4гč*‰Š„l³d ‹<¦Ź1ŗNFG³2ń;ķˆ}xA?8}ńź„·¤½¼9GŽ>`¶ŊĮĪj ³SšU.„~>üńķó£Ė“Óƒ7§H^ąv›"\sķłp’öŪķż-Mf"Źz>_āŒSĪĶ‚īö^æ==ųīGhčvC/„w. eŒ«*™/Ȝ¼J&ēOf3Čėå|S')N·(K>Tf-ą!āMńyyōóéåńĮĻ—§§GĒÆOO€ą;;;6j§SąČė“$TN óˆgK¦µµ(ņ*A¼ 󚯠Õ1<Ģn ¦JD%”„ é'ßęē»l£Ž1ÆiāŽ‚·›ī*`ŽFQŃ”*sX˜Ųż4%Kį.ōu!» 2×  |ͧåsZӏš—ך“ą@»;ėBt°XĢRźŽ]$7„éķQ€hķę#Ł|ŲaĆĄ‚^ŌD*Ģ’#b±Ä@”Ó|9ƒ k>i«iāģĻū4‹nå;ˆõōįŠ5ĘĘśĒtžVč€īŒynéaŖ†XDxäo#1„@Ļ}*Į 2i?@ÆŌy!X¤L~]’‡d‘BĢcīż˜N…†ØĒd|Źwéb”-“·čˆģŅg˜!åŁģVŌIZ!ŚnįQzō.¹µ{sØuā˜HXņ".RŅų4ŸAڃx)d`̘Ž@śE“äw ø`¤cߚŠA‡Ī#6 ’Ī“ 5­;ßĮ„ēJ)ÕÄ+6ē<Ļß ° _V¬E·4Å£)„d:¦ J„ "HH AŸ8½£ėO ž BŠegć™§4f¤Ŗč²?ˆč>Į‰ѧ“±·÷_ĘsGߏ µ £a§lƒ@·¤”*<“h‘—eJ¾[X, ×ÅśZ˜ļ©2ĖÖ”–W3¢0õ@ģqēÅ>€`)¹ØŠ[åüi ģķńŽŠŚODŃßČpWDĒī;Rh:CaL’óż×šÉ4‚ ęāAŁXĶš”ś äW’$Cē!±ZņN²±ĄĻ Ż›\Ž4)O˜€æe!v ĮxČĒŹo>ƒDr}rµp“ŁÄØJ›ķkÆįO“xT'|Aļ†Į‚l—F¦Śžžöāš·# CMBVW–ķqū­T+ņHX‡H(hø‚ĀCHŅ”…>ڌvCżäZQ°ˆ•Kl?ډöÄ“³÷… (¶1b*’9!õ% č»Äg*nT·‹„‚Æ‚ķŸHHÕ“ Ś%PŅ!4t²öxŚøh7Z¦hĪŽEf«··×Ūŗ¼<>:żįÕóĖĖ­įµŽ–a¾$+0Ń•ĄC##‘āŠŠg]zJ6ōT’ō9{*¬Ž„ ƒw˜Šk¶zTšoõÜ7Ļ4q–äj-„˜œŻŚŚŚ@©WšRČ)—æ'’õ6}^«ŚL2gtótZš޶®J…1ĖvB[ėØ×²t”ł­P«¦ßzęčõ‹“WŃżēĪ.ŪI{ŗĖlŠlsćß=½Cr¼(ó>49ŒĢ\HQX’É[ĪäA™śŠ9„”Nģ 1ōO°’.‹9"_<å)xtł+`ń*E=ÆęY|¹äU}Ćų†–»aęŖ¦‰ķē(ĻŖ˜€ {ā,ś˜9Ū$††t‘  “DźS0ĪÕ%Lęō gĄš`kŅq Ŗn߯އĻÅūĶgÓčīNżæKć÷¤„¶ )6•‰įē,ū¦I:².${Ńį44Ee™uĄ“Ž†`äŽGՒšxłć&%…Čų1Øū³Oa ÜŖLæč§$ś',7qVQŪ/d?0™®Š($·„±Ķ±#(’a“ŁžOˆ±Uµö6ƒ\ŠÉęPŪaę|qž–—T’Š2ĶeĻŹÄ9M¶·ÉŽ”ų’,`ÓčjY!ą“N"¾Ż‹ C–\70A2YĻāĶ_õ÷÷Ī.7/čĮ£ž2ĮEr}9‡&ś’ćü +nćæēWwżķĮ¤‡HÆ!X2I1U:0ōS²ųW}śśl÷Ā+’_ƒ€b¼gHa˜1¹¶ ÅL»°×£“ålaåOq‘į~ńõƏŸo}Ą7dtA±®u“˜tŲ×Ņl{­˜’š±`T *:5XeŅB ˜2bŲą%³|œō{Ū½!ömsl.ŃÓg”LĪCĮŽˆP߉¾üR儎ö?ŽōĻv6’|ńh°04w"åē8P‰zIh<ƒ„‹‚ˆNÖ'=DāQĄō"ĆD BDL҇-9€ lB70ļķѽ3vӉ›Bn,åm—Q?Šh}c|Ć-į€Ö·Ć—źx<>&ӌš.™D•’n“āįD„ņŒ G©ż×$÷ī?d<‹ĘrįÖƁњķ'›g MŅ’ ®P0k’ņZ‘.cČӂ4Āüš%OO(E¶FrbČĀžøM]ŗ¤ éŚ=/)hÆś8©1E‰=ĄŲįP’ Ė9œ‘“Y慓—„€!ÓēīW0s{ō+ł†E~]ę`Ō”0‡Pu@6AdŽ«ŅI- *oQ 4Œ’»äūĪĻ«}Ad‡»Ēų•zöFÖ·Q Ȉįš5Pɇņłļ_~łE(’ڱ.Öī÷ęéxx ečÖųģØEŃ#I×¾ĻSüź³WQ±¹!ƒhņ(^ģō ćdǵĆĻNN™‘:Rx †Y€ōAĀQ“‰2ü¬ŸźŒÄXmG¤Ź&xˆń7śŖh%MŽ*UŽŅ F^®cH°Ł„× LΆ~ˆ‚Qėą=Q’¦üśĶO¦ryõū“‰#Ń™ĀšźÉ–ĢäCęüĪĪę™ö» ØéÆĒšKØÆlžŠ@°¹Ī(äw³$.ó„ėī†ueĪ.ŚØO7(^ĪkĄ”[Ģ °õ“>5k¶"Ķ®Ųū;wW¦qy,%œg§N7>n1ēßłū”zA‹D%ųp‹ē_ĀBC5‡ÆŽIzFf¼¤Ū'fBsž‡Žc47!.ў|Bķn¬Ń”Ś€‡6}i®#,Ģ*JĆ­ź{Õj‡ī;ÅrTåö®~µ½ ›¾ėO\dQéĮńĮވ}ŖI²u§^ČO֚ō:“›Zt„¹ŗ…­č{<‰ęļæß2£ø¦\UČŌ{ŽŪVčQ6ŪAąNš*Ą1u•—Č|”P=辐Mū&¾ŻRt>Ł!Óē(śśJ’L³ Q…lbĉd©nŠaĮeĻv.¬Ż 2ķe¹€Ū–°ĆhgH݁}öĶĄł‘ŁŸ§źĀć,H0kvÜ¤Ó ööÖk½ģ=xr”GPśćśƒ(,’‘”³pėĆ)ī…wĖ룓ėÜs5ם€ŗ«čg”ÖėšQ7Ģŗ³Qw-qJZOVć {B9°ń_Nž§źźŒ§Ś%,<ģ£UųS휲5ݨ䬽ķōĻĒšßžgēŪ›ƒ»³œį[ŸžŽ<ŗ{}v ;Ł­Gwżż½óé£ó1˜5Ļ·Čē`ŸüfĘĶÆŪiĻMpčĪƒčī.޵Ž.ŒČy(Ėoś!# 9żĶhϜϐs| źYJ]Ė_™p;!‘ūŲ(Ą~Ōųļ4š÷śKRu._Ür+ėźņ]¦ÜŪ‰Ń 4fDÖ·i 8ńėāČ.j–ߥNé*ƦŃ/RŸū%*3"c¦›{ĶšŽÄ¹ŽŽņĪōcÖĒųĪķWlķ1®q_)[“vÓ7)ŗö‘2UNś™}Ó|°ł÷ “_nģōŲ:öIĮśŻĆ‰ŅŪó½A]Šx­ŒÓ(óÄŒˆFg#üźĆ&MmĶÕWw­@ —žΦt%Ī՞²4Ø©’nüM ¼lZ"Ń_°Ū!Ćp:- Ć0™»p-(VĪĀĀģŚr¹pßēŹ,2 |R¹ Ž•+vo”|HKܣԢ沵f|ĶLę6"e.ļÉz!7_F?* ¬Nsē^7‘¢;—yĻļõė÷@`äRcś[4X”ų6čōi– X ÖX'NŲ ˆz“=Øž"¼Źƒ=¶Dž©¤ou:‘õ-īĖ2C3*Ex qŒ,Æ{tŗn^V`{ÜK„¦ĆcĖdĆ*äA6Œ#k€Ž–ĒÕntq„CŹ„Ś$ąśÆF<‚±›ö±ršˆ:ÄwŌ«4łn,BżsĀ>H6ŲźZe«ĮžZÅö/3†Óo€³k+³W} ß6ĻTQMq įó¬Ó ±ÖeåėĪ2¹Ćõ¹ÜįSżCÜ[lQŻ?»|}›Aø^`S”ųö-’Q@›_Ÿīœō`3÷…źģg>@,YōWĀņh¾ J³ ežv,ųʇ³s$Ēū‰Uҵa‹Y”ĘQ.”»EԜZĶ»ņžøF|ܘĖh8¤®%ü„¹Ł“›+½üĪÓ'‡±Fšbh}+­jÓ\Tļų¹sQ] ØæQŪŗĢKš °īLÖ/¶Øģ2'ay-üĮ²÷ؖĢd E_ˆgC_ńfgQ+ĪņÄv ?aā…PŖœ£Åj6“keJ½U‡S*,K¤Ū»p<ßߋv>|ųKR5O~ękĘøŚ+±ģä[EŒÆ«Szu0õ–7óŪ…żÜĘi¤³/€& Ź ßXūĘē³£®[łīXv0(/ą3_ńś¦½ėĖHr4.lhō6XϹQW[ū.Ż‘7{'¹v/TīĖčõ!Š”GŒ9C(7Ą`{ƹńø%4’ˆ.W‘ਠ9Ü­O;’Mū/2˜ü«z/Œ®śĪ{PŪs.›–žd>)JĮįŽ:xU{× µ5ČՍ¼’+‡Yؘ n“™„*XŽ%–!‰(QāIeu²HĮ'¾ź)9¾DicJŁ!ž6©äDą{“'NkLYĘ<’Ä³(- īÓŚ›Ļš‰āzj/Ė*Ś8ĘÜž1¹„>‹©7—+Vį†ƒB·}Śy/ØX SPµ}\”ßqTŻOüZL#ŗjė `Š¢ø±äž0zā %— »6K65»2£8Kž5ö”nė žEŠj;mś&ęY§=#¬¾~æų“BƜ#ĘÖ1yäąīŸ“ÖÆ9.ąÆ˜ŌaÆ bw…č)¤ė•[ō Ä1ŅĆ÷¬ńē’…÷U9ņ3W> å>ŌÕ|ĻøśŅl lt“ö а„4 <ę lAw(æé§zÄO<×T_.„Ł€ģ!–D_+:ggĪIą„+ĶX&@ä$·0X…wjµE²ŚwŹ7Ņó[g šžfƒīrżVFö©Ł3臜ĄŪ ©āTāŽ²†“«ś2Ų* „fŻ•µ:8 £¤„BbEW–„D[‡č9Ž’RaCtäwŸieÓal"OK’@Z4Šj8üýɊlķćLģŽõLēCpQ§”Ŗžą«“j'j5ÜńR…V퓆}YžšŪi[Ōy*…Ķ¢Ÿģ ÉtW6xŠ{W ×|µ¬q Ŗ½÷y•dßD;ŗ x!gW$Bx»„é,~ Šj­ņĢ.v>dAaĮ±e}»aģåFeEŌ»š5¶€“Š­ģh^£–<Æõżm Q¢$:ŽgŠiüw2Ē”A@{Øą“¹3«ł9h5—D-.j’ĢtJF=p½ź] )]šśh”sKž°÷2ĀMīśœ“ݬ‘õĶO?æ@W÷.“Yr]Ļ&ÄWāŹf¬łI¤æ8¬mƗRŠ#³QϺ߉WÅøD’ ĻÖ²ŽPq‚sAD²}Ņ™ ĻĀkēAx91»Öv-iCšī£ ^p“ČĖ”*Š“†+ŸJ`ķšMĖ՘°dü,Ō‰Ļæb!ēh“}äZĒ¤~TŅūü%©®½PSĢ5Āß)+W=“Q/«wl{q‘|ŸY¾ß` -z{ &³I^ÜÄŘŪ>ńÖgŸy~HM5ÆU|Éa) !‹Źž‰Óæ&B‘^‡RF`Ž>€ŅIćā(OC„‘¾śŹ„™ ¼8L™,o!×_é@Ŗøłųz”؟=Z#»B„Ø…dč sūĮjoOeęĻ Œ®–×Ńx‰Š$X€q¤ŸŸœF#”QÖ—IM«jQīmo“ŖåÖbŗŲŹ’ ~Ą÷żtüōOżu»|ü§?:kܤļRQ£˜Œ¶”?ЇĖcŅngéõ“ŗ,cøóé^|b®äģdš„äHœ‹+ĻÆ¶Ó ŻRõJę·^čē¤ā* ·‘ƒ,~?ęÓ"ĪŹÜ_g† Čg½”%˜hmČŗ*ńĢ,½ćčIQšmkĮ›r♑īd)śDk€'Ö!ē" oÓ3©åĄ™M,«Qøė–@±±†°ŃXP·ŅŅĄ&7ęė˜“wéBFŃ“@…ŒD}ūˆ ōˆhÉx('Ź Ī ± ĆĻöXVÉ¢ä "ģąŚ”Øæ«Ü[eœ5Õi”šMΘĄI‹č¦0ŠXꉱÖb¦†4zF&7łÜÜōP.Z œ…ß«£`ӏ ©'Jp¶7‹K‘ÜiØÆ*géNhīWŽų*d,mdŗD h²ģ½émłÜ½ ")µlĻG ļ'”ŠŗĖ) ‹ZŃökĮn{”üC÷‡Ź|ĖԟŹ,—įG*Є׾KŚš€oš+!ą.Wڢл°GÅŹc=”ÜżTx6)ƒĢ$į«ÉsČj”ˆA>JøĒ6†AÆdčŽæmĪ7ĒŃ{é^ŁÓŽķ±w½N؜Æ(Œdœé˜]ŖįžCBŠad70T ļYW4%ņvzbõģa>oד #ńĆrN ōĻ“nõž™§VA.O†/ō”ĮÄ·–JžÄæ)8*ģPÄ7Tö×Ō"°ÖĶq¹œ˜ lŒ§k`Eęd!!"UB˜rd~u‰ <– ‚c~-ÆČƒ>ƒCą [Ž7»æĻŠC„opO둤®$eå¾Ųe£¼§»Id>–Ėßšž;łS¹m yÓ]%½(‰:ŃØxŅ ³ž§¼Vļ óŲŌ¾… ÓžH1»¤É)ś²šPŽfŌ³4|ų®”—ø…cŽ•ƤįNŌęōįōäµó9“הVņš)O-gDĢĪß6IĪēSĢ÷5Z9‚«ö¢ b8£½ečW²ę+lJ>+-)†dŃ,IĘk¢•ąaX%u±=öæĪĒ8#{€÷‰zóÖė^³Yaž>ÄaNÖ©øßĒÅåx9_ō}éļb:äÆi:dųõxs÷kH‡\å55įŗ#r»9Ŗ 6œĪÖōZQńć7ĄM.ł²¢f ± Æ¾1kh˜<»Øé-½éÉåŖ†~]yĘ”ė9GÕŽ¶Ó ¶_wÖ57Պf⼊€’#/.«ü2¦·U1¾…WĮ½n5Š/T®ųžąķ4 -šp;S˜bÕ`cš£×ƶ<ƒ/_–ŁŠ7 7  …U“cd[Ūȱ•ŗ7DŸ] yģž~SŪž,žō±§ßR!åżp°-ŗĻ¾œÉŌĖä×¢ .jģūŸz“yyéŻfšŹ_Ö‡G4Į¹øõ×qė ¾DŒiśūĶgDV4)>OœĮ+ĄŁpĄ/!q£z³fŁßŻé…™'ķÖ֖ńBVęĶg?%č?;Æ ŲjMˆ<£±®:Ģkf.w”ó2łv“DƒŸ(æ»‘Ų½QJwP4¹!W&ʧ}Ǭ"ßš±įŃ ŒjČ)ś%,čü„ĄäK•g2[–g3 #½+†¾ęŪøA¤e2ž+ŽųTżŽÓģõž4:é |V-(”vcFE±ĢĒ®’ęŁÓhĆ|ŅѼ[k£LF9Fģx`<6`(āFį 'łØ·M# ó²6U īW„=rōĶ“Ø \2ßہ ˜!#°ŗ/_%J–&M _”&}AØ ūĀ7ķ *ξ\%ÕM’dMe‰xšōş“¾‡Óšś”™¦/g ƒ,Ōµ H‘„$Žŗ¬ŌB3²š4” ]tœDY,Ėim“J°V“ęX€P-X#ØyO‘œ{u3iF59'Š`Wˆqpæ€kH=łk“…÷Åwf'ņš#Ä4T%©Ļ­źHę„w›Äyåē‹9Yd§ī:ųŹł†Ģ’wī:šĘ“K÷Ö]ƒ¼ųč{į|Ž÷»'i¶ō‰3śĪ=āČĖījō]kn0OU¬źš·½½"#^Ą„?ģš3z½ūœ^ƒKÅ*„¾ļÓ8šUNP5½Ųų;F-3›Ž~$—&ĶØXĪŌ³ƒ!W5/Üö3—Ņ@/ Ż'ŚĒ[v¬Ŗõ™ÓŃ+¶ £ź8‡$;å4†ĶĻ 6;ću(¹!K…K•5%½)SYVv­ c¹%¶”Ž7ģr:¦“Cr.j3ĆKĘćķryUńˆČ'ˆŖ§“I‚kZč^jš{ų;iBø‡ó6½ŪøŚĢ¹²)ü)@Lõń%!CŽJ”VÄ x¬} ¬ĻāźEt8»»§5 ¦8¹'yk‚#”…½·HZć ½—¹bAńī5J52±q—čņÖ`=kū3fG»Jņ欎'Ī”IpØ©°M2œą<eÉqå>·,łŌ³xQ*§OĄŽ}RzWŽDA¾ĮeZĀj@¦½Ā'L£&Ū*JYØüX¹Ę‚×ö0®jłø’Ą¼PąĪHp,¤Dī~Ɗ7šqāHŚŁ¢īēOĮyzÖzļp÷mD‡ŗ/pßļˆ‚ūĀŠĄŽ‚pq “ ˜K †uG•ÅÉ' Mœ‡ōģŃ3Ņž#¼˜äÅi»/MBP¤9<"’ćmšLrĄ2ś"ƛ1%ĄÆ{ƒ­‡4Eę!„EG‡Ó"-«y\~qž=Gæϐj’8xĢŁ¬v5‡š®QŚ®pQŸE„Ō{ś­0¼Ø©Ü¦ÉŒŽ Č\°AhĮ īÓÕŲA 5÷£xHĘnčZ”hc›Ļęń¢ ’ØĖD€ƒzź)ü>…¬į Snž’%Éh߂,½ģŒ½č ·g²ē°Š‘}œdé—:€ņ–üŗ$źqę~Į™ųˆ'&£ššP;łŒčņąņŁŅ–g™D7g6³xžcåÓÜ2ć7^Ŗ’_9{¹oģŠE9oŽWńIąĻ€zĶ ¤wŁI%¶¢ ŗfIĀ^óōūI²b&ÉØųP1čÜ*Æ5-op³“O])jģlR~8Ź’lQŽYØ¢æĻRYåÅó~_šŠC©¤½u“'ĄˆģÕyüæÖ- ZCضŹj“ÜcīńqBš?ZW¢dI‰¢“øžP¹7tlL'»ē!z /ā_W ”’Ī2+~L4&%w õßÄų +ncV±B&”©KĢ0tåp_¹'M£–bݚVˆFłāŻē{kÜ<5`1SBĶ’²<Ę™tœ.óŁū„ŖSLAX—¶l³ŒēąD5‰?3æ*ŖĪčüŖ|ž OĄVńŁńņĮ Ö$ń5n:ŠOĘĶ”øŸ-3#‘;įe…ŠŸ–?SBÆOį¤S¢ŠģǟårGXu±Ó-g/vŗ~†ŅAŅw%įą£qגA%ög·ĢW[äLņvæČŁ„żL™xõ.@äOÉƟ%‘×§ī:‹wō!źŖŗå7Ą»ŠTŃ1 ›’ˆÅ×BŹX»Œ¦żV¹č^ōś(7ģ³±Ü4ķ1ō—YzŅŖ |Ÿ÷j Ż~õłĶƒß*/²×E~ ‰Å‘Fa5TZP×K*8'wĒU²°P*[–YZQ·tś{Q$£“DT'ē™NŅ„ÉJŽó #«yąo6źMfy\ŻA–(vč|®ZX™‡@p•F9āžįCāĒŻŽŌū؁”‚¤”Ź& Qõ!itO„[ē4§45°Ü/“hfOn Õ1Ł6›·i›väQ4ż&½¦õzŚÄÆč“ 5cv]F3į>°|{¶Eļ&?ŪÖÜéę8åLŅŁ’ēď²OC{ōU[e `± õræx†ė¬„Ė€ļŅē"ĒūŚH°ģõņŪ1B?BŖŠö÷#ęĻ7šĀ+bķßcW”Kö04 xæ!ōoAE1,MN· GĒŃĶ4M•‹ÓJB—x–~¤É žūäÕK‹"³4{'ņņ€ó8#ū>¢uo’³$*6ƒ~-[źƒrzČÓ.ō žpصQ¬"V×3;õķˆ\ͤPŻ™°ˆĻŪ›v„}Üé?¹ØöPš‘ĪUē29ĖqŌ—Õ¹õV†Lœ*N!ą©vļOÆY£ł WÕ=noĖHš'ÆĻƒdO°!ģAf'5 2ųCHhĀĪ£‚Ņīį³yF\ÅSÉĶß&2Tq’jĆƒń$ŸĶ %·šP›%{ŁGi”åÜKVīUæ'{z.ŗ†ŃŁćŻ?oīü×ęĪn“ł,āæv_ų¬ČŸ6’YłÓęvł,Įpf‚aœŃŠxp>¢>}C„ļ†Ļs‘Pišą$įF7q)®·T6Ļ˜^eZöū3ÆēIĄ{ĀĄ £­­­˜„/=<+|\6)–*ÄŠĖ`ī-·1wŹvϔߩ½ ŅųŽ3– ÜŽŪń£ƒŁ@Rč”)üœŪ€-Óņ{ź»ŪŽŌŗó;2(g+1Wš$ ²9Šß:"gq–>ŃYĄ`2gfb!€“§śų’ĪcwJŹh i“Ų łź¢”FF)™›pŒoÜŽāĶPDÉĶI½*MųńŽ€Y£—鬌L3~“/ĢÉά\);Ā-Nē5TÖKęo$|jä¦>Ͻ“씳“‘­QĘT³Lŗ H"¼›¤ŽåYu0[¼ØX„­ūŚ„DčĻŅyZ‰äŪuw¶upŁ­¾ęüéźn”‚ģąŹß†øÆĆ9šw®¬TöųÓĪkIBxf7lĮC ÉżæqˆuĻÜÕ/½“„ƒón o?l6Y¤]›pāH»SĽFwoćöX^Ża,ČmI©œ]c5Æ1M–‘¼-3e/Ä@šw߬‰ĘŖ#*“5Ö k ēš=H¤/8dŸÉŖ®?ąµEģNhi!^„¼×9ųĘRbG‡(†!QފųA̳é=Ė|Ī+õf=C'RÓ °¤nгZkŒ§=ėÕ{÷„{|’Źn˜Šī4¢Kx•+w@ŠÜ#YB„^ÖµMZ <Õąńk©†rēV,Šd;>'Orą4ķ‰Ģn*MÉŅ㨯½ps^“įZ ō<¦ė\@“½Ķīņ¢»*™D³žąE=äY¢É^h˜NZ„ń,’ć¼åĀŠy§QżmŸfµé†ćT‚ī‰ėy½.H®†rŹāęȇ°öBžƒˆHåņmļn³ÅØėš;ė˜ŗėµÖ¹^[ę­­ĶÄnįŽqdßį8ó$Ž+É­x§=5³L±;d)¦M/É‚æś„‡’żf·ųk2X¹8\r€“–s›_ÓQVgČT¼JXŻD\ŕ| ĘŠh–_§£`nq¤(ϰŖuĖ-­ŻĪņrYŲÓū ³Ü2ŲßŅz›Ļ w/wĶŹ,7TĶŻß³ RG½œĮ\A{˜ŠO”{b–tńõB fg;nį/B“6!w/ƧC"„Š Y^Y"ųDmč°¼<—CśØ¢L˜ž·XVŌw¹ ‹|&~޶š,t’F~+¦‡,!?¼œŠŸ~„#„Žu‡ōˆQqt##)CMš*q}—ĀųßõwŚ9‡¦®$~5$ Ÿ÷¹v=ž\ž­-\Õm€’ŽL™­K^OĀ"öµr{VJ­ša×ožPK .3|Q=Š)[“ 9 briannesbitt-Carbon-d046377/src/Carbon/CarbonTimeZone.phpUTŲ]Ā_ÕYmoŪ8žī_ĮŽJJŪķ‡ƒÓ“é%é&@“‰ūå6{-Ѷ®2iTŅͦ’żfØSo¶“ķb±śV"93œyę™!żęŻj±źt†{{²G&‹H‘Y3’®ØŌD̈^0rBåTpų|„s6€¹8Ż <ņoQN®˜šFZ“7S|=ęš*ō Ė·ŁŌBA³$ŽI VæÉh¾Š„ņÄQĄø•|&䒼Hš>YŌ·»ˆŻ›u/NĪ®nĪP”±O/Ø&÷T‘0RZFÓD³ÜGz#`»‰ ( ±Ć§K¦Ąü|+‡N¢ņ—Ū³o[”bu{Įļh…'Téāėį湓hÉž#8«Ģ?„šįŠ×LĪ@uł3®+‚˜*•ÉĪ?öM3ŖŅÜĪļĻ*™‚ĆĄ<@UÄ÷0EĖ$ŠnOĆÜpD88Ś3+Ņuf-•ŒėńŲ^£4x<ēLŪŚ®Ą_¤X^FßXøģy‡FŚ÷NjŒščśTĢŚ,P„ŲU²d2 &ŁbKLŰhF,ćß‘ƒW£y|$ėo|ó¬Eųč…÷„HŚbį:ļ§JĀRȳ™bš”s”ɔ‘¹d°wD(`Ō œlŸÖ^ń‘L'’Ū¶‚Y#ņŽ8ūĒńÅŠĄFĪŽīŚŃū n»”±¶cTqRfu üĶhk?Ÿģƒf·y³¹tĢ/>ß ß†ŻJ²¹/Ł*¼»Īšæ·jĻże’ą×ŪpßsoĆß_÷ąSočō‰Ó{5’¬%·Śa6iĄ“}Ÿ9¢·@pS€‹YĻ †Cč¾ģ!ļTƖ)9.b VŒ»f*xŠMżķ‘Ż2Ó((g„!s|öҘįĻ ‘˜ū@² –ȶZ˜‘ytĒ8144Č–å«Į…tIRƒHĻĢAõP'˜õ:ēR],™^¤bąyȬ€Ę18 tUSÄōąĶšĪĢ;%źKdžˆrݚ‰M©ņ"µĶgß f(w=°˜ļĄ©”*ƒ-Ķ·­Ķ@Ÿ”ÖAiij- •źą-„×¼z"+ØÄ§Ęt„ åv­č, ,"±”³ė‘įŒ…•ˆ 3 ŗ›3¢)ŚfķŲ3¤JhµøĶ¼d‰čėVI)źl?¦ń}Š>"Ł‘^ ³B@+qpKĀpcąŅF„Q”ė)JN“劄ų'k†2ŻŠ­&%ü…ÖBA[TĻ4ÕZ›Z ?£±Bk0ż› _eŸu<2ĖŅźß/m ¹#čéÉę–9ĒrѰóTk ēĀÜVī6:Ž2żĶĖÖ©ü µčEÅ ;võ’„ūjaŠ‚ž³}·«ĢM7i"†eźĄčKh8Ļ8ē¹T°KĆņ…åāž°É”†ė¶Åu®Ņwć3Ͷj*Ré-„ØŅ½ƒ›Ö¢Ņ~—Ć!.żęVČ>wl6šŖzĢéИ5+’ŽŠåŪIĶb„™ČŹl¢ ŅֱɃ5ŠqJį4„nI~\$Źöģ‘|ņó¢RŖ ĘŪ„H Ū+„¹Š$dJÉ/€ß›ÓN„p@ézéEĻ’ź`ĮTsŅ ™ė1هÉEŗƱf"įaĶõŠ­ļ|ä;D™(Fƙˆ|>’\øńł”˧BWIž^¤N·šĻ£ŁÖ– _‡īvżL%¼¾Ś½ī3LųNTb{•LĮĀōŚ'£>¬¶ėé/ į- Ö¦Ź×§­«DɍĶJ¾£ ™n™2tƜIR\|”Ū&±ąųY%«•ęhįéc’/{ż1^%žˆ;&”Ńæ˜s(Ų7šJ]ĢŃņ·jš±Ā9nf( Yūƒ‚Ö½`—ˆ]$éÕ[ŪB¬½t‹­g<ģŌĀ|ܒ®ƒ—2©š.µČš{‡§†­čs¬Īr9šEL*{جm*ni6õÜűĒ8(éĮŗŽ±½ķ„½Qŗ£ ōʵOݹõ^Ēź§’h)s¢UDJÕåĻ*"O`™g–’쬙—‹±Ņ6?’ŗ³WQ]š”ŸĄ<©Ó8Š~߄jš§œĶ¶\ś‰¢ŗāuH±“·m—n;tx¾ÆÅMz#¼µĻµ«Ē_r?Բͧ^°ĘŅŹõŹ–žµz)ó<7Ą††³X@ “Ić¤óz81E'˜¹œ2\•Æ6¹æƒHOÜ1I ī Ń¹Ć¬½āNhĘ«įŚ¢Ö”^ą"ŠĢƒ0cŲ\tĢ„§CcÓ–ZĖŲm/æ«@ARįĒ€MÓ^uW7*ižēƎćŚöżR ~°×4"ūŸtֆXņ ~ ė,µ(×Eq¼š40†Ö\+lv;ÜĒöN­ģĒeü™/ŅüńźŖ I”,C@"äʤ$PĮģ:Ā”—2…¢?«ˆmQŹ0r2>U£„ėM§-š0ћĒ…_®eJgB)‰d˜ņV™ī±8…õœ#®p•“Ó@ńųą6łPK .3|Q0 briannesbitt-Carbon-d046377/src/Carbon/Doctrine/UTŲ]Ā_PK .3|QŁźšą÷F briannesbitt-Carbon-d046377/src/Carbon/Doctrine/CarbonDoctrineType.phpUTŲ]Ā_„ĮJA †ļó{ØE°Vk¤ŗ=TZ<ķ%;ĶīĪĪ,“L”ˆļ(Ņ‹˜K’Ÿü_’ū‡¶n•Ņ£‘‚¬kōo  iy¦ue„NŅ .&®-”!Bm8U±Ųąg½÷ˆcŒDėIo tŚ2'b}9½Ÿ|ÕŻHC^Ī'ć«ŪÉõx2ķ0Zylˆ[4O‹ąólO¹S*1Į”Ķ³Ēł"_:”ī †óyĮŃČAéĘ­Šå7ź`]ļZRļ ŗhSᬁ2yÓÉźe‘‘q±W†#ī`PZr›śü^ƒv_v»ĮMš[вĖēå+ŗDĆĮ¶O’be(X Ó€źPK .3|Qó&’²37G briannesbitt-Carbon-d046377/src/Carbon/Doctrine/CarbonImmutableType.phpUTŲ]Ā_PĮJ1½ē+Z4`­ÖVŠŚD{\l:Ż n²13„ō߯Żī½8—Lfę½yó®®}ᅐI" U”ÜWP0{šJ™.bv¢++7„ŠTŲT C@1Ļ‘ŲTnŚ`A¬+ĶĮ8”ėL•ŅE$y:¹“y=bŃńńxtv9>'5NY$Æ4ĀB…¬ré²c™  ”’¦ĖŪłCśT*®YJēqPšūJ=®KEŌŃÜ[Ye%®>=~0ŗ5ĮR1®ŒÅļ]c}‰“Üļlŗb+ ŽÖ±&ŲŽW`0\߻늲}}ĢJ£an|‚ł±>oxŌv÷DMä t»ķÕōj³vd'žæ2ą{4éåła±÷ūĪ8žt }—ż”CÄ^ĶN|PK .3|Q”D\k'> briannesbitt-Carbon-d046377/src/Carbon/Doctrine/CarbonType.phpUTŲ]Ā_P=OĆ0Żż+N©%X¢J‹„*¢cǽ&‰c|g Tåæć¤É‚`į->ßĒ»wļīŽN™$Ųʾp ³£¹”¹į"dŗ®ä¾T ūŚCa(ä9›ŚĪŪŁ_&vµfo,Ź]¦Jiˆ’¼œŻLNŗ8¶Thł|:¹ŗ^O¦³H#…U’Sa„|VŪtݳ,„„0|Óõćr“¾”Š£ ŠŅeFģ•ę!Ūu©ˆzšķ—CĄOF»#X+Ę­©°KšŹ•Ų Z‡ mUDtž“Hąš`lŽp¼®é“²{]ČJ£a¬n]ł93>ėŖG¢9x #Żm-ŗB#žæČćG0éķu³:zśd,:§®žPÄ>ą ¦ßPK .3|Q’c’Zš G briannesbitt-Carbon-d046377/src/Carbon/Doctrine/CarbonTypeConverter.phpUTŲ]Ā_½VmoÓ0žž_q+•’ŒµĘxIc¬L›4PŃŃir§µHČvĘ*¶’Ī9NŅ&M' ņ%éåīyīž»sśę „–åmo[° 3ĀJP Ģ”J„ļyS¦f٤$s/ŠI&g ¢DĄŒIŁtJ„b ÷ulKD˜J0N½pBbI™Qé={õr÷QžŒ.sŹUoo÷łė½»{ÆƳ8™S™’€Ā“„‡ŹĄ²2YYĶm°n:劊ćĶ»!Qō‚ĶiÓ\€Ž‡ļĻĘ£˜(,k.LJ© Tiió¾X¤TŽ~M…Äņ?Ü4Õ:ē•Ÿb1Uä§ĆLfbż¶ÆT$ŠІe<ŠA0„ŹųÅDŹOØ†ćś 5’41‘śTe‚š¾č€AžöĪ2šŁ$fA ūüóŁ¢§ Śā!Čŗ£qøb߁¦ŠM‹'·‘E74`ZŲg ź‡]½·/įĄ‡§O\ŲßßĒ{”ƃŖUC‘,V£2Ģ÷1oĒ­yūė9׈ĖōźŽ™„Dą°åX ZŖ_;°*$³µ¬Ö]Ń`„9ߒž®¢¦‰tr§°Ū…-Ō""±¤‘pz%(fPĒöĘĪ8|6ėØŲ—.eŚŹh"ؙH~AĖIŒ‡ae<&,.M9µš< ÓÄu{5f&Ö=ģļ½y/„Ÿł²ŸVBųB‘?Žiš}°O`÷l}»ε[s9jęö^–ż×ŠüĻ­ĆĮ$"éß®^Ė.ż³ŃKŗīÖų‡p/{ļ­i„Sļ³ŻŽ“Lā)G|źæõqlÅūĒš‡­EēŪ.ŠĻ¦Jū²r­Īę;ėPK .3|Q8Ę0%:ØL briannesbitt-Carbon-d046377/src/Carbon/Doctrine/DateTimeDefaultPrecision.phpUTŲ]Ā_­±NĆ0†w?ÅI0@$j‰ŅRRH­ÄŹŠ 9É%±ˆĖwī‚śī8iŅR``ą&[žļ»ū|’čj'„L ljeß ø…šŁQ*e„¹Ł$o,ØÖP¶jM@”ŖX·6ķzé(ڜ½¶(‹L5R$y½øžõē1hłj6½¹›Ķ§³EÄHa•Ar*GX)Ÿµöu=P–Bä"‚µbÜhƒk,UhųÅc®)®!>Är^ocˆėĪŻų0.Óūv•Ą*:W\#{ Œ”ˆŽ“@ŁāpyÓĘVYƒp@OŚ}rŹ+Śņ—łĆ£Üo²&n7,Y›w? „|qŚu™Ā¶ÕEß“슰)ÓōÄķxYö±ŻÕgä’öōČĮŪNō/vU“‹>cśØ3`¾[";ń PK .3|Q˜‚CeįI briannesbitt-Carbon-d046377/src/Carbon/Doctrine/DateTimeImmutableType.phpUTŲ]Ā_uPKK1¾ēW xт¬ÕŗDŪ‹ žŠ§½dwgwƒ›™‰(Ņ’n²}„Ī%a¾Ē|3¾÷BČÉDĄÖ½²ģ göTHŁiīcuU;#ŪAEź5“.@Æ (vkg‹¬=”h\ĶA[”M„©‰"’¼žßMĻĘ¢“|9›ŽÜĻn§³y²‘Ā*ƒäU°T”r¶\ķ\BD:t·Ļ‹1‘U5$0c{j¹z~z-×ß©|Wa„×Śą‘dWŠN¢€_Œ¶!ųOŚųs~ŚEŚĻØųź/on.żÄĄŅ茶ąkĘŚhė|H萷üeŽö–Nq~QeßnŌl}sä,Ż”(Ę„#m#6āPK .3|QQ :’ŅB@ briannesbitt-Carbon-d046377/src/Carbon/Doctrine/DateTimeType.phpUTŲ]Ā_mNKKÄ@ ¾ēW¼tĄZ]wŃķŃcńŌĖ“Ķv;&QÄ’nGwAĜ’ļ™»ūh"€Ŗ*Ą ;£ż £4"‘·JĶVL.ĘąŌaљÅCHh,#ēy&ü¶x’qLa”d=©iŠ‹²Ģ™X]nnź³ļ}•8ņrŽŌW·ĶuŻlÖ^;āØG½NCš}{LŁd&<}ūųšŌwÖ©ÕBuT€U9.šƒHoB~bü#FėāBå>6ž €ė”ā²€ūą_) „|ĀPK .3|Q2 briannesbitt-Carbon-d046377/src/Carbon/Exceptions/UTŲ]Ā_PK .3|Qšj’P briannesbitt-Carbon-d046377/src/Carbon/Exceptions/BadComparisonUnitException.phpUTŲ]Ā_]‘_kĀ0Åßó)."ų‡¢{V·‰ÅĮ`ų²ķm0Ņ4µam’[ul~÷ŻÄV÷%äęöwĪ=]<ŚŅ26Œį­T UI Ór‡` ĄRBŹ]f4µÄߏ ͆ń”ĮŹ)®a#}¦a‘…ėRÓÕąD˜ś”}2.‚ЦŖ@ūķŌ¶Dą:‡J ©=IźĀøš£2:[IN½’ūųŻĖsŗŽ¼®*śĆ’#칇\yt*kPę°WXŅ y÷¦qB’PĶN™ęµōdæ[åc}Ņ-?g¬!©sƒī¢āŽĆŠē©©)å~× Ļ# (uīį_—ż0 ŠY†CJxt@ć&mÆ{Z—×Ģė-tÕox3¢4ĀUõĆR7#g æ:äŪ·Nī”i|;6§m2Ššž€q‡ĻOŃŁFŻäĆ{øK.Č ~i§]#—;©q6»ęõ(;Jæ ~ƒ(3čµBÉ=šGܑŁPK .3|QØ ”S briannesbitt-Carbon-d046377/src/Carbon/Exceptions/BadFluentConstructorException.phpUTŲ]Ā_}‘ĮN#1 †ļy uE[Ś=SP«"­\€Źd2ˆŒ%Ź xwœ0ĆThw}‰;ß’Ū>=÷b9Ÿ ˜Ć]c"ŌĘjąÓĖ@ąj FĆF†Ņ!?©'¹Ó ®MåS5ƒu0įFĒŅĮi™®ČWG åŚ³¾ōŅ… Ŗ;kA9’'˜]C ±k”ĘȒX»ŠJ2 šVK~{6zŸ’]żŽlon· •żQ# ö2Be"Sv¤+Ųj8ĆŽ£ė‚Ņ,Te³K²Õ‘ķ­X·µPēĶCĢ«‡£ĆxtP Ž'=q±£š,2ü›xļPK .3|QkÕ.ƒŽ=L briannesbitt-Carbon-d046377/src/Carbon/Exceptions/BadMethodCallException.phpUTŲ]Ā_=OMOĆ0 ½ēWųČ*“ż€M€V v#7q‹4‰—!ž;I;YļĆ~χūä’R»®SŠĮ›ć–=A ³@“ Ž Ē<ĘP)żgŚVo³ßč 3c€•‘Eą06ų*Œ²Õqŗū³>Ƽ²³÷ cśŹ|v xÖJ 6ę …cø…ä +÷É“¬{ĻOżpzŚ©µŸ8X°€į"™ĒYČĄĀāŖR»—8gM5Ȭew*ąD„Ö’å}øhJ-«ģ•ā ”mSh^H\4=zõ]„‚)peŌ·śQæPK .3|Q‚µ¹Ļ? briannesbitt-Carbon-d046377/src/Carbon/Exceptions/Exception.phpUTŲ]Ā_=OMOĆ0 ½ēWųŚ~Ó@LEBB»Ąq7u‹4‰—2Müwœ 8YļĆ~Ļ»‡ģ³1Ū®3ŠĮ»ē ŽĪŒE 9OpĄ2¤Ø”żĄ3mŌŪģ7öž c„#ՁE`74ų&ŁŲ4ķ­Ļ©¬‡ÜŲ”/…Ļ^ć-ÅŖ‘Ń„2”pŠw”rŸLĖŗ÷śrčo};µö V¹JįaaańŖh÷šębIƒĘµģÖDœØjżæWNż—„ܲź½1…Škź?m®ęŪüPK .3|Q|ŠŠĶ‚ńH briannesbitt-Carbon-d046377/src/Carbon/Exceptions/ImmutableException.phpUTŲ]Ā_mQKK1¾ēW ҃-„õl}a© ˆõ(H6;ķ7’I«Ø’ŻIŗŪ–ź\’y}ß73×¾ńBLG##xit„„nųõ2ø%Pƒ0—”r–Cź]®pµ¹üT į6hiįc„‰ą¢Źīe×ŃD9sՕ޹P€–©mA9’ōŖ!¶†V+“‘)ķŅ#I;;ߢäŲZć¦ō=ÜĻĻ‹ UōQ# 62B­#]%Ā6šΰöčRPČDu;VŒ,æåuń”Šg®8"1Õ.0+īS²¤ ī¢Ą\·,é8ĪŻŖ•1½1‰dÕ“ą”­’ļmxFƒ–ā.ń%€­%ŪꬓBR䤋õ©¾“4·`WŠŪ`-Ū„ł—·§{m@Ÿ§%wŌÆ-Į ņźŽJvś¾m¾āĄ\k—bW6-ÆO”ļlUóķMõŚO·¢Ę[pø„³ńsljŒ?,pŪM`xYē燀'ݘ|ń݈““Ž`¼‡Ī ĢųæPK .3|Qb…ą?N briannesbitt-Carbon-d046377/src/Carbon/Exceptions/InvalidArgumentException.phpUTŲ]Ā_=OMOĆ0 ½ēWųŚ~_S‘&”]ąČÅMÜĘZźD‰»!ž;i;YļĆ~Ļ»Ēä“1Ū¦1ŠĄ‡ē=‚:f…Ųƒz‚=ę.J„ģ ŚTļbæ±·š’ŽT:V…]·Ą'©0źĘĘńįĻśóz؟BÓWęĮ+ 8lIJ”>ę•£ÜA „•;3ĶėŽŪaßßŪåŌŚO=*ĢXĄqŃĢŻ¤ä`fõU©ŻKœ²„äÖ²[#8R©õ’_łl/–Ņ’UīaQŹż¢䌁Żs¦‘DÆ. ‹’øWĘ|›ó PK .3|Qā£HeqķJ briannesbitt-Carbon-d046377/src/Carbon/Exceptions/InvalidCastException.phpUTŲ]Ā_}QĮnĀ0 ½ē+|ą‚mŒŠIH—ķ8 „iŚFk“(qićßēdųÅ~~ļŁž=ŪŹ26N |TŹC”j ōZīLXIH¹ĖŒ¦”ųā„6Ąūb §ø†µō™B„Y¾sM_ƒ#aš§#ōÕøHT“u ĀŲo§Ź ėj%¤ö$© 掏č!ŲZrŹm•Üž·Uŗ\æ/Uō‡GŲq¹ņčTÖ¢Ģa§°¢ y÷¦uB’PĶŽ™ęōdæås¹Ņ-?e¬%©Sbæ+½åµŹ_\Ł6Rć© ¤¹ k·źÄ&jī}GrŃ,÷(u~ŸTCӇ”æé‚ż0 ˆg ‘@J“ k7:ęŗŅœ.É{Ņ%tŃ£…x:ęJi„‹č…^AN.~uøfĻ:¹U¦õGŲ8¾¶Ķč°to-āP›čö;éį?=<ĀĆšĢz&¤BPDĀ’‰#5w“‹ÉäåšL2˜ĘĘ;°?PK .3|Q}yųOJ briannesbitt-Carbon-d046377/src/Carbon/Exceptions/InvalidDateException.phpUTŲ]Ā_SMÓ0½ēWĢ”R?TZĪŻeY¶tŃJh/ NH+Ē™6‰Ł“¶śß;IS’lĮ‡Dž7ofžoßiEĖŁ,‚|M•ƒ­Źų_K`¶@)ĀZŲŲh6Éb‡ Žõį9…«„†gt±"‚ŪŲ_ļ5_ -¤ÉļźŠGcжĢ2¦ųiÕ.%:LIŌŽKź­±¹ eōŠ Ūö !ļóÓzóüeć”?JĮA8H”#«ā’0ƒ¢”=ĢŻ™ŅJäBI »Œ“ČŃ1ż¦•ÄĀ×r7QTr©³į&\Ÿō^d*ł`weŽšĪ^ąšLķ5?£ÉL8×|„m2 urTĪŻ{“{•Eō+>amžųÕł †hžfÉ¢ö4÷{aĮĻJļjÓ2ü «öĢF!‹é_ęo‰ƒĄ¹:b2Œ’śøk=ŁR’±=D–žČk²ŠœŠ`'&Ō…6&ėÄ(MpqF^ó`k/ŠQaqÆLéžī،Y«,a-ƞ^^dÓƤ"7Æ Ģ«"šŽĪ[ģ–¾Ī4ĄV« ̼vßÜ(i6Ņq‡ Ž]¶qs',‘ÕŖOk1†ŒU_ųhƏ.·:®IĻ[šÓ üŌŪŻ'¤š*Æ Ī"•Vj®3ÉŅ£‡˜t'RC\ę9 kµkŸŅ7šJ;8E§čPK .3|Q|;VG!mąņSĘ¢ŗ$¦ń»Ń{^©ģÅM-5^Ŗ@œ ’v«Nh¢āŽ·ėč©—G”:»Ŗ&’!åoź`ß (āįB$°$/čĘĪ¹¶4§[ņ¦tmōh%žĪyÕ„4Āæč…%^µ\TüčpĻžurÆLćĻmćųŚ&„ÓŅŵˆ¦v;Ń*ģ·ŌĆ?xx„‡a‡ŚR!0 "ąŸćĶķb2¹9ģ@Ó8xb'ö PK .3|QwĒŅ tńN briannesbitt-Carbon-d046377/src/Carbon/Exceptions/InvalidIntervalException.phpUTŲ]Ā_}QĮnĀ0 ½ē+|ąU;ŪˆIH—ķ8 „iŚFk“(qićßē ų’ÄvŽ{ö›>ŪŹ26J |TŹC”j tZīLXIXp—M)ńÅK9¤ŽŠŽ˜;Å5¬„Ļ"L³šœiz Ó<Z_‹@E[× ŒżvŖ¬øĪ”VBjO”ŗ0®į،NĮ֒Sn«ä.ž{[-–ė÷e€Šś°ā;ī!WŹZ”9ģVT!ķŽ“NH"Ź£ŲÓ¼‘žäw£|.÷BŚĄå'ŒµDuNLās„·¼Vł‹+ŪFj ؆6Rž¦öƀ"Z"Mƒ®hÜš”ėJ3r“7v„Kč¢GKńdčU—Ņ’¢ÖxÕrVń«ƒ£=ėäV™ÖŸŚFń“mFę’ēZÄ”6Ń)ģwŌéį!½ ^©š8q„ęŽv1߁L/ ƒIüx`öPK .3|Qøø^vóP briannesbitt-Carbon-d046377/src/Carbon/Exceptions/InvalidPeriodDateException.phpUTŲ]Ā_}QMk1½ēWĢĮƒŠhĻj[«µ )“Ē‚d³³nčn²$³jiżļDW‹ s ó‘÷ŽĢ?Vy%Ä ŪŠ…\{ČtĄo%Ķ€r„™t‰5\R_r}ž ćmՁ©ÓŅĄ}¢‰`œ„tb8µŌW¶|8޾X²ŗ(@ŁźŪéuN M …Vhē;…Uąņ#!j¦:F1]˜,tśäÖu‰†N]`Ī)K»Ög4UHļ€7tڦϒš ;B“ŽĘ]ņ BÉ_Õ"~pDóBtaĘū«Y×?֚քż”%„k™54Ńā³x¶ōbJ‚Ń ‡¼9©ų5ĮÓVåp£mķcƒųVuĀö²ėFÅ„V+Õ(l7Ō½<ÜĆ]ļŒzäF`čDĄĆĘZ:¾Åpx²wéŒāǽ؋?PK .3|Qmd“øxųU briannesbitt-Carbon-d046377/src/Carbon/Exceptions/InvalidPeriodParameterException.phpUTŲ]Ā_}QĮj1½ē+ęąAE“gµ­U,E„öX(Łģč†ī&!™UKėæw]-BK˜™—÷ŽĢŒ]į„t»ŗšVčk]"šė¤'°k a&}f —Ō§Ü`Ÿ±ŽV˜z- ,1dšĘYL'†SK}e«‡ōŁśD“®Ė”u_^o ir(µBXҬ­Æ$ikząJ”\ŪjÜ„/‹Ł|ł:TÉ’`'ä:×YM˜ĆNSĮölķ²PžĢ„‘¶ßŒņ>ß+tQ+Œ„ØYź\„ta¶²Ōł“ßŌ:w5§lķæ>³©R†Š¬Šk›Æ¤g„žĀƒ{B“ß&]ń"b)ükH| ąHŒŃ…E¾Vd}’TkZ@\™Ł@-ŽMą»^”“!ų­øĶ+ČŁÅ‰‡m9[mėp‚ ŅėźŒo̧7* õń”‡ķFŗw¤‡{øė]X/„܈ Dxœ8QKĻ»oPö.$Qśxń PK .3|Qh‹ZäuńN briannesbitt-Carbon-d046377/src/Carbon/Exceptions/InvalidTimeZoneException.phpUTŲ]Ā_}QMk1½ēWĢĮƒŠhĻj[«XŠ—z*ÉfgŻŠŻdIfÕŅśß;‰®Aēę#ļ½™7~®ņJˆA·+  «\{ČtĄo%Ķ€r„™t‰5\R_rƒ}ž ćmՁ©ÓŅĄ}¢‰`œ„tb8µŌW¶|:¾Z²ŗ(@ŁźŪéMN M …Vhē{…Uąņ#!j¦:F1]˜­,tśā6u‰†Ī]`Ī)K»Õg4UH.ńĆ¼ąžŠ¤÷Q@—|Pņ7•ˆŃŗ]˜ń6äjEÖõOµ¦5a7e įVfM“ų(ž ½šŅ†ą_“ĀÆFĪ*~Mp“U9Üj[ūÓŲ ¾U°¹ģ¹Qq©õZ5 Ū uļšŠ» ^¹:šøq„–Žo1ށģ]@:£ųń āPK .3|Q6„örķJ briannesbitt-Carbon-d046377/src/Carbon/Exceptions/InvalidTypeException.phpUTŲ]Ā_}QMoĀ0 ½ēWųĄŖ v¶1“&.ć8 „iJ£µI”ø|hćæĻ &$š%Šżü޳=~µ„el$ X•ŹC”* ōZīLXJ˜q—M)ńĶ7²OŲļŠLā–Ņg ĘYųN4} ö…©_ĪŠwć"QŃTcNmJ®sؔŚ“¤.Œ«9*£S°•ä”Ū*¹‹}‹Ł|ł9TŃ–aĒ=äŹ£SYƒ2‡Ā’*äŻ›Ę IBy4;`š×Ņ“żv”Æł^H“üˆ±†¤.‰Qü.ō–W*s›¦–/U Ķ)Y»W'6Qqļ[‚ÕĮŹk³Ü£ŌłcP5MRž® öƀ"ž-D3š]#Šøž9ז&tI^CŲ“Ž@Zˆ§cŽ ”Fų°ĀČÅÅÆ×ģX'·Ź4ž Ä×6–ī­Ej½­Ćn+žčįžŅ+땐 A” OGjīhĆįŹōJŅÅĘ#;²?PK .3|Qe½Y²‹N briannesbitt-Carbon-d046377/src/Carbon/Exceptions/NotACarbonClassException.phpUTŲ]Ā_}RMoŪ0 ½ėWš¢I`$;;ķśdC€"—ķ8 e9fS‚D'-Śž÷Qr§:† ņé½GŅ7w®vB̧SSų]›•i4šé¤'°P­a)}a‘SźÆÜźc#|¬&ščDŲčP"ø)āõłji¦lūżża}"Ŗŗ¦eŻ«7ۚ@b QKbe}+ÉXĢĄ5Zrngō>½{Z/W›_«H•üQ- ö2@iySt¤KŲŖ¹Āރķ¼Ņ,T&³s²Õķ[ł³zQŚE­°¢ §|¬‘“ƾHµøæ®q'S>ųm×j¤SŲĻ#ŪžŖĪJŖ‘!ĄĘŅC/“Œ÷@æĘņ’,`ZžNL…/ˆ7i­1¦°äNÉwЬŸrĒŅ=oZ¶ēˆ[8Ę(YŻšÜ.p Īb‡|9łxĒøļ‘ózgl°y:]Wšźł@•Śz~VGćA<ėą¾eļ@ɅØ1I”}׉\zžGžŸ“Ē R5ēöÆšFč÷RZ- #†«ów}ztń“äyzžs9?ŽÉ”™l°?Y¤ź‡ų’PK .3|Q·žN=vģI briannesbitt-Carbon-d046377/src/Carbon/Exceptions/NotAPeriodException.phpUTŲ]Ā_}QMoĀ0 ½ēWųĄŖ v¶ń!&!MhŅvœ„Ņ4m£µI•øĄ“ńßēJ'$š%Šżü޳=}®‹š±Q1ˆą£P2UJ ·ęĮd€…„%·‰Ń”_<—CĀzx_ `a×°‘.Qˆ0Müw¦ékp(Lõt†¾ˆ²¦,A˜śŪŖ¼@ą:…R ©IźĢ؊£2:†ŗ”œr;%÷”ļu½\mŽWž*ųƂ#칃T9“*iP¦°WXP…¼;ÓX!I( fGLóJ:²ßŽņ¹:Y{-7a¬!©Kb¾k½ć„Jē6o*©ńRŅ\µ[ub%w6ēoŅ*“v½ņ€R§÷ @U4¼O¹›&ŲŠp5,i“@c‡ē\[šŃ!y~M:‡6z“G·¼B)š/z~ƒW‹‹_ķŁ«­Ü)Óø3lŽŗIč®tn-ĀPŪ­hö[éųDšw¬!¼Ā ž&ŌÜŅ.Ęć;”qG2˜„Ę#;²?PK .3|QŸ4Ž]Ö M briannesbitt-Carbon-d046377/src/Carbon/Exceptions/NotLocaleAwareException.phpUTŲ]Ā_}SMoŪ0 ½ūWEI$;§Żśd@€"—öh e:ÖfI†Dē[’ū(ł+(Šń"ˆ¤ß{ä“ė²N’Õ|žĄŽKå”PŸµp¶*6ĀeÖpJžG\rohŸŹ¼8% ģŃgвp}2|µ“”V’čZZŠ¦Ŗ@ŚśźŌ±$&‡JI4ž)Ma¤¬Y@]”ąÜIį9~÷ŗŪl÷oŪõQ)ĪĀC®<9•5„9œ•\aķŽ6N"åQģ*1B£głż(éö"±\ž>I¦÷ńŗ3'Q©üŁ††*0ē KūŖĪh²ŽĆŽŅ«•¢Āē³p8~B“’”ę„”’RHņ'Žč\ˆ9lxr$ė–]®/=±™BƒV^Ó›żBIŸš”!ø‰IXā§–AÄ_üœŌOŹ6¾k[ųn2¶–72Īt8Č^ą“c^“čš¾-FŠ `ńŚy£¤¼Ń5×Rå-P8ƒGHH‡čĮ˜]Ē,]krlTĒCńf×ė[…w-InуA~Xčn]y»źĀškŹ;''$łōŻ ć«ų|Óćw†ŠįįžXD[›Ī@#•6_ŽuKXŒc³¶ ė#łHžPK .3|QĀĆ4w§I briannesbitt-Carbon-d046377/src/Carbon/Exceptions/OutOfRangeException.phpUTŲ]Ā_­TŪjŪ@}×W !NPķ@ßrk“B M ·§BXKcyØ“{±UŚü{fĒR䬊 M…Įhgöœ3göü]µØ¢hr|Į1|]…9åü_)㠜ƒ[ L•™•š—’Ÿ*Ć1÷†öQr׆”†;“3rĪgįõJókéĘIY\6­J#@sŸē”Õ/CŁĀŅ)䔠¶L©ē„)”£RĒPåØxmIø’}o§7w_n”čs å`„,¤d”™w˜ĀŠÜ‚+¬Ż–Ž$ČD©ˆDZhY~;Ź›:Į*pٳ(ņLõ¼p&Æ·z©rJߛĢØŻs˜óš„½Tg“ÉdmäŠxV¬źŌ½w÷óĻJgŲA‘¶UL~‘Ī’fŃoĒ'擤 A5ŖJ,(ɕVŠŖŪ5PĮ§–ģ‹2£ßš#1 Oˆ‚×Ä 2Ģo“Äū}8éj›Æ–Ź@8G5KłÆ -•C8 H<ȇ AAš _ āTc: ĖŪv¢ŖśŸPU=ŒJk÷vx°U6mćN9ĮĪųĕf ‘æ`U4¾Būˆ—½”…®…}Ł×”ź=¢·×CŚĮĘs¾Ļ^Ės¤žčpUV—Tzū·)~Ę·_&:‘„><$­ #™/–bŃ7Zā5\ĄIÜŃt \”G°γˆ Ź›KÉņE›Ä^‘¹BMāŌ/©ZJ!½’Ø ÅĶ£•ń”įėōts¬a†Ā[3äŸ[!jį”[tsRČh‰ś 8īFSsø÷Zx°×Dp½Ļ;ĆOKKe›/]źƒõ©Š”­kPÖżņŗ¬¤) Ö M`Hs°¾‘¤­ÉĮÕ(ŁwŌxJ’¾=nwO?v±TāG•$8Ʌäõ¾%,ऩās¶õ ØHdWĀČÓļ„<ļĪ ]Ä !Z†›ō|4GYėā«/Ū Q`Ģ{¦öYœ«©Z†ß„øóŽśń/ž Mńļ ]įSā·¶4µh Ų²ņ­"ė—ÆŻń e±M¦„ަxvØøk’I“ŠZYH҆ąĀ¦±ĻR®LłŌyUˆ0IĆwŖékp Lżt„¾‰ņ¦Ŗ@ūćTQ"pA„„Ōž$un\ĶQ€­$§ÜFÉmģ{[Ī«÷E Šž°ä[ī!SJ”l–T!ļŽ4NHŹ¢Ł!Ó¼–žģ·£|-vBŚ ånj5$uJŒćw©7¼RŁ‹+šZjAĪžQŽļl ø÷œā¶.yL•®Z/@®ĢšśźNö®‹īrā†/p³¼P^Ų“‘éē…mšµšŚ€$··ł®ņb¦i ³{b=Ę“Ēra†E“ŲšĄ°Ž9@žWWG/Ė‹śü®(¾›wóPK .3|QH1¼/‡ L briannesbitt-Carbon-d046377/src/Carbon/Exceptions/UnknownGetterException.phpUTŲ]Ā_}QMOĆ0 ½ēWXhlš6ΌĮ4āܐPšzmDėT‰»€’ŽŚ ! _½÷lŸ^4e£Ōt4R0‚ĒŅXŁ AŽF{·.ŚgŽ$d^u©åGfWŽj‚{ ™e†Ó,ŗs×ńÄøś¼+½v>­ŚŖćšwo‹’AS•5HA(iå|­Ł:CS”–ŲŚā&õŻŻ.–÷Ė•ōq©6:@n{›µŒ9l,—’ķĮµŽ åIģT‘®1ˆü~”ēå›Į&r…™R­Pm³äŽŅZW6æōE[#ń6 Āy%ŅöåĶT:x¢WrŗAfō»v|c¤ü °µĢCaÆõ”@,.Ś2 ūÖ°ó“.Ö§ęrK]CÜŠŪ .%żŠ$¢’§ÅĆ/čž)ŁJś¤xÜAćqm]ŗ²iz›6“;ĖłÉ¤ _^L/÷(é’`Əw;4IDųaBū™=įj/[99łwŠ­¾ė0tćčp–€¾Ō—śPK .3|Q žP‡żL briannesbitt-Carbon-d046377/src/Carbon/Exceptions/UnknownMethodException.phpUTŲ]Ā_}’MOĆ0 †ļłځMÓʙmģܐ¦4õֈ֩—`’'kŁ„_ŖÄĪó¾¶;½Ŗ‹Z©ń` `… °¶%‚|kķÜø@˜kŸ9’+ó¢78’ŚX~jś0óV,1d–¦Y<^“Œ«.ŪŅēhŻ”%Wæ{»)4åPZƒD’ÖĪWš­£!Ō%j¹{µøMļīnē‹åĆ"¢’?.4ĆVČm`o³†1‡­åB2ā=øĘ”<™+ұߵņ¼x3XG­0QŖ©™Īļ‘ —ĻuY~gA$fāä÷ģ$½<:*Sźą‰^Čmi’āĄĀ7FŹ’‚­¤ó ‰Ć†Ō‡‰“°˜KģĆĪŚ».u-;ŌÄ ŃŗčU ū£ČĆQōāģ~”|›ų¤øĘ^ķńÕŗ&“ećō­›L6*‹&“:Z­Lgš“UīépgĆōĄ“Dč'޾ßDÖ^s~~L<ŁØė r‡ȱĢZ~ŒŃI+5<Ąū“Ü©śPK .3|QźƒłĢL briannesbitt-Carbon-d046377/src/Carbon/Exceptions/UnknownSetterException.phpUTŲ]Ā_}QMOĆ0 ½ēWXhlš6ΌļiHHĄø!”4õֈԩw’'“B_ZŪ/ļ=ŪĒgMÕ(5Œą”²–Ö!ȷсĮ/+„¹…')™½Ā‰`üĄ į2XMp‡±°Ģp\¤ōœ$õ<1¾>ķ W>d¢eėß¼»Ŗ4•ą¬AŠ"IKjĶÖÓ‡Zjk‹›üīęz¾ø»_$Ŗģ+ͰŃJ9Ų¢e,ac¹’Žx¾ EØĢf§ŠtQģ÷£<-^ 6I+Ī”jEj[˜åōšÖŚŁņ"¬Ś‰·]ĶK±öW_،Ó1Ā#½ßŠ=2cŲ=ĒWF*’ē[Ėü©”på-rå˹vn‹Pļ $ņŁRŒ`.“ph ū0éj}ė\.©kH{¢ō1H+É1[„”’zb‰įG Ņ>A¶–>(vŠ\[ßĘ6Ķߦ-äŹr|2y¾ēgÓŪ=Č>ĘßÜp‡ćåŽM‰~˜Ł¾gϼ:ȒŽŽ~ņķu‹ļĒŚĻū{ÄxG:œe¢Oõ©¾PK .3|Q;Ėaģa…J briannesbitt-Carbon-d046377/src/Carbon/Exceptions/UnknownUnitException.phpUTŲ]Ā_]Mk1†ļłƒź"kĻj[©X(/­·BÉf£ܝ,ɬZZ’{'qżĄ¹„łČó¾3ÓēŗØ…%‰€> ćamJ üÖŅŲ5P”a.]f‘Kj+7:åŁ0ŽWxqF",µĻ L³ĪSK©²ÕS;śj]­›²eėg6ÄJ£4z–ĵu•$cqu©%×vFļćæ÷·łbł±Øč I°—rćə¬!ĆŽPĮöīmć”f”<š ”•öl’¼Ź×ā t“üDˆ†„.ĪU)½‡nŃīq…†.MŠҘ‡ęMUü ąˆW ‘ĄœĮäEÖ„mķܚńaeĮ6ną݆w# n¢Ö¹¹XųĆpŁnķōĪŲĘ·c£ųÖMĘGęŪ£Š;|«³½~ŌžŲšĆ+ņJćFĄ"ķ“käJ§‘Ęć[^§½.ō"¾—vZ…į•9˜DĪQÅ?PK .3|Q®ź²zpĶJ briannesbitt-Carbon-d046377/src/Carbon/Exceptions/UnreachableException.phpUTŲ]Ā_}QMoĀ0 ½ēWųĄP;ŪˆI“&ūøMBiźŅhmR%.0mü÷9bÓ|‰ņlæ÷lOīė¢bŲļ čĆk”=äŗDą·–ŽĄę@Ā\ŗŌ†Ō‡\ć€kCyWõ`ę“4°DŸj"˜¤į;5üµ4P¶ŗ;–>X‰ņ¦,AŁśÓéuA M„VhÖU•6Ń +ŗ*9¹ų6įZŚįFŪĘˆń­›”Ē÷4*³Z©Öa·•Nōp 7əõLȉ Š‹„‡‰#µt¼”ŃčŹäLŅĒƽ؋PK .3|Q~›a'߬Ó2 briannesbitt-Carbon-d046377/src/Carbon/Factory.phpUTŲ]Ā_ķ=ksŪ¶²ßż+Š3žcŖ#ŪM{ĻLĒiŅŗNŅśÜ8ÉDĪMĻ4"A 5I褄ɿ» €¤~ˆ’„Š&KEķ.ūĀīā‡żĮĪĪį×_ļ°ÆŁy_jŹH0ų;ąiĘTȲ¾`'<ķŖ.ł—¼'ą^¼Żó[ģēTņ„½ŗ+³ŒżŠÅ·?%šVe¾ŠŪ[Ÿ©”ęQÄ|5„²×ĻOI_$~2 UóLŖ¤Ķ‘ąpķJŠ!}ļłéÉӝ§ų(‚/ėóŒ ¹fŌY*»y&6”Y>ŲµŹS_ĄģįNĀc”|‡ŹĆž)§ā!½y-ĀHųųūg"ė«ąaA—cr?SéˆeŠõD"RžD‘‰Īxā m~ŽįŖY&“žv“śē™ ”_|=`Ż{w”)ƒi€Oß;zż¬«TÄę>O~'©Ąßx–ŖųQÕŪ ąB›ķ"·ę|č|ć¤/üKͤa¹•ÉX0œ«¤‡Ü%ĘYO^‰„ˆˆ®x$$²Oš3Ž“Ųģ‘;9ØN­aŸO!€÷ī6 U¼Ż‘ą){ľé^¦{ÄĄė€ģ«>šæ»A&°8ģ-|d6o²š"93œŲ‰!¼&V Żą#=¾ „Ļŗ~'’`óēņ4lF(i ņƒp#āóTąĀGFŗ"÷Ė”%j赐µs’Q“ł„č 3hʔšÕ2‰ęLf4Gˆ¢J™éꆹˆēQ¶ł4°¬"8:iįČ1ĶĶM›•ė6©Nń-Ś|*ø)žf††šėAFC”Łń¤Ŗ©Ŗeeß}eßŌŅF³F””fj§?s ¦i¦°w©&6P)Ś}ČN~«įr“uÕ3–" ?ŗLœėŃ¢¢© dĖĆųT«[‘†×‘ņy„ĘɞHöš³”':ā`j×%Ģ1>ķ¼t–§§Į;`©Dą Ä"yžÅžcY Ńj-4Ļ ē)źRÜ'oĢÉ $įxa²—özē^nŻĄe’dĻÜ3UźpK ²ĢSI–sĄŁ»G[¾&Y¬%›žD(™łÓ"ü]>Z.5:Duoeņ“ĘmLRńlWM$rŠĖ•Šä.ō hh©ņVĻ~T‰`ĘZœa…dH–—]k"h5Ą¬,&Ø3Č3 Ź }e$ĒšH·0R O@×āVtĘe‚/‘2šQ¬Ą§Lņø+R}¼s¦WĖ=w琬1X„҈¹&ø›ĆoĪO*lqæ±Ā-OlO¬–#n剤Ā—B cJŌ-€¼eūd3$ø‹³O9^~lQXŽ+Óįį\„°–½»Ó÷ö}aßߍlcy l£óŪčü¦c²Īo£óŪčüxt~³Ģ($&5×°=;ƔŠF ļ4”×h]<żą‹ŖīĶĒæ\®©&‹bŌ¼‰_ó˜'Od¾$*y»żń ÷iÆ’ˆA*|Źh9WŒ_) łFŅĻÓl(`¹‹HE‚± ™ū˜\4b‘ģ¦<•B·ĮnåŲ$˜6*Ӱꣀ8¢9ڬ:ž£r‡dŹa)¤ˆ$­‰żĒ.w$¹aEŁD$ėę’-›ŌõŁ$–€Ōs ńAų <ߏ¬ovd¼r’%Ģ’žŻ~Ö±Ńb?O‰ ģ!FĻūÖėm;8éŅ€k˜u†ą™ĢĮTøˆsł]ą¼+©rŖ§½ł BP*²<5v L±t£S}“ÓČ<0‡ŒĶ<~³&qõĶŚŅœ ō';"• „?ŠĄŪ%E¾© ēōĪšr ĄÜÖL[’>ó ŹŪ”ž÷SåķĘų–Å •*•:õßÜ;źÆEOj{€žŸė š$0Ę0ći ®ī\£'²ć+.#ŌfŻ£HYéxM̬Ͳ‘—eØ&<ŠĄswąŁ5­Ķ&l³€zP<€i¶$±w4@x§ÖŁ•½ƒwĮJŽD0Jx ź)€,ŽŖrĀs»żūwžÅœpš„j•Üą8ĮqĆ‚©īŸ,tņ÷ūS4V¢GĶŁ?5üĒę[…Ņ`›éńŠP=©„™FI’ cmĘ Z) &1ē(»ó%lŽøßē ĘÆ$· K@{½Ó=ļ„/mŗ±šŠĻ`ŅÅSŹ„ Ö¶CZĮ[P,ØŁ"Xe|”63ģ"ŅMČīĘŻPĖŲźJ¤© ā­Ģg/1ļƒÖ˜oć©’Ź5m"$üŠ·ĘZ1Ÿ¬`īgĶ·­36a©«;ä:`u¬vÜsƒ‘yEĮ€ūčkajóØ0"QĆ6 “īą“6ĖT¬ŅT ›PxŁ1„ Š—J“ Ȃ5 p#äw–:Xą‚ ųi2EęE%Ē'uFIĘ?¬‰h,ĢIÄ9š`wŸ2÷TŪŲÄM]œ"‡‡™ŪÄŚģq'>śŠ«@9jž¶b^:ŖĶ–JßīÓ^¾K†}Ŗ2‰éĖ“Lß®^2½©TĮ:dÓĀÜ4 ЧdÓo¦:“Ķ #ö›T攦cæ}1¼“&éŌéd&aÓ4FŠ÷M¢‚żōK`!)³ÜMR\>„Ż`¢ 7T)2ĖJ.Z4£6.ƒžX«‰ļVķVŽ%£Ö–Ļ“VóKłŠéś2ęĪ„ė¢@fMŠ„bÖpĄ@i-£¼Łć8¢]‘ŗŻā±ž«ģO5ƾpłSŲפÓXӏ/E4² ĘÓĢӗr`$ĒøŌ›O#D9&lŚ”…¹³`ea½p„vd¤ISƒĒ\?®nž1…Āb(µKŸXJä4ęžĖ֘cz}äŌö®īŃ ą?—Šcjo ź2łŪ£©į-ˆ×‘’ņƒL¼]ś³&ÜĻä`zāh—9Ė\Łz®õŲ+jSvŻĄ½éėgÖÅN§›A,€õ„¬ŁŚ»‡ŸwKū×tĮ(‹‚6{PÕmj1Õ\—3 ¶XĀŲ·ŽltQM„ĘZK“xB90ļĘwŚ|2` u¢­ū”eŽ£#Ƒ{g*Aū6L¾Ę^k’q˜€ä5ŕ›O˜č„yeoöY([œ—²ČĖīESʉ4·ū\÷·-r„Rȵµ “½5ÖYÅźJą¬›Ø• eŲ:u{iQĶ ‰mŌōĖ+‘†Ńź3Ų¶Cjł;‡4g¼LIbŗ"ķŲßD°õćA`x_W_(w Ųķ!÷ĶfQ ÷„Ź*zTœ’ĶaÕĄźhÓ^ü `Ż` ł°°r³Ž°ÆHəē H’;ֈDJ·–"vĪ•i÷ī*ƒļ…׎×E[o„2Ā5¢q•(T7–‚ż™÷Ą^kŚŹ„ļ8‹kdłNĶŗ„ńV×|£4&žžĘtq+‹×-‹‹NJo4½įŪF+”<[”SkL ڼG¶pJŹnzŲü+ӒÓL7U„6€ ’ī¼|Qņ0yKS·ęŚ57‘1Ēā‹:‰zŖ½ĢŠ3bʆz7µ—©‡ŁT—•É~’ś~±Ü …Z£~GÉIaŗhf²rĘwc²£äT3Ҙ2 $²RQZa¶wŠ‘ÓāƒŌYśŹ½āZ³=<z‡e›Ldģ‰[żī431®šłÉÅłéŁÓY‚¤–uQ6B”V߫琭 ©5¦‰Ė.Ķ2Ts‚y“ŽõąŪAÜ6Ka…”;ėNSyiČd¶Ga|ՌPtu [·-¢ȑ0–Ģ¢ŃQ³ŠÄA…ÆūMČÄŪūeÆÅ=b¾k¦ø§¤Øy}9™&ĢcģGœšęN®6½€¼ßµńģIü׌|d;·µĆŖe$»Ŗ’ŻĢ¼Xu"Xgfņ×—Ž ‹Ń™PƒT]ɀŖ!ģ-īpGŠĶĒŽ„6PĮCž r6!mÜ*¶…’¼µF¬}vLŽ» Ō[£Ģ‹cV2ö?(¶Ęé“f`žÖ¬[*TĄęļ]°į/ķĘC ŁßöŹwł­• ųgrZ†:•-tW "+œŽ' W›0{šķ½&QfÖįf³KK¬¢l¦1jē—4”°ī…²ēJ'In<ĘŽ9tpB$Œ©¼h°->šx@ 黔‹Ń„榰ź+cü]ģ¤nŗņ£„`OX›Ō’Ų*ЧPZscńŻŲv8WĢš;~óüüāüåEēüõé‹_.ž½|}v|Žn†vØ ›ā)»P`Ł:Z›4SŚ ”Ėāq=LĒƀAŠš_%[¦9£’\¾Ł£3ю·šµā„(=֜øFwćJ×Ꚃy’³š›½•%ģ¹¾ÉĀļ½Żž_OĪńV„Ō³÷\ߜ?Ū’¾Ühp’ž¢ła—ÄÜļˤ v4.ų€ń÷…ū@ņ"tŪ°T£„ńåĆ©Ōzr”ŅĒO’^łzŁ.•ZMóŻa„S¹=2‡Go«ąVŪæKćķ/Cœõ6 #„RóŅ2zk{Œ7gĄŖIUžˆ™KÕ )ćS!”VERĒu[æ€p”Ā *q;ž6Ūµ“iŠ_hˆ+\›łńÓ!&NÕ"ĆŽö’q¹«‡AģbžŃ€ÕÖ¹ĆõEnqĄĄ„īVäÖ…Č5źņŽ…·7ʟfQj^azwłÓ,:}yĀōĘ3MźKSw¦ Ó{N§[iZkܐ‡|±ü_ęÅižåŲš”VŠĪÓū4)Āc}~…Éر;ż·Y“*B­`A(‚ä šøyL£2Ū±JŪC_‹Ų uØ@ł®É9³ÄVžĒČc(Ēū÷ļ›…Ū46ķ÷¤ ÷2 ÷ĄmĖŸZϹó3žję8lĻ<›J'u‡Ö¼×bŸ>•Mׯõ°YųnBS¬üBe_"7Up®Į~˹÷ę…·‹vœ‰‰k±ƒƒ†YdSø«“‘č²ć `’B{_…aq asĘ®ÆņOLżWĆ–å°•f³W&ZžĮ|Ÿ=fß“©R*øó½ßę)“f”Ó„³Ü\MĄu®0]…VÜŖÅ¶ćÓ‘YŠ=$ŒuEŸ_Iš˜½;ž©ÕZøxŒ$ŌŪcÕĶkī•$5Z…ŗžkl:³UhŃKdĶBē'Sč÷®µaöͽоő4‡­Ļ[4š-ŹŽÅI!X-hRaMKTóOtĘŚņ²?Ŗ*_ә†,xEŗÖŃŃłėćēĒēO/ŽŸ?æj.åKLœõ[ķlņŃltqi8c3£ŅŚ€ŻKQa:}·Ų”Ó@Ÿß’Z%yÜiĮI%Ī6#½üE÷@LÓtż@Š®C‹ęÜäZL4ŠÜĒŽ„x2Ļ=ņśvĖ¢ÖŲ6'۶мy¬Ŗ=Y m ³VĪ žóäA½÷/u¶b§ŽØß‰Øžvoœ¹;Ŗ¾]—l٤ŽŲj§mėĢ›ĘßX7a=Ų5@Ąn/LšūōĻx(:šÄ;‘ŃyŽF€Š‰O¦õ‡)Ż`ķ¹ cż7{¼1ŁįE'×ø‡Jv€XÖ/üDqżį»ūŹ ļwč$;öŒcG‹ŃĪ_;ųĄAŖ2“£¹Kæąqp9:¢kw&ouś–Bīć¼įŁ9.Żįā¢h į٘ÅŲ׏°Fõ‡m›>“q[ÜŌŖ|‚cg}’qõ!åĶ‹[?ļģL|£M™¹’ólŒz";qö&t =ŠÜų@]}ą5&įDgBrćĻū×’ö53į]¹ļ‘¹“żčą§;Ŗ»¼^Įņ6’w ŪīFŠßiuåq¾ŖĘl ŁBĮ{Ļ"@³Zޅ݆*écEČwņŃš¾“É=¹r;=Õ,Ē6?īµYҶqyŽ=ņsu¾īļ(ėĄĆd O7 ’ĄÅ“µŁ„M|ž>“„LĄ„#O®§ų3E*4Vg?š’¦GGÄŽĮĮA…Ļf0­}‚Ó¼*œÜ@Ęų ĢķläM¬"7~tO©x®×ÜzänuėäóĪ’PK .3|QŖeL¦,6Ģ; briannesbitt-Carbon-d046377/src/Carbon/FactoryImmutable.phpUTŲ]Ā_ķ=żsŪ6²æūÆĄuw~vrzŁ=ÅÆ¢łe}ž±!7,”&Ke/ĻDȆ2ėĆ˜»Ńyų”&{ø£x" L߃ņŻĪNßk“§ā»Ē,āA¦ÓĖ4»J¤<óŸ9K’<ć=Ď2W0ö'ΰcD–Ium¼@*Ųī4Ū7ŁļšBĮ| 1œø…!ø'šą±Č n™d$Ņ£šƒøų›æ–g@3B>HKP ų!Ÿ§7>0ā©_¦Léa«¤ˆćĶGDO0ą˜a3–ŌīąI“f2£5BŻRŹĢT׊4šµPD<³Ķǁ#ĶÉŲ± „Ńs ŽijnŚśė¬Ų·ŖŗÄŸĄŠęcĮ/ńWIØY¾ČJ(T;žW%bµ"¬Ü[+ÆÜ›ZŅč¾QHØ{„Óo¹Uƒ$ÓØø‚DčUM$Ļæõp1ŅŗŖ‚YM…]$ĢõpQ‘Ōvf‹ƒųĢčO Æcš•“=”öš^Ź•‰9čÜu33ÄgŻ—^ól0X*1Ų‰PĄļĮ˜Ų& ŚķÅ”ęœ`žĀŽEÅ2ić‘Ä@Ž*{©ÆĒ\]ēĪņ[$J%c„µĢƒ–YęT¢å `n-Q—ƉĒBI§'Jjž4 {—‹.a½µ2ž96,"=¬0‘d`ŃA/W‚“YšA³”­BĄ;9ū»V‚µŠ×ā+¼ #ҼÜ^a»je±8€Až”Sõ+Ė)8ŗ?€»E±~²®`'°£3.¾DĢĄ­DƒM©ņ¤'R³ڹ0«„žŁi8kZ©“l® ¦ĘęŠÄ›«“ Y,×Wø„‰M ‰ÕRÄ'iBUˆāFˆ"bLȀø…)o d™r!C…›µXś‹±ņĀbL™.…§Łū'½rļŽśżlhsĢ˜ÉÖ;æõĪo:$[ļüÖ;æõĪ{ē7{ĄŠ’BbSp»Õs+LŌšĪ½Fķāō.Ż›¹]S=Tó*b”4ųčĻyĀÕsE/ K­Żžų…eźė?„bŠ€2Z®4ć·Z†Ø~F± 2€4 Ų®!ĢE¤B”/H¦į>ęX,{)O„0Š[y: ¦Ķ€‚Ź ģś8$ŠhŽ4«ŽéÜ™rŲ )I{b’™ĻNnIc^2jŻT²%“z£>™$ņPżØ!īDĀó­Ģś6"Ó*ć/Q®‚å›ż¬ė¼ÅAžø!zĻūĪźķųyŅ„7°ź §g“Sį=Īågņn„Ī ŠžĪę)@©ČņŌźA2łŅ­L l#k:duęńė˜(‰»ļĮę,Ó@{²+R Rśw¶vIÆ€F*ý÷X¹ÅÄ|h¦ -qŸĒ ŹŪ”ĮRŻŚMšl‹A*u*34źæZ:čÆÅµ4Ą÷¼ 7ĄIÓƒŒ§)˜ŗ×";¾å2Ęu·ūYŹJĒk"fc·-Ąˆ“,€Ŗxƒåī§ēö“±AŲV?ń yĖģPāžh€h9cW^+tŽ9+9įHńÄ!bI¼]„„sž÷fžÅ{(įLEz•Ōą)ĮS‡‚éŽo44ņśS4q`ÖŻc@6zČF =)uŪ  ācīwžĻ@”l>‰XhRą Z¹j̹/dCĶü ā9­œ)TĒOn C˜‡4ʛ*d–Ļ ™7ćČ^©ōxpć4ž•Ćč!‹Ü<·f6™Ę\é3£_W’›Vć¹ŪĀc‰U$žŃó ³p 5čÄ+3­ĘšŲ_Ą' 5I³Ā=U˜Y0mgÄZ‰HÆQołµqqq-ŅöÖ–ū’«[ēÉ1ÉĀžćœˆ—ÉT٤bVC ˆĻ¹ÉNÓT§k‚ł¤ŪLf”žœfIś.gM¬ČŸ&Œ°ŠĘqs‚ $‡ĮxF§G£[ œʔ ¬:MāÕlŲž×±ī‘QpÕF]qĪ ąRčŪgėZgԊ‚D=TŌō³mEk/~xĖ„Æ¼&»¤ Äz†_×Éąg l…ŲĘĮƒ›6ʜžp64 ¢EĶŁJæŲ|­°ōa™w ÕćJ˜‰`…ō£W©¤!'"²õāķ2WŻIUīÕŅ$~>’ø–šēČ䌁NCŹŃn·āüŠd'ø<8nßv!ŒŪf­JīzĒóī•oŠdwŠ÷—½š0kN„ÆČ¹²r.,±“cUšūc’Ś%‘V£_O°īTs’µNńZ§gh|GX"[X§ėŁÖ…ņļ0U‘G%©+ōŒ.€-æ«āT…f]ŒŁƒNƒęjP“–N}ČŗO³5ĮVX:2ż8hõT^MØpmV*‚6“s uĪī>7kØŚuJø62Ō b68ØōõŹõ€½nmøŪŖĄę=Zš}-br½żÆ AR»ģóÕĮü\H‰“Uc„ÖÕ:Hu˜˜F—ŗ™Ś$Āł!_·b<9FI=ä¾åĢ®¦Fdģų¾[ PŽ1x0Źś6eōČJjѼ®%˲ֳ“?‘Lé4ØÉc(t^Ŗ–¦ĄĪŗ}MYš‹"ŠéÜØPę°j I?Żł!·ā æ }mÖ Z)&!ēČ»ó%\ŽxŠē }Œ·’»„‰€½Žå~ģ‚/l¹±š0Č`ŃÅ)åŅ„k‹Vą64)–Ą¬ŲĀYem”³‰ė"6MČīĘhØ#l}+ŅT†”@öVę³˜Ęć 5ÖŪZź?sCA%Ą®xkµ{gkßz»:cėF¦!7ł«`·cŌ Fź9žģ£­…©U¬E…J;l$P»ƒ;–éD§©6”š²kA®/­Œ Iƒµ p”Gä7;Xą xWM”y^Ī1FIŻ‘ŹųŻ ‰ˆĘܔD”chīž.kńkݱ:QSO„ĖįQęƒX›=f¢£æƒ\ĢQó·ÓŅÕPo6WśzŸbł–-Yņ©ņ$"¤Ļ3}½zĪōJ¤R‡ėąMsSӀ¦>ś~±Õ”&@Q±_£ś%ūå³”„5q§nff6MŅœś¾MTpw?b’2ĖmŃ$łåSŠNøÅJ‘YVRѼµIéōÄZM|·j³r–ŒŚÉrąŅ~#0:]_ĘÜLįc^ »'hA©mÄŚé åĶĒńõŠŌG‹ĒśÆ²W<5čūĀķOn_›JL`L?¾ńČ% ϰ–¹‘Ė9nĮ¤Ž|!Č©°nmĢ- óč…/µ#%MŚ<ęūqõņŒidCi|śÄB<§ æū?,XcŽéĒ=§®]õ5=ös)8¦bu@—ź/z¬‡Ÿ¼’—wRµvéϚ`æw@ōDŃ>s¶¹võ2ÜĢŻ)ė±WŌ¦ģccÓ_Yļ;n1Ōä²6“·„Ÿ3‚¤ƒtĮ(‹‚6{PÕµ°jnŹ•]4al`o]Ta°Ö5žX¬»µ6 ˜B]€čź>Bķˆ÷čČR䮅VØß*qgó5öŚūĻ"œ×Wn>`”k•½ŁļŁĮ¼M^vļ,š2N¤¹-sßj“ÓT*5€¬†ļ TzśöO>ąJ`œä8å=t˜Č‚ƒö¼‚ƒ8OyLAAŸį·źŲ ·ƒ!OCĀ€¦\łģ“Ėcžŗ[”)‰Ö”éT]ĒŅōēn|›ņįɚ!/° ņ,?æZ³ÜJæ­ōŪJæeJ?j3@i{k¬³Jō­ĄU·^+ėŹpuźīҼ6šŪØ™—·"āÕg°m;‡ŌļҜń2%&ˆé"“'ėĮ6GŒ‡”„iL4öt}X\½Ōž źCž“ĶĀʄŹ*zœ’ĶaץīčP,ž„°ļBPŠŲX¹ŻGŲ€W(%9ky’ųŽS"Q…2ķ…°+mŪ½ūŹą„ į£ćuŃGĘÕ!šh|% Սe£`æå× /ƒ¶?­eĀg¼Ęµ“ü —f]ĢxĖė-7~MO2cŗøåÅėęÅE'„7†ĪŽ\£Šrž-Ó©5¦™ļ‘,¼rA—e[rŚå¦ŠŠ 䟯——% “µ4!  ¬½o o=cžÄē5ĶT{™gĔ õj/S²©.+“ż$Ķr”Ü2…Z£~GÉIa¦hf²rĀ÷c²£äT3’˜R…I©(­°gF»'č”iq'Mք¾rÆø1lĻ£ŽCĒaŁ& »DbØßŸff=ĘUžŸ¼»:»8½‘ŌŅ.ŹF(Ōź{õ²e$µĘ4#ńŁ…ŲV†jNŠ1oÓ±ž|=H:¶q)ģ04”pę4•—FLf{äĘ×ĶpEW’uĒšaÉ,5 LTųŗ’ĢŗLZ{?ķµŁÓ§ģÉ7Ķ‚cJšš×—‹iŻŽxś÷Ź÷Ėv«Ōؚļ+ŹŻ‘9<®X#ČXwŅĘŚ]įŖwXkŚ—ń[×c¼9vMŖs"d>UƒøL@…PFI{Ōmżģ€w:zG%0>āļ²=P:ŁV”ųfቨ·™?bā„Q#bPģ]/ ™”Q=tņ`‡ū ŲmŻØĻr‹ÖĄt·,·Ö(X®—32\Ų–Ż>Čš…©Ē2ÓŁłO³šōł1ÓĻ4©ĻMż™&ČL—œN;5¶Ü“Öx -ébéæĢ‹3<˱į)ķ“+ŪūTī±>æÅdŌğžŪ,\”V°Ąs†xÜ<¦QŁp¬6īŠ×Ā7H*Eor`Ļ,q•’I#ņŹńžżūfäƒĘ¶żćž4Ąį^FŃ˜m¹ Øõœ??ćfAŽĆõĢs©tŅtiĻ·ŚģƇņ¢ķZŠj×,ų’l@S¤|©³Ļ‘š’VP®…~K¹õźEkõŠē ×f ÓȦ`-vi#Į=]ėččźõńe÷üųźōŻńłł§±ęS¾ÄÄYæÕžĄ6Ķy363š3!­ć'°{#Š+L'£ļA9ųł÷W*Oz"-(©„Łe¤—æčæÓ4}?¢ėм97¹"w“±÷0C<™g‰“¾ YŌŪędŪV‘Uµ'«!MaÕŹĆyĮrž<Øwł\gĖvźśˆźI§ńʙ»£źŪPɖLź­tڶĪ|hü…eփ}¤čķ… ¾LšJ€å¬O¼ēhųd[ŲŅ˜¬;t¬’įf76;¼čÄā÷PÉ`ĖśEg¾v׃n›Um>üT¾ģ«`nĄāÖ©å­±‹c©×ē±yŠaSĢEXæ?Äī~”žĮ»Ć:Ɏ½ąŲŃbTB.ī2”ĀāĘĪ;ųKƒTg6ys—>wɓŠ'Ęųčˆn~·óēĪ’PK .3|Q, briannesbitt-Carbon-d046377/src/Carbon/Lang/UTŲ]Ā_PK .3|QŅ—1kńN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/aa.phpUTŲ]Ā_-ÉNĆ0†ļyй*”< ŗHEØ–s4q&ńØ®mĘc¢¾=NŹÉšńæ|öę9ŚXUĶz]Į¾,'Ų”3¢(„ŌlQŗąĖʜq¤ŗhgł¹‡Waōp¢Ō±*lŗy|ńe Z›pyś—‚,ACvLˆWįŃ* ļĮ±!ŸJ„‚\P9ųˆŽ°ģ~™¦Å÷~ÜīOŸū9jįS‹ &č9©p—•z˜Xm¹)ģ)d1TŠś¶™_8{æżŁ‡ÉCOf§ 4.u9Ń %*-v¤lйė-@H³ųbųÉ,m»;~“m½jŪŻ[]~qõXżPK .3|QJBém…5 briannesbitt-Carbon-d046377/src/Carbon/Lang/aa_DJ.phpUTŲ]Ā_„TŪNŪ@}ĻWĢ›ŃD}ém)B\$ R[UČ{'ö(ėŻx/$įkś/ż±ī®JD‘@õĖń̜9sv½ėO_ęõ|0ķģ `nk¶0eIpŽĘž‚« ŽŠZ…T9ʆé[å6FWd v>1ĢF¤†aƒ³]ų9ˆ¢Y·D›Įēż>•Ņ)‘M&ĆĖĖįšd»©x×AÖ‹uߕ]{µD8Eƒ…ōA:;÷BG<āŖbé։q%qÉÖv\b ci1F×h&l w‘Š£ ę–T|ū†+›¦LŲ‘LÅļÜčīķ—O¬lŗĶmŲj×{n}SXG(¹Š€•H.#“h;HIIm„®"v–ÜD˜…†õ¬ŃL‹żœq‰(ŅźŽ$RÉå-JD—²cS`‹õ†Ł¦ś©oھ~ƒ…ćgāKĮ21ÉÉ„ūŃ9K+ŸĄbń\Ŗaõ_BS6ÖåA*×Ó<Ŗ&µ}µĻw¤XŃŠŠ$Öūõ"Ƃ©éXęļ¾D8ŲqRG{ģĖöŹp7Taļš"„ŃĀå°`Ā‘ߞś†7±1Ė€'Gk£å÷ÆtœūņĖ%Ģ_ī}Ü»źz[žķ^¼‹ł«µ»†:üæ6ųørü¢|żz*毖¾Ūž8ųPK .3|Qߟ¦$5 briannesbitt-Carbon-d046377/src/Carbon/Lang/aa_ER.phpUTŲ]Ā_„’MO1†ļłs[@4QÆ-„„$ DˆÄ‡ŌVZĶīNvGńŚÉŲK~}mÆ 8Ö{>ü¾Ļx÷ģūŗY£““œĄSĆ–¬ü¾Fq`–ą‚ Ja“O•+¬ič{CūQy —ĀØaA¶`ēą¬į…ö”qĆŅ“ē©õŹHZvJAiÖ{įŗq€ŗÅ%iė-õŅH‹Ž>…µ"ō¹¦m¼7æ™Ģ³ ł\ƒ¶h”bė„‹ĪQ[vÆxvk:)ÉUv& wĒkŒŲ/įü ®)£Wø£“xĘNWŃüR¦DEö¢&z©£ŒėDŠą>Z+,Éļe'–_čHhÓ±äłōę!Ļ‡ŁˆōŠ?pv æA4ėG“|;O©˜žĒD6ŽīīFæüŹNcń¹ß²Ö#6éVvßéĀ5 ŖóŅŁōpŪU&Ä®kVßćŗBøÄ[Ū7ą+‹!ŗG‹0eī£Ź¼GsŚéxü{ķ¦ģHÅŌOnMŗÅŻ?L‡Ų¹õoīŽįr"M| +ń$DÜ“w2N®o^[¢Uå“ĻøD¬āx3§žŽš„ ŃÅģX Ü`/Ņ2ŪXæīŚMŖ?bįųƒųĮ(Ž"é'ķ¤›D“`ū(Õ²ž/”%‹u¹—ŹĶ2ŖQķsŖ¦|ßŖ!ŚŹAWKĀS›@,ā*~ā2üįĮéłųėąPK .3|Q1ƒH³(; briannesbitt-Carbon-d046377/src/Carbon/Lang/aa_ER@saaho.phpUTŲ]Ā_„’OO1Åļłs[@4QÆ-„ü D‚Tj« ­fw'»^;Ū$įÓc{GŠ“ĒīŞē™÷~vrōuŁ-G£ÉĮĮą{§,”&ˆėك]€ļĪ‘+k¢T?aKćŲ›Ś÷ź}8c…fä*å=U©<1±“~\ŪžXZ/-g£EŠj»Ü²j;hŠŖ&ćb¤YXīŃ+ka© £ö¬hēnÆĻ/fó‹d•ł|‡Öč QγŖ‚§ÖŹwń$²;ø¦ŌdŲIŗaš= ¾³ģ>„żø¢‚^ą’­ńŠ82Óä|ˆŸ¶5jr'-ŃĖŲr›m˜|`ČŒŪ’i©±¦øÖz¦=¦UPLP–Ó뇲2ćųĄÅ!ü%Óbø¢+ąĖ±HY¾ĶB1Nīī&æāWęĆĒa)śˆŲÉTqĢį +¢u1Ć#܄ʦś\µ­Ņ߄ӶA8ƍrnhĄ vpŖ¦źĀT1«”jģ{uK+"“·?pėrÜTyŅYś©z;ģnpóÓ.véā›ūwxARį,į!tɖ`I}ĖZ=5QrfX!̱Æ0ĢqøÄuČīX…ÕŚŹ·ŠÆŠ/’_X¦’Ų¹NŒ{qoq_ńü×ŖW濌Š/£UierĶnåTō”)¦jKČ;]=±jõāŸņĻ\§yJzÜ’nP˜ø†`ŠRķKåkł½aūQy ĀØį–lĮĪĮiŅsķSćF„iĻŅÖK#“ꔂŅlĀućuŠKŅÖKź•‘}EčkĻL»xny5ß>Ģ*śs :Ų”…Š­.:GģŲ5¾ć½[ÓII^؊fĒaĀpvҹƈż֟`A½Ą„ķ˜Ä{ģtõĮŹ”ØČž×D/##uĹN4 r”Ā’|,;±üLGBŪŽ… ĻgW÷y>ŹĘ¤Gž‚³ų=ЬŃfšķ,•by Łl6¾¹’ņ_v›O}ČZo±I§²»Nļ(XØĪ£³ė®2!N¹®Y9„פ®.pĻÖöp L”ŐݔE˜±÷Ye޲%ó–tXżĄƒ*3v¤bó'·¦_]ćž+ļŻęÖ_µ{óœœ&£É^r•ģ$Ńm“zŅNĀIõÆÖŽh]y‹IgR"Vqŗ¹SD:ŗ|D…čbu"n±‡“Ģ6ö]»Mż,€æÅK$~b'n‚&`‚}Dµ¬’ ä!¹Yå+ėņ@ فP"õóėpÅŌ&)‹øŽX†_7°žŽæžPK .3|Q;¹nƇ 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/af.phpUTŲ]Ā_}VķnŪ6żļ§ø?8βdścpėdi¬ ⬀‹ƒ“tes–HƒqyϳŲōÅv)R”ä |yĻį9÷Š™·W«ÅŖÓ¹8=ķĄ)|^p ĻčwŔ™Y ¼gj&„’%›ć9qż$éĮ;ř€Ō3n ¼¹įo‚†Ņœ'²ø Ō[©J”Ģę9$rµQ|¾0ĄD 9OPh²™T3\Š3XåČ(÷Āq]Ī»’ųžęa|椏śĢ‚X3 )×Fń™5˜Āš›!T»–V%HFiYģ…ėŠĶ½¶f!•ī»ų'øUL|ūW’OÜ į£fŌ¤öćO•BH-|ŹQk®K-…Ę*“ŠÓŻ S]\B·ŸH+ üÅ(qęA6­į§®(±ķަ­p^å )Ģ¢…ŒŽŁ¶9ĄŚ¬AwnßỢŃrøl.±ń²aWSŪ1Žŗ­RÖī:eóm .‘ēL“ҶP“XŠ6hAÖ6–¦F2AŪ}VūåŪzaø -×~‰”²fŪ™ęŅ4&”kó6v•£±ĘDŠvæ—²^g?B][7§8ėm¼H;6M·-¢?›Ė€^ Ģ1ĒzWeJS!ÊKśęKVœ›TĶŁ‚UŠ éćĒ&öBÓćśņ,«u¤mFĘ-ņH{œĶ÷Ń©Ā9~]5I'Wż§'ż£,zW-ž5Uēnx˜ŃRõÄcŖFR©ŖƒŃ·’Ä[’%퀢?'ż łSØLßöÓ>|čEą`Ü@śZ·@ ‡£Ńşō“Ą …=°ļć°oi)=gpŒüŚKXŽ“Bj·?Ķ Vė2ń«²xj¼a'š«©iå;<ĀśĻ/WLöY9Ó -æÄÄ­›Ü3¦Ÿį˜¦kć&×a³ßļ4/UŹĖK0³"q×!œü l1CՃæ£Nø…r~Rq`0Ą+Ųn”™ųµ™øĄ/?÷ąŠjqGRŸśĒnļM)żOu”ā)GOLŗ£ī}y£nUgyՄ-Ų½cĀ2ÅŃqnq¦ā`DGqĮõJń¼Ģ w?wVxʝĶ}pmēV«]<ʕAWŖü±42„ņ%¦‡Ø}Ü®hŖé‚7u]”¤Ņ:–Ņ.$”ŠžĮ9øĆčåī::ŖžĒŅ;eĆU8äB‡š‹ÄŻ1«ĀąQmB4fĘgw-Z ‘Qp A=É ·/U],NČėxÆāE¼†—ˆ WŚø›x*³śŚUßä.ļIu£ųĻėĄŹéė ī$N€œĆó›Ī’PK .3|QhŁ4·õE5 briannesbitt-Carbon-d046377/src/Carbon/Lang/af_NA.phpUTŲ]Ā_„RĮNÜ0½ē+ęX-^õJ)-% X*uU…Pä$“µ‰Žķ]ķß×±½[RŌS}ńĢ{/óžG¹ų<“C’,f³fšŌ čÜ=p2 0-Ā5§RIU¾Fę“£ü¤:…Æ$ø„GŌ„0.ʱż"]« «T„·Šü ĘvTjŲ“X·ø¬”Jķ,e£ØēF(9‡”Cī°­Ą’īįžśęqu3ŽņłLĖ ģø†ZhC¢“kŲ Ó:Ęe׏R…ĪØöa ”±$ń}A8t¼BwW–“Ųā į/+”(²ūļEĮŅo˜ŪL:‡—ÜI{$Q ģSųt /éÖ1©L_ēŻ!nj¾×‘])Yóõ(É9?”™:–?ėĢi‘bóLūX­ø čß…n™£ .,8°0=tįz&ę±÷£z!’kPƤi^ri9 E·Xұq;p]q5č<‚b¼–VÅŅv”ø²k«ÕŽƒ}‰46ß6FÅņQmp†:ŌÓD“¹\,f o$Ćb6 Ćb£°ƒÅ,ڳhżg m ·ÓB5Åø^ļżįĄś’:īÉC~xņHzwwŽ÷éü-±zÜk=!õӝ³Å“ö6]ž„ÆI6#WC›ņÆšÅ+`œ!°„XZdtI®Øœāä@Ųø¦e»{;ŽēćjµõS ˜¹ØšT•fXX}Ū“ī%U±Ō‚ę­ģ`„“J”ļŹB0Ž/§÷qģwŗ¾}`wožPK .3|Qqē°¾e(3 briannesbitt-Carbon-d046377/src/Carbon/Lang/agq.phpUTŲ]Ā_„S±nŪ0Żż·)1 ]Ó4-š¤H€8C“„)‘DŖ$ĮžŅ¢KQ “€®5uš–YmžØR”G:•ƒĻwļŻŻćµ’:”É`00„KŹų,"`l‚¤ღ‘œ nB^ˆ26ܚ¾ćķĀ[ɇs¢fLk؟Õīn\”ĒžˆZź;!m!?"šD2—, Ē1peZr_Či&ų’ˆ »a$³yg§‡ĒēĒu)«OS¤!C 0SZ²YŖ †Œij£]‰TzÄ4ĀVģd ‰N%$%š»’$ņˆ±^*»!;’|L™$ąŗG§ļ]wģL›É8#ø€9NL$Ìļ:€+ƒ:×£†‘b4W-C«t•s­Ŗ¢&Z/ “ņnė“ŹÉÖÕU¾¾£r¹ ÅeŃ”ėĻńc€ćEU„U¾Ź«¼'ĀUTHŻJ1*ź¬0Aµ©ŪŚ"Un‹„1iƶ^ōÆäƌ’o­XpM7Ć©µ›ŪžžV’ņņŽ&w‚įŸėŪEyæŹ{®!¼śŗ¾ h3Ļ.üšłżŠ_Ÿ:hYز ½nژJĖ€°Hō„eåOæžÓ/e„łixa–VŽ÷X}ČӌDvį=Ō£Zåå]ˆdāŁü¬\Šg3ķīŗfX‹f3¶Ł…)҈^¤v?©åśķ;ÄM4j—6)~¶mč3©“kž„+|·~¶ė‹ jæßvĒ6dĆg—6✜ģŦšSąā ²§Tl £ÉtņĮœ“Į`:Ž ?ŧ‡~óG6žÅ57æŽ}9ų PK .3|Q3I1ŚńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/agr.phpUTŲ]Ā_-ŪNĆ0 †ļū¾LØ}&@Œ"MBāp]¹©ŪXĖ’ą8T{{ŅŽ«ČĪų’Żc“±Ŗšķ¶‚-|YN0²#(gDQ#Ø%Ų£ōĮ—•9įDuŃ.ņs ĻĀčįH©gUŲõĖųäĖ“6įüš/} ²Ł90!^„'«€~dž|*•~ rFåąļ :²ūešWßŪaß?Ū%jåS‹ 3&8©pŸ•˜Ym¹)ģ)d1TІ¶Y^øxæżÉ‡ŁĆ@#f§ 4­u9я%*-ö¤lйĖ5@H³ųbųÉ,]÷rųčŗzÓą$Ż{[—oÜÜWPK .3|QO DĘTM6 briannesbitt-Carbon-d046377/src/Carbon/Lang/agr_PE.phpUTŲ]Ā_„TŪn1}ĻWųmŪŖĶņ†T ō’"E4¢©B•5ŁÄfwķŗFĖßš1üć];i@•‘{fΜsfœäķūV“£Q~t4bGl.¤eKY#£³ć˜^2']YhE©¢‚Ž ąÅ!»4»E»Ī±·‹ž+ µŗ9‹ŠŚōDK_׬ŠmgäJ8Ŗdµ,PY’TKmpR«cÖÖ”{”øīūn¦W×·wׁŖ÷ē8¶ĖJi‘ ļ°dkéUČ»ÕŽHBeo6†Ž ļ„6ö4ÜOÕh ?}f¬ĶŠŃ§–‹āźVĄłĄ±ƒ”Ų³tŽ(Ę@Ē ¶5Hgį•x`š‡—ē“égĪĒYŽjLūĶŽŁ·Q`φ mĘŽÅTŸ¾éŁd’Ļfłż}vܗ†#k“r"ödŸŠYŚ‘"Īģ£oe¼~é ]ēŠłĄU…)«fŪØ\ĀÜĆŖņßS4Y¹›¶Šl‚;!UBŻAEŗļZ䖖ė¶F£Ēč/z‹¾¢„č&‰\OŗQs#·F¬JčŅNęaœĮ/ ±™ßÓlÕÖ4ngi6«›6ŠĘė%8Ą§s%”Éę>éDd/2¤‘ļ_Ŗ†ų’‡h)uœØø^ņĄŚ³½ŠÕ˜@”¢ĮōØ×齊ČRb|‘ŪYŠ›Žģ“Š“^ÖA’‚yĪj“–¬%,jŒč—Cæ˜śÉWkƀžūYf,š=Ų7ūż Næ¼ęY…r0𗳂ž£v*æ–æ=« ö߃žįšĶčPK .3|Qīō6ņńN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ak.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ Ū€Ih>Ī•›ŗÕ,)ŽCµ·'ķ8Evžædū8Ł©(ź², „/ĖzvłœPBj v(mšyeFØŹŚE~cnįY=œ(¶¬ ŪvŸ|ƒV&œž„/AÖ >9&LįĮ* ļĄ±!s„Q9ų;˜aŽż2Ķ«ļżø;œ>KŌŹ§fŒŠqTį6)u0³Ś|“ŁcHb(u+l½¼pń~ūчŁCG=&§ 4¬u)Ņ%f*7YlIŁ s—k€&ńŁš“XšfühšjSćŲ¼¾Uł7÷ÅPK .3|Q?`ęW™5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ak_GH.phpUTŲ]Ā_„TMoŚ@½ó+öę$ŠA½¦i@Š€P5•¢ØŠ¬±=Ę+š®»±ų=÷’'’’Ug½ *ŠČ„¾ĢĪ{3oŽģ".æÖeŻė ĪĪzģŒż(¹f_#£Xƒ2LĢ”ČnA„R”­`‰}Ŗuå'Ł)»Q»GrcŲeźŅkA©4żLVW”t"U'TŲõše²Ž(¾, ‘³5ĻPh) ©*0\ŠsVÆ{įŲt}³»ŪńżĆŲIužL †5 YεQ<µsÖpSC޵“*C”wfnC×;“¦”J_øsĢģ›AŖŁ`Ą³o·L;hMH_Ŗ%YK³Öu ×^±…Žé4«„`“(¬×!ÅĢ*Ķ_šDį/˲$Ż}O’~4@Ń§ŪŽĪŁĻ£/ņūźˆ}¹ PĻ: z¢o0ŸF£č¼#Ÿ}ˆ*)Lŗ¢ŗBˆß~×ķ¶n_‰GÓVd”Ąå +6NŪ׆V; å ā¹ą:Ti«eƆ+4!…xھRåU Ž_øŽćį¦Ż6²”•­¬Ćwy<å)tW=ā…µ4S;‹2AĪā·?4Üåä§ŻźvKNC0`ØŚmAŠń"µ©w6§I~Koęš.MÆjv7BuŻ5„8ŽĒ…Ón•xŲ9÷Ł(ŌLț7įiŠ]ÓÜń»™ ā*‡Ķī¦ jžūŁųÓ š§G»²žōœ„ņ9Vō9¼S>Ų‡ōƒvŖAŅ īōŽKU\ü—PĮ•6 I%²Hœj§ö)°÷EŽuŁATUØxĪIŌŽwńčfų‚}Gt‘I+č”Ąš«6ĒHŽ“żóÓ8`S©mµoÆ>ą ł {æłŻnŻ£ī(ɑ¾ēÓϽæPK .3|QO2ańN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/am.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ £H“Š0Ī•›ŗµ4)ŽCµ·'ķ8Evžæd’<Ū¹(ź², „³å;‚|Ī( aµ”.ų¼2©ŹŚU~gīįU=œ(v¬ ūn_|ƒV&LO’Ņ÷ [Аœ꫚hŠ÷ąŲ¹ŅA&TžfG˜wæLĖęū8šÓW³Fm|jQaĮ=Gī’R «Ķ7™=†$†rQæĮÖė Wļ·æų°xčiĄä„Ę­.Eŗį±ÄLåf‹)tīz Ņ$>~ AŪ¾?Ū¶ŚÕ8µĶ¹Źæø{,žPK .3|Q+ŅhŸłõ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/am_ET.phpUTŲ]Ā_½UKo1¾ēWų¶mUq-„ś@•Ś€ B•ålœ¬ÕĶ:x½ŚP!ķ#‘@ØÄC QTEm¹ńcüO{ɦJrAģewf¾łę{ģ]¼Õq:•Jmn®‚ꊇłØÉ\ŠąŻ!B"ŽDŅ”h…ˆ:÷Ąeļ’­VĆgģYtG0ā”mź×™”h±®ĶeL.«6o/eŠu. Q3p]dóξ`-G"ā5ĖlźłPŅkrŃ&’qou\JĄ·Ēh×ämn¬¬mß_ÓTFŸtˆD]ā£ó„`õ@Ņź2é@“ū<6…B #¶¦;Ō¹·épį/čļkč.µčZܓŒ Šx SĮćr›øŌ_nQzPå¢eh•š‚ģcA;.±)¼ķ@ųlĪś8`‚"ŒW7īa\µjŌ«Ā[óčQE“Zi‹¾…n.e.ćŽ4kuµ¶µU{5o‚;éĖjƒD'˲TļPÅG*ł¦’P…߁ÜRżžŠŽU8ģ ß©šTEŒQż#ˆØ°Ÿß«äŌ|õžYž&¹;žŖz@u©¢Ė4įBD*ü ¢OĄœ£bØń{ŲõZE?ŹØä—N/\妰;"G[+55¶“A/hŠ ßM©•įĪJŚKŖ ½]JwdæŲ†“½TIFz¦ā¹P`²OTōY%é‡/Tų6’¼2-#z®’sčåJ¹ņ]-ŠJU’MÉ6óžKA(†y7™š%ÖÕµµO‰0ÕÆēƒBk0Ś.†J%ł`Ę'Z”hӌ‚ĀZ°įTK¤b½7&'CL<‘bh€Ė}üNs’ö„Į²»QއēśĮķNE<ØŲ‹2(zbn†,:!FšŲÜąĄu<" ß²ŒĀ™&x"E¶ÜĢƒßĄČŠž©č™Š‹-É{,€ą)4)̧6÷FÖn‹ų§¹¾ ŻžTĮÓ©2d‹§ łÉŚéū“-SSš6öx6ĪpI_ßä=8„•Ł•æPK .3|QW]FŒšN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/an.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ £H“Š Ī•›ŗµ, ŽCµ·'ķ8Evžæd÷m¬Ŗf»­` _–ŒģŹQĀj ö(}šeeĪ8Q]“‹üĪÜĆ«0z8RźYvż2¾ų2­Mø<żK߃¬AcvLˆWįÉ* Ą±!ŸJ„ƒ\P9ųˆŽ°ģ~™ęÕ÷qŲ·ĒS»D­|jQaĘ'ī³Ņ3«-7…=…,†JѰĀ6Ė ļ·?ū0{hÄ섦µ.'ŗį±¤Bå¢Åž” :w½i_ ?™… ėŽŸ]Woō]{ŖĖ/n«?PK .3|QĒ–ŽŸžŃ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/an_ES.phpUTŲ]Ā_„TĶNA ¾ē)|[@!Q„ž(„“@% Tz©*4ņĪzwGģĪ„łIŽØ}†¼X=»“@J u/ćńgžl'sųiROƒńŽŽöą{­”Ŗ!ąs‚Öƒ)Į×'hs£Ł%ļ±¢ĒĘš¹ _¬B ×ärå=ęńz¬łjüHšö(…~5¶#*CӀ4“¹UUķu’¤—Ō„±-zeō& !ū¦Šf]ŽåłÉŁõķY¤źōł=ĢŠA”œ·*ž ˜)_3ĀŚ V*:±ćŲaĢż|m¬;ˆö>ÜšŅ£ÅŹ°^ø0¶Pp…Mƒ²†›Å/KCøÜŻ ęaČśÅ“¦GČCµ_5*—ū‘ؐ;®t[ ¹š3åńĖK„;%–|°ŠZœ K.G|Ź`šŅŽ„‡ ,§ē߄ecŅ#ŽQ6„Ÿą/ė§ä2ųx”\ū²sd§§ć««ńž²aŽõGÖķ딕ÉZi²†I³’r›Ģķcg Ʊé=óĪ!ė WV£LrcĪwNG^QĖ<ńb¤ÉŌfśģG¶5ĒÆ ŽāŸe%IIN“¤ōõu,%¤ś©rŖšź­jĶˆī œ/Ū/L«tŸŚķR1O½„Č>„ŽęniŚ›¬ŽźŽt˜ca^‘ƵĀ%ż‹V˜:±&ĘÄöšŠõżQ©¬ó‚©„)EdķŲŽ%4łū ˆĘۜ˜;F½ś°•';&hž».~›ō³Źę›_,~ nć\ø @±)ļytk £5.Óg[0›“W[ƒ‹ÅÓ*»Ųˆ Ų×Ć5?RkØ%~Oj^åx üŖøčPüöPŠK0Š7ЧŃ+ĶĻ趀£kµŲåņß(Šm}Œ#itńפ« ‹‹Ū¢ŲJp·ūašPK .3|Q"żBńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/anp.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې*”ų8Wnź6Ö²$8ÕŽž“棳ü’Żs“±Ŗšķ¶‚-|YN0²#(gDQ#Ø%Ų£ōĮ—•9ćDuŃ.ņ;sÆĀčįD©gUŲõĖųāĖ“6įņō/} ²Ł90!^…'«€~dž|*•~ rAåą :²ūešWß{»?ž>KŌŹ§fL0pRį>+ 0³ŚrSŲSČbØ +l³¼pń~ū³³‡FĢNAhZėr¢K*T.ZģIŁ s×[€fńÅš“YŗīŠ~t]½iŠĒ®=Õå7ÕPK .3|Q‰­B:Ó6 briannesbitt-Carbon-d046377/src/Carbon/Lang/anp_IN.phpUTŲ]Ā_åRĻk1¾ļ_¼L[Ö]¼j­Õ¶B”ö ^Š”!;“™ MĘ$Óeož ° KA ^R-k)"(ŪKūÆäOńåĶvŗ³ÆœĆ$ļ{ļ}ł¾ä-?*²¢Õź.-µČy™qMž3kA•!2!&cdŖžE{4eØõå Ń"y¢8d›é7†,÷|ø* ”¦ÉžŹ“ō©TH””yN"Y O3C؈IĪ#&4)©śŌp)ڤČlŸ³ömm®mlæŲšTØĻdԐÕ$ęŚ(Ž+ ‹É€› 2 ]ĖRE ŠQl×;ō½K“I„ļūż]ŅĖØĪhšQµšJ™ę,U²,“׍MŠ™R B•¢ĆP±"§ƒ5*•ęūlA±×%WŒ„įśęó0ģ]&:pA›¼jų‚ʐČƕ)„šĮz÷Ywg'hcb·Z‚¾&›vĪ;{źģOg滓7@ Š74”sg/1žčģ§ :pvŒ1 #gŌ…£jwģNŽw¼…dÕżGĪNĀVŠÄŁ+œ…Ę3 ® ±ź32Ž$*Ż č 2LjōNŠ“jx󟘯½Ū‹éšęŃ+‡Wųæ¬ūAĪ4Ń@Ļ‘ļ 4ghėėmō½³×ęĘhiž¤_Ųz8½Įłœ÷6Ó1ļbī §^ę•7’Mēä5TŻÓēāK”LĀ„+mBÆĖGCFźŗw=’Lń˜³~-vŒUMuuÕø?™pļh&'ī.>hżPK .3|QՊ.äć2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar.phpUTŲ]Ā_ĶW_oŪ6÷§ø‡¶S·i<“¼¶YŅdh€¤/ 0®ČÕC¢“z]š¦YÖīKlĘę,Y—Ž0¤ŸDś6;R¤D)ö’ī„ZÄ÷»ćŻĒ㑼·Ųsz•ŹüÜ\ę`Ė”ŲŌ%€{FČ °9a7š2Ÿ;äŚróšY‡å><&Q—2÷ŗ\üŹG1`·ĢĄ{ MæBįČī».˜Ao҇į[ąR“ų†ōķ ō Fæ=—ˆķR²'Ę­Æ=\}¼¹Ź] ~Ģ1ģX4b!ķö±`25Č= ś”I0%ČĪóņ±K}ęaŌāæoĀ#6,–\ 5„ååzŖZ놆C=XŠœM'p ź¦ųĘśÖ Ł•æ÷0ģ¦Ń„.Ō¼TŒøōÅēŅĻć[ƒū÷ū;ųρڀ7 ԻϼĄgN÷”]üŖÉŪä0%oćójC"Æāćų¼„½‰Gˆ•¹ Ž=Š-P>Źdü^Bt½|ˆĒń?šß1ś=A_Ēyģx˜¼FģHĒŠóQņŖdw†ŒĒÖł²R 뇾šź€aī?źõ\\ÆZõ»jŚÕ·_¶Ģ ļ3Ąį‡ńoV_,¼Ō„f*œšdq Ól,,“µAČnŸÕĀķƚo·‹;uIŅŲž¢® ńWņ=ĻcJ"šR˜Lb˜[–)¤ -3@bgW0ņ’ÄÄ^(E ©Ó،qUޱ6/&1ŹŻi©™M^–1ųoRb‡æ‘„4”)…)DĀ(µ,‘.“Ä|r ¶ū«v/¦õBŪæšŲTā“=,”Óö°t¤„c–ŲxŌĒ£ń 6gÉ>ĘŚĻłfLį„j ük²?‰SīLo33É+"fą[W°:Å¢Ä#4gUš90…Õ)?øĮ$V¹3-[3Źk'”š–ٟŠbŌ#źÜ·ĆĄŪöƒ½ŌB؀Ūś9ˆęń„›‘t»TńŽpŸżt Ž ‰Œ³Ķļ Ø·ØmēqŹĪ…–ŖA ½ź?e‹ķģē½²am±õōitöa|V_T"$w[}±ąl@"œQrˆ—Ÿńd‹bHaųŃįXąa˜%ąC|†Ęļ&šĆ”eņ.}tĄtEŹÓ”k#Ę]ž±Xä2Õtµ9eŪ#! ,¤iöƐų&‰¦Ō<8Ļ ]šŁ‰Ć±Éu.T“ū§ō”UøäC}dækør¦Æy fXŃ4bųjĀ‘‘|k@KČECā[šYü –ŪEĆōM ōņ}PPlGų’aŌüš‚Ė’Žl§[bæēY–d„[żPåF §)Š’ʰ!ęāX59ö?«łŚJłw̘<ødÅąC”Ś)1ŃØ¶«:—2‡r|=¶wJL i½ótS”QšÉs¦•ģŗ#æQ‹”N }a®éEc»N8>ī„ć¹Yu#ŁÖKõ°sX”xŖ(’ę5ÉÆĮZéyMhßiĄŻŽxo’ PK .3|Q/ß& Q5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_AE.phpUTŲ]Ā_QMoŚ@½ó+ęęń”^zhÓ4 ¤RȔɄŖ"kmÖx³ė®×Aō• ”Qq€–|(āP„ædżo:»68(·Z²wߛ™7oĘ{ļć0®TšÕjŖp²QĄ3&R@…ZDz‚#å_>m`®IßńwįP2Āį„&S ö<8B”¾ģ©…“BAEą‹x$Y?T@x"ęSž`K9 Š ^ƒ8¢¹KF‡¶īøÓ::9=2R֟ ‰‚!I Ē%™—*ڃ!S!FŠ{"RéSlŌ³f›fBSū!U”ÉsÆCē° Ÿ"į‘ˆ}·}”E¹¢ŅLŻƒ˜*ŹżQ ¾“%ąTjH$š!žČȹ愿z?bž_„O"šōyڲoKŖRɁHIF®¤qD|ЧŸŹ„]ŅIæ„ %]·Żłģŗ §Id‰SƒÆ£īäKIx·_P–>¶„ÓnC·ŪE‹ų85>Ļg ø ‹:'»É&zžŻčGTv²+½ŠĻšµž#^™»ž™ę×¼OķĻl²…Ęk„UõJ’)4VØńk¹¾že?O×U¦ŁÕ³ų:YxŪæ›ąS[S””ŽKē„ėŅsé·ōZś,–ŽJW?CJ/zd“Ž(v£Ņ~°¹ĶõŅīg²a–9‹ļĻ 7ĆM/ōÓwŸ]Ū^k|‹<é_l}Ā +[ĖŃw¹}[““ß|-÷ö{›üRcĄų’)L&ŹE W®‘³2ƋhĮēI&jЈi³^Õ*ē»o+’PK .3|Q•IĆ^P~5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_BH.phpUTŲ]Ā_QMoÓ@½ēWĢĶm”qį„”&Ejz ½ TYkgÆźģšõŗQøU¤QԁrH żP•*ædżo˜];q7,Ł»ļĶĢ›7ć½·qW*ĶjµU8 Y‹(ą©@ B -"=Į‘ņ/HŸ60פļų»p(įpB){ž”P _ ö‹Ō÷BZ” "šE<’¬* ¼ó)O°%„ÅÆAQ‚Ü%£C[wÜiœ)ėO…DĮ$Šc‰’ĢKķĮ©#č=©ō)6źY³M3”©}—ŖPČ䕹הsŲ…‘šHľھТ\Qi¦n‰ALåžØŸŚp*5$ĶOHdäšńŅ~½1ĻÆGĀ'MśÅÓOeĀ.鎤_R†’®Ūī|t݆Ó$²æÄ©ĮēŠQwņ„$¼Ł/(K[Āi·”Ūķ¢E|œš Ÿē‡3\…E“Żd=Ļnō#*;Ł•^čĒgųZĻÆĢ]ĻL óĒėާöŽg6ŁBć5ĀŖßz„+Ōų‰µ‹\_ϲoˆ§kŒ*ÓģźYü¬ ¼ķßMš‡©­)Ź Jļ„óŅué¹ō[z-}–Ko„«Ÿ!„=2Zo;ŒQéN?Ų\ƒęzi÷3Ł0˜Å÷ū†›į¦śi‹»Ļ®mÆ5¾Å žō Ī}žķdk7ś.wok–ö›oåŽ~oóy’Õ0ž “‰rQƁkä¬ĢĖ"Zšy’‰4¢DڬµŹłīėŹPK .3|QābĆą(5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_DJ.phpUTŲ]Ā_-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5(ułĢj _ę{ó`žPK .3|Q€=Ä8Ķ®5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_DZ.phpUTŲ]Ā_ĶW_OG÷§˜‡JʔpūP¹I(*ˆ€>ŖŖ„Īw{x•»[ėv„y!Ō„ż­•B–"ŚśIī¾Mg’ÜŻž± éK}Ā3óŪ™ßĪĪĪīŽ_č“;•Źģōt¦įI›rši@’wœXóA“ svÉ=ÄJų”[ƒ„˜:lŽ¢BĄż–?PdāžĖ‡ś‹•#æą²Ī^LwŪœČƒ€ŗ$ā2ņY:‚²h:qP÷œ’ž·¾öheskEŗRüDŪŠs8x”‹˜¶ŗ‚xŠ£¢äĪY7v ņŁŁ|†‹]Ńf1oČßĮcĘŪ°Åbāky‡Ļ£üņ«ÅՕåĒø kÜĮŁs-/ āƉ`1 0å ““TÓ¦ ÖvB$³å“hS”¹”>żø¦Č|²H“9<€fš«&ēÉqz˜¾NŖ3Z#§Æ“KKó69N.“«LNŚž؈Ÿœ§}éՖ%:=J~µ|ō“Ó\ŗJN’Sōr’\Zˆ7ØėŪ:dŚG~eÜś½Źu۟U*1Ż8ʦøGœø  ;.ĖTõŪź 4«/ē^5\֍ąšCI Ŗ/ē_YB] §HžP*¶ė3óóMkœ§œšęēfÖ"æYöø]3$I`”’¦ßÉRij¼›ą²č‘M½!Éo2Ėf{ćž>Ģr£4gZ‹?åŗęāD/…īwy@˵5ņ9f̜V¦bšuPŻbbQE>—aĆńķŲvÜ11ńX±"*ä»ä¬ˆ”ÅČ|g~3Ÿ¹Ē_™§Aš!ķCnöiĢåŠļķ0æøĪW2©× i•RžĀų$ó”µfŔJ©×ŸčźX]m„”) cŲ², ĪKFmZ^žŻŲ˜żæ’1³Ā~pÓ|Ó7Ćē0?‡Ķ2ä:V»™²5=ŽŽå¬4‹~ ŗŻƒ¶“aQˆČ aUģ®ć¾ĪIÓoŽaXąp;œjpw 'Ēż‡p23+7Ķa}(Ÿ!v’0+ŹædMŹ;°zS’PK .3|Q•IĆ^P~5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_EG.phpUTŲ]Ā_QMoÓ@½ēWĢĶm”qį„”&Ejz ½ TYkgÆźģšõŗQøU¤QԁrH żP•*ædżo˜];q7,Ł»ļĶĢ›7ć½·qW*ĶjµU8 Y‹(ą©@ B -"=Į‘ņ/HŸ60פļų»p(įpB){ž”P _ ö‹Ō÷BZ” "šE<’¬* ¼ó)O°%„ÅÆAQ‚Ü%£C[wÜiœ)ėO…DĮ$Šc‰’ĢKķĮ©#č=©ō)6źY³M3”©}—ŖPČ䕹הsŲ…‘šHľھТ\Qi¦n‰ALåžØŸŚp*5$ĶOHdäšńŅ~½1ĻÆGĀ'MśÅÓOeĀ.鎤_R†’®Ūī|t݆Ó$²æÄ©ĮēŠQwņ„$¼Ł/(K[Āi·”Ūķ¢E|œš Ÿē‡3\…E“Żd=Ļnō#*;Ł•^čĒgųZĻÆĢ]ĻL óĒėާöŽg6ŁBć5ĀŖßz„+Ōų‰µ‹\_ϲoˆ§kŒ*ÓģźYü¬ ¼ķßMš‡©­)Ź Jļ„óŅué¹ō[z-}–Ko„«Ÿ!„=2Zo;ŒQéN?Ų\ƒęzi÷3Ł0˜Å÷ū†›į¦śi‹»Ļ®mÆ5¾Å žō Ī}žķdk7ś.wok–ö›oåŽ~oóy’Õ0ž “‰rQƁkä¬ĢĖ"Zšy’‰4¢DڬµŹłīėŹPK .3|QābĆą(5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_EH.phpUTŲ]Ā_-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5(ułĢj _ę{ó`žPK .3|QābĆą(5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_ER.phpUTŲ]Ā_-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5(ułĢj _ę{ó`žPK .3|QābĆą(5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_IL.phpUTŲ]Ā_-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5(ułĢj _ę{ó`žPK .3|QXķlDZ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_IN.phpUTŲ]Ā_‘ĶNŪ@Ēļ~й¢|Ø×–RJ U$ąPøD²ÖĪ:^įģŗė5‘{C…(ā-Ŗ’6|åPŃ'YæMg×ILŚ[-Ł»’Ł’üf¼ó.‰ĒiÕjŌą,b)„,¦€kB¤‚Š(“‰ōĒPpAś“‰wĶõ­`ö%#Nhź3„`Ē7r£ŖˆĮīņź!­Q˜Å1"É%ėG ļAĢŹS,ÉC!D1ĮėÄ”`ģ’Ń”Ķ;ź“ON•åSQ0$)ōXŖ$ó3E{0d*ĀdOE&Š…z¶e:4¹ļ3 ™¾6ūtöįc,|³Æ¶.“)WTš®ŪbPEy×”KKĄ©ՐH„!¾‘9ąćgżF?f~ЈE@bšīõyÖ²o KŖ2ɁHIrOŅ$&Å5ČdŹ.閤_2†–žwŠłäyM·Ed‰[‡ĻŽqwĖ”¤.¼Ż]†lųČ܃Öq«Ūuėöą¼\܁ą*ZføÅm1ŅÓāV?”§[\é™~z”oōõĀģõĜįżėÕ īĒvk1ŚP×+…YæõB’Zz,Šć'ęĪJ=)¾”Æ4ŗŒ‹«ēH²XźM~/Å_„6ŗØ:ØŲ+ņŠŗb®x+֊³"¬Ų*Ŗ5ϐҋÉWÅ ×čtÆķ]£¦znē3ZGęeßļėŲ'=Óϱ‡āĘÖZé;ģąY’Xė’óo’Łčū’ŽęĢķ·œŹƒżŽ•żžė1`ü’0Ū”2™*ĻŲ•S"­Ż«ŗs¾żĘłPK .3|QŠų8@š5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_IQ.phpUTŲ]Ā_ŻQMoÓ@½ūWĢĶm”qį„”&Ejz \Ŗ¬µ³¶WuvĶzŻČ\i«Ŗ’rHhŚB$Ä?Y’f×nDØøpĒww޼yófwėy§ŽÓi4hĄ›˜e²„ī)‘ D*¦Š%Ņ”ą˜D“\Cß6aW2Āį€f>S ¶|īp …jb“]S_ i…ĀؾЄ\Qi¦īŠQJåAф·m 8”‰fˆ/$"²üüS ¶|īp …jb“]S_ i…ĀؾЄ\Qi¦īŠQJåAф·m 8”‰fˆ/$"²üüÉŻ·é쟻Ū;ģBśR[Āxę7;óŪŁŁŁŻ»‹½nÆR™›­Ą,<źz \Ļ'€’{VāŗĄ»XQ‡†Ø²w­rm…łŒ]ƒåȳBŲ$¬ćqw;Bü"D‘ņ;6 īkÓ/i$¹}ß›öö#o§ĖĮ š=›„ C†.‹{4¬CĻ'źžxdOŽ[_{°ŗ¹µ*\I~¼kqŲ³8ć‘×ésāĄžĒ»ˆ wFū‘M0#ÉĪe3\źó.XSüž¾¢¬ [4"®’7ū,"¾¶"ߌÕ&+°Ę,œ7Sņ'.,“–|f,”–—k Ś ]+@[VĒóa&P"Ņg×$ņ.ƒ{ŠŖ~ŖÉir“Óų¢Zךń(¾(éŽā!ź.S9{hZ$§™tšœ$Ēā» 9ßń_™—wńŪųU&įoä2ʣƃä%źNLz=)YĒÆ3MūóJ3ŲĀt‚ūĊŖpļ>xAĻĒ嘩~W­C«ślžyÓ¦żC|‰ĆGeõŁĀsCh(į•H‘P“õ……–1™ „ęėk”Ū*zl×4Ek{XČ„æÄŪä{‘GE"ZOb[–)(ĄHĐŲ#d÷ƒų2abÆREEĆPLbs‰«2Ā=t5ŽQīĪHĶtņr¬ż'%wö‘&d -L ‚†Ź²DB»0óæSčb7æi÷bZƌżkˆTœ“‡%8ikGF:¦‰Mą…xņŻĄę<9ĄX9Ÿ¢¢‘+&pB’–Œć”;3ŪĢTņbĦ”s«3,J<:sVEE#WL`u&Na0ŽUīĢČ֔ņŚ”’Ž-š ūšÜ Hzź» ¶Cŗ§-^$§EÜr9Q»¤ŠWƒ«ų¼wŽõˆ|€=ﰈ;žėęī‘Ūaü‹˜“ršö%‰§m§l±‘ņ“W6œYl>~Ģ>Ä>}˜üP[LEHo²ŚbĮŁ>a8£<äo\—ć-Š!„į{‡ć4 Q”%ą޲†ÉcMŠį¤å{‡SėQž¤^9īś|å—‰Ŗµ,RŪ‰<ź I»E$“ ›Pčą"«nChdĒŒŠ/n ošŚSV֚"ū'–ÆgśRT`¦+š2Ž/!<9É÷4„\4$”c˜ÅæŠģ Õõ_āś)P¶>NųXÜMpYŌȖŚƒųČ²ŽCÜßĒin¤ęLińļēL7Ą\Œäł’ėž“X[-æĘŒéÓJWĢŪ.11ضŖ&—2‡r|3¶wBLÓĶ`½”Ļ;†ć‘ -Źæe9Jžč;Aė“:|Ś–ėPK .3|QģÉųä<š5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_LB.phpUTŲ]Ā_ŻQMo1½ēWĢmŪ(ā „”&Ejz \ŖVŽwןĘ^lo£p„­*ž䐊“…4Hˆāż7Œ½›ˆPqįČJk{޼yóĘŽy–%Y­Ö®×kP‡× S±”ī‘D:”Š!2”š”Ä“…\Kß ·a_2Āሪ€i ; ÷8†B·B1Ü­Ø/„tBQž¦Šl,Yœh |) )WŲ’GB‰f‚7 K)AģŒŃ‘«;ģuŽŽ¬”ó§¢aD ˜Ņ’¹¦1`½+‘ːb£3Ū¶ŚŚē¹N„Tķ¹ ½ż>¼LE@RöŽõ…åšJ;uG 3Ŗ)Ē xCŠ–€cé‘h†B""Ē€_ĒĶ8eAŲLEHRŖöbž·„Œ]cIu.9)ÉŲ—4KIHqs©ŲŻ’ō]ĪPŅ÷»½W¾ßņŚD¶šI¼¼­YuƼåĮÓŻ rš”¼nśż>ZÄĻkøōI¹yCĮuRÕyÅ3-.‹«āšpnę.üˆm<óŻĢĢŌüpēĻęžölófiy.3ĮØŹ˜[sŃb»..Š+s_)ĢVüāž— ģ²@¤j?ł[ā7_Z.k6§ó>§ž_gQz: ćÕ– 4öÕ©ŚhjęVŖ²čÄK’Okl‚cĢĢĻ ģĒĮŃ×ńMqŒ/ėx‰×œlÜ·¹-ÆŠÕĢŻZ^Ż[oÜŗ|Ø1düß"&•öQĆ‘oåœĢ£*[į%Éfm4¦D®X'ŪOjæPK .3|QTʟ%„@5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_LY.phpUTŲ]Ā_ÅW_OÜFæO1•( źCópMB!P%䤪ŗ “Ļ^ćUlļÉŽƒœ”—BiŅ/ŃžŚ£ŠōŠ®UE>‰żm:ūĻ·¶éXBģüżĶĢĪĪī=Xķ½Fcei©K°Š|Ą’='įĄ|ąĒNŅe1²ÜĪ>¹‡ŗB}Į]„õ„:1<#i—rŗ‚ü&F’ń{.‹iÕoY"łż0—õ Ż88±!uIœ"dģ³$r8eń2ōBā Ci·õōńę³MįJĘLJÔ“‚GSžŠnŸ)P‚±§¬Ÿø<ģŠČPŲ®õyĄ’“%Ö_Ą'>¬“ÖB Rėė‹Jō“›8`- v84Tüķ­Ż r \~±˜)<„vškęļņ“l”æĖ.›Ėšó:;Ė.+¼·ŁyCgC”ƒ¶Ē¶ҧėü¤Ę9¶9čåc6ÉžµüNŠļ9ś:›bgĆü ņNmz>Ķ_WōĘń¤ąķ}Żh$„÷“Ų¤: NŅ„‡€F½«¼Š|Õ\†v³å²~ĢmO²ß‘Ó¬¬ĪEe)b8£ģ¼ĀD›½EÓ¹U8¹­óŠžĪeAŒŹŖŠ6œ*”m­Ōn퐐󠆢g°>WäŖ;Į‚žaĆ\UŁŹŚJöŽšœĮtyØŽ ÕU ±FJ”lk„z{X»¹‡«seEm]?"’]="ŚĪJšN`#㨟;ĪŠõ‘›MÕĄQ€HæåG¦¶µėݐ—ÅŽ<ų ģ¼+4ąlŖ!†¢•˜…­•’]°Ļ$6Ž‘8“’‚§1·–Ÿ°Ø³C„!E ōżgæDķÅēDõnoø«l\öÓ%ų!ē‡ČqYīQߟāTK)gęüK¹9äUNBöÉĖ^Uqaµõüyś9Žŗ“l¼øjH¤OÄājÉŁ€¤˜ŃrˆW÷d¶FR*~2gK’¢³1*柩R†CĶü}6śd@µ#Õ4õŽH»zĘr“«”ŖŻqŻI(ó0L·Ÿ$$vI:«¹Ńū„źį鬌cĮØ6“d–‡™6,ZYÓƓł ±øĄ±žŹ²­z˜}åŌ'a„głÄTCr.’~.xC¬Å™œ÷Sޟāņ›Øé?°bęŅP­ļŁę^%+Ōvӎ„G5†*¾mć^ƒ‰·€Aü`Š Žńoü*ŸŹ[į)ğ-ĘĆO „ŸB!öi’Št˜?}4ݟ>c_) © Š'ņ—ʇü5„wJ²${kWuœ'­(Ņķ ;–¤•¦%”m¬lÆ|_Idd°ŌÅu9ŌĮ 5?øN×ŌĒuBģq°•\źDḋöt ‚5`˜=ĄRX!Ää%·lõØŗ©åwf“Tķ˜…NjŹ v8a÷?ąDm6ĆT…­JE#œ%‘iŹŌ¬+µ>Ńū«eøæ'žPK .3|QóhīĘœ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_MA.phpUTŲ]Ā_ĶW_OG÷§˜‡JĘ©‚«F•›„B  ä…HUåXč|·ĒrwkŻ®CPš‡ ”öK“Vk7$„”ō|’»oÓŁ?w·wŲ…ō„¶„ńĢovę·³³³»wū^æV›æq£7ą‘ē3pż€žļ[1ź÷Ü·āPe?±¶ÉM“ęsv–cߊą!a=ŸsøÓā—ДߓixO›~EcéČŲ“æūŪ+r šm1 ¹4-īÓØ ż€XØ{ź“9n}ķžźĆĶUįJņćžÅaĒbąųŒĒ~oĄ‰;>÷AīŒb›` G’Ļgø4ąY[üž¾¦ĢƒMWĖ+°Ę,œ$Sņ'.,“–ę,”–— Ś žbĢM«ē0*‘ éóO2ęG!øĒą.tj€Ÿzzœ&£ō89«7µęe2NĪ*ŗƒd„ŗóLN†ĀĒī›éq.§Gé”ų.iöÅwņWīå}ņ.yKų¹Œ‹ØÉ0}…ŗ#S‡^*V§É›\Óż¢V‹ ÄQ6Į]bÅuø{ü°`īēźß՛Щ?æõ¢mÓAÄ!9Ēΰ²ž|į…!“”šZ¤H(ŗ­ęĀBĒ„ĢF‚?B ·šk‘Ū){ģ64EkkXČ„æ‚Ä»ō{‘GE¢ZZ˜LbXXV)(ĄHÄ Ų!äÉ †Éy2ĘÄ^d,ʊ–”˜ĘęWeŒ{čb£Ā‘šŁäåX»’NJīģMČZZ˜B)Œ”e…„va$ę§ąaė¾j÷bZ/Œżkˆ­Lœ¶‡%8mkGF:f‰MčGxĢ]Įę4ŻĆX{Ÿ²¢U(¦pB’–īMāT83ŪĢLņbĦ‘s«,J<: VeE«PLau"Na0‰UįĢČ֌ņڦ’Ž-š ūŚÜIvź»1 ·"ŗ£-^¦ĒeÜr9Q»¤ŽWƒ‹ä“ ÷^ģˆ¼‡=oæŒ;¾ėī‘Ū~ņ‹˜“ršõ%‰gm§j±“mņ¬_5œ[l?~Ģ>Ę>½ŸžŠXĢDHo²ĘbÉŁ.a8£"äo\ē“-Ź!„į‡ć4¤qœ'ą=޲FéMŹį¤å‡SėQ¤^9īņ|åW‰Ŗµ,2Ū>‰}ź I{Ē$² ›Rčą,ÆnChånjŠM.n MnšŚS^֚!ū§V gśJT`®+›2ŽĻ<9)ö“„\6$‘c˜%æŠģ— Õõ_āś)P¶¾DųXÜMpYŌȎŚĆä­Č²Ž#Ü߇Yn¤ęDińļē\7Ä\ŒåłRčž“X[-æĮŒéÓJWĢŪ­01Øvź&—*‡j|3¶wJLqW²~Ń)ś+ØŽfĻé&Ć ‘gÜ+;×uĒ}“-’¢ß¹Ę°Ąbf8ŁŠ®NŒūįDfV¦›Įz%Ÿ!v Ē'aV”Ėr>(•<Ńw‚ĪgMøŻ•ėPK .3|QābĆą(5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_MR.phpUTŲ]Ā_-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5(ułĢj _ę{ó`žPK .3|Q•IĆ^P~5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_OM.phpUTŲ]Ā_QMoÓ@½ēWĢĶm”qį„”&Ejz ½ TYkgÆźģšõŗQøU¤QԁrH żP•*ædżo˜];q7,Ł»ļĶĢ›7ć½·qW*ĶjµU8 Y‹(ą©@ B -"=Į‘ņ/HŸ60פļų»p(įpB){ž”P _ ö‹Ō÷BZ” "šE<’¬* ¼ó)O°%„ÅÆAQ‚Ü%£C[wÜiœ)ėO…DĮ$Šc‰’ĢKķĮ©#č=©ō)6źY³M3”©}—ŖPČ䕹הsŲ…‘šHľھТ\Qi¦n‰ALåžØŸŚp*5$ĶOHdäšńŅ~½1ĻÆGĀ'MśÅÓOeĀ.鎤_R†’®Ūī|t݆Ó$²æÄ©ĮēŠQwņ„$¼Ł/(K[Āi·”Ūķ¢E|œš Ÿē‡3\…E“Żd=Ļnō#*;Ł•^čĒgųZĻÆĢ]ĻL óĒėާöŽg6ŁBć5ĀŖßz„+Ōų‰µ‹\_ϲoˆ§kŒ*ÓģźYü¬ ¼ķßMš‡©­)Ź Jļ„óŅué¹ō[z-}–Ko„«Ÿ!„=2Zo;ŒQéN?Ų\ƒęzi÷3Ł0˜Å÷ū†›į¦śi‹»Ļ®mÆ5¾Å žō Ī}žķdk7ś.wok–ö›oåŽ~oóy’Õ0ž “‰rQƁkä¬ĢĖ"Zšy’‰4¢DڬµŹłīėŹPK .3|QābĆą(5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_PS.phpUTŲ]Ā_-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5(ułĢj _ę{ó`žPK .3|Q•IĆ^P~5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_QA.phpUTŲ]Ā_QMoÓ@½ēWĢĶm”qį„”&Ejz ½ TYkgÆźģšõŗQøU¤QԁrH żP•*ædżo˜];q7,Ł»ļĶĢ›7ć½·qW*ĶjµU8 Y‹(ą©@ B -"=Į‘ņ/HŸ60פļų»p(įpB){ž”P _ ö‹Ō÷BZ” "šE<’¬* ¼ó)O°%„ÅÆAQ‚Ü%£C[wÜiœ)ėO…DĮ$Šc‰’ĢKķĮ©#č=©ō)6źY³M3”©}—ŖPČ䕹הsŲ…‘šHľھТ\Qi¦n‰ALåžØŸŚp*5$ĶOHdäšńŅ~½1ĻÆGĀ'MśÅÓOeĀ.鎤_R†’®Ūī|t݆Ó$²æÄ©ĮēŠQwņ„$¼Ł/(K[Āi·”Ūķ¢E|œš Ÿē‡3\…E“Żd=Ļnō#*;Ł•^čĒgųZĻÆĢ]ĻL óĒėާöŽg6ŁBć5ĀŖßz„+Ōų‰µ‹\_ϲoˆ§kŒ*ÓģźYü¬ ¼ķßMš‡©­)Ź Jļ„óŅué¹ō[z-}–Ko„«Ÿ!„=2Zo;ŒQéN?Ų\ƒęzi÷3Ł0˜Å÷ū†›į¦śi‹»Ļ®mÆ5¾Å žō Ī}žķdk7ś.wok–ö›oåŽ~oóy’Õ0ž “‰rQƁkä¬ĢĖ"Zšy’‰4¢DڬµŹłīėŹPK .3|Qj–dŹÄ¦5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_SA.phpUTŲ]Ā_ĶW_OÜFæO1•Ž£×®jT]“PT”‚¼©Ŗ.'ä³×؊ķ=y÷BPšPJū%ŚS …¦]«Š|ūŪtöķµ¹+¤/=Kü™ßĢĪüvvvv÷žBßė×js³³5˜…§žĻĄõų·oÅØ Ü#šČŠ{4BČ~nm‘;h+Ģgģ,žĮĀz>ēpæ'ÄĻ#)æcÓš”6ż‚ĘŅ‘;°i'ö·<Vä@ąŪ$b2riZܧQś±{į“m9nmõŃŹ“įJņćžÅaŪbąųŒĒ~oĄ‰Ū>÷PƒÜÄ6Į@Ž$;—ĻpqĄ=³¶ų’#ų’26hL\-/Ć*³p’Lɋœø°D"X |˜±PZZj(Õ:õ¬cnX=?€™P‰LHŸ~ܐ1?iÄ= Süźéqz˜œ¤ĒÉe½©‘Żä4¹¬`É b£LN†ĀĒī›(å2žŸ^CöM½¼KFÉ߆ßś=C_§Eģd˜¾AģČÄŠóQŗ[±»@Ę£ė~V«Å„ā(›ź±ā:Ä>½Ÿ~×XČDHo²ĘBÉŁa8£"äļ<£ńåŅš½ĆqŅ8Īš.¹@ćļǚ”ĆIĖ÷§Ö£:I½2rÜõłŹ%®Uk-Xd¶}ūŌA’ö ŽId6”Š1Ąe^Ż†ŠŹ/n©ß4µ§¼¬5?Bö/¬@ĻōØĄ+›2Ž <9)ö“„\6$‘c˜%?‹ģ— ÕC@źõ£ ¤Ųdų&įcŌān‚Ė¢FvŌ†&oE–õö8Įż}˜åF"ē şslˆ¹8•ēKż.h±¶Zž 3¦O+]1ų:Øw+L ŖŗÉ„ģʔߌmʝ•,ā[a—E‘æ/•GåKyÉ=ų8ĢFžB éäj׏™XįMź÷Ą{ÅLąŹHh…”æ(ę3ņĶŖWHB^{ŖŖįńćvź2Њ CÓf¬¤TŖåå¹õõ¹Æń+)3-¬ć×Õ×õp=|nęą“l³ ŁV€Õ­§lLįcw9ė¢æ‚ź=`öœ.`2 yɍ±²sŻvÜWŁ")ś[ ,f†“ ķ6įÄø’Ndf%`ŗ¬UņbĒp|fEł—,ēƒRÉ}'č|Ņ„{]łøžPK .3|Q•IĆ^P~5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_SD.phpUTŲ]Ā_QMoÓ@½ēWĢĶm”qį„”&Ejz ½ TYkgÆźģšõŗQøU¤QԁrH żP•*ædżo˜];q7,Ł»ļĶĢ›7ć½·qW*ĶjµU8 Y‹(ą©@ B -"=Į‘ņ/HŸ60פļų»p(įpB){ž”P _ ö‹Ō÷BZ” "šE<’¬* ¼ó)O°%„ÅÆAQ‚Ü%£C[wÜiœ)ėO…DĮ$Šc‰’ĢKķĮ©#č=©ō)6źY³M3”©}—ŖPČ䕹הsŲ…‘šHľھТ\Qi¦n‰ALåžØŸŚp*5$ĶOHdäšńŅ~½1ĻÆGĀ'MśÅÓOeĀ.鎤_R†’®Ūī|t݆Ó$²æÄ©ĮēŠQwņ„$¼Ł/(K[Āi·”Ūķ¢E|œš Ÿē‡3\…E“Żd=Ļnō#*;Ł•^čĒgųZĻÆĢ]ĻL óĒėާöŽg6ŁBć5ĀŖßz„+Ōų‰µ‹\_ϲoˆ§kŒ*ÓģźYü¬ ¼ķßMš‡©­)Ź Jļ„óŅué¹ō[z-}–Ko„«Ÿ!„=2Zo;ŒQéN?Ų\ƒęzi÷3Ł0˜Å÷ū†›į¦śi‹»Ļ®mÆ5¾Å žō Ī}žķdk7ś.wok–ö›oåŽ~oóy’Õ0ž “‰rQƁkä¬ĢĖ"Zšy’‰4¢DڬµŹłīėŹPK .3|QābĆą(5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_SO.phpUTŲ]Ā_-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5(ułĢj _ę{ó`žPK .3|QóœĆ‚L~5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_SS.phpUTŲ]Ā_QMoÓ@½ēWĢĶm”q…RJ“‚"5=P.UÖŚYĒ«:»f½nnmõ_ H?Tå€Ź/Y’f×vÜĄ Köī{3óęĶxļMʵZ»^ÆA>†,€EšŒ‰T P!…‘žąHłēdH[˜kŅwü]8”Œp8”‰Ē”‚=ĻĄŽPؖ/FūEź;!­PFų"žH6 >€ˆł”'Ų’BŽˆb‚7 Ž(Aī‚ѱ­;īuŽNNŒ”õ§B¢`L°DI愊`ĢTˆōžˆTś ¬Ł¶™ŠŌ¾MU(dņŅܛŠ;ģĆūHx$b_m_čP®Ø4SwÄ(¦ŠrŅ€Om 8‰fˆ'$2rųxé°9Œ˜ē7#į“ˆ&Cž¶„ŚĘ’ŖTr R’‰+iŸāé§2atGŅ/)CI×ķö>ønĖiŁĀ_ā4ąsĶØ;łR^-įt»Šļ÷Ń">NƆĻņĆ ®Ā¢ĪÉn²©^d7ś•ģR/õć3|­ˆ×ę®ē&†łWeļ3{Ē3›n”«aÕo½Öæ 5jüÄŚe®ÆēŁ7ij£Ź,»|@'ėoūwüajkŠj‚Ź{å¼r]y®üV^+Ÿ•ĆŹ[åjćgL鳀LŹb‡+TŗÓ6× …^ŁżL7Ģ*gńż¾įęøé„~Śāī³kŪ«Ä·8Į“ž±Į¹ĻælķFßåīmĶŹ~ó­ÜŪļm>ļæ#Ę’O!`2Q.jø"pœ•yQD >O2Qƒ&”Č2ėl÷UķPK .3|QŠų8@š5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_SY.phpUTŲ]Ā_ŻQMoÓ@½ūWĢĶm”qį„”&Ejz \Ŗ¬µ³¶WuvĶzŻČ\i«Ŗ’rHhŚB$Ä?Y’f×nDØøpĒww޼yófwėy§ŽÓi4hĄ›˜e²„ī)‘ D*¦Š%Ņ”ą˜D“\Cß6aW2Āį€f>S ¶|īp …jb“]S_ i…ĀؾЄ\Qi¦īŠQJåAф·m 8”‰fˆ/$"²üüøŽށ!’|śE( €cųÜ Ǝ4TKÅééJĘ (܇¬+ĀōĶāCĻĪRĄmµ åćµĻ[ŸZ4—ČūŻ^‡‡°2öcYؔ‚.’Ų…ŲĄō:<“9,Štk¤šˆl²q‰Ā.8ģCæ^xĖž‰ß­Ś˜ŃœuodūZŖ^gJ0œ”šv ’ ² .‰Of¶ĻÜ5µŽ[yø@ąočæ…4Ū‚D[:Å|6Ó”œč4©FąųK“G9ł=Ö¶Įsž>öø£®ÕˆĆŚśEAm{ SŹ“āāˆŹ*X\°•]iw†k>Y'ϚYāÄLłÉž%ŒØœf⦠ԗU#xW˜I9Ū$r1Ł…ćm4#R?9œ`.óż$ƒS æII‡fų&8śä€Ń,f‡nĮln«õ1bÄjyd„öĄł)’:bn“ų”Y ³Žņ}āÕ æ`_A€³dRņ–Ų±¼( ķeż&Šž’}¢õPŌ?Ŏé+g9ĮŅT.ąz A’;EµÓDāY-ų–ŪOibtćSv}ELÖŌķq„Ył`Z¢ž•hKtƒ÷2ĖzƒAečĹQČI„Ā߯ օ\Č)2±æ`<{rnuūOČŲy”{½bą*˜Æf”R+ySKJGVC6¾ی{ALx ĘßĒŃā8±’Ųoä3ņ–xr(O4’Œ¤…»(1ŪŌēr¦7ט=8fßœ_%‘¤U¶’ĖātģCż²”gJA ^ZVŃe×ÕĖAV K™ó”12-L-OżOŹŪŠ2\y¼±"])~¢ėŲv8x”‹˜vś‚x°MEäĪY?v ņٹ|†‹}Ńe1oŹ’?‚Æ—a•;8)®åEA|X",f”––jZg]'ÄN‡0j‘Kéók*Ę!‹D—Ć}hUæjr–„éėō°Z׳ś:¹°4ūÉQr‘\fr2Ōxŗg[öÉY:^mYZ§‡Éļ–Ar’K—Éqr‚^Ž“ Ėā ź¶™_Łīż^ęŗö•JLD?޲)ī'®Āż@Ć^€Łž©~W­C«śņī«¦Ėś‘~ ©Aõåü+KhhįÉHE»QŸŸoYƒä<å,šæ[_üVŁc»fH:›ÓĄB-ž $žJæ—yŌ$ ”a„ń$†…å( X‰˜Ū„<»ĮP–$&ö*cQV4,Å$6—ø*ĒX›Wćī¬ŌL'/ĻŁłoRhīB–Š0Ā"HįH[ސ0.¬ÄüļŗŲ¬oڽ˜Ö+k’Zb#'ķaNŚĆʑ•ŽibҶ؜§»k·ąSV4 ÅNcąßŅŻqœ gv›™J^œø,ņn`uŖŽäƂUYŃ(XźóWžČ×YάlM)Æ-¦(įż²?”)hH²sߏYø±mc·–2īų‚č]RÅ«ĮUr^†;ÆrÄ ŽÅž·WĘ=źū…{䶗üR\i*X֗žµQ‹Ķ˜l‘½Qƙ…ęÓ§üCģÓ{éµ…L”Ģ&«-”œķŽ3*BńĪs9Ž¢R¾s8ĮBĒyžIĪŃųDZ&åpŹņĆéõ¤Y5īś|ՏÕk-Yd¶=Sę!I·Ē$r ŸPčą"ÆnKhäĒŒŌ/nošĘS^ֆżs'03}#+0וM¹Ą‡ž‚‚ūšJ.’ȳ̒_eöˆś pó(›ßb ,ļ&ø,zdKoˆaņVfŁl#ÜßYn”ęTkńēē\7Ä\«ó„Šż!h¹¶F>Ì™ÓŹT ¾Ŗķ&Uäcq)ńå0ߎmĒ•,ā[i—EQæ/“GķK{É=ųĢFž„t9ģӘĖŽŁd~qœ/®`Rƍ$*„üEńIęC½MĶ )•RÆ=ŃÕščQ3 M`ĆBšœ—@ -/Ļ­ÆĻ}‹_ ĢPXĒ®Ć×qø>7óšƒI¶Y†\'Ąź6S¶¦Ēń‘»œõ‹VŃ_A÷°{N0…ˆ¼ÖXÕ¹n;ī›l‘4żÖ-†·Ć©†v›prÜ{„“™Y øik#ł ±cx”„YQž­ŹyæTņÄÜ ZŸÖį³¶z\’ PK .3|Qƒf8£F`5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ar_YE.phpUTŲ]Ā_‘ĶnÓ@Ēļ~й¹ņ!®PJiRP¤¦Ź”ŹZ;ėxUg×¬×Ģ­¢¢¾Ź!ōCUØ<Éśm˜]'q7,Ł»’Ł’üf¼÷&‰ĒiÕjŌącÄRYLׄH"Qhé Ž”ąœ hļšė;Į.JF8œŠŌgJĮžoäG)T3ĆżÕÕwBZ£0‹cD’K6ˆއ˜”§X’‡B‰b‚×!‰)ĮŲ£#›wÜmœ+˧"¢`DRč³TIęgŠöaÄT„'ȞŠL õ-lĖthrßf*2}iö čöą},|³Æ¶.“)WTš®Ūb˜PEy×įA,§"T#"†ųBbDꀏŸ ƒ˜łA#‰iz0ąYSȁ-,©Ź$"%É=I“˜× “)» ;’~ÉZz^§ūĮóšn‹Č&ž·Ÿćī–CI]x½æ Łš± øōz=DÄĒ­Ūć³rq‡‚«h•ē7ÅXϊżˆĪnq©ēśń™¾Ö3ŌK³×Ss†÷ÆÖ'øŸŲ=®ÅxK]­fżÖKżkå±DŸ˜;/żõ“ų†z²Öč2).Ÿ? Ér„·ł½˜Śź¢ź bÆČ+ꊹā­X+Ί°b«Ø6<#JĻū$_O+\”ӝ~°wšé…ĻxY”Q|æobSœō\?mÅī‹k[k­o±ƒ'żc£KĪæI¶f£ļJz›³°ßr*÷ö{[öūÆĒń’sĄlO„^ČdŖ) °°Ś|“ŁcHb( l½¾põ~ū³‹‡FLNAhŚźR¤KĢTn¶Ų“²Aē®·!Mā³į'±tݱłčŗjWc욶ʿø{,žPK .3|Q‘Ŗ†¦I 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/as_IN.phpUTŲ]Ā_ÅUĻOA¾÷ƘŪ”%^Œ$@ z1†L¦ŪiwŅv¶ĪĪŅō†å@ˆCP iŒf¶AD䠐ųWęOqföŻķ¦–ƒq»3ļ}ļ{ß{ovwę~Ėi S0ž:ÄUŅĄ@=[ˆqąVw0X@¬ģRe²ė؆K «įcö8xĄ¢` {eĀ9˜)ėķU[——l·9AŗĢUżFŲn«ĆHĶįŃ hSO„¤U—5'.­FʶIpŪÄ­,/,­=YŅTFwmä ń8#eŸć hī(Ņī¹>³±JT1b§t…:vŽēŽĖ¼i½.‚ł&įØītxģųu¤Ņ®+–GŠY]eæV¬5HŁž«Qæä²šįa˜ūŒÄź@†[ dcõ“}ę‘M<Ęš Ÿ0 \\^‡°dMaZR¶&Įó‚fµĀ= ܛLƼb ÖbquµųL]Ö¤ńm„«éRīDA–GR\IѓĮKüŠėąL[*‰ņ}•Į¶'2Ų5ÖÄi¼ß•ā 4½“ā8Š×RœĒĄ`;\i"Ńėߜ ‘’­ūRü2”ŻŠthtVńŬOĶZ); o¤Ų #d°ÓļčiĶyŸŒŗƒ¬/Ż%č©óœ^å÷ēŸö$\]ōµ¢›S{\µų–‡•źĄ¤ŗ6Ęõ źÜœahßėbŒų$ŁŽ©'eUū&ß¾Q™ņķĮ õµ—ńTõµ¦č§ ݋۔ń钶"²…d•“Ŗ"G|Jó0©9 SĀõ4 ż’j”čVa•0C-Mļ:1#ķN|Ō1#‚›‰^uŗ^Åų$ŗėĆxiÖ½äŌ›Aõ9Tސ2ÉaMŪ®O90‡Fh„īFp(Eß;šĮœ†‚bžęp7‚Ć9n†š\Ü|ŽR„ķqŽFšĢq°W}ķŖ w#8Œ!Ä8ź7—|āsōaW1W¶Y¹ G ‹&DØśįNą:~å»É,£Wź/0G¢ Į¶]šķžˆĻüµłŻlIń]Šß1æw+4‚·K±1~·šPK .3|Q¶Yf ė@3 briannesbitt-Carbon-d046377/src/Carbon/Lang/asa.phpUTŲ]Ā_„RAnŪ0¼ė{Sb6zMÓ“iœ ."Øs)‚@XI+“µHŖäʆ_Š¢\FOå…ĖńĢhąŪĻ­h“d>™$0W!Ō²!šw‹–ĮŌĄ‚ąma“_•[ÜŠĢs{śUy _­D +r…d†Ū¢~ŃžixVu©OĘ”ŗk(M{°r#PWŠČ’“ó–ŗ6V!K£§Š6„~·““æ{Y><®Ö½TČĒö蠒Ž­,:¦ ö’…G|vg:[’7ŖBŲyb‰;«­ÅCn©m°$—urGW–~wŅäłbł#ĻgéœōĢ7“Nį-REVV’T Ÿīą-•„ Aø3žŃ?Pyßō}:÷DŪ .’æu [ŁČžŪĻŒÜ³Öōw­ƒÜ}ćå¤ ōå/ąČPĘ]šäNĖ£U;ø0‡Kėį„£ī ©ĀR™K)%õ )£Y?u‡6Č?ß(ßć)°>Anœ;h±˜gŁü§?gąˆB–ep‰žĀ—īGZåĻžEößž~ż1łPK .3|QęŌ“ā¾3 briannesbitt-Carbon-d046377/src/Carbon/Lang/ast.phpUTŲ]Ā_U;RÜ@Ķ÷“ (ŲĶ1Ę|]¶ŹE©ZRKfäłģ"ÆįŠ!Ÿao⓸gō[p-ޤo^wO·f÷ŽUy5™Ģ¶¶&l‹}ʹf)/‘¬@&SfrdĒ ")ČßA†SĀ:ųF¼ÉŽĮ®PGܶ9ó@)Ķ4–å~ }/•'JmQ°XVµāYnˆ„“ƒa Š,įŚ(Yƒ [p“S„j×ŅŖ)Qā‹¹ŻŁCkr©ō®ÓwŲ¹T g—PēģÖY™°S©²p˜Č"•ģźwŽ@)ŽĀHĶ6Rnäm“é©«£(ԔŠȐdl•ęsÜPųÅr…, OĪ>„į4˜”žŅ„Ūģó„Ń/hŚÖ{»ßŗ¼ūĀ;‚““Łååģś:Ųö”›F„&oĻ ²{.PY"uFŠ‘¬Ō×F’żķ;Š„Š>Pw˜{+VTźØĒgR›.¤Ńp,‰»‹Ź8—‰“5(ŌżŃ¹».ŒK5MĄ“…SÕMõ:A…:A%6Vķ•ć…0>–I'Ø'(½Uƒ¤|}®ā]uA²ä"ómõ§Ūt¦ÕųņQŲh¬{‹óFs “ éåū$ĮØJÓ¦XiĒ‘·“-gĒ÷”ŒŖüŖ†«FĀśĶŁ„ō-هA—ŗŻ¤ ^į@iųø•łŽ8KģYŹ—®œ#~ =ŒPƍ(4%x™ķā5`z+ąšO³Ń'˟=˜ō8YaĻH7š¬Įåō¬i÷z(éc¾ Ņ5ž°ōʎ‡č\ż.xkؚn“×CøJļ–ąt×K‘ü5ąĢŠÄ>ŒĢ!~ ĀÕTĶĖųö=J›g»†—ŲQ„J–”ķ2¢G!5ŲĶÓłY‚ee—}%Ņ®"P€šÖäfóĶäPK .3|Q + ļĢ 6 briannesbitt-Carbon-d046377/src/Carbon/Lang/ast_ES.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆÜŌŻXd“ąøTü·ādĶx<3ņž±„ā\×4ų \aāH`³ (ä 4P†œŒņ_x”Ö“«üĘß³0&8SXöĆ Ÿ’Į¬­Ļׇék–ĶhšcŸĖÆš%(`!²§T-2MY®ØœÓ”HhÜӲݽĒóĒqµŚśi@…+Œ\Ux˜•FXXƒm¬{ͳx² q+Ū9'¤³$śžYśžåōŽ÷ķ®ĆŖ­ż`wļžPK .3|QŚl`PņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/ayc.phpUTŲ]Ā_-ŪNĆ0 †ļū¾TØ}&@Œ"MBāp]¹©ŪXĖ’ā8T}{ŅŽ«ČĪų’żćd§¢ØĖ²€¾,GŲäsBQØ%8 tĮē•9ćHUÖ®ņs ĻĀčįD±cUŲwėųäó“2įņš/} ² É90aZ„G«€¾dž|Ģ•~rAåąļ`r„y÷Ė4o¾·ć”9}6kŌʧfŒŠsTį.)õ0³Ś|“ŁcHb(õl½¾põ~ū³³‡žLNAhÜźR¤+KĢTn²Ų‘²Aē–k€&ńŁš“XŚöåųѶծĘÅ“ļM•æqw_üPK .3|Qē¹čÕ6 briannesbitt-Carbon-d046377/src/Carbon/Lang/ayc_PE.phpUTŲ]Ā_„QĮnŌ0½ļWĢ-ķj›W(„Š-R„ī!U؊¼‰³™®c‡±]+’ƝčÕv&…#¹ųĶóĢ{oœóC7,ėårKųÖ”…•„x‚˜\'įJŠŽčHÕGqeģMķ'õ)|"vŅīŃ98ß§ņRĒŅø²6ż·~6”…ZÆŌf ”PXKm£„n õĀ”Ń+”‘{DņÜķĶÕõīėu’Źł\'a”Aė÷ŽÉŗ.ŽÄģÖxŖe4jrŲuŚ0Ķ~ō®3dß&|äµ°Ų怄”ÄOį¾>jčÄå$Ét™EH:O‘+’ƒµŒgķÉā£Ų߯ö‰>ģńĒ>QœeY’åž•Š!’K(ŠT¦­Z$ėŖ¤šŖQĘ餜fž’°AٳÕ÷m’Łm“Źżé»Å3PK .3|QłwjoO2 briannesbitt-Carbon-d046377/src/Carbon/Lang/az.phpUTŲ]Ā_WKsŌ8¾ēWtQlMĀ&“ ĻŻ  v BÕ¦R[«bKIžGX~Č\6G®pē–ä0’j[–,?&†u„2²¾īļė–Z?ŁĒćµµķ;wÖą¼™‚ˆ%šwL¤Ž)<'r(8v§dD»hkĢ׃ x&įš–Ŗ!Óž Ķė_…ī"}źL_ ™EY’@ ĘsÉF±ĀCHX@¹BI ™Ķ߄qB öMę~o^?ńöč…”ŹćÓ1Ń0% B¦“dĆLÓ¦LLj`ģJd2 (ęĮn› ļ~¦c!Uß“·ąO”b8’FöżÆŒ“‰œ’˜Ų®—’šĖ/)Ÿ9Ÿx­Žƒ²ļļäŒpŪ¼žw¹ˆ%› W_SĀÅÄö?#H‚(å£ĖļIޤ:“Ž×ŸĪœفݧŠé"ćXŅŁ“9)ĮO½ĻC&ügŠŪ|Ķ£ćėy K*øŽk™— ŌIyC¢4O[h¦”žÖ x¹ˆōrQŹ”NÅY4¤~Ó:i·čI=YZ^jyŌI“”SuėT^$Ę2ŖA8óŗT)a'cą†LÕ#nåJĒ ®Įa·2CŲI…ĖÅ;[½¢»B\gmąŠ‚‡øxEŗj`„9½ü²\36_Ńw½ž¾É\ÉH8X³”Ār1™,¾f#)Ņ.¦U%ø$Ž=ŅT¶¢CŠ» żČ¢Øäg÷ƒzīę;o:Å ɹ"o•x`(f:Ģ"Æ/š ā}ÖN„Y ÄtąN’6ll—iyĆfµńGł<ŠsjČĢ+åtöݰzĪUĀā:t–­ +ø,•c*ˆlAÜ'ąź5)ŲõÜ»öž:}ļW+ż_nw‡£æPK .3|QĢÉ50¶7 briannesbitt-Carbon-d046377/src/Carbon/Lang/az_Cyrl.phpUTŲ]Ā_­“OoŚ0Ęļłļ”šÖuÓŗNŖ4õ°ķVU‘ILc5ę汄›†“ •6 ¤®R„IŪmĄ†F[hæ‚]¾ŠC–8ŽKŽ?ĻūśēĒbėIą†Q. (Ā—„P%õ ć@«Ą] ;ˆUØÆJö1:¦ŅĘņ {ž1‚|ŲĒa…p[•8}ź«”rÓ¦µķ…ōezQ5ņ<°iŠ`äČå€|s°xŗ;q³T™Š»\ž[MŻ,ņür>Ļo’Ž!„OŁW¹Sź,sJ›2¦l)Õ W’(äQ'OÕĪŪ+¾-Ł{‘±·“³÷āf7co7co'oÆøZcļ劽_—ģż¼Ī^̈Cp-¹E_+ļćžįę#ć/PK .3|Q—•Mš45 briannesbitt-Carbon-d046377/src/Carbon/Lang/az_IR.phpUTŲ]Ā_ÕÓæOŪ@š=ÅmD“­CK)-P ‰RŪ„ŖuI.äDb§ē3ˆ­­ aČÄÄĢ@(B’¶—žēdė_Ņ³ó ż Ś y~ļŽ}ī£¬¼īµ{•Jmi©B–ČĒ6wH‹wѱG…$v‹Č6#ėTŌmK—‡ō€UuoѾŠX$o§ŁeNKIVźEŗféŌ–Õ†Ż]Eė;[”PĖķtHĆī~Š–„ZMŅį f9śH«e‹.•ܶ–IÆĆØ®qv\īŪŽZßÜż°YPå|²M%9¦irG ^w%k’c.ŪzEĻīŲ®h0}P³¶VܰŲūʕm[8/ŠēgdĒvŖæmrŅ-’īįŚA—ņN1z¹O0é ‹P!č‰)XÆCLdž+~ÄūārĮˆinl½7ĶŖQcVUæQc™|®ż1¦wr ņj„²¼]Œ½Oµ½ŚŽ†±\.ķOƒŃµ-ŁĘc|©Fy??Ÿ óvü[~®¼ĒģL”§‚āY]aå+דań4¾Ōõė¼_öÜåēł©MWōŽļ“ Ōm™ł/u«O;S7Ź++#Ż}1ž”n‹8«Óäڜļ¼×Ź,zÓŃļ\ž’·9fģ°IOfæĖdØ„0ļ«›éģź^óy~Ī—ĘżņzóMw“¾>&ĖD]©Ÿ*,NÅm—Źl¶éļiž¼Że¦.·ž‰Z\8ŅŌ3™vĖ,Ę+ĒzŽUŚ‘¦åvėL<žØ“‡ŅŃCōÄ1BŒÄ1+£σēĮóąyš<žχēĆóįšx¼^/€Ą ąšx!¼^/„Ā į…šBx!¼^/‚Į‹ąEš"x¼^/‚ƋįÅšbx1¼^ /†Ƌį%šx ¼^/—ĄKą%šx)¼^ /…—ĀKį„šRx)¼^/ƒ—ĮĖąeš2x¼ ^/ӞžSķ/¾¬üPK .3|Q]"„64Ū7 briannesbitt-Carbon-d046377/src/Carbon/Lang/az_Latn.phpUTŲ]Ā_„SĮRŪ0½ē+öf`2fz„”˜Įt¦paƳ¶×X[2’œŌü@æ!—rģµ½÷8äÆ*)r“ŽŖƒwµo½ļ=É>üXõ`°æ·7€=ø)˜‚œ•&Ö(5ˆtA0B™nJé(4½¶}'Ż…ɐĆ©„i ‡‰Ż~āf+t˜ŠźČ·ž éåMYB*źV²‡Bņ J–W†’ēBVؙąCØKBS›2š¹÷./F§W×§v”Ó§ Ō0CSZ²¤Ń”ĮŒéĀ F»LÉeNģž@’n$”ŪXR]bJ&¦TlJ;’& āx|ń%ŽĆ`ŸBs2Įī`VP‘d£*€Gp A‚:ø®ŠŃ$ĆVy4Į'”¶Ć%@R/ēŠŁĀāĒr._Ÿ—sž,ē€__Ÿ±złµ…ŲBŗų]½éY•l¶n|« V…Śė8 mļIxźāā[xÜ%6ŒüväžÆßĆķać’9Ŗ\ݹ“ȧ«ƒÉi*±“Ye>3±–ä ­ ¬mø®ŒÓĒF¹NE\·˜ø9b²N¹č²Œ&6ėKčŒāUx ^AßÓwģžŚ³zFO·Å„Ķ—„ąä o×ĪĻÖĪ#ļüøs­˜_~zė6qĄńŚūõ†÷Ͻ_­½ūŽs&•ŽĶ]Ę"ķµ:=ļ:Ōżpžv\ɕ/o\%8??ØŖ`ø \o JõĄ4‡QޚÕ;¢(‚mt^į°ĶžÆ¶!dfõš÷ūŻ÷ƒ?PK .3|QŠ®fA~/3 briannesbitt-Carbon-d046377/src/Carbon/Lang/bas.phpUTŲ]Ā_„S=OÜ@ķļWLg@§³ŅB">"P8Š@ƒ²ÖöŽyļģ]gwĶÉBé(qGC‰¢S B„\QXŗ•ٵ™(Ū¼y3o>ÖŽxŸ'yÆēÆ­õ` ަ`ÄR ˆ9‘ÄtBa›ČPptES2¦Œµį+Ń*lIF8R2­a#“ęŽ¦ŠƒHd›mčG!ŠØHSˆD^J6N4CŹ"Ź–ä#!3¢™ą}ČSJŠwĪčĢåģoļķZ)ןNˆ†Q3„% Mc˜1 ƒ½+QȈb”Ų5ė÷$Յä@¤$e iž’ˆ"F…T윮Hś„`’Bģ삁ēS>ĄĶx}8ķ/£’ÅŒf¼Ū„SoB6­o—ćŌÜb:źėbL&u•{gż&gFé4&„jsÆĘ3s ¼®—„ĶY:&oE’ŽÓüŹ:‚łÖ±³°®¦{ZWuÕ±'恿h#P‰ŗm»p=`q E±,G-Z}‹Oŗń½Œń’WĖ×ÉrEŸźŠĒuõxe£†ę6²+N[C›ŸYø¼‹ÜŻyQÖ7ö¾g橹Ēō›Å…µ'ę.l©)iDwĢ<ĒøPÖŲ2sso²V…”¹sĀf%~›šųµ4wōvŸ­ĒānL5 hį /,$,möCĖ=^Ģ\­5‘Ä­0eõõSµ“Jøģ@Œ»wWņĶ’u’K»;ērīƒcēńööÖ3­Ku˜u„ž‘ µćż<ĻØ%Ćį°/é.?t<¼,žćÅāäĶpŠF‚ĒMĘz$ ®!3?xl¾ć–|RŖHš2¦“MyU4 ^Wālõmļ7PK .3|Q®ė¼&Ō %2 briannesbitt-Carbon-d046377/src/Carbon/Lang/be.phpUTŲ]Ā_½Z_OGēSl¤4g0‰TÉĮ8… ŅŖDŠ*Eg{Ÿr¾µīĪ!4F‚X%Š ¾Š7¤*}%ižØ!ĄCūnæQgļļīŻ™ēœS$ŲŁ™ßĪovęv¹ÉL„ÓźŒMŽ”qō „YHÕtŒągG1mDTd·0šWĢ:1@Ōx¤¬ć Šeź¹F}cjЁīc«®Ł6š©³į†Äžhö¬Æz—˜.ŚÕuŌ MS[oŁH1šH×Ų°`IC%f[±5bPGĒ ČkxƵ[Zœ_øæ²Ą \’ģ–b£ ÅBMͲM­Žµqmhv fĄw‹t͆…𮳓c““čĶ“ĒŲ ‹ė1ńŠ Ē4˜čŠe­į'€f夕ͶJŒMYž'ķ1°aĖņS1,ŻuO–æ×»¦¢k?»Ćŗ:¶¤|=CšČudĢŪ&MK% Ū9µk4˜å®Żv›{LlwM˜ŹQ¹Œ|ō*Nåѵk(W,¢+¢| ü© )T£?fĖhڳÄ3etĖ r˜pWéõPLĪp`¶L–™ĪßvŻŻ* ©Ž%m ˆś‚ŃdĒör®k·ˆi•Ųļ7Š·Äj”ŠP½ń ©+”]y¬x‚»Ēž$°ĮßųŲlAśĶu”Ķ濯 ¦Š-RÕņĘsu„I C™«×7-7üpÖ\‡„M¬˜*Ļ"©Ō ]ĆFĪ_Ī™ó¦Ž7tO;gōH*xŹZń“ø•0æŲęg¹Ņ&†Ż>:oé= »½„„C eĪ1OŒĆcĢ.Ąŗ( ViHƬjeÅ!Ŗ’5eŒ R"ŲXµ €b”Vę®{ɝ€­?|Õ1ł C, eī¾—čIX>ĻśĆW˜)—­¢aV¶²äĀU’j’öšA6FQN"ökj$$üüOÅάŗ!]‰„ˆ_éŲY[2¾LÅe͊?ĄTā²ĒņĖÜżą“Igw ‘įQ–9…ąĢIgvœ‰Yó…“,łpµUĒ*1ń(Š‹Gau€€_)șÕW,8£+°šĖ 9«‹ēĪ—©±lł”Ā‹Ø­µ1¢Ļ€ÅGŚOMēœnĆü{ä*‡QįJßqĪcXģ„*‚ēžüĮ~gŃT5Z„īŅ@xK·…y›„Ÿvœ?Ų—öŻ(©±fāuü¤WĢUJ²l]§GłŠ`³‰-p>D¦}śÜ9c$ÓµDō—ņ t›“‰i†Ń{Ļ>šŃg ų@MD’=ŅNĮ÷ ŽŸćµš£ŗ“ōĄ³¾wÆŌnūŗžÄ 7S²,aŅ›ŖV'–—'~„G˜ fŃ2<ˆMĆ[iBTI×) ¤”nžŗŠbÕ'ŪPtl4żļŃ[Kićj°wµh·=ZE n]?±9U.ø”†_LkĪĖUļEµ¤Ŗ®X<“ˆļ9ļ-ļeÜ?ž~3™«V+¤"OTrr­ö“\“WWĒå՞l寳+A„·ōtŗpk«§»?ņ“|gN¼ ¹Y ų{ ,]OĪŻč„Ґ±{ä{dzæ§;Žn°»³Ētv9~ēō,¼jö4v ¦Æb² „‡2˜ļß|³£jūw•ė $™łģ‚ė«=GĒ]•¹|ŲŲÜæ¹Āé§K4v„n˧UÅ%ž×ßQ7÷ˆheG\žĒT:ĆźõŹMōÓü”Ēś=Ę’«śĮśÓŚ_PK .3|Q“FcKö; briannesbitt-Carbon-d046377/src/Carbon/Lang/be_BY@latin.phpUTŲ]Ā_„RĶnÓ@¾ē)öę6jq…RZš"U$" ”ŹŪc{jg×Ģī& Ē^ø“/ĻŠG€Sņ^ģ® ŖGö2ß÷ĶöōM[µƒĮx8ˆ”ųT‘5(œmP…0ŠKąTI—Źj(1vX?ŹŽÅ[&bŽ:%cÄiźĆséBeāL-Ļzč;ÅAذM#2Õn˜ŹŹ¹h(C©]KY(^‚!%ODŪ øÜŠpxÓėĖ«łāŹK…łLF¬A‹œ“aJ­Į\¬ÉT®āf׏r†®Q†ū =÷šJ±~鿑Hm9*J³Q£2hPŸ—ŅƊĖ@a4–„fŲ$Œm:›YÖ“Ā#Ęo–E’L®?&IQĘī˜Ń‰ų:īEŻ::ÆĻśTHOC"šLāŁ,žā^tŠ7‰–JšŖgEŚŲü;”$pŗQc TĮÓPÊźą× ś,į6Ųķņź‘Śƒæū#i÷Ų°ūÕG5øcn¶²kÜq”…¼ć9z2DOGM“»©é^ėĮSk¼Y@ķĶ{ 3ø £Ż# µA÷·$o?,č®Ģī§+īŪ­ė6ūŪĢ ümš żdīīŗž»G£øó~Ėn‹ķ=lų­‰ĄHŹBaaŻ—…g½ž,7§}Æ}‡^ż Ü«ö‚ĻՖ$’W« Ö&qj‰*/_ōÕ>߁|ÕGŽ£nŽ_ žPK .3|QDšóO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/bem.phpUTŲ]Ā_-KNĆ0†÷9Åģ J@ˆ¶H•  6‘ķLāQیĒD½=NŹŹšń’ųģķc“±ŖŚŗ® †OK r匊ĀbvŠušeeĪjĦhł¹…g&åį„I“lõ2>ł2iL˜ž„/× !;&Ä Óh”ļĮ‘AŸJ„OJ(ų;ˆUŁżĪ«ļõø;œ>KŌŹ'V Ģ*AOI˜tģa&±å¦°§Ł`)źWŲvyįāżņgf=*;Ęq­Ė ÆxÄ©P¹h•F!£œ»\%³/†ŸLŒŠuūć{×5›VćŌ}æ5å7÷ÕPK .3|Q ˇŗ6 briannesbitt-Carbon-d046377/src/Carbon/Lang/bem_ZM.phpUTŲ]Ā_„TMoŪ0 ½ēWčę¶čģŚu]?’-š¬X ĆP“LĒZlÉÓGƒģ׏–”6I_ę‹H>ņń‘|ž„­ŚĮ`tr2`'ģ©’–•²FFg Ę1]2W!»“kE!±„)·K?ĒģŚHPl†6—αó¼s/¹Ś …n.Rź­6ØōuĶ„n×F.*Ē@¬–•„–ŖŌ¦'µ:em@±‰«P÷pw3™Ķ'UŠē*pl–Ņ:#sļ°`+é*BH»ÕޤFE;ź&ģjƼ«“±gż]Ķ“`SšS*vź4dŌZ@öJ#ØąŹ?A×P” t7Ё1°ęŪŅ)¼±ņ žöŅ ć||÷óa6B5¤Eg§ģē€Ń—ÅQmĘ>_¤P?„@6ŽĘćŃś²Ó>Ē#k“rUŖŹīAy0’H³[ĢĶʞ‚Ø‚1i źĮąß{•Ī‚ńuÖkŽ­Ć&‡]:­™~ŁĒŅsW·“M÷&'II*’†]I@jŸz§¶©gź÷Śk…ø,`½ūŲŌ×^-|—ųH—Có6zĖÉ}-·\n;Uį–cA„Ź®koiwūwƜǦ:O>°}Ē"xUht/bī=½°’"*„±Ž×%ļXŪĒ„¦xLźŠĪ[#˜¬,$6I-STX‡=Ą¬÷s_‹³fM ;Ś+—že¶> ?Xŗõ„68ŅŽ÷š xOõŪĘ#ī›ų\ö8V½(š>‚×mĒ©HĄrŸ¢č®ŽżĆb¬ Ž_ou~°4mV*ś_¦åI%ݻէGśoxA̱(“J °ø${ŸÅöĄ{ ž? žPK .3|Q˜‹wßóO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/ber.phpUTŲ]Ā_-ÉNĆ0†ļyй*”< ŗH•P,.Ńęģŗ¶‰śö8)'kĘ’ņŁ›ēhcU5ėukų“œ``GPΈ¢PK°Eé‚/+sĘ‘ź¢åwę^…ŃƉRĒŖ°éęńŗ1hmĀåé_z² Ł90!^…G«€¾dž|*•~rAåą :²ūešßŪq»?}ģ稅O-*L˜ ē¤Ā]Vźabµå¦°§ÅP)źŲf~įģżņg&= ˜‚ŠøŌåD7<–TØ\“Ų‘²Aē®·!Ķā‹į'³“ķīų޶õŖéHŚŻw]¾qõXżPK .3|Qäjä’6 briannesbitt-Carbon-d046377/src/Carbon/Lang/ber_DZ.phpUTŲ]Ā_„Q±nŪ0Żż·)1\]:“i7N€±[Ō]‚"NŅÉ"$‘ņ‘’«žLĒ®ĶŅɛݒ*IĖ.œŽåņīļŽ½#/ŽÕy=Œ‡Ć įs.4d¢$°X#P˜œą9VŅRIK m­+?KĪį= ”0' cą"vé•“©2a¢ŖĖ¾ōV±ʚ²„DÕ‹ene „HHj;RfŠ+4BÉŌ%”åZAkßww}3_Ü8)ļĻäh`R” ‹ø1”ĀZ˜ÜŽXļZ5œ”z³c·”ė4&W¬_»ų|ÄøT°@Fó—h׳łUeM1¤UęWšżL¦a Ȍ]ÄT—˜Å¤a-Z:cZ5‚ ¢hz÷)ŠĀ`L2“/ŒąĖģ ö»éŽ^ö”§ļ=L§įl>ŲŒüåć‚JI“÷]A‡²E¶šAF-cé¢Źž’C¬™z¢s ŗFöčilWö•š¤é0ö:Ŗ8†R¢” Zˆ“}8Óy@Æ}K­ƒŁŽÓ¤ę}ęēļ~v²G?Ņ®,ȳ oe®|ķ”Šć“5Q‘bwX9ĘoȰÜnävćJcĮB&Ā3~½ā$Żn¶?l˜l7G*ŻžāōÓļļ'}XšŻ“LvO{ę¹™“å­„ŽIoąļąĆ¼ĆŒ^ś_½JČ’WĖkY½He‘“ö’ÆśŪžß¹[—ud’ŹU½ Ļß žPK .3|Qäjä’6 briannesbitt-Carbon-d046377/src/Carbon/Lang/ber_MA.phpUTŲ]Ā_„Q±nŪ0Żż·)1\]:“i7N€±[Ō]‚"NŅÉ"$‘ņ‘’«žLĒ®ĶŅɛݒ*IĖ.œŽåņīļŽ½#/ŽÕy=Œ‡Ć įs.4d¢$°X#P˜œą9VŅRIK m­+?KĪį= ”0' cą"vé•“©2a¢ŖĖ¾ōV±ʚ²„DÕ‹ene „HHj;RfŠ+4BÉŌ%”åZAkßww}3_Ü8)ļĻäh`R” ‹ø1”ĀZ˜ÜŽXļZ5œ”z³c·”ė4&W¬_»ų|ÄøT°@Fó—h׳łUeM1¤UęWšżL¦a Ȍ]ÄT—˜Å¤a-Z:cZ5‚ ¢hz÷)ŠĀ`L2“/ŒąĖģ ö»éŽ^ö”§ļ=L§įl>ŲŒüåć‚JI“÷]A‡²E¶šAF-cé¢Źž’C¬™z¢s ŗFöčilWö•š¤é0ö:Ŗ8†R¢” Zˆ“}8Óy@Æ}K­ƒŁŽÓ¤ę}ęēļ~v²G?Ņ®,ȳ oe®|ķ”Šć“5Q‘bwX9ĘoȰÜnävćJcĮB&Ā3~½ā$Żn¶?l˜l7G*ŻžāōÓļļ'}XšŻ“LvO{ę¹™“å­„ŽIoąļąĆ¼ĆŒ^ś_½JČ’WĖkY½He‘“ö’ÆśŪžß¹[—ud’ŹU½ Ļß žPK .3|QŖ3Zż3 briannesbitt-Carbon-d046377/src/Carbon/Lang/bez.phpUTŲ]Ā_„SĖnŚ@Żū+īĪ B nÓ4­RXT©Š"ėŚ37ĢƝżśŽĒ@mAVĶń=ēĢ}|’¹ęu’LG£F°įd”"Į `Ę®Ąqhr­UģpĖ&ĮŪŚoŠ[ųj¬˜ĶÉ9øĻŪš‹ ”v“Bˇ£õ›61Q兀B×C[īU ‚ ¦l(©*m$:Ņj µ`ø=±&Ž[­ÖOmŖŲŸćč A %Yg(÷ޕАćA ½[ķMĮB”26;M sŽ(@cšV ,XĄĀK{vcŲoO†A–ĶždŁ$25 ›IĒš’@8©d†Jb2…Oš’Ö(I zūéՁŅ×qēlŪ•x°g'H/¼ŚĶ`9ræ'į9N!¤sP¢óēĄįįŸĀQ ²&s&š¢tf¹6īŲĄŅ‹öĪOŠ0§}e®ŽĀ"Œw‘J’śÆDR+ĒūĖhXł‡`Ū„¼CqZBo|o¾·šļšŖ½·ÆoĆRư˜_a*vÉ:²W¼;/ÆtѲ! HżöĪØęķÄƝ ^qī]oł3ŒŃ¦{ŽŖ…u÷kĢ[Xuä†l ß½Œ ß:Čϵ*2Öeį©3]eķ«Ē‚Njü%Ļ©H/6‘Iēó;÷…uO¹³v vŅl6].§æĀˆ'–Ė%\Ŗ}¹Óį²śŁV†3†÷Ģaö×ŪÉ_PK .3|Q,döyļY2 briannesbitt-Carbon-d046377/src/Carbon/Lang/bg.phpUTŲ]Ā_W[OÜF~ēWE4\ ØŌVĖ­I )¤DŖ*@Čk±Ū³š™Ķu‘€TÄC‘Ŗžƒ>ōuŁ€ŗåš`’£žńm<ėeYĮīĪ™ļ|ē6ž9ž_Ŗ9µ””'ććC0Æ—ƒķzš»f0Ōįxn°* Pd¾1vÉb%|ŌƒgĢ5xExÕę«rś]€S*¦Lź/¦Š”ÅDvŻóĄ¤µ=ęī:ŒĄĻ5IĄŃd`SęĀ„ĮŌ „£k^…ēŃ!ž’Ö,IĀ–ņ° 9˜Š’3 BŽhj€1\… kö’²ØŌļ£×x°EĖčŖĀ¢®›j¦Õ8G÷ƒY:øēuĻ?„­č°©ĶŠT ż‘Ī=X}7ĄG±»Ņøå¢÷ŃQa+*Y!!EåAµPēAÖ81i`•+}½Ē¤žuU:“œ- łIxOׄüģRéOÄīĀ.M­ßDńnģ@Eø>É6£žN@łp)Q:ʰażU‚§2éoČrm[3tŽGMK[Tķö?1|ŅĖė;Œģ’w56ŗTŁŚā_†ķ±%Mcpt]±¶q+ž£­Ž(ū |» >e, ·Ž ½'Dgž+AöąMn·¤ŽÉ‹×^'šßW|?…¦ņ µPį\[KV–§Ö×§~Ę”­e‹°ŽŹĖåu(ŁĪQŽ ø»Ff ¬ōĀ*„Ę Ÿ,gŚĢ a{0ꂽ€¼`šĆ[€?出t6Ė(ĻąEŗ¼Ų=%4'“ė)ŪŻJžōk5Ą=dŲP ›uĘH Ęą—œCŽ­‡éĄh¶>¹ˆ[īG[2wCå0eo3]é-’źł×e¹iĖ!ć<ęžI»°…sK‚Ū „i®DbŪØ{āŽģč¤/÷~>۟Š÷ĊĒÓe­k'Qf¹įuUc8ØūUŠ™Žkģīŗ ]‡/`fzN‡ĢĘŽ* \;燅…˜ī®WšG)h·ö#„æÆ3i6¤»Œn‡ĒõøęaöNņŚėo"M$ś;s§æķĮÉfļōģ`p²o Ł„.Ł·wz{Õe`č6d!IūÅŽ8=ÆGš‚Ē©y敹«ÜŃAQ†Öšwt’nÅ·e'¼ĢVĀc½ß“ž-žu™źµ0«ń’9Ltćō=:G½vĪž {€#ü,Ź®q®£d‡xQmkŃģp|’ZL*ƒŠ`Pļ•ߏWå”ņ,÷GöęxHfł•wCŒøŒNbō źå2iu'ā{s€‘åĢŚFr&ožø•=GD;:–•ˆŽS­)ĶfØqž" %“ %(”ʲ²Ŗ,)+ež¬cŁ3īœ9ćMX3Ī|_(>Ūe\Čwˆj«õ&"å H®ŹYžR™”<|yN}AzüĆ3ŌŽ!̵\āgŽŖīSq*Sž:·R' Õ·ē†žPK .3|Q“C Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/bg_BG.phpUTŲ]Ā_-PŃNĆ0 |ļWųm£Bķ0blŅ$“ą½JR·±Č’ą8Tü=nœuēóŻÉ‡§ģsÓōmŪ@ Ÿž LtfĆińGĆ6E„ܗ™±Sķ*ß»;xa2®X,‰ĄĮ®š9*Lҹt{ü—žoFS \ŹæL³0q„@cŃČ8%¾”ļ!4Źż.ŪŻŪåxŗ~œV«­Ÿx#°˜#a²Up„…ÄėF»—TŁ”[پa”Źæ+1Ā0¼^އ”Ūõvīō»‡ęPK .3|Q;–ęńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/bhb.phpUTŲ]Ā_-KNĆ0†÷9Åģ J@ˆ¶H‘P<֑ķLāQ]یĒD½=NŹŹšń’ųģżs“±ŖŚŗ® †/K &r匊ĀbŠušeeĪjʦhWł¹‡W&å”ǤIöz_|ƒ4&\žž„o· );&Ä+Ól”Į‘AŸJ„Ÿ_”PšŖ²ū%\6ß{w8õŸ§5jć«•`¤$L: ްŲrSŲSČl°l»¾põ~ū³‹‡'•ć¼Õå„7<āTØ\“J£QĪ]oŒ’ŁĆO&F†c÷1 Ķ®ÕV]ߔoÜ=VPK .3|QC›×åĒ6 briannesbitt-Carbon-d046377/src/Carbon/Lang/bhb_IN.phpUTŲ]Ā_„QĖnŪ0¼ė+ö¦Äpeōڦi\?€¶ TŠ ŠZY„)R]’vÕÆ)Ń.Ņ«Ėι3³ŌŻē®é’d6™$0}# ŌB"ųŚ1² k° Ā‚Q©•§ų‘0ówĆõ~ _H0;4„°īŹŠ>(ßj›qŻŽĒ«kMƒPķ¤®»žÄ”±ĄTRpTĘ[ŖZSˬŠj D湓Ąó0·y\¬vł*H łlĆ,œ™JK¢t+8 ŪųŸŻhG½Q5„… ĆģÜŁF“łš;ČYkœ:ĄJ"·¤•ą:›ĀĘVųIü…}Ö"ż–=;źÓƒGĀjƒ.”u¤€±¾ ģ$ćč+wdÄ o:AE±|üVY:C•łO§š# éø³IįÓ}¤z3ér¶=?§Óįąe,i«•māDśÄ”cŌ{Įt%]š–o˜w$äČ ONįXåŠĻŻĮPŽÅ¶D ĶWnu„;}ŗŅKä#~›„0žUķŸD1M c¼ 3ÄŃ?:G×hxõ:#+Ö_6ĻŖF¹­¾ ½Cįw¬ŌµŁ7ž‡D¼&QĪüĻ ųo‡7ūäcXo¢zŌ’Qļ_©VØ’ņ"…®‹Z±EP ]žYƒźūiņrū1yPK .3|Q<Ū-ńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/bho.phpUTŲ]Ā_-KNĆ0†÷9Åģ J@ˆ¶H‘P<֑ķLāQ]یĒD½=NŹŹšń’ųģżs“±ŖŚŗ® †/K &r匊ĀbŠušeeĪjʦhWł¹‡W&å”ǤIöz_|ƒ4&\žž„o· );&Ä+Ól”Į‘AŸJ„Ÿ_”PšŖ²ū%\6ß{w8õŸ§5jć«•`¤$L: ްŲrSŲSČl°l»¾põ~ū³‹‡'•ć¼Õå„7<āTØ\“J£QĪ]oŒ’ŁĆO&F†c÷1 Ķ®Õ6 ]ߔoÜ=VPK .3|QHv|ńĀŽ6 briannesbitt-Carbon-d046377/src/Carbon/Lang/bho_IN.phpUTŲ]Ā_åTAO1¾ļÆh¼ ܍WTDä ^ˆ!Mw¦»Ó0ŪŽm‡ĶޔĄD=CāeŠ CH4xæ2?Å×vv˜) {óąvę}ļė×ļ½¾éƒGiœ¶Z¹¹šC/c¦P%Į3%R#ŃC:¦h™Č®ą…Ū¤OŪĄ5ō™p=‘Œp“AU—itMøÄ!ŗŠĮbI}*¤źeI‚B‘Ž$ėĒ”„…”+Ų’÷„ĶŸGiB `;ŒķŗõµåՍ«FŹśÓ1ŃhHŠ˜Ņ’u3M#4d:† xW"“!…"k¶c*4kg:R-˜÷»Ø“~LäR_ˆ~BūRd©2¾ķ"Iu&9"R’–4MHHįfR±:#éėŒIŠ0^Y{Žq;čPކvóčU Į/p©=\,! Æ[ Xé<ėlnó6±åĮ@p—+‚"?,ņq‘’(ņÓāč ōĶMč{‘_Ųųc‘rŠ»"?¶1 {E~V÷ÜŪaq“ ŚUš8VeÆZPäēV"wŠy‘_B`T zŚwßBŸ­čUĀY÷é_¬Īy=q'h֏“ž»0¤t;"£«9pµ^Ś’‹JŒ½·å4Pˆw­ļ3/qb üź”=µ’ÄO ķ—żós¦¬šß¹w‚„’†mßmƤļķ–N®0ž¶‡­±čį“JcćÅD#J¤õro2åT²ˆŃAešŲΌ›]×Ņ_ö}\›cSE-;:±.;w£,„"棙śą†«¼^‚ųVĮ· •އŪÖćķ»g¢5éż_ ß"ćhІ‚G©šz7Ž%sĮS :ruhu¢”œMäF7§ ¾Q¢vß]k:²łøĘõ–NC‚¶N”wõ”\7ē®ĖÜMŚDv8%ąéD«OÅ£ŗ;q<‘óĻÉK|“ĀÖģżÖoPK .3|QķĮńN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/bi.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې&”€q­ÜŌm¬eIpŖ½=iĒ)²ó’ų%›ēhcU5ėukų²œ``GPΈ¢PK°Eé‚/+sĘ‘ź¢åwę^…ŃƑRĒŖ°éęńŗ1hmĀåé_śd ²s`B¼ V}Ž łT*ż䂬Į?@t„e÷Ė4-¾÷ĆvüÜĻQ ŸZT˜0AĻI…»¬ŌĆÄjĖMaO!‹”RŌ/°ĶüĀŁ{ņg&= ˜‚ŠøŌåD7<–TØ\“Ų‘²Aē®·!Ķā‹į'³“ķīšŃ¶õŖéøż>ÕåWÕPK .3|Q vÅR_5 briannesbitt-Carbon-d046377/src/Carbon/Lang/bi_VU.phpUTŲ]Ā_•TMoŪ0 ½ēWš4·Eę`׮뺄P ķaķe ¶™Xµ,y’#’~“¬~x[GRŌć{)ūāsS6³ŁāģlgšPJ©Ų6h=˜ ų’`‰63šCy…[JŪĆOņSųj%jø#—Iļį"ė·Wš·Ę§¹©/#ō›±hÓ*¹iöVnKØ P2'ķXRoŒ­ŃK£ēŠ(BŽķ$u!o}³\ŻŻÆzŖPŸ/ŃC‡ 鼕Yė©€Nś’OøvgZ› ”ŲEĆ>÷KėKcŻyᅦ{¬]«·°R”{k“Ģ,M:‡µ/Rą…UÉb®L«+7`ū;Į;ØQK]żŗ·'AŹ’o­“÷ĀR£0'¶ykÜщ„_­“B\ß|"M¤SB2‡Ÿ³^4ŚąųtC!¼¤ą××p{{ ?x%óyLRķ˘›<‘n;“ÄÜɆ2veļÖųŌj¬TaO!üŌźĮ( f+]o5žź C¬ņfš“Ł=yĮ× ·ŚæV‹šOł(µ£lԌz/ZQUąžłĘŽ_ /NŠźŒµn,Ņpąø1ģżI4*›é"٘*2Ešæ9j©f(öÄ»0čóܓڃ£]čŻbüXR3E~Åtņ7ƒ%Ōņ }=ˆb*ļkWĒU“;ÄßFqżĀį3ņ’(ŽĄ¢˜Ģ=$”üŸį+eŖƒōåt(ŠÉŌqśRó?xÜĒŚØĆÆ%~!“Ą(Ž RåF{ļۃn*ÅdāĒӏ³ßPK .3|Q°įĒkĀ 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/bm.phpUTŲ]Ā_•VĖnŪ8Żū+īĪm&MP`Vž¶i§čLālœAŃŗ†AK”EX" ’ÕhūŽł‹ōWs)^=,)Œ`X$Ϲē>ųŅ›«]¼.ĻĪFp±0‰„¾wL[Pؘà Ók%q(Ų² æ@®£æ^µLĀ7ka-¼Y»ī{‰]e/•¾#źG„K”(KŌnÆÅ&¶Ąd‰ø4čRFJ§Ģ %Ļa—p†c’ž—v÷ŽÜ>ĢoTŸ™…œ…±Z¬3ĖCȅĮŲŹtĄŃQX{é2t¶2+m&®ż nå ŠŻØ4åŅ–DĶm¦%,F€ĻxĻ™ĆŪw06˜å$P™“ćs±UƒžxżĖ¶<įņgŸŗJ#UŅĘܲDõ<“ptQR¼vJ:ńœó­‡Āā°)Ū¬ŸÉ§tT‹Śåfݬt0Bŗ6lU[aR„”Oj@#ʉōŌ¤8źāŲ“jØEÆ6h@ÅLŗ1„Bāņ ¶…ż¹hQб¼ÆA$Į®7Ć%©<†o±Żw×ęųåµa²Ō’ż63µfÆčå1kW+RŽ­C…GZ„+©hž=¼-²a„"ŠVVÕsw-N=ĒŻ¤kō.“Ł0¾Ņ|ĆæļŚ‹«É·oę7?_/Æ:žR„uÖĖ<Ÿh:ÖóšŻ(®ŸāūÉWÕ åšż£·ūōi’¦Ä%`ŽB&Ɯ€šN/g³Ė/ųœ€„Īš…Ū K˜Ā§} }īaįYB?ĀŚ8ÄžŸĀ’Ź0\ō!~­ŗ–ņiµ×*,X+ÉæŪ†ę¦ėāēęhr/B¼‡†Ł 3-Y·²ž!vemqL‹£äO‰»ŌnCū’¾Sņœ¦e2žŹdžķ¹;¢Ēē0žČóL·ś3¦…UļC.“Hźī¬8VĶÆYŽ5½¤„ń·­-ęÅŃ2¹FՈ;¾mqh=Øü”3å¦5pšĘŹąi›d( Š‚¦`)PАB«ĀŖ‚”ČoķĶ]:ø«²Ża]J&N…ÄŸk?2Ķ,+]j¶ö„„”Ϳ²“|ĻÅ‹ŲÓ=ÉćĪGīÄI˜TI“ōH®ÆUęNÉ yÆāE¼†—Ø"”u7ŽJEĶ=ūŗ¹?Żø'9ŌõźļŠß‰•ąGyGqünēałĒč_PK .3|QģŃÉŽh2 briannesbitt-Carbon-d046377/src/Carbon/Lang/bn.phpUTŲ]Ā_ŻW_kÜFæO±…K‚'„PpÜ“nģŠ'u ”`Ž=iem-iĶī^®G/ŠōhūJž\÷OĄRÉuĒä”u”Ų_E„³»:i„ÓżiKūPqœ¤ßĢüfwvfµüŽŽæÓh,^ŗŌ@—Š=Ÿ äр øļ`.óō ŗy‡E0älć-r° ~Į¹ˆ>ąGč.*%ZīØ×÷#xeņ²ĆĀėō&ćŚ× 䰝>§[¾D8rQ@ pyŒ‡XR- €`{@IOė­ßŗ±vwcM™Ņü¤%źa\*$§®$.źQéƒø ÖåG®&»Ø"Tŗ+]é3.–Ōó›č6>Ś`œxę}ĆĒŪ“ƒ>dB`™±š§]ó“QŽu]£קۘ÷3+«č–Ą03"³‚)D cĶČML.FœČ.Šż‚«Ł'˜7Ń»×QsÉaŻH¢4>JćŸŅų¤¹`ø]`ŅųIļ˜Į$„~†O’9Ą!‹¤_!qœĘgi|Z°@9‹ 4˜¤Ś,f{„lWHœ¦ńaš|›ĘĻ5ō÷‚M6Ę«ČĮL½¦īā~…lœĘēi|PpĢ!ł|eĮ$×ę4 ģCšW(|bMvČD dΤ„L7ąŪ¬žŠbH#Ųšć‰„¢Š’ūVzYX;æ ģ`ŗ 0Pɶ¹UqXäŽå^ņ °Š’&“g[[Cƒö ŗ^o0QQĪĒægo±, ICŲÆÓx€#¹ĒYŲŽXÆ :„Z`°' ŸŠčØÖdŖ'—z^įIÆčwv¦+±dÖż§%iŸąa!öō&ÜÕūšuÅPČ8/œi. vœ&_Œ©ģN™ŪęÄérN"‡ˆń|V­—gV½Ģ Šų=ĄĮČ«©'šå9ZŹÅe-!”µBmČ7†z?ē«ZQ ‘[7+ž^’ąy¾Čŗ“š L—ŃĆė÷Œ…Ōņ—Z”©m0A£m6JØ„–˜4°ÖźbėĪbė“’(—”;p”ŖtL¼€¦sŹU\øŠ<Š›Ł\88€łĖڧ5‡du”Z÷Möm"˜"ĖoD>“LMVÕi}œw'ĆøŒ°(Ł-åu՜ę2ō&Ŗ³«bZ D–(ė•™!›\JLKöŗ‘£ĪZčĀŖ9\DŸēfؗ ¢eō¶-PWvviź4?S9w-—?¬5qõŹd§Å֜ięÉfā4y¤wß#µGgYzk ”#Żź85ĘĮåxhŸ„²½ §t ø%ū¦Š@ņ4”zĒeUĆFÄēq<Ņďfč‰UgĪuQ3@U6vئįĄ~y­­dr“ħ¦W›!ÓO³ö­žõó‘.y ń•.LFüŲ@#}Y«ńL³;­Ź6K³Ōp—5sUšŸ9¦bžI(ĀÆ‰ŗ&ĢR€Õ ņ@Ō9ZT±ą'£,Ź{Fęģ±Ž”4 ļ?h{z‘J²#Ķ:Ā!t“€‡¦×T@æjÕŻQ–TdŁįg4Z ¤²&Y8„(jȗ8O£ZưDlœĻč\7/›iT†s»ąĖ2s rų!oążK”ƒ<Ź…jåż6óŠ/’+Å‚7 %Uoł§ÜÕ±y—š=Œ‘’:—~ū×r ÖnB\C;–aĀŠ&<“y––nXæhvU©ókculścV=®żoK2d;ź†Āób–ÄZ31Ū(1$æ˜Ū”¹½07S„“—ęf6eņJß¼ÖųPK .3|QéńS˜nG5 briannesbitt-Carbon-d046377/src/Carbon/Lang/bn_BD.phpUTŲ]Ā_ŻRAOŌ@¾ļÆx·©Ūxš‚Š  Į åB i¦ŻŁķH;S§SÖ½iˆr0Ę!bbf "fM ü•ł)N_»JĖŽMģ”3ļū¾÷Ž÷^{ē^„­–73ӂXX]S°gJ¤ŃQX$2ÜBįéѶÕņ©pīKF8¬Ń,`JĮ ē¹ …j‡"™«¤„ÄBŻ<Ž!é@²^¤€šÄ,¤<³-yWȄ(&ø iL‰Å¶ķcŽźŹāņŚÓå¢śSQŠ'tX¦$ rE;Šg*²Œõž‰\†Ō6ź YƘ°Č]ČU$d6[ÜoĄߏ%<”"O]ˆ”Jg=Æßļ·I„÷bҲWćŹ{$f<YP°N8„ ,D ķøšˆ$,.PČĢ×õ.2Ć×F7ś†gfųŹ6±ōW3Ü5śÄ ß#:Yt:Ž­čS }0śøJŅ—FŸ…ĆŻņv€µŽ®ēX„āß½oōK–Š­”Uń~Š÷Ū¤T¼1zoLæ»JżmbĘgt7jrõ]ł™żŌ„ÕVōŸÆ¢OéV‡ žž8g(øÄ÷ş*#lwŚ@müKīćl5ī'^GwŒž9žūŲč/כżĄŌ½ńr\1ź•Œę ÆZS›b‚łšē†Õ ®jf®{H’7ŗLfŹ·|Ńõ ;hćVÅVx)*Ų"P"QuÓmmNßnżPK .3|QBżŖd5 briannesbitt-Carbon-d046377/src/Carbon/Lang/bn_IN.phpUTŲ]Ā_ŻRMoÓ@½ēWĢĶm”q…RJӂ"µ=P.Ŗ¬µ³ŽWuvĶzŻ(œ@Øō€§ŖUŖŠ&*!T=  ”öÆģOa=N _āŠ„Ž÷f޼{ķAʅBµX,@ž†,€Eģ©@ B 5"=Į-ä’­ŲÜ,}Å_…Mɇ=šxL)Xó²pƒŪP؊/ŚėćŌGB¢PFų"īJÖ Ž„ˆł”'¶%„lÅ/AQb±#F;X·SÆmļķogRčO…DA‡$Šd‰’ĢKmB‡©Š2Ö{"RéSŪØ‰f«Ł„YķĆT…B&w³{ź›»š8‰Ų ģ 5Ź•ŁŌ5ю©¢Üļ– A¬-ū"P"­ā iŁūxi«ÜŠ˜ē—#į“ˆ&-žV„lacIU*9)Iו4ŽˆOķé§2aGtEŅē)³’®»Uāŗ§źńŠż$N ž2u'_JāĄżõ1„šĪVu·Śh8%$ņĆi ®Āq…cō¹Ń7F÷Mļ•Ńߌž‰į•齓M,żÅōNŒ˜Ž;D—' '±Mś˜Cļ¾é[£Æ'‰½“üvŽZżéąUĘü£ĻŒ”ÄEŠJ®z÷!޶Ižqlōé„~;Mōžŗ“āŗĶs³»rū[Ø%›YѾЄ‡MŅżóć\aĀ-¾o~«Œ°Żpµń”<ĆŁføNÜ[D_żc2÷„џ›}ĒŅÓÉrēølŌ©ŠłAę¾źxœ™)–˜Ÿńü7«KĪ[ōÓfüß»±N\ø“‰r3kYŌ„D¢µ;„ĀĮź½Ā/PK .3|Qž˜¼čI2 briannesbitt-Carbon-d046377/src/Carbon/Lang/bo.phpUTŲ]Ā_ķ—Żj$EĒļē)Ī…0»aÜlD²quŻDˆ${“‘0 īźt±ŻUCUcXĢĀ"‚c²qŲ •D‚·®AŅó,õ(VUwõō÷Œ—ŠM Ó}~õ?UuŖ{ćƒa0ģtVWV:°OĢĮĒ!õč0Ō xģ°JŌ#÷™sˆī)VćwÜ»šĆ'ˆ`!`ć@ß~HŌ-÷\=Lя)3Bž( Į„Ć#†ń Ä."\¹$>e‘#0%=†ČQĻ>ĒhlĘķl?Žz²·„„L|"pŒę‚įƒ‘@Œ±”EÅĪ鈹H9ņL°«:C=öŃH”ńużūmų„ņö(C~zæ ŪÜQ9r3†!1bö; ®īrXŽŻēkĒ2¾’ń­¼żVĘ'2>•ńõćĖžZo›ųūė. Óķ%Ć#JD’³œżaĘ_,R™“VkŒŠ³D*ƒ.d<‘ńŒĻ śJĪ“–ą9G9×/£³E~ē˜• TUs:/“C-ņZ×Bł_ Xę³Ņ`¢¦/'|-gßĖųҰÓEŖŲJräRā§+Qŗ–ń7­/äķwVĘ9¤iŽPžŪŅ]YŹg4:.¢W¹ĀyŲ÷Gˆ IJ©ń×Y@NŠ3ŃYkģҤ_&#ʘuœH8ŗ,@³ÆøĮ’Õlļ‚`=ŠR8µģåMėœ¬‰mssuwwõ3uŒÖ »ź‚Ŗ¹jļAMč©«Ķx?MŅuBD¼tę²äN„6mA÷«탪CĪ3A_ˆ<_.j’i¶!÷›¶bźrö£Œ’Ņ¢f¹ö{%±Šįēó%Rv«ÉeŻNe¬–÷/©OH*Z”ÓUŚ yŗ wJµĆF‘±ś#āź& wŽŅ į.<Ļd°Ÿ>„ x7oŠWŚN»&ž×6Ī©ī‘2šøVkķ~³ŲO¦™œŲš~„~,Ö{ÆYÆŌoō¦[¤÷NK|#skW‘¾-čuŖCźsœ?JŅŻÜ­œ$ėéܜ>P%Nl’IÅĪ› k“ż“ŗ0åÓB\醣lž˜Uzcj£—üŹn„ŌīśAĪ~·'Q“ĒdV[•N—'ę'ÓņŠÕļ¦uĄÕ Šųr’c“«_ŁŌ±>ßµ'Z'ķÉ/m™§ęJ悿Ŗyš‹pbn/k95[f™ŌÆĢD\ڬnŖÄyv%)V õ†ō«9āĪꎬE(­ńšōkRnK³>µśtźSX*lõ¢śÆ :TßEi°ŠUź•ō7Mš ēcĘÅ@„7 ž ū°ø?’pŠĻH[õ]ö%“Vź\B}Ī9!%h©öU_·źjį M¬‰+ō±&hŽŹšˆr7kqWhh-\¹§5»Īµµ½Ó•›Ū’c*s£VR’AēoPK .3|Q&¦ŁĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/bo_CN.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆ’ŌŻXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų Ta¦ˆ ³XČ3H@8Xv9)åæģ{Õ®ņ ĻL6Į«#Ų»>%…YzŸÆ’Ņ×Ģ›ŃÜbŸĖ/Ó%Ų4A$©jdš3_­PNwP"Zå~—ķīķt8ž?Ž«ÕÖO‚Xl…‰Ŗ0¹&8ĮBt£ŻknģQƒ¦­ģ`„qĘļFŒ0Ž/§÷qģwƒĖ½~`wožPK .3|QڳąSÓž 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/bo_IN.phpUTŲ]Ā_ÕVOOŪ0æ÷S¼[•Ā™16 ˜„D9Œ]&„*7q‰EwŽKÅĮaډŚaü)ė¶ćҤ©égńG™ć4mbœ¬;.‡Öļż~ﯟ,?k»ķJean®sšŚ%!“ˆ‡Až·ć@[Ą] «ˆ5i Uö>ŚĆ5ɍé3ö,¼`°…Ć&į–›±ų<"å5›ś+#źKŹ”£VĒóĄ¦ķCFö\(pĄ#6B2hQę#NhP…¶‡‘ŌÜUv›«ė[Ūė±+•w‡. Į!!g¤Łį؁.į®Ddī!ķ0Ė@ŽJv”Ā0ļ°cč°ĮpŪC6–’v‡…äĻ0ü¶C†FcmćU£Q³š“&;cUa§ņ±|̈C°oĮÓŲ±DŌĆs1x/¢S1¼Ń@®%[bųCD÷:¶[Mu1ŽwŠa8vt$¢+]+ž»Ōšrģ. _‰įOµųh„/ck©I"Ēā­‘×Ć_)ļÜČøŃCbĒ’k))æ/¢ćų×Đ=ŗŃoMbé}h„.e|Ü C U—Uj®®°"sSeī“ąŹŪ§w's—KO„s<²‰†ŌĪŖ*U8É+"õUŹ—%$YČē“_fF/=]f89WćvE9U¤³rŅ­~Pgö“4b\ŚC¹§“éGj}’× ²łīē·U;F©£ĮMŽńąV“{š|§É_4¹ÆÉ_5ł›&×ä1ø~¬Ņ³¼‰Õ äņm<ą©FŲ| ÷±„—ä"^n–‹H“q.bč].7Ō%<}®‹CgF»ÄßÉ?‘ōŸŅęŃŽdo]8ÉŽ/Va1’Æ†Ń½¦TJ½łZi,wÉ÷YÕ,²=–ĀPCģ|ęėõłµµ˜A!ŽV9gņ]§¶æ^Æ‹č“ŗ|ćō5»‘į膞|!ō’QUėŹÅu e|”ŠĶ\2ŶUpä“÷ {·;ū¤ņPK .3|QĘ¢:ėž 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/br.phpUTŲ]Ā_VMoŪF½ėWĢ”mW‘ė69T‰ć:¶»µrq€ cEÅEČ]aw)E²ó{rα@oŖ³Üɕd5aXÜyoßĢģĒ _Ģ²Y§sxpЁųq )Ļčwʔ™‚ÉȚHA¦ų3›bø–¾ļĆř€÷Ø'Üx5±Ćß „éŲxķ©o„Ŗ„Ņ2Ļ!–³„āÓĢ äųT/śEį¹øn!}­Чr~8~¢'×(Œ˜­cŅŪ“Ēy°NMOčéĀMū“cFĒ+ń•³•·fžÆ÷nTm4$l “-Æ昆ÕZąGøėźe£„Ń6+gŗ„čĪĀ1KŪ›QĻ3;ø6•A®ż5æŚX©.X^i)bŪAaļQTūpWėųÖ呎šĒĒĒp'tåč2A¢9šh’e5ļk»©ų³½C1G*jQr œ+7R©³ē¢ŻĶ¼21tČ*£j*ģū;Y¢Ŗ¬©MeY ˜Ź\Ś÷ —ö’ØVe4‚øÕŌĆMJ‡ĮŠr?˜£÷ģŻzÆŽaąÆöf]ķuŅ×e•ŠU)ĀT‡X§ņ‰96#g¹f‰TbK4HbKŚėzÅV°¤¶-E= r:n~ āDœF-‘r„mŽ·2móQÓ}­Ż‘,jGõGŹsĻŹé Ģ»'qśƒŒM”Ł3T<įXxŹioŲ«B±æÄńŸQAә佺@R÷ā°IµŚkŲńŗ·…ß$dæģü PK .3|QÜ7>Ź 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/br_FR.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆ’ŌŻXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų Ta¦ˆ ³XČ3H@8Xv9)åæģ{Õ®ņ ĻL6Į«#Ų»>%…YzŸÆ’Ņ×Ģ›ŃÜbŸĖ/Ó%Ų4A$©jdš3_­PNwP"Zå~—ķīķt8ž?Ž«ÕÖO‚Xl…‰Ŗ0¹&8ĮBt£ŻknģQƒ¦­ģ`„qĘļFŒ0Ž/§÷qģwƒć^?°»7PK .3|QéęLņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/brx.phpUTŲ]Ā_-KNĆ0†÷9Åģ J@ˆR¤H( ėČv&ńØ®mĘcBo“²²fü?>{’m¬Ŗ¶®+ØįÓR‚‰B9£b0X„ƒb|Y™“š±)ŚU~cnį™Iyč1i½^Ē'_Ę  ē‡éką-hŹĪ ńĀ4[åGpdЧRé§Ąg%üD‡Ŗģ~—Ķ÷ÖŽżĒqŚųÄ*E%) “Ī‚#,$¶Üö2,EćŪ®/\½_žäĆāaÄIe'Ą8ou9į8*­Ņ(d”s—k£döÅš‰†į„{†f×jžŗ¾)ßø»ÆžPK .3|Q‰7,G6 briannesbitt-Carbon-d046377/src/Carbon/Lang/brx_IN.phpUTŲ]Ā_ՓAoÓ0Ēļż¾e«ŚT\aŒĮ6Ĥ1”ĮeBSä$Nb-µ‹ķ¬źM‚ā—“©bÓTUBźm_Åū%-,Ė!zHüžļ½æĻq7ž ’A«Õk·[؍Ž$T¢ˆ¦™÷ …x„TBŠ6>gF NpL\SkĖׂuōLPĢŠ‘>U mų6Üb&äŹ x³*}ĪEYš¢€F‚ʉB˜…(„aŅlÉ".śXQĪ:hl“SJ†Š·æ·½{šz×ZŸJ°BC,QH„ŌĻ ѐŖÄd »ä™ˆŁ(ŲžŠö>ĶTĀ…|h×]thz^ŸW#Čüü,īĘ)õƒnŹœ¹³Ģå" AT&ĀBą‘'Č Å1ļ ’ž’5AŽeTäy;{‡žē:=Ā\søN½mYw§O:čńf%¼‚ó²·Ó;:r:8._NŸ3•TŽĪ':æŃłTg:’ė™.Ž›LīRc_éā3Ø ×ĖŲT,Jé ōAG~«ół²°—« M’ ęąRå?źü›1‹¢”G^Ąb9ž4›”tžÕ¦­ZIS o.æ“ECśī)yŅ|ZõWĻźū’VCBNB<ś}§fPs Ļ›•‘±ųT“Ģ‘œĆóZā f½ø§–(¾ĮżĢfŸ³ĘÜōNS¾ö©«–żłuųg^Uę>CŸ²C`v÷xäETHåY€ó`ł§ ‚†”ōWŒ—ątī®PĘĖ jļ‹kķ×µ~PK .3|QŲꑅw 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/bs.phpUTŲ]Ā_ĶWĶn7¾ė)x( Ūu˜E{PR»Iģ .ģōąEaĀhwVKi—\šĒŠ[åś=õÜghś^.¹+Ńrb[½”°AĪßĒo9ü½8lŹf0xŗ·7`{ģ]) +D…Œś“eŖ`¶DöōDIRes˜"'_モķ²WZ€doŃL„µģÅċßK•噪¢ė„[ ĀUĖTs£Å““ dĪ*‘”44„,”®Į %÷YS!īZą¢;=y}üöüŲCµül –-Ą°\«ÅÄYĢŁBŲ’,ÄŻ(§3¤‰ņ–ģS’…>ö„³„ŅfäĒOŲDĶEŽŁ\ÉĶŹ”ģ\i,‚üFƒüūOEˆÆ‚Ā” č’zJĢKńģ› =G]Ņ*¼lą&’ų—ŒXGģÄ­˜ih“NKv1`Ō†7zȾ;`ĆQ¦œ“lŖr!a¹.a"Įp?†nW+iĖ$¶ž”Įl™HŠ¢Ž:r8O‚ ę5å|™ˆ.{֋ķCsH—*¹\ a}܇<6 ¤–2»\ amÜ/HłŲ€ZHŚßi¼j¹.@*­ÅnH)T2æµśs'óe"A*öœĶ֑0U!¶Ńb†ldE­ŠŖK7ÅÆZ”°³!Nuj Ż/Ż*z£ĆM3ō¹E±Ā6Cb±ŖßO~˜MćXćß7k>;‡£ĖKó„Ū=L¼oŠŃnę>žN¼ļōH0ƒć'@­Ŗ•Ö=}gõmžĮž ¶n›€į") V«>}¢~Õutśó•adLb –£#~vĘ”–;+ggŌŲ¦ż¶1}ļ–SŪgŸr¾Š_—A…“żōķĻ3PćQ—”‹6Ģ]1śźµÉ$¾·+§vżīvś¹»ö '3’رĖšŒĘīDRŠ  gź‹ĢiŅī²ßz ß =hYÉv:ū“Ś?ł¶«o™1Ÿ6ō¾Å×gxA\/$ę3¬f~Ø?æėė`Hó{”¾}”£¢įsH9ą*{?”ßwĆ|č„kłŖĄ¬%5³Ķ¬zÆ’OV””F«žØ>»"=Ö}) XŲ% ’s¢ x|ŗüA=®L¼ĖOoo„}ÕSŋ^ŗz‚š'EP¼Ų†3Ž®}ŗšp¢ć°¦²×÷@ĻO3ß͜”ÆŚÜŌ™ÖÓ`c±ž„p5·*„ŗīÕTf†ńUBdlص+:<’į‘ L¢<ć‘Iģ+™šČƒG <ĪĻćܼŸ×Wc“ßŗ%ˆWxæFuŅ܋Ī*Fጷ>t2ģµ¶Aß`“6ęH¾Ž°yœ…GxĮy‡Ģ#* ›“Ē]=ć\ P(Ą¢ŚŲ±SU1ī‹ŅÆVÅ¢×'oõR_„w^żŚˆÓ8ż1ĮV)E-ruthĖ—FåĻ0$ē«ēƒPK .3|QB7²ņĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/bs_BA.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆ’ŌŻXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų Ta¦ˆ ³XČ3H@8Xv9)åæģ{Õ®ņ ĻL6Į«#Ų»>%…YzŸÆ’Ņ×Ģ›ŃÜbŸĖ/Ó%Ų4A$©jdš3_­PNwP"Zå~—ķīķt8ž?Ž«ÕÖO‚Xl…‰Ŗ0¹&8ĮBt£ŻknģQƒ¦­ģ`„qĘļFŒ0Ž/§÷qģwƒ«½~`wožPK .3|Qŗ8čR;7 briannesbitt-Carbon-d046377/src/Carbon/Lang/bs_Cyrl.phpUTŲ]Ā_­SĶNŪ@¾ū)ęfˆ"G½RJ«HĄ”p©²6öÆš_w×D¹ØŚWHß"”‰„ I^ażFoboÜ žŗ‡xēū¾™łfVŁ}Ÿ…™euZ- Zp2‹(ą7#\B€ )ģŽM„¼rMŌ–ņ-o>rF8£¢Ė¤„Żn~H0L„ć„ńŽJś)åŗPGxiÖēģ:”@"ęŃD`Ė$HyL$K“6d%ˆŻ2ŚÓy'Ēū‡gē‡e)ķO†DBš™œusI}č1"ƒŽEšsb#_›ķXœŹœ'@8'}—Ó,"ÅÆ—sĮné§_sĘ)øīĮńg×uģNW8ø» —ą±cŹ™ĻhlĆ»=ø“Õ¢Ø)؅š«‰š©)*mäŖ½LķQz㓾ØR‘S“bئÅO5ŖóØz.ń┸WslTÅwx*5ŲAg?PÆ‹ž®TXmj"ĢyPc¬‚Ȇ#W„)— _ʏq`z›ž¦“é²Y?fɒƧ‰ «mā6Fj†üØhķ7ģ3Ę}Ԉś]ŽV5GśįžŌKĶ uÖõ³•ƒņž²¼#’ ~”Ļ»Ź V_ ė)ęŽėsõ\N²†Ģ0züK5Įy¾ÆaĶyo±œŹĢcę0S¼6ńoÜßĘ«ńhœÕ~ʅtńżÜ4p˧ԦŽT¬ž“®ÖÆ! Ÿ\hÄ>:ډc»½NœÆ1;B4Č%uąœ:_š8 ®"‘}•6<œā-MµŅĒӆčqWŪo­?PK .3|Qķ”Oą(7 briannesbitt-Carbon-d046377/src/Carbon/Lang/bs_Latn.phpUTŲ]Ā_-PŃjĆ0 |ĻWč­m(ɬlcm…чmocÅQj1×öd¹”?'ģIÜétwh÷m¬Ŗ¶®+ØįÓr‚‘A™E!Œ –`Ņ_(óƒjŠv–ÆĶ^„ŃƙRĻŖ°ėgųģ Ś˜p}ü—¾YŒĘģ˜ļĀ«€~dž|*‘~ rEåą·aįnLÓr÷vŚĻĒŁjé§&L0pRį>+ 0±Ś²)ŻSČbØ KٶŅ,PļPthØL“%ńÖB晅 ė§÷®kVmŸšņ™Õ¾ŖļĶCõPK .3|Qr¶ńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/byn.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ £H“ŠĪU’ŗµ, ŽCÕ·'ķ8Evžæd’m¬Ŗ¶®+ØįĖR‚‘B9£b0‚X„ƒb|Y™‹š°)ŚU~gīį•Iy8aŅ${½Ž/¾ŒA®O’Ņ÷Ą[ИāĀ4YåpdЧRéĒĄW%üD‡Ŗģ~ ēĶ÷q¶Z ¤źƒ-…ÕR”’Ą?1’Ä;I65­Ov'÷ŽsĻ9÷fīüA«eĻ͵`žś<‚.č0©@tAłĖLvDH)w‡õ°MXŸqgį”ä,„-Œ:\)Xč˜p)¤Pض+ś‹tMȂØøb0’¼ē+`”w1ŒH2ģ ŁgŠ‹p2Źķr}ėĖ«[OV UįOłLĮEąńHIމz0䏧 yD,]$!Æ0k› MļƒXłBFwĢū-x„īĮš”ā(Écz…>Š—-õ÷ŚBö ‰*–!0)ŁČ‘8˜‹tŗ±Œų.ĪH|s‰ą8+ė§mٶiĮÖ<Yō«.K'ū:ŸčōB''ÄléģT§ŸtvižÓÆeźĢI^ū¹æŅŁ÷OÅc¾šĘÉ;čģ#ƒ”ü ų›>ŃəĪ>—Ų·&ČO© ~±@‰ģõ€NŽtr^'5’‘N‰#½)fĄ—:Ƒvhś“‚¹9¾Ń·SחŠŲĄŸgo ^±ėv3ac¼ĘPæ¦_Ćrmvˆøć±ŃÕךčģP§ļ‰Ģ^ņsWØņzś–dz\2ŅāĘPnLDÓäå4ٳæü¢ĢØ5W­B;•ėž®­pb×Ėų‹•*Ó..oJõyų_…ŗ\FŹ!)Gt£ZØŻ®ŖU¾™Ŗ‰FČdÕGÉ=Žż©Qŗ-łŗ| Ē/§²W9ŗod-=6¶gļ¶~PK .3|QÅĪóĻ5…2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ca.phpUTŲ]Ā_­WŻnŪ6¾ĻSœl§©‚t¹r›xkb)’nC‹uƒc“DŁL%Ņ%©$^wŁ]·‹<…_l‡"E‰žA2Ģ‚‘ē|ēšćwh’z՛N¦;;{{;°'LAŹ2 ųž©A¤ 'Ž9Mńg2¦b ¼wąµd„Ć{ŖFLkx52Ż8v…Žb‘Ÿ8č[!ĖDi‘e‹éL²ńDį d,¦\į<2'š ¾ӌ“Ż0z[ʝŸ½9}’įŌ¤*łé ŃpK$LiÉF…¦ Ü2=ArW¢1Ł’’쁙”‰ż±Š!UדŸCN1–ęĖ­į­$|ńM`‚×ÖpAd ?Ė„qŠĮy&¦LY×/TRt‰ķ¾ėƙ"؏s’ZP®¶óŪā!ÖØ@ń@ž“¦ßÉ ³­/1‘‰ą¤ä)©.$‡ĮąÓšQ"[p|­n, nōšĶė¦jķ[¹Ŗ‘߄š=%U.øž@Ti^7EcŠGŻ„ĖŸ”ķ–ŅĻPQNęA—6FÆ# Nƒßž—Ü „J˜‡&¬IĮqś@I˜©2Op\–>ŪĶQj¬™čF`Xµ‰—Ÿq\ąa ŒiŽģ4‹ŚĄ›ŖnĘbo9måR4’ˆāöD›2"5«„„i= ‘p+£ģ.škįW ¹)ŲŖļJŅ1½›ÖvÆ{y©ž‘Nϵ2Ŗ:½ p†»•uā “ėżar„=!¹¹Ņ‹GóÅ_kżAīö„äVŅ• YĮŌiy&eÖQƒI)¢+š”J&¤RRÓpÉąń3ƛj)Šqä†d6$& .o ”J扛@õwI(tĖ^£×}c²œŽé-2³Ėw{Ō>U‡ā’ēVs°jQŪTĶģ [Ķ0Ū¢hš Į*g÷¤-Ń4ˆÓL¹=ä|éo$Źj¶4‡]^ä#*÷a×nDMĪŽÆƒDķ`2mĒČÓ\ęsLŸZƞīaØ ·YKģa‰”ė‘+č%šoFÆD|’XžµQGe”.µ_üŻŚŲYėYµ†–ŗ×±Õ¼o^®Ż6oN‹1åxéŲ/OޔޤļäD.¾•m<ń›*óv6vĶė‚Ļ|3c"«ąc”“sąÅ–ę˜Ö¹D¬‹ŖG‹›ŚYŽwlw5‡īŠ™ąŌńö¤kʞ®ēZ­XÖ=æ&¹³ÖNxńՁŒQCÅh½ˆŃcF^ĮØÖ/Ŗµ‹jį¢Z“h-¹µ²E•jѲhŃĶ"«XäōŠœV‘ŹŃX劼“ūŃö—jų̜ͽłł×ūG÷ó¬|ušaxó+”9åc[ –e…¹īš&R×U“Ęå7ˆi_‹ĀµnšT÷fÜGŗ®a5HXE§¹+‚Ó:¶ÆkūrÓmĢÖ§Ŗ>EL"›Ē¦±Yl›Ć¦šR&•¹ĀĶ®DZQÖ‚ĘnAĘkzžSūČ”2¦Ŗi`rüƒŗ ømā÷`ī$‚¼œĘ“l jųrē_PK .3|QÄ·7qą(5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ca_AD.phpUTŲ]Ā_-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5ėņ™Õ¾Ģ÷ęĮüPK .3|QWWŪŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ca_ES.phpUTŲ]Ā_-PANÄ0 ¼÷¾-TØ}+@,‹“ŚpÆÜŌŻXd“ą8Tü·ādĶx<3ņž1ūÜ4}Ū6ŠĀ§ē3›E!Ķ žą€2¦h”ūĀ u¦]å7īž…1Ā™ŹČŖ°Wų &ķ\ŗ>üK_“lFs \ŹæĀƀq‚ĄŽb±Č8'¹¢rŠw”q?LĖv÷v:ĻĒÕjė§,0qQį±*M°°zŪX÷’Ŗ8² i+Ū7BZ%‚Šwe!†—Óū0t»ŽagŲŻ7PK .3|QÄ·7qą(> briannesbitt-Carbon-d046377/src/Carbon/Lang/ca_ES_Valencia.phpUTŲ]Ā_-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5ėņ™Õ¾Ģ÷ęĮüPK .3|QÄ·7qą(5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ca_FR.phpUTŲ]Ā_-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5ėņ™Õ¾Ģ÷ęĮüPK .3|QÄ·7qą(5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ca_IT.phpUTŲ]Ā_-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5ėņ™Õ¾Ģ÷ęĮüPK .3|Qx‡Ø;Ŗ 3 briannesbitt-Carbon-d046377/src/Carbon/Lang/ccp.phpUTŲ]Ā_ķVĻkŪ0¾ūÆx7·Į$÷®ėĘŚ Mk/££ŲJ-źHž$7ä8:(ƒR(…²£et½lŲž„=¹r§8v—Ė`”²¾ļÓ{zļIN–eIęyV˃ģ$LAŸ„pĢˆŌ ś  «DöG(: ū“Z#_ˆį‰d„ĆU=¦5,÷Ģō1Ē©ŠķH V¬ō©…£~ž¦‰l$Ł~¢šRQ®0$ļ 9 š @–R‚Ų!£ĆbŻęĘźśÖöŗqUģO'DƐ(ˆ™Ņ’õrMc2 ƒ{W"—Å@q±ŁŽ'©Ī%"%…’f)‰(ŽQ.;¤ ’¾Č™¤†kϰķw(oceüv=ĄĒRz“‘ņįį ģś?Ļ^}B»@{viGƒżĄE†’bł‰Įjų‰å_¢½¶ļŸ“fžķĶüw‹]ŚŲF’¶A_ņĒ–7ću©¹#—ńL®{Įt}B•©ŖTW™?U£®ód=O¦uŁĶf4`ü>ä3\'Īł=µ ćķcÕzx‡vU9?åĪźōē윘č?rüø™¹•0kÆģū©õ?vų3k¾9~ĖŖžŲøg• øū?³s÷.^TŖvd±ćʚ:ķŲbęš{īt³Y;Ż„ź-ŗķU]īy®’ršė*?P$œžæ6’RĖfÆĶĶ_ūu+ ŽÜ)?Y €ųĖl’¦–”Ŗ°7ÜZ§ŪyŽĻUrŠķv˜„]Ž  &ž­0Ę'€f9¦ø·ųĄūPK .3|Qłƒ²§ņB6 briannesbitt-Carbon-d046377/src/Carbon/Lang/ccp_IN.phpUTŲ]Ā_-PĮnĀ0 ½ē+|+ Ŗå>ʦ1&!M¶ŻŖŅŌ„!ɇп_ZĶ—§g???yó† T½Z)XĮĻ@z²ƒf߃ ;Ķ­w¹e®ś‚UÖNņ…YĀ“vpÄŲ’lډ¾ŗL½TĘß¶’ŅϳQŸ¬ćƃé2hׁ%ƒ.ę“®÷|ÓBŽ•,źÜ»ŽóŽēa·?~ļ'«9Ÿ Z`Ō:ŠĀŌ&ĮF’!Oröč̇ŗ9l­%±ͬ c°Ś`F“8ŅŒæ‰”iŽ_MSµ1”ŹÆ)J8)ČUŒˆWt]Ļ[8­KXŸKu^>©?PK .3|Q³b’MńN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ce.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې&”;Wiź6Ö²$8ÕŽ·ćŁłü’Ķkr©Ŗšõŗ‚5|;Ź0GŠ3ˆˆCŲībŠ•½˜kÕĪņūļL&ĄsG"°éęń-č„¶ńśņ/żˆ¼ Å{°1ݘF'`Bž,†¬•aˆ|5B19Ó”5ŽßīŒR8Øį§#“ķīpjŪzÕXlOēZqõ\żPK .3|Qo«ęvŹ25 briannesbitt-Carbon-d046377/src/Carbon/Lang/ce_RU.phpUTŲ]Ā_­TMO1½ēWų¶€hPƔŅR *p ½T²œĆZ$vj{‰rƒP¤PįŠJź‡*õŠ[)% „žÆųC{½!”äŅHŃŽß¼yófāģÜ£zT/f¦¦ h ½ˆ˜BV„žu"5¤#Љ, PøM¶hø–>N¢'’ŽÖ©*1­Ń\És8 ] EmŽSŸ é„*qµŠBQoJ¶iDxUYH¹‚–¼"dh&ų4ŖW)l‡Ń†«[]Y\^¾l„œ?D”2SZ²R¬i5˜Ž Ž•ˆeH”QŁ™±ŚŚ…XGBŖYßC ė‹Ļ6\ZRKŽˆ”¤‰%­WIHįĘR±:!éė˜IŠ0^ZŁĄøĢP^„ÅÓčUĮ'H­«=œ÷ƒW¼„Oqi©ø¶L»äfśj‚ėČWę§éš3sšģ&‡ ˜ļ¦mĪ’]sj.=ņÉe[.>6!×īĻ™?.ś˜¼3]Ś8cƒśļd?Łó ß ŗ›“’#ó«×ó‹é ŸĶuīüŖ:Š+Eņ“`ėÕ~؂ylMņĘNāŖÆģ.:µž3Ģ;æ°Ī{Ń„ēk§²gż:ģŚŗtQ×ŗsѹõÕóÓ t»Lš½ŻžÜ삦Że×~‘„§ĆoA¤•‡˜ ˄Ћ~ų$9ŽųĆ]č+4lŪ†`»3Ø ķŅć ŻÜ­éĢcf*s‘µĶzeĀwkŒ’½ “JcPÄ¢‚­ø½ļ³OI6kOMJdĘJi=$˜ EĢ5²«÷’‰ 94Cš°Ā¾Ė—KĆķ܇{ÜŹj#³Tø]hžŃ¹9JļT¦Ó“'x“Ho—yŠ»7>74Cšŗ4Į1æĄ=øšÉįķ¢1y‚G‹ųM3/㼑+÷gŗīū9üĪ xœPŹS4¼0Ļ395–Ašx©ĶÉ…PK .3|Q"7«žö3 briannesbitt-Carbon-d046377/src/Carbon/Lang/cgg.phpUTŲ]Ā_„R]oŚ@|÷ÆŲ7'aõ•¦iKH•Č1‘©j£ČZŪ ¾Ś¾sļ#żõ=ī0`”>DõĖhvęnwö|ó¹-Ū ˆF£F°.™‚ « ,¶(5ˆ 蒱e&ø-ånib½{ūU~ 3ɐƂTĘ“†›lOæpK…žä¢¹=Xæ é.ژŗ†\“;ɶ„äŌ,'®lK¾²AĶC[ŚŚ£Ī{z¼»_¬ī÷W¹łt‰:TP0„%ˌ¦:¦K«ŲŁ•02'ŪØpĆF$m$”w©¤¶Ęœ,ęF*öFW’~& ŅtžøLÓIŸŲĶ„cx Ą~aGTøS!|ŗ…—pe''«†Ļ²•ɐ’ĮÅ 3&ى);«9Q~fԈ\ō“1āĆ×ń°eŖJ!ußųėĀł—±ƒxęaåĮkńŚA_^Õ0ž_5‚ė²_Ās5Ģ^ ²WĆģÕYöŖĻ~¤}ö#µł/sā|ąīˆGĘ*Ó°Ž`±£‹*sć Ó öĻ~īų„ƒ•Ū@ģ÷Æ=$±‡•‡Cń»w&޲˜{m˜T:µŠMŗךCÆŗ_’°XWrå§µ«„Ó¦ ĒēĀźL™*5½4ŸGIż°ß@ģUH’.ÕsŁėpŁżh+ģ7†™mvĻĘöži. × }^÷ÜQ5)’j†YM’»Ü˜¾ćž×ėĮ_PK .3|Qźŗ8ńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/chr.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې&”;Wnź6Ö²$8ÕŽž“棳ü’Ķk“±Ŗšõŗ‚5|[N0°#(gDQØ%Ų¢tĮ—•¹ąHuŃĪņóļĀčįH©cUŲtóųęĖ“6įśņ/ż² Ł90!Ž„G«€¾dž|*•~rEåąŸ :²ūešßēa»?žösŌ§&LŠsRį.+õ0±ŚrSŲSČbØõ l3æpöžżÅ‡ÉCOf§ 4.u9я%*-v¤lйŪ=@H³ųbųÉ,m»;|µm½jŒ•ö|ŖĖ7®ž«?PK .3|Q0RXw6µ6 briannesbitt-Carbon-d046377/src/Carbon/Lang/chr_US.phpUTŲ]Ā_½UKOA¾ļÆčŪĮŻx2AD0Įõb éōĪöī“ĢLÆ=½lö( ‘D§}`5э°(Į×~K_÷WŲŻóbXĮåā^fŖź«Æ¾ŖéھZwź…Bi` Ą‡ J\ Գޓ øƒĮbeź+—=‡jøØ°Žg÷ƒėŒ Ģą L8ĆemŽśŹ¤¼hSo$†Ž ĢU® lZo1Rs8@~øÄĘ~ JśUŹ<Ä õAŻÅHłę nš¼©É±‰™ŪšŹčćā ‰P!g¤Üąøš„;*¢““Įl¬ UŒŲ’īPē^kp‡²`Hæ_cftc0cŖ‚›4ĄuL°2øo^1+_­yˆøŗCÄ0o0 ĘP 2\w‘ÕÓn°€Ģć>†4ĆĀńÉ[­ö‹jÄÖ øWźgEMø2»Œ{Ź8¬ééŅųx鮜Yƒ&8=,śÜ‰³,~”ā‘ I±"Å¢"W®mnÉš{d|Pn)¾%±#ÅBYā™ •kĶøÄkīŹšgŠ’"ÅW)–ÓEū#1ÄUCē‹ÕÄÖ|‹©­Ž^iJ±%ošbŸ5y¾ØOĮsed]d-dś3Ł™ąLj¦3S˜iĖT„zšĻUPėųtĆC)ÖM'KѰ¢“ćeĶīEĢ+f*eø‘ˆ[ŚČ»Ķ r®mĶØ¼zĀéPsuž˜N»Ōęē—ÓłWm9U9=9%‘qjQų’©¤*iV 8ŌõµÕˆ™ś“³„©ģ„¢ž΃ˆó„R¤Nž°*ņövŚļ:ķ°Ó~Ż#)~wv÷;ķķN{_׏ØlSæķåM>RN©Ń͉‡•ęM~R»šPVõ OćkÖł¬BĢö_.üPK .3|QO%ėņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/cmn.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې&”`ˆcå¦nc-MŠćPķķI;N‘’Ē/Ł>Ov*Šŗ, (įl9BĻŽ ŸŠBčA-Į„ >ÆĢŖ²v‘ß™{xF'Š-«Ā¶]ĘŸĒ • ćÓæō-ČŌ'ēĄ„é*~ AÓģMSmj3śęü]åoÜ<PK .3|QRŲ^ü‚I6 briannesbitt-Carbon-d046377/src/Carbon/Lang/cmn_TW.phpUTŲ]Ā_„TĻOA¾÷Æx·…†¶#"J!!źÅ2™īN»¶3uf–¦7Į€BŒ„ ˜^4j ‰c€Ä’†Vż/œŻi»Źöā^ö{ļū¾÷޼ģō¦ßĢåJł|ņšŠ§j4  ßM,š(ŸĄUĪtŹ]ĆuRŌŚH>ęŽĆ=A1ƒ"«T)˜®Fį,Ó!WE—7fŒt‹øP- py³-hŻW€™u “ŗ%«qŃĄŠr6Ķ€`[§¤ū–ēęWĢG„āł”“°J%h5TăU¾fōģ’‡Ā%ŗ‘[ŠNyļ†ŹēBNEøÕ°^Ø“źīā€ČŁ: ‹\Ōc‹ * °øiŲ%śķ†BŅu2&ȓ Uļ#TtJ„õ2 xœż8Éq¤·gL*N/Å ē‘~ŗ§ß–—{G›•ŹÆƒŽ3kV“—ÓąLłĘ윟<Õ2]Ś9?Ū¶čdĖ īįaŸŻ³¹ć¾īy?÷ÅęNߣÜ㓉‚¤Sz$õž”™ ŹF “\¶ąŠW-øfĮu nXpӀņ% låņäš -BÖ<ܶ[é½ķōŽ:½ż‘2 ō †‚³ķafkč Ėö†˜ćŚ„mŚ™F¦…)nʚ‚–jPö_…DP’F’b¼ģī˜Ļü*BZ—Ū‹ä¦M¹•J?¹ ršaŁż2M‹ļć°ŪæösŌ§&LŠsRį.+õ0±ŚrSŲSČbØõ l3æpöžüهÉCOf§ 4.u9Ń %*-v¤lйė-@H³ųbųÉ,mūvųlŪzÕ±ķéµ.ßøz¬žPK .3|QXŃNօe6 briannesbitt-Carbon-d046377/src/Carbon/Lang/crh_UA.phpUTŲ]Ā_„TĮNÜ0½ļWų@tQƔR$$ *Ū Ŗ5›L6V{wģģ*żž_Pī½-üWmĒYHŪpi.3ž7ļ½±cłąÓ<›{;;¶Ć¾fB³TČlœ¦Rf2d'@S%m)Īa†CŪėŚ·āmvL$»B=ʰƒ©[I»Tf«ņ0“ž)ņBiU,VóšÄ,3 dĀ £ŌÖR¦ŠJ0BÉ]6/lm)påyē'§W“S'åē3¶Ķ” ‰ie0a+a2‹ŲٵŖ(Fk”ųa÷ÜwT™L‘Žwł;vĻ÷Vf2:>’Œ(lóTP!ņ£Y ¢pó{2”©H2 ‚šĪ ˆŃĘø"-–øEøØ!ć||~Ķł0ŚC9“Ēķ²ofæØŁ˜ŽŲĒĆPņå _ˆĘćįååšĘ~Ń®o›•Jš,°¢K «į’ pŁ„żE.Žę„”P?=j—=ż¬+Ł&-g•öķ”fż0õbŸóMz„jh²1ę.ėĪĮµ=:ó2M%ĢĘCćv€Ö?˜ßą 7n+Ä<ŗŻ÷1|oŌ}‚dP ÆÅÓ£KÖ?€žļ±œ¢[T%ĄĀž×²AŻŗü§QgcÖś!“ÖĀ‹Ą"hł€ō·V)ä’)„‚“įV‹«”;Y/÷> ”Ž49Ō­j“¢Æ»J$‘,Ć$ė»Sļ}7q.MˆķĒŖ’†Ł‹S„ūÕ½š>⫫ҁŻeXOxėåh»Xj å®zą}ÄĶIvĄ|żK¶Ü¤ŽĆkąĢ¾;T˜–›õ"Ąūˆįä„“\O`±Ųģµ½t’æAoZ4ĘJv7¹±h5ōš·č·ŪæPK .3|Q-Ā‹÷ą2 briannesbitt-Carbon-d046377/src/Carbon/Lang/cs.phpUTŲ]Ā_­WŃnŪ6}÷WpE%Aꬥž’¶Y““čš8(`£ĄŠ-Ń#‰HJž2ļöEžņĮŽ ōIÉķJ¤$Ņv{˜ ¼¼÷œ{ty)‘/ŽŅ0ķõöww{hB*єĘĮ’ …ų© ,&œĮ”į+҇Ų*|ŪßAĒ‚b†.ˆœP„Š‹IežĀĄäŖļóä• }ĖEM4Ķāł<-½ Ā,@1õ “’M¹H°¢œķ”4&ęrJf5īüד7Ć7U­O…X”–( R :É ЌŖ< ]ņLųµŲżź +ģėL…\ȃjü#śҘ¦)Aqę‡DčŁ÷8Ź&hD$e2*ōÜjAf×XO\ЈK4¢ åis©gy˜Éēč8.ļ™žÉLń$Cg™ąA«ė(Ó£ó,‚‡ę|Ņ:ų4 1aŠ’ÜHŹ0£Š£·Xa“źuD†X%³x (OįIŠ)‰c=ū±¼ó+IŹ»œD&ź2Œh²QŒSŖ‡ŒĢĢž’ōܔˆ(ĪpßHēI‚e$pf°gX aŅnū8ΉĄ;uŃ·n0z KĪüjQŃö–¢ ŁAöüQ™`ȃÆk؄öļ”Oµæśy!(ĆzłŹŒ3oÆó&`+ć­ĒŽW’(cqk£ń_īöž:ģõ¶RmóM‰µīµÕńļĖćOéć¶@[č¼ ’ĘŲ'ŪŽ~¬8Ś>śį÷ŁĪ¾·×HI(Œõ#|_«qšZėŗx­Ö!0Oć0Ųėü,}ü µ®]ĻtõGŌ+ŗ>ϘB‚GónX4ć˜(S$ÆŲ0»$OG'œ©ŠÉ<ÜŹņޟ»&Y°’i–ŠżNŠEæ)ȔVå׀°¹e±Ā±,ģŠŅŌoĄ`w,œ Xyß"6ŒĒć6ĒÓĮ!¼ś~½5ę¶U8V‹\„Y•éXצ«·q[ ŽesŪ*ĖĀ.ķÖ±˜×¦”ÄēĢ­¼Ł³sĒ,\³…/"-=6uZŽ }Š×Śfc|ÅWm5’,lŗh/l؎hcč±%ėšNæNovø§Õ[ŹSo©¹bæī.ķ6€Voæ„ŌšöėŠ ÆĀ¹ ֟ÆŖļ¾o;čS©ģ†˜8 ’’§'l®’Ō+ĬŪ6tĶęX‘móž°I6m‘Öģ’ÕČuÅFÆ×+MkÕ9C6<3®?tp5Ó¹§Šˆ…Š)RիǧŻ7ń¹Õ0ƃźZƒÕ,~¶Oś„łÉ‹ |·ŖSRł…qQ &pŗŃsA6у(øUzųš7¹3$~}Ź©ž½)ļ?W=äU’Æõl\Ÿ’qPSĮį°KGŃXĀHuŗU(£ØŃ£äFIވh%“Lz“¹MZÕ Ö‚‘ąį6®“¤šÉ€±~†ņ ¬BłµfWÕAė„* ŹæWWĢHĀ] ŽÕ‹œcśĮ GĆŽP7¼ §a\¦k>Į™ę2TšÉšĶŅ’Tė`Ąą€?—œĘŠé“ķOöĮØrDB1ŚO^5v"ąʅhnŹ{Õč;“©wwŁ8éąwļ’ľ…œ†–ē@JĒ©]§§}4ōŃošs܍ær+ü+в„6.€śfpŪČDŠ€’ÄT8ą)‡FÖ«ÄƒĘ€čĖĆŽæPK .3|Q#ÉåĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/cs_CZ.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦s„ÕlvęPK .3|QõŹņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/csb.phpUTŲ]Ā_-ŪNĆ0 †ļū¾LØ}&@lCš4MˆĆuå¦nc-K‚ćPķķI;®";’įK6ĻŃĘŖjÖė Öše9ĮĄŽ œE!  –`‹Ņ_VęŒ#ÕE;ĖļĢ=¼ £‡„ŽUaÓĶć‹/cŠŚ„ĖÓæō-Č4dēĄ„x­śņ©Tś!Č•ƒ€čĖī—iZ|ĒĆvśÜĻQ ŸZT˜0AĻI…»¬ŌĆÄjĖMaO!‹”RŌ/°ĶüĀŁūķĻ>Lz0;”q©Ė‰nx,©P¹h±#eƒĪ]oBšÅĆOf!hŪŻį£mėUcR×¾ėņ«ĒźPK .3|Q8ޱīŽŗ6 briannesbitt-Carbon-d046377/src/Carbon/Lang/csb_PL.phpUTŲ]Ā_„TĮNÜ0½ļWĢ--ŚUźiK)-KE„]Z .U…"ĒńnL;²FģĮǬöF9rK÷æ:vœ”ŽjE²gŽĖ›7¶“ĆERŒF{{#ŲƒĖ„kXņŒĪQäLĀą„ØH Lє¬Ų>r-ż} Ÿ'Ι޸1pŁšX`(Ķ>•ł‘§~–Ź -Ė,*‹ÅW‰"bČ8eBcI±”*'†K1†"cs?9«Ü{ó/'§ē§VŹł3 1P 1×FńØ4,†Š›ō®e©(ĆB±3{`;“ļ~,M"•žŚõ؎ĀosČ$%(¹ą4!|E=Yé”CT®&«ŒGtŅ0ōńJ”ūR­œ¢b¦T~ŒGŠX×¼?ņ)—ž_ŗLpv6Ķó`Ü.zČTėŲ@ßqL‹Él6=ŗĄ³Ł,mHšŒŁ ,ēeķł?5Ä«f r)LāŪ “©·t-xJ‚1+%sžā¶ÕŪOæMģnwOõ6­81.Īɵ›éš©Šļ²z[tĮŗŽd^½©Śµ*ƉhéŚČ‚ĝ‹ś”Y‡ĻŁō|{ĒŽé³?ļĢkµfZ#ŽDė -Ü­KcrÓn”ą,^³Ģ,ź֏»ŪŌ&*S’R©7²–±ß”Š×Źø|Įß7+-£śĮuķ”|[ØÕ﵉ʭ¦W|©–sńæZK®“ Q-”ĖŠ ;Į7õł†dQŻ0¢ė­geų-{؎0õf÷]Sɰ’*Ö!•B0jd#Ń£zf§L©,…%Ó G`ΙƮhŠŪšĮp<ĀĶī.xīh€Ń’?ŲŽ–u½µ—Ų[ą’YyĄTGŠ ;ŒĶŅRŲū2ŗz7śPK .3|Q±˜r§92 briannesbitt-Carbon-d046377/src/Carbon/Lang/cu.phpUTŲ]Ā_µTĮNŪ@½ū+ęfˆBBhK۔Ҫ„ $Ģ”p©Zmģ5^aļŗ»k¢ÜZĒžA½¢–Ro°’ØoqZÅåŠ½ß ü”¦åĖd},}/Uifq ¾L‡ŠEØ ę>KŠPŖ„.EҘQŒp6(óv¶76w÷6GVe&¢TCĄµQ¼ŸĄ€›ģ]ĖLł e³mG1“)T):$Š„1õ¢Ÿ)ĶOŲ‚bŸ2®ŅŪž@HĖm3ŃĀ“q›pą.7‘ĀDŚ…×ėpązĖdV,<±šŌĀ3 «ž[xaįe e Ö„³ā6§«Iežw­+mH€ē!C2`ģø,Ų™°å,Ę.CexgæŒø[[Ż$q›ÓÄŽÓÕŗBZź#®%Ļ[źõ*ä žēĮ ;C#V’›¬ ®Š÷n·7dTŁ„®/3a ’U|+N󻱊Īe)™g05ĖŖä%_ŠļÅYq1qJj”Ō:Yįż '*T|ĶÆņ›üŗ8Ė/'~ƒŠPRof•xŖ]łķC÷Į\–’9łVįS®*~ęwŲČu~ūŠoT« ¤Īh<.š_2sŲł%N÷P» 1Ó‹9ķĒģ>ēq 8ŅĒ•±išłRĢčā|tėŠĻ£Ä±¬VAI½Õįā+ē7PK .3|Qg~б 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/cv.phpUTŲ]Ā_„VOkGæėS¼C`m#ŁäŖük9$ÅĪņR„«Õ¬w‰vǦŖš( '„BS|©{ė±P_„‹Ą‘-|č˜µ¾PßĢĪīģ*vmŚ•„fężŽļż™7oöį“~ŠÆT6ÖÖ*°»AČĮ{šæļ2Ōxę²qÉ{ķī‘uÄ*ųŠ· OYčĘšŠšN(<ģØé71N©X÷hōŲ@ŸS¦‰üAÆķļ³p/ąĘ]č…‰9šŒ}Ź"W„4®BæG\\ū1$C­·õņŁę«ME„ż+`črč†\°°3¤ ĆP(Aß90 ”®vvCEØt戀2^Wć|Gy;”??gnü÷õŸ@^rƒęš„1`14+€³O\ęĄ£ĒąŌ=:ˆ\$ļå¹SMÅnŪŽÜ+/ĒÉŲ`F×jD4A‰„_GÉĖYĄXŅ 6ŗAmHČė2ļĻÉXĪåŌņZHÖ F7huŻż«œ”į¹åĢå–2…Œ®UpĻŹ^Čiņļ,§üĢq£5£0Ę)»{!Ļä£Q;¦Có±§¬ÜS «šFƒŌc [ÆÆÆōŁkćAō‚gƦņކS£ś¬…)nŌ”¬Öōöœ¤X„¦†««“õ·Y-…¾† Āņ²YüŖŖ-;EŒ ¹\ž®#ž/É#ʘ Ł‘'Ę^–Żaø6󚝭ŻžāE=Š Öv ’:ē%a*j4jŪŪµš) T­C3M ęń¬Ūų@3;£‹c9oA£Y“X‡‹ćV™å?ÓTįėhrŗ.>Uųæ¤-“UĻ푸kš]!­ÜH#Ū­f¶]-ŲŚEy]©B*“ŸDAĶlįŌ¾ĻŪXóźOy†u7MZ Ā½M½ēņ‚Õ¬önµŖŌ VåoÉ­Ī1Ww²ŖR“Łć¦ål-%–²n»=sĢćAŌ!ĢlFéŅ0ķČnŪXu€ä#@c˜$c\;гKlX‡z4QŻB.püE®NTBß/T‡ĒƒŠĶmq”Jp.ž’3=ĀŻJõ‰?uZ%/Ū/_QņÕzyWÆó-óė6ÆrŌu‡}$ĻŪiņ c?P~ 7gŁÅ¤:WŚtKkŸp~®±ÅÕĻØ™Ļ0ŗclŪŗ†–Ķ-ZX9Ä|b”Čš®-{YĪ›öÕśf=ʼ°ö­=kēkv¼ō,·a¶¼eVĖ™2ųüq”.ż6õķūÄ}ū² ÖS’ŖYž†””zų6g|Azü‚*$õe§õ ņPK .3|Qe-)­Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/cv_RU.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm£Bķ0bŅ$“ą½JSw±Č’ĢqVń÷øO֝Ļw'ļ^²ĻĘtMc oO& :³e4x„½å!E„܏½`«ŚE¾ušĘd#œ± $»aÆQa’Ö„ėóæō=ńj4ÕĄ„üĖtń6ŽČa,§ÄW+”ā#ä€V¹;į¼Ž}œöĒó×q±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ńV‰śžpśģūvÓ¹{«Ų<™?PK .3|Q<ŠZšĒ 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/cy.phpUTŲ]Ā_VŻnŪ6¾ĻSœ‹²3/Ž‹®Ü.^§‰‡øK€”p ƒ,¢iPTU”ėóōö}±Š-’aKäł>~燩7“mŗ=;žŸŸĮ9<¦¢€Ddtß2m@%`R„k¦×J’)žÄ6xA\KļÅ}x§“š‹µ0ެķšICe.b•_yź{„”¤Ģ2ˆÕ¶Öb“`’C&b”¹”‰Ņ93BÉl3ddū,°jęŻĻ®o><ÜX©&>“2+€‹Āh±. r؄I ”Ų UźÉo‚Ś ķÜ·„I•.ʶ’ ¼×Lžų®ˆ’ĪžœĀ¬`”dįĘS&f0W’mR&%¦Ōg@-Ŗ‘é~æ‚čėčŪ:«jĪkłĻr4˜Éd1ŽU) $Y-‘óhą§8¾×YkĪ•4iŹEq B–@ķ*ä¢5WˆŸŗTµI„ ÓŖ.XµVĪźą•‹JKÅ<{k˜Š• ֔*tX„4Č˜ŻłiČIHZĆ]ž„,ćhlž^Z{±’<čŌqZs±™`œ•’ĪęvCŁŲFy»9B-įĒæaÕ­ņ•T¾“9VZ˜œŌŻéLw§Æ‘žyģāź)ҰĪŹPo‘$;²SÉ1*¬ą=e¢:FW7ųeŪ%õ&ć§§āg–÷'{ü 8(r®š4¾§9%ŚsŠFåJė6üšņ­Oā{‚-ķ„¢Ū!Ü:¹7°1ß?śÜīĘyū$xą”ƒŒ‹bōĮO‡ółš#µ=°EaN ŽįcŽŻ§6€ēČKŸ^Ģ2”Üļ(ü –ć“]“…[A`ł(ńŽ;‰_ĢŽÖŌšÖßa«°Įā˜•±¢£eų„”%JQhH»sr‚nÓøÉ ’¼ß$Æ4’e ˜”2¶ō~’e¾F݇ÆAĒļĄ¹čĄ6o…+xq¹Ų6Ž“+¦5«[å,^^ąWśæ¢’oō]^.ūDޤdLo1m6ż#µ1ōGĘ&•h`ß|{™½Öv÷7<ŗ&'nĆ!ŒØŠFQ8d9ķ7ynš’L;#ÜX'/N:Yö¾LK˜PA¢Ąčænŗßŗ§—/£™r»D×i…“E6ż9Łģ~Ń }%d™³‰ę†)&TcźŽ*$(„+ßŪŖ0ŽĄā]Ķ56Č#‹IŪōƔm’ZG˽`VõfRÅ²…Ą»öž½ćÖkė1ø³ē.ķˆmöSZfx(›üšž}VŹ0ŲUĮ QĒ)ź0ž±2ōo+”čq:‡¼ī„鯶}šs§āµo] HīX«=U­’r2Nʼn8 '” ³²ē‚JVįCd“ūʰvG²Ø…O§—ž•ѧœ÷Nāō»5E-øĄÜźuóB„_¾>ūPK .3|QÉ? tĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/cy_GB.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm£Bķ0bŅ$“ą½JSw±Č’ĢqØö÷øO֝Ļw'ļ^²ĻĘtMc oO& :³e4x„½å!E„܏½`«ŚE¾ušĘd#œ± $»aÆQa’Ö„ėóæō=ńj4ÕĄ„|gŗxGä0ŒSā«Jńr@«Ü/į¼Ž}œöĒó×q±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ńV‰śžpśģūvÓ¹{«Ų<™?PK .3|QÄƏz°• 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/da.phpUTŲ]Ā_VĶnŪ8¾ū)ęę$›uQ 'o·Ł¶I¶q›.»®aŠŅHb,‘IÅ ą× öz÷‹ķP¤(Ń±Ń 4Ćłų}3üÕ닺ØG£gg#8ƒ/אń¾5Sd¦@xĻŌJ jJÖ,Ē a-ü$9…wŠ3ŸQÆø1šzeŻ?¹ŅLY½ńŠk©Z¢¬)KHdżØx^`"…’'(4IŠLŖŠ.Å9Ō%2j{ąøiūŻ~xõłīŹRµł™‚Ų0 )×FńUc0… 7E(w-• „m²/l…¶ļŪĘR驵…?0Ū}‚ÆŃ5]+&v’I¢xē,…(Øhįü—šA3ķ}ŹnP•ų ;Ģ_„āk˜%oUJ©žT ³Ęi§€)ŚųkPĮɵ¢Cń ńßÓ6U…¦Qę# güˆLį÷70ž&²vOjŪ›ćscĖˆĒ@?ATIaŠWķž¦ŪČƁš Š «˜9U“.²A\GĮ&Ēmoōz$ÉAmbŖ ’²x R–o{{‘Ÿ¦1(蓞¢įUHŌŚƒzz,Õsω J“öćaµMŪ”c¢łōĄ Éß§Ź)āŠønD˜|ē „‡]²ŻS@ė”cö Ķré#vŒ@sŚ£],S²Z éW€¬ Å„ž™­nгA¹+¤#‡įl÷=DSže=³h¢v#ƒįv‰<.ęų­`N.¦_æź_Öåäō"Ā?¢¦¬„ł`‡Ęˆ=V 8 ŸƒOĮė{eÆźƒ–½’h/vukś„hKŪY†+ķM):ĖČŠ˜Ń³J:s¬¹ĻÕb5¼€g÷ĢžÖSv|ĻÉŗ£½„rLŽČń8ĒāIGF„{E.eÖ_Ē/ū;Ö¶;Z/ü¼ņؒžŪ¼>±Ó 2«°ųmō?PK .3|Qžx6æĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/da_DK.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅÄŻXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų Ta¦ˆ ³XČ3H@8XžrRŹ}Ł öŖ]å7īž™l‚3։D`?­š))ĢŅ»|}ų—¾fތę#ø\~™.AĄ&‘¦Ŗ‘iĪ|µB9ŻA‰h•ū!\¶»·Óįxž8®V[? V`±;U}Ӏr݉̾ ­†Ę(“žOŚŹQ+ƒq6†®AÉÜĮąq˜[Æę‹Ķėā¼jČją(=h㙲ØįhBĶ g÷®'…|HaSAz² ‰ä© 쩐«źÉ›Ž?{CE‘­^Š"‰R-žLĆV#ŗdóÜĻ®Ō@Æ"ʲ4ĻÓwF’æÕņ<‡æņ/żb€å2iŪŪÕ§°ÕhwšļČ.»ńųPK .3|Qxƒ¦Ū3 briannesbitt-Carbon-d046377/src/Carbon/Lang/dav.phpUTŲ]Ā_„“ßo›0Ēßł+ī6Š’÷®ė¦5Jņ°Vš¦ŖBpĮ6ó¢ü÷;LŲ é“‡Y‘Nž|ļĪēÆĆõ§¶jƒ`½X°€§Š(xƀb‹Ś‚*ĄV nQ§JŹj,يrūō‹ģ¾hŽö̤ÜZøNūķgI[eW™7ĒŌÆJūF…kČT{м¬, Ģ”ᓆޔ…Ņ-Wr mƐŲgÆŪE·wūĒ»¾•ŸĻVh”C97VóŌY–CĒmE Ķn”Ó£ƒr?ģ:ŠĢ:-µĘC¢YŪ`Ę(fNžĘ.4ūéøf$›č[’¬Ā5“+r&\Ās“BĮ4Ļ9!|¼ēpēBÓ!l)%lĘ]¾,‡üޱ:ǃ9ęGÖÕ^^č°ÆŁ:ĀÕDøčØłŒÕŲ‚sw‚$žƒrČįä3‚,]§Ī&JL„“=ĪõąD_šĄ}Ųb7„|r¦ūŅ·\žW#”¤­Fb„9”ŁČEŹGž°Ń’)=™²Į”)]™2M’¼³bQ8YbĪę“sņ€ō›S^3źpʜąļ ż•ĘG~O¤«Ķ-™=R$Ņ™ŗEķ{žJߝעš ĮĆHųņhrÖšĮż÷Č毓'įżż• ēœ åŹ˜™8H›Ķ:Ž×?hĶÄQ…8Žį\Źƒē§’NĖi-įoÉt»—ĖĮ/PK .3|QyÆV²}D2 briannesbitt-Carbon-d046377/src/Carbon/Lang/de.phpUTŲ]Ā_W]nć6~Ļ)ųę$M½Ū¢čƒ»Ż4]'›Mćl§]Y# „±ED"’Š7AŽŅǽĀ^ ¹X‡?’HYvl9óĶ7ßPҐzs\f厎«ĆĆ=rH®3¦Č‚å@šZR©‰XyGå\p4%wt CÄų~r@~—ŒrrjĪ“&oęfśĒ©ŠĆDo=ōLHK“Øņœ$¢|l™iByJr–W˜’/„,Øf‚‘2ж{+włįŻéÕōŌPY}:£š¬Ø")SZ²y„!%+¦3ō v%*™&J­ŲW¦B{RéLH52ćļɄ%…œœ‹,w•d‹EAeĪ”ēL!‘\ѵƠŗhjŪ€JcŖe“%Ƨ*ņMuÅÓF«›…µx[ŲVtÖ!NŪūĒ8>ŻńZ[ÓS4 ņ†6óV<¢»äMn‰ąńzLį.*ĆMƒģaŒYå’RŁĄ6…©nŽ ü* OģÓĄ3R*r:×x<œL†’ą/rÖŽ!™ą¬ū{d]@ƒKńwD6¢gu‰ ́§žpŌØhćzoģcBŖbF.ÆÉĶ_™œ…Y9|Ń-Ö­įVš§ę“fd’›M؜Ŗ€ŲßɍĢŻ2ßä ń՜‘ķ9L”§¹ņūŃew}lšOĄą‚ņ —źˆ Ī`.żpņüU>šĮI)Yn-”™ĖEÅż5·×“jY)mFS(5s°ńļ“šĆ+qß˜ĒščƳp[P· ?>t«Ē‹©…x± /Ākš|jŸÖgl’™6†oQ]ųTp®© ŎēGc†ß\µæÜVŲŚ¬Į kĻ™ę‡SZXk7ITÓԜČMš”Ėįfī2vĘ39ttĆuŖś$jˆ£q,ŽÄq8ІAȔqšū=‘Wfķ›ä‚a=¶W‹Eū­ńC°¢Żģ ķ×O…‡ĀŗF̌‚ē0bņĻ~ŁūPK .3|Q:É·žJ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/de_AT.phpUTŲ]Ā_uQĮRĀ0½÷+öV`<+¢‚8ā(åę0mŗ%ҤnžĒ?ńĒL[½ø—Ż÷²o÷ķdr[Ė:IʃAXKå Tš ęك-ĮK‚9rnM¤Ä·4нM{OōaĘ ¬ČåŹ{˜ä ¼3Z?¶šžZ-·ƒŹ 5[Ym„4h%ČøøŅ”–+ōʚ!Ԛ0r{E‡V÷²œ/Vļ‹fTėĻKōp@…ržU<pP^ʗ诣Ą‚⢢5;n.l“÷ĮKĖīŖ©/ĄIbU–²¦cG­Ue»źU ‰¤įÉJŻ1+¬l”ģ:4#6¹€†Š­ŲAļL™~»šÉ6€Ģx̘j‚bŚSé3(&Ȳ‡å[–Ņqō?%ĀG1ŅŹ/] 7ÓÓÄeÓēļ/cˆÓaĖo†™‹§śeæšM’:łPK .3|Q"„!™5 briannesbitt-Carbon-d046377/src/Carbon/Lang/de_BE.phpUTŲ]Ā_-PĮnĀ0 ½÷+|+ ¶Ü7Ę`Ą$$@ŪMØJS·‰’ĪI@üż’ _?æg?gö:ˆ!˦“IųŅB'BČ#¦'VŒ£ÄXUąFśˆį$Óp@ŪHē`ÖÄr”Ci\ÅĶež ¾Jƒ:Æp3ÜIöĀÓ-(ÉQŪ°Rw†.ĢI£ ²€]%Ž’n·]mŸ›8*łs‚9ø1 ­“Ždć¶p“N„Nšn'ŽaQ›ĢNć…Q»ōN²Oń]Āqł!ߗ½’ /•įL”]ōŚW†ś¤$tž40"vÆ Å8†Ģ=YyÅᯗ„P×ėķ±®«|V†?Ķ ųĪāōü’*›ĆĖü%x—€ü¢ÜļĖõ:/Ró\dēńsöPK .3|Q«Ÿ*Æ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/de_CH.phpUTŲ]Ā_-PMoĀ0 ½÷WųV@ īc|hHƒĆą†På¦.±H›ĪI©śļ—†å`?æ<Ū/Y¼5ŗI’łd’ĄNš”lBnP<Ų¼&X”ä¶”ŗį•fA;ČGj ŸĀXƁ\ĪŽĆ"Ź÷:”ÖĻ”­–’Ņ­•8Øle›^ųŖ=`]€aEµ +ėŅJ…žm=…ĘīĪŌžļŻjs8n†Qџ×č”C;/œ·ž čŲėp¼;ۊ¢°ØˆfēĆ ‡ŽÖk+īyĄOą4 —e…bØP'®ģķYi$_V›8BČ·RŠ`Ÿ 5…¬Zq|§‘ŠoĖBeėŻO–ĶŅyŲ>7Ā9pŅŽčV`ļ2<ų^—pN6Ņ}ŒkŽ8Ęud¶2Ä#¦—iræ$PK .3|QZōž)ū_5 briannesbitt-Carbon-d046377/src/Carbon/Lang/de_DE.phpUTŲ]Ā_-PĮNĆ0 ½÷+|T“½Ćƒ±I“ŠŒ{•¦nc‘%ÅqØų{Üj¾8vžß{ööerSQ4eY@ _Ž ä4O†āāö†»“eæĶˆµbų½‡7&ąŒ©#ŲvK¹ ZF©m¼>ß ĒČ+ѐ½§?¦Ń ˜Šƒ'‹!©d"_P 0y4Śū%œ×¹Óžp¾ŖÕŸ8#0›=%aź²`3‰Óõžbf‹*ŌÆf›eĆeö5‹‹œ—wGF„Kd6Œj1‡ž& ¶.Õ詳•ÖxL»1ä:ņø’2JęŒ?™” mßOŸm[oUÕ³nžŠPK .3|QÆbü3łZ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/de_IT.phpUTŲ]Ā_-AOĆ0 …ļż¾ &ÖŻĒƒmH“`@āX„©ŪXdqq\*ž=nįŪyžŽK¶÷}č‹b½\°„÷@ZŠvöNø {'5'łO×aiŚI~åÆįQČ%8c®I¶õŌī’µ¬„ēĖŻæō‰eµCŒą¹’ź‚‚K Dņ˜²Y¦–åā”8Ż@ŃŁģ›pœ÷žOūćłķ8”ę|œĀč24”UØIƒŻXö̃x4£f»ž^8ķ> XņfŖWšāŌŌ9* |øoZ+#Õ~Ł»ˆy÷G`ÉŅĶļ3 briannesbitt-Carbon-d046377/src/Carbon/Lang/dje.phpUTŲ]Ā_„SŃNŪ0}ļWÜ·@U5ŚkĒ؁D™“²‡ ”č&¹%WuģĪvˆ²_Ų7ńŲ’ĀqÜŅØL¢šbūžćsŽÆā“Ļ«b5ÄĆį†pW° 7ÆP[P °Į9źTIWŹ–ųHcĒméGŁ1|Ռnɤl-œ¤ķö‹t[eĒ™*OõRi/“؄€L­Ķ…”9ĪHg)J—hYɬ”«=1ÕžÜĶõłÅķü¢•ņłlj4³±šÓŹR5ŪĀ!.»Q•ĪČå>l<Šd+-µĘ&Ń“˜‘›³J~¢#Mæ+ÖI2½žž$ć(&9v‰Fp?7¢’4ēLeŸNį>šWiŠX°#Dæ5/±4zuģšh™ccūL˜{ī™e)Ć ¢Eæ®æaU`ɦcˆ?UŁU §–÷ŌS(m_=‚APĀŻTĮ ¶/U²ü/”RI[lī»~FYsC-é’Øf63ŌįnmMų’ÖĻUMėæaŁtģ¶żĪiiQ¦•n7ߖV©°¾UŖŽS"Ómś‰z=js…L!MČҲIŃĖ܃q°Üš-X›øN&j‘“MõŽ6Ø’±Cw|ɗoī|%ŗŗš”®Æ»Ą|™Ó;hĻāŸnō  ³Łlūš.>ó8ģ›oi¹š/®»yw¹†\=’©JZ(Üspż‰cd hŒ© Ą~?“wKæžĢ=:n^ŠŪõ!dLļŽŹ”ĢūG6ļ’ms“ƒ Ž?^PK .3|Q-'ĢńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/doi.phpUTŲ]Ā_-KNĆ0†÷9Åģ J@ˆ¶H‘P<֑cOāQ]یĒD½=NŹŹšń’ųģżs“±ŖŚŗ® †/K &r匊ĀbŠĒąĖJŸÕŒMŃ®ņ;}ÆLŹCi$ŲėųāˤŃįņō/} ¼MŁ9Š!^™f+ ¼G}*•~ |QBĮ?@tØŹī—pŁ|ļŻįŌžÖ؍O¬XTCI˜Ę,h`!±å¦°§Yc)2l»¾põ~ū³‹ƒ“ŹN€qŽźrĀq*T.Z5¢VĪ]oŒ’ŁĆO&F†c÷1 Ķ®5†®oŹ7ī«?PK .3|QYm6]`V6 briannesbitt-Carbon-d046377/src/Carbon/Lang/doi_IN.phpUTŲ]Ā_åTAO1½ļÆčm€ĄN¼"" IōB ™tg¾efŪ±ķ°ŁšI ‘ !ā©«F7Đhö¤„?ÅÆķ²0+½xp/Ż÷ś¾÷½Æmfįn™—F<3Ó 3äiĪi³®%•šˆ6Ń9e*[‚#•īŅh¢ÖɧŅir_2ŹÉØӚ,“\ā…n¦¢³8’>ҵ«¢ ©({’ķäšPž‘‚„Ą¶äm!;T3ĮgIYEnA××­Æ-ÆnŸĪ©&]ŖHʔ–¬UiČH—éw0»•Le>lģ&tµ÷* ©ęŻ’9²‰5ŃēqŁąÆ`­tŽeN—‚A—Jh ¹ć-$čJrB„¤½DBYŠpM+©ŲLIx^1 $IVÖ6“¤ÅĄ›xøŃ,yÖpīQOEäĪāˆņōŗ'¢•ųQ¼µĶśķ°DĮu>Ŗˆ¬9³ę“5߬łjūūhŒŌźŌ¹5?<>“ę4Po­łģ1²Ö\\ ūÆ­9ąĢö_¢żupā€_YsbĶŠ[˜@ ­ł‰ĄŠx,<*ļpµrרŽaxÅÖ§N^•žßfļģf“wuēG¾Ń Ģuپ’ʏZcϽى‹~­ŃĄö_XóqB‹ģ¾?¼ūŻkĆ Ē7nŗa\éim{2üÄÕ];8Ÿ|2p-j-įĶĮnĪó{Œć’,HD;i3©tā9Ō*}¢[—O$ĖtĘ1ńI¼ĒHćw6šļŌŪ† ©ąYųf̧¢āšxį»ńUÅ1)@)"”`“UĄØīĻKhņͶ§o7~PK .3|QūŚ—ńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/dsb.phpUTŲ]Ā_-ÉNĆ0†ļyй*”< Ś UB=°œ#/“xT×6ć1Qß'ådĶų_>{÷œ\jšn»m` _Ž2Œäź™ ÄÄ!ģėźŹœÕ„mÕ.ņ;sÆL*Ą ³&Ųée| uŒŅšxyś—¾E^ƒĘā=˜˜®L“PĮ‚'ƒ!׏0F¾(” yTu÷K8ƾ÷ć¾?}öKŌŹ'N Ģ*ƒ„,LŗZ˜I\½©ģ96X‹ģ Ū-/\¼ßįāĄā؊`œÖŗ’ń†Gœ+•ONi2Źūė-€Q ‡jų)ÄĆp8~ C»élÖĆ”oė7n›?PK .3|Q½ōēÉ86 briannesbitt-Carbon-d046377/src/Carbon/Lang/dsb_DE.phpUTŲ]Ā_TĶNÜ0¾ļSų@KP„ž¶”BY v[u‘P…5qœÄŁÄNm‡hÆUß‚ĒąĘö½źŸģB ›C}łĘóĶ|3'Ž’ReÕ`°·³3@;č*c %¬ Č`R#‘ Qt 2ÜøČRšX¾E¶ŃWɀ£)UÓķGv{ČĶV萈ņ  =Ņ %uQ "Ŗ…di¦šŒP®LIžY‚f‚QUP0¾;F—wy~|2X)ןĪ@£ЙҒEµ¦1j˜Ī czW¢–„šB±kvĻžŠęÕ:R¬½‹Ī_*¢DŠMɀčZ 2+ŖÓŻ“`Ł-‚ŖĆ”×”©Ó”Tג#XŅŖB ’Z*vG·$żU3IĘćó‡Įå”™v0D7«ųź*@ŸZ—s_^9Opv6*Ė`ųš˜½bFJuHOĒįdž4«C¾°hbzš&bˆ\t“>=,ĆŪ7ĮmtlÖuT7$ŽzJĮuÖ9Č× ĮL$Hh$Wvł|/‰³ ’‹Āū w˜×œ­¬¢µ Ik„©h„iy1×¢5¹hÖī˜ow{ĀŹ|ŗķģø =„‘…‰iČāQå`¹…‹š{(פfŌ^pšm®-LEcaLÉŗXCé<†ÅjӜ.©?ć÷§ī·ŌnÆał[ ßóLę"ö–nž¤ž»„ē{oĢ„łßą]Ī‘¦y[Ćk{UÆŲjy„÷*%ć’«‘0©46*X$Ų :”-Ūś}eķnAAŗØĆ[{‚5ר0ēķ‡,6S€7¦¾ŗł_ęęŻ!+²‡ܓż2ĮÆęv—VM ø'}=æßɏ7S€7ez>3Ļg‡v’2ć°ČzYĄ}ķd7ovwxÖµY}t’f÷ ųs‚w§Ė:e+ µ™ܓ|»żišPK .3|QLųĄnŗp3 briannesbitt-Carbon-d046377/src/Carbon/Lang/dua.phpUTŲ]Ā_­U=oŪ0Żż+nS6ŗ¦éš¤H€8C“„‚’čˆ°Hŗ$Ccnk ƒ§Œ2Żŗ äG•_r¬¤., ‚m‘wļŽ{Ls‚Mģš’™«;9Ž?<=;“TΟΰ†VR„% MR˜Q™Œń®D!b„RgvŲ“D’–—H’iŽbīI!½&[’|)Ø$€ŠĮń'„ѐšéLŌ‡‹˜+bDŅ”Į›·p™qż›tDā²ŗeEtŁ÷Ą!“—*«;M-ŒÕóĒÆŖśmĒc܏X1Y‰?Ü\Ń0¬Tæx½3¢°Q³“ē*HeBź'­'© Tś%w }IČ(’tLp5=H©ćHi(«ē<­v¢źłĆچV·öėø5ūŸĻ[ϧ¦īץ\/ euļžĮZā^†—õB׋‰o>.«;Õą4åÕ½ł8ī¼ŗµŽlŖķ½ÕŁUėKßėą·±6Ž–f‚‘ą _ŖŽ©T™-@bŒģn8éWMÖ=””.äĀ'ē.ķ2õWg+™]„ZIŸ:ކŸĶÕJ59Fš2»šöyx©½„„ę‚uX³p涒`éń»‰(ø†Å…éŠp9Q $É)Žsš]Ąu _Ł’vE)ŗ3šwÖ Q'…§ē³U1“õ³Ķ”mLķ Ģm”ćāį^KŸvĄb“1·/ČĢkžłÖāŁz¬ £ōįPnžˆŚ%6ō“޶Ā1ź$į‹IOŸ-$^æpµ9£ä—ŪÆ{PK .3|QĢ>ŗĄÅz 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/dv.phpUTŲ]Ā_•VŻnŪ6¾÷Sœ‹Ž‚,^o½žmm†“H{“E,QQI4Hŗn°’.©““Hѵ}ĒĶŅ4OÄgŁ!EQ”%˜`Ąā9ĻĒóĆstėī0v:½„„,Įӄ ˆiJ’‡—Ąb ū°Eį‹`‡¬ VĆ„ß8 rxBĀJ ·zy/Ē%“+!ĖīXčļŒCń(M!dĆ]Nw AAJC’ ¤ĢcƳ@R–/Ć0%Ź^R26ūÖŽ_}²±ŖM™óÉ$0DTHN#I"S™ Ļ.؈‡‰"sŲ^ēFĘr™ø ›Ą§«>«KµÆ.Ō‘šŖõµ»låĒ(£®QÖŌMŌ9®gꋺp²#õM}2ųÆź'ŸØoīż³ś¹®½õb§øwꣳ®Ž£ģ m}ōģœįy>Ł%ڼƳé3łüWźŠčæ7tūØ{»`ßōć¬”Ūś„Ó¹1&äEģśŃ:BĻOpĒ¢OÕŌYŁC։·ÖCOŃ©Jž=>™[ F{{Œ{N½Hģ”īŠč/<ŁŚį’Ģ;iĻŌÖÆ#™0.śśż'xÄDŒ“Ų®ƒ1EÉZ™ZąDŽx^ŗ¶KŽ…Ūw ŪŁ(—Š])ÜŲ«,Ų®Üü³ŽŗŌAŃė’¶aаA6)²^y0Ė41¶ŚXę6ėŌ5ō)ŽMāĪ+’ i9Ī0“:ģū©Sp„žjål±‡åŅ =A#oē}s@ĖZ‚ڽk1‘ąÕnPé‹óĮ”ē¬ž³ młźČ6ζ2šc“iIŽĢęGŸÕĒŗ –øö,6¬²ˆŒpQ’ŠupŲ]6õpÜuóaö“¢¦Ų8‰d‹ŗ©…Ŗ\Ķ)żŻ‹ ŲZŹóŁ™lĪčęp5ƒĶ»›»Õ̵x3cķ»™­ĪĒ?©,Ŗń6ń3p˜˜r!u3ßfq5J~®¦– ­Õ+7>ošįż/PK .3|QÄ'鉀‚ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/dv_MV.phpUTŲ]Ā_­VŻNŪ0¾ļSųbR7ŌŃķ¶6L Įn†4MU…Lź4I\%īŗj›„QZŲT“ĮŽ „®@ŸČϲc'qœžhŅŗØR“ó}ēó9Ē'>YzY·ź¹\qa!‡Š®eČ“‚ąæŽ}†Ø‰˜EŠö÷©&ć×Č"pż±ń­Z.©¢UĒFKųĘö~ćUĶŶ³hPw%潦¾T1Žƒ ZołvĶb{UäŲńXĻ3©ļbfSƀźĮ`ūh“¦ōŪŽZŪxóvCHÉą˜…jāUķ€ł°$ƒš6³ĄŚš  Ue¤E‘žš]m0‹śAIÜ?M(\ź1+@ĖØœCpåł5ņ#>ąmŽēĒü6_ˆķ]°ŸšŲ&±æē’āekó;~%ł·ü›fļš;uĶĆZ#ķyÜ>ų†šĪ’¶hżŠtzĻ•“ As±‰˜ōõļł©Ä&°#ĄĪfų]B½ ¬ņjÕ$䠊[zµŚł9x“}ĮūJåVķhĻ¢b)d"*•ŚO ćó±ēcąˆl»ąs”Uā°S‰4Ū=膹j‘ś„5|/ ²E°ŸGĖ+(’łŁWÉ”Ģk(¢žR~^ŲņĢJÉ  ! V‹“ęq–ż• täīŽ æ™"h³•Ą<ĪbĒRZWnŌ ųNõ×(Jc^h™Tā6š, rÜUƒ”ėæ:Zp¤¾āż¹”]Ī*\LQžó8»¶g“¾o!4éP¾ŖS÷,GšĀ<ī1اծńęɍ™Ŗ’„Øö ž‡®ŃH¦Äl— ų%õ£Ļō©»ēŃf†×•ÆÓ@ēa“’o¤}S…L[Rõ•mš{-€˜źN¹ĮāõśÉ‡£)§#9}Ńrc—ś~æp¬‰•”tQ=£ƒIš·w#—ĶĶ’ėĘÜx«!„ Ȁ“^Ü)¾‡+%ځ MĀ“8š\\ŃŖp”YÜJœ›āUćSVK.Ą.YOjW֋WAø¶ G>± SÕoó:ÖdxY‚ƒ]JŪÕq)ĮL„ŹŠJ7’~!Ļ“°‚¦Ø‹”6œ ī®ķ±BøÄ·«6‰Īģ²čƒÓ|AöC7Æ8ņ‹C2āÆ °Ą× ›'Ó7‚’§1P÷žEI—²ß2F5²Óq-ļՈNĒsĢ—ć8¾—cXåčĄZ¼ĄšCńʇHp`F’PK .3|Qšc ÷ćż3 briannesbitt-Carbon-d046377/src/Carbon/Lang/dyo.phpUTŲ]Ā_„RAnŪ0¼ū{Sb6zMÓ“i#"ØÜCĀJZE¬%R]R6ü†¾¤_č5čæŗ¢h׆ŃSyŃrf53ūź}[µ£Ńt<Į–•²PŖš@ž-²S‚«n‘3£ŹWųBŁķ×ĻņsųČ 5,ČfŹ9øŹśė-Wć&¹i®ĆźÜ°*»ŗ†Ü“[V/•ŌŌ*'mÅR—†tŹč hkBĮ֊6ž½Ē‡Ū»Er×Kł|®B“P(ėXe£6ŹUĀHvk:ĪIŒ v:brk@fܦLm9É3ļŲŖ51}ļ¤éģįsšN¢)é‰4]ĄÓäD¢U[Į»kxŠfŖA+l“$Mæų ktŲO7µŌ…[?26Źīęo]ć%m©čłāX;µ•a÷×!čń Tƒ`P;•j”ž/”ĘhWķ¾6A-æDæ2ż™)ęŁWp“u¬¼jLžHŗPIņś«ŪŲērŽš ¹æ|Z9ʅYļį™ōåēć(Gå$>ö<ÄB ’`~h<8fކö„bėR©-5eŚ7č]ŽģX’Æ UxČƏKD÷÷—|H$Ģ„µGä@ͦńō«œ#jĒAĒpŹŅ§ŽūµBükW>üłüķčPK .3|QŽłndņN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/dz.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ŠĘ&”`œ+7ukY‡j<=iĒ)²ó’ų%›ēhcU5ėuk8YN0°#(gDQØ%Ų”tĮ—•9ćHuŃĪņ;s[aōp¤Ō±*lŗy|ńe Z›pyś—¾Y‚†ģ˜ÆĀ£U@߃cC>•J?¹ ršaŁż0M‹ļż°Ū?÷sŌ§&LŠsRį.+õ0±ŚrSŲSČbØõ l3æpö~ł³“‡žĢNAh\źr¢K*T.ZģHŁ s×[€fńÅšYŚöõšŃ¶õŖéŪķ©.æøz¬žPK .3|Qu·Źę\ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/dz_BT.phpUTŲ]Ā_ÅTAOŪ0¾÷Wų@ŠjWĘ0 8Œ]Š„"'q‹Ōīl‡Ŗ×Š!M;u„vŲ °n;Ž!Mšźž’”ŁNCŪ”–ö“Ī÷Ž÷=?æ®<Ƅ•\®°° ąMˆ9(āż®@&-"°™G‰Žņa å5׊ēüyš’aHĄ.ā¬x® ©Čū“¼Ś£¾¢Ģ&*ĘQ|Z©1\ €$öįZ’)+C)Y•A½w„QÕĘmo­oīīmšT֟”UČA€¹`Ų‹ @‹PŃŽ9™“P`ĶL…&öE,BŹų²Y/½±ŲZgF*! ^\Z*EŲó×J$ĪSV²ń ‰˜ƒ5—”J}¤ß~Ģ8>Bs ½‹1CĄu7¶^»nŽ) ’×'ė,‚·9“ÕIjćx¶ŚŪ²ŪŪvĆQ²©d[u)y«:•¼V²³æÆäW½ÜŁQņ³’5ccĆY“ĮÉĖ)S"Ā^VĒŠ»æmü¹}6”<¶‹¦~j/£Œŗ’Œ¦Œ×VņNɋɼs%æ¤5Œ%]«nÓ.ĪĘ1Ŗ{kåźŹ5,ļt2©„ŗŸģé6&ēkŲJļ}?©n×·ÓT33Ҙᦻ\_e1ŅśĪÕpīN+ƒÆ3ų&ƒæep;ƒægš ž™ĮWŖs9ŗ•uyeŒ¦V: `­Æėv.ķQ Z’ešóÅĄI7,l=ČӗšOŹ;{Ń“7«•¶ęn É<ŪfŠl«Fz¬oģōžNŠśĶÅ`£ÓsxøÕI–¤Ž~żŗÜÆ"ĮY«Cö’­ž™QeLž› mĄ„E·ˆ®qdP Af=IG1`T¾·yœNŠI’öląOöÄ$Oāī9Ė>‰ś«1,›:¬Pā0ačEØ2#ŗ³‰ Ģz&Ø?cÅŹ³‡@wv­ūÖd¢LóĘ ³”;}ö$‚#Ÿ’¬ĘÉX>5ŗÓ§>˜šūPK .3|QVēü™žž3 briannesbitt-Carbon-d046377/src/Carbon/Lang/ebu.phpUTŲ]Ā_„SĶr›0¾ó{#ńxģ{š¦?qšP÷ŠÉdkŲ€$Wˆ0y$æGü^]„ķӜŖĖĒ~ßžK\~ZēkĻ›ŽFŒ`™S+*×ĀXŠ+°9µ0±VL%…Čp¾­ūYr_  ¬b².ćÖü¬ŲŌv’hyµsż¦K“ŖĖ½~5”å„J”¤UÅ%ÕJ),i5†u‰‚¹ĀĘÅŻ×7‹‡›6•ėĻęĀB#*H©²†āŚb ٜī½ŅµI „®Ł©gŠÖF0F¼FׄH1©ME/xfšwM!ŠfĮ(šųSTތ?†Gųų „„҇WščĻ–üŸK’iÜé b‘Š×jÆS-I“>‹ēš‡¶>¤šHPŗ5¾!¹{:]ģwž’šyŠŖ\»/'’RŲ‚®ĄRØ.µl!Ü„ Ća*IźæI­l¾=lxU|7 c4.žĄāmcč„jÆr»9!•čŁaQ}ŹBåv“5B=‹AĀ“”Ŗ“ĻP±ŻHśJcƒļhóv¬·ĶÉ:zĘ.x.ØہŪėmgŻvVXgNSΚ£ƒ pĻ'ƒģļs辙Żīåčū„cü»» É·v,<)UÕ;i6›†įōŸžøW! CŖĒr§Ć°śĮ-å3†÷œyŗ§óŽPK .3|Q„ļk’Ÿi2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ee.phpUTŲ]Ā_„UKOŪ@¾ēWĢĶ€¢D½RśPJH„CįREŃjbć•›īnĀ_ą†¢^8rź’(HžW{×%’*Ŗ•Čćł3ž]Ū'ŸĘÉøÕźµąni –ŸĒØ-ØlBpŠzØ N…)ŽØĆ܊~Ā-±€+2Ci-œ «ĖĻ_*Ū UžŃSæ*]œ,ƒPēZŽ XDÉ Ć%‹Xé­TEĘ!禒fµīņāōüźś¼²Ŗū³ Z˜”H«åpb)‚™“ #Ü»QŠźf»-Mv¢ @­q.43 ‰ĻįD9„M?&RqvńMˆNŠ„¢Ć“ ŚŠoANZF’ņ>|„~š|ĻPP>ƒ¶ĆgDi„sćń“\YžÄŠŻ) 3ōQ:ńĮg 7‚œņŒŖxŻ\˜Di»TĀŪ{ļĘŲū6žŽrÓ-—Å’zåŖ°IsÓ¬ž’·‰īźˆ—EŻÖĘå"žżĖᘻESŸÄ<+yńĀó„ĢŖ˜—‹ź_÷C™KFT>ꔎĖÅmSé«=­Ģ*ŗ›:^ä›j:ņŻųf|/¾ _ßWö…Ķėb©V ėõą ś™ÄA6I—% ·$yKń†$⣽UČCrs˜j'~y 8Õ¤°žĢ·(¶Č––Ł”åSFV®ÉóŠź×§Äį)ægŖGsĶc¶E±ĖĄqx×8Āó}JéśķG;0[µŽš Šį#|yPü[sHv¢(vųłŹ‚ßŗŽĆ±\!t»‘1 ‰·Ä0£æŠ}č(ö*įD†BUųљņ1-łóBf?:Š=‹ ß·žPK .3|QĪ’ļ×5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ee_TG.phpUTŲ]Ā_uPAnĀ@ ¼ē¾Pī”ŅŖ@RŹ”p©*m6±ŗŁM½æÆI9@„ĪÅņĢŲyśŌÖmG£F°«ÉCEAj«8€« ŌsҳBé/uĄT¼ū@į…IYŲ /(˜—öŁJėBŖ]3»Z_÷‹ŖĪŠ®=3źŹ–`H£õrŅVŽČŁZƒJø#᩟ĖÖóåf»¼¬źó…Z8)%łĄTtK8QØE‘ģŽu¬Q•}ŲqÄ:¶ ˜Õ9glŅ(UwģéˆĘļŽ!Ļė÷‡Ć`#«ÖZL‰(dHõi Ł# Į‚Ė éŪ,ZøŅöO¢nv°žøk{pUõhĻĮąEš*xÓĖIüƒLeU ŻŹ܆l–PƉA½yņl·cތńŖw³>sõ²  ?ņ’”Į^ćv[X>$Č$ ¼L•|6 Š/QMŲ.‰Õ&£ī’G£: ^ś]MAā ‘rY@ƒ,‹M­™d-ā’“M3³Å+UšVŠ“®÷į"Ė=†Ś,1²Lž·‹¦å‰ŚĀæ»¶>:”yu ‡ōąµ’·v94ż½2½YP—2§½j;LūjؑŽü.¶‚­>tźHU«ųóŹ×Ŗ¹.šŒŒ#ĶÓTUć<§Uŗz½:7WżMkŃ<ØØ.źŃ»<t­õb”¢āµ¢oP&GŽ]ROŖ‘=]“¶¾ˆ€‚Ģ®y.2Ę „ט~—ōr$j­̳€Ń道† œŁń 9– ņ‚„¢× |ż™‰aŠųÄč0F<1ŠÖ łpI •cż½qØĄoM‰œ7•!gžĻk¹|¢É ŌĶHŻæ+’zĖU°-)”ßõE¤%ž Ō"&ī8āć;œ@ŗĒɍ{¬'«õŠ~ęSČl®R(kŁv¢īāuÜ&ažIŅĄĆA‰ØA Qņ÷üŻR®×®z/ü‹p}ļ1œ6xģ±ć÷ƙg ®ļtcų+ōųC~©e†Ķ®\ ©ä]ŌļĪu+’§dµā\fōJr®”l).ƒ—ņ#é~ŌźĆ±ĒožtŅrŅ_įLж?ƒģ,'׳Xāf]ģP©9PK6Ķ5ŗfW®!ŲT¢Ø9‚D5«Ģj',ŸĖ‚ä\CŁ©ŁŠØŁŌØ9ŒŅJķ5osRIMŃVQ£ĖsŌd;wµ\oŠśāDcWļŹ6כ]ū¬r½ē„ÆŃj)Ē+ü¤„)‰i=„d%²³•“­™“ZRŅ“Ó*HÓK’ó,ō˜¤śJeŅ} ąCl‡źė ’ßåŹKÆVźŪ³’ģIņƒˆ×ņ¾ōa8“Xī>ś1üėĖ,Ä£³F•F“DqšFķ4ˆī÷^Āį>är\ď'=…cĒČ1nŒcʈ ži3.ä¾DĶōĒĮ§é4/åŹHjå*ł©u?²rą7i ĄĆDõżS$wY|0ņ/PK .3|QĢ„A..ø5 briannesbitt-Carbon-d046377/src/Carbon/Lang/el_CY.phpUTŲ]Ā_5PĮnĀ0 ½÷+|+ (ŚucŒ Ų„4qŲøMSå¦n’Īq@üż’²åāŲ~ļłŁ‹§¾ė³l>™d0C§=4ŚÄŲ# ø¤#X#WĪʒ:bKEÄ&ųHį…5ZŲ“Æ“,Ŗ”®lLŹ–ŠWǃPŒåś+ė¶@[ƒŃЬ#mćų„¢Bocķ¬é2šŽwėķžs›¤Ņ”Ą=ŌŚ ė*ÕpŃŅÅNōī]`EqP=˜§ ÷9HēŲß§’ ޘčŖŅ FėĶ0„'ˆÆ ķ¬5ŗR«Ö†Āq;h1I` Ȍג©7Ø(FŲė3˜~‚f‚²Üģ>ʲČēdŠxå| _YRĶĶ^Ź:²]S^¢‡—p7½u’ź7Pź¦ģJČ’ØļńCö PK .3|Q‚vƕ)¦5 briannesbitt-Carbon-d046377/src/Carbon/Lang/el_GR.phpUTŲ]Ā_-PĮnĀ0 ½÷+|+ R4i§1cŅ„&¶Ū4Eiź¶!ég椐‹óžß³_²|ī»>˳Y3ų꓇F„X{I ®ī¶’*g#„N²Å2j“|¢¦šBZZ8 Æ43,«×6BĒ„rēÕMśęhŌc@¹žBŗķ¤­Įh…ÖĒ•¶qt–¬- 7(#÷§q}ļūķīš¹K£Ę|ÜI†AzصgŅU`¬aŠÜÅNĢī] …qQ=†]¤&ļ&pēČ?¤ūŽ›ˆ§ ķ¼5ŗRsć”4č×­ „£vtr ’H^ao¤ĀXU Æ’pBų4!ńŗ? Qę 4eüÓ¼€ļ,MĻMžEŻ®ā)‡§Ü×īæŠR7” JU÷Eö3}ĢžPK .3|Q¼ģņŠ«2 briannesbitt-Carbon-d046377/src/Carbon/Lang/en.phpUTŲ]Ā_­WŪnÜ6}߯˜‡»kl}ißģ8©“Ų@‚Ś-°ś`W­XK¤@RŽØŽóWż~Y‡I”vó°A†wę ēĢ’&é×o«¼šLŽ&p·9אń¾+¦ Č LŽšž©•%l‡4ÖŸ%sx§8pƒzō×+ėž&ȕę0‘å›0ōJ*G”ÕE‰¬Å×¹&R(x‚BSI‘IU2Ć„X@U #ģ‰ćĘåżžńżåĶņŅR9}&g6LCʵQ|ULaĆMNŅ®e­¤B©{d;“¹µÉ„Ņ§Öž®y!5,Ł£|≇ždu,4K’ŠfUŖ5wd M­ÜM€>–Ų~ąłäeĻĒ/®«ū“ÅG‘ŻSBˆ)I$ÅÜLµė)ŌŖ ¶įR¬ ®sź»V¬ą’øi8l™ßÕĘfjY"L¬kZķØkĶÅPŅ2Ś! 2V+Z§…/“Bcę^‚®0įYCpK‹Ÿ+š|nІØI’Ōś‚Ą–ĶģŌ›•­EĻK Prm•µ¹ļiƒLMįü Li®NY ūB³¹śK˜½›.<{°°½ š‘‚&ŹnĘ©MŸWJaņ±zF՝?.ļĮ¾!ū’r$¤”}~)G¹“yÄĒq‹Ŗ[w\Üa}¶7ĮĘēśŠ¦ES6^ (ā%oLk”^VĢĄöKNcIi‹ętŒŒ5Y,āµī˜Ųa½¬ –ū2ä±¶¼Ū\Š”·µļ%lm&F[rČƾ“ˆÜXlŁā)ұXF5<0®Š^ģˆĪ<ŗ%ŚÜ=Łt¬7꣠£n§č(4˜Żž¢>OųvöcČĖAOeŌT¢ä·šźBƒŗŗ]·ÅMmW`?†üæ]Y·-»–!b8ŻÖ ‘LÉņAČM¶X¬ĶĪčzä; DWH—3ĘဓĒϲ¾Āßµ61·‹ŁKތƒ jŖÖ čŻ!C)•j‹t^<Ä«Óyv³ŗ>G܃q… —éƒĀ¤V E‚ŗ[\I^“¦v†Ę‹é°Tē‰žŸP5pŚĆ±ŚŠ;”Žöötr xźüį@i4ŒŽ+ƒAįś“±»é'&j¦h>`z…+ÕŚ×L%¹5.*Å øĄ§Z ’.œQÆi©­µÄŹ`¹²;¦$FóF>ušL¼}?Šņ é)jzEAMd E ABØ*‡Ŗ”`WĖ^¼ī¢óu–µH=ݵl­Ūu0’ĀTtĪmN—P°Æ֒Ńć×Ść ƒ~–^, {ą ”o›Ŗ½G,‘ēń4žÅ“xOŃ1H•r6VV‹Ä=QgÆDm`Ļž=JŸWÓę_sēāšœŸMŗ1į¢‡³.`?³Æ_gqŽ1Ńļ9œŸŸĆÉŽŅ¤‹ū†Y.3®Ż¦ż“sō®Œ_\†=d敱+ėW—„\–·3q¾…‘Ž›Ÿ9ó%Ģ<]CķāÓ’Šū7Ø[˜Œ+m’Œ›™õļĒćžķgq?ČF­×½óO“ū³É’PK .3|Qx^“óF6 briannesbitt-Carbon-d046377/src/Carbon/Lang/en_001.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hóŃUŠž«1]šZĪ„½,ī­[K‘ØńZƒ“ż•TŪ1SƒV ’¦±t¬¬É ×(ö§pˆsūŻjóy،TŃw‚ajå˜Tåkw”¼;ėIbŖ£ŁbÜpœ}óÜYrć[B„ƒmx„Į¢7õ]~gdPłvŽjUɹ¶RhtĖÖųÜR) Ł“A$®%aƅÄ„'§žpBųėU -Ėõī«,ó“@“‡c§ü$^z[ׄš²øCŽG ]ƋāxL³X:ŻBZ1Ū”"Ēå€x³+ ŠSYrš>%’PK .3|Qx^“óF5 briannesbitt-Carbon-d046377/src/Carbon/Lang/en_AI.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hółÖŖ6ŠŅŁ,‚Ü+ķ Ņ5œ-²[WČkD*¶ųLsńö½b–¬ŃĄ-¹öN6CśŻHjż¼°ĶŁd½²U]]CaŪėgåM µ.Č8yŅT–ōښښP“M}Ø»Y_\ŽŽ]­Ā|^”‡”Śy֛ĪS ½öJˆĢīlĒÉCe6~8Ōžw^Yv‹į~םĮ2äŽŅ£łóŪJ‹å(døC³…%–¶žS2sYzœĄcqŶɍķc8=ƒXXxŻPœL4,Å8łę~“«EÓĄłdžČŻ;Z8÷Łj•fYś ń|„IĄGü‘Ć'¼łJ‰¾t?½~Q³óy)ė³UŽmCõįD'}4 tČv„\GIō“żPK .3|Qx^“óF5 briannesbitt-Carbon-d046377/src/Carbon/Lang/en_BB.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hóZņ²ŗ( ±Õžō.gP&…B'hœŒ4™„R±¶&‚Ŗ@%¹/Æ{^<ĢVėYŪŹļǹbh”ƒT;&½­Sh4ēBdwgkJP„~ŁQ{a[{WsnɍŪ÷@¶ĪՓŖY•^CČ5PDjV…JP|R“Ó_Ų#ü¬5!ÄńtńĒĆp„f(æFš€X˜‘-cc›®®!ŌʬK £Žśėœ‡‡Ÿ~Žäółø,;mÖæČŲ¹?š€¦ÓĮr9xū–bpŠO9œŽ’‘„bü'~?ž§ÉqœŹ×Ł,n?|ńyG»üAŌŅ6Ś£"Æŗˆ‚÷³ĖąPK .3|Qx^“óF5 briannesbitt-Carbon-d046377/src/Carbon/Lang/en_DE.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hó{²Š’ByģĄ“ąz„µąŚčÉ_Ńa““üJ^Ć+“Šp@[“sšPOå‹„q…4ǧYśf8j½R ĶpfźzB7 H¢¶a„n …#£3Š€ĒŲ·Ū®7‡Ķ4*śs½p0 YĒT{‡ ŒäśĄļÖx–5Ńģrŗpź]y×¶wÓ;‡Rh²=|ø`Cpcae­‘-Ō¾Ė;EµĢ•‘B”}é“/ wq £ó¬A0‹sÅ8(!1déŁŅ Æ’<1BU•Ū÷Ŗ*Ņ%ź"|ušĮw!Ņ˱6…ǧŠš.éWˆ|æĻĖ2Ķ"ł“ĶmÄÖUMXjŚjDüś›™ń‹hb§źŒ‚£ź6K~®ļ“PK .3|Qq~mqĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/en_DM.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĆŲź6;óPK .3|Qx^“óF5 briannesbitt-Carbon-d046377/src/Carbon/Lang/en_ER.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hó^ż@Y”6‡Ž‡I|×+`l xG1™elYŽØžć†@h³oOćĀ{>ģ^^f©%ŸöØ0b‚Ę'_g„Fƽ½XöÄY™Q³„ŻĶĪÜŪ¬=Kś5ß·pøū Ok žßā {ŠJ2o½ēć@JŃMxG‹ÅšŹ­Ž(k›ČPēnŪ_»m`‡ŅMsÉŅ-¶Bš%ŠąT YuY’’¦”æŁ›`UŻžTU¹ŚQ,ķCVų(ĄĪŖ1·Uė%i5}ĶŻD(+ø¼‚³Mńyz^üPK .3|Q‚ŹćČ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/en_IE.phpUTŲ]Ā_uĖNģ0 †÷} ļ £¹‰Õī3 戲$„Ŗ2©;h“Ē„š':‹ᦁFx“ų’~;ŽNė¢Ž¢ŁhĮ ć!7%‚œµ"— EkgEŅÆjƒSńvö=½d”…[ōkĆ Gė.=³’:žjW Ö+G”QŽ”%hWoÉl e3(FėåI›;ŖgĒP—ØD{3Ų†ŗ›Õāņöž²kęćB1“ŹCf<“Y7Œ“† !2»w i”‡²0ģ¬ūaW{ŽpįČĻ»ūł”±čG©WÆHŁ÷’Nŗ\ōĀ¢ Id\šlƒ½ųw +Æd>ō'ä†,("µM ėRi”S7äĶīžk !¤éru—¦Óx†v*›ĒšDœ“«RėŚŽO –©ęl*ŒĒ ›ńöA¾yčķ××óŖ¼ø’Fꎒ€=Z.'I2y’ų?)$°‹w9ģ>’eĖ$ą7ļĖēļ yN3ٜĖÓń5Ō tŠ{SG»l‹Š‚ėp½ģ’‰>PK .3|Q&oqŪi|5 briannesbitt-Carbon-d046377/src/Carbon/Lang/en_IL.phpUTŲ]Ā_uĶNĀ@Ēļ}йUH„wTTDF8bH3“S»”Ż­³[OäƒųbN?4ā\¶ó’żē£s}[f„ē…ż¾}XgŹBŖryKd&—< ļŒ)Žć Ä[Ū/āŒY”†%Łr®wuz§%5n›bŌY§†›Fi•ē›ņÄź-s€:\Ť­ŒŌ©į2:€2'ķ čŲŌ=Ļ—«ĒŗU³ŸĖŠĮ-$Ź:V»ŹQGå2!²»5Ē$ƒ’fٰžĆŗö¾r™a;¬æ/acš÷…rm:eԟFŹĒ­°Ąź=Œ119¶ŅÓęå ¶iĖä*րĢxŠ˜Źc’7®ŲŖ]0½WŠ ¢h2‰¢’ČĮż^=šS6E¤Ķч›ųJĆŠ©‚ü £ĶAlŪ‚F~^·öŁlX·«_dhķŲ¢É$\,ĀÄųMa!ēųœĆłų["Ąęmąm{WŽPK .3|Qx^“óF5 briannesbitt-Carbon-d046377/src/Carbon/Lang/en_IM.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hó^ż@Y”6‡Ž‡I|×+`l xG1™elYŽØžć†@h³oOćĀ{>ģ^^f©%ŸöØ0b‚Ę'_g„Fƽ½XöÄY™Q³„ŻĶĪÜŪ¬=Kś5ß·pøū Ok žßā {ŠJ2o½ēć@JŃMxG‹ÅšŹ­Ž(k›ČPēnŪ_»m`‡ŅMsÉŅ-¶Bš%ŠąT YuY’’¦”æŁ›`UŻžTU¹ŚQ,ķCVų(ĄĪŖ1·Uė%i5}ĶŻD(+ø¼‚³Mńyz^üPK .3|Qq~mqĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/en_PK.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĆŲź6;óPK .3|Qx^“óF5 briannesbitt-Carbon-d046377/src/Carbon/Lang/en_PN.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hóiœĄąT”„©ģ+HU4{Š={ŌCÕvi„ēŽŁŻ-c×:Š¾ēD7œ1žōÄÖ¾ķ?­-²%†B?“åp4 •ÕÄIl„Ó±¶ā%ƒ§ ¬ņ?u$0Tw|ČauŹĶižh~PK .3|Qx^“óF5 briannesbitt-Carbon-d046377/src/Carbon/Lang/en_SE.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hóy?PK .3|Qx^“óF5 briannesbitt-Carbon-d046377/src/Carbon/Lang/en_SH.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hóūÓ5]e³Y3X7ŹB­Z;dSƒ4WČ[£=T>ćŽRÆå“r —¬PĆ=Ł­³ķ˜^hŸIK³??Jo ‡Fµk[(M7°Ś5Ø+hUIŚzK]Ž£(£čZB½*źCŻāīźś~u=¶ óIƒ=ZؔV['TAƤńŒŸŻĒ%y£* ›/k’:i Ūłx’ī aejé‘ɏčtģa²fŌ¶E”Ōš.}Ć)ä=šą½ūUČ.ä“,X1‰c ȌCĮŌµX’„c«^iĀōā”·+Šüī_Q¤qF:õŸ'š?ńa 6†ßēG(Ą‹u@āŪŪł~'‰Õfnķ y ņ<[.³Ķę„:rK ĻŲl> Ž«aŌ|u^|ŪćDųtqå·aź¢Vl„艞Ēl 䊹g=ME’PK .3|QŹü¤_Eš5 briannesbitt-Carbon-d046377/src/Carbon/Lang/en_ZM.phpUTŲ]Ā_5PKoĀ0 ¾÷WųV@¬Õ®c<'!‡m4”ʤ.õ(Iē¤ öė—†.ū{ų•Ńk]ÖQ” ą³d W>Ö(L®$˜£Œö”:į‘ļmķ=Շ™0jŲ’=°s0:“p¢=4.Qę<ī¬oFB£¢©*P¦¾ KØsØX‘¶~¤.ŒœŃ±ŃCØ+BĻ]˜®”n½š/·˶UŲĻ•čąŠr¶NųŠ8ŹįŹ®ōŠßݚFłAyX6m/lk§+Ų§6€évmlü¬aFśĻ>©ŒĀŠģ a…:@ž {%š\h'äр"xĖ„ź łØ±|”žŠOĆBe‹Õ{–%qJ:ńį+’āū©6†—qGzˆx±H7›t·‹‡AŚ»"ė²Ü4Ev%:÷c§vüŻŌŖ-ŗŹækߎžPK .3|Qq~mqĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/en_ZW.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĆŲź6;óPK .3|QUėZ™j 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/eo.phpUTŲ]Ā_…VĶŽŪ6¾ū)ęęd»ė W7Ͷ‰7HŠõ^6@Q8†AI#‹¶D $µĪy>IO=ę ’¾W‡āˆ’ģu"špę›ļžhؗ×uQO&/..&p i!—%ż×Ā8Š9øį0‰VäJ÷b‹3Āzų³ō9¼6R(øC›Hēąe⇿)j7KuõŠ”oµi‰ņ¦,!Õõ£‘ہP”2EeIRåŚTĀI­.”.QļAā”Ķ»}’ęęīžĘSµõ¹B88 ™“ĪȤq˜ĮAŗ‚"T»ÕI‘„²¶Ų~†>÷÷ĘŚŲ¹·Æąm ø×ó0~k„śś¦ü×Į±”ī“ÉP9;NZĄ{+h!lKlŠ5FĮjōLQ˜)üś ¦óT7ŹĮNży`聯)6=ö,čqĢ5ėü•V®ÅČ#\$ £Ö į»Čźˆ4*÷£˜ÅJģTäįį@²ĻųōpĢE31^'¶‘ÅŪµ=‹ÉĘTQ¤ £2 щ ŽØōŲ³ ń¶ż–IEgt¼¼ŽÕļD;īŁ ć»PóFY‹©VŁŃ ļ• ¶£„‡9]ōŚSGeZūʉ’ž…¹“vĮÜčj£4o}­­ĒEī°Ūļ‰Ń©Są04" “yNļ„˜x0ŽI4„y²1øÅOõłģzžń£żi‡ĻÆGIN÷œ:“ĒœmxĢPēł*mL·Km¶§”1beଔ† }©uß~ąrŽĶ«Š±øDę֎‚!ō=WĖåÕb1 rt±ŗį–ō\‚aēqpZN„gō\ĀŖkųQęšēžŠUʍu0y+*\tŪ¶āҲ Ä~r=Ž×ų īĻŲį|”°:E•ĀŲų\=Įęq=ŪŖVҁ^Ć9^?››Ņņ+p{“taI%J~?TS%¤›™I ~537ó —^Ā`u$ķĮgˆ.(ÕŠ½äa9&¦³+śBh QY²kמļ%Ł(ƒA3ß66ą-Ö«$°č½Ól*żŻ¦ĮW“±Ōn]_×Äåp1\ ĀetEp,Ͳ¬ÅüķEļq·™¬„śöw[Xé 뱁fo0Ųß¾F0č$vn+ŗgOčG³!ęļŲ;ņHĢ“ĢxJ×]ž,pŖ@Ä4$pDŠ\ėü5ŗŃyw’ÜßÄŽ@>źGń¦C•ō-ĘņDN?Ų‹x‰õ/“’PK .3|Qé ö½ß{2 briannesbitt-Carbon-d046377/src/Carbon/Lang/es.phpUTŲ]Ā_­WMo7½ūWL²\g=)±ŻÄ²‘“vPŌF‹Ą6jwVĖxIŖ$ײR÷ĒōTäC½ōż±—Ü/ÉvT Ī<¾y.?öåį4›nmķķģlĮ\dÜ@ŹsśŸ2mA„`3„#¦ĒJ’+¾aŒėąŪq^kĪ$¼C3ęÖĀ˱k~'©©l+q 'J—Di‘ē«é\óIfÉr£4”R¦J f¹’»0Ķ‘‘ļ–ć¬ģwśöčųŻł±£*õٌY˜1 7Vóqa1·EH»Q…Ž‘%„Ų=7B×÷Ua3„ĶĄŁĻą‡B²Ȟ±Œy׍2–oŸh&*¢{ķ\Ą 7™oåŒk*Ź•½Ļ-Ž¢„7Č„ęqĄ}?„·†QåķOlš1Ģį•Pš‹€Qz‚š>¢BĖó\y÷ϋϱ„Ź ŸŁGļrœ„č9ŽšŹOó†µw’ZpiQ« ®!“œ2)!ŠPYOłāÓ-“ŹĄvR†āé{ühĪišÓĔVæ,¤F[h —[@OoŽL÷`’zƒX’&tń—ŗo٦·ė‘lŌ` ł8n¾PŅf(éæoLl%na)óc8±Ū ń¦4(˜d÷V+wƒ§wķiš¬ĶK±ŹŸ°nMzī[v+[ „q> KŚlIåĶhÅtŅŠ:©ū;»•¦ĮŗA= ģĢOVיKZ¬Żb;W=Ļ¾ÕžæV7O”©Ł¦®‹h0V2Yš¹I!ußm¶ņ¶ūn±TĒŗ˜Ī 6’ņœ?Ÿü|ICĖÕ’AY„µ:‹Ž$ŃŅkõ ¦ŅæÄŪų:Ŗ–(JUkv’ņwG˜kVÄå#£ |`¹Ą*”j%FR…uBūl'ŹRŚō©óC‚fZ,>ÕĢc¤óŪFūd³,xš6ģ̽ɤŻÕXUƱLĶWC#¼›ÖˆķĆĮՕł†õƒ•3Ó?ģō›£!å5-›Ó0Œwøl r«č”ŃÕØ픓å<ˆč°ą |UWA•]H9CKЦ̰DĮ’0šÆˆ?iJ÷é…ļōf Ŗ…üēM``L'ę#ĆįŽŁŁŽ{z:Į* — ^Ć=ŽZ>…„A5>”gž³×uxĢr”I8'[#7Lą07-dģ.I°}åÆeįļ­;õS·j¾Ž ­QŚ>üVSø'œŻ½Kz1AĪzŃv…}vąvuųjžĆa¹—  ×ėG½k ŗæØ‰~oSāŻ ¬šlLŚ/Õįū’µ¹y„ĖM£%“ɚ¹U¶‘‚9],Ų%ę׹«Öų&Dŗupœ›°‹Ÿ.­žņ¢v :čÜŪ„ĶĒ:˜‚鏄Įč;%÷žyéųPHŒÜt[Z§–£ ×R±-‚)ÕmćOx]9#CG‰mDIAN¤%AGP$„Ü!oČŲäbdŠ4åw¾4Qµ•*pśŹ Ēž,Äõ—Ś×YŚ“«š%ŠīO>c^Hw6–"m°č«AĒ*÷­}ė”A°Yü1¦¹®eUü"P–(¤ˆB†Øāuˆ£Š5Zå¬īzŽŃóy6Ļå‰÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK .3|Q‡ädŖ'¦5 briannesbitt-Carbon-d046377/src/Carbon/Lang/es_AR.phpUTŲ]Ā_-PĮnĀ0 ½÷+|+ R¶ėĘŒ1 iBŪmš¢4uۈt޳п_RČÅyĻļŁ/Y>÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK .3|QĖĢņ &¦5 briannesbitt-Carbon-d046377/src/Carbon/Lang/es_BO.phpUTŲ]Ā_5PMOĆ0 ½÷Wų¶møĀcH“Š„7„Ŗ4u[kYRgÕž=I¹8ļł=ū%˧®ķ²l1f0…Ļ–<Ōdbķ ø¤EŲ*.”>©óØMņ±žĄ3“²p@_’,Ė×6B'¹vē՟ōÕń0ØʀvŻ•©i”­ĄFėćJ[;>+!ggŠT‘»öƒļmæŻ>viԐOZ%Š+ya*ƒ`=I;1»w5ĘEÕv‘^˜¼› ­cŸīs8nŽ!ž24óĘP©ēĘieŠÆrĒĶąd”Ą³ŗŒQcՁ=]pĢųˆŠāe,Š|“@ŸĒ?Ķą+KÓG5±—¢ŠnW=āi+ø›ŻŗüM”ŗ ]Qńæź{ņżPK .3|Q” ÕņF5 briannesbitt-Carbon-d046377/src/Carbon/Lang/es_BR.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tKB²ūŗ®¬ė 0zŲvĆ8ŽŅˆ¦v&+ }ū)aŗIߌ<Ż`L•ērųź(AK=‚öĮ±@lA:„½ć:]ł‹;c©Ų¾ņkxarN˜jM=» c”ŅĒėöśyjǾ‡;Ó¹p”ž<†¤–”|uB10ōčtw#œŽūq8}f©%ŸtN`r JĀT‚ L$^4{Š#{T£f [F9€cvwĖ8ōĪ£v?r¢®Gbk_֖Y…©ŌĻd|ŠŹZā$¶Qvlķ„xÉąi …łY?š?PK .3|Q” ÕņF5 briannesbitt-Carbon-d046377/src/Carbon/Lang/es_BZ.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tKB²ūŗ®¬ė 0zŲvĆ8ŽŅˆ¦v&+ }ū)aŗIߌ<Ż`L•ērųź(AK=‚öĮ±@lA:„½ć:]ł‹;c©Ų¾ņkxarN˜jM=» c”ŅĒėöśyjǾ‡;Ó¹p”ž<†¤–”|uB10ōčtw#œŽūq8}f©%ŸtN`r JĀT‚ L$^4{Š#{T£f [F9€cvwĖ8ōĪ£v?r¢®Gbk_֖Y…©ŌĻd|ŠŹZā$¶Qvlķ„xÉąi …łY?š?PK .3|Q‡ädŖ'¦5 briannesbitt-Carbon-d046377/src/Carbon/Lang/es_CL.phpUTŲ]Ā_-PĮnĀ0 ½÷+|+ R¶ėĘŒ1 iBŪmš¢4uۈt޳п_RČÅyĻļŁ/Y>÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK .3|Q‡ädŖ'¦5 briannesbitt-Carbon-d046377/src/Carbon/Lang/es_CO.phpUTŲ]Ā_-PĮnĀ0 ½÷+|+ R¶ėĘŒ1 iBŪmš¢4uۈt޳п_RČÅyĻļŁ/Y>÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK .3|Qažźč3Į5 briannesbitt-Carbon-d046377/src/Carbon/Lang/es_CR.phpUTŲ]Ā_5PMoĀ0 ½÷Wųʇ h׍16ŅÄaģ6M•›ŗmDH:Ē”āß/),ĒĻĻļ½dłŅµ]–-¦Ó ¦šÕjµ6±vČ®i 6Č„³R'l(ÜD« ¼±F ņ„e™Śµ­“\¹óźNŻ9„ź` (×]Y7­Ś ŒVd}““µć3Švv!ŒŲES?ģ}ģ7ŪĆq›¤†|Ņ¢@*ķ…u„*赓q³{XQ4Ŗ†°‹ōĀ“ū¤uģÓ};&‚£«„G¦1Ųźnæ·*‡xŹŠĢ£K57N”!ænlČ7ƒ(“¶€Ģx-˜:ƒŠbU½¾Š˜é7č(\ļūĻ¢ČG ņyüīŃ ¾³¤>Ŗ5{)Ŗøķź¢':ąy³ŪōŽßHišŗ+!’³~&OŁPK .3|Q ösóF5 briannesbitt-Carbon-d046377/src/Carbon/Lang/es_CU.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hógm ®Œ2ŗ»w­ä¤ƒŠaŁE’…½wÕćÄ/ūü¼9ŠłVŠžśéŌū8'®aĖŽŒÕŚ0UppYFvB*dŃĖøŹÕ8BĒ@²š…Ų ē“óėvõpÓ 6µ×ŖvĀõ°œPhÅŠ`— 5ę¤oŽŠē ŻżhūQiŗŁŅt/ČĻõ·Å ¼D \–iFz?J;ņ¤Ą.†O÷£ „IœŒŅńĘ~ G÷ļO£Ü,ėV“xbŽ©„÷’°ūżČną„ 3|Ó³ļšN»?ŽB#’š“č|ū1ś PK .3|Q ösóF5 briannesbitt-Carbon-d046377/src/Carbon/Lang/es_EA.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hó÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK .3|QEV?ķD5 briannesbitt-Carbon-d046377/src/Carbon/Lang/es_ES.phpUTŲ]Ā_-PMOĆ0 ½÷Wų6Øh{‡ 6ʐ&” īU’ŗ‰E–Ē”āߓVųāÆ÷ģgoŸ&7UUW×Ōšé(ĮH”ųI±@AĀA±Ž””Ģ—²Ųģæ1·šĢ¤œ1i­^Ņ](i”ÖÄėć?ō5ņ:hĢŽƒ‰Ó/“u* ąÉ`Hee#_•P w0yT„öC8Ƽ·Óįxž8.£V}ā”Ą¬ ”„IgĮfW:E{Š™ –EĆ*¶[.\øū,.rŗ_ā.ūw(¦³m¬'mņ˜v6ä6²]™Œ’9ćw&Fčū—Ó„ļŪM‡©-æŪ÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK .3|Q‡ädŖ'¦5 briannesbitt-Carbon-d046377/src/Carbon/Lang/es_HN.phpUTŲ]Ā_-PĮnĀ0 ½÷+|+ R¶ėĘŒ1 iBŪmš¢4uۈt޳п_RČÅyĻļŁ/Y>÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK .3|Q ösóF5 briannesbitt-Carbon-d046377/src/Carbon/Lang/es_IC.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hóĘĘ !ÜŠŅŌm­…¤8U’=IY.Žż>ž¼¾ś”(6ĖeKųč)@K!ŁA³€oAz„ƒęŚ»2GŻa•ŲŒ/ĢÜ1i/jė:»;—\/•ńßŪśčy.ŌFkĮųabźzķ°dŠ…Ōҵžæµw+,źū%ē¼ē§ĆĆĖūC.5Ļ'½u€†‚0ÕQ°‘¤OJš=ųČS£fv“7̹ū(½ēp™’kxŪæBzuģ֝„ڬ­7ŚbŲu.Vž»9“Q";ŠĢzRŒƒÕ“5‘żā‚ń'#(u’ō¦TUn0Té¦å >‹\½lØmUi9TAnōTĀĶJ턐ĖÕ?ŲQIT¾U#āq†ĪOź)že5{jž©‹UńuvUüPK .3|Q-¶|K5Į5 briannesbitt-Carbon-d046377/src/Carbon/Lang/es_NI.phpUTŲ]Ā_-PĮnĀ0 ½÷+|+ R¶ėĘ iā0v›¦(MŻ6"$ćPń÷K ¹8~~~ļ%Ė×¾ė³l1›e0ƒļN{h“Aˆµ—Äąąa#©r6Bź$[,#7Ń'j 滑…śJ3òJķŚĘÖq©Üyu§īBM0”ėÆ¤ŪŽAŚŒVh}““£³dķl½A±‹ĘaÜūÜo¶‡ć6Iłø“ ƒōPkϤ«ĄXĆ ¹‹“˜Ż»@ £Q=†]¤¦Ż·Ą#’”īsŲ"]ƃ$Œƒ­ļö{«Jˆ§ ķ¼5ŗRsć”4č×­ „£v%ä@$‘¼ ĀŽH…±Ŗ@^_pBųtāc’%D™/Š—ń»ó~²¤ž7š<‹:n»F ˆ§^VšPܦwüFJÓŌ]QŅČz,²ßésöPK .3|Q‡ädŖ'¦5 briannesbitt-Carbon-d046377/src/Carbon/Lang/es_PA.phpUTŲ]Ā_-PĮnĀ0 ½÷+|+ R¶ėĘŒ1 iBŪmš¢4uۈt޳п_RČÅyĻļŁ/Y>÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK .3|Q‡ädŖ'¦5 briannesbitt-Carbon-d046377/src/Carbon/Lang/es_PE.phpUTŲ]Ā_-PĮnĀ0 ½÷+|+ R¶ėĘŒ1 iBŪmš¢4uۈt޳п_RČÅyĻļŁ/Y>÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK .3|Q[Ū;ń@85 briannesbitt-Carbon-d046377/src/Carbon/Lang/es_PH.phpUTŲ]Ā_ĮnĀ0DļłŠ½P”ōL)­ TB" — ”Čq6Ä"±ÓµC”æÆc(”Ŗ‡īÅö¼{äÉs]ŌžFŒ`[ ¹(ģZ32 r0ŒQŖ¤•ų‘0“ŽŽ>ąCx%Į$¬Q§Ā˜¤żńEŚ£2!WÕōb}Sä.Ź›²®źŽÄ”0Ąd„ą(µ}RęŠ*f„’Ō%2«¶.·ZĪėĶ¢æŹõ33Š2 ™Š†DŚĢ ¦°Äv×Ŗ!Žö”Ģ•÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK .3|Q‰[É|ƒ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/es_SV.phpUTŲ]Ā_MQOÜ0 Ēßū)üV8Żõ“׍10 iBŪBUšŗm ;ǹÓķÓĻ)ŃX^ņ·cū’‹/¾,ÓRUūͦ‚ üš\„Įy½Ć4€L7†; š²ÆfÄFksł™=‡ÆģL€Œ‹.‡WAC’ĘŅ|YJæƃ†ä=XZNģĘIĄ„¼³¢Z†x6ā(lańh4wpx\ū¾ßßÜ=ü¼Ė£V>™ŒĄŃDč]v]ģįčdŅe”Ų¢õ+ģ>’0÷^'™ˆćǬwšxżōti܍Žuvēɏńj ©!×NFIĄ0›SĖøxcQo›8ŗž1žNŽŚööž±m›z±ŃÖ[xŖņōz¦ S¬įó%<ՐIßź;.r6ügF·ēß2§5ń’‚+Āæ 3R”UE\Äį¬SrDVR‘ļłŽŁZć1݌!7‘Ęu’30DęŌ.ŽX”×fJæ³#„¶żņšŌ¶M½ĒŌČMė-÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK .3|Q„“ų‘ 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/et.phpUTŲ]Ā_•V_OćFϧ˜·“ˆ‚*UjE﮽'8BjÕ"„&ö$^¼Žu÷OrTł2Õńī·|±ĪŚkĒNŅ6gEĪĪĢofēļ®_żTfå`pø·7€=øĶ„…‰ü_¢q 'ą2‚c4c­˜•ä8„ĘųWÉך‹ØąŠģX8ÆĘüY1©ŻA¢‹7śN›ŹŠÄK ‰.ŸŒ˜fP„ EBŹņ–j¢MNhµ„$dŽLмһ½ŗ9 ¦*’\†ęh!Ö1öŽR˜ —±„}·Ś›„x£“rö0Dtßz—icĀśøĪ„eIš+ś$#SsߪԐ…ó*=«Y·Ö;]xøšF§XóÜcīėÕ?ˆ$)'(*¼÷؄ӚښõaōĆ÷qƒ\d-g}cģ83‡.Ł 8!)kī©2āOĻī‰#ėFZUõäœˆŃpq®Ń92V«Øls —”¹‚7¹žh¢×W"Ńrł·…3äpnńÆčĖĶ„ā”Č”ņšóføFHŁää½^~ŅltŠ2[~¢幚y.„`n±W¦†œ7 īĄĻš‰Š įõ%Ś+n“]Ā ÷#vW ēĒe=pīżbµL[ą. 9QŽĆ©å3cŃ£V›Ļæ›b?¦rłL³E—Ąŗ+0ć¾ļaW颳-r7X!V[±]Bø|g¬„D«~d–ņŽ#5ÕQų,NuD;QšqĮmjŪ &FJϻΣį>jõ'‘åʶāĖdM¹ŠĘ4Ö3]}y]ųu3ĖI¦ŖZ3€=£õW·v},VģĖŪvvT7ɑµ=a-:99~ē§'l¤0ā6å[°é@‹KłŁ‡EßĒä«1Eģ„h± “&wU„īćīģ„č£[AŖ¼­C$Ō j°ĶČoķ1œŽbbø#’Üßlf 4ų|*mü˵H«yŽ„>"*ĻQļĆpF46q]š9Āåę–į:­x(Āߣ÷ŖYČj~źĆ™f¬tÄ×heCēNėøęo”–Ÿ’³5Ń÷čĮņGėųÕ:µįŃ’¹Óų݈4›·ū†įåįhrQ._2¬N”€$[ m)GЖʵ,VHEņqE¢”ĀB¢Æ™ėŪõ½ŠÓšŗ Æ‹šŗ Æįu¹©Ü\^»«Jžh‹*Ģē<"¬’OF¤‚ŠˆČågưŹ[¼QZ«Ż’8ųPK .3|Q’SœĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/et_EE.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦Ciõ›łPK .3|Q‘żÕącš2 briannesbitt-Carbon-d046377/src/Carbon/Lang/eu.phpUTŲ]Ā_•ŪnŪ8†ļżsēŻ Qį[÷œ8E»HŚ‹¤( Ć0(id–HcHÕMŠ÷ŁŁėPCww&9žž^¼>”‡ŁģŁŁŁ Īą¾Ō ]!š’A‘[€/®„ÖpS¶W;L˜ ųٟpIZųˆ.ÕŽĆ‹4Tß®ZŸd¶~Ńw–Z”¢©*Čģįō®ō L•ĪŠ8Ņ–jåµ5ēpØPqŪ7Ē¶ß͇«ėw×AŖõēKåįØäŚyŅić1‡£ö%GŲ»³ eČå­Łga†”ļŪʗ–Ü2”/ą/ėJø³„…Ōߑ2’üm¹’eVšĮ)ž“kE}CÖ3ąož€ŠęšņĢņ©ņ?–™mŒ‡PŸŸGJĻYœjk|)P©+•āT«kėqA߇$,FP÷¼uć1•DŽ’ä*śĘ]cĘvB½‡¹ČāPņ*c)oĘ2”ŽS‚| ČāPkĆĖ+T[žHIˈšVĄÅiĢafMōļ‚åÜĶĒfßń±µļ ģ]Ū:’¬×U;+`Ž`„`éuŻē“ [o¹oC<&ŃŠ¹šHćčÉÅO‘ށ K4#"×E1 aIi3 yŪ/ģNńڌcČėO}œ“aé[[¢N;Õ„źū˹•Éįh›oīć^}æ¬ėČĘĄŻ(²tn”ŠWž.no/V«Ip]ļķnł[š ¬Öj3E’…§¶ś.9ēš:nb 2U”Éć…0ʁS5®ŗœ®CŅ7psæFÆĢÄ­Įļ~ąŚģžüŅń`ō$VńiōĀbž– Ü ·f„aŹæŗ®\܆7椁­6ŖŠ{Ō4uŠ”LnŗøKĀÉ{Ÿ/·ł9wóNÅbĶÆĪwŪÕASßŖym÷¼«ŪRóč»^*åJÓ5u<-ŃGEQ2åUbn3±“uü(ųĮX=%ŃPŻÄŗü³$ŗH¢…$ŽŸÄѓ8xŒcŅ.i>j]2ōŽB‡| åXw5NČRū²\ć»§+ó°2ėJQcų.SO›LSļÄU%W™ŗÄ¬Ä*zź{ŪŻ³AHtDFTDD4D¢W(49æe­-¶ż[µŽŠ.Pˆ†Z’ŠvTÅo~Åł¼MaXT$k¬#"žBtó|öPK .3|Q S¼PĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/eu_ES.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĆŚź6;óPK .3|Qš¶čż­Z3 briannesbitt-Carbon-d046377/src/Carbon/Lang/ewo.phpUTŲ]Ā_­UMOŪ@½ēWĢĶ”X½RJ«H„CįR!d­ķ½b?ŅŻ5Vøqļ‘KÕG„ø”WŸ"ń£:ŁuˆKµ¢<ϼ™7³ćµwēó8÷zaæßƒ>œåĢĄˆq ˆc¢-Ø؜Āѱ’čJ.IF; ßH6į«fDĀ 51³vā™łE¢©ģ Qb·ż¦“œC¢ĘͲÜ‘)p–Pi°¤)-ˆeJnĮ˜S‚¾+FK—w|“wprz0“rżŁœX(‰”«Y\XšBÉlŽ önT”Š…R×lŲÓŌZњL"Mǜ$1)“aWtCӟÓ¢h’č{ ‚ŹN&Ų‚óąŖYŹØąÓ.œ—Õ#žtõ˜aH ³éļ¬zĀNƒ‹-ŸQRz™’‰©3ĢōöåF¦ÓŪY‚š›Ż/˜_=Ļąå&žžyłµšęH߬¦åÄIŖgNŅźŽV÷ŚŻæī/2¹Ņ¶Õå²E—)b܃œKĻeßJ &’‹ PŅęó ā”o%(S=×3Gk1&oņźŽ“„‰c ÓVwMÓœUÓqMD·D©ÄŅ¢qĮ›ÕIY=‰W&é5«īŽńūnŪ‹k_fʧÅøéĮz0®=Ōõ©‡ŗu’Ö/Ŗ˜66§©Q4{P®ä‡9ė^½zŅĪåÜĒgĪn ,Ō$N̶1-ŅSūį0üW‹šs0į-Ū¤=ok/ĀR¼`U,.ÜaĀ™RPHM9#1§ŽŪ÷ ŸP¢½Ųv¢ iAÄĪ“85Z9ĮdķH­+ÜŲ ­p™UåJ}Ń!–DŌ—/r»łźĮT+K”]‚IŌAާą¶ķR!ķÖĪśź>#ĒÓ„•@Jå>ļČ;Ēh}ńz'0‰‡_‡óoóŗ u-€§ķÅęĒŽ?PK .3|Q^5&å ż2 briannesbitt-Carbon-d046377/src/Carbon/Lang/fa.phpUTŲ]Ā_՗MoŌFĒļłs[ )QōRhy+ •@ŖŖ­fwgc‹µg5ž%õŠ"HrČąÜCińŚūā —~ ;¹õ“ōĻßözC–cÅ^Ę3Ļ’łżēÅ3ć½|µļōWVÖ.\XaŲ#Ē X×ķ FeŸ+Ķd—iG°ė\µ¤OMķ'|[\$­‘ŸkŸgהĖ}ö@-Wkv¹eŖ?ųT•śb[zW ½%Uźz=֖ż]ån;šqæĆzn[ųYś]©<®]鯲~Opj{źŠ<ļŽė7<¼iPy’“Ć5Ūį븁Vnk E‡ķøŚ”õ=ÕdŌÉ;»fFhrhGŖ`Ż<ĶīŹĄa„][æ„ø’Ļ‘¤ük¶į”ŲOŽĖ97Ų€Ó<¶~[’ÄõŁ]Žjq‘ļzܓöŁį]ń¼ć>„”–ńŪÄ„YūY<ó„sśāłł¼ŸJčņŁę £_cWpÕ`ß_aõ¶ųš„Qz”½l¬Ś0oV‚“Ćć·Eųbć7č鱞²»ēI_;µxöŠāū•Żœ"÷C¼ęWĻń–šv„xRļg¤ļę +‰õ+uĒ…“„Š_˜ƒ0;HG•e·3j£õ­et–Šz OMxš¤ļ*»JR®`.8µ†óiĪRØēś“ź’aöāä0{Q[Ģ9™õ®Du÷Sɔś| ŚŅ_˜šæiń÷HV‰>ēŪ ķz‚eOÓøv•ōš¾Ü™W¤CČ0 K@W UG¤£Ł*WØ%芧]j¢ŽŪķVVéŃńŪl/;Čöjq-Ė7‡Ęńjį%)M%¶Å³ž¢šÜÕõĒƒÆŠ„<µ–¹+Hŧa~‚_Ŗź„x¹‡–žTŖ$ķ™0¦GŸ”Ōų…ņLŗ=ÕķZŪs-o¾÷ČęoÜ^ßš Eąį\d}#Øŗ±¶qmć×Z،±ūōc‹ŃSavŚŗTuč·ŹĪŠnadmŽęT_ZĄ=q£X¬Ķj‘ĖŗÅhōs¾¾x¦«„bF—Ź)OFÓU¶y–¶Ēƒ9tõ2œ 7 ‹p»'¶Īv1#¾Ł °‘ī-Ģ“T×ē½¹]–½*”܎+ģ=±ŁČ^¤o²—łīcé,Ū7{™Žį7d:¬µģüJĀĖÕ8~mސģĄ"ꯤ”†enšŁ('ž‰ČK±Šć×Ōś—ŁŲÅs‘KÜsĀŅSD‡Č»|Qß wt P jĘæę·¬­×{Ż čcDi}7w22Ŝ›«#³=Z7ė6$Ę|=Źö’żżp¾éx–Š g®-ūHĻļk‰ļÉ8ĮsѾ؉ŚžĻ])nEÓkoM­%[šå”„®«m><š²[}ņ|[}°˜v+2QS+?ü¾ŖGßĮpO™1`Ł+-xO7ż×Ŗ\·'ŒŒŹåe„2F9F9A9E9C™äe^^^^^^^^^޼x#šFąĄ7o޼xxxxxxxxxxx1x1x1x1x1x1x1x1x1x1xcšĘąĮƒ7o ޼1xcšĘąMĄ›€7o޼ xš&ąMĄ›€7o ޼)xSš¦ąMĮ›‚7o Ž ¼x3šfąĶĄ›7oŽ ¼x x x x x x x x x x ń>uN7mžĆõ¤/¾Ä#[ąs|óŅ*»D­ļVžPK .3|QZø1¼K 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fa_AF.phpUTŲ]Ā_}±NĆ0†÷<Åmn«(Y`Rm•šF–ŖŖ"'¹4V;\œFŻ3ÆĮ#••'ĮIZ øåä’ū}÷ŪĆė"-,Ė ,ĄS*JHD†`zĮIƒJ@§cN”’Fж|ƒŽń6ö^Ō‡[\ĀĖPh ư9ŽHsTډT>:Zļµƒ’*Ė RŞÄ&ÕĄe ™ˆP–f„Lå\ %m(2äFŪ ¬Ū{óŁxŗxœ6£Ś|:åj^B,JM"¬4ĘP b²—Ŗ¢Ķ¢ø ėZ„ŗ" œˆļĀ"ćšUTŠöŸ+AA0™=Ć܄;ęg˜ + L±IÄsW#X±ĻWƒŲჭķŽ×ˆ[”q‡Ļl8?īQeZ©•ē­Ąü„ė{®?aötbš<üåoų‹6ųšöõņ÷yžĒxtʦą»Iŗī_ZßPK .3|QPĄ‘Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fa_IR.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆÜŌŁXd“ą8Tüž“ādĶx<3ņž1ūlĢŠu:ųō\Ąq h3£($ź (SŠ²_x”¾iWł½…gaŒp¦2±*ģ§>Å“ö6]ž„ÆI6#WC›ņÆšÅ+`œ!°„XZdtI®Øœāä@Ųø¦e»{;ŽēćjµõS ˜¹ØšT•fXX}Ū“ī%U±Ō‚ę­ģ`„“J”ļŹB0Ž/§÷qģwƒĆ¾}`wožPK .3|Qß/’¶—2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ff.phpUTŲ]Ā_„UMOÜ0½ļƘ[m7ź•RZØ@b9”öPUȚ$³ĒNżA”ßŃæ‰UĒń.mW"j.¶ē½yo쉓³OMŁĢféÉÉ Ną{É ¬ø šcƒŚ‚Z- .PgJśP^įšžŪӏņcų¢9Jø#“qkį,ė—Ÿ„_*»ČU}©_•B+'äŖé4_—P xNŅxK¹RŗFĖ•œC#}ģ‰Sņno.®īīÆz©PŸ-ŃB‹ n¬ę™³T@Ėmé_»QNē䍊PlŚļ°Ļż!+©Z ­Š šÖĮĪŹćŚųŖDSbF–ē(D7h²NK@­±cš9ł1wŚš':ŅōŪqMĄŲåĶ7ĘIJrį6™ĆÆų'6gųxC!|ū=D’ėėÓŗN껥żrjĢ ĖĖt¹LśgnPX.—sŲ‡wńeĄaß~K+ü‡øƐŌJŚ2n.1œ åwžäJXź'u¦T×O Ń˳ `įÜ#Š~V)mšŸģŃUaģ•v‡ŗR5b@•3Õzżq Ģ”JŪ×Jb±ŠXCōęŃ:аŃ4śE·­WKTŲmv\P¤_žČbŲ ¶¢słHFlˆń•g„RšŽeœė=“Ń–¼ÕĘ) D‡Ø‚m$3¾ÆUsłJįŽ0ÆÅԊõ²Aī}Dc| õhæźČä.«&Ķ Nõ¦M.Ć*ųU¼āüå94u ns“Ó\9i!óēŲw'MA1ž Ž™ HŸĄEövńWl” ØÕī C=‹l‚śkSG|ß5¹¦ƒķ2² ņŪęų…’Ō/ŽNEöVå_śĻ’ˆŽŸløą’Ö/§‘MÆ—ž5J±ŖRĘ8åźĆ/O¼©RM¶ åJŽ;bIŅį–˜ \dSäŽ?ĢžPK .3|QY›Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ff_CM.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒ÷½~`wožPK .3|QY›Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ff_GN.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒ÷½~`wožPK .3|QWtģU&5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ff_MR.phpUTŲ]Ā_uOoĀ0 Åļł¾ŖŖ½3ʦ“(‡ĮešP•¦.‰Ö&“‚ųö mģŸ/–ßļÅ~Źų®“cY3ˆa#•…Z5¾wœ˜œD˜r*ö’xå;L½÷dˆ!<āVhKåŒĖÓxÆżh\*L;¹X …Euß4 Lw$µ“ø® Qµõ'umØåN@× ÷Ś^į!¼[.¦óÕz~Zņ9Éø…JYGŖģVpPNzā³[ӓ@Ø a3FčzŅĄ‰ų± ģ.ŠwѓU{¾õŠŠb¶x*Š4Źź:õ?%šĀĄWtĪf#ø\¤ /7A‰äØmGÉ5Y”‘µ?č™Ķ²<{öõ }0Čó<ßųšēĆē?}•/ų×¼MŲvxĆŽPK .3|Qį²Y¹ś^5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ff_SN.phpUTŲ]Ā_MMOĆ0 †ļż¾ *ÖŻa‚±I“Š„÷Źm“Ę"MŠćPńļq+œāĒÆ_gū4ŗ±(6eY@ ŽXņō‘¢qČM Zj?±7•²3~ÓŽĀ3ø˜Ōl›9ŻM£Tm’ŠSäEČfļ”ćSļ0tą©5!éŹ`#(ĆŒŽ Ö¾ÉLĖÜėłp¼\³ŌāO L˜ £$LMÓĮDā“£ŽSĢÜ]Ō-f7ó…óģ>‹‹œīēx oŁ#ÆOŁ«+#÷pn Wdģ »Q1åģ?nŃd#™°łŹÄźśåü^×Õjcm„æŗz(~PK .3|Q± ßv¢ 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/fi.phpUTŲ]Ā_•VmOćFžĪƘoDsŖŌOōz-œąŽ tA­*„¢I<‰'¶wŻ}Iš¦_ś;ņĒ:öŚkØŖZvfž}ęuwy’s™–ļŽąīS¶°äœ@ž–hč%ø”ąĶ\+Q-2\ŃX°üpq £‚[²svŽĻ+ń%¢vć….>4ŠOŚŌDKŸē°ŠåĪš*u€*œ¤¬øTKm t¬Õ ”9”č6LŪzßĶõłåķō²¢Ŗćs):Ų¢…„­3<÷ŽŲ²KÅ"±[ķĶ‚ÄQRū®Ź°Ś{ę]Ŗ=­ÖßĮ]Ź9—%ĮÆč)™ żŒJü†f’· š„Wģ0_m]ŠÜ[ļtįį‹7:Į ūŖµPM1/8(Ü:óa5Į?aB9)Ē“ Ŗ) Wˆ©cEŸ{"į¼!I©”83Ž ø^)t»vēYĘ…ŅYßŗ>OģŃ„ä”ēA{© ’į%;N°QM¹ŠŖngN®uņUĻIZżqF”ÕM0gh¤ćw虨¼å…Ī÷YøŅ‹ ®-~k"ø×\łUJ¶q“!Ÿ¤Ŗ|GŅ%ųĀĪP­Š¶tߊĄgķYq[)“i˜RY"Ef†ÉN¹ŗPpxĒ™„œ"ÆÄĒpXź-™•įņØī·!ē‚‡o“#4#ųéŒNŚ+Æ-?u‚s8:i°C`«–ŗ¹t`Ź¼ĻŠw4Aī1CxÖź·DŁŠ s–駁Y¶ChdIpi¹ęĶžłi(īŸ#~ˆŽ‰„rT&'æbRµcĄÅDYÉłŲ*•Ō"ņ“2öö¼ÜК,-“†k)ėGՈ‘ gż=…xĀ’k“zˆ\+ŻV®5Š”ÉPĢ”ŽöeUeėŗJWÓ6{Œ“–tdõH½ ³ŌĆV3ó/œ2.Zõ¦āmX3Ŗßö·‘ŅrÕ5#ōömdhźĖƽ­«ßćÅ„œŪA”åpÆ÷ĻyF]Ös’'ś(’»¹ėėfUŹz9‹§źū^)D@użDŠ7Į *—‹³V<ŒN ś5Āč±åąå²KEķāČ׆YI"D’‡I ņFhcŚķ©×…Ä0øĆD¾‡šŲ±LĘš:€`Č2Ą>öfVŠÓ$8²Ņ™äŖŹ¢ĀVp,MˌlĘį¬-ņX7–’Ģ:īČчõK_3+ﻋƒ«ą#ŠÖ@˜^s“wÓ’fØOt›ÆÜAĖA®0)åq-©Ėе/’4k§}¦›µŌa’7³Šå-Äīv-‹č0²ƒ­~­}ī«õ0ĄA‘ź0cŒ]€1ŗZŒ« Ŗ‰Ø §„ $Fх ĻuĀT4ī ßÜM–s‡­(;<ųPK .3|Q­K%BŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fi_FI.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒ§^?°»7PK .3|Qifö)ņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/fil.phpUTŲ]Ā_-ŪNĆ0 †ļū¾LØ}&@lCLBāp]„©ŪXĖ’ą8T{{܎«ČĪų’Ķcr©Ŗšõŗ‚5|9Ź0GŠ3ˆˆCŲībŠ•=™kÕĪņ{ ĻL&ĄsG"°éęń)č„¶ńüš/}‰¼ Å{°1]˜F'`Bž,†¬•aˆ|6B1ÜAņht÷K8-¾·ĆvüÜĻQ Ÿ8#0™ =eaźŠ`‰Óeϱ°E-źŲf~įģż§§=¦xĘq©+ÆxÄY©|r¦C!k¼æ\„pPĆO!FhŪŻį£mėU£8ķūk­ßøŗÆžPK .3|Q”³1¤Ē06 briannesbitt-Carbon-d046377/src/Carbon/Lang/fil_PH.phpUTŲ]Ā_„TMoŪ0 ½ēWšę¶čģŚu]?Ņ”ҬhŗC1mÓ¶[ņ$¹™’ż$Ył0:ē2_Lń‘¤ ó/MŁL&ӓ“ œĄsÉ5ä¼"°’•™ƒ) nP%RXWŗĀ‚bėĀŅcøV,H'Ü8OÜńRŲ£4q*ė‹śU*O”·U©l:Å‹ŅŠ *ž’ж¤Č„ŖŃp)N”©­ļÓŚēĶļonĖ[Gåõ™ ¬QCʵQ_—wϽ#zx˜Īfӗ—čŌCÆż/Ŗ„0eȉn)i £GJT0­`ķ+»ĖŖ÷tŽq׊QõĘU!µń֒LGµ%q‡ļ+Ós!“Ęu8 Õ0m—bvš‚¢ &h J‚ #ˆ BķP7TÜÖZ­2ģ6½Ļ¹(śĢykļk(f‚Å;R+Yõ§»vMIo^; „/1ĮL¾ćtc«„{ŻXö@(Ū{ŖŚ¦’‘%a2g9WŚ0ĒźNŁlĒśq³R<ćT‡R‹ųGģgßŎ©JČŽ7źļ֙į5A‚n~=й!µ6X¬Š`#ķØƶnt–ŹV0(ņ E%īŻ”œ“kܦ×ć²ńÜŻ"pnM€`Čʓ·ĖĄö¹Yo²³QŁH^—öå R”Žä–£²±Ä0E.ģ;Ą½kŪīꦞEvˆ Ń”J1ģ[SъlĖ¢Č„ ;ž½KŠ¢+¬x³E®dĶ„ »Õ>Ö¢ÆĒŸ&PK .3|Q"ŅĻ„ž 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/fo.phpUTŲ]Ā_VKo7¾ėWĢM±ėČ(Š“šĘyČAŅŚÉĮŠĄjwv—Ö.)šaG@žB~„N=0ŠsOūĒ:\’ūd· äšūųĶ C½8[ėŃčōųxĒš¹ą2^"P»fŹ€ĢĄo™ZJACɊå8!®£?KŽąāLĄGŌKn ¼X:ó• SšI"«—śNŖF(³e ‰\oĻ L¤Pņ…&—"“Ŗb†KqėŻr¼kę]|x{žńźÜI5ń™‚øcR®āKk0…;n B(v-­J„M°§.C7÷µ5…TzźśĻįE“]ųWlÅØÆ„šĄ;ÅDż—$”7~ą÷|Ќ²×޾ŗE„8\ŹBĮ§R£hœ(4V ø}ć 25†ß^ĀŻŅŌ[õ}šH+šīų$<£p*)L•TõV°śGf“;ž@3ĄV=ŹæC\ ¦ÜņūŽõmĒü“”mŗpS–w¾É`m FŠAVA[Ł©™ś¾j3wF8{‚XqAĒ„· Ī6ķņ4ﳇėł$[c"EH,«· qeEŁŽź±ŹOsY.Ūš A×÷õ<Ā™’ÕBȰC¶‚†ÖNĪ Ŗžt #¾ųéīaŸPoė…B“›Å³lad»µõ²AMž](ĢńŪ:’žMæ~Õ?å7tŚĪ‚µ*'Gg;n+©TĢmG;‚‡„ ˹xRūѰčžčė”ß<Ł›į‹Ļ^ążūiUn®zČTė蔣ģōņņō }0¢pIģĆū8ģ»oi)}0›4ä“}ö<䗰EŖW/AĶ*œÅ-¾®ø‹ “2s Ō{~3žß…ĒØ¶õ§‰ļś­dzØŲ™C‚ŽŁ ^7×D;‡Ø½;Į%uN%ÜOøŲY ©R.Xn†°ÕÕdP˜Ć1ß0a]”ćKŗTu“kŁZÕ÷„᮹±"“eÓ2›[m\O挠sć ¹22t…¼m‡SŌ¾?D²Šōø™.žL$Ä1 "ÄBžƒēą58l}¹ē‚īLĢ[[!lSäe÷ø“–©’ŃDODkõß’ŃāäłM7ÆÄ ½ŽÜu;HRū œ×č/øŠN¢~Ż—‹õ݉­ 啂×ń*­Hʕ6 W@d¶hŸŃŸ»gŠ{’CÕž+ų%°Jś qśĢĮy˜’:śPK .3|QČB‹UŅ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fo_DK.phpUTŲ]Ā_uAOĆ0 …ļł¾u«Ŗģc ¶”MZw.MUšŗkD›'ŻŌ[†ÄšÅņ{_ģ§ĢļŪŖbĒbx­Œ‡ŅŌÜ[E\ ”BX*ŹeIØ#Jf|¢§šHFYŲ£ĻM0χńĮņč‚Ō®Y\Š'G㢲«kŠ®ķÉ«ŹPÖóI[:jT0Ī&ŠÖØX;<ļvŪåz’²VłB„œ•‡Āų@&ļp6”b‡³{בF>TŒag‚0tdA©>#lk„‘»īțN?;CY¶Ś>g™Œf„“ü3Qļø¢ļl>‚»ÅEåŻ(D«•LSŁ÷QņĖŗņŽø®Ż[BʐĄfsÓ4ø Xp%š?~HÄaz+¾PK .3|Q*BJ„Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fo_FO.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒĻ½~`wožPK .3|QzOkŲ=š2 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr.phpUTŲ]Ā_„WŻnŪ6¾ĻS-”t±Œb†¹MÓ“nŃI±!ł¢+Z:²˜H¤KRvƒ„Ą^cw¹Ūś»ŚŻü&{’Š”,Źv[lB“ē|üĪĒĆ’‡³|¶³3¼{wīĀ«œkČx@æ3¦ Č LŽš„©‰dJ.ŁcĀZųn²g^¢žpcąĮÄV ŖJ'²|č”ϤŖ‰²Ŗ( ‘³+ŧ¹&R(x‚BSH‘IU2Ä؇YŒlsŽ‹ŗŻń‹'O_ž>µTµ>“3 ¦!åŚ(>© ¦°ą&'iײR R “;“=“m*“K„G¶<€1Gƒ N Sgy¦˜Xž.‰į±3œ°÷¼Dųéčųµ3|?†šQōsō›œā„icÓFłF…Ź·#cVaįj?-œR¦PĆī,ÕuiÆī‹BS)ov€¾č ™Šąą!D£DVĀęōŗ-éhß”Ųł W‰Ķ˜«ĻӔR˜<€•ŌŃėNy°ƒ„ˆŪpå[ćY ^N%ćÆĆj'āŖE%šsšEŸ;n<) 3qA“éŗSīDl”ŌĆ­°4dkĢ9aOŽ•jå֕N¤ŚöķŠpxņ6Ļ\Š “]›®ƒZwü:-lĢOĀ©Śēn\)Ņ^¶­©34uµ»Ūę­ ś×-l[3ĘXI+ ¾ADĒŽéÕŹ¤¢Gįņń…ķĖ@XŁ–(¹QXkļÆl°…ö…ķ’ž3Pf« óT:/ą Œ ķ‚3S²<Ņ/ ”¶‡ŠĻ2Ś=±µ›©å-÷iŸĒĄ?gĀ“«…gYĖ~kyEą6„øÕE٬½[¬²Ė-ņŠÆCĪNńżl ¹{8śYµ¼Ł; Ś\”&ńķ²¶ūs“Ńßå­a+Ā(QJ„Śd՛ŠF@@čp[(]ūRė$Ö׃ŃSįĘcŠ™”ā2%I„ŠĆå”uvf储ē¬p8#+ -ÓQkį4†ŹŠŽŁģ))ĀØ®…0iDć€ÜĮIs`m>~åąĻŸŹŅc½ć“ći8k<žœ _Ó8/œŠėīu?¬‡oa)}° ūÖ÷.auߟӝīiVāøč7Gn’óėo4ayóØū ߛz\ņŲY{bÖśŽ¬£ ŗ•¬ČžÓōŚ@eA}Ŗ•ŲŒ¶½yZh?ĀǽŌ×?ĄŃózFÓČ/?Ī•/—Ģž®vĪ+^8·?•ĻõoQ ©!rłW]Š83XNh甊LŒōE!ē­9]~L\%Ts®éÖh:šāVQÜÓo‘Ɖ‰½Ų«ˆqŻ^hh7ŁHyÉD’×R‹J¤ÜĒöT‰BW¾ĄŹę4Ÿ£Ķ;•śäAē(Dģ雞Ş<öıē=ēŗÜóę6`ł›ćrLŽĒ±8Ž–AR_„ßQ²J$ö1»·EUNPķĆm·GģĮ/ķlŅtéOr¬»ģ7Ā ™ŻŠņ}¢ørĻ®4]Žčż0AšAÉM..ØzŻhH˜s÷i\\BnĢL†ĆLÅ ~És¹°Æžį'_ß9ś.Q\į `»ƒ P 2zŌ®o×ab_;Ń8VūłŪ¾ĻAÜ$ąBdĻŚDŃŽż qŠ« 3Śē$Śdżq£u<ī«röōhÅ5±”Š3ķŽpŅ ¢Ė:L+퓐6F˜ŅTF5j.ņ$-6 =ū/Bķ„Ś4śP—>4'‘Böp.³ÕĖ掟 aķd½¶Ö>Į¾ń(ŗ+6 Öż°‹įķżPK .3|Q~łłEŃ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_BE.phpUTŲ]Ā_-KNĆ0†÷9ÅģRŖ6ŻC)ŖPa‡ŖhāLƒc‡ńøUŌ3°ģŰŽ|žēńĻŲĖ›”²l1f0…÷N{h“!ˆ\Ҭ‘+gcH}aKE¬Måu÷¬Ń†|„E`Y%yk£tR(ׯžKŸFM0”ެŪNm F+²>Ž“ćE;;ƒĮĘŲ^Óaģ{y^?nޓոŸt(p@µöĀŗ B5“t1w÷.°¢8Ø—]¤¦Ž» c™īsŲŽ½B<Õe£Į €¼•d”  ĮŁZ±€)@J„™ā½Ńe_ꀱӶņ«ģ¦LJĆķžDąaßŗĻŚ¹FāĢǽtaŲ*šŖ‚ĢŌ¦C) teØ­k© ĆG%dtu…ʱįŁē­–³łf;oKłł¤Tge!'+LūF0‡3Ié"nvkĪŠ5Źż°£vĆ6wŅHiŲŽµ’!$„‚ [!}čȂ•žū5®Ā“kõCG„÷Éź£/ ,­rw°¾.£4¬A1«KŹXW*Cg³†-šŠń»!FHÓdłš¦q8*8v#ų Ą½°Ūنš8ī‘Ē+Ā÷†ėõ0IĀČwQŸFl%Ķ]SS¤gÄ/Ææé£=ļDm“õ.ØŲ«n£`w}üPK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_CD.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_CF.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_CG.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŖ°“v>Ė5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_CH.phpUTŲ]Ā_-‘ĶnĀ0 €ļ} ß Ø+÷±…‰ 8ŒišPR—Z+Iē$0žh²[šā‹ćĻ’Īč©©š( ą½"%Õ^7‚-čl…0|ŠŹ#ł%Ž˜śŲ6¼'ū0e 6hd-Œ­ł¬¼©m*õi| ]h…JW× use:V„* &‰Źų–ŖŌ|–“J ©Qxv&¼„¼Õr6ßlēm©0Ÿ­„…‹0P±Lg±€ ŁŹ{üģF;–čaŲa»a›;q¶ŅlīŪ÷d„¶–Ō±# źļWū Ó¼ćļPĄŌÉ ¹ckńC'„Éj×× –FųŪ˜Š‹Ń:V ˜Å5glj!ŃkéŲŠ{ŒßŽ!ϳå[ž§ń°äŌ’BœĄg^āī&†Ēń ¼ βt½Nw^ā$8÷I“ļ?D’PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_CI.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|Q ³ Ć÷L5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_CM.phpUTŲ]Ā_-PAjĆ@ ¼ļ+tŪÄūMӒ4…@É”ķ-³^Ė±Ø½ėjå˜ü¾²©.b¤ŃĢ ķĖŠĘYf ƒļ–4Ō!h ĤE88®bŠ‘’q7Ģ•;ÓW~ {&ąŒ©"ŲV3| £ä>ö»ź{äEØ»|L·VĄ…:ņ’Z†&rļ„bŲĄŠ”ÓŁpZī>N‡ćłė8K-ł¤u“KPS¦j¬a"iu£ŁSŁ£ÕKŲĀ0ŹČ³{”ŒCēW °+ėHe­Ć:åJ&œŻš–$ņ”܇BגA$Ž)aS ‰ÜeKV°GųÖ*BHÓŁā9M‡a\А&Œą5®°Pd]šó“)ŅqĀŻn¢ õÉ­×Ī^^n¼–£ŗF×dż…FÖž g6›ÅIæp}ƒ’$ßōŸ9üq’ӗsĮæęmlū·Į;PK .3|Q “¢ąC@5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_DZ.phpUTŲ]Ā_uĖnĀ0E÷łŠŁP”¬Ź‚RZ؄DX6B‘ćLˆEb§c‡ˆæÆćōA_³Ķ=×óšō¾.jĻ‹F#F°+„†\”6׌ ØL0g”*i%~bG ­·³ųI0 Ō©0¦iW>H[*rUĶŽ­OŠ\£¼)KąŖ¾8˜Ģ „¶#e®ØbF(@]"³ŚY`ėŽ­Wóåf»ģZ¹żLĮ “LC&“!‘63h…),±»kÕG;(sĖF”iH#b—„°.G›yCZœq@ųŚBH’Åź9IB?Ź)“?ć°÷Ą†Ÿ Ņ&Éģk•'-āɇ»ŒƒžvŹĢiū›Ę‡wП¤{ą$'ÆwNń‹IUóƒk²żB­Šž-QG/6¾Į qĆoz{Ģ’ōe6ą_³=š0¼õŽPK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_FR.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_GA.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_GF.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_GN.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_GP.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_GQ.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_HT.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_KM.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|Q³]öŌ_5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_LU.phpUTŲ]Ā_-ĻNć0ĘļyйŖ6½³,˟‚„h{A«*š8“ÄąŚŁńøÄ3pģ‹­ķąĖ/óy¾™Ļ9’5SU­‹ šg4zc 'd߃Œ7Č­wIŅļ8Pzsū‰>…k6豉BkDą¼Ķå„K„—ZūŻÅwėē2؏ւöÓ›a@ׁ5š\H+]ļy‡b¼[Ād “¶7t(¾‡ū›Ū§—Ū<Ŗä“ 3AŲ“Q؃ƒ‘1ݤģĮG֔u%ģ:æ0{Æ¢ŒžĆYž^ĮóÕoH§Ćj°¦Õ+ė5Z —ƒ‹µē”8™$²dʏ†i²Ø)QGfO'L’¢a‚¦ŁÜ?7M­Ö=×韪%ü­ņt5æ*(ųyń-ł”j³©ė×tŌ²\ng؝w2†&¤¼2{Õŗ4VõĒĻ}ę9÷¦“޾”ą č;4‰»ŽóÜĒ~»;|ķ¦Us>iĄh"4…©Iڤ¤ģ1 l1j강b”=fs׌}g,&“Gŗį‚ńg FŠśm’©u™UŽĖō™¬€£‚T™#Ž¢›4œ/iJKōښŚ%k{‡žŻr1›ÆÖóÓŖ>ŸÆ¤‡ƒtPhēIēĒŚWL8»³)äCE6„¾#’H3¶– ¹«ŽœŽć€š­Ó„eÉā)Ė¢ .)⟠BxĄœ³¹n§©——›^ ŖqӀ Āk²žBcē~Š3K’8Mćg®ošƒBš¦š›^ć3‡?īś .ų×¼ Åvx#ŽPK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_MU.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_NC.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_NE.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_PF.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_PM.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_RE.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_RW.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_SC.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_SN.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|Q “¢ąC@5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_SY.phpUTŲ]Ā_uĖnĀ0E÷łŠŁP”¬Ź‚RZ؄DX6B‘ćLˆEb§c‡ˆæÆćōA_³Ķ=×óšō¾.jĻ‹F#F°+„†\”6׌ ØL0g”*i%~bG ­·³ųI0 Ō©0¦iW>H[*rUĶŽ­OŠ\£¼)KąŖ¾8˜Ģ „¶#e®ØbF(@]"³ŚY`ėŽ­Wóåf»ģZ¹żLĮ “LC&“!‘63h…),±»kÕG;(sĖF”iH#b—„°.G›yCZœq@ųŚBH’Åź9IB?Ź)“?ć°÷Ą†Ÿ Ņ&Éģk•'-āɇ»ŒƒžvŹĢiū›Ę‡wП¤{ą$'ÆwNń‹IUóƒk²żB­Šž-QG/6¾Į qĆoz{Ģ’ōe6ą_³=š0¼õŽPK .3|QĄd2½& 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_TD.phpUTŲ]Ā_uOoĀ0 Åļł¾PÕŽcÓ(“(‡ĮešP•¦.Ö&“‚ųö3…mģŸ/–ßļÅ~Źä®­Z!āŃHĄ6•vPź{+Ƀ-ĮW3I¹5,©W¹Ćˆ½'ū@ ၓ4°B—kļa’ŸĘ{Ć£õ‘²Ķōb}“Ō/*»ŗeŪ#é]åAšj­Š8>iJKōښŚ%k{‡žŻr1›ÆÖóÓŖ>ŸÆ¤‡ƒtPhēIēĒŚWL8»³)äCE6„¾#’H3¶– ¹«ŽœŽć€š­Ó„eÉā)Ė¢ .)⟠BxĄœ³¹n§©——›^ ŖqӀ Āk²žBcē~Š3K’8Mćg®ošƒBš¦š›^ć3‡?īś .ų×¼ Åvx#ŽPK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_TG.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QĘźŗ5"5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_TN.phpUTŲ]Ā_uĖnĀ0E÷łŠŁP”¬Ś„“*P ‰°(ŻTEŽ3!‰Ž"ž¾CŅ}Ķfä{®g®=¹«‹Śó¢Ńȃ<ŹB®Jīµ &W Ģ„F³$b!{ĻöĀ)”a6UĪĮ$=ļ5 „©¦ļÖGCŻ ¼)K¦>‘ڄΠTµå•:7T §Œ .Q°vTŲv÷VĖŁb½YœGuł\!“ĀB¦¬#•63h•+˜pvk’Č‹².läŗ†4"qJėRHä.²źˆĀ×FB’Ģ—OIśQN!’ŒĄÖ.æE< Ī|øĀö*€ė]Ѓ>“ķA'uņź¹Süb\U üą’l¾ŠŲŚ“góyĒŃ ×7ųA!ŽcųM/qĻįżŸ¾Œ ž5ówĆļ PK .3|QĄd2½& 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_VU.phpUTŲ]Ā_uOoĀ0 Åļł¾PÕŽcÓ(“(‡ĮešP•¦.Ö&“‚ųö3…mģŸ/–ßļÅ~Źä®­Z!āŃHĄ6•vPź{+Ƀ-ĮW3I¹5,©W¹Ćˆ½'ū@ ၓ4°B—kļa’ŸĘ{Ć£õ‘²Ķōb}“Ō/*»ŗeŪ#é]åAšj­Š8>iJKōښŚ%k{‡žŻr1›ÆÖóÓŖ>ŸÆ¤‡ƒtPhēIēĒŚWL8»³)äCE6„¾#’H3¶– ¹«ŽœŽć€š­Ó„eÉā)Ė¢ .)⟠BxĄœ³¹n§©——›^ ŖqӀ Āk²žBcē~Š3K’8Mćg®ošƒBš¦š›^ć3‡?īś .ų×¼ Åvx#ŽPK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_WF.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_YT.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK .3|Q—ł÷ńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/fur.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ cH•Š0ĪUš:µ,)ŽCµ·Ēķ8Evžæd÷<ł©Ŗšķ¶‚-œW”ƒ5Z(„uFd£ÖĀUŒpv«“!ģ™ŸŠŸżŌøJ;öõų†Y­aŠŻœ#ĒūKÉ” .Čź2ŒĪrQš=ž„mP›Ā‡‹Ų ķ»‡ŠIooĒR¦ĆC`z€Œ­ķ-t}=‚Éd=°CyRĘ'(°fŅ1ķ˜§!NI{±ż©]R©•«ā”é ©ķO“yzZ™XJ4Ū_¾@nż©Ū–šĖs3W~­ŃāŚ:_Xr$3 §µkb„ōŖė|BŻ1³üäÜ>LLSÄ ż}’č£k4ģ¼ÖD‹7»” -I j…”°ŃĶ”iKA&oBł¬Ex+”"j1H÷aƒ(~0ˆlY2 FµS)ÉŲ’•ĀX7c©™.g^5ؽhģ·$śŻ†XŪ³ŽEV×Hǹn”©ÓĆ'×Ćäö÷īņ§ß w„{’ž¢Ā¢ƒ+~É{ø6Ę śÖBm’ŗĮR®UqdĻ-OxzŸüPK .3|Q®SW»N 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/fy.phpUTŲ]Ā_}VĶn7¾ė)ęP@–+MŃC”Dv›ŲFŲ¹Ų@P(‚@igµ”vIäFŖ>O_ §öčėšg¹KĖņĀšĪp>~ß ÉåčŻÅ¦ŲōzÆOO{p ÷א󁎦 ČLš©¹4“X³% kį'‹¼Wœ ų‚zĪwsėž&ȕføÕy€^Kåˆņŗ,a!7;ŗ…&2(ł…&I‘KU1Ć„x›}ēøuón>}øśrwe©\~¦`¶LCʵQ|^Ģ`ĖMAŹ]ĖZ-„2—ģk[”ū{m ©ōČŚgp­˜xü[ž½øē\s]xļó%|ҌJ֎B”©•€Ičé>ŒĻ”?ZČZXqTūŽ­Pō_y,›µhŽā%č.ål†+)L‘„*ɄĄ}āu;¬ā‹čź)ń°‰l×IpĖ×‘ÅŚÅĖÅ ø”.*e,­lŗĄ“‹Ń·ośGY .’9FFĘb%1; &dsœ«’J5UУijń„ŃĮžaō—ž_J·øį›{?ķćĒQUlÜu"#­“ ]^žŻŽžżAOl¢pK†ćp(a=p ; Õ-X‰" —_§<Ķ*¼l6dāVd5*»#&šĮ“(·‚GP_ćķćҚ¢J¦;\ž°”ä8V ;Zw‰&ł,8ƒO˜· vČh~b°§µ“©āŚ]ą»ÅśŒ0ːSßbA.–µx 3¦V0A–­Æ?gYšĢI¦ī‰’|›€ū’ѲNąķe„|€d½N·Ūō«ū’YhŽ!é”4MÜJnŠJ;(t¬É†r>ę[…>.{¦¶  n¬Œ± qik«ĻvŌģņ°žqoԘݩį®é1¤§F2ķŽĮ<Ł‘ŃÉhāčįŌ@ŌņQ;ŹFĶØ÷¤5ķK<ĻŽ )K¬G‘c¶²ÖG”Źrųż ÷ßCGI‰±³aA1õ,j Yž#srŌ®)ǰÖc5ģC5‚›1ģ†gØ:!’‹Ø¬MęØ2Uež5°½ŒŻˆC¾ė«!‡©W³Éżł›ÉPK .3|QźČĒ„õÜ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fy_NL.phpUTŲ]Ā_’]kŪ0†ļż+ĪŪ8 vµu]³¦”¦ƒ%0Ź(F¶ķCÉ;’üļ'ÉJJéŻ|s>tō¼Æ$ß|ļŪ>Ię“IŲµ¤”¦ĮÅ^°UƒiīJŗV¹ fn֏_•ךƒIHxF]1pSųņNŗR™¬T‡Ū8ŗR@µķ:(U?05­!+čØD©¤¬„!%§Šw(\ļHx ūžÖ÷ĻŪ žL+ œ„†Š“a*¬Į NdZ·ā¼ke¹D'T³sBæwaM«Xńł VŒ[U›“`t­¬¢üZ–øÆ°Ķ¬éØ(g*E‡ś®‘6SÜ(£±,A0‹!gģ;Q¢‹„eMG¼bükɁó|¹ž•ēY:ƇĢ]w:…?‰§§ću ßnc+“ŸB#].g›Ķģå%†„×1¤%M÷¤BJtöI;jŗĀ‚ßŖp/č“EĻŌÅ”O­ĘŲ…ø°Õʆm[ģ  d_üÜÓgu¼“—ØĒü½©\»Ū5oÖ¢§ }±2”h#ŗˆ&¢~TŽŖQš¢uBÜWb8_ĮV"ĢF¹ß xG¤cśŪuĻłNÉł\łēƂ¢D%?ąßfFųȉ#iÄ|dœµ’"ŌĦ䎑«:÷ø€łWcņ«¾Pp˜ś“ -jˆø6йal¹I”ŲµĢUČČQT;±V ¢ø×`$\ˆH{Xņō;Āc6z:™¬I"läŌ÷S+fr%ąvō Ŗ!œ}€į4”¹0¤¹žT0®ĀĻÓ_ø;H}hĖn4“Ā$Yń_£Ž‚Iž ]Ÿ•µĶ37ŗeģ¾£«†ab:Į7$Ro»WM¶mIøį;ŁAZ<6NŲõ9QŪ8u£ Õµ£š#W“Š LRÉ׍ƒ†Hŗ¤ŻoM;Ÿūłä‚VXdz(žxVģ1jU¦Å"·ž±{Ķ„ ښ~J5 „ˆŗ„’<ä¢å¬Ķ!gań¼IŃŃv‡­t§TŅ‹­e ž1(žØŹM}c%³•u™9”$o¦ŚĘ{®!`“«Y›”$ϚUĀćøG!Ė2Ņ/•/Bš¼®[³›ēč|śķ›ž×£óżi Öėq!ŠżaĀKĶbļ4łKQ#3©”O +ķƒ”ŽźEĶ<lu VµŖŽœrxžµ²üüyš¹-]Ė2ÕŗVŠl6Y,&’Ņ× ś ÷qč»÷“ˆ¾x|W§bŹDTŸ­ü4flęŠs[Vp}”wĖ›`?LĆr³ų ń–ŁŠą¶ĻJQ›ŽSŗØČ‡h/Å4“"7ģĶę*ÕõŹŸæ˜ƒņ Æ+<¼BQ©£Ń»Rņ—;™øŅĘ^Ž+7…ÓęĘ·ćÉ¢¶ēßB׬”luž”żhļęšõʏ8ĖjŽ‹±eqūOœ»wƒ’PK .3|Q[D»†Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ga_IE.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm£Bķ0blŅ$“ą½rS·±Č’ą8Tü=iœuēóŻÉ‡§ä’1]ÓhąÓq†‰=A E!N Žąˆ2ÄP)ū…3µU»Ź÷ö^„1Ą•ņĄŖpVų*ŒŚŚx{ü—ž£lFSńlLæĀ³SĄ0‚gK!×Č0E¹”r ÷—Ģ8Š)øLĄ3s­p*łĄā¹DßKöᵑLĮ[aēŅ9x9§į ‡Ś'ŗxØWŚx”“ĢsHōņĮČEę€)¹L„²h©Rm ę¤V‡°Ģù„Xłu7o..ߎ]’”ĻeĢĮŠYąŅ:#ē„VŅeˆ`ģV—&hÄ}°'”!­—.Óʎčż® SÕWü×õÄ_˜ćŲf\Ɣ_e„+‚ūąoų ˜ĀŁ+Ž]*ó\2ž)6<¬ lÖQ>~nąõ3ō‡Xģø™/“rY„ÕŚ2Õłō(häįõnn ŁÖe%㳂%gR‰¾SGC£–²žĮšU¬Śr'œ3ÜÄĪØ…ŃĒCė]<K“ānx•Lš(‘ށ„®w3ćŹ—Ż®H…‡,®&U&ydÓ§ŃÖŌ”õ³+kņÖъD«8a.õ¢ļ֧Љ įĄZļ\cc½ÖŒ-tĢ3 I†q*9Yˆ†]Ģ”»Ėf .Óæė„i7s¬Žxõ“›13b!>.ūĽóŃū÷ö&ūēŃ"§#IY.²m|Kh?,“1MB㣢z¤ƒl ׬X»#ļ’Æļ±ŗŅõŻį§oŽÕ«ÆÆGEøøė!#k#°†&““ŪŪ“š ·ųƒmx‡mū–ĘńwĻ‘§!½„åBńpŃõņ³¬“f—ī›ś–f ˜{ĻQ‰®ĒģŖłłļö¢į~-gÖÅīÕÓ.9āmŹYAg?ĢlŗS›2»Ģmų¬o6ź” —ŠåLK•Pƒ½ŸTY̅هO­Nh'9n(pvv§pīo·Q»~†Ó_=öaŲ7Łp’…—üÜļį“ Ē\1-ó¼>ÉōĄŸŲ• ]@šmõh\ƒČy.¢ą¢z’®ŗ£źĖ¢Ą«Ą¶oJ,“ ƛź»Ābbę |Wę›AOŖĒ‹j:˜ŃøƒæĻ³œśĒpe2³Ų£]ȇ’””=Ūč)tzś éÅK/$=)>zRTōōńų V?}­9u:¼DšBN$ƾŲ®e­6‘y‚ŸH`kQ™`Wo†›n½ŠśŻR“‡›~QŗčĢ‚QšźA7HnK5Ż…Ŗo¾e(š/•ÆäŲ×ńšÕ•h5Ri¬£.<Ói×õO»ęMó5‰Pµ’ķüX9ž3üQ’€-J Żž #¹EąųäRB§/’PK .3|Q?J[ĪĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/gd_GB.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm£Bķ0blŅ$“ą½JS·±Č’ą8Tü=nœuēóŻÉ‡§ģ³1]ÓhąÓS‰‚ĪlY M įhyHQ)÷eglU»Ź÷ī^˜l„+–Dą0¬š9*LŅŗt{ü—žoFS \ŹæL³°q„@cŃČ8%¾Y”ļ!“Źż.ŪŻŪåxŗ~œV«­Ÿx+°Ų#aŖą ‰×v/©²C ·²a”Źæ+1Bßæ^Žū¾ŻuóŲźvęPK .3|Q8Ö¼ņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/gez.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ [‘&”œ+7ukYR‡j<=iĒ)²ó’ų%ŪēÉNEQ—e%|ZŽ0°#Čē„¢PK°Cé‚Ļ+sʑŖ¬]äwę^…ŃƑbĒŖ°ķ–ńÅē1heĀåé_śd ’s`Āt­śņ1Wś!Č•ƒ€ÉęŻÓ¼śŽ»ęųŃ,Q+ŸZT˜1BĻQ…»¤ŌĆĢjóMf!‰”\ŌÆ°õņĀÅūåĻ>Ģz09”q­K‘nx,1S¹ÉbGŹ»Ž„4‰Ļ†ļÄBжūĆ©m«M=ŅoۜŖü›ĒāPK .3|Qą†»¹Ē€6 briannesbitt-Carbon-d046377/src/Carbon/Lang/gez_ER.phpUTŲ]Ā_½TOkŪ0æēSčę¶t »v]×­F”ķaŪeŒ"ū%u¬L’ŅSw“ķZJ  2F”P ­Ē}}“I²“6ĶŲ ĪÓ{æ?~zŅņ³vŲ®Tj “€Ž„T ™w›p‰XÉŠįu›%Ÿ4”jjmłœ?^pJb“ ¢N„DĖu®Ę&d²ź³ÖJYŗÉø#j$Q„|ÖīrŚ %"q€"źC,ŒdÜ`¼E$eń"jG@ĢŚ…ŽĆmo­mģ¾Ž°TΟ ‰D"P@…䓞HP‡ŹŠdŒwĮīƒ œŁšżB‹}žČq±d’?B/ĮƒC“ÉY,)pć1‰§Ģ/b>‰@¬6«Œ7 ™šĪIshGÄóö.čĢqxŸPćõ­WW½ÄUÓ`o½«XRÆųDį”§+å’[Žv Žśzmg§öÖü¼E—Ü+^^ĖX K”§ūZhuih=]źt`Øs}¬tŚ/2}éüÜĒuÖÓé7Ž•}ē‡e;×J°†ģŹ<%G_§GĆĄRF&Ž,”ź{憱0Ż–’ĀöCxīģ¤;jsv”³:/ū5ŠŁ©ĪƇFTŖU™¹Ņé…Ī{#WŸ†™üL«ėįgłw­>Ū ˜TļÓ’Ńż]“Eć’lP.$6¢˜5°ÕwŗĖl¹^٬ŗ@ųXU 8 (“FÓōÓN³*½|ŃźGŁŁ;XœŖ%ßl‰t®¬G‡ØÕ9Ūqˆ(©GPbf¬'xF•Ū ǘŽŪ¾žŽ«Ō™±žąŁD ThnĶqLęN\zcvś^­pvĮ3K•;DcsÓO{:ūZĢį=ŪZĪłß#žUØĄ†övĪģ-eļܲbzšą©£ó2QŃ3÷ą–`zšąi EŸÅ<Ł•Vę:¾ņˆéi‚’@²7’¤ņ PK .3|QŗU’EÜ6 briannesbitt-Carbon-d046377/src/Carbon/Lang/gez_ET.phpUTŲ]Ā_½RKOA¾ļÆØŪĮŻxUD”‡!źÅ2革Żé0;½öō°YN/=3»‰Ę`āƒ„D1¾HˆĀ‘S’ÄīŽ †£ö„»¾®ś¾śŖ{įn7źÖj¹¹ĢĮ戧Šā1‚Ł»L*-PĀ2“M‘(Ųam¬›\›>ĢĀ}ÉY[˜6¹R°Š“įRbB”źč,ŽSׄtD­,Ž!ݾäķHKBˆy€Ij$“–¦øHę”#3Ų.Ēž«ŪX_^Żz“j©\*b z,…§Jņf¦0„W‘¹1½§"“”Š5Ū°mķ½LEB¦·ģł<@÷`MŠDq”¦Ē, >˜‹€Å˜.µ÷źB¶D•ɘ”¬ļKģĘ,@³™Lł.ĪH|–q‰ąū+ė}æī50©›{óš“fI½‘Åԃ;‹cČĮšVV››'fyóīr{“yÓb4®ņhš’Š}*æQ©I7ä ”‘¾ 餏)?wAń™†ū¤æ’Ž.?RyģNƒ†lrŅå.¾ŠĄPQ~6*8µł)éŹ ó$«0'T/£o)’YM,Y†)Tõå§ęQŌUw_×;ŗ°~ązC7•Ž+]Oūķ!?}‰āˆŠTŽIOØx=‘ÓĘg>•ūa]”£1ėW¤ßMnŹ7ĪŅ” ņēTž&żŽĪüŖbuF’F÷oŃOž“¤‘óEĖoq™*ßźŪØL:ż›“’‚’‡;ÓærNł'ŅcµūZ£ŁmĻŽ®żPK .3|QĶķ‰KM 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/gl.phpUTŲ]Ā_­WĻoŪ6¾ūÆx+ (É\evr›dk“b’b@Š ƒc“ōd•Hƒ¤gMOżKrvŲ”×ēėžØ=Š%9q6` č‘ļć÷¾ĒOōĖ£E¾ ö÷ö°ļr®!ć½L˜į5S3)Ø+yĻęÖĀw’]x„8šõŒ/g¶ł­ ¦4q"ĖC}#UM”UE‰\Ü(>Ļ 0‘BĮšBŠLŖ’.Å2ź»āx];;}}ņöāÄRÕśLĪ \3 )×FńYe0…knrņv-+• Jk±ū6C;ö»ŹäR鑵ŸĮÅÄź7IųW¾ƒ§XĄÜ0מįN5£¤µksœKų‰Lqń÷'éz/pĘ“±Ó@ó‡ UQ”©”€ńč‰n©!%²6syۚ::›¶ČJlBŻō©ā¦æ”Āä=_‰ś¶5±§ƒ„@›på:[ˆuų¾ēŌX2Įn{­N¼_‰œ=޾^'QSÖĻ=]żH¬Ż  ”ŽFXŚg qrŚ@=m›Ą`ķN [g¶Ł_™¼]5.hūö'Śv…„w­īŚuFŲÅ{ MĶuźYc"Eŗ6ŁóJ¤ņ¶ßģÄīŽ©„ˆM#ō:}ˆĪęŅłrĘadx‰'S²œ é¶AV‰ÄŲyj1»š”هg°£«UēĀWCųz¬øØ‹µ?“OD~ņ"8?ėŠE}l6 ϲ ͦ XŌuö].—xß7U8Ē墅ģ./õ—«;½{ԃߠ6؝W|Ųߣ“°@¹Ęhd)•jėlõyu÷  ĒčpÉd šėkē RŌ Ŗ§†Tұ `¤.ø]½wd :{ēF|?*Kõż­c¤uĻē<ĒĒūēēūæŠÓs6^§8szœuųī ų”ž!ü먉O;“„ ¾ ÓńŽ ¢µŒ`dßŃnM€&¾s$:‰ \š-źrjkŹ~n¾,’_š]GoCXAW‚-N™=ՏOX-‹żU[œ®±œ€›²Ó,•[YR{N ķĖĘŁŚŃ‘*傾¦ˆŖœ”śėĻŽČ”hÉr%£!Uœ©Ę.™śµ6]V ×ĆėŽeµśģ¢p¹Ō¦¶4,gŽAV¦ņ¦W”;ÅÄŁ“žš©¦[€i5Å^PģÅÄ^‹oóø‘ā"öJbÆ#öb/ öĮćŲŽµč»ŠLD*é£?Æ5ōÉöqėBLÖźw•P•®KJ§6®Pų.½ŗ›ŃŅŽćī„EbOßKĖ’Ēž8ö¼qĆz_¬XFĒēŲ<—cr<ž%pd\ic/}S™µ—Ķēķ½Ńö;õŚVøjćQż™šń‰~@‡.¬&*žr,=€Å.å…}fņbšPK .3|QŠQ¾Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/gl_ES.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm£Bķ0blŅ$“ą½JS·±Č’ą8Tü=nœuēóŻÉ‡§ģ³1]ÓhąÓS‰‚ĪlY M įhyHQ)÷eglU»Ź÷ī^˜l„+–Dą0¬š9*LŅŗt{ü—žoFS \ŹæL³°q„@cŃČ8%¾Y”ļ!“Źż.ŪŻŪåxŗ~œV«­Ÿx+°Ų#aŖą ‰×v/©²C ·²a”Źæ+1Bßæ^Žū¾Żushõ»óPK .3|QÄsī ņQ3 briannesbitt-Carbon-d046377/src/Carbon/Lang/gom.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ cH“¦ų8Wnź6ÖŅ$8ÕŽž“棳ü’Żs“±Ŗšķ¶‚-|YN0°#(gDQØ%Ų£tĮ—•¹ąHuŃ.ņ;sÆĀčįL©cUŲuĖųāĖ“6azś—¾Yƒ†ģ˜ÆĀ£U@߃cC>•J?™P9ųˆŽ°ģ~™ęÕw:īēĻƵņ©E…ōœTøĖJ=̬¶Üö²*Eż Ū,/\¼ßžāĆģ”§³S×ŗœč†Ē’ •‹;R6čÜõ ¤Y|1üd‚¶};~“m½iĘ0µ'T_—ÜiN%\3³ąÖĀÉĀM?Jœ*K2U}ŠK„¢¢2µ¼×ü¶“@e‚gLt) „+j¹’),£([q¶n쮾|¾ø¾¹pTM|¶¤ÖŌ@ĪÕ|Q[–ĆšŪ5»QµĪ:Ź›`GšŁZK˜ŽŸäžQĄéHŽ2UK +„•ŁtC«$ Ų>pÕJ+%m9 ØJÅ„Śōg,¢ūČŖlÅkĘī†Z%0ó¬ŒD(²­ū6†nŚA«Ļé fW¢Øź+ņVZbµ„Ņ›nŲÕbqL£āĖ?,F#Śt3Ū‘ąlPŽVnX¦d>¬‡µ€AŽ( 9ń¢˜[³>ē1]§ŗgĘ2ÕS1P[U)­U(ź%ÅZǐ|Czæ¾uńÕ÷ą Ź£Ŗ‚éŠ>X: FqӇ³å1ćńėÉäõO|ŹV |ą©ś©^(ās|ŅĘfꚊĪ`¬ŅĘ<}Į^ąķShœ¾d4kW'ƂŹĒSxwÆÆµō/įēē·ŹX7øa–U‹Ęö›­żąZ­Z٘=4ĆY’|2sƒŪ×vQŁ ģŒ€„HšO‚s|“ą˜DÆī@ƍÖę}Ī-m¢»Q•L”¼Ā?Õł*Œ4nр¬ļtk#’I`›|ŗ Į H 'šŽ€“OƝ·G’ćkP•ēņLžĒ³4’2‰ė¬tĪ%õ[£Øeęn/Ų{%ėjĮt ƖLs•ļƱsĀM d/@ąōō«™Ą$Ų"pI²ÜX=ʦBdĪYµķĶß}¼B8÷}EĻ¢ń¦MŽ£źq§õŪwĻ™uG…ų†æžcȕÄO 1u„Iżņ7*©j©J£Ć` tNÅäµVz Ÿ6d‚xn_…sHÖ蘜&Lm*ōƒ=BēIĆmxu(Ø ļ.”;Ȍ×fFR·A–u²…Īوką=ā®…~7™ÄĶÅ”®Ä¶$¬…-3é¼ĪŗJóŪĀ1• ,f†Ė[øc<õĘlعķ.½ÖN±čĪ’ünŸJYVNy¾T{ŸÉ:{żLH©.E™ņwĻtī-ælwTKBQ$²GŽH¹^’šĮ’“"¼Ŗę“3”½\S ™‹ė`X‘*BFʙ×éY„ēŠo}}Ź €•ĆrįĖĪ™.ĢĆ1=ĘĒ·½“&ĀŽ’ĘJrŅö‘l$É@’N²IńI Iå Ė$$JøįO›ß„ż¼_ˆ“mZ åJ‹"]ķkóżęāü™&.nēšµ‚co®6›{mö±¹NZžųŽ7‹õ‘Z5Ī”†Øa(!ŻąńO)½Å éėU¬Ne™j°Žc^ü#KŗV£€’ŖÕĢÓé§ģPK .3|QśR{k6 briannesbitt-Carbon-d046377/src/Carbon/Lang/gsw_LI.phpUTŲ]Ā_uPĮNÜ@ ½ē+| ¬¢¬zm)-eA€–­Tz©Š&‰³±6™I=žą{ų~¬ĪhPÕC}yöóūĻ¾Lż”eėÕ*ƒüģÉCG‚ādXĄu =Ā„įŚY„šƒŁc©ŚE~ҜĀ7&ca‡¾&8«—ņ«ÕŅIŁøńŽc^ü#KŗV£€’ŖÕĢÓé§ģPK .3|QŃå­W' 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/gu.phpUTŲ]Ā_•VįkŪF’īæā> ÜONĒ`fŻŗ&ƒmIæ¤0F0F–NŃKg¤óܰ–@›BeL` dcc rpMĒ6ē‹ūÆÜŸ²»w:NVŚL„X÷Žļż~ļŽ=ŻŻś'ƒpŠh“WVh= IŠŅĒHü܄! bōĄMz4&o߯ƎĄJų-ļ6ś,!nŒā“GCė=9ü4CŹF÷rčē4¢`Ųļ#²2äĘ>źĒ©ŒšD.#4n”A»Āö-Į#ˆŪśāĮęƝMIł±Šehä¦Č')KHoȰF„…Ā#rOé0ń°ņ!ٶœ”Œ½?d!MŅ5łž>ś’¦!Ś” Ōų+w˜†d_”Į÷I ¦ŻH0&1Śm ń4°›4ŃĒ÷P“g/y6F<ū›g3>łg’®yt3ĖÖlå*J!j‚Ź&>y”Ć"³°"8åŁĻŽšģB¦e.āmŁŗP˚-täćżr°Pxʳ_ ĻĻ~…€W|rijćĆ·BJœv6ģZ#ō݃ʬ’6Į<7jĘVÄŁ ``¤‘”h˜ŠÄ˜gÆ!ó±‘0¶"Š–žqA‘Xōēņŗ©‹’ēÖŗs‰`iåJ3™–g’bĘ¾{*½rU¤dƳæ¬&™óÉ LźX¬OA`KIŒ‘‚‘Fŗ{4Ē2a|WŖH$4źĘtdC§%„0œT™²Ÿłä{ča±7ą%Čč•Å|F rJæĮš[ FK]õŒgg–÷§"§ā”gŖT )89©pE4IŒź2LmmŖ“jóóÖ#r…kQ„ō·r _ž+ŸƒwŹčµ4}W€‚ol“··Ū߈Ērj/ŚZv/ū[čfy±¾xZč1tņ‚ynĒ~¾½–*–ŗŽŠĖ²«V®ƒDK Äų1+cĢrŌ!æ.¶6•®č»©ÅUķƒ*£ÄĘ]hӅlfhӪӐsŚģ§yoU*į„ų«½;ʞŗžęvŒ7”łąķŁ,` ;³hĖH{īOʧjži Š€.tcAĶ`3’Ųs.Į=[vOU]Ąż“2½„i\īźÆ5Pö<Į‰Hž¢éCę¹2ż]7ŠseškŹsČf ļ—²:b¬Ż–ćB.\]„:ēU_Ē*Q7—'vm”œś97+Œsò8¦(NM1œš 8Ö䝼Œbšņ–#ö|Ó 3hō7¦ŻsAٓӊu =x*ĻXŪq ¹’ éXŽSpØ&²’Ø#[צāĖoŚZM¾²Jł¬Ģ« Wó¬¦W“••ĢrśĘm#l$˜‘Éß Ž¾øåē|Ā#žŌåRōŽ *@IRÖņ]t‹ ėŖ¹CJ»IÆų;„ ąüś“»ŚB«‚¼s·ńPK .3|QŠ{J~Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/gu_IN.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm£Bķ0blŅ$“ą½JS·±Č’ą8Tü=nœuēóŻÉ‡§ģ³1]ÓhąÓS‰‚ĪlY M įhyHQ)÷eglU»Ź÷ī^˜l„+–Dą0¬š9*LŅŗt{ü—žoFS \ŹæL³°q„@cŃČ8%¾Y”ļ!“Źż.ŪŻŪåxŗ~œV«­Ÿx+°Ų#aŖą ‰×v/©²C ·²a”Źæ+1Bßæ^Žū¾Żusmõ»óPK .3|Q_£hžJ”3 briannesbitt-Carbon-d046377/src/Carbon/Lang/guz.phpUTŲ]Ā_„TMOÜ0½ļƘ[­6wJi) ‚ŠP©pAE“d–X›ŲéxĢj’}; Š"mė‹ĒóŽ›7ž|œ|ėźn2IŽ&p÷µ²°P ß;d³© Ī‘ £}Ŗ\ā3Ķ<·§”‡šƒjø%[(8)śćwķFf„iOź„įPhįšJÓ­Y=ר+hTIŚzK½0Ü¢(£§Š5„>÷¢ht7×ē·w}©ŠŸŌ(°B •²ĀŖpB¬”Ōń½[ćø$oT…fÓ “8ր̸ΙŗKņ{éŲŖ:`śćäłüśwžĻ’”ōĢO&™ĀćüJZbU)jųz I†J2“~™üPK .3|Q Ä©éńN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/gv.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ŠĘ@“Š|œ«4ukYgÕŽ·ćŁłü’Ķsr©Ŗšõŗ‚5|;Ź0GŠ3ˆˆCŲībŠ•=™kÕĪņ;{[&ąˆ¹#ŲtóųtŒRŪx~ś—¾E^‚†ā=ؘ®L£0”OCÖŹ0D>” y4ŗ»N‹ļć°ŪæösŌĀ'ĪL&COY˜ŗ"ŲĆDāōFŁs,lQ‹ś¶™_8{Ā)Ä)@ƒ)^€q\źJĘqV*ŸœéPČﯷF)Ōš[ˆŚöõšŁ¶õŖ/ķū¶Ö_\=VPK .3|Q.•Ź}Ī5 briannesbitt-Carbon-d046377/src/Carbon/Lang/gv_GB.phpUTŲ]Ā_„TMs›0½ūWčF’1x:ÓSš¦łģ4iœCšK¦“Ń,°€&²ä®„=üūJ lh‚/õEҾ·oŸ˜³oėj=›-NNfģ„=W°BHdn]Y¦ f+d×@©V®”½A‰‰ćzśQvĢ®H€bhRa-;KżńB¹£¶I¦Wēś]S+TŌR²LÆee؜I‘”2n¤*4­Ą ­ęl-\m#pŪö=Ü]ß>žŗõR­?[e[0,ʒHk‹9Ū [9Äy7ŗ¦ Ż ¼5»š7ō½—µ­4™SæŁ„cA[f?…r: sæ“.ćRŠ4‹„Ī@¢¹(Uh*[!B[“b@ '\KČŠ­YMFlšˆšO-ē7wOœ'ŃUā"Žęģ÷Ģ«GŻ%Mľž‡R[~h ŃĶĶb¹\¼¼Dózķ–h„•­BOtDŲÄ%Ö„č„£gm*.ĻŲŁźJKhHYæ»Ü éwWdŽØFP±©cÅ}į”傐 ]7‚ä}a‰Č~čZaӟTƵtö-߀æķļ—5¶ ϧŒ]OŗM6“nßrhö)ēZ«>Y”PŻvåŚDę¢ Ū|GšŌnČ= õnĀ8Ģƈ ßK÷ŗA4č½[¹¹’'U2–;1® īu[½O õŽäQjØe}žĻ:Ś®f.eĖRŁ&ŠiųdėąÕį+’X8ŸźŪē7Ćhol{~Pbވ!śž| žqW‡VīZSßYMĄ'ŚBˆB¹č.‰m°Üå޲)ųa‘Že0Ój|ń¼żœō2ęüPūėń—Ł_PK .3|QÄūŁb˜ļ2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ha.phpUTŲ]Ā_…TKnŪ0Żū³Sø6ŗuÓ4n>H;šl‚" F–H—Ÿ¾Ms€^ čĪ»žŖ9r¬ŗv“įpŽ›7oHIǟÅ¢×õąī a`&J~] ¶ f` gØS%}*›ćxnC?Čį³(į–›TX Ēi³=•~«ģ SÕ Q/•B3W–©ÅR‹§ĀŹJ‘qi|K9SŗB+”ģĆ¢äčsςהnr}vq{wŃH¶@ 5ȅ±Z¤Īņja xļF9qß(f‡Ķ„MķŲŁBi3jāw~œ“T§•7”Å36vWsė“Ō—LóE‰÷kę“Ļü@óļNhŒ_el ¹ųSLśš­žIā&'” éÉ}Č$WW£ŖJś›ĄŻ22¦Fč|8>ų§µL§Ó>lƛ8`»ūš—ū§;ŁqI*%mAÓ%7(Qhē‡O.1uŗŻLQ Ó晩¢¤Ü2¬NŠø–a?9c±‰īŠŗ* į—¹U1ŗu5Rņ\˜v­0ć/Õ¾"3dƒLźOķ©;µ¦¶Ō“ś­{՜Ļs\¶ƒO°Ą<ØN„q {,12AŃņø,°ŠGqć*üó;f‡õ–vg߁äI›„I•Im[Ŗ²"(b‰Qb­ą/ĢXę5˜š±F.ȼ'”ņ‘Ō Ķnɽ-bEŚ:“˜‚ĻżiĄ(SNZz—’å>Łžņ›Œˆ@½z±«ŲjTū@dūź_²CØp®Zz'‚lWįśü: öP[›ļDķ؋pį’wtõRoŒ[ģĮķ.¦“Ņ’^#ĆĒVüs[ķ‹ö_ŁžņH1üK_“lFs \ŹæĀƀq‚ĄŽb±Č8'¹¢rŠw”q?LĖv÷v:ĻĒÕjė§,0qQį±*M°°zŪX÷’Ŗ8² i+Ū7BZ%‚Šwe!†—Óū0t»ŽcgŲŻ7PK .3|QŠ‹YŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ha_NE.phpUTŲ]Ā_-PANÄ0 ¼÷¾-TØ}+@,‹“ŚpÆÜŌŻXd“ą8Tü·ādĶx<3ņž1ūÜ4}Ū6ŠĀ§ē3›E!Ķ žą€2¦h”ūĀ u¦]å7īž…1Ā™ŹČŖ°Wų &ķ\ŗ>üK_“lFs \ŹæĀƀq‚ĄŽb±Č8'¹¢rŠw”q?LĖv÷v:ĻĒÕjė§,0qQį±*M°°zŪX÷’Ŗ8² i+Ū7BZ%‚Šwe!†—Óū0t»ŽcgŲŻ7PK .3|QŠ‹YŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ha_NG.phpUTŲ]Ā_-PANÄ0 ¼÷¾-TØ}+@,‹“ŚpÆÜŌŻXd“ą8Tü·ādĶx<3ņž1ūÜ4}Ū6ŠĀ§ē3›E!Ķ žą€2¦h”ūĀ u¦]å7īž…1Ā™ŹČŖ°Wų &ķ\ŗ>üK_“lFs \ŹæĀƀq‚ĄŽb±Č8'¹¢rŠw”q?LĖv÷v:ĻĒÕjė§,0qQį±*M°°zŪX÷’Ŗ8² i+Ū7BZ%‚Šwe!†—Óū0t»ŽcgŲŻ7PK .3|Q/{PņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/hak.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې&”`ˆcå¦nc5KŠćPķķI;N‘’Ē/Ł>Ov*Šŗ, (įl9BĻŽ ŸŠBčA-Į„ >ÆĢˆUY»ČļĢ=¼ £‡ŖUaŪ.ć‹ĻcŠŹ„ĖÓæō-ČŌ'ēĄ„é*~ AÓģMSmj‹csž®ņ7n‹?PK .3|QšPש6 briannesbitt-Carbon-d046377/src/Carbon/Lang/hak_TW.phpUTŲ]Ā_„TĻOŌ@¾ļ_ńnĀ..žFD0!źÅ2™m§ķ„v¦ĪLŁģ cHDąFb pŌÄøčšČ•ĀÖĆi;ÓŻ¶{é÷Ž÷¾ļ½ytśI&µŚÄŲX ĘąUH%ų4" ß  ø*$0‡E‹3r×p@ŗ6+qGį™ ˜Į ‘-ŖL·²p–鐫†ĖćSśœ‹ÜČO£\žt B˜yQ—0©[2Ÿ‹+ŹŁ8$Į:·NI;×--Ī-¬¼\ȬņłTˆ“±J%h+Uă6U”fōģ’§Ā%ŗ‘—;‘0Ó>MUȅœŹpZiP"ŚrėwqDälĄŅA.D„‚w I„]¢ßn*$]'#‚¼M© €Šüā „Īa ½LgŽŌ@?NqéĄć“ŹÓKyĀy­Ÿ«ÓŸĖĖŻƒóóŻO_œń¼fµx91g*4bēņdC—ikēņlĒ¢“-ƒ®ö÷KvĻę6Źŗ÷eī»ĶŚÜī»źµÉ‚¢Óą»Ÿ ’ķ i·¢°T:S.O™PšMsN‰Q…¼ļÖ\«øŲUÖ#®"1ŖŅ÷6;P×L­G»ŠÄØB^.üßžå|ŽP£!ŗ‚õ’i€•æO\lXuXĮa4\lVJ™žTųēæX¹qsoā0..*$q9ŖżPK .3|Q2ĘÄe€3 briannesbitt-Carbon-d046377/src/Carbon/Lang/haw.phpUTŲ]Ā_}”KOć0Ēļżs  *Õ>,Ė>xH-‹¶H«BÖ4u±ĒĪśAÕ#Ÿ‹+'>Õ:Ž“6@šĆÄ3æū?Ī(GßJV£ƒƒĄ5ć–\PšļµµĖ(œ ž+éCYŽw4õ¹Uś^¶?5G —Ō̹µp4ÆÜļһʦ™*Žcź¹Ņa£„2U®5æcP.@šŒJ揔K„ “\É!”‚¢Żsŗ u“ńÉŁåģ¬Ś*č³ -¬ŠĄ‚«łÜYŗ€·ĢÆŻ(§3źZ±£¦Öi Ø5®‰¦„ĄŒśwę“į÷tOÓŽk „œŽ’&#*S3ÉnąŸ¤PŅ2“Ą×cøIĘ( īirEK*gŠó°z~üįć\`Ó;Iė·Ą&É嘇ą-żŖĄkņĖU;—jՂ “n‡ŪŗˆaJŪŗ4JK£Ŗ“єvõ¤QOĆ]µ¤Š4*ˆĄūĶÉ+Jó®›;™<=”N„^®Ōó#ęČxėųŚ%\ė°§‡M/6YJŖW'uŗœ\…ÜwĮ¾öC°ƒżģē×{\Ęfį.*s]™?ķź¼2³¶“ĖŲg…šä:DvXą…o“Łó‚Öģt4żõO5 ¦Ó)¼¦ŪøęšĘémŽĀ?CčĶöżÕ ®)źŗā0SNZ(Ā׫&9&ģ¤Hvm°5¦/R—”¤ŲĮģØŽ|ŻÆG1Ā^‚¤Æ°ę~`:PTÓQ@ņvUM™’1u S¢m”õ$}…ńśøōĄī łPŽvŚLżŪÉ® źC3%_tķZ¦ é-¼Ż’2ųPK .3|Q,}ėsY` 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/he.phpUTŲ]Ā_•VŻnG¾÷SUHN‚!-2)i›H•ä¤ ĖļŽ³£ģīX»cLy›Ų"QC, 6·¾ļct_§g~v<ėŸ”nbū̜ļ|ē›3³gwc³“J„õµµ¬Į󀄊d!üm‘Do‚(l‘¤ĮcœņŽÉ½‹X _ńVįׄ‘hŚ`BĄFCŽqČÅ]G ō1OQ³†ąńÖIĀŽ$ö!dSL7yĮx\VH νb“£āöv·vžķH*„OD@‡¤ą³T$¬ŃŌ‡zP{ŹŪ‰G1‘ÆÄ®ĖŹŲ_Ś"ąIZ•öŲ&1£!lń€Ęš„Å>ÓóæmĆnJp­©ļ Āą€`N‰×sOHcŸyŚ~AČ1…t€•rĢ|i®ŖĢ ķ$†ĆąU>”$)ĆO œ³ė¬’öͽSe}Ķ.šļĆŪŖĒŪ±5‡ćrÅÄ‚\Š$‡D<½ĻŁY6VģʞįŸĪŚŃL° µY:”[-=ō Ķ”=·=;ȾŚų™`j“ų$_ļ‚>Ø ŅŗšįæP3v~!ČYę†U0“õ.ØAvPrAÓś³O”Įe_,9Rƒš@>jĘNp!Ņ…Ł )õxģ;'AJīχ”Ō `!śly`Zȱ休#n`—Ł' „Ŗ`ĶŻĶ„Gõ˜ēūŻSõ<Ó@%CŌ#ßĄņ5Ķ÷¦‹‡n4ĖŲ Ų čM9}Öl:9ēR(æąÓćÕ×geŽ_Oč}Ż*ĀV6«/_¦·³Ž?ÆnbNhŠā§¼]Üō+ ¹\Œ*²[šr~Į#ž$vaW²< Ef…[ČŖ[­ŽgݚŌōŽsłōi5Š Ö8ž9žjšœŚµ½½¾ææžƂ3÷ĀaÖ«ķćóÅ˜—a”>^ø) f–ꑐƾi»ĪZSŃķ|Ēó=Y§ÖĮÉÓ×ĀAŖŖ.Ćżnū£T(åéžQƒ"6$©ĖiĻĄ"^‰ņJJ%µ&EßÜ/ƒģOX–O®v'LĶķ³7S£ˆ&ĢgT?šķŲ“OaX¹%ŪenéֆK÷x‡&«šĘ2³¦ĮĮÜwņ2æüvÅŖļĮćūŠ"O’żšżR¶Ž·“Ü[B’/6­ŗžwŁē2Tę‚•żŒŸ‘~6üw²ߒLīÕ4UŽénHUšaÓĶt”õ źŌ}0·“|ŹzweŸĄˆO3rĘW8śKY]ōɬ—f¾›](K±kǾ4vķwųł˜«ńGŒ?ĒøžaīŖ9Ēļ|ęZŁSÄ®TjåõßĶDQ’ÄQ?YØ|ņætOĶGļÄQ:qTN¬Fłāƒ­ŪÖw„‘cyĖ)ōŲęˌņ±£F#u³Ķč½z_[¤k÷šń;›«X‘®Q–+|g•źß¾łĶ«6^ ¾žæhH>ͦ¹4“ęŃ,šĆ2„ų¢m"с’ ąN!5Ƈ÷+š#:jK’PK .3|Qp…HŻĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/he_IL.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦óŲź6;óPK .3|Q­>Ś4° 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/hi.phpUTŲ]Ā_„VQkG~ׯ˜‡‚£žå¶PPÜ“iģBŠJ1Bœīö|GīnÅŻŖŖhI µ”„¾Ōø4SŗrKk„ 4U”$eJgwO··'Ł2ō±nęūf¾™Ż›ŻĶį ŃX_[kĄ<£‚(&€nʀĄBwݬOS4yŻā VĀox7įÓ,rSøOņ~Älöåė')¾Ręx4¹]@?£™  ć<:gŃAČĄM}ˆ#¤9¦Lš%.‹hŚ‚AL\“}‘‘āķÜ»»}o[†RśXč2¹9ųQβØ?dćQÄBō öœ3`"_‰]—Jī! i–wäļwĮķ‡Qā¦ća»ż¾¶|NóöhF‚ā} īå.V«(aĆ,…żąÓ7kĀG·”)ų‚ƒą ~!&Ļ’ūŪŽG‡)³lĶVAŌ¬•1ł^š§sZBSÖN’GL ž»˜š–¹ä›“čƒ„! g&ųJÆ“ėž’’Ⱦ;®Õz&ų[h؅”d˜t—A톆øKj9~B·ą§(Åpē6ӘŠdŗ!‰RÜ”‹k§4ńSk […j­Ū»ŗœx4õē9Å䉱/@Æ3(ƒŚbüןZL„GŹ’„ŒS]ŊĶ= šŲaQB@®2¦ęÆ*] 2šōR:²qS­,Ć ÉlJ?Ä?ējǗ}‚óƒ,E.¦ö£ 0©†į,£• ųą/-ļ˜äØŖ‚Ąā_Õų Ķ2“  ŠsN÷UĻeŽy Įw ģ$‰.š„Ń\`öŖ Nž_‚ÓØ­­õŻŻõ/ń±œs/ģā‹īE ®TUR||Zpb·h†ēĘ$õ‹IZéFī&dkŽą}½]ĄUņ¦äkVÅČ&/Ć|Q2­ĻFÄn¾2ŠÄ˜(ūjKįW÷BļŖ.,‹++ŲŽóbKīŌźNHłŃC9¦ž<ųąĘ;r(Ż„oŹ0QPa>Ø:äSHMybȏ7o•žGKCl“/1S3ā\į•a>¼<Ģ™šCś›»Xé½+½VEM­E˜]ū£źqY|dM¹õäŒŌgėćfKņžü_Ŷ¬ślŌ'šĻŚōl~F”õH}ČšH’ĀmżTDÅ˹-d”£’¢Ś+9mš©żĆÕø{®š~Qbõh>UAC«ÆĆõĮ6³]«½Æ<ĢźƒcÕļ\Ænē:U;¦`Ē*ŌYRc s¬jœ²yĮ1k–QÆÖ[õ’›² 3µå¦5ėTH'j1,ǹū[Ķz¢¬Ŗ*ĖńZ9Ž‹NŌ}REO]y­ż…~Kv]­%²®m‰$KÉ¢€ł B„7‰MV“Ļ$3iŠ_eÜoÜE<ōą?ķ?bd(A”嬇¹{4蕗ȶ¹ŲI»IÆ|+ļŅõ¤ø¾ģ·[ŠĘąŻ[’PK .3|Q?ēŠĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/hi_IN.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦óŌź6;óPK .3|QŪ@¬ņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/hif.phpUTŲ]Ā_-ÉNĆ0†ļyй*”< ŗHEØ–sä8“xT×6ć1QߞIŹÉšńæ|öę9¹TUĶz]Į¾eČ#č™ ÄÄ!l w1čŹžĶˆµjgł½‡W&ą„¹#ŲtóųtŒRŪxyś—"/ACńlLW¦Ń ˜Šƒ'‹!ke"_ŒP <ŻżN‹ļżøŻŸ>÷sŌĀ'ĪL&COY˜ŗ"ŲĆDāōFŁs,lQ‹ś¶™_8{æĆ9Ä)@ƒ)^€q\źJĘqV*ŸœéPČﯷF)ŌšSˆŚvwühŪzÕ8ŚĆ[­ßøz¬žPK .3|Q{9ätrš6 briannesbitt-Carbon-d046377/src/Carbon/Lang/hif_FJ.phpUTŲ]Ā_­TMoŪ0 ½ēWšę¶Čœ{×uM“vkŃtC³Ė0-3‘[ņō‘ ’~’„$ó¶0_Dń=>>Ź²ÆŽ·¼ Fø€/\XˆšĄÆ-j j–LP—Jś[į’rĻ ō3v·Z „g2„°®Ź°½‘~«lĪTsØ÷JwB WץT»ÕbÉ- ¬ Œ¤ń-åBé­PrmMčskA›®īéar÷<æ R?ĖŃĀ TĀX-Jg©‚°Ü#Ž»QN3ņŖĪģ(LjĒĪr„ĶeˆßĄćäījbV+)˜‰Ź‡šd«üƒ+ī›žÆnL䆙:AMÖi Ø5n MmŒüʜ6bMgš¾;” ŠbśšRy6"™ū£Ī†šm¤³8¬ÉąŻuJué§.‘Užéf³|õO6ģ(ÆqÉ%-OµŁ#J‡z넳{*õ.ž”f<ćV‹:f:ąŃIŠkŻķĒnéŒ ŃœZKMI:l>1«Rų¬Öūō”XŒū^ ćÖ%7ÉH²Ń7‘<$ ©Ꜻ¦†ū^¢U…ŪŻä/øėØ>WMŠf(—X§Ķ­«x ?8ķvdīV÷”ŹÆMz#…V©Ļ”É®ĆNž ½ž]µņi6¤E%ØIzŸ^#g?öŸ/"—Č‘ĶżGo×%SNZšND8éŃü-7 ©X֔蒥ÅāļÅcŖ°Ļ7fOąQ‹c…?]Ę) °°Ś|“ŁcHb( l½¾põ~ū³‹‡FLNAhŚźR¤KĢTn¶Ų“²Aē®·!Mā³į'±tݱłčŗjW[O]ÓVłwÅPK .3|QŽibµKE6 briannesbitt-Carbon-d046377/src/Carbon/Lang/hne_IN.phpUTŲ]Ā_½ROkŌ@æļ§x·“ĖžĮ«ÖZm+j‘ź„H “d²š‰3“.{³…²ńX©x™U©EK”°^ģW™āĢd7ŁlA<¹‡MŽoŽūży“•GY’5Żf³Mx•1I1˜g†øƒL0¬#0j šõpĒōŚö„pžp‚(ģ`)a%°å5%“õW§­OwDqž¦²lČI/‘€h) 1F’ĘŒ÷‘$Œ¶ K12Ų!Į7·½µ¾¹órÓR92AH@D„ä$Č%Ž`@dbNŒwĮrb#9³]›ŠĪ>ĪeĀøøoßŪ°kfž!Ł‚9Å`~AŽk÷R„ķ”…(Åb­Góć=ĒĮ±Ģ9Ä9śg) ±y†9ä/qü&'ƒļolķś~ĒėbŚ1ŪõZšŗaٽ"Ÿšąįźrš¶¼īóīŽž×rūÅĆė3*“é„§Õ¹Vß“ŗŃźJßb}·Eś”ÕoWæ×źchuį ‘V×e×ińv®Ēdžø,ŽL£8-‡?h5q|Ŗ€&Zݚ±\ā²ńL«ĻŽ®B ǵĘ/n|R”õ¼¾0·$k©«°ĶųŃŖ\µ8‹)*’5Ū„ŪĘV÷3r;¹)¼ĶØĒjźc·Õė…ƒKēńėŌ _9£s—`{ĻfĄ¼¦5}[”‹†<š§“nk&kĘj~j6jŅwū„ž=£å³Ų Ņ·ā¶bĝų½Łg†9‰ī—Ž _īæXŻO·ŗ£ygŸόčžņƒĘPK .3|Q^ōįßø2 briannesbitt-Carbon-d046377/src/Carbon/Lang/hr.phpUTŲ]Ā_ĶWĶn7¾ū)x( Łqh÷÷ ¤q“8AS8)P- I5F»\-„]rArå8Ł« KÉ%79FP»–µJJ[±Gö mīĆŚäR鑵ļ’¤ĪɹT,sžSāļ?$ę?r/yIžr;Oē€6¬ęØ:ēĒ_»Ńs¦rœ‡\„ļ’žł”<Ӏ³„od‰uW`nYųæ+un¬żÄČOĢ,å 2\©ććżv~3µd¼Gš\1Pņķ2%²†ĢeŹEŻō=y08ō©›y“¹Ę„&²ŹÓ,i"b—wŁ™“Łių%cĖ(§'Ńō<Mė^ķr#‘6;ĶO!ž‹^ĖŚ·»”8”cķ[›ćąL³6”gw“•jB‰]7,žb;Ō-ˆ<č%ofŅę;ä`k„ˆ§A³e-Ņ®¢sYģv‚į¢Ļ ŲR|)źvz³Q0D)yŽŁŽļ­ņ,Åē\žś·K `"õ›}ļõ4”ģ4Ģßø]¤ž|ė^1Į^™5؝µŻ _¦›Õ"±ē;NÜĀ’{&°ą‰żY †ķ“7}4ģIN†mšīlģ™åÜÄŁ'±×†ćŃÖø}ü!7£Ź±`é‚ k:Ń÷vs}y .mæÉōFŖonCUćĶécL)Ė .ĢĶTvģ¦yŪyo{*@÷Śé>˜ķ~ZŌ’”Ÿ·źM„ä‡ß‹ĪEĒuSs -b’ŗEސz£ģĒł¤ŠžT8Ūų¤„²×±Ā¢.gLÅw-æ™ 4.Ś÷ļšF88$ƒ~ €-·¶üšW½X¶ĆųMÆW¶ŹA¦'=Æē kw¶¢¹Qϛ ›»_*Ÿ[r“&~SEk;Å [”ÆČ€"R»„°,Tм§9]ćįĻJB’Loæ'IsŠŁæhOąmיڹ>^ĀSd0[a±R ˆJŪÖͱņ–ŚČ‘^a0Æ/čkņm¾D \ÅfŖčyŌļ‘8Å:I!ęŽU…ī”k£Ķ’1m¬ńy7·ć‰^_L;xŻĢĢ7›Ųžł]­Ö!ķIՂpµžKXč²KR­makū+ÄT­Œ·„j}s¾ŹŠŲek4Y§MŖŽHėŁÅ;i,Ń$zD‹"@ŚKciyŅĶó·­ ~ōž'ʬŽįgOģ"i¾€ š}W ?”¼dH…ōŻcČD77“Ķ&Ž*ēzŶ4aĆn÷jGÅŁ ~šzSļ§öĄŒ×ž gžĻ? žPK .3|QB½6«Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/hr_HR.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦óÜź6;óPK .3|QīB` ńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/hsb.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ [‘&”ų8Wnź6Ö²$8ÕŽž“棳ü’Żs“±Ŗšķ¶‚-|YN0²#(gDQ#Ø%Ų£ōĮ—•9ćDuŃ.ņ;sÆĀčįD©gUŲõĖųāĖ“6įņō/} ²Ł90!^…'«€~dž|*•~ rAåą :²ūešWßūqߞ>Ū%jåS‹ 3&8©pŸ•˜Ym¹)ģ)d1TІ¶Y^øxæżŁ‡ŁĆ@#f§ 4­u9Ń %*-ö¤lйė-@H³ųbųÉ,]w8~t]½ilź»C[—oÜS5^’$!z$>ž4z‹ęŁ|įšæl¾hSÕlØ$Ė–ee„%£Į͋٠²©9Eó‚+ø'˜čÕ NcVS‰šĶ*8¶¾]Ž’Q™õœYóØÓµž'|kXė–{#s§'Įżl¼ˆÉ.Gė/į‘cēÜé)s •ļ¹+ĀcϽÓ'HĢh?Ÿ²y,éA~¼`–yIZkŹYyKŁŚsĮ½_‹•˧’pß½l6āŪē(jˆĄĆ@zćĶCaźJrøķp•wiÜ?éÕĀFwŻOJ$CˆH7ŃśI/ˆeąļÅOžv+į ׳{å1S€‘Ń€R•&ó4`5`:Ńtä>)ƧWĀ)¼O¶ĢŹ”±Ā…WéiČ{„ŪHŁĶ¹žFtŁP²d’0ÅīŹĆö`Z @U”˜=LA­\WgŸŽŌ’čż2Œkb1¢ĮFT±„e1 nébšQĀ”¶•1‰hiŒmÄ@{@V#äˆ:¦)+p‡>ö%u]Ķ;kÜaZCk¢ŗŠ”D¼ƍ<Īk”ĘĶCÅó"Ö~g¬wĶWš»aa‡ø^Ōā“4_ „©$)#¢C²„l혲•³'$6ć›^~·z0ŁeŚC—^Ų&ךīĀ6±vP„6©ŠåŚ\B›GhsŻüJ§ °v‡Ęz·¶usŽnŪ¼žĶėŲsōV 3µslMࢷamĢa¼¶™h:–Ō‹¢C‹»qčUAÉF;“VõŻs”§iר”LȞG2׏•øē¹'BŖ½±^I~“gī-ēmčŒ`ś|[mŅęĖk’|Z–µöćTˆžĻx~‡+¼ŗ ĻĻƞ×w£+øŠ60F AćÜ1Jąņév×c\šŲvŻ[¢Ą%9owm^āty=?ÖīƟŽ’?eG™½ŪM~l»ō“¦±:=”ƒ?ĢyĶ~¼©ņĆyčY‚%9D5œ¬śg™Cō—‹Ŗ.{ņęAŲē:ĘÉŌž×TŁoąńźr{į¢üķ„Y`į-ČØe|AŠü¤q‰ž“e©j^Āž0_ni $i WŠ—ĢüČ\#€'$캜ĆzWÜ~ą-å “ś%õ'ŹbGvßóĄ¤½ęī;ŒĄĻ5IbČĄ¦Ģ7øKƒ:ō• w}"ĪŌæųūO یś{(œčlö:ŪmsĀ“żŸ£žžIJčüJ“/E°\ŪĪ#ąž3Ōz¬”œf'Gč‹n“3#$ÄDrÖ%Žr‘Ņ‹OˉRż}Ģ„Ę')TŅbóö³„žųqÓ÷%WO¤†˜@­Vcg§ń ^˜¢°ƒ¢Ó†N)ēŌa>ŒkįU‡/īčH±¦į‘Ą’ŻKQ>i„ElēµīÖA —\įÉR–±žg]E¤mį-ś(æ–ó[<#TĖĒXĘŹ‹<dz×ųłG¾)А¹å…ņXnŠC™å†ƒv?0Åė–ī}æKXīōs©UƒW™Ć_;¦ƒœyH\¦xįahU›%öA©õy©}Š .łę’)6Ņ\accVaŖwńK5®BWX˜ÕŚšęĆ"¶Ń÷ų×ē›ćÕaŚķPµåæX1ѓÕZø¶4Ā:Ü/I†ŖFļ1׫ųÉć±Ŗcż¬Ž[č(é3·Ų™§ßęźĮ"WxøäIœsT)r3ęD¶ą5½Vāu.»Œhv“Łģč·éø€±~ 4QŸŚDCÄõTŽG׉Īscį ļSÆEĖyn™½Ć:Ošn&¬Œ|–z<‰ud»Qϼ}k,Z?ÄźuvGSærœś ¤“óeP‹ —@/@Q~Qü¼ōrįå²ĖD—KžŒ#'ϵ¢N©qšjӕIU—™‚q¶:WT¤Ł_˽ŸE2KĢDę&l…|Ł'/{Iū[Yjµi«³¹“Ūn’ŗŪŽķt–w;ĆŻ°öx‘l·_Ż«ß?zńŸŚŠ:Sāū6;Ź8aöņŒā)DT>™OūŻś72Ėģb£R݊^‘-ēQu^Ķt¦Łé•æHŸ4»t5{›ä­D½ß«‘d”“²é¬÷?ū÷šæéAütõ2ÜvYČÅD½Gķ|v_­W:k•’PK .3|Qa®zƒ]ų5 briannesbitt-Carbon-d046377/src/Carbon/Lang/hy_AM.phpUTŲ]Ā_5Q=OĆ0Żó+nK[•T¬„ś)”“B‘“\źS;œFłAˆ66ų ż?8išr~ļŽŻ»³'w…,Ģ™„‚-šˆ¬…IŌĄ{å ¶A¬ói']kn„e–A¬‹šé -•@F1*ć,UŖ9–“B‘”p܉°jė7‹Õv·jZµóY),TĀ@BĘ2E„Å*²ŅeÜģF—£3JŚaG͆Mķ¬“R³7÷+xŠFĀN3¦¼f”~޵«Ÿ_ˆ=å°&#/h‡,Ż®³BŌÉļ§źz,ac„{Óś0Ś’fQ‡ŒE&bt1.ŁŠ {ŒÆ%1B.7Oaų#Yīü!<{ąŽŸ²ĪC„+n§ą-åēóŪłūüå; ±±aātVˆĒV|Że;ž"j² ŖQšæź„ćżPK .3|Q śj 4 briannesbitt-Carbon-d046377/src/Carbon/Lang/i18n.phpUTŲ]Ā_µPMO1½ļƘ[…šķwD4‚&$ĄA½Cš²;Ė6,ķ:ķJų÷v‡õ@W\CĮkśo™2 0Ā[¦2)(“X²ˆėč;‹]x£8p:ćĘĄqęŗ źJs°ĶėH}'•*l]ĆB¶kÅĖŹ9Ō|B“„(¤j˜įRģC[#£ŲWŽ+ŸwuńöüśęÜIłśLÅ ¬˜†œk£xf ę°ā¦"„j×ŅŖ’Qī‹=t#t¹§ÖTRé#×~—RWp#”ŸŪ?ƒ Ķh¬:ōÆYĮQĆ%<„>±ucEn5\RÅš·ā …ĮNˆ>“»Q’¦ciÕĖŁĖŠg/V¼żĶ—¤ŠX%ąvōL×ČŌž| Ó£…“Ā€a•Óż€²ū’>{ŌčŃ’īfū¢øŻ–±NÅLÕĒ)L52ŹlĶ£„ą<¼į4JiRµ¬īć+ÄåČØį¢,ķą4¼Q€7œĘ9«TÆ)Ė.ž³Ńp”bŠ>=źm¶a’ŅóTØR]ø¢5²x`Ķą0 Ž‚° ‡„=šü‡~¹ %<ž.Ü$ļ%a„łrųęt„9”1š/Ń#RŒF 9¾ÜR¹e˜”b- “ ÓQŖNUó”žRFĄšaĶD 5«ū7[(ŁÜ ¹JI9½ŠødŠŲ½PaP„,ś°f•X³Ž’!m$8ędXŪ&įä¼(æMŁ/œ÷éé±{…%~kŹĪÉї/śW.ųīIl·viėŻ“Qņ5”_bC¹b;eäń!0’GŚČF*Õ +C-—[ń‘ģGŪ.väšNĆFåĆWŸć ß4ŻĀŽĄM‚h=tvv8ŸžKĻģP˜ÓOį§8Üśjļąi==§g~–t‡»`5Ņ.®6Ē«YƒgŻūŗuƚN+Q‰f#ńųĶ \?·Ļ’é·@Wh_ۘX3(ĘE°]ÓQ75Żg¶ķ†u^ėų©\mLFƒŠēĆö^X±p'3ģüā6»]ųŽĖš"įf³qO<å¦-+łōU=nO’ż¹tĶŻēłÓü?žĶw;Bš>Łd4¬¦M:PÓĆ2®žé%Öļ0}‡™źŚsF ®qŚ*^ūząŅŠų_ū’ÓŅjcµkŽ`k°”-Õu>.ŒĶkłµŸ”ķ»Q1÷š.0f()–+‰uŒ«ˆE„LōĪŃ5ö^īh¦Ż§ś<žĀ.Sp“֘k}b™‡>°†ėąE{†ē°ĢŲ'š£Ģ;µN4*FĮ(ŞJuG •žd‚J AbP(øŅĘŻ īe1\DfĆ}ĀÅÉ”®×ߥ:VMWĻčNāō£‹YܽšüPK .3|Q­‘™Ź 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/id_ID.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅÄŻXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų Ta¦ˆ ³XČ3H@8XžrRŹ}Ł öŖ]å7īž™l‚3։D`?­š))ĢŅ»|}ų—¾fތę#ø\~™.AĄ&‘¦Ŗ‘iĪ|µB9ŻA‰h•ū!\¶»·Óįxž8®V[? V`±Ī•›ŗµ, ŽCµ·'ķ8Evžæd÷m¬Ŗf»­` _–ŒģŹQĀj ö(}šeeN8Q]“‹üĘܳ0zh)õ¬ »~Ÿ|ƒÖ&œž„ÆAÖ 1;&ċšdŠąŲO„ŅAĪØüDGXvæLóź{?īķēa‰ZłŌ¢ĀŒ N*Üg„fV[n { Y •¢a…m–.Žoņaö0ЈŁ)Mk]NtÅcI…ŹE‹=)tīr Ņ,¾~2 A×½?ŗ®Ž4W£mµd 5,øĘ¦‚ Éf­6bŽ{æµB#ć|rž™óQ2F9¢-&ģė€Ń/ s˜„½?Ž!¾ōd2_]oo“Ż“ŌJŚ2Ö$(WĖ_čÕņ;ń&g˜ź­Ą@VFŚh¬|љ‹¶•ĮVSVĖ÷«åOśėĪ7ŲX¬SˆŲĢŖą_«ł:<Ę»Ūśø”żŁG•Q\”Õlk‰RžČˆ 6ĶcēŲuÓ±Cœå°XļÄP„Ģ=kżčŚö!8ŹčY7fp ķ6| —k&ßeÓ#vˆüņHYŸÖBžŗBhc9rUpĒķ9ßF4ĘC’CŻi ×Y!mI Pģ0S­“ńę%‹>xOŁ“«Š?æe;Õu?¼æöq‡ķNu×ļ)Ū¬*`ō„RZø9;ł«Ą_į i%}zāꞍ_öĄ{ŹāF…¤\€Évwćń¾żžByH1˜)7`pę_׋yž2ÅŻž»Į_PK .3|Q’›W”hr2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ii.phpUTŲ]Ā_­TĮNŪ@½ē+ęf@!¹SJ«•‡Ā„Bhµ±'x…½›ī®‰rk›4! 4 ˆCæAŪcæÉ_эc;ŕ+u/ž™÷fŽģģz7_µŻv„R_[«Ą¹LA‹yęŪ¦Rƒhv¶©l nBö=ŚįĪé+ö*¼‘Œr8@ÕdZĆfsī¾ęĘŗf kA}+dTØxآݕģŌÕ@¹³‘+#É[BśT3Į«ŠöšŲ9ĆN”·æ·½{pø;/õ§]Ŗ”C8LiɚF:L»1½+H5[ÆHԁä@„¤]"±ķQĶפbēø"ńCĄ$!;{ļ©Yuä53« Ē0ĖņQ2‡”oĮĖ-8¶ĀÆæĀžĢĄVųéG8¹¶NŖ1ƃxꊮJx³Ēp0 gWÕXćĻį$ėäĖ›Œ3¼Ķ8£‡ŒÓ»ūCŽ(WHMR¹T+JUR‰ēźūŒ’’ź¾ąŚGÅĶÅČEó;š\…ƒūØĀģÉŗ¼I¬įmb«w—XÓŽ:H¬‹'ŽųgĘßgœŁdī$½Ę—sq®Q( ļEĖŻš} V5‹¦Š†RKhŒ½7k½ŃXwœ˜A”ŃhĄN]‚ Ļč?Ē«‚cVžmvo±‹Tʶø†šzd†Qƃ‡¦‰£MäŅLJŹΜž>?”XPR”—Žä<8ķ¶Ü)ͤ¤lį˜o~¦%ņ·ĀŚNi&%%ėĘt×<yv’{x1JF鞣¤8yqBŒ›×8ĻųŲĒ…Ż'oKI:%’$')“_čšK”†*ͤ¤|é“Õ•ßPK .3|Q7ș¶ńN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ik.phpUTŲ]Ā_-Én„0 †ļ<…oÓ¢  £nt*T͔˙`ˆE&”ŽS4oߥōŁł—/Ł?Īv.Šŗ, (įĖr„A>g…0€Z‚„ >ÆĢ„#UY»ŹoĢ-¼£‡ŎUaß­ć“ĻcŠŹ„óĆæō-Č4$ēĄ„ł"؃ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ik_CA.phpUTŲ]Ā_„TMnŚ@ŽsŠŁ9‰(V·iš&MR )DMaUŃča†ų {ʞŪ܄#°j÷ƒō&&VC$«É~?ßĻ{šńŁ—"-:ųä¤CNČ(EE¦˜1bŸHMĔ蔑+cĮm*™ĮėŁ^×~”“Ɓ“;¦ĘØ59»š‚ŪPč^"ņóŠśMHO45YFQ,%>„šŸ ʕ•äS!sŠ(x—››#[xÜm’źęnx㨼?‚& Pd‚JKĶ&d:µė] #f…&Žlģ&tŲK£S!Õ©{’`Ēgā"·&$ĪĮŁõ½’i#9)aI%+2H˜}&F*œ³#ÉJƒ’JÆū?(ķE1ć=»ÅØK~vˆżEÕ*"ŸĻCʧo}"ŗ¾Žƒųį!źśŅcõˆrĮu0ŃKܬ7k¤„å~•Sҵ¤Z£—K3ü•ĆPčq*Ŗc}'¤%ŹĘP*ź[I‹R#Ģ3ÄhJø‚<²Āš ~€jF0ŲV”ÜŲyēgoŽ~ø|kج>]bn°BUZŅe£I†nØ.ĮŚ•hdJ PfÅNL†fī«F—BŖ©é¢WŖtwóo ˜ųŚ.°LśD$82ŃŚ”¢e €‚p Œ:ēo§čLa(ņŌ<“M9ķ¢¤D1˜1ü:ó½3”w/ž»ń)^ŃĢ”\Q‰‹’¢Qf-‡ikŁsĄODt Å$ źLŁŽžMWŻHŽf;ZrK°LŠ/Ē(™¦¢į¦ģ\Üw}š8 ^tІo…Ż>Ь\—²"ŠÜwż^ŲānĆUb»!äsTDkZaŽļŅ č&5?bĘĶ0Āøõd8.OA…ģ dG½ÄŅž2‹9Øh%ģų#dP/d/ÓŲšėd3*^¶2ԟr8gń"SŠlGżeķM0ėś0Œ†Ä”¤Š¤‚gƒŠ“ø†½Čż)˜„ §-fĖ5¤wŹ£$ō콜‚-*ƀĮÖāq³«HŒ‚ŖTŠŖ‚½Ēl‘ŖƒUõøŁ_’d™aĖ[ļ÷=n¹Ղ wpņ†§ę¢G£]ŪCYižźՒ ų¤å(™ü9{vųb>~ŗ;IŸr‚-q‚¦(½³7~āOŽ,ÕC«'×Döe¢­¦%ÉĶ®ļyk Ē<:šēArRK^aVŠ"āEA×} Ȅ|©;Ččdz}­žbĘČŽI„æ% ä>J$Żģ8϶S‹JHŁf‘ øĘ†" ā<µøķ¬®tCĮģN›–­)·ė°¦„±ž¦‰lA9€W˜9˜(ąōNƒ-†* ŸXøFŪk&Ć Mķ0ĘžõPC{yø== [19ærš÷ļ§U屎qŁóL•Šœ¾‚§“‹‹ÉŠ"gėEŠŠŗ{ŻÖĆX mĆĪ}v)f¾’°÷ŅSø"§ķŅĶĢĪDf„ēņīEćä‹ī`nclž>¤VŚlŽaÕ#4»w#ŗīĘøvQ’sf¶EŽį±·k““˜¦ąM˜–pĶēį1lŌ¹įāLKĶ‹óŁtĶnšæ•’ƒ×A OH`ˆe}°#Ś ĄUD8M±cā$ūöØCŸĄ’¬AVmE8܃®ÆšC †a¢¤ ˜ÓK č=ƧōlėTķsÉ9GćX‰ćp!§R™ūņv!ņīÕūS÷x5v2^3 ’üģQšHiÓrųC™ó£’PK .3|Qƒ4Ÿ†5 briannesbitt-Carbon-d046377/src/Carbon/Lang/it_CH.phpUTŲ]Ā_-PMoĀ0 ½÷WųV@]¹oŒ}“MŪ.hB•›ŗ4ZI2Ēńļ—fųāųłłł9³'×¹,›N&Lą«ÓZŻÄģl Ņ,kk"¤~šHeäō‘Ć+k4°#_k˜ÕCłlbi„Tö4æQß,'”6ō=(뮬šz­ČųøŅ“–O(ښ\O±³¦KšŪ¬«ŻējJž¤C zh“Öujࢄ‹čŻŪĄŠā¢&™³/A:Ėž~xßĮ;[‡G4Q}¢1I`Ȍ׊ÉõØ(fŲė3˜~ƒf‚ŖZ®?ŖŖĢ§ZŹųyßÄČ’Oš9<ĪoP‚7 ȗĖr»-÷1ņ"5Ev?dPK .3|QHā§ÓķD5 briannesbitt-Carbon-d046377/src/Carbon/Lang/it_IT.phpUTŲ]Ā_-PMOĆ0 ½÷Wų6Øh{‡ 6ʐ&” īU’ŗ‰E–Ē”āߓVųāÆ÷ģgoŸ&7UUW×Ōšé(ĮH”ųI±@AĀA±Ž””Ģ—²Ųģæ1·šĢ¤œ1i­^Ņ](i”ÖÄėć?ō5ņ:hĢŽƒ‰Ó/“u* ąÉ`Hee#_•P w0yT„öC8Ƽ·Óįxž8.£V}ā”Ą¬ ”„IgĮfW:E{Š™ –EĆ*¶[.\øū,.rŗ_ā.ūw(¦³m¬'mņ˜v6ä6²]™Œ’9ćw&Fčū—Ó„ļŪMGŅ–ßmŖ?PK .3|Q† "zĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/it_SM.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦#iõ›łPK .3|Q† "zĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/it_VA.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦#iõ›łPK .3|Qś'JńN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/iu.phpUTŲ]Ā_-InĆ0 E÷>wiƒĀ>@ƒNn (²č°6h™¶ˆ(’JQ5rūŹNW©?ų²2'œØ.ŚE~cnįE=)õ¬ »~Ÿ|ƒÖ&œž„oAÖ 1;&ċšdŠąŲO„ŅAĪØüDGXvæLóź{?“ūćē~‰ZłŌ¢ĀŒ N*Üg„fV[n { Y •¢a…m–.Žoņaö0ЈŁ)Mk]NtÅcI…ŹE‹=)tīr Ņ,¾~2 A×½>ŗ®Ž4œ»ö¹.æø¹ÆžPK .3|Q,Å Hę¦5 briannesbitt-Carbon-d046377/src/Carbon/Lang/iu_CA.phpUTŲ]Ā_„TKOQŽ÷WÜŻ©mÜ"" ˜1ź†29Ž27WļÜ”v+6MČ“Ó)bāĀ ÄĒ^Ėż'ž;OF„a‚ }šI›ł‚³V h›ō™0±‚Ś}7ąÅAķDlSmØzĀt¹æØ¾ļ'в\ņ 8ˆ—°øĘ+6Šāl”ü¤—Sp‡ē0Š9õ,0(¾FĄ}¶Oē8ķŒS¢ėkOu½”5©Ó@Wµ:yQ#ų§„{ł¹æœ„’ōf’ж¶škkĶ­ž”vÓG³]G˜Y&'_dōZ†oe#Æ&ćXĘĒāń©œ etžၠČč8ƄÉ×äTFƊÆyIĘļņÖč\ŽŽd|’WFŸå(ĢcT ę¦ĀTqU³ī£Ē¢¢¼Ō\Ŗ-„ĪÖYŠ,–ņJa„ŖBOŸŅn…‹Ńa²Š‘œŽääLĘ”Ņ4N§Foäų“‡rņSÕĀįæ³høœåč,Ÿ~“ÓHFß³ŹCPV‹%Ć0žZĄ‚[ĖųPFhN™óķā9šfĀž\¤jmt˜iLŸ8ӓĪĘe“SŁĢł/"$ŃŻŽŽaÜŗbUрOXļÖk)¬Čh‹†8‚$ž$VŖ3ЕЯ"ŗš¬Ąz6žūåDö¬"č³śK+<Ą³åčŽC9älżėĮ@æeįz‰÷ŌķåLķĖK _֙ÖM¼˜•2몃Wō›³Š ĻhĻlgŽč D0Įz=¼¾( i6‰E}Ÿpj1¼Ä“h¼Eč·˜öśŌpŖ•6p+č^:Ķæ ō ŲæWū PK .3|Q„ÕĆģ2 briannesbitt-Carbon-d046377/src/Carbon/Lang/iw.phpUTŲ]Ā_•U]OŪ0}ļÆš[Uå½cl0 ‰ņ0x™²ÜÄ%Ż9U’EKAP©ŪJµ±vÆŁńߣmā|˜ŅH‹ŌĘ÷žsĻ=¹vڽw=æW«ķīģŌŠ:÷Yˆ:¬KÜ{D*$:HłŁRī5¹¢ ą®č[ī6ś į蔆m¦ŚkÆĀ÷B”®ö õ£‰P'źv‘+zÉ®|…÷P—¹”‡Š’w„ ˆb‚×QÆK änķ'u'ĒG§gG+©ÄŸņ‰B}"…J²v¤Ø‡śLł€€÷PDŅ„ŠČKĢīÖ$U‘äˆHIXŅ^—øīn$CvC·$ż1IĘ‡ĒŸ1n8»”7`2N]Ō\N øņC½ŻGŽžč™¾×C½‚£ź‘^”āļżJVCĄĄžšüPO’ÕŲ³ŅzjÖCXßĀēI?&ńŌ?BŻČ(ƚߐ¹Ļ3³d]0ĘśŁD—õ²sśB*Ū\ræź<ž/ßqÉs\ņ—œĘ%—qī±OéµG„łŽėo õ–?ņ†\Z’Ų€o+¹€^=·“Št¹|-5ŅÖ̽aBš'2įČoķpl‡wv˜mȆīćYļ¬iÖķ6kzĻ„ ÅbŌ•Ģc4Č“¦°]3Øų«ŸĶ–=˜(«H_K³7I*IŸœ'ēS3œz9VĶ0“°9l“_ą²  ƒ!¶Z-“ŽŪ„”Öŗē<®:ŚČ†§Ko@‰L+š®ˆøJOŲ”9ƒ ŒąĶÅ„—Ļ&<Ą¶Œõ2Ó*Q‚+Š#ņŅÄ8óL„_‰\%rąŚ„äĢf ^FšĘŚ”ąĆoõĖęóbĘ~Fšęb3]ĘįÆĮfŒį')—ČŽŖ×Q‚«RNH]Į½õC0)dĀJ”ąj Ćŗ)Į¼±ŌT, ™HGŠsavvo¾:$9ērūMķPK .3|QĪ‘” 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ja.phpUTŲ]Ā_ÕV]kÜF}ß_1Ć:Į޳ż®»M²qēŁ“øĘŒ„‘%¼Ņ,£Q·njp*\{KRh«¶ ¶éSˆA%i!/ķ?qģŃŃĢ鏎„PJ”z™¹÷ܹwĪ™/æėw‰Ó§ä4¹ī1ń‚#ŖķR! ÷ˆō¹DÅ2”ĖY„+쌊-ĀGSä¢hD®±x9’œ_.Ģ"eryĘįį4„^ęB'ņ’N‡8¼»&‚_¹¤8,ŠUÉČć"¤2ąŃévU¾ĻÖÓć®Ī^š¹6?S¤Ņó“>•¤Gcā±Įr"™Kzō¢ęóD8Lrõd' †ÅŲ ‰ō¹ˆ'‹ž8¹NW“5JęiŗŌø.Č8‰ż@A]ßeA£?p•ö¢q|Hc%ĘGT~1~Qš^d¼óLųJŠ ]ŗęžłœ'ģ `X›ĢĘTI[ņ5RSÉUI㣒®+jBzւÉDDd”AŌ×\cT4ÉŌ4iN:<‰äį³'Ķ1€†ųCIcéÆG»Ū%<ź1¶ŠŃW_żōC‰‡\Z›ĢŃĻ÷KdˆßW‹Uƒī}…ņłĆ”0ˆŌŗ×ØoĄ!HĢÕ&óņĮ÷¤K¾ŁZ?śń‘‚æ\lĶFŽĀ‰ųxXžˆ BvŲæcOšp)ā=Œ>æ]ó$ƒ”e¦ĪœŌ <ÆJśā÷oj€äå¢(ÆH®±XÕ,#Žīī<äBŲģGwæEęĢĢ>Õī«×Mš•+“a±Ģ#d2Žk >QßÄÜÜD»]Ŗ¶ųœŚ¬ķj"28†œœĘŠPW}µųE`źŠ‹\8‚ˆjLCÖ¶ź-‰•‹Ų粊1 йaO—DNq’ŃOĶŻ Ķl¤ÖŹ£źnq!X$ĒČŠ®nNqŠÜ,k_ą‘QƒŒO‡œ¼65U&3®ćCŠ®"5ł½ūźĄ/j™sµČõFcŠ “Įėˆx‡Ę5qöˆSÄüÄ9ÜÜž—Å)v×L'†sõŲžäĀ "Ś9¦ŹH”„ĖLŒ‘‘.wń”cõH:¾Š9 ŸS¼ŗź¦žąmö¶ū9˜É™fqPėjøĢ£IGžŻP¤JiÓ ÕōŻ€™l”yxg[_‡D÷Ō„iŅ/ \OĶ–~ąHóuh߀öMh߂ömh߁ö]h߃¶uÖvlʖNY/ŗ« ł—.¶ØŗĖ-c„ūŃĪ®¾&Õͽ»]/oåyō‡ķWĘ«­ļ*ćp÷0Ž—«q­ŹA!(É!-$<™Ź¾Ü’4QGżšćr°q«|X;rÉģ(+ĶĮĘV1ņÅÓ ŻüvŪX}ngĒ83mm>4Xj,=ĻöĢv» $*z&—öõ”5šYŸÉ«ćŅŅ—[Ÿ) ’A Ó«ę[U²Hæ2J·«’€“b$G”Ś·åuĻ–7F)*Æ [Ā2„X1ūØ< 9B@Ž«°īY‘:ŅÆ «6„eĶaLŠ‘!Vü¬?ĆāgXü ‹Ÿań3,~†Åϰų?Cģ7ZöŗgŁŲŅÆ ĖĀ2„{“b$Gˆ]ū“\ūÆ}Š×>ÅkŸāµOńڧxķS¼ö)^ū³ĻKö9fŸcö9fŸcö9fŸcö9fŸcö9b’lϲ×=ĖŽĄ~eXö–!ŲƘ#9BTłÅ“·ÖR~Ą«_ĻÖYõ™ßś§[čo©e݇wŅŗ[{_Ž{^żF,žküPK .3|Q £ōwĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ja_JP.phpUTŲ]Ā_-PĖNÄ0 ¼ē+|Ū„Bķ°Ä>¤•Š€{å¦īʐM‚ćPń÷¤'kĘ晑wOÉ%cŗ¦1ŠĄ‡ć {‚:ŠBœ@Įeˆ”Rö ÆŌVķ"ߌ;xĘŹ«ĀnXąsØ0jkćķń_zвMÅ{°1ż _†<[ ¹F†)Ź •cø‡ä +÷Ć4ÆwÆēżńņ~\¬Ö~źPaĘ #gŠŅ3««›Ś=Ē"–jŠø–ķŒ ō]Xśžp~ėūvÓ}b[?°y0PK .3|QĄ×Yą(3 briannesbitt-Carbon-d046377/src/Carbon/Lang/jgo.phpUTŲ]Ā_-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5źņ™Õ¾Ģ÷ęĮüPK .3|Q„HžĻķB3 briannesbitt-Carbon-d046377/src/Carbon/Lang/jmc.phpUTŲ]Ā_„RĮnŪ0 ½ū+xs vķŗn]Ó¢ź XzŠĀm:ÖbIžD%šß‘å,A°ÓtłŽ3õąŪĻ]Ó%É|2I`ƍtPˁļNXS5ĀF3TnÅg¬=ČÆŹkųj„аBWH"ø-ķĶ­”YiŌ]”>Õ¾m”4]oå¦!ŗ‚V–Ø[źŚX%H=…®EĮŲNā>|÷²|x\­£Ā~Ō‚½pPIGVž°‚½¤†ŽŻoKd£*,;O,’·„µ¢Ļ-v­(‘ļŅ['wxeń·—!ĻĖy>KēØgœL:…·ų¤ ­¬$Ŗ>ŻĮ[źÉo ³é¶—\é^¦ļÓA¹GÜV¢wQłĶ+Ńɖ¬>4$Čū±Ń’ā:Ą÷m#”tAæüńŹøK›Ü5ĘŅhÖ 6DįŅzčtœGP™ĖQJź’¤Œ¦ęųp~°aĢv¬3Q6”øļģK†1=ĘŌöbm¼£P­±#TEćū–ĢP­ĢnčBy¾Ģyk‹‘Sβ^M­iZk¾S†ŠnĘB­-F’‚ū°sEk»FŠ al°A3Dq¹ąõŠńփ[nkµhpq]›hžÆļŗ5ōÄy·(Šń‘Tä°%°ĄoĶvtyžõ«|՚¬ōų2̽ŃÕńåH@Ķ…ˆZkdO¦¦ƒA’ˆüOź±2_bĀ膿$Īo?éāüJwę»/žéƇÓ:®…ąxčyN„8CśłŁbqö·yĪ腅y`ß½ļ‡G§v ū2:xfž)ü_Š2”›’ YvrÆ^IjœĒļ’čū¾sčLKz~S»€ų•^ĘžÕķo+øÓ8VDöHķś·²ÓZō˜¶Ū#‡Cl™×• ūłnԜĶ(ÖĪ›k–ŚcŽ~±ēĘ1|ļhhŒp³YßcŸpl&¦#F{ņŗs>&ųķ%I·äg~‘Ą‚ÉcC„ä¹x‡-‘ܦ‰ É’÷øq¼ †Į®A+gAēø5‹Ęæ+÷¾*“TZŚį6 ėµ=Ą ł“Q< ļyәē(żx9³’ę S;IANPt U^CĢ2‡¬!a—Ė^Bę,‰„/Āuc#2?Øøävō×ĪõkźŲo±Ö-)c”zuPƒįā6pŹ@UļQ™k)äi<‹'ńžbǐS!ÕŹ˜<_u—īlw„Z»YƝu7DUęļGČnČĶĢE6ÅņõäPK .3|Q4čwŲæ×2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ka.phpUTŲ]Ā_ķYŪNG¾ē)FÉŚŌą€¢^MBŅŠ• jUĒģY‰ß¤³³³;‡/„Hi.²BŲ;’’’aæė™łN»32Rc`­`cśŁ$¾ Ā6 Łš=:Ō܂›h‚źĘź„fÜ'z`8 ĮĢF|ūGożp¢é»s\õ‘OŻuŠō;»o¶C½ppyuéŁ>qaˆ}Æ:‚tl£f·“ųąįŹźĆŠÅ¶av`Z8 Žč†ØvpŲ¦{ąwIQG-l5Ī0¶½× Ū> ¦ćļć`Ķ'ŽBągųĢ…­g(}D ÷ļ?>E¹Ÿ ,Į  Į‚ļąLg »ąŚÉŻ `1€“6Į§āźHK?­|æ|o%¹¹·Ņzaüˆ·ąFlJp :¾·éBÆĢ-Š6}æ ’=ź`;”VCÜlūĻ`™ƒ °K zƒŽŃ Y®t©l ē“ū²Ź^}²²čٵk×÷¶ęćpŠ{E3•b1lH,®ó®ī “„AæfŃ w:čõ3½«(Į†€cA(Z¹PŒ-ØWūå ÷^ŠøU,† …ĄÅ9ēšY›öŒ|F£b‡Ņ£Ņ“Q 6 BŃŹ…bÄp±GŪ:O¼w9µKu(9$°”žļ†D“·PÓ÷ō²`æ‘Õ.Հ Šrš*½d]qĢų@oS:ö¦Ļ`ķ®×ŒgQP ±‹Źą9“Ē×(A6‘‹¼0³| HÆjÄ=¬ŒYJ·²ØŁČ óŒū–XźiĖqūƔöūøtsµM8ˆ øzo …ø«‡Dó±¬6Ć|4«5˜’ÕLMe2“CD¾NĀ2Ō×IųK›„Ļ•² Ē m6Ž@ō†>7‰?‘Äūė’Ųõ$6X_—Ħš\ƒÄ˜ėųš‹"q²jÓv Ń·…m;ŪLXLń‚‘LœÆbŠĻIҲ{¦č좀Nē’Ž VÕód£Į¹>!Āė£õ}”Ŗ%/7’‚hki-1yüxŚu„ SĮŖ$™E˜ˆŖĖĖÕßč„S)X¦ȋórwŸ©µčUƔė<½&t×ā/¤ü袅“‚5¹Ōõ XZ«zŅūŗģŪCOCŁF³Ųę×ōč-ę­õäĶ’Xōčó“)½Ąh³KåX ÕšĆ6"ņ”'Ѱ”ŚĻį`•¦».„&óĄ²Ą4 ]ŸkėĄ*Oš’Ź™ˆ¶Ų—’r` BįßšZÄfY-b;¾ķ¦5¬ƒŌ77”ķāgõŠ ų)yI{Ā>ia:śĀąuŻ µNŲΆĮģģ,ø=¤ˆ\GJ}(Äd1Ą5Ī—•a`Ś ˜¢ńģķ ü ū6øuK ݤJnMņĖm!„ų,u"cĖŸ/,öūģ&­pŹ&+¾RfżĮžŸf’‰ß¤źeCōžmŗŲe[H”±…ˆE ńŲ8z¤öC_„£Āį īo6”“C.×8IÅ'Fń1˜M“ĪzmוJ6‚ųõiüŗ5*.j”/jd.j¾¢‘±¢‘±¢Ń°Šž\ZŃØø¢QAE£āŠF¹Š¶}źÅT ؔK)”R„2JA”:(¹+i*I)Yč1“‰žv’)®ZZØł õłŅz­öd½¶^Ə­×÷փņ7ńb7æ·ō|ŖrgĻaåŖüʘī Doj§ĮéS6[÷Y “mčˆģ0kŸ°›‹aā éDmæMŁŁgŽ’ł*ēŒźZ^¦NŃŽTĶ/*Ī/*Ī/*Ī/*Ī/2ęņSxūZ6ęI)Y(1+*ń(ŽóNÓ÷Ō©KįO8ž„įC8Č£+“~RŖ=iÕ'Ęö&Ęā/åьŗ6&A’>ŠšmńSŤųå!O”bi|—ż¬“j98H‹G¢Éo } Z ÜĀČÕ÷ ńA(·SˆĮÜ,ø£/ØB:&s;uÉ}©,fwMiŁĶĮ~[ {Īs_yGqeš©©bš„]ļÓN91Ü€ĢTŠ‹īčįģ?PK .3|QO·`Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ka_GE.phpUTŲ]Ā_-PŃNĆ0 |ĻWųmP”ö˜± iŅ“ą½rSw±–%™ćPń÷¤O֝Ļw'o_“KĘtMc oĒ&öu&…8:‚ŹC„ģ/ŌVķ"°š.ŒĪ”V…ķ°Ą·PaŌÖĘŪĖæō#Źj4ļĮĘō+|q Fšl)ä¦(7TŽį ’'¬ÜÓ¼ŽŽ»Ćłė°X­żŌ”ŒFĪ*<„fVW7µ{ŽE,Õ q-Ū!-@č^Xś~üģūvÓ]±­Ų<›?PK .3|QÄ~õóO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/kab.phpUTŲ]Ā_-ÉNÄ0 †ļ} ß*Ō>#@Ģ"„ęĄrįR¹©ŪXĶ$ÅqØęķI;œ";’ņ%ŪēÉNEQ—e%|ZŽŠ³#Čē„¢zPK°CiƒĻ+3ā@UÖ.ņ;sÆĀčįL±eUŲ¶Ėųāó“2įņō/=Yƒśä˜0]…«€¾dž|Ģ•¾rAåą`r„y÷Ė4ƾ·Óīpž8,Q+ŸZT˜1BĒQ…Ū¤ŌĮĢjóMf!‰”\Ō­°õņĀÅūåGfõ˜œ‚аքH7<–˜©Üd±%eƒĪ]oBšÄgĆOb!hšżé½iŖM=bŪģæ«ü›ĒāPK .3|QpW)Q‚6 briannesbitt-Carbon-d046377/src/Carbon/Lang/kab_DZ.phpUTŲ]Ā_„TĶN1¾ē)|[@4«^ŠD)%M@B©B²fד¬Ė®üC“ĻĀ‘§ąxŒ¾Iż—MيDQ÷2ć™o¾ł<¶÷č뼚łŽŽ€ģ‘›Šk2å5gē  ‘Sb*$cP….TŽĆ ‡ėį;å.ł¦8r…ŗąĘ£Ā/O„[J3,esœ gR¢©­kRŹy«ų¬2#5/Qh×RL„jĄp)öɼFp±GŽ‹Pwq>>½ŗ>õTAŸ©ĄhĀø6ŠÖ # n*—qڵ“ŖD׈±¹ß”ÆYSI„½’XßC‰ĶĮĮɬ^{Į­ŠX%(-U8ÆŹŁŅ*ĶqGįƒå „“óļ”³ÅŠĶ1Ū'?Ä}Y܉Īȗć į‹Č&“üņ2æu_¶’wŃd¦JUŁ- -*ǚŁß/OÜK|}Vؽ{‹nÜ1mkCȊ„SGēõŁ–Ę;cƒMŽĒ/nlēž€Uxb-Ao5QķęfVŹ¢ØNPR“¤$!IĘRDҐŗ§Ī©i×mxĻ ]Ī`TĘżo¢%£ X°Mr®±‰†żCõFŗ#L|‰.±%²MT ’E4åJꨨœRĻŲ>„lŠGĻśU‹īÜ=źćņ@PqĘwrv¦>ń=" «ČKi…!‚“\ćlę^”H7.k7"€n"śė‚ō` Պ«Łŗeu=Llńöę¹[iMÖŠSͶ@·lÓ^_¾Õŗ-²µY kź#¤r’“Āhx}2¼cé°Ÿŗž$īwŚG!{ą+ŖåKxtQÄi,„x;šqfŽ="½čv-īv?žPK .3|QSl—®~¢3 briannesbitt-Carbon-d046377/src/Carbon/Lang/kam.phpUTŲ]Ā_„U_o›0ϧø7Ś(JŽ»®›Övj•¦k¤iŖ*tĄ„X`;3¦ˆ}¢õ{dßk‡ ,­”hŅqæūŻ_Ūpži®G£Łx<‚1,SQĄJä,×h,čŲ”ąM¤Cq†Ļ4enC?‰Oį‹ØąžŠHX ēQ£~V¬j;µ¼h©_µqVežC¬×µĻ©T ä"&UpJµŅF¢ZM`2ö"Ør~w·—×÷×M(WŸMŃB…$¢°FD„„*aS¶pķ….MLœ(qÅĪF†li 1X‡†Ö9ĘÄ2.M!^čÄŠĻR‚0¼ŗż†Ó`FjŹ“ &š8^$#A2€šl~טU˜ÕȧU›W­ƒ§‰§WDY‚uŃŅæ#du)+Ēn” e“yĶł©·±Ś½£Eūg§)ģ”n‚jĮÄó†EŖķ²gµóČ*/r'ŗų™ņj+ŅżXRØ’‹$5ףĶbQ”ą­5ÄNßöævCŲA~}ŠG‡ōfŅCe©ÕƁ§ŖU= F*›×¬”bռɊŽ6‰¦aėƒķXDĪqNnzó¶Ō9*Æ:±L}%Ś5wļ «ÄŸ¶¬l„le¾ĶēļP;k9ųn鐹ęęL²SßšŠ³œÅĄčMWW³Åböƒ×ĄŲYa±XĄ¾µoövŲϾ„%¼&š™»sr6ƒ„ÖP*C¹Ą('Ž}ļ5”ńŃĪb]*ĖG¬lĒ^9 œ‚śp*†‡īķś€ĻG+sńny$Ć#³x7¾Ń—J¼ßwr0ĆćzzŹßē[,Üx;|z Ć#Ā·³Š’ Ē$龉×tt žk=~żPK .3|QĢŠ\å53 briannesbitt-Carbon-d046377/src/Carbon/Lang/kde.phpUTŲ]Ā_„SĖnŪ0¼ū+ö¦Ä0l¤Æiš>ģI`¹EķŠ hienM‘*IIšß—¢lł·‡œīŽ–ŅõǜēĪ Ūķ@fœ ¤$ęL[P)XŽ0dz®¤£ā%[`ßykūY|_41 4s²®ēõö“t[eū±ŹnÖÖ;„}”“b•Æ4-ø&£4®„L•Ī˜%%{ dŽ+ +nü0¼LoėR>ŸåĢBÅ $d¬¦ya1Š,wŠĖnT”ctvŠŃh -iĶV‘Ę\°ʅ6Tā™Ęßi„(=|¢~0@Łw“ zšŌ·‚ 5%„Yną) NN †œ„ ž{©B\&leÖ¦1%EÉ@¬XNĀŪ·Œe¶ŲgdĢ1ę6)Ż£^ā@ŗ É_/ØÅŒ•]ÉŗyÓQŚČp„ķ&³xåˆ× ¼iąmļøląāøTFņæ eJZ¾™_XaB0iR;c³Æ|[æXKĢÖÓl‰Év˜[®åUOėGvJ ©Ūc!^[ųLS¬?žąėŅÖ0Qe #4mƔ“±‘»ōH„Q}’¾įÅFõæņś"=åéńĢ3ĮżżU–½]aŗ£\³'6Ņh4ĆĮO·öč a±ŗ+7:wom‰[=8evļž|ž¾óPK .3|Q<Õ3¦3 briannesbitt-Carbon-d046377/src/Carbon/Lang/kea.phpUTŲ]Ā_µTĖnŪ0¼ū+ö¦$p-ōš¦iÓ<q 4¹A@PŅŹ""‘*1Üæiļ=õüc]‘ōCu‚ڇņ¢åĪīĢh%ņčC[µƒAzp0€øÆ„RŌōl¹¶ J°Ā)י’”ŹŸųGTŪ•ļåūšI .įM&¬…£¬Ū~”“Uv”«ę8–^(ķ‰JWא«v¦Å¤²ĄeµČQ’”„Ņ ·BÉ!“5rŹ= œś¾›«ÓóŪ»óŽŹū³·0å a¬™³XĄT؊ņn”Ó9’PįͦÖi \k>cۚēHĻÜi#žqOć7'4cgW_%)ŹM&ĀĆh% jQlx  '$i“Ēa@§ˆOŸ™ˆ®rāŗ#&NüM‰Ś÷XŌfµ{r4äµ­k;ƒf}Ē3^ø Ef*„ķJ7jF©Ø¹#idŪ¤"ÓK¢ĄhK ā3–¾(ƕĒ9‰łŽ(%mµż5—ؽŽf:†c®Nč’¬CFųĵ“U źœL”±>ŗC‹2 Ÿ­‹Ń­{^fĻÄ÷÷­ō¾ Šn¢“č#ŗˆ&¢…h ŖGᨗZ„ŠĘ2;S%ė¾€|»@żYŠSń)Ÿ¾¹÷™äņņ°”eø[Cé:KĒéWZ=hĮx<†Mt ?Ⱬ‡Ø«„Mˆ‚ÖžŻFÓ/’m^U1Ū—r¶łćž»ĮPK .3|QłŪŻń;3 briannesbitt-Carbon-d046377/src/Carbon/Lang/khq.phpUTŲ]Ā_„RĖnŪ0¼ė+ö¦Ä0lōš¦iÓ8AD.Ф‡"„•“ ·–H•ž†~SŽžÆPķŚ0z*ęīĪpf“šłēNtI2ŸL˜Ą£`57žīP[P5XAp…ŗPŅŹ¾ŠĢsśIy _5£„%™‚­…óbhæHß*;+U{©7J”Ś5 ”Ŗ[k~PVŠpIŅxKY+Ż¢e%§Š5„~öŹŌ‡w÷wWסėA*ä³-ōh bc5ĪR=[įŸŻ(§KņFU;O4Y§% ÖøĪ5u –äļŅiĆÆt¢é·cMē‹»ļy>Kē$g~3éžš'mIsÅŌ¦šéžŅĖŖr=œ^6Ī5˜>OG^O“Ŗpm¶¼F`ŁgYĘ“ń­ßk¬¶Ģ&6æ\;VĘ`Q¹#õÜ„ķ_hå£ōxµQ1ŹKµ,’KØUҊķ÷nŽPö¼¦tCŌ³ŽM†~Óįé0kĀ(›7×ÓęO,×#ū‡~heQNĶ·•U*ÖK„ś° 2cs˜č`GC®˜)¦‰YƒlSdˆīŃ8ZīĢjÖĘę~“¹Ŗóa©ĮńĆ éø0 ćūĒ0IooĻZæ×}ąa9ókŽGh1Ļę?ż9€¶dY6…cxĻĒę;Zåü‹ėæüłōcņPK .3|QųR3כ†2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ki.phpUTŲ]Ā_„UŪNć0}ļWĢ[uŪw–e—„ģR }€Jh…P4M¦Ilwm‡ØŸŌ’h’k];½¤„ŃęeäsĪĢńŲŽ}ń}šN[­īŁY Ī`˜2 c–Ų8Ee@ŽĮ¤רFRX(ĪpB«]ÉOāSų© 1cąb“žv(M'–ü²’ž’Źy±œĪ›¤P$³˜„¶–b,GƤhĆ4'“Ų;£Ņå=ōÆoO7«Rn~&E%jH˜6Š C ”̤–±sײP1Y£ÄM¶ŪRd %•ĀY¤hšcL6ʅŅģNż-˜"ˆ¢^’1Š:A—DĒ®LІ—Ų/ą¤Xˆšķ^‚{¦d&-ܖø˜ab1^Ū^[e ĪōF[p†+ķą­° ¢YĪ7#&h‡Nv„ŪVŲ†Ų&s¹Ā÷"JeÖvį•“‡.„Üčź±½$ Kq&ž«—¤ėÖo$ T ×oX’]ā!£}d²]•­ŖZšHČC(9HåĖł¤Dń†÷Jfd³kĖ–sĪ>€@ ŲXśķJģžį^Ūµø»q+ö|’čĀļ”ypX…ž į ƒ*Įƒż{Ļ=ÆBÆ?Üxł’¤Zc9ųa萹ööœó ½K<ķ0ēZ×HOõzŻ0ģž±_\³†!²»“ēįŠ}#Kģ׆cbŪooFØ|Āy, a€/꘭¶©Ū…œ“E9ĆQN•¾‰£åw¶¶ža;jĮh1jP}ū§ÖōŁś~łŲ¢l"ĘØAyŸbośō—sūoˆŁq“¤”£F>)µO@-Ē>Ē-ŅĻK1śtéź<0aŸ§śü ‘ĒPuNQŸ£)–¢¾ lByŌD7ŠbŌ¤üėé×Ö?PK .3|QŅ£ˆźĶq2 briannesbitt-Carbon-d046377/src/Carbon/Lang/kk.phpUTŲ]Ā_…W[OG}ēWĢC*ē'ą6(m!/PU±ŠŚ;‹WŁŻ±vĘ1$ŽÄE•"ńTUEJ¢J•xhßjŚ@ŹÅÉC’Ą¬ó‡śĶģzfwķĀž9ē;ēūfēęū•f£96vurr M¢•†K‘ćzĮgÓ "b ŒZaŠUf­ć"p}¼>„® '˜Ö\ĘŠżšh~@“°bųs õ „Óņjłx~šÖVõūNm Uƒ²šK…ØĮ½$äµ³ŠŒŃŖ™ķY4mšV/Ü “üźē?!!±zjė†MfÆPE—Y‹įXšh²ŽsƒHBŪ ,O‚N+؋{æ“ü'ŠK„CÜźč m9Ž»)šM¹xf¤ž“ŲRöā)‘kFäŗ¹aDn‘[ ŁĖ!·1wŒČ]£ZiĘ]3C×ĶŠ 3tÓ<ą·ĢQ·ĶQwĢŠ]³`iftXõޘśžÜĮ’YUW“h5éŖ¢J õ¢/@ŻĶĶJēŠü_FÓ%É+&īI×Wé[X²ŹS¤ ֎8G`ķBĻ'±’d«ż»ņś ŚŃöē7ŠŽOøēĄ;öt °mąžK®8ĻācZ;17ÖéæQņt"ŽäøOœggŃF¶„®T?ŽØ|„ŲmÉŖfźY£pf™Ŗt=ŗ]…®@gÆóÖ9ė|u–:C›ŹGÜ-įōŒ°DOåÕ£'ī(2⽨<Ū'[C}éV.öp˜Ēū‡¢„#łŒ2c焳Ń9hgķ§]“ǰžąZ'Õm„œ|*ÕDS)j=Ē )—č5āč«zI_¾ELØh©ß(–æĘ’\@žą‡Čē7āzˆ„,Å’PK .3|Q‡«OńĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/kk_KZ.phpUTŲ]Ā_-PŃNĆ0 |ĻWųmP”ö˜± iŚš^„©»XĶ’ą8Tü=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)7Ū+¶Ŗ]åwī^™l„ –D`?¬š%*LŅŗt{ś—¾%ތ¦ø”™®^ĄĘ9ŒE#ć”ųf…R|€Š*÷CølwļēĆéņyZ­¶~ā­Ąb ŒT„i؂#,$^7ڽ¤Ź5hÜŹv†Q*G`ü®Ä}<ō}»ėę¹ÕģĶPK .3|QĄ×Yą(3 briannesbitt-Carbon-d046377/src/Carbon/Lang/kkj.phpUTŲ]Ā_-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5źņ™Õ¾Ģ÷ęĮüPK .3|QöpµńN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/kl.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ Ū@“¦ų8Wiź6V³¤8ÕŽ·ćŁłü’ķó䦢ØĖ²€¾%čÉ#č9ˆ=ˆCŲncЀ•jł½‡W&ąŒ©%Ų¶ĖųtŒRŁxyś—¾E^ƒśģ=Ų8]™'`Bž,†¤•”|1B1<ĄäŃčī—p^}§ćīpž<,Q+Ÿ8#0›%aj³`3‰ÓeO1³E-źVŲzyįāżcˆs€{“½ć°Öå„7<ā¤T~r¦E!k¼æŽ%sPĆO&Fhšżń£iŖM=śężTé/n‹?PK .3|Q×Q²>H 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/kl_GL.phpUTŲ]Ā_„UĖnÜ: ŻĻWpē$Hœf›¾Ū¤hЦ‹›nŠ 08¶l3cIŽ ŚžÓż‡žXi[~N7Mµ‘xHŹ“żāu]Ö«ÕéŃŃ ŽąkIrŖš^£q sp„€÷hÖZ1”n°1Ē6įé!¼3„ ¾»&ēąÅŗ1ß(6µ‹S-_…ŠŚ“D¹Æ*Hu½3T”PePQ*”å’*×F¢#­Ž”®2öHbŪę}¾złåę²”jõ¹lŃBFÖZ{'2Ų’+ŁĆŚ­ö&\(kŞ66¹o½+µ±ēĶł.P‘-įʱ 4™…·Öź”Z Ąkķ‹“¢¢uzRé+aßŹĒŚ]ś']*øÜżśß:AŖ1QqēBĮD[ ‰‡mm#œ7 ŠÜ%FŌ¦‚÷ŌKāĄˆOF@’\\ż—$qt*TĢO%:†ŪU##źīÅFšņU€Zųó׉>~<—2:ž:n&žskgĪĪuq__Ēßx͜½7†k^°ļ’Cģ ā2^p›Åw0ĖøŻT Móīŗ-’Z¹2“Ż£ņˆ†š»ˆr±6£%‘oÆ=amˆŖÅūītļ½NĮ‹Eį­ėĪVŌNČuO§7N†ŅW&ŅŽš‹L,Ļ’„‘A]ÖY÷ÕmUėóEŠź‡Ź”äPk+Ä&Ć]%kÄ6¢%„ m”xU+?jRŚdÉ¢Ä)ā°Ŗh”ÉIŌK)³ĘYPP3iœ ‡b”B`ݧ’ł/D9ė¦Jtž4¬-ŪYš¼ j¼µĢ¢ŗ°‰¾ŸżōŅpžjÆÜļĻ~v'`Ų»wgĒW*æm8ĀdŸęoņwCj‡ļ̘½3¶O€ØWßNćü€(łk±ß@pŠ böł#ćSØä¢'©G©=10ō4<É1x@bĄM<2@3¢;šńį?Pm;–Ī»ōņ -åņŸn>U5ĄUNYšļ ²©¶lŠVņĻp)ĪIšp·ö’¼Gy3¢'0”S}å8æ¤ų÷½TŲ¢vZ! Ė=<ß9!>«’:ĶrŠlEŖU¶7”“įmZ' Ė:=™ÉNõŽļ:8Iü®zÉÆń› »Ćē«ßPK .3|Q!æµ Ū3 briannesbitt-Carbon-d046377/src/Carbon/Lang/kln.phpUTŲ]Ā_„SĖnŪ0¼ė+ö¦Ä0¬»›¦Eb1EāKĀZZK„$Rå#‚nżž^æ¤I6Œ‚ņBrf8;»n¾tUEÉlĮ vSp` Ż;”ÄtEpr/ø…ņKZXķ(æŹÆįN2ä°%µgZĆĶ~¼~åö*ō"ķm~ŅLÓ@.ŗA²²Ņ€¼€†åĕ-ÉB¶Ø™ąsčB‹½3źŻ»ĒĶżzū¼­\>]”†LiÉöFS=ӕelv%ŒĢÉ*\Ų$’¤ä€RāIźĢÉнӕ¤Ÿ†I‚,[mž²l'Äv2ń^#°+nI²‚QĆē[xkÉ-×BØ:~›{MOT8Ø ł.4S8zŒGDęOH¼üóė·æ(ъ:ąī‘ūkkŒö§F\TČT%¤žźhjųMė`ģ‚ׄUĖųµ‚ėjź95MišQ²»A= jļĆ:;ƒÖ7½ŗ ¦8µś±dĒ·Ä"‡? Ńić˜;#øīˆŌ䬌į·Ę4ēp/`śyč³1¦Sntž;Ä5„ ½†B®)r…;?½ÅüwFä ?ī?<,[ė~J<Ÿ0K„ĪHO­VIš&/v‘ išĀ%{J{.«e…]sų—ŲvēŪ„°Ģ…įZ,ķļÉÜ“R $5 ÷ …'Ōcö±"oן¢æPK .3|QŽ`))Ć 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/km.phpUTŲ]Ā_åVŻnŪ6¾÷SšĪmę5°+Æm¶5š-éM‚ ƒk²DEB%Ņ éŗĘ6ĄķālŁPägAė4ƒ”öM‡vĆ=Éų'źĻuwŃ»éFā9ßł¾sHź7WĮ ŃX^Zj€%°„ųaxĀö øć>FĀä>pvį •škīuš īAŚ7ūrų CĢnø8¾m Ÿc¢ˆüaĘ$Ü p¢Š…ˆ Iäc;,ÄØt„ķaG*nsćĪś½ķuI„ņcĆĄČ”Ą )#aČ F! „GäNńøPy*ŁeY”ŒżtČLh[~¾$Ć1ųŹAČŃćmHą˜BŒĮŗ¶~±6Ø#*§…†n؁ÅM : žę:¤ nŻĶoW¾ēɌ'óäŒ'ū<=įÉÆĮqįQ sĢÓ O-…Ļ Y•’ōŸÉ/<™ØB^Ø)>*2 čCŃ`-ĀH—±^čūy<łƒ'æóä(؄`ŲnÅāRģāOų±īø  Ä\[mßæO?(n•ė«%¢1¤¢ō‚ņL±¤j®ĻUEāć`~L%ł”ļ΁į’OP^ˆšŌT /E3K27°’G)`”¼nšz£év©Ģ›;šźīŻv¬ql“ü„6ø ;7+"s›63nu“R7“-JƽŌA•¾ž¢ē<żI[ź•n›ŁX,°¬ßŒ’TƒēæœÓ#ÓŹ ÜŗNō!Ŗ­©ā¾(¢źĄšѹė.>UØ}õ=±¾“ģ>ń¦RrŠ[ū_./<¢Åę«}™|W’[āĻt° <ŹNŻcmŗT³?QA/“õ™Źč$˜Mw‘żæ§*ē+u725¾¶‡`fJ§źD|Z˳²D—¶¶©IÉȖŌs!óU§Ķī"ļƒŌ e=ypaægo”+łMPŚ5HzåČŽž?2ØHÜļMB‚½„¹&{@źt?nü PK .3|Q¢ 7Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/km_KH.phpUTŲ]Ā_-PŃNĆ0 |ĻWųmP”ö˜± iŚš^„©»XK“ą8Tü=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)w³WlU»ŹļÜ=¼2Ł,‰Ą~XįKT˜¤ui~ś—¾%ތ¦ø”™®^ĄĘ9ŒE#ć”x¶B)>@h•ū!\¶»÷óįtł<­V[?ńV`±F*Ā4TĮÆķ^Re‡4ne;Ć(•#0~Wb„¾?ž?ś¾Żu·¹ÕģĶPK .3|QŁå5Œ#R 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/kn.phpUTŲ]Ā_ĶVĻkG¾ėÆx‡‚£Ęv)7­;4ÅrN)E±ŚõN½;#fGQMźCM{ …‚*(Zl‘ŗŠY‘Ö¹$‡ž#ū§t~ķļŻäŚ=H;ļ}ó½ļ½™y;[ŸŒ½q«µ¾¶Ö‚5øļį\ģ#’c‹q .pĮ‹(&ūČ:D7VĀÆŁ×į6Ɓ}Ž0ē°5’ĆO‰R~ƦĮ-½K™"r'¾63|čq°ˆ>¶ EHāRXSҁ±,a{€ŃTĶŪ»wgw’`WR)}ܳ8L­r†GŽ˜bī ŠŅ ³‘ä(±ė2C9w{Ā=ŹĀ®|>§””!W{_|¶½=ųRļ2‹ü{NŻmm`Ö7= >āH±2Ä'Œ@æāi#‹µįć[Š~øyG?ĒŃć8:‹W Ž^ĘŃe¼zG’|7ŲģÜ#nækÓ įW»£‰Jø×ÄōG½Qćy­„©ĀW$¬S„ŽŽ"ﵐQ§MŚ+\ŽuÜDu¦Ā/*Tʞ0xb…š(ęjpƞTX2WZ,LÄā7Q-TŌ„ś­–¾ąMCdSāäg"ZE²Šs¦W+Ž~o^„+5GĻjž L„ˆÖ!ÕQŗHLz•¬ÜY.?—Ń`Hč“](œXźĖtI°ėfø8śQÄ+ų8MW-Ž~H‹TĄ£#–Ćé -Tʋœ*ĆPƲ µ[VyńźD‡  O‰2ļŻ×S¶ĮėĻAŽÕ ƂWūvvÖ{½õÆÅSp&^艪5 R #ž4Ć&IŪņqĢŁĻeZŚIJŁĻ×|¢¹˜}ĖóȬuȯ҃¬¾–¹ +Xf”ųŒ±o6ķź±FĒыŌ…‘Éķś”9x{„’Pę`błfĻ’I0BĢ®féÉE ; åNˆ-[?\{O¶†ėš0…]c„-ų0ļiĮmÕ„^Ė#!ļoŚ7SąI-×ęF3Ł…Ź}„j7W”s¹­ßIłQ3„h3ēŠé…śJÆČ;)?x‹Ź+µ£~++kU‘ Å9ÉqĢ1mKF¹m^hGü© r‘|K󕐾_ÅÆ¶žGĻÓx²&Že² @…2[ķi:~¤Ąņ‹6=QóJq¦@ŻaŸ'VŻg/“ ų>iÕ§fGÆf%„J²nź3%łŖģŹ5 Å]‚ŠVS«’W‰+S.HMŅōåMB|#²żņ—Źn”t™+CN©ü²ä[f—”¢ćBńœ—¬se½¬Ęų[™f¹™÷™ž—XĖ)”Ö0K¤FYvAmYd¶‚¤Ŗq‘)č(+ČĀg³ØY<ó–šÅ Y7bįH¾Ė˜…|(Ā©;L/†ŁķNŚ5Hzå(½Żnę„#sQźot`CÜlżPK .3|Qㄯ¹Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/kn_IN.phpUTŲ]Ā_-PŃNĆ0 |ĻWųmP”ö˜± iŅ“ą½JSw±–%™ćPń÷øO֝Ļw'o_³ĻĘtMc oO& :³e4x„å!E„ÜÕ^°Uķ"pšĪd#œ± $ŪaoQa’Ö„ŪĖæō#ńj4ÕĄ„üĖtń6ŽČa,§Ä7+”āä€V¹Āy½;w‡ó×a±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń^‰ś~üģūvÓ]c«Ų<›?PK .3|QF1kĄą 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ko.phpUTŲ]Ā_½VAo5¾ļÆx‡JŪFé†Z`[ M7•B³½¤RUEQäńdLfģ•ķaHK¤Ŗµ×‚]¤HA*Tzˆ"½ńo²›’Ą›Ļ޽™Š>¬ĒžŽū>?ūłyÆ6 G­ÖŅĀB ą^Č,¢€żˆH "RøEäPpœņvČ6ķ mf~ѻ˒w©2­įś0~Īq(tĒń cz[Ȝ(H¢<1Ś•l;Ō@øó(W(É!c¢™ą‹0Š(Į¹ÆMsæµÕ[+w×W2Ŗ|}:$R¢ĄgJK6L4õ!e:D×®D"=ŠB~¾Ų„,ĀĢ÷f¢C!U/ū¾ wN"™’S·Ń1e|[=0cIų_ÆR._…q‡č‡——„Hy1»NÅĪ— γؘ%<Ö°«Šąī©NEi½Ō’T'’ĆF °µw)‘mųō“{žHøž|÷m{±€ČV>źīMy‹ą7›ŻÅUlœ³Žm`‰×”¾O_¾ØD,T9ūa{YÅh*°!ÅJAx}ļōÕćÓ?÷L‹YBL~<;pŠ]ŖPø²ųńxz8žó…”„Ąäɱ•'E+6£øĪłōڽĀų&„½86ĘY·”žRZ`°uƒNæßqP Ęė lŠÆVcŒš¬ f5’`ķcs]6MЉ(÷M]²¢V$¦}w«wĀŅćōk=³(v²Ęāž¬Läkp "¢*Šā“j,* LˆÉ“1Ø!ĖV¼)“Zksq é3|0r0Hø—½TpńOā!•‹paD%ž%x4#Tų"y!ڜ‡²ęeO֜^Ķlæ~¶??Ÿ5ó~˜•tŚY \«ń¼‹/Öī:ß“v=÷߅ńh~5> Hés­œöņƽ²¤įfśŒÆĪF–YłõĻs,«åyåϘ¹‹ķnž(Aū}Ó`śMÅōWM’‘é?6ż'¦ļ¾W~”ŒŻœŅŻRų7C’ĻŅŁsŠ…«Œ8{P~‘—Ȏµœżd ¦ūÕ`ņś÷j€…ÓņłžŠ ęåœX+9#d$ ¹”5„ē©Ź×źæEųo°ø¼€—wóZėoPK .3|Q—żóF5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ko_KP.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tKJĀĪėŗ²®ƒĀčaŪm ć8J#’Ś™¬4ōķ§„é"$}hū<“ƒ1ežČį«„ õŚĒ±iŽ«tå;wĮB±3|åךĀäœ1U$Ūj÷AĒ(…×Ż?ō-ņ"Ԍ}>w¦K+ąB =y I-Cłź„bŲĄŠ£ÓŻpZxļ§Ćńüyœ„–|Ņ:É%Ø) S5 Ö0‘“zŃģ)ŽģQź%lie䎣Ż-ćŠ;ŚżČ‰nøbü‰¬}=}X[de żL¶oZYCœÄÖŹŽ» žvš°1?ėGóPK .3|Q}„uĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ko_KR.phpUTŲ]Ā_-PŃNĆ0 |ĻWųmP”ö˜± iŅ“ą½JSw±–%™ćPń÷øO֝Ļw'o_³ĻĘtMc oO& :³e4x„å!E„ÜÕ^°Uķ"pšĪd#œ± $ŪaoQa’Ö„ŪĖæō#ńj4ÕĄ„üĖtń6ŽČa,§Ä7+”āä€V¹Āy½;w‡ó×a±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń^‰ś~üģūvÓ]S«Ų<›?PK .3|QŁKŠnņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/kok.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې*”ų8Wiź6V³¤8ÕŽ·ćŁłü’Ćóģ梨öūöšå(Į@AĻŁ°@@ĀŃpƒ®ģdF,U»Źļģ=¼2™ ¦ŽDąŠ­ćKŠ1Jićåé_śy ²÷`ć|e€ =x²’V†!ņÅÅš³G£»_Āeó½×Ēsóy^£6>qF`1 zJĀŌeĮ§7Źžbf‹ZŌo°ÕśĀÕū¦—=&{Ęq«Ė oxÄI©üģL‡BÖx½0J꠆ŸLŒŠ¶§ś£mĖ]5Å©­›Ræq÷XüPK .3|Qn!KAõ 6 briannesbitt-Carbon-d046377/src/Carbon/Lang/kok_IN.phpUTŲ]Ā_ķVĻOA¾÷ƘŪi·ńŠˆ(`$AbŠ 1d3ŻN»¶3uv–¦7遒ćĮ!!&S$J€`0xŃe’ß¾Ż.tˉÄ^vߏļ{ß{óc;õ°é5 …ņÄDL—HūŒĄ³I•&²F“ĒČ,U)Ąå®Ń:³!7NsĒÉcÅ© K,Øp­ÉT%6g˜RŪ®lL§©O¤B¢ZčūĕͶāuO*ŖÄē.”5©Ts)Фé3 ¾uĪZˆ[\˜_z1S”>ķQMZ4 UhÅ+”fUŅāŚƒhdØ\…Ŗ(¶wc…Ś“*˜ŒßKd0O©.’ē”`~•°^Ŗū¼ā–|éRŸ3uŚRՑC1*AØR“ķ(Öō©Ėąé†*ąėlL±×!WŒ8ĪܲćŲV™ ¦kÉ«BĢn%ży0ŗŠ½ˆk®ō¬“²b1°š<¬†ŚKVdv#ó+2QÆ™3|?‰zo ľ”÷0ź½EļĘՌ£¾ Ÿ×»Č|MęwdNū‰½nņ¶õ:P03€õ4źm%öūČ|ˆĢ9ā÷×9ŠH(÷š½k2'b§Ū¾8@ū c?Æā>£ŗóĄąˆœV’Ō_Õbl­JŪ»i32Ē‘1I³™¬ķ¬’lŌ’=T8Ä.æ\õvqvݘmż"vpˆŽnÜXʓœ[Ū;#»Įŝ ‚Ysj\ډ;ˆ­6£ ;ø×?kLń*g¬­#7qĒNõŪH&š&ŒĆšte(4ĮŻ»K‰Ą.ßl¹Ląŗ ˆb>§Ÿ„ŲQŌ±ģÅ ęĄ°~ūx¶ ½ćĖ+q½†Ö­Øs[!éŖqßĒOr‘ĄnŪæ±~’žˆ:#”K s„Øę€¦—Į’mßX5 EŃJ^śšä GøĒ—f Ķ€‰ cŹĪh.)Ł gx—lōłņķ\›DįlI¦’„r‰q:?~iŅŠ ź #Zæ_ųPK .3|Qė™ńN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ks.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې*”ų8Wnź6V³¤8ÕŽž“棳ü’Ćól碨öūöše9ĀĄŽ Ÿ3ŠB@-Į„ >ÆĢ„#•Y»ŹļĢ=¼ £‡†bĒŖpčÖńÅē1hiĀåé_śd ’s`Ā|­śņ1Wś!Č•ƒ€ŁęŻ/Ó²łŽėć¹ł<ÆQŸZTX0BĻQ…»¤ŌĆĀjóMf!‰”\Ōo°ÕśĀÕūķ'= ˜œ‚ŠøÕ„H7<–˜©Ül±#eƒĪ]oBšÄgĆOb!hŪSżŃ¶å®šb[7ežÅŻcńPK .3|QjĶ\ ĢĢ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ks_IN.phpUTŲ]Ā_ÕUMOA¾÷WĢm”6^Œ$H z!†L¦ŪiwĀv¦ĪĢŅōH‚µFō$Ń+¦ŲJˆµį„1żž‚rٟā»-m†ö q/3ļó¾Ļū<󱻋÷ĖN9•ŹĪĶ„Šzī0… Ģ„Ę2‘‰ŅE+DęČŽ%EšŚ°|ʞE%#mR•cZ£Å\.s…ĪŲ¢“””>2jTš\Ł¢\•¬čhDx¹Ģ¦\$/Y"š žFe—Ąö­D¼õ•µĶgka«ČŸvˆF¢Pž)-YĪÓ4*L;ļJxҦ ”ĢfƆܞv„T į|mē1ŃiōŌćĮ“óŠóE—åģyWŲÄ„j¹Č½ŒÅ؇¤Ś“)IKZv‰Ma“=©Ų‘ō„Ē$EÆ®oaœ±²”g`w­4z‘ »[ńś”…ī-%PoD€õ$»šŻŽ¶ŅQb'¬’ąŚI–fj~Ćļ\BOĖģū”č•ßō;ęØW #æiŗaĘÄ9˜}ˆš3S7Mmh~ą7/ć~³×öĻżÓh#ōlł$óbØļ#¦ŃUxI4ź+Ųoż?śÆPŗ›'ÕĮŽžkS]†ŒŽ'’VÓĻĢoĮüø÷c ióB óŌ®3P¾HŖ/|ÜÅč>^ļåōoy)1žo€ , øĄ¤Ņ8“FUJddėN’RÉņŒ–ś^ŪpāŻÜ«H­nj½n|ö}īÜ)` 7t“lįq`¹- d³¾ Iź2’siR}ūR‚oŻzče©߃F7h“‚“w7ź”&§<¹ÖÕõ_l§9źõŠ•iHO!Sų7ŒĻ/¢OŹõRĪ$ÅOŠ>9$Ęįļ5B1ūężDśļß-Ė žH"&)j ž»_‚“·æ~vp²4¾ŻØØ¦ä<­ģĪģŻŌoPK .3|QĆćVĘDķ@ briannesbitt-Carbon-d046377/src/Carbon/Lang/ks_IN@devanagari.phpUTŲ]Ā_å’AkAĒļłsŪ64 ^µÖj[”P{P/EŹ2Łd‡ģĪęŁĘܬŠZ‹P ^&”Ō"AP"Hż*óQ|ó6Mš5ž=ø—™÷ļżßofgõQ7éV*jµBŖäeĀ5iń”X»T"[Ä$ŒlPՔ¤ØCŪ¬µ¾|)Z&O§‚ģ2ŻäƐզׄŅŌ#™­MJŸJ…F­;ūÓĒóźgo0>uö¼Žœ½ĀŌ÷Ī~ž» 7xöÓąjŠådŚ’ŃŁ1ZŲB;ū ļāÕkšžÖž”ō Mg‰‚¾\>DŸń\bžB ’ĪüĻ÷Šc¬Óžģ-;;@—›i’¹į5 {TJ_»Į™$0W!Ō²!šw‹–ĮŌĄ‚ąma“‡Ź-nhęµ½üŖ¼†ÆV¢†¹B2ĆmŃ·_“o ĻJ£ī¢ōÉŲ0ØīšJÓ¬ÜŌ4²$ķ¼„®UČŅč)“ ”Ēv’öįŻĖņįqµ~ģG…|,a*éŲŹ¢cŖ`/YxĘgw¦³%y£*„'–ø³ŠZ<䖦KņwŁY'wteéw'-Až/–?ņ|–ĪIĻüfŅ)¼%ąOŖČŹJ’JįÓ¼„ ·d<›źƒÄčLś>„{¢m……ß:…ŲJŁkCĶČŻŲh:ĮuxßTŅ…Ė_=3J”ńšß>¹ĘņŃ­Œ˜Ć„ōŠé88ĪøĖȹ’śæ)£YŒ_ŽŗĆ&Œy¢¢9Ö–"÷m##Dq=:Ž ŠqŖ5µLŖ«ų¾e3T+³;‚ r”?ß(•NO‰õ sćÜ9P‹Å<Ėę?ż9#,dY—ģ)=špé>Ź*¦š/±’ö÷ėÉPK .3|Q’“.3 briannesbitt-Carbon-d046377/src/Carbon/Lang/ksf.phpUTŲ]Ā_­S±nŪ0Żõ·)1 »NŪ“MÓ“h’"ā M–"J¢"V©’t ³f<ųüY…ĄŠźI” «r;•ƒłŽńļN>ü˜†©e {= zp2‹) ¦DjčĀ1‘®ąHy¹£Œ-Ćw¼]ų,įpI•Ė“†C·<~āxzą‰äØż"d•(˜Ä1x"Ivj ܇˜y”+“䁐 ŃLš>¤1%ČŻ3:­ī]œŸ^^–©Ŗ÷éh˜>SZ2w¢©S¦CTšķJL¤GŃČÆ;“$ÕɁHIfޤiL<ŠčM¤b÷tGŅ&)8ĪÉłWĒŲCŹŲ»7ą²*™ĻhbƇ#ø±U¾łÓ4_`„ķY‘żśÉ#aßöMų”ŅČ'3ՄØū«yÆęÜĻ—å6!¤ŁY$‹¬>}_ĶWófŸ?%®1R$)É?M ©[VOmŅ8¬s7‰ė¬Ż” ć’%a"ø›6ż\¤Åht|t4"Gä!åš,x†Ä¶(C䂘É9عv*^Ā3R[‡ćä›ā Čź97†œĪėįa‡ŅŠXęg!ōR*WhQf‰e±Qü95DB2£ŠVR,¤ŹĮp)ʤČģ܊ćŚåŻ^Ÿ_ÜĶ.źRΟIĮ5h’pmŸ—²ę&µÄzײT1Z”ę=)4„”‚ SXd£mćRi¾Ā…æK®06¹žĪŽQP»3ј<Žˆż¢O8ęłtF£R #Q·Oc³F\&°Ń!fV ‘Äi8•i7˜p!t‡Š¬e6U‡.ēķ`y ’ 2JeZYź©—ņ#ō#Ļ.õßzg9m!_Ē—ńU|_Ɨh+äR˜“Yū Ų…¬ĮVŪ¹’¾?­¶Õö„ī}-f™›Wū¦,EÓÉ\ē¾ü%«W§‚…©¶łężŅČ4ōļäŖ| ƒ¾§ŽöXg«ąØńÓ3#|“#ĪEµ-‚~¢ļŹ1mģß ™Ų)ÓFš6Ś4ˆÓ¾: ņ4čÓĘ h°@ƒ‡ī$\iĆģY2¹`õ±:ł uw,“›rÓ·n&ŗŗ:Éóh¼ f;äDėōhBɔ’ŸöėĮ:}—÷¦.€¼5ŠĘ%ö³÷1©¶Od0Ēī‚_čAł¼“X–™Ŗm °”ĝ#īᩬÆv“ŸļaĄödw×°ĒżĖą 6”č¹żzpāߔ‡°”LĻSūĪöšn'Ó!l -ģ ö5ļoŚ)Ónqx”ާĄöš1c)śĖžįņļ‘“eō^ l‰§Ć£PK .3|Q‹7Óæn2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ku.phpUTŲ]Ā_}UMOŪ@½ēWĢ”RZ”i„(ŠDUŌ©joŠ6ö:¶p¼ŃzÓR+AšŹ-ē AmQ =Uź„Ā·ž’ĪzmĒkA (»ļĶĢ›ńŒ‡Õ']»[©,-,T`ŽŪŽ–ćRĄļ.į˜¦°Ax‹y»¤MŃVšß5īĮsī¶©ßr„€Õ–¼>õšŹÄ¢Į:ė©é ʓ@VĻuĮ`Ż=ī“mÄ3Įu źł(éYŒwˆp˜Wƒ®K bŚOü^omlnæŪ””’ü„Mō‰¦ć ī“z‚šŠw„ ęī³7( ™I²K²Béū¬'lĘży¾/‰Ū§¾€7Äk÷ø£ĄW„› ŽÓį‰ēó„ķĆ4ŖŃ$8 į0Ä'\āaĆćj ŖĮ,ēĮYp‘ܾāé ’¦ņ&̓kéšqxO¹æO‚ļčzœęF20~Éž«““ PüHY³`ŠˆĢ)>‰ĒŃ$Ļ©Hééj•¼vW*wś”īšdOÕ¬ü ˜©„āqł:• £É¢Jpų;…ƒą[žœTźźį9•NŃAfÅ©čqĄŸ*i³*¬­«ųĮ V„Ó”՚"-Ī:Mõ•EBAxŸŻqµ„VĖ”+[Y¬ģŽÆEq2éķz{”¤žūˇ²ŃŃσżzzŠGŃä`’ĮaųRŖń°V_ŽY1XĻ9VÆ×¶#@³€FBs`9Wnź6V3IqŖy{ҧČĪæ|Éöy²SQŌeY@ _–#ōģņ9”(„ŌģQŚąóʌ8P•µ‹üĪÜĆN=œ)¶¬ Ūv_|ƒV&\žž„ÆAÖ >9&LWįĮ* ļĄ±!s„ļƒ\P9ų˜aŽż2Ķ«ļż“?ž?KŌŹ§fŒŠqTį6)u0³Ś|“ŁcHb(u+l½¼pń~ūчŁCG=&§ 4¬u)Ņ %f*7YlIŁ s×[€&ńŁš“XšępśhšjSsó¶«ņ/n‹?PK .3|Qm0׀‘5 briannesbitt-Carbon-d046377/src/Carbon/Lang/kw_GB.phpUTŲ]Ā_„TMOŪ@½ēWģĶ€B¢J=QJ”$M„CéUhµ¶'Ł-Ī®;»Ė’žń®ķ`!ēŅ2oŽ›8¾üVŹr2™ŸMŲū-•eU#[ tĢl˜“Ąn¦FS*{[˜QmS~’²ļ؄f`Så»L›šZShÜ,3»«¶ō‡Į “ńEĮ2SÖØ¶Ņ1”sVØ “„–zcp'œ2zŹŹåö ŖĄ{ø»]>>-©0Ÿ“±JX–+ėP„ŽAĪ*å$!4»53 FyvŽlŲpo¼“ķE㟳›BX'²uvÆ4éԌ>©ßžo •fē…ÉDöz«żĢą6!8š DQs„²Ķ¦£ŪŌÖ\t{6cčę’üօOĀ*:qęźB#!Óo4NšmjoZ i®¶Ž]Rŗ&”ŽĘlāN¢fkŠö“[QÜņw K÷V—øTäYC-ĶC†ķ1joų Øe3 šīŸź‘ŁiŽC{Ėg”^•æO!M‡°­ö£ųė{āYh•PlĘßwØęžūµŪqƂÕv7ŪŠ-ŚötŚ÷~ł?U§K3Ÿŗh­„ą)·±FĖhn•«:ń]†‚æĀŻąSy2†µuIx<ū$x…Ż„Ó)ŒhŸ£ę—Yyü 8–¹2x&P:tG)ŌĀųį0ųOŲ d&IÉ%ŠXET«@³’‚†6Ōń“Į~Š— žÉQ:…Ę9b,Ā>3aOf“™.euQV”¦č c»°žņ¶N¹­³·ŁĢYZ¦«‚ŁQĘBdŗČļaøĘ°ĒĆą$ÜśĮGé K€r> s1st¼‚LĀ‹¶I˜Ł§įvŲåń)Į¤ÄYwI+Ē:G/OĀyū3ģ¬÷pūŸā–ą4B{Ń;ßp]`d0^DĮŪQų lĆēā=e€śøģžĘ ѵŲ{÷]š3ų Wi¾„|Ī}ä—)hÅ-õ\OÖ=(¤Y®?²'Å=ųļҵō*=JwĀ/įźKG8x• ;š÷”WQÄopD‡;goy_#жŒć!Ž^ä<ßö²€÷ J‰S^wĀūļlŲSn¬bgŅt!sˌ2Ģ2ŖŸ–d‘z¢-ō’’B5єŠBĻ“©Ēx¼NLYyĻŹŹ™·Ē$Žņ/ń«#e5ą÷X|Ą#Q0bj6vŅÅwĒą LĪn4ɽĮ~øö`Rąj9Āė8*¾Nāq„ĶūPK .3|QѝŃĻĢ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ky_KG.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm£Bķ0b iŚš^„©»XĖ’ĢqØö÷øO֝Ļw'ļ^²ĻĘtMc O& :³e4x„½å!E„ÜŞ±Uķ"ßŗxc²NXŻ°Ą×Ø0IėŅõł_ś‘x5šjąR¾3½€#r‹FĘ)ńÕ „ų9 Uī—p^ļ>ūĆéū°X­żÄ[Ł©ÓPG˜I¼n“{I•jŠø–ķ £TŽĄx«Ä}’~üźūvÓ]ī­~`ódžPK .3|Qw°HŒ2·3 briannesbitt-Carbon-d046377/src/Carbon/Lang/lag.phpUTŲ]Ā_­“ænŪ0Ęw?ÅmJ ĆF×4M’Ä ¢&rŠŚ)P@K”ÅZ$U’²ąGšŠ‡Čę%S·¬šģ§ź‰²d9A¶r”ī¾ļī~$”ӏiœv:ƒn·]˜ÄLCÄ ø§D˜˜Ā9QS)0ĢɌöŃ[Ś‚cų¢0¢zʌÓi~JÓ$?ŪY/„²¢,I éR±Yl€ˆP”q¤ˆ¤āÄ0)z&”`nĮhnėnÜó‹Ńų¢lełLL äDCČ“QlšBĪLŒ ²k™©€ā ŠĀ:ŠšL J‘„Æhš€ādJ³=RōwĘßŗß}æļ ØčćĶ8=øļ.‡SÅBF¹ĪąŽ™ÜŽ¢ęxwwĪCÆrä”ĪC²Ō;Ē׌““xbŠ•Ę22Å£Éź x“%!ĖčsB8Öh[枏8*µ‹% /Ēł:–Źģ†~ĆāÄO°²šVü©&MZSāŖ?·gx£/gā’uåR˜ø¾šėķ**žÅŒ˜Ķŗōb,M0§T„öÜ×9cóŒ³ś[, ŸI#†9!†ģźųv…‚øi“Ų¬7kՄ½ŪÕ¾Ūē«#ŲomM‡ą—|ŁfķĮjw^ŪłpŗĪÖ½Žńįaį&ćRž#ŠwĶ”™‚É>2µ”‚Tń=[aD¾Ī}ĄOŠ3ר—Üų°tÓM„‰bYœx× ©J Ōę9Ärż¤ų*3ĄD9Qh )R© føCXēČH÷Ąń±\wõéćłõōÜA•ł™Œxd®āKk0Gn2²PīZZ#JŹdŻŻŚ3k2©ōČÉGš[Ęs¾^#üĪlœ”Ŗ“7ŚYXųÕ*™°J—0q$ņJžņ‚Jq…¹TŠqł Œ„ŠX%`Öż'dŖ?œ@K+ \JTż”7¶-—AKų&묙ø’/a²ł› S;·'2Øļ;·2Ī^Z2ŠŚµķw+_‚ģ ė¤ c¶ @cÄUķÖvmFč¬ž)ÄK{ŅdŅŁ4Łź=rA īVĩ𒔳ˆtŹōc)’n>xßN؜5@ŗ“•tŲ« l%+ÓWVĄČšĆ¢TÉb!¤Æ+Ū².‘x6ć Är•Hp`©AÕ¶'•u脧éĀČŗ-æ0[³”“=”&„ŚžóęUĒ™iX×uZ(\į—õ–ļąttw§æµÅĮig āzŲŪÄn”sŌy½·‚ŪĪļźrØśQ­R}ućWŠfgiīWx󓱏“ŽēR9ŒĒŃdżA£c Ö&4`×¾ĒŽJ¦öNh į?ÖĢCĆc–£Hü5ŅŚ»fŽC—g®n`‹9PIZA~1“kÅN·õį²ƒŁ®WĪt Ŗ¦Ź<ēYć„VÄīV‡Į]õŽųĻ'A‹SF÷ō7 3xÖnƘ‚ é\:p7½X1ź½y>”ū75Ńč |Oścw‚Ue¤cFĀ:“BęrÅ©¬ lŽØš‘8ƒA™ŅŃ -üœŗlgēFģžØļGūõļvõnųĒ”?»Ā²zbræßY•`ŹlnžÜæ¢}­g_‡]ēŚßHWŪä+#ģś—LXāįśøT^œlžBõ줳„ڼęy©DtŸK+xõĶĖļ™]Ymœ4ŵĮb‰%Äē{#½x-jõŸ+yŽ~õBÓ#n𔢐P)LŌs䓉ŗ™D>“Čg…<"ŸCäˆ|šØģžSāBØĆ”(ęčUīž^c/·HYZ^y¤§¶4µHé²UȽ8e…×oėģs*#.ņ”ü¼śŽ+óEµē)ŪM}E‡å”<’Ŗp*˜ „‘*į‚åžUÖu%ŖÆf®“Yø{\¦‹ś‡ĒwĶĻ§ÆœœÕĶź_Eļ¼WNæć|v™žč,CÓwT<įXxBrŌĪ©p%&qåŚŠ…Ąr)°é[čYčWč”o’oŽoĢ^āķĀ=ĆyšģņĻÓϳϓĻSĻ3ĻĻŝæļżPK .3|QeŻaŠĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/lb_LU.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆ’ŌŻXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų Ta¦ˆ ³XČ3H@8Xv9)åæģ{Õ®ņ ĻL6Į«#Ų»>%…YzŸÆ’Ņ×Ģ›ŃÜbŸĖ/Ó%Ų4A$©jdš3_­PNwP"Zå~—ķīķt8ž?Ž«ÕÖO‚Xl…‰Ŗ0¹&8ĮBt£ŻknģQƒ¦­ģ`„qĘļFŒ0Ž/§÷qģwCt½~`wožPK .3|Qœ•=ńN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/lg.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ Ū@“ŠĄĪ•›ŗµ, ŽCµ·'ķ8Evžædóm¬Ŗf½®` ߖ ģŹQĀj ¶(]šeeĪ8R]“³üĪÜĆ«0z8RźX6Ż<¾ų2­Mø<żK߂,ACvLˆWįŃ* ļĮ±!ŸJ„‚\P9ųˆŽ°ģ~™¦Å÷qŲī_ū9jįS‹ &č9©p—•z˜Xm¹)ģ)d1TŠś¶™_8{OžģĆä”§³S—ŗœč†Ē’ •‹;R6čÜõ ¤Y|1üd‚¶Ż>Ū¶^5nlOļułÅÕcõPK .3|QgrtŠ™Ö5 briannesbitt-Carbon-d046377/src/Carbon/Lang/lg_UG.phpUTŲ]Ā_„TŪNŪ@}ĻWĢ›ŃX½>PJ $h Ré ŖŠjlOā­ķ]w/øęŪśżŖ®½ė¤)Jj^ęvęĢŁńf?Öy=Å{{#؃Æ9×0ē%³5*r&'8E•HįRi ;lßIwįDqpM:įĘĄaŅ…ĒĀ…ŅŒSYč¹T=Ńܖ%¤²n_äPdPņ”„v#Å\Ŗ —bź’Šåī95}ßģāōģśę¬£źõ™ 4Ø!ćŚ(žXC4Üä®ā“kiUJnP֋»v½kr©ōA翀IU-ĀĢ.œ„Oü '\aŅ ²Ŗ[kšøčóc[”\؟cA¦§Ud¬€JaĖÕ%¦älj•ę÷“£č‡åŠ€±éÅĘĘQLbģķĆ·ø_䏬#ųpR}zÖ'¢é4¾ŗŠoo£ż¾tēMTIaņŠ]¢h°ä­t¤Ń9%«ą ×¼ó&µ-¹OaŪ;—ÖŠą”Cn²°Ś²soČmŌP•`}.\:ńžµ¼ŅSҽ».‹i·a³dAAMŠ”AC˜‡™aŽrVCTdŲKøĮ„sӃO°Ä‡žyÖ`a®ų2Šhģ2+A2D•-ųhŅŚ¹Ü¼0Ėw½ņęµ7o¼yėĶ»ĒT’E4ēJ樘œ³Žµg{Ŗ!ļA]µ‹ZrĖØæ>—æg©“Ā€ųnū/ĒP’Ö Øä˜”šĻĄ"{»oY šUƒX`øśQ»„†lsójókuIø1°µŠlĮrėk€Ņ]°Ā Ł–²½»×Ģ×5¢{••J?¹ ršaŁż2Ķ«ļtÜŚĻƵņ©E… œTøĻJ̬¶Üö²*EĆ Ū,/\¼ßžģĆģa ³SšÖŗœč†Ē’ •‹{R6čÜõ ¤Y|1üd‚®{;~t]½iwķ©.æøy¬žPK .3|Q­5±Ļšą5 briannesbitt-Carbon-d046377/src/Carbon/Lang/li_NL.phpUTŲ]Ā_„TMoÓ@½ēWĢĶm!q*P m‘*Ś Q.UÖÄŪ›Ų»fvž"ĕŸŠ?ʬ½vĄ•*|ŁŁyóŽ¼żņ«7uQO&óƒƒ ĄēBYČTI cģĄdą ‚ä…Ń’JV˜ÓLj}ł^²ļX”†+² å¼Zų鱖©q³ÄTG”ō½įV(kŹSoYå…Ō)”*!m„„Ī Wč”ŃSØKBÉ­mZŽÅłÉŁÕõ™—jż¹lŠBŖ¬cµh„°Q®D¼[ÓpBŅ(mĶĪż =÷mć ĆöŠĒĻv„ŒMHk“‚EVVbI’39…ø( \#£ūŽ9ĀŖ«:Īu33œĖ |Įq%+dµFæ­&×°dĘmĢT—˜ŒIĆV­ié[£˜ ŽOĻ?Åń,š“žÉESų:ł¢Ī²ąõQHµé‹6žĪ./g_䋦-xÓ Qe“++Z¢˜Ż +Ż(S‹ń0­±óÕ|÷£lS¤–~\6ŗ«Y6e`“7Ö5ÖĒ–jG•Hł‰Y9BmÖC:%ŪÅ»¾b+ĒāīŻ[ĮN0œ#ĮF0ś‡Ī”kh8ōŚ­RÜö»p{÷K§Ŗ„Vhś0E¹!ĪāŌW‡ŁZ6+„·h\—’³ĻĪŖ|·Š*“ zń $’«”žO©L±u±ˆÅ&‹½n«÷< !ßyŌ϶„ÜV½˜N)-­»m‡‰i“ƒŹTw?µßõłJ²˜J%÷ŸŹ“ź1~Z“Ž5XķK4^A“E0#>ø »NüeééÕ8$Ė原ķ¼AIō?Š`•°\TČģ9MLåŒJdū %-”žCĖuōt“½Õ$;E“"¶“8wOZWŃ$Uõn ¾SŚ åMU±TMZ%1«DŠŅŲ’2WŗJŽŁ“B°ŲLąÜēķž~p>‰b”»Łh̾Žœ|ŌĶf"öj7@>ö@tpŸœÄ_ģ}š¬;¢ZI*CV“DŁ^XÉ(Ē™ī¬ōR9,ņ§C–²l/ é­ŹZ…čh…2ä-ƒDX'£ˆT0„š p&¾wöj;ÜŲ%ŅUS”„Š/£ƒ·ģ;éūM„ÜŃž% …CĶ”Üń<ƒE?¦j”X@Š’˜µæCQlŌégœeūĖīł3”ŠĆ’DŻ*²2•-ÕW¹6–²MŠ r·Åj!’S*Ś·b\åÜéz½ē!šŽä¢Ī[ w¬ćQGh;U$†Ōž°•ā˜¹ Ļ4V’ ūńTą–¾vuVų5Š%FżĶŗ?üžÜ«­Æ„»Ė R–Š«Ģ"@fXü Ē~XŚ}f!ŗ&üŽÜŽPŚæÖJÜ®°żŁų/÷ī·P>üI%Ā›Ņž]ol_¶—Ć\żUæ; |@Ē1˜*™ŻX}a”AŬ _+p¶łrōPK .3|QŒ|į ¦Ż3 briannesbitt-Carbon-d046377/src/Carbon/Lang/lkt.phpUTŲ]Ā_’±nŪ0†w=ÅmJ ĆŚŪ4-š¦@€"CŪ­(ˆu¢I•¤"øÆō!:všŌµ›ė%Oճ墊`Šäżß’“<^¼lL“eÅl–Į >ްdK cƒ!_B2WJļdI×xG Ńīågś^F·KN .Źżō•“©O ķW—Gé[FĖÖZоY¾3 ŠU`Y“‹é–>¬0±wsh,”¬Ż3uīŻĶÕõķ‡ė½ÕaÉ`‚#TSą²MTAĒÉHEö}4IPuŲl‘Jmp€!ąZj,j’Q·!ņ=śŅr PźĶĶ{„yAn!7“ĻįS–|łŹ»drxq ł3ķ[—Ąąī”ŪnDS`)FdKKGb’Õ¤„źˆź±ūŽõögĒ»‡“AŻTÕĘ3҃“ĀÆ(d-‡ź’'Ķ9TO =ö‹<£żūŪvS?žB‹§»Ģn*"­žՃkĀįé:tŪĶZŽv>?*ĘĖØF-zQ…C¹“fūćŸI5ZE5Ā÷’HŚ»” k¹Ńį_›8^Fõ“Ļēϳ?PK .3|Qа<½Ł2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ln.phpUTŲ]Ā_„UĻOŪ0¾÷Æx·b­ŲO©c l 5€iš&d½$nc‘ŲķP…Ūī;ņpä°BN•öGͱÓ.Mh.³Ŗ¾ųū>~~ĻmvßOćiÆ7ŲŚźĮ\ĘLĮ˜%Lœ¢Ō Ę c ‡(Į ^ć„ö¶”o„›šA2äpFUĄ“†Ż œīs3ŗŠtƒ~Ņ³$PLsÉ&±ä$,¤\™-łXČ5|¦ EƒŻ0:³ėF§‡ĒgĒ„•ĶOĒØa† "¦“dA¦i3¦cƘܕČdHĶF‘MvPž°\{éXH5,ŸŸĮ— ć:ƒsŹ‹š‘£RęįÓĮčųóא”ÓŌ‚t’"KŹóX3Iu&9 ”˜I§ †ŌÄ0“ŠŻŠ IdLR äčōœ¾7 ¼oŹģmĆ÷˜į¹ƒ*ŽķU…G—ńNN†iźm׉‹3Tj…tŌŃĄ|3c…Zpąū>“Ł:ķxhļ½”EfĄ:ķ• ^*øŽ«“yŖøē·Å=äh>i LźXZü0)ڰ™é'Ԝ²6ØĶ¬„ŗx ŠūĢÕSYĢ H`Ā‚6°Ūā1mīo1ąĘe~÷ē×µłś¹V±8ķj©ˆ27RWĖ‘—ĖĒAR†TŁķpźfhgyĘ]° N“ŻOe˜ß¹ČolˆT°ÜlFéu„ł¢3#Q–sbkį “nb²]=ƒĻp­Mup٤:XµØ-äOKo5ækeµR„t§oĻū܅.¼tį• Æ]xÓo[„Œ’—Ń˜I„‰±"bLJWė¶S±īD%[ĪrŠr”r²%ā„A– CažkŖßŠ—Æ§¬]Z»5Ž_ܲU‡“‹Dҵž_%« køĢŗi$ĖBV a®\Ņ2‰:Y$ė$6ļ§0÷œOš…Ž;8$ėWEfܼrŖgš5»PŻĀ§Y$]N£h(xUE'ó;цźd‘t[\m¾ķżPK .3|QƒpX]l5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ln_AO.phpUTŲ]Ā_„MNĆ0…÷9ÅģUÕ€ņ# H• `‡P4I¦Ķ؎Ę¢,¹C/Ą’+ސU%…“VBvxį'æłüüäŁiUTQ4"Į}Į–l‚V( n ZĢQRgƒ•­qE“ĄöųAvēĀhį†|ŹŖ0Kūć™ G§“Ģ•'{ōŹÉ“¬ĢU­šŖP@›ƒįŒ¬OŚ„“•Ceƒ÷ĢŌ ÷®óĖ›»Ė>jč§*4č!gÆĀi­”CĆZ„Ičī]-…‡ņ”ģ4ŅZ, ¶‰Pe0£ Y-žŸé@č©f!H’‹Åm’L⩱“š3ń"+nˆÖ9¶>†ćxˆ©%»Ā0ŽK·ŽnĢveƒŠb™ŗ_nٽ§hŗ·æ¾{՟7ŚĮ·Ż’ak÷jwxµŻ|¾ųķ&~’l˜ų‰~÷ģévß*5ƒx„ķ ŗ“Ź’Žź‘’•$œ3•ū«}i»ź÷Ś}¬ģńĒĆ£č PK .3|QWöžW5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ln_CD.phpUTŲ]Ā_-PANĆ@ ¼ē¾*HļPAC)Ø¢ōP@£Māt-6ŽąõRń$ŽĮĒŲ8ŁĒc/oG;Åb>/`ƖōäR(ųŌ"¬4žŌ~˜#–‰›égķ9Ü †=††TaŁärÅ©ōZ¶~øł§>x™„śč“~ü:ZĆ8j‘CZɽ—Į(y¾€Ń”IŲįišŪmכżĖ&KMžŌ…“ ŠQP”&*vp"µ©“¼„œ؛Ģ.ņ…y¶Šj½„«œ_Ā[Y#ąŁ° !%Õnóō^ ć0ø:†\¾gŌ(œŸ‘”®ļ·‡ŗ.g ĒezēģŗųPK .3|QƒpX]l5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ln_CF.phpUTŲ]Ā_„MNĆ0…÷9ÅģUÕ€ņ# H• `‡P4I¦Ķ؎Ę¢,¹C/Ą’+ސU%…“VBvxį'æłüüäŁiUTQ4"Į}Į–l‚V( n ZĢQRgƒ•­qE“ĄöųAvēĀhį†|ŹŖ0Kūć™ G§“Ģ•'{ōŹÉ“¬ĢU­šŖP@›ƒįŒ¬OŚ„“•Ceƒ÷ĢŌ ÷®óĖ›»Ė>jč§*4č!gÆĀi­”CĆZ„Ičī]-…‡ņ”ģ4ŅZ, ¶‰Pe0£ Y-žŸé@č©f!H’‹Åm’L⩱“š3ń"+nˆÖ9¶>†ćxˆ©%»Ā0ŽK·ŽnĢveƒŠb™ŗ_nٽ§hŗ·æ¾{՟7ŚĮ·Ż’ak÷jwxµŻ|¾ųķ&~’l˜ų‰~÷ģévß*5ƒx„ķ ŗ“Ź’Žź‘’•$œ3•ū«}i»ź÷Ś}¬ģńĒĆ£č PK .3|QƒpX]l5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ln_CG.phpUTŲ]Ā_„MNĆ0…÷9ÅģUÕ€ņ# H• `‡P4I¦Ķ؎Ę¢,¹C/Ą’+ސU%…“VBvxį'æłüüäŁiUTQ4"Į}Į–l‚V( n ZĢQRgƒ•­qE“ĄöųAvēĀhį†|ŹŖ0Kūć™ G§“Ģ•'{ōŹÉ“¬ĢU­šŖP@›ƒįŒ¬OŚ„“•Ceƒ÷ĢŌ ÷®óĖ›»Ė>jč§*4č!gÆĀi­”CĆZ„Ičī]-…‡ņ”ģ4ŅZ, ¶‰Pe0£ Y-žŸé@č©f!H’‹Åm’L⩱“š3ń"+nˆÖ9¶>†ćxˆ©%»Ā0ŽK·ŽnĢveƒŠb™ŗ_nٽ§hŗ·æ¾{՟7ŚĮ·Ż’ak÷jwxµŻ|¾ųķ&~’l˜ų‰~÷ģévß*5ƒx„ķ ŗ“Ź’Žź‘’•$œ3•ū«}i»ź÷Ś}¬ģńĒĆ£č PK .3|Q× žŖ†Ņ 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/lo.phpUTŲ]Ā_åVĻkA¾ēƘ[µŌ=ĘߌŠBėEA$™ģNŗƒ»3avb-*XŒ‚75TEčA -…Z¬–Ż£’Čü)¾y;;ŁnbōęĮ%Ģ¼ļ}ļ{ļķ¼É¹‹½Ø×h,ĢĪ6Č,¹ń”tyĢ|÷ØŅDv‰Ž¹JUG Ų īÓU6X ?œ$W§‚Üdi‡kMĪuģņ’€„ŌóL.8č5©ØŪcČŽŗā«‘&T„$ę)„]©Ŗ¹s¤3 {8[CæåW—nŽZ²TØOGT“5𒐧ZńN_³¬q“§²ÆB»`3“¾—ū:’*mŚß§Č5EÅĻm ų+ņZ§"‚“Ļ bŗÆi5<3댪rž™i²/41ŁG“ĪĢ9ó["…ŽŽŪó§&{k²&Ū3٦ÖHŽĪ“Ņ“ĘŲżš<L64Ł7@zÜ8h8b i]ē–‘æņ€éęźZC¼6YnņÉ¶Mž ^zō8tk¤%įŗVƒl–9V`ć˜JJ) ¤p²~b²&cŁKq&ŽßĘrĀüK_Y6£¹ĘžóÆŠ%(ø4A$©XdšY®N‰ÓäˆĪøĀe»{;ŽēćjµõÓąW`¢¢BcUœ`! ¶±ī…«x“ i+Ū7‚Z%ąw%A†—Óū0t»>rgŲŻ7PK .3|Qxł°¾3 briannesbitt-Carbon-d046377/src/Carbon/Lang/lrc.phpUTŲ]Ā_•ANĆ@ E÷9…wi«*ŁC)ˆR¤JØ `‡PäLœĘb:<3­z8·”·ĮP÷õƲżģ’åŁmßõYVN&Ląµć-[Ķ=JßBģ(µwŚ2ø”BŁ>2cøFk 5dzśTŽ9-},ŒßĪ’ŃG/Ć”6Y Ę÷įM]– ¹ ’®õ²ÅČŽM”·„ŚŪ1퇽§Õb¹~YžN žb‡ö į…멁=ĒN'ź=ų$†TØĢ–™PLāEšP õ i6Iļh$ō™XŖźaõ\UE^’+ō3ł޲ 4ņ-;Éįfł•ńÉE8~æ~”)K°YĘŚŅyć«‹$ŽĒףPK .3|QśŗJ~ą)6 briannesbitt-Carbon-d046377/src/Carbon/Lang/lrc_IQ.phpUTŲ]Ā_-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5^l]^³ŚĀ—łŽ<˜?PK .3|Q㼦tM.2 briannesbitt-Carbon-d046377/src/Carbon/Lang/lt.phpUTŲ]Ā_XĖoŪ6æēÆ ŠN²¤éÖb·k×ĘÉśHŠ  : ŽŠm1’H§YŻc=½­ēzč=—Ł’×>Š”D=œbŠFßėĒß÷)łĮ£,ŹÖÖv67׊&:‰ØDš3,ā¤"‚v±sŖ ĘSr|ūz°žŠzIä˜*…Œų ‘«ŪO:×}.r ‰NšģRŠi¤f!Jh@˜„%Ł„‹+ŹŁŹ‚A7£ä";x¶»÷ņxĻ@åüT„ŗĄ…T*AĒZ‘]PøK®E@`”0'»c24±µŠø}s捎"šŠ,#č5ÖAD„ÕžH­xŖŃ -xˆ­NĒŚŽĶpbyļĪOV|®„G8Ń)…āH«>ÄoŠ!IS”̬ź1 Õ=Ē kYz>טQÅŃ>V…źqL%u±žn$ OžI4 Ibµ{LŠ?5Ч!vŖcšr–÷+!JQˆ4ļ+E„äĢ*_Ņ€'’~–č)bōLāæÜZX‹KI=Ń*֎ÓńŒ0“Urņ€§”]B脞/’a˜**«’Š<ž'—N÷Š.>`¾ ‚ĀģF8‰©ćóŠ'0 ø ²ž+N‰Œ6ņ. ¢“`hø†ąź],zč燨×øf „Da:_!,æö¶\\=čv”‡Ź©Øn[|dšĻ=‰Hź”ęŠÅ— \b_׬Ļ f‹ó†,ŠO%B3¼Äq=£†ēžĄ„/U…ėa%`OOĶCoz3ƉŖ•+ÜØ\•˜2xRėe2ŖŖN”uł“Ќ.Į% 8«ē$I¬YčUŁÉ²®X^ъ½l"˜Ŗ‰;ĆSޜ:-ē+„ 6Ÿ®v°”ƌyVQį˜IjĮĆRR¦Å†¦…b¦cńޟ¼brĢ„“ĀķTnjVމ†vIlĒk@jóPKÄv½]ŪéOõF“÷Ś;<=cü¢Łćf'»żl·š[ĘņėõķģÄźŽņÜÆok'Z×>pMo;1V=÷ßhpw„:žóZn«Ż]«kžėovOą\üV»;œnÖė6Š݆śŸ]nܰÅÕ¹i;źsĆę–[B&(Y~F}ESR¬Ö#cBpÖ£į­Ā9y\2^x[u'™^^•F‡N…Tg¦G|rVžż?x½½uʇ¤ņmę^Ņɤ¢/Ž#Eć²’ĘØxyö/’†oÓāšĆ%‘Aé4Ćq•\ŻįL)y“Yæ×-?x#ęB\Ä„āēöĢ«–›­Z“ŌÆĶ,Æ}cŻŒĆŹe‘3"(aÅ@ AX@ÜÉ HŖ:…ŒT ™‹” Ąa–]%ń,?ūPæ“Ōą-_˜†//fTś¹X÷#0Į•iéåm&–ē°'įC€ņŽ–iŒÄĀŽĘ|–’Ū'ķŹj§d U‚g 7Q±¼"‰µ$”dņĮčŃśépųĒéšt4Ś<ĶOåĘ÷‡p=šē’·6hc§×(|-ŖŖ.}—ŗKÜåģŅu‰ę‰M3ū§ČĢ„å*“1;< åT8Åł«Ųć™Qį‹˜)į‰Jč„§ˆ‰šQ”|Āb_^~†Ķ°T4Itt¾ąc[Qņ±bÉNJ7"Pņ±²ĒĒėpÅĒol¤–‚[Ś-érč%h¬ų|0PÉY cQH SY° üCT Ņj¹pĢU¹śąÄĪęÓ§ż4u£å Ēž„/eĶhMæĆµ}xø=ԌĪję [ČøÕœĒ`€ŒO{ķƒNŒšc‘W€ŲŃÜĮä%&į£|PlßĆņģ!ČŲ[Š‘7ŖrĖƒ.—ߏć®†C‚„‡‘ŸLM ćRa °Œµ¢0Ż#Ōhøļ%ŅmэŒ¹)sĆD³Ąü…Öæc:±Ž–8ņ‚Ŗ ź4™+0?_Żé×tęr?aōīlưßo‡Ü]rw›āfLH&X'jeŠ-GoĖ[Uä»üī]±×ĮŃŻKŻxŪ·„Œŗē‰ēwPžŃżµ’PK .3|QÉåµ0Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/lt_LT.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ Ņź6;óPK .3|Q\BÉ@U2 briannesbitt-Carbon-d046377/src/Carbon/Lang/lu.phpUTŲ]Ā_„R=oŪ0Üõ+ަÄ0ltMӓ؝"AeM– J¢$Ö©ņƂ’G²yęėI§vŒNåBņݽ»ć“®?wuEÓŃ(‚<ÖLAÉ øwDj%čšĀŒČLp,å+RŃ rśE~ _%#–TeLkøĪ†ėŽW”'¹hoõ›NØ4M¹č6’UµĀ hXN¹BK^ ŁĶC×P‚µ5£½ėKīg·Ė‡ŪAŹåÓ5ŃŠSZ²ĢhZ@ĻtfWĀȜ¢QįĀN#Iµ‘ˆ”d“JŚ5$§øēF*¶¦’ž2LRHÓłż4ÄSŹ'8™x ĻąŠ[*YĮhƧxŽēŒQ<4¢ńĖŲÓzJWŁØ@KLĖxeār%ŠkYvK6vėĻ„WvļŽ?ķkļ •}]{nb2'š^?UµśÆKpš’æU^µ÷’ė w.…’KØ\ׇĻšóU®=±{¦j꣏¾6®ŗ°{ŽŽnv?¼¾ńHLiX뾓Ģn»UµżŻŌī‡ŪźŠ«ƙ˜A„Ŗ·»•Ż)»ī3†÷ķ»¬'ÓĆÄ^äÕÅ4&D ÉBŖ@©C†ąŒƒß›YɤŅ)Ī8e:ŒŪ9~8 īoss%WN]%¾»»jŃüx8B®”:=4Ÿ.¦OøN ‹ÅĪŃcŲćpīżF+pĮæøųš—ĖŃPK .3|QįĮĪ‚3 briannesbitt-Carbon-d046377/src/Carbon/Lang/luo.phpUTŲ]Ā_„UĮrŚ0½ó{s’aąNÓ“$NI::L§“Éhd{ĮŖmɕäxøõ7ś{ż’ ÉŒcrØ/;»oß[é ‰ĖOyœ÷zƋ‹\Ą2f V,E01§RƒXŽnØ 7„0”k˜ŽmūYxגQ3TÓ.ƒmś™›TčA(²«Ŗõ‹VhU¤)„"ßH¶Ž5PAŹB䬌ä+!3Ŗ™ą}ČS¤¦öʰ“¼‡ū›ŪŁāv+e×§cŖ”¤ "¦“dA”1‚’éŲ fķJ2D3(²‹ö$źBr RŅ ‘˜§4DĆB*öŠgL"āß?2š†ČĘÆĻ=0Ÿ—”dĆ̃WšģĶ}yó„÷Ņwx‰˜Dt£*ük‘Ńœ„Ū¦ļ…H`ÉĀx›l#Œ%ۈ}a²Oųśļļ?%ņ}%ØØ³5*њGT,¤ŽM~³Ÿ––>~tĮwaęµ›,ŚRć’%” ®ć~‰Q ć0fhØ+»ķׅʁ:?4”.ī|Ø E[9`-ķ@ČFanXI³ÅüŅó5Ś–Ī+ÄhīøqžųĘņœg¾óĢwžłć;ž\˜»`ōēĻ:ļOī]6©g¹ŪQŁkK¶ü°“ļīn”e^’X #„ ƒ|8˜ÆīP˜N§ŠFa‡C{zŻ™Æ]Ķfwn{4§` 1[s£P\W]ަ¢dO5œRµ˜Cóœ4²%'Ųūū湟E ”Ż%T×`n„CyDSqĎŗ!Jŗ˜Ķóč`õʖćnˆ’Nje%ćę)®Ü¢ Kč±×Õó6JÉ)×cę ¾Ū|ažŽRļą”¼'órž”÷PK .3|Qʰ:&r#3 briannesbitt-Carbon-d046377/src/Carbon/Lang/luy.phpUTŲ]Ā_UMoŪ0 ½ēWšę6bģėŅuŻŗ¦E»Õ°ö2…AŪL¬E–<}ŌČæŸ,ĖiŒ C=$śń‘¢%ūōs]֓I<N` %Ó°dœĄ­5*r ¦$ø@•Iį |+š;nK?Źį«b(ąŽtƌÓ¬}ü"Ü£4ó\Vgz%•O““œC.ėb«ŅŠ8ĖIh')–RUh˜3Ø9”ƞ5>īöęāņīž²Måė3%hPCĮ“Q,³† h˜)ĒÕ®„U99”ĀO« RøIÕsrkn•fĻt¤čeŠ M7?ÓtÅ$ę®3Ń 'ąFŌ­ Üč>ĮcōĶVX3ÅĮŪķm!č²µ«tõĀ÷Ž»ƒō¤6 ’šEO³”fŖK©LÆüÖsßłł½Ÿ?“ó9oē›ßy³Ÿ£bā’2TR˜r»o»m_Q¦z;Į¼ōĘy­ļ ĶaåŲ1VRoŻSmØŹ°µ¬ģ¬;łÜƒ ŅŽV2ģŠPKW† E +ł dƒfŠŪjug1lŪC¾}šHt}}RUŃl×qæć9Ńząģ\‹Eœ$ń/7ĪŽ I’Ą¾wׯła_}K+ܘĮ!²Ū_ć¤+q†§v{ߐė£Ļv’K+Œ»¢œ1H] '­amF±1#°óź!k[5¤ŁA•jÓQ /wk!¹5Xe‡ešqtLGItAī¶{k’ń.Š×S1}męŽ_ŗoš€Nk+ātP”GĒt”D8LøŰ„•…=|Ā‡ó•tLGItAšr)ŠQ·H¼sć%Üoóéųćä/PK .3|Qäiļ"c2 briannesbitt-Carbon-d046377/src/Carbon/Lang/lv.phpUTŲ]Ā_„WĖNäFŻóµk‘žŒ”™LĀšĆŠ 4R‚Ŗ¶«Ū…ķ*§Ķ0™,ų€¬ų”%æeó_¹õ°]å&Ń“iµŗ|_ēžzÜŪå×ßWYµ¶örcc m ³ŒJ4£A0VX(ÄgHeķ`1å TIŽēd ¾Ę}=yŽ Š:&rJ•BƧFüČÕ8įåļŗĻ…šé¢@ Æng a–¢‚&„IHÉf\”XQĪ6QU ŗ%×6īčŻĪŽń鞁²üT†ŗĘ„T*A§Z‘]S•øK®EB Qjɾ434±ŪZe\Č-óü:ÉhA«Š X'N[QQRF„“ΤV¼Ōč½<ÅN§®rķž¶Y* Ż/õmż'MĢDR¦(Y8Õ^:ĒB¢·„ĀØ¼ß”ĘŒ*Žö±Ā^õ*¬•D§Š×ä>ßvNT%uCa'ƒlŠWĄķ’¢šY˜ æj˜M±WŅ’3»QŠz@,`7O°RDHΜņ=–•åˆYĪ2ofsL^üs/ŃOrōNāOøįJ¤Ņń/p"Ńŗó›Īü ē’ų‰Ā<%Ś›TĮø~eDā$ļü£f ’Ū½P:_CšŻ,Fč»7hō5šć”’ņóVĀĮŻH2xĖhÓǬ€/»4æ½śŻ:~y4¬°Źš”e}ĒČć}č5ø'‡.8°;f:PkĮ†eŗ&$o˜2’Öwõ_õmļ5XöąŅDTĮ0ķĄh‡50SŠŪm„ÅfA°»HolƆįĖ6P÷®«AdŠršŌP, ­ÜE6ę64ZS©‚%ķPW³rčgŠ ŪJŁćƒŖļŗccDĘ28ńń „Ń ŠĶ mІd’$į¬ŻBIr3‘.Ž)ŗųÖ”—’äĻŪģ2~üž@ZČÓyŌ9w€ę_C¢-EKŅdœ ^^2ī+¦Ŗļ’ÖīƒgŠ=ac@‹ś®Øoó`Ją‘„6KozÖeb;–›”ŸeÜķĀH×óōē/E°=)Nķ{Ml’özQČb „éo5Š“Ÿ˜Óu½Ō†ā&ÖćŌF A„Ę“Zī":n0QSźQqī+€˜ēŖWč^#‰PƒX É5‰Ž‘y²Š~³čwšž‰ńQ+ć¹~Š[œ'+žöBæ©ōWČG­‚”tX÷+Öt:¬Øć䃫ŗGä¹e³\×=VĻ.ģ˜ÖŠ•Ż#3¬“cj»Ēā9ÅŻ;:«»ržY޽XßżU\ą3*¤²ŪĻgŻ…łUp¦@ļœģ‰©}5łĘ{šźgē£Md¾H34ŗh0člÖ];†…¦xk#¢½ļ.pš”¼ļr!Q?ØöFc_ŠŻ˽žYõљs=8Ų*››˜7œ–-)#£3ķīŽ'“ńĻšGVo¶t“ĄhwŒ&š‰ż–q6Ń2“£’Œ.‚ĘĖä§;’p;S¶Ķ’››X+p%Śg% {µRbŽeĆ(’w’„pB?å„Ģøhöųt16Ž'ö÷'ū{fwœ>·Ćéx„¹·Ą°]¼™:¼°/ź[8 ĘiF¦B·R‰…ŖoĶ®@U4Zzå“W,x.šg¬ēZśHI*EŹ©Gä¹āĶ3ć‹Ī’Ä 1Éh±ŖqŽ'S3LĢŁF£ķJ8‰šį8ł±°V=·³vyr;s “K’.Ō¾ų»\•€ķ|¼Æ“ģ6nł­ aß®ż PK .3|Q“ārĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/lv_LV.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm£Bķ0bŅ$“ą½JSw±Č’ĢqVń÷øO֝Ļw'ļ^²ĻĘtMc oO& :³e4x„½å!E„܏½`«ŚE¾ušĘd#œ± $»aÆQa’Ö„ėóæō=ńj4ÕĄ„üĖtń6ŽČa,§ÄW+”ā#ä€V¹;į¼Ž}œöĒó×q±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ńV‰śžpśģūvӅ{«Ų<™?PK .3|QJ> óO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/lzh.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ cH“Š0ıJS·±–%ĮqØĘÓćvœ";’_²yL.UU³^W°†££ y=“a8€8„­į.]Ł“±Vķ,æ±·šĢd0w$›nŸ‚ŽQjĻ’Ņ×ČKŠP¼Ӆit&ōąÉbČZ†Čg#Ć$Fw?„Óā{Ūow‡Żµš‰3“ÉŠS¦®ö0‘8½Qö [Ō¢~męĪŽĻp q Šć`Š`—ŗ’ńŠGœ•Ź'g:²ĘūĖ5€Q 5|b„¶}Łæ·m½jüÆk_µ~ćź¾śPK .3|QąƒVńŒ6 briannesbitt-Carbon-d046377/src/Carbon/Lang/lzh_TW.phpUTŲ]Ā_„TĻOA¾÷Ƙہ6^LHõbH3™Żv'lgźģ,Mo˜¦j‰— ?ä"ńŠ`4z9ųĒMų/œŁ}³u#Å5īeŽ|ļ{ß{óvęĶŻmĶR©25UBSčIĄ"Tc!Ezm©Ø!P“H¤+ø†¼MR§eĶ5ō oŻ—Œp“F#—)…ę\³]ąz+TŁy >2ŖÅaˆ<ŃlKV"ÜG!ó(tJ^²A|5CJ4¶Åh+‰[]Y\^{¼l¤’śT@j‘ł,R’¹±¢>j1h®=±ōØNä'ÅVĢ Mģ½XBF³ĘžAn\Ÿ©‡ĢõfBᑐF u—…¬'!’ŖXrD¤$m,i3$Õ«ˈmŃ IŸÅLR„ńŅŹ#ŒĖN…ņ²n¦36JHNzœČAwęJąÕp֟n\ž}«>ŌßśŅĘp÷øźL'¤jŗ8 ĮUŃĪÅéöšą•Öv.¾æ¶Öi¬ĖżżĢŪ·X÷$ću2l`±³C‹ķ<Y£4f“fŹ×ƒ#Ż@U!ĶG†4ŒÓ^j蚬«H÷Är:rvČĪs4ŖeTHVE‹ŅMŸ“m_®¶æčÖž¶ ĀX:Āb=°tA™·o±īÉʹ‚8(ƒ,h‚ Ø]+Õ`üæ„“5\c2RŲØš]›™ØŽ ęqÄҶåēöĖȖŽø p; õמ ‹õĄÅÄŪ·XŖ›š:6°$8’‹M -H`°X6ńö- Ɠa‹Łta1 ²›L%ómŲ_sp‡{Ÿ #„d=vf=s….?¼Ń¤Jé1!ICFܐ¹0“ą¢Āæ½¹=}ž×«7 3 .¬œz ęٟ?ŽU 3 .* 'd\Oś’źüżų†Ąó+Ā%øøxQOp?_üńŽŲQa&ĮÅ„G'Ļ~w4<8rģ<ŗĮGšųąlåŻ»ĒĆżĆÆo'­ˆ’7Į7«T'o—~PK .3|QŻÕ-ņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/mag.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې*”ų8Wnź6ÖҤ8ÕŽž“棳ü’Ćól碨öūöše9ĀĄŽ Ÿ3ŠB@-Į„ >ÆĢG*³v•ß™{xF ŎUįŠ­ć‹ĻcŠŅ„éé_śd ’s`Ā|­śņ1Wś!ȄŹĮ?Ąģóī—iŁ|ļõńÜ|ž×؍O-*,”ēØĀ]Rźaaµł&³ĒÄP.ź7Ųj}įźżö= ˜œ‚ŠøÕ„H7<–˜©Ül±#eƒĪ]oBšÄgĆOb!hŪSżŃ¶å®šplė¦Ģßø{,žPK .3|Q“śX«6 briannesbitt-Carbon-d046377/src/Carbon/Lang/mag_IN.phpUTŲ]Ā_åRAk1¾ļÆx·i—uÆZkµ­PØ=ؗ"eČĪd&”³É˜dŗģM bAÄSJĮKV—¶ˆ…D’J~Š/™Żi·xļĮ¹$ß÷ŽūŽ÷2oåaÉŹV«×n·  /אń‚ž%Qd†QX'Ŗ/RÉ>Éis}śR² 'vØīsc`„ļįš@(M7‘ƒÕYź©‚PV$²)ž3D¤Pš„ -E&Հ.EŹ‚ä8†ŗķ­õĶē›^*ų3Œ )×Fń~eh CnFŠ»–•J(6JƒŁžŸŠ×>Ŗ “Jßó÷;ŠgD3’3¢Ör)ó‚ęJV„ö¾C‘¢¦RˆRd+Z$”x&•Ņü€.)śŖāŠBol=‹ćnŌ£¢‹Ļuąe š‹źtVgT ·mōžövw£NģÕG4Ā°YEä쩳g/żīĘÆQ©sgy¼Č~söwĄœ=©©·ĪžŒģ;g4‰GõķŌQ¾o0'Ø5õŸœ [SSg’ š*ž½@ķ&÷8PŸƒčU v3żKŠ™._ Öų£Ģ’üCJ÷S2ŗŚ…”će=ąÜĒų}3s3×a0<Ća Æsąūć;4õ˜|Ü 5 ń“ŁøńCnŁĢ€‹[¶‚6b™ÅWŚÄŽ—G#JTšuw¾ĢTń”ÓAcö,(×ūY[žī“k»ź—śZ;ī-ßożPK .3|QŪžhńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/mai.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې*”ų8Wnź6ÖҤ8ÕŽž“棳ü’Ćól碨öūöše9ĀĄŽ Ÿ3ŠB@-Į„ >ÆĢG*³v•ß™{xF ŎUįŠ­ć‹ĻcŠŅ„éé_śd ’s`Ā|­śņ1Wś!ȄŹĮ?Ąģóī—iŁ|ļõńÜ|ž×؍O-*,”ēØĀ]Rźaaµł&³ĒÄP.ź7Ųj}įźżö= ˜œ‚ŠøÕ„H7<–˜©Ül±#eƒĪ]oBšÄgĆOb!hŪSżŃ¶å®šŪŗ)ó7ī‹?PK .3|Qw'į0 y 6 briannesbitt-Carbon-d046377/src/Carbon/Lang/mai_IN.phpUTŲ]Ā_ŻVßOA~ļ_±o¤¶ńт ƒ¾C.Ūė¶·ōŗWw÷hś&$ÄG„]±ABBbō_¹?ÅŁ¹ėŃHŹ1±/׳ꛙovę¶øÓt›¹\ql,GĘČ#—+Rå#šlR©‰_%Śe¤DeŁ9uZcąśˆ3JīINY`ŖĢµ&ecN 0}]püĘdB½ļKLT <8~³-yĶՄŠ ńøĆ„‚’¢źĖÕÜyŅōl•³ĘĶĶ–fΘTØO»T“U¤Ā•–¼hV!-®]š€våŅaP؂b‹¦C{7Š®/Õøł~ƒĢSą'%æŃ 45²Č£ŅqI‰ Ķdž<Ė“YQį”ĄGҦÜ:]qéT›ŗ¾ošĢÓ:¤¼PŸR“(Q30–LR*%mŪ’5=ź0x:T|•Hö$ą’Ūžž]“ķ‚Ud¢#±ņäqĪ“āCQ¹=™@Ļ!`Mē‹KKVĖńĆjųB»I„…»QēužDįÆ(| ‰zu^EįĒŲx…?Šł9 ĘPL>Š:ėQŲ”ļmŪ/‘õ;õo ?Dh#M¼…§)e'ź<ƒØŲŲCžVl|Cc3ꬄäwØŚä³ū²ŒP’ݵ«WhūlnF£)øŻÆäeļeP°Ÿ”žĆŒc«~=>Gķķ‘R:O3¤c Ż@ĘĮ9_ŲˆČv‘™RŅĖ@ Yå‚/Óy¼UēÅ4øųĒR@†ķWķ*—JŪF—±Śp× ®›½ g’W8k¤bć„:ĄĢGøF§ų½›īąvŌē€Šq²4»5īųŠ$ ×Qõ‹n,E$ó8-{, ¹"ŸŚW+Ņ÷g‚öšlĶ*A3Vļ8†!Q{˜|g ‘!'ūm®Œ/0±ńŽ ÷ńTŃŃEäS<Ż‹¢uMy©}=¢ÓµĢ¤N_ó„p¹›Ś—eˆ9.üg([(Ō}čdv„’Ø=Dŗd{ø€æź ®Ęž_»wS Aķ«Z½•ūPK .3|Qš’2¦óŹ3 briannesbitt-Carbon-d046377/src/Carbon/Lang/mas.phpUTŲ]Ā_„TMoŌ0½ļÆš-P­ŗ÷ņ “Š-Øå‚PĶ&īʍcŪa•c/HU/Hģ­§åTåŅ[ÅĶ)?Šq¼)»[-PČ!cĻ›7ofbēę<É[­ĪŅR‹,‘ Ód‡qJŠę  ‘;Ä$”<՗]Q ŗŒ±.üZtÜW Ł ŗĻŒ!7ūn{WąVšåHf·'”¤Ŗķœ“Hę„bƒÄ1į,¢B£¤Ų‘*Ƥh“œS@ßF‡5o}ķĮƍ­‡.U]ŸIĄ!h3mė†ĘdČL‚Ö®e”"ŠBq]l§„Ø)”  ””¢9‡ˆ¢ „ŁzMŃ×S”„awm3 —ƒĖ8™ M^µ>AF‹Ķrė6y|'RH«CQŚ1¹}lĒ™żl·=aHiC©'„'E¹=ęöŲ…»±cS4A§Ü¢¹Ż=˜’i6ģš Ģž {^*Ō‰T¦Ģ=ϘŚįwĀgNœYŪõś™¼œ*cāæeR˜¤iž‡ųłž½š¤°ózhoq€ÕĒ{ÕØśxvPRē}Ęe,K{lO¾>ć¹HķIjOq¶eÜ~ŹĻŽDłķčŪū9ų©=ݵ§ÕHM’õ0K”ķX3įy5B=Ōģ»V¢ŖĆ Q'ö‹š{¬”^??ß׉«<­‡æaÜśģĄ½õ\³3ćļoz½hÕ-ŗ²tf[pvSÖena…ĪŽÆ‹jźqö1VRG$Ķų| ŚžŅL&]»j÷ś‹Ś¬®®dYŠž¶¦­g@u»^ÆóŸ°AIÆ×#—ŃiŲćä²śEXŒO›, Ęī|{%å +‘,ž‘8d“tē­Ó!œjMå śœNWІš*æīČ ƒŠäR 0%R YŹ ’™ įæ {~‚’ÄY¶†ś‹g“\)Ā«xަ‘ń ;Y(”’:ĀæO=u…ēĻAAsĆC.ęśü”Ī}¶“žlē_›ńp›cūśÖOPK .3|Q[įNĮóG6 briannesbitt-Carbon-d046377/src/Carbon/Lang/mas_TZ.phpUTŲ]Ā_-P_kĀ@ æO‘·ŖHeĻsNęƇmocé5µĮz×åR‹ß~±,/!ÉļY?÷mļÜj±p°€Æ–34ÜXļQRŚģPŖmĪx¢Ņ°wų,ĢįE#)W¬ ėź>n£Iː.›č[’IØŗBźo§Vc ŠŁ,c“䂏).”ļmwe'Žūa·?~īļRS>mQaÄ 5g®„FÖÖ.–=§A™Q=…]9!$ŠąĶ õ²É|„™ŠļĄBążėįĆū²X]0—öšb ߬І%«Æž? xŚĄĆŅżĢŻPK .3|QŸ·N)hj3 briannesbitt-Carbon-d046377/src/Carbon/Lang/mer.phpUTŲ]Ā_„TŪnā0}ē+ü–¶BšŽķ^(ŠڤŠ]­Ŗ*š$ńŪY_Šų#śš_ėŲ”‚EH‹Ö/3žsfĪĢ8põµĢĖF£}qŃ d’SE¦“@bm R1%:GŅ™nCéfز܊~–ž“kI“UBµ&WIużĘķUčV*Ų—šz#¤+45EARQ.%åšĻHASäŹJņ© 4¼IŹĮĘŽ(.\ŽĆ ŪĘżŖ”ėOē ÉÉØŅ’&FcFTē±½+adŠV(sͶµ‘œ€”°Œ%–¤hmj¤¢ox&ń·”I÷£8nmä-»™ I^Ğ€”¤EĻ_ČK0ڬ,lV·ĮkÓ3ˆó –ŖfÜSĆ(T¤ŠH`f.*’PIƒÕĘ»źpĒL(zP;V¹z«0xvåG—Ż8ӟx93qfų–b”’W!&øĪ·Óė÷Štƒ‰‘·ŅÜM¼^•Fn|lżīĮč—į“v$ųXgJ»ąK,qĖyœėĶ»w#ń¶öģ·S¹ū=ķmiŲqßōƝr§ė{yņ#ÆWk÷ŃšŁ›‘kįÖmbüäVšxļLōųŻIö»ržƒ­wąB.ü0q‘ąīī’± ¹ ŒwK„ö@õzķ0l’“gÜ¢$ CrˆīĀ'‡ź“Ģž&9F¶Ółń–Ņ'\¦ĀpM˜}W†v ķ6)P)"± XóO!C|Bł×ż+#Ķ$Ua§Ń!>M£”Üž’ģ'Ł2āxWõOļßŲŸ"ąs¦‚g{3:G~\EB†ų$×óO?PK .3|Qāł×}ņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/mfe.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې&ĮĄĪUš:µ4 ŽCµ·'ķ8Evžædūm¬Ŗ¶®+ØįŪRC”œQ±@0 a§ø¾¬ōEŲķ"æÓ÷šŹ¤<œ0õ$Ū~_|ƒ4:LO’Ņ·ĄkÉ΁ńŹ4Zåp¤Ń§RéMąI ’Ń”*»_Āyõ½w‡Ó×a‰ZłÄ*Y%( SŸ˜Il¹)ģ)dÖXІ¶]^øxĻžāĆģa@£²`×ŗœš†Gœ •‹Võ(¤•s×[£döÅš“‰ŗnüģŗfÓN»sS¾qóXżPK .3|QųžśEL6 briannesbitt-Carbon-d046377/src/Carbon/Lang/mfe_MU.phpUTŲ]Ā_TĮnŪ0 ½ē+xs¤Ī½ėŗnmH{Xw)†B`l¦bSž$'Hž(ßŃ-+m½5>,R||ć‹/uQFÓńxcųYhK]H¬Ńz0KšĮ5Ś…a)e+|¦TzŪö“ģ¾Y ÷äŚ{øX“Ē+–£ńifŖĖŲśŻŲ “lŹ2So­~.< ēPźŒŲ‰%/­ŠkĆØKB©­5mo~{=»˜µRį~¾@tkē­^4žrŲh_"ww¦±‰Q.;m'l¹__ėĪŪü °r ?Ƭ¤Ģ[Ć:spmŅ Ģ}ž‚üpUˆ™+ŅՕėzŪ™‚ %ßX“·ŹR]bF³Ę:½¦Kæm ”ŗ¹ż”TšL‰SYu2_£V:é†u |¾Œ„Pž‡Brs3½»›>>&“=u!© ū"r’²ģG“%­­Ž†“BėŚˆR)C!”wš»Pvm¦ńmpT{¬BaåĶ¢MŲ¬»JN2sŅwVNÖēßü£y4޾¹ö=£a“‹fÆV¢UŽŪƘ¹®ĆL„ę\GƘ]Yźņ]Œky©5™@’æ…{Sˆ|Ō~7…čv’Q0jż«T ķ’t:”-Icxāē™iŲĆłeŸ{²Q Šß=¶^GµĮæ: :Ę{æŗ—}EĢžfD5@ļZdµ=|'ē=?Š :Āėą¢=¼GĻȞy|½W1¢ Ēmj–ÆPgšå«ųŗīų®|Œ¢čze†ū Č_ö;-ė;ČøAÕ°ÄÓé§ŃPK .3|Qš³(±ńN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/mg.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ Ū@“`>ĪUšŗµ4)ŽCµ·Ēķ8Evžædū8¹©(ź², „/G zņzN†bāv†ŪteĻfĄJµ‹üĘŽĀ3“ pĀŌ’lŪe| :F©lž„/‘× >{6N¦Į ˜Š'‹!ieč#F(†;˜<ŻżĪ«ļķø;œ>KŌŹ'ĪĢ&AGI˜Ś,ŲĮLāōFŁSĢlQ‹ŗ¶^^øxæĆ9Ä9@‡½É^€qXėrĀ+qR*?9Ó¢5Ž_®Œ’9Øį'#4ĶžųŃ4Õ¦‡ężµŅ_ÜÜPK .3|Q“éBž»5 briannesbitt-Carbon-d046377/src/Carbon/Lang/mg_MG.phpUTŲ]Ā_„TQoŚ@ ~ēWÜ[ڊ‚öŚu]Y‰ŖŠ‰vÕTEN␗;ę»”²_?ērĄ² ¦jyą|žģϟc‡Ė«bÕéōĻĪ:āL<Ҋ\*|®€œ0¹pŠ Ähv„KX`cėš“ōT|" ZĢŠ&Ņ9q™Ō×kĶWćz©)ÆBčؐ'Ź+„DjV’‹Ā Š™P2Em¹¤Ī •ą¤Ń]±Rģ{‘øöyw“›ŃģaTSy}®'Ö`E&­#™T3±–®`„µ[SQŠ\(óbūu‡uī r…!{QŪēÜ.Š!&u_Č|ĒŌ‰Ņd2—Ģ•lÄēŁ×~’NźźULAĮģFĢ!3üS¹\BwhĪēҲ%ęƒńd4ͳLJÉ`~?»}Äń×Ŗę(=C‹nĘŹäėuNˆ½œ¼6BW‘@›˜p„ E>ӊ¬|ĮĀ•$q<œĢćøõQ÷xjQW|ė~¢ę½ŁH|ø .ļ¾óŽh8ģM§½'~¢®Ÿ›#*vEȊnA  “FcLhkOy ,ŌÖ`ER5>ōĒ­ŃŠœ ¼c`ĘJGŽū€+eŅ\ī—Īsf^vī!ŚĘn+Š-ĻČķuMANŠŅt”~ØŖ†‚»ZkÄe›m’<ą2ĻǦ³RƒŌžźź;€ ÆK°—PJėC~šŅ;-šŚ³ėĻ­ŽT‘Õ±ŠV³+/P‘ļO-ĖĄ螦*„ž/¢\’u1SÅ&kVĻö. ĮßÕh}Ū æöÅķ°ŁÆ‹ŌTšæ©Ćģū}”ŠZAØ$$ w)oЇųmEš¬Ōm†æ¦= A|0õ·Żlį/¼ų{‚ņƽĪŽĻ·…H¼ƒ:#³eY’‡ų8ÉnĀ­Ev‚ųPfƒüĒւ ķś/Hk`‹©ŃmMģŚ3Ų£(ÄĒ)žOßw~PK .3|Qęqźh §3 briannesbitt-Carbon-d046377/src/Carbon/Lang/mgh.phpUTŲ]Ā_„SKrŚ@Żė½“MQ°wēN™Ų°°ÉĀårQŌx43Ź|¬"«\Ć×ĖIŅ ƒ ²ŹlZżŽėļŒ.?•¢L’aƗ@ęB:Xɂ€m‰ÖƒY#“K£Ź6ųBÖÖņ³ģ¾Z‰fä–Ņ{ø\ÖīgĶ®ńƒĢØ«VśĶؘhŠ2Sn­|PēPȌ“ć’ze¬B/īCY2ö*©Šqw“ŃõģįŗNūó=Tč —Ī[¹ žrؤĢpļĪ›Źc³ĆĒVZ‹Ū…„²ĄŒŲfĮ:łJg–~i ‹ńä~±¤CŅŽLڇ§ų¤Š¬Ģ%©>^ĮSZÉŒėˆĄ‚Te°WüłżV¤ĻżF_mrÜŗV’€Kō¦V<#ś°ū֚ö°Ž’/*édķLÖĢąN¢ £Ē5Nė÷•¢Ųūh“n<Ż&nSFP™ÓTJź’J¤Œöb7õ“ā­Ae`S”žCŽ” qK…<ĀČ¢ ĒX&Č :Fł č®4" ßG·šćżwŗ›ŃK×Ul‚’'@“}}Ŗ¬ ž§~ņhė¹­bģĶ=ŚŚŒšéęmÓ&«M»’ĘĻ„«ĶmPd]›GŚ?øęēi7”ßĶ#’ŽÜ\(=$˜ ē:dCĒĆétųȧCīX˜N§pŹŅ §Õße9Ÿ>üKĢÓ=ŸHžPK .3|Qi©Ą“ųÖ3 briannesbitt-Carbon-d046377/src/Carbon/Lang/mgo.phpUTŲ]Ā_ŻS=OÜ@ķż+¦3 ćNäS"„|HE ‰²Öޱ=:{ף]s:*zŚ4×Q¦H•)Eq?*ė½Ć¤N“mvę½7ovvķwEZxŽhcƃ 8KICL‚Ż ¦ ČLаĒT(……¢ Kphµµ|-Z‡Š˜€Ō!;a¾6•fÉ|w%ż$•3ŠĖ,ƒH3EIj€ E(“m)b©rfHŠ2‹]N]ŻńŃŽĮÉéAmåĪgRf`Ź4pŅFQXä0%“Zʞ]ĖREhqwŲ‘§Š”JSŠĶ…EĘ"“{T*M—ø¦škI !ö>ĮДڛńpī]žqĀŁLūšvĪżŲ²ō2zÖDĻ›čE½l¢WMōŚæōJež”NbåīŒ§³sNĪÄÕ·„¹&}™ņÅ<<ÄĔI­£Üö©nĆź.¬~4@.ę÷7QZ†“Äź*‘Ló‡kÓ"±LŚ„¢”(\|ć-TŻņź®özø¾æé+'¬Ķ'e§ĘTß5żž…-rUżģh]åȟL×»ö’hŗ˜”6}ų@ĘAż ø·Y÷«­žÖA>>sˆxøēž Kœv˜m­{䒶b×ęx¼Éyģ°0aæĻ>”-wodÜ®tÄ}µžbż÷PK .3|QvR`ņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/mhr.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې&”;Wiź6ÖҤ8ÕŽ·ćŁłü’ķė䦢ØĖ²€¾%čÉ#č9ˆ=ˆCŲncŠ•½š+Õ.ņūļL&Ą SK"°m—ń-脲q|ł—~D^ƒśģ=Ų8ݘ'`Bž,†¤•”<”ž`ņht÷K8ƾĻćīpś:,Q+Ÿ8#0›%aj³`3‰ÓeO1³E-źVŲzyį⽄kˆs€{“½ć°Öå„w<ā¤T~r¦E!k¼æŻ%sPĆO&FhšżńÜ4Õ¦7ēK„ßøy.žPK .3|Qä ķ7ö|6 briannesbitt-Carbon-d046377/src/Carbon/Lang/mhr_RU.phpUTŲ]Ā_­TAOŪ0¾÷Wų@,hWĘ0 Š4¦Iӄ,7u‰GwŽÓ®7ĘTāĄÄiā2ʉcQ)l“ō78āķŁqB3FĖa‘¢ų½÷½ļ}~Ļńܳš_+f¦¦ h ½õYˆŹ¬B|kDHÄĖHś-Qäø¼m²E]Ąjų„7‰^F“NĆ"“͵¹€É„ėńź¼…¾äĀ•£Jy¼ÖlĖ—ˆ%Ta B(”¹ØÉx0jJĄWg“aņVW—×7–5•Ń'}"Qƒ„ØÄB)X1’“„Lśķ!„G”PɈŃ;Ō¹Ļ#ésĪźõ#ōš†žłøĮĖ­Ź’‹Ž5‰ēÓ°BźčT”u¤×dŪ¬š –~vEd•‘‚4± µ ń(|½H„¬N'ż1AĘK+o0vøŠkg}( xœd·”ƒžĪ[—qƇówmĶ]Zr¦Mp3ł8UHßf9źT āx_]©ßj zĄīØń×xGuĄ{”ķ›v|öu|`¢‡7gźÜ­9DŪń—”Į#ųždŪgĄUžЇ©]Ć·› ƞÜū#Jp!õxp§#óƒ÷õE /! }Šą‡QnN>)üPK .3|Qk_Ų¾€4 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/mi.phpUTŲ]Ā_VĶn7¾ė)ę¦Ų•"čIMć6¶µµƒ `Ž!ŒV\‘Ų]rĮŸ*FՃ §>Dyƒ[ł½:\r’¼J]HŠ’ß7ß|3»$õņ¬äåh4;=Į),¹0Šœż–Ø-Ø,gpŽz­$M%nŁsāzś³ä^kŽ2³ÖĀ˵~'iØģóDÆ"õŅ•PźņUŽk±åPn  “†RŹTé­Preΐę~lWÅ]żp~łöż„—ŖüYŽvh`#ŒÕbķ,ŪĄNXNy7Źé„Q¢Mevę+ō±ß;Ė•6s?…7å?*āæ?*.į\i2‡ņg6ŅĢ:-įvtļź1|ū ĘóD9iĮ¢O†«żķÅļTū!ÆPŅņžH lu:Œ ū£ōcYOm'2Ńjµpņčžsƒ÷=ŻńÓ`AB7NZ§Ћ稺-N–xŒ[I·ß&™ķŌŌ„ÄUŒżQ¾a‰’›¾¹Ć™’{]N4( Ņg’…Ą­ŠŗVōFCį,ÕŖXIµ ZYEŒŠŁ4]¤)½5Ę2ŻōXH”ČÅqŹJ³-ūXö˜ĻĪę>˜ÆÄÉY/ĘŖV,lˆöÕ*R+“öääģ‹ā­šŗ8,U©Žā½ m(vSqĀ2«¦Æ–!j±˜EäFą}™Ótq1»¾žżBW¬Qø¦ †š‡[qC uCמ+ą.–™`Īä&n: ģ¢~R·į)@ģ?õ”“Y²¶eW=NŗiÖ½·X¹ź“r4„ų. µ<ķ©ÖŽc†…³Nnqį ŗĢM\ŸWOŚ ō†råqŁHW¬™žūÆŽŽ_…ńOŠ‹©=<ŠRŸŠÓv4@¹uŚłį;åģćē©eSڰ·¢šBF†¦;~xšß*ˆ¶Jė×$”¢ŗā-?É­ž[ ™fSŚäÅ4{ü”…økä1Ļ §(/{x˜J— ęšģ Ģg8¾ė•²2tžŲNA±”XB“][­}v\ÖkW1?y©ļB˜Oßäö›>­ļŗ‘?S±tABVRĖĒϚUā7“YĘŪåįA„fæ#3"$]ų`Ox*Ž+m‰A=jįZ3(F±”mē’_%ŚXB­TŚv/ŚSĶĻ’GżØ9¦æŽ¬œžSD¤N:Ah‚Or÷Ķč_PK .3|QpÕpĄĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/mi_NZ.phpUTŲ]Ā_-PŃNĆ0 |ĻWųmP”ö˜1†4iŚš^„©»X¤Ię8Tü=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)÷mÆŲŖv•ß¹{xe².Xż°Ā—Ø0IėŅüō/}O¼M5p)’2]½€#r‹FĘ)ńl…R|€Š*÷CølwēÓįxł<®V[?ńV`±F*Ā4TĮÆķ^Re‡4ne;Ć(•#0Ž*1Bßæ>ś¾Żu3µśŻ£łPK .3|Q{ÉõņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/miq.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ cH•P|œ«4ukiŅ9ÕŽ·ćŁłü’Ćóģ梨öūöšķ(Į@AĻŁ°@@ĀŃpƒ®ģٌXŖv•ߣ{xe2L‰Ą”[Ē— c”ŅĘéé_śy ²÷`ć|e€ =x²’V†!ņd„bx€Ł£ŃŻ/į²ł>źć©ł:­QŸ8#°˜=%aź²` ‰ÓeO1³E-ź7Ųj}įźż ē—=&{Ęq«Ė oxÄI©üģL‡BÖx½0J꠆K&FhŪ·ś³mĖ]5Ń„mźRæq÷XüPK .3|Qņõ^×āŪ6 briannesbitt-Carbon-d046377/src/Carbon/Lang/miq_NI.phpUTŲ]Ā_Ż“ĶnŪ0 Ēļ~ ŽÜA¼Ū€­ė†5P ÉaCaŠ6]–%’j䄜}±É_u‚^ ģ6_$’żHJōÅē¶j£(Y­"XĮϊ-”¬ĀŚ¢80%øŠą %3:øņh“½ü,?‡ÆĀØaO6cēą"ėĶ/:˜ĘmrÓ\NŅoFPé•‚Ü“į‡Źźē¤mH©K# :6z ­" ¾G¦n8w{su½’qŻ£†ś\…:“P°uĀ™wT@Ē® ‘P»5^r ‰Š”Ų$r^4 R”VaNaͽX~¤3”?ž… M·7ßÓt'¤7įfā5üŽ |ńX›įÓåäÜ·ƒ#Žn“Ż.¹»‹×Cč~\āĘhWMgbĖXwuč0`ćŚŪc kl|żb«ē§ŠėŖ^4Š+h…õ‰lŽ·hŹ"·\«ÅźžŸģb ź%xĄ*;:.ŌśŃ:ķ$µ•÷?ōÓÕ^Ž& ā mü“qģķøėĀt4ųŠO»VĒØE‡ÅkīéM”žŲ3yęĪŌ™9_ćÖ’ +Y¬K.5eŚ“ā»):łGQķ­” Ŗ÷ó„Ę©™Šłµė“ģw}Ž£AйńŚĶƐ$ ČZRŒ™¢Ižv)¦ogߟŒžPK .3|QµzņņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/mjw.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ cH•P|œ+7u³4)ŽCµ·'ķ8Evžæäš8Ū¹(Ŗż¾€=|ZŽ0°#Č猢PKpDé‚Ļ+sƑʬ]å7ęž…ŃCC±cU8tėųäó“4azų—¾Ł‚†ä˜0_„G«€¾dž|Ģ•~2”ršw0;¼ūeZ6ß[}<5§5jćS‹ Fč9Ŗp—”zXXm¾Éģ1$1”‹ś ¶Z_øzæüهÅCO&§ 4nu)Ņ%f*7[ģHŁ s—k€&ńŁš“XŚö„~oŪrWMßK[7ežĘŻ}ńPK .3|QÆHlįŃ6 briannesbitt-Carbon-d046377/src/Carbon/Lang/mjw_IN.phpUTŲ]Ā_„QĖnŪ0¼ė+ö¦Ä𣽶iĒNI`“n J^‰¬(R]’1ü÷%)ʁ‘ŽŖƒö5;3+]\õ¼Ļ²Åd’Į¶\؅Dš±gdA×`9ŠQ©•oU-kpī±~VĆ ¦ą M)¬…‹2”׏—ŚĪ+Ż]&čWM‘ØvRB„ū‰†[`jRT،—Tµ¦ŽY”Õz‰Ģ÷^īćŽĆŻźöéūm Šž,göĢĄNK¢tw°–ū‰÷n“£ ½Š.š]„ ĆīŅY®É| ł -’?Ģ?„kfe5“ŗbĶu£Ü\S÷ ­#Œˆ Ā^² }¬ńŠg„œ „¢Xß}+Šy¾@5÷_6ŸĀÆ,°ēĆm&‡/—©Ū±‘Ə‹ēē|/CČ;­,Oł’Z-<]¾åL56¼† Crļ],ɅšSŃ“–ė½a¢g“āĀĘd3l8­S±łč’Āļ°sj„0žćŁ7CG;ÉÉčćŌEņō“x’…GŃ£ą±Ż±Ćxż ×]ėŹ4ܹv)ńŹņĶDĒTȆeĒģ=óÉ13p'ęHÖ¢L±ˆFĀŃuBż7Y-ČŲĀÓŗ.sdü¦©?€Ā4TdQ§ŁĖłēģ/PK .3|Q —ŒĖ =2 briannesbitt-Carbon-d046377/src/Carbon/Lang/mk.phpUTŲ]Ā_WKO#G¾ūWŌa³bX R™W`a"Ų@Š"@ؙéaZx¦­ī6^#7J®Ń*‘rČ!W/ÅZ{H~Ąų„z^=36`v„±»ś«Æ¾Ŗ®éé™]Ø»õRéÅŲX Ę`ÓeV£€ßu"p”Kį%{ÜG“u@öéb5|Ä…%ĮˆÆ©ÜcJĮģž~ć搫 ‹{ó1ō!‘ÓØÕĄāõ#Įö]Ä·”Ę,źK é;\xD1īW ^£m‡Œ6CæµÕ—+Æ7V4UØO¹DA“H°™T‚ķ5µ”ɔ‹3Ø]ņ†°(²C±/t†Św±”\.dU’‡ "Ż›Üę‚F¶ļøtaƒ źDćW‚ų’žĶ‘s)v¢ĀŌėäČžļ½—ø`²FaY)Õ2¬J‚%“Ńx“{ ń‰äņ€…ŗU įĆV š*Q"Ź07åŖÅ¾‚ą"ø .ƒnptZż¶n¹9’]ć:¬ĻрHɤĒ}åę7ĮUļ?æ“ś,Y!Ļį\¼OÓ¤ō ē¦˜ąMŠEXšvΚŃhܟā×üäˆ6)ūQ·­Ü(č})ža żRž_ƒNļ“•e5‡‡‘īX=ęćZ\oģŹŽŪ^;ӭʖm¬Œó°^č3 ZŚå’ZÜ·ū—õCļ-Öī²°¬‰5£)K€sˆĮ»čZ# .ÉR‘dŸĒ>öNtwAU1&ÓŽąŽ®Ļ› &øC’ėą*"Ž¢Ā@ņ“{w^śP›9Ž  ¼Čō”žUÜtķļaļį]ŪŲtŸ¾©# Õķmłyp܍.伎ØDé†ū›ź 5v£ņüļšżüŠ{\ˆ45l]€<÷_r sō$‹–5ŚŪCóŚfäūmÕóbhlß0U)ssŃĢņÄśśÄxåę’IXĒ ś§ūē”/vвńŖĄ=Ų83‹ŌØoĒϚLj’xt9Y¤-³°  ³˜y&¦Oߨ 8®ä½ŠŅķz+x§!Z)l ‚׈Ģ2§ė?[ƒSn§į[śģ#ŪŃi'žZõ±±‚§‰g6Qt~J ō%ńŠa¹0NŽĻc~ļhĪ"N_–>ŅLVŪæøĒžeæ]_ńĮs< ž‰¶5ÜkŪѧÆB3}6uH£¦žFŽÅĶ„żłq::®äŪc„&ćMf­ŠT\ŲĢ'µĀ:<óŽŁJ> חķ3sĻĆg059“‡L‡YePĢIłann&‹ė— ĘL”DZ”Ļ3©ē©rA‡å»Žo„ĆóēłĢfaśńį£šĮq-QńŌćŠĻ‡g›~\ŪÉšl_A«Ū׏ė½)D(Ż Ķź8{Žwšrļ,čč³ŽZv?ė†čdm÷ŚįļNų$ķ×éĢYčw>ü»éļėŲ·ƒå½ĄĒĻiä>c?¢®+ō=O#Üįį”’³¶[ēQ—įIÄŲvr9ķJ|R¹ĢLF&“Å  Œ~£Žč6ZB£,Õ£Ļįøc&UOPq­ŸīŃI%cĆŖ”o%<` 0³Ō‚U O-‘_øé·ĆÕѵśs]™‘>”ļõn†E5¹śDńßÄ51M$„Ÿ?9•jv¹š„7aM8ĘČNR2‡ ©ō‹Ā.wĢūĢ”yįŠö¤gõ(}ELP5|wŽ… ;žAŠÓ,T0›Q/‘ś[šG(ęOüFĢĪLéPK .3|Q ŅU‚Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/mk_MK.phpUTŲ]Ā_-PŃNĆ0 |ĻWųmP”ö˜± iŚš^„©»XK“ą8Tü=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)w³WlU»ŹļÜ=¼2Ł,‰Ą~XįKT˜¤ui~ś—¾%ތ¦ø”™®^ĄĘ9ŒE#ć”x¶B)>@h•ū!\¶»÷óįtł<­V[?ńV`±F*Ā4TĮÆķ^Re‡4ne;Ć(•#0~Wb„¾?ž?ś¾Żuó­ÕģĶPK .3|Qއ®Ź0 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ml.phpUTŲ]Ā_•W]kÜV}ß_1…MĢFvC”ą8iÓŲ…;/ ”b#Kw-},ŅŻnM6^؝¶˜BJ)Į%$¤Ę u?¤Ö4©żWīOéܑ“ŗWŅ®]=Č+Ķ™sfF£y飾ÓoµęēęZ0÷7†žė1Ąæ}3āö€; n™Ńfą-뾹ŠÄJų%ė2|¹fwX¼érK›ņņć/CnX”#‡~FDŌxXa;r·f`ƒēZ,ˆQ2腑or7 :Š÷˜‰÷¾tِüVoßZ¹swERQ|Ü19 Ķl7ę‘»9ąĢ†”Ė“`ģq8ˆ,†B6;/3”¾7Ü £xQž¾Ÿ-ĆķŲĜbĀDŒ¢Ö[€G{›™Q®ß€ö¢"IEśN$‹dÜīd s£„‰ä±H~鎆Ķšöƀ;_Er*’MCĮ©"%t4Ć}ČŲżŠĘ®H‘ī‹äĒR£„å’'GfxŚęv…żµHĪd¶•$&@5 ;šMįą3­ė%AŸPPxc‘KĶŅ„R·ÆŃY}7Ąf«‚ųC:’N^ņ¬‘}%•ˆü@q°Ż^ÆtÉ^ĘGēļ0< ĒC„ĶödRyX„Ūf1gQ34ł³¬śa•Ņ»ń§ĖWL€l|ŠķÕ{™ĖMp}®ČNī”#Å8nDe˜ååłµµł/šŠŒ…Öš€ŗ¹nļĄŒˆ&68ß­›Į2=Ųł4TŖ›>[.J½^y,]Ą")ņūŠ«ą²ÖMČĻ'C+ VGxf̧ÓC®2J|Éø^ļŹ.4ÉČüV¼8»W+UńYäŚ.óÉŚ–Üopé=9š.ƃ ŪĖoĀ| ä‘o¦v1—_Q<ųū¬}m|ŲČõžÕóČRJ‘ŗž\²§“}ƒK![ SŽēóČÆ.L'ĒŻłˆfĪŽŅ<{”ĮX#nÕ}§”씺„óWŃϳަ²ŗ#9~”É÷&稙iėŹķžW€ę4|_ +‰ÅQ[ĄeģĒŌsŚ0’(ņq<Ź®ÉS½ūś ¶l i¶dL¾Ė‹yż“œ–ŠįRа/艝”w»Z‰6bütāÕBĶ2“Ā Õ0žW-Œ²ĘŌ܍†œ -]£š©1IR~įF(;į€śę˜jzŖ|÷H‚WDš,߄8Ÿjģo©o÷I¹j~CMōs1ą4[ętœšĢ»4÷Ių¬„* æŠ…®ŪŖÉVži‘rŃzšr×ÖRÓÓIß6¦0nŽ\ µ~4i‘•1•q”ņUįR2—™xų/C6¬Ń ˆ²ü³h}” ī^kżPK .3|QېˆĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ml_IN.phpUTŲ]Ā_-PŃNĆ0 |ĻWųmP”ö˜1†4iŚš^„©»X¤Ię8Tü=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)÷mÆŲŖv•ß¹{xe².Xż°Ā—Ø0IėŅüō/}O¼M5p)’2]½€#r‹FĘ)ńl…R|€Š*÷CølwēÓįxł<®V[?ńV`±F*Ā4TĮÆķ^Re‡4ne;Ć(•#0Ž*1Bßæ>ś¾Żushõ»GóPK .3|QėŅ…6½2 briannesbitt-Carbon-d046377/src/Carbon/Lang/mn.phpUTŲ]Ā_ĶV[o#5~ĻÆ8o*M)wʲŪn[ŌjŪ²R+$@«Ź™q2ŽĢŲYŪӐ}ŚīŠ !„Ä ÄcŸ(mA@//üś‡8ĻL=iX‰"%±}¾sĪēĻ—ć[wFĮØÕš›™iĮ ģLAŸ…šD¤ŃPX&²'8yC2 ]ÄųKŽĖpW2Āa‹ŖÓnõLw‘cWč®'¢ŪjŠļ ™ÅźĒažM$÷!då ³ņ¾ŃLšŒBJplŃqę·±¾¼ŗµ½jBeu@4Œ‰Ÿ)-Y/ÖŌ‡1ÓZ¾±ō(&ņK¾‹Z®B¢‘É]¢#LM†¬JŸrŚĆ˜œ@9Ž„‹Ģ Eģó˜3:™8K±„T ¦= ÷²ŃˆĀ‡$ö*ķ莊µˆbøKį;¦cŪŚ$ŸĀ& )×ŒīŁ”Eų˜LHĮ†MŠP"‚µxPeūKC& †Š*."/E#L+4 ó,Ģ  įU*,ˆ­rÉÅȖł$Ēm³Hšl‘CŖ5˳‰+~ŸhM„Ün1O„ż¤`MxCXWäqNą/`rÄ2°WśfŹIŖcÉį“ą§=”D¶į½ŪŠ^šDĢ5$æ%æ'§ķNnžbC¦:ØŲÓżä0}RڧŲʔ«”O’‹äæ~†ēų=.Ń/õI•ņåArryp•ŲŸj p§VY?OƂWf›>/'Ź8īų*Ē3Tź<}–>u@."9+ Šz‚ū×µś5ł3}†S;)a•Üū8lĒÉ@äĶ"šœ›9%ē—åā ļ^”ܕÄļ•Õ¬įģŖ„_:ņÖ1å"øńŒ”uh&g%m¦]_©ßUn+TÅR¬ lŃ})¢].ņ­ƒģĢ®1ń7݇L­ŠDU‡šNØ,†@1p‡UŃ= åżŒŒĶ^-}3a›Ku›ÉZ©›ēéčŻčœ‹ÓTøīžłĻĶĮŠ  ˜IÅLbŠ"2Äź‘—,5€EziHļ;ĄŖŅa(ĘźQԁuSTųĘ“½G1‚OMŌ¬ŚąÖȊ˜a Ȇt2ŅW@BI‰?éĀŸŒÉ£gƽ0ö‘ x+ą™J‡µ6ę>UOājŻn7?p†VõČÕ岇ĪAžĖ±«!^5åčÕĮ7¾:Ļ)ĒÆ‰jÓ“ĖųwS8]§h“PM°›•jBß$Uכµj¦Ū$Vˆo‹ė@9Öļ×o°ŠuB®FYó°”}ŽdŽÆ•<ƒÄ² v–mŲc³eÓ/  }ńŁBcŸŁšĘŽuZ[[ˆ¢›¶Ė‚R£5}„ŸŁĶĶŁ••ŠŃ±Ā&~ąŗ½XēŌ³o4E©8Ļ T)ŸZ;ł!żŚ`ā[”ąČž\ģ}ćĒVœ¬’n³Žrū’Œ{ķ«ä(ė}“ɇū/9·}5ł±×óī*|„j'{‘»ČZd+²ń‹øõˆÅ{ā?ĘĖĪU”Ė|łJƒö«Nū5§żŗÓ~Ćiæé“ßrŚo;ķwœöü+nĒĶ<_¦®’¬ˆųæ„J%óršxį'§—ęŹ3gŻ^*ŗĻ¤Ņ»ęŹżŻņM<ßi=x·õPK .3|QiܵŹĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/mn_MN.phpUTŲ]Ā_-PŃNĆ0 |ĻWųmP”ö˜1†4iŚš^„©»X¤Ię8Tü=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)÷mÆŲŖv•ß¹{xe².Xż°Ā—Ø0IėŅüō/}O¼M5p)’2]½€#r‹FĘ)ńl…R|€Š*÷CølwēÓįxł<®V[?ńV`±F*Ā4TĮÆķ^Re‡4ne;Ć(•#0Ž*1Bßæ>ś¾Żuslõ»GóPK .3|QŖaü ńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/mni.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې*”ų8Wiź6ÖҤ8ÕŽ·ćŁłü’Ćóģ梨öūöšå(Į@AĻŁ°@@ĀŃpƒ®ģŌXŖv•ߣ{xe2L‰Ą”[Ē— c”ŅĘéé_śy ²÷`ć|e€ =x²’V†!ņd„bx€Ł£ŃŻ/į²łŽėć¹ł<ÆQŸ8#°˜=%aź²` ‰ÓeO1³E-ź7Ųj}įźż——=&{Ęq«Ė oxÄI©üģL‡BÖx½0J꠆ŸLŒŠ¶§ś£mĖ]5jė¦ŌoÜ=PK .3|Qm'×1½ü6 briannesbitt-Carbon-d046377/src/Carbon/Lang/mni_IN.phpUTŲ]Ā_½RMKA¾ēWĢmU4KÆÖZ[µT°Rl/Rd™l&īąfg;3kČ­-“‘~ą”H”"čn°ā¶9XOśW漿¢3ļn¢SØĶe߯ēyŸēĢ< ½°R±'&*h½ōØ@ ꤿ!ę±’Aó˜×X Kī&Ž U=kĘĒÜqō˜S "jTJ4S3é\ S&«.kĪ£O¢FäūČea›Ó O"Ō‘O]½2h0ŽÄ’²`…>Įŗ¶EI pĖKó‹+/ č“–Ø…ŖS!9­E’ŌQ‹JOw“vĮ"bmćŠ`EŅc\L›x ­jĢSĶó< Ņ?ŸÖÜ)ģ‡žĖ Z˜“*ć@Į‰Œx€0ēøķpśŲ%śėF\Š-2ĘÉėˆr‚gaiÕqŖ–M‚Ŗ>®5‰^U »•Ūz0[” ¼ kĮ~fÆ­Y“ŠXĻ?V“Ņ+–Š÷T|”ā®JŽŖäÄ?U|©7莕tT|¢’/¦:jā“ČĶÄ÷¼“£āć_Ŗø×L:y“gˆāīõ¤,E’ƒŠæ©ų7Pģē„sŠ‘³B| ń‰^’O|Uńnæżéz£ śG @ŻłpÆ|%Gč§•Ć·*§t‡ųūWĘK~‡­••\ d·٬ćöÕóvįļś ;`BCŽ Č.”}¤’Ļf‘҇øČŪ=•lē9ōށ ‚b"Łšü dnCP ĻĢKDĻÄĘRa»§¹zņ#H“нF†^ °S?BjIŪ°˜’†’€›Ū›4ųß»õ^‡5œåB:FˆÉŚsrÆ’’$œÖ)iŌķTõŗjNyœĒš1 ­i—ED į|`Į¶‘O„@œų×|R nĮĪ­Wå@A\ŌKĄ,}Ÿ„‡Yz„³4ÉŅ7Yz”„»].īĒĪE¬ßÆüPK .3|QWQfuŹ 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/mo.phpUTŲ]Ā_-PANÄ0 ¼÷¾-TØ}+@,‹“ŚpÆŅŌŻXdćą8Tü·ādĶx<3ņž1‡Ü4}Ū6ŠĀg 3E›Ł‰Ļ įądäd”’rģL»Źoü-< ¹g,#©Ā~\įS2ČŚy¾>üK_Y6£¹ĘžóÆŠ%(ø4A$©XdšY®N‰ÓäˆĪøĀe»{;ŽēćjµõÓąW`¢¢BcUœ`! ¶±ī…«x“ i+Ū7‚Z%ąw%A†—Óū0t»^ø³ģī›?PK .3|Qøä|›› 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/mr.phpUTŲ]Ā_„VßkG~×_1%F9;„PpÜ“iģBĮĪKBK0Fœīö|‹u»boUÕ¤ĘMJ !ĘPnč©1mp…‹[åÅłWīOéģīŻŽlA!ig¾™łö›Ż½]ū|Z­å„„,ĮƒĘŠ>üøB@†īŗ¢Ēš¼=w—8ˆUškŽuųRP—Į=÷ؔ°ÖSĆ/¹t<ŻĪ _q”Ć~<>Ųt7”ą2śŌ#,ʒ,ą"r%嬃>qŃö%#·łõŻ{÷7T*ĶO†®„‘ƒOc)ho(‰#*Cō ÷˜…G°ÆÉ.«ŖŲ;CrÆŖ’7ąŗ'Üčaū\ŗ&ˆ Ū-Ą§½O\цĻnC{ÕćC&!MĪÓd’ŽŸ§ÉķNŗq&Ćź4MŽ„Éū49I“‹šĢć§6žbG„ģÕĀJ“ß4Ķוš’¹ž±¾[—ęMaS‹¹b'k k——»#ŹpqĢJhōĆļć²Ō”-ˆŒ‰ĒYžir˜&8‹¼dPī.Ļp’F$MžLĒłJ:OĒ?ęŁĮ£.㣠I¾ŃČæK {÷Y(©H"*ČM„œX†> ‚¢²nz¢3)ĮmCHrŪ{ {Uńī“«•‡ŗagµ¢(ö³Zf†ŗX&†>0ŒĄfĻjóęvĀÕ(2{+¼ŖP͐÷ĖŠÕ8¾m°ėėĖ[[Ėń©8s/lį³īY`h}|:°xųN®’ēö 󳣬$SģFd=oƶéŌ x„ņŒ|/˘JšĄßŚĒš­"śn\I—µ¾žHĮŠDŪz#ī—¬F7„V³ŁčĒŁ‚߬‹A}JĢY ™§Ž3pķ#u¾\‡G6 2#¬Į'e‡z²×C[ķ!EȬ’‰ŚI·,šqc®›+ó“Ms!žY(Ó§ó3aožØm®’-DėćĖi]čFĢåךš£ĢcŪõ6̶l[ÆŁ óŹŹW±źØTiėŪ<ՓYÄi>FÄÆĘōBs:BŁg9PŒ  Ŗ3šÄ0ėY:~fĘ/Õ"S'4ĘÓ4Ļw¬Ł(BźTĢą‡¹ļ—²ćDĻµļŻlÜkMmZqģ”o q7Ę{ŠlPÉi–ĘiŠĆiÄ)äp*z8uAœB§Y §Agīü†©;vÖźž‚Æ„b]Lt³ßŪ–ēTŽÓšõT«x¤ÖgÕńVĻęMĶz¤­=ļŠć_ķ8ĢÅŖł²K@n­3Æu,ć_”]g[!YēÖ@©Ād–@~yŃå‹ĀEÕ¢^Q¬(“ż³yūx³Īņ”?ę¢÷;Ö ؈eĖwyе—͕⠨줼jdoÕ7K Ł]j{„+˜|ēVėPK .3|Q ų”įĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/mr_IN.phpUTŲ]Ā_-PŃNĆ0 |ĻWųmP”ö˜1†4iŚš^„©»X¤Ię8Tü=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)÷mÆŲŖv•ß¹{xe².Xż°Ā—Ø0IėŅüō/}O¼M5p)’2]½€#r‹FĘ)ńl…R|€Š*÷CølwēÓįxł<®V[?ńV`±F*Ā4TĮÆķ^Re‡4ne;Ć(•#0Ž*1Bßæ>ś¾Żu3·śŻ£łPK .3|QD€łˆ 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ms.phpUTŲ]Ā_V]oŪ6}÷ÆøœdY?ģaiÖĢ«S$ĪG¹Ą0¤†q%Qg‰HŖnŚåæ÷’¢$J¶Ó ,ņžs/ŏ{yUfåht~r2‚ų˜q )ĻŠ‰Ź€LĮd ޔФ ®xƒkvF\K?ŠįOÅQĄ#Ó7.#ŪüCPSš³Xo=õ½TN(­ņbY>+¾Ī  H ē1š,E*U†Kq eΐś>s¶ućīoß]?.®­”‹Ļdh`‹®āQeX[n2B(v-+32J\°ē6C;vZ™L*}a߁¹Ō,¤biŻž~UęXšÜć3øÕH9ė’ĒæAŹ>įpƅAOљĀī°@U%\ø`3•š4zĘĻ Õ~ ć‹XVĀ€Į¬ćÓÅU‡›¼hꊒ–“Ó[‘>ķń|X¬Ād=8Ŗr ¼‚3sšĄ¬7¤8¬¶elÓC .ÖėŖ3ėĪ«†fż1ŪWōģ'žŃĒč¼ZŌYYl`Ņ“ƒB­«ų/I‡:Ā&;;$CYŃb&ŹMš‘F3sÜģN\7†‡5‹„č§L‹>š 䱈),ѱ®į@Ś9ß#Nż¼o°ĆōYÕ¼ÄZ²ī¬b%÷Zm†oB³כ5Ģ»”„>PCxb’Öh÷äLöēć£öGć"eŖéÅślø”7e ŹŌ-Ó”p u%)ŌÖÆŌ¹įJ:2:„ŗDéµ#į©»·ZĪėĶā<ŖĖē éą$-ddÓ¾q˜Į‰\į‰ĻnMĆ ż¢¬ Œ®a ’Y¶)c]J…¾«†-qĄųŃ#¤é|ł’¦‘ˆ+łŸ!¼ąKō٬€ūéEźäÕ¶SD1®*"¼&›4¶öķŁd©ÅŸ%0«=aź¢`3‰Iä=ųČÓ¢~1[ē óģ6Šńr~G œ=湏·æLpT#ŁkMPéę°h0JdŒ_‘”m÷Ķ{ŪV«z Uśāź±ųPK .3|Q(Y}¾5'5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ms_SG.phpUTŲ]Ā_uAoĀ0 …ļż¾PÕŽcӀIH”Ćą2MØ ©K£µI礠žū™–m0m¾Xyߋż’ÉC]ŌAFŒ`[h¹.ø×’<Ų|0““·†%õ.±÷lØ!<‘–ÖčöŚ{˜ģĻĒGĆGė#e«éÅśl©”7e ŹÖ-éCįAš J­Š8^irK•ōښź%kG§īŽj9[¬7‹óØ.Ÿ/¤‡“tiēIļœ“/˜pvgRȋ².lś† H"٦„u)rW 9}ÄįG£ !MēĖ—4D\¹ˆF„š—č³9÷ӋŌÉ«m§ˆb\U ExM6?hģÜ/ڳyœ$qŪŽ/I’Ą+×-½Ę=įķßƌ+„’ķ»¾‰ Ig«ž…‚1ˆZ0Ż ļ‚OPK .3|Q^­Ó§Œv 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/mt.phpUTŲ]Ā_­VĶn7¾ė)ę¦ÄµlčIMćŗ±Óøƒ …#Ō.WK›K äld=ōž'č-½4ļŠc”'é“tų«Õ_Ņ¢]ą ē›ofų3Ō³“y=ļõŽzp7µ°P ɁĘ93ŗ¬9¼`fŖM÷lʏėąOЧšLĮ·SϦNżV‘ŖńØŠĶó}©'ŖZ)”ŠóG#f5S%HQpe)¤Ŗ“i ­a.9£¹·‚/¼ßčāÅłÕõ¹£ņłaĶĢB),1m‘—°X“…r·ŗ5§@„OöŲUč|O[¬µ±C'ąTrk)£į’™¶(ó`Ʊ5 n{@_’‘3ӇožCßrÅ~ŗUV‰Żb’0ŗEnjŸœ<­°Ž¬f&aźvƜ}ƒ_²ü[÷ē÷a&šŁņcĪ{ł[Šńó™+„ł’ĄT²ĒÄEū°Će˜āųi5³ü5«øÆ‚w«Š*~NĻD{X6œv©y«…¢Sx¼œi¼&>„u82ĮQ²WNŽ–ZÅ­PPrüž&V៨™,]Æū£bƜÜŲLĒӎ¢”ž!Ūd©Œn&JĒXżõĖÆą1ł(ˆŖZŁ55 ź|ā.¤l›mćÄš˜w0ON†oŽŲ/Ø9 žž¬9ĆJśaxĖ+˜äŖŒ½SŸe ?K{tė·Ō½4ƒ1Ž §ų®`a÷į~ĢĶŌ„·;`’YģFMū½‹Ņa7)„æå%ļäwUK»Ähc-“)…b2^"Õ6SnžücķŠē ’SŠķś/MéÅ|×:įtn„ō3üīĪĻ,?“*H£Vįt± kęÅkŽČ›©ńŹkÄ6ŠWśmž>Ė÷AÆe3±ō|ć*§˜PĢ'fsI™Ä€œÕiłoŅW%éŸYL€Čé-øćÆ{PK .3|QŠńĪ'Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/mt_MT.phpUTŲ]Ā_-PŃNĆ0 |ĻWųmP”ö˜1†4iŚš^„©»X¤Ię8Tü=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)÷mÆŲŖv•ß¹{xe².Xż°Ā—Ø0IėŅüō/}O¼M5p)’2]½€#r‹FĘ)ńl…R|€Š*÷CølwēÓįxł<®V[?ńV`±F*Ā4TĮÆķ^Re‡4ne;Ć(•#0Ž*1Bßæ>ś¾Żu³“śŻ£łPK .3|Qń?-k<—3 briannesbitt-Carbon-d046377/src/Carbon/Lang/mua.phpUTŲ]Ā_„SĮN1½ē+ę¶€¢D½RJ $Ō,• ØB­fw½ŁézķŌö² §Ž9rØzČ©§~G‹"~£_RĒŽDPOõe4ļ½™ēĖ{o§ł“Óéļģt`.rҐg`ć•™É”Š„°PRą„õ¬v)ßJ¶įP 8c:&c`/^¦ļ„M„é%²Üo¤#©\£¬ā9)šäP¤Ą)aB[K‘IU¢!)ŗ0å -vK¬vućÓ£įŁłpŁŹŻĻäh F )i£(® K”&“[ĘŽ]ĖJ%Ģ„ī²żŽb¦RP)œEŠM9&ĢʤRšnŁ–b_*R ¢hpś1ŠzAŸ‰žŻLŠ…ėŲ”LQJ¬ ąĶ>\v“’Y6ąÄ97]ÆŖ+RœéFu$Ė?_æĻ°(œÖ¦ńéQ“ŻĶˆZi!9_ äébžōĄ×ģIWÕŗ’==,ÓēΑ΄2+’:=÷įĪ·*¤œ4{ŁŖ$ń_J)L¾ŚÅč÷O‚±ō%²Hj,8>Ž Öü°N¢Ź¼:D»‰Å¼ŖĢbÓg[äŃr1¼ŸŌæ~`†yģKŪ(_A¶¼Œ[­­ÅzÆJ¤M[—ט7Oįņ«JUϦŚŲóhüĮM1>pįż©« GĪž`ąĀ”Ʊ”“ †^yéĀń'®.×^)m"ū‘Ģ¢å»8ĆW+Öż—fĮršųĀ!ĮÉÉnYŻ6qŽbvµŽ =5臿+{6ØaĀK¶M{^zÆe©=š/­üfūuē/PK .3|Q…8½„Œ2 briannesbitt-Carbon-d046377/src/Carbon/Lang/my.phpUTŲ]Ā_µ–ĻOÜFĒļüs£E„ŌMÓ¦JT UZ­¼»cÖŹ®geĻvƒŚJž¹ŽĶ „„†–PåŌCHRz( ¢ż_üŸt¬ČžJ—Ąnw“ƒŗX~‹§.įtÖēqWŪ =—ŹÆė*šŠąd¶¢¾aŠ~©ÄĪ+iQ{z%iĮYX«fÓ63;f(S'’ŗWK±óB®ĖHŽĘN;æÖ…Q±¼,R*”T!B;SÕö™RŻ;’dr7vž’>ĻbēBTެr£O…+'3Ō-ÖošlT°>—I«Ą/aq"[ł@Óōtį3v®„õS¹x-Ó>Rąrg“Ø“l}"N”ś¬• >(v›”ėÅH_H72ä É:¬1ą =. ‰g©¤q@m‘JAė$‹ś²P§²jÓ¢ūōŃ b±TÕē¬Ļ,+Yé92»cY¤£j¼Ŗ4³AJėėģ`oPžŹ VŲ>˰¢d/3“µ Ö¹“‡–EĶ6­6œ:ŃW0Õ\WŖjvŹķĶ]e¼Ż]Żī“{©v*Ś)ČV·ķŠ8®-o?XŽž®$‚Œ<?R•ĪˆIzń#7*7ŅŪZšōkPČŠÖśt-;‘½¼›ds—ģį iŁ&}ċ6õš>ßbĪĖ nVīiv N6ęmŒÄ,gģ•ßąź i÷‘Ōi½g§ļ÷f„ŗņ˜včĶØŠŃĻEof³=éŪc <Ī&ČÕ¬ĘIö9Kž@Ü^ØU„‘ˆē?åÜČĒœI{OīęŽĆģijŃōLNĀt åó­0Ār£lėł¬õYäØ$(Ŗi‹+Ɩ+ÆOMžgnHæ”rMŽ„¤ņ,vr's+?įC©­|'‹{$#IĆŖˆO‹•-½T»æČŸČݟcēwy’o•  ³ģ¢sŁY!‡k0Bõ~Ģ_©z)ą<Ā<Ŗŗ0J\T­†•Ż9>I7,›7“Ļӛø3®äwĄd_)%Ņä ·įO³ļ}7ĶaæE-œ¬ėˆ—¬\¬<¬|¬¬B¬ĘXEXM°šŖ• † † † † † † † † † ††††††††††††††††††††FFFFFFFFFFFFFFFFFFFFĘŒ1c0Ę`ŒĮƒ1c ĘŒ10&`LĄ˜€1cĘŒ 0&`LĮ˜‚1c ĘŒ)S0¦`LĮ˜& |ŒÄU±cŠ~qPż»Œš9ó±Óųlī?PK .3|Q[äĖ¼Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/my_MM.phpUTŲ]Ā_-PŃNĆ0 |ĻWųmP”ö˜± iŚš^„©»X¤IpŖż=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)÷mÆŲŖv•ß¹{xe².Xż°Ā—Ø0IėŅüō/}K¼M5p)ߘ®^ĄĘ9ŒE#ć”x¶B)>@h•ū%\¶»÷óįtł<­V[?ńV`±F*Ā4TĮÆķ^Re‡4ne;Ć(•#0žTb„¾?ž?ś¾Żuó­ÕģĶPK .3|Q„‘_ĄÆ3 briannesbitt-Carbon-d046377/src/Carbon/Lang/mzn.phpUTŲ]Ā_ՒĻNÜ0ĘļyйVa÷D”ŅŖ@įPøTEŽÄ!‰ŽV+ŗ‡>ēʟKµŚ{ŸĆپL'NŗŻ“}ĪŞļ÷Ł3gūe™•ž7 <Ąi&4¤"ē@kÉŠ€JĮdvŽ•$)¾d|HŽĘ¾ÆĆkLĀ1×ca l›ō•¤T™a¬ŠĪśF”»(­ņbU^£øČ 0™@.b.5•”©Ā‚”deĪiW‚Oܹ£ĆŻżć“żę*ןɘ ӐmPŒ+Ć˜“”޵Ŗ0ęT(qĶŽ<ä¦B ‘]GČ˜ŜָB-®ųņ÷•@Q“wų6Іž(eCś2~gPų…’&Ó>¼Ų3qgļėŪzśćsż‰,~ż”žŚŁ2»±÷vfēĶŽ~éČĒ–“ŽÅ©_ėŪßū_g鎩}r»yżŻ>Q~cģ¬e‹GRŗ¬©ß£ßģ|™Ÿ«]G:Shž·ŽSŚD ½—J£ ē—n€gm.“vØĶ6—ĒÜOŌ½”“œ|tź’ą`«(ü`œ¬-­{°Eļ(6Āp#Izp…B†°×§`āšwõŁH(zfšī|ż¹÷PK .3|Q°āÕņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/nan.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßź€ ې&”`ˆcå¦īb-sŠćPķķI;N‘’Ē/Y?~ØŖÕrYĮŽžōŹ9 ÄĢlPŪ(eåĪx¢ŗh'ł»‡We8PjŁ Öķ4¾H£Õ.^žž„oQē >‡.Wå“7@é °#I„RśØ4ŽņC ,»_¦qö½ļ7»ĆēnŠšłĢ£Įˆ :N¦Üf£F6_n {ŠY•¢n†]M/œ¼_r–8 tŌcJ§¹.'ŗį±¦B-; įz P²¬R ?™• i¶ū¦©+AiŽßułĘÅcõPK .3|Qõ–Z—™6 briannesbitt-Carbon-d046377/src/Carbon/Lang/nan_TW.phpUTŲ]Ā_„TMOŪ@½ēWĢĶ‘¤”ߔRŹ—ŠŚ^Ŗ ­6öĘ^aļŗ»k¢Üś!¤"ą†TUP ­TUōŅ€k®żŖ’¢k{7‰UõÅoę½y3;ŁxśQÄ„R­\.AžTB“†ō;ĘBo‚ ĢcŃąL§Ü 쓪֦ņ1węŠֈlP„`ŗ‘†³L‡\U]Ķé™Q3 CpyÜŌ`ęAH]¤nɚ\DXQĪ&  Ö¹MJZYŻŹņüāŚ³ÅŌ*›OXA KšØT‚6E98C‹ ·ķV~łŽŻ9ĢV&Š'Īw™ķ~ 76(Ū`¶NžiW8“ig™ĘÜŲĆ+­"ŹžĖH› ŽDM*¤B©kµ ™kŻžXDP’Č“śsō¶ūń8÷ßI‘vĖ…½JgŹå S Æ¤¹ˆN{Ń²›R`}N~ķ¶<Įa4¢ŗæŹv¾Vāε­‘,F£ zK.ś’NĒF`tuUĪśƒT ķG7 Ģ·ĮuŒ®±1ū„L ²' +ZŁk8T€Ń56¹L—³āNęhē‡u‘CŒ†—®?(żPK .3|QŌŌžĶūß< briannesbitt-Carbon-d046377/src/Carbon/Lang/nan_TW@latin.phpUTŲ]Ā_Q;rŪ0ķuŠķhkD)ō7DZcŁĻŲ.’4™Œ‡‘Kr% `Š•9€Ŗ4)Żz’;¤Ó)—ČIi»°X¼]ģ¾÷¹Š»T@ Ź‚āŽ0ūuÓöĢ)ā8™Ŗ˜CĮ5üÖ Ń‘ūŠ0{véuū‡iŚ=Į”uϱV·‡ k„—E„Š ©ŸKń%ųĢ>ŸĻā•+½×*9ć’«‘ŪõÓU3Šūs œ3ß¶ņ»˜§Ė?9ĒüœS܍éņĮ;īO,V,ĘXōĀ“ŖšoC1ōŲ✠T œu JcņåcMš ¤ xķ/ƒŅę˦*µł‰Å"­ÄĖ:”øŠi.®Ńä3p :ö}p 9˜HoĶŹéĢp?e3©ė–§-øŒu9 Ä­opü”kÄ¤Ņ”ŻŽPŒĀrg\Ā+ŌŻŖĻĪåÜWĪŠŻ<'vĻźČšŚUźź±^ÆŪļwŚŃW(é÷ūä5Z‡=NŽČ’ÄKģh“µl»~æÄŚfŗˆŻX®ÉŲŲWÄT“`ö ĀõĮµlŠ;0åv»$CŪ‰ƒ(Êæ ԟo^ƒO—kõ§ļfBų^aĻ·§­YõœŠČ½zoė'±!Ü@߇Pū°7#Ź;ŗ>Ż„ įņÕ1`Üžz!Ī•Āś“S½„ļåCøY’›ķ­æPK .3|Qź!~Pķ… 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/nb.phpUTŲ]Ā_VĶnŪ8¾ū)ęę6›u±Ąž¼ŻfŪ&Żv‘ō’Eį-$Ö)T~ Æ»_l‡?¢D;Ž®a@ƙo¾‡#½>k«v2yur2ø©ø†‚×ōl™2 0Ā{¦VR*[³g„µšŁKx§8šõŠÆWvł— „4³L6oōƒTŽØčź2Łn/+LäPó …¦¢Ŗa†Kq mŒtwļßå§÷ŸÆ/,•ĖĻTĢĄ=Ӑsm_usøē¦" å®e§2¤@¹Kö•Ż”õ}Ū™J*=·ņÆšA1±ū! ’Ī+ŽÖų@)”‚›ŻSÓ Ś=jo¹ęe§rų›jŅ0!¼ņŸsų¤ÕD» M§,&@æé™šĀŸo`:Ļd' ģÕv§§ʖĶ1Ōę05R˜*Į5»Gł6Yį(ņČÅOŠMʜĻzĆ=ā:±ukÜā(܀¤hGP÷)UŒ’³“9+·ƒ8Ž‘ä*O¹b”ŠŚ&1ŽÄ4­<Š3`)ŠQ\z &V“ źŲ“¤Ve¶É*9¬‘‹m”’ĘÓzŸ½7i̤H+ q݉xō~5Ž=v’öŪC޹č}śČUŹ`²eĶsŒ‰J6K!C Č&zv{#_ļw…4%6\© 6Ģ‚:ØU¼ö nß;žµ{²®ģ“±’ĘÖ`³Bē.×FQP±zuŽŚĖ·I"KMÆ*3¤r y„4Ņ$B!…?DQCĄĖe:ī~Ūz÷$\ė[Ś^2\é JŃKFFe”0H5]:+ī³'{±1B€Ą˜m ģłÉśįęØ<“'ņ<žĘ³’Č!UĪEßTsŃŁŗĒń_Š>mm–²ŽVæ Æ «÷ kµ«ųņž½ēpß0”œNåŌ—7>äĒó¦ ń‚įzd™k½éü|vu5ūJæÄŲ[gpE?8“?€]ż[8L#¢sśĮO\śjf¬¦;*0Ś­f ž÷3dį%8*Ć(ØĄ3†łįq ł%~>øĻĄj¦B;¹ž£³ønAgFŸ£x G‰ķ†.j&Ēå^jś IķF% ·™†Oα 6kfÓŚ'an’˜ü PK .3|Qćõ—¤Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/nb_NO.phpUTŲ]Ā_-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆ’ŌŻXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų Ta¦ˆ ³XČ3H@8Xv9)åæģ{Õ®ņ ĻL6Į«#Ų»>%…YzŸÆ’Ņ×Ģ›ŃÜbŸĖ/Ó%Ų4A$©jdš3_­PNwP"Zå~—ķīķt8ž?Ž«ÕÖO‚Xl…‰Ŗ0¹&8ĮBt£ŻknģQƒ¦­ģ`„qĘļFŒ0Ž/§÷qģwCr½~`wožPK .3|QļKˆC·5 briannesbitt-Carbon-d046377/src/Carbon/Lang/nb_SJ.phpUTŲ]Ā_uAoĀ0 …ļł¾PUīcӀ ¤–ƶĖ4”*M]­M:Ēńļg ‡ i¾X~ļ‹ż”ŁcWwJM'xÆm€Ź6Ņ;M ¾®š ļD2_z‰°g|dĘšLV;Ųb(,3̊óųädōœßĪÆč‹§aQÕ7 ߝČīkķJh¬A䤫<µš­w1t jŃĆ»t³XmßVēUC>®5ĆQ(m`²EĻXĀŃr-Žd¾'ƒrØĀN!÷ä@éSNŲ5Ś tÓS°~÷–ņ|¹yĶó$šŗ"‘Ÿ‰bųT ]²…ęWiÓtP¢eY–Į‡T’¶’ų †õś®moø+XJĮ’ō.V»ń½śPK .3|QŚ„”Ÿzu2 briannesbitt-Carbon-d046377/src/Carbon/Lang/nd.phpUTŲ]Ā_„T]OŪ0}ﯸoŌ5ļŒĮ4`‰š°ņ2Šn·öźŲōŚ_æ›Ų)­Ź”ŠYŠüqĪ=÷\äājɗ£Qzv6‚3xāĀĀLHŌ/Ń8Š3pœĮ5šB+Z*8gā¶ō“ņ~ ™-„spQ“ÓŚMJ]_FźOm:”™—J½\1ēPU Eɔ„”j¦MNh5†„dHk+Įš.īįžśöqzŪJužG Z؄uFޱ į8!äŻjoJF‰ŖĪl:2Ģy£ĮunŲRbÉØ/½±bÅN {óĀ0Čó›ū_y>IR¦&“3É^F@-i[Tø¶ |»„—dŖ•Ó„&ŁŹĖn0…"ŒZw܇±b”ēU·”ĶßDĮ(ču¼/[®{Oå£xTŽ¢Q3źJÕDł”šźć}±Ļ¢ ƒ’LbK{äRS-ŗIVˆšNž‡½Ąmą,¦čۈjīcøóR,0"eC1ż,[RšHĖf¾žu–z‚eąī»ÜŪ·ēP`k2ś‹Ī¢­ŽO“MōŁc꘶OŗĶ.hܖn©[~xźV’»»óŗNĘ»Ąt9·v ŠĶMšeéoj{`B–epˆī‡Ćģ[ZEm ’"Su”¼5C4]”5m70:ŗ/ē„öŖ½3i ’Y †I…d1ņsa˜*åĪį‡Ų6LĶ)n#v##ļęGؽ?±ĄĆWb!õšAęCBGÆ9 Ńdgģ¹źęĆjÉé’¹õĘé¹$Ē˜ Å#Š~ąq÷k±ńæ¶“AęĆbiY©UµĖkPįGšöęG ¾ž~żPK .3|QK‚}ŗńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/nds.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ [‘&”ų8Wnź6Ö²$8ÕŽž“棳ü’Żs“±Ŗšķ¶‚-|YN0²#(gDQ#Ø%Ų£ōĮ—•9ćDuŃ.ņ;sÆĀčįD©gUŲõĖųāĖ“6įņō/} ²Ł90!^…'«€~dž|*•~ rAåą :²ūešWßūqߞ>Ū%jåS‹ 3&8©pŸ•˜Ym¹)ģ)d1TІ¶Y^øxæżŁ‡ŁĆ@#f§ 4­u9Ń %*-ö¤lйė-@H³ųbųÉ,]w8~t]½iüŗC[—oÜ}/ŪgI€d·ØĀönį'Ņ•I3ÕĒŌ EØ°uĶ2ÕnH”•a sV‹ „v-e”Ø#”œ²¶Fp±•ĄuØ»¾<;束{Ŗ ĻT`Ų4Ė…6$Ö`ĪÖĀTqڵ²””k”±‡~B_{jM„Hy’Õӎ¬ Õ°O(%:޳Š­›D£|18e_`Q+6óJ`Ė.뤔6UTŗ |ĀIć&$X¢VEŲGCh,ID°į„m :›YŅb…{„æ¬ dœĻ.ærž&‡(SwMɔżœ0÷%l°÷Ē1Ā×!ĢféĶMśĆ}É4€wI%M«’+ŅcM.p“އ›‡?tļÓ–D" ¼¹²2Ś:ŲS[Zm¼7ĒÖ`ć8üįóŅØčŽŖÕ6<ĆūĪŖįŚ]ˆyŌåōB¢Ž”Š("jˆbėŲ6vÜ6[#.sŲōĆĻžJ™CŁńBļĪ„,uy޾,ÖŻ.õŠ!F7Į ež¬Õ`²ł“f}§®KYö zźĄ»ŹÓēŒ’ƒÆ¤ wŒ\<ŒčI_G4Ę»$śÓŻćšYo¦“.mIŽ2e„aWŖ¢ųą’Ķ(|¬šÉ«Ąį~śņf>^ūøĒü=\oGąc…Ū… Ą™æšĄ_®źŠŹż¾ąÜųwÖW;0ąćÅq…BŗæåpM.dĶvĒń•½ŒßEŠåh̔ήqiUźš]åwūo'’PK .3|QŲTrŁ  6 briannesbitt-Carbon-d046377/src/Carbon/Lang/nds_NL.phpUTŲ]Ā_„QĮnŌ0½ļWĢ-mµ¤Bā„tév„–ī‚„Ŗh’L“Äc»aū=ü ?†ķx+*z#—™y3óŽ›ųģŻŲŽ‹ÅéÉÉNąK+4Ō¢'pqD6 j0-Į%r”¤ƒŹJݬ?*į= ”°#]cą¬šå…t„2i©†ó8ŗQˆjŪ÷PŖqĻ¢i  ¬ %Iķ$e­x@#”\ĀŲ:ģ^ŠönÆ/ÆvŁ•§ žL‹&ŌP mXÖP“0­ė8ļZY.É UĮ쩿Šļ®¬iė×>ń·"Ō¬ų@R’ćølŁŃŗK4ÉgĮ%|Ā¢W!£ł‰ B7O]4ҦŠwø܅ŒiU‡’Ģ0ː÷9ÓŲcI.––µø§#¦V0AžÆÆ?ēyšœ’LŻ3%Kų¶÷%³mĄŪóų6Ézn·éW÷%ĖŠ¼›C2(iŚø•Ü •vRčX“ |Č· |\L}>ÜXcāŹ6VŸe4аž±3jĪvj:€kzéS#¹voaķČčd6qššŌ@ŌņQ;ŹFĶØ÷Ø5uīggBŹ ›Y䐭…lō„Ŗš~’Āī{č()1v6,(¦žEM$«dž•U3åÖz®¦.T3ø™C6=C5ł_Dµ`mrG•«:÷¬ķeģF|ņ]_ķ 9L½Z.īŽß,žPK .3|QŅ8æž;» 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ne.phpUTŲ]Ā_VQkÜF~æ_1…KĢUNRȃć¦McRlæ8‚9“²¶9iÕ^Ʀ $…4 Gč“qŚŗ”P]k܋1¶öKóWōS:»«“V+9¹Ć`ķĢ7ß|;»;»«Ÿ Ća«µ¼“Ō‚%øŅ: €’‡.Ą!Ū.ļ³MŽw—8ˆ•šKŽeų‚S7†-’ō©°Ś—ĆĻc2įx,ŗ™Cæd\£Į<6Üćt7ąĘ> ØGāSĘć‘+(‹;0mßP2VqwnÆomÆK*„O„®€±›€OĮi$ˆc*Bō ö„øG0‘ÆÄ.ĖŹŲ[#2ž¬Čļ!fLøńnH#ʉ6}Œ¶'o} Ū£>ńiī^ƒ;‰‹UH+'bÄcŲižŚ{Äåmųō&“³ōĒ,݇,eéi6}™„’>\ńŲ([»“źØńw ±X„÷I–žgé»,=ŹŅ’JśŠ¹ˆ·24‚Ę„<°p:VJR·Čw÷,½č„„ŅÜPDX“–;Ä%µ_eéļ*ńo• TĢEøÅŽŠhŒ©^gUØé3Wź\š ‚z„ė°„x,öēyö•ó<›>5 źŹTg  aZōė‚ÉJ÷Ø»Ėr° AģÓ,=ĄÉ#5ĪQgQ/fcŖ&QŌČ įU¢ć,żÅ č<Ȥ–ė•ńi”Y”[ļĒ·Ø¼ĢŲI?déaÅ»GTc 4Ėa6X,ć¼Ģ÷2™1oÕ{t9õyVę»:ä–*źĀ•(Ņgų°Tš#·ėŠ•$¹­±kkĖ››Ė÷ńWqν°‰?Ø»ėž, °ōńׁÅĆ»y‘%ŗÉ£Ų“w\śH¶¬Ėš]ACƒÜ«š‰éæü.iĖŽ/e*7ēņØ‘åźµ‹ifŖēŠģčĆL×/fŅX/Į™Śņ§½%HśnG—¶¼³£+§¾³å‡&¾·åožZIÄæÕéå[>ĢG—ÕėŚu7ƒ×åć¼ž‹-'®ÅM%MÜU×÷¾wļ;2/ś<ߚ`ģā+‹nŻ‚“e¶hNØ©Ģ‹VZ4@%Č#”3QØCŲé—•=™ė¢å7öž… ĆSGŖ°éęń‰Ė“¶įüš/} ² Ł{°!^„F§`øO9•J‚œRą;ˆMŁżN‹ļõ°Ż?ösŌ§Ī(L&AOI…ŗ¬ŲĆDźŹMaO!‹ÅRŌ/°ĶüĀŁūÅ'CƒÉ^Ap\źrĀ+I*T>:Ó”’5Ž_®‚š…‹į'“ “ķīšŽ¶õŖaĒķŪw]¾qu_żPK .3|Q QóVP6 briannesbitt-Carbon-d046377/src/Carbon/Lang/nhn_MX.phpUTŲ]Ā_„TKOÜ0¾ļÆš-€–z„”BJH€*Ś Ŗ5q&ĒNķ Ūå××q†}@ADŻ‹gĘó==¶1u4S®9āÖÆĪ'¢Ŗ3F(×.½ž×$Ą–Āh…6DI[9ßig§¢5±ö q‘p—§ē×ßĻ{Ŗäj ±€ JČė¢#,ÅBSw¢÷ą:Æ0 •Élޟ°ĒžtT;śx_ܜ|ńgt”öĮ“5øxœ9?OHŌy+Ą{XJ­…qUśw<žī“G!åŁÅ”³,G;‹3ͦāē¤gφS…L|:āR*_¦Bvv–_]å··Ł4mŻ KÖ8K5c2“č]$Ģ*,<‡ ųĒ@¹*ĖTųÕݘ»@) Ų’Ę&²ō™SŌqhŻĆŗ^jÅɶāšhmŠ-±6ĆVŲ ū`lµY—WZ Äū–O‡'tŚŌ¦D¢p#qĶf¶ÜL,Äp6 bŗÉSkÕĮšķ¹ųÖQ£ÖfU–„:`Ś—T¶’EI¤«d„} ٳöŁćÄ{ÖÓÉĘ ź@¹Ī’hÉōģy. † < …AFŒź9Ja=„-9 ę •ÅØncVć| ]æŖQŽź9‚ŸÆAŪų÷õ cUü Ók}åöųYĮ€/6 *g·G1¼ß …ww‚|?õ€X=ż§ī?šækŽkäš»Ż“æPK .3|QSņņ%ńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/niu.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ cH“PĄĪ•›ŗµ, ŽCµ·'ķ8Evžæd÷m¬Ŗf»­` ߖŒģŹQĀj ö(}šeeĪ8Q]“‹üĪÜĆ«0zh)õ¬ »~_|ƒÖ&\žž„ļAÖ 1;&Ä«šdŠąŲO„ŅA.ØüDGXvæLóźū8īķ×a‰ZłŌ¢ĀŒ N*Üg„fV[n { Y •¢a…m–.Ž“?ū0{hÄ섦µ.'ŗį±¤Bå¢Åž” :w½i_ ?™… ėŽŽŸ]WoϹkOułĘĶcõPK .3|Q›œDq6 briannesbitt-Carbon-d046377/src/Carbon/Lang/niu_NU.phpUTŲ]Ā_­TMOŪ@½ēWĢĶ€ QƔR($U¤@%’P…VgŒW¶wÜżH”c’[X×öŚĮ*q/Ķ!;;ļĶ{3#kÆ>—i9MĪĪFp«THdNąĻµNĄ¦wØ×¬|*Īš•Ęž[ŃOāSų¢%*x$³–ÖĀÕŗŗŽ(e;޹øŌėZ(qy1—{-_S Ø6Ė˜”ń–*a] •¬Ī”Ģ }n+iW×-ęwÓĒå“’Ŗū³)ZŲ”4V˵³““©G|ļ†ŽÉmźf'ՄUķ­³)ksYÅšÄq6]Įro,¦* 3̐­ō1nńbį$P•æQŅŃX¹ZM“uZj{”©Ģ1&ĘN¹„M?ŌBÜϟ„GRcæēč~ŒĄ’¢fRĮ§ėŖÓ‹:ŻßO&ĻĻŃy ½4GT°²i؉ęØęŅKF3*ŪšM}Ž–”ĖėU’s§dsęŲ08s†«hI%łłkņ·Œ,—uųČې\‘”‚£~ĀųEŚC3”‘ŠDč”ēģƒyp¦Į0øuV;¢lƒūvęŪ”a…„«%|ü•‡ķå{-Ųv”•ĖŁr{›”Ÿ>§ĆUŗĀżåÖ­õė¼ŸÖć ’Fū˜n!Õ’SM¤6Vx]Į‰Ø,jé ł†T”ÕmOØ[VCė2ŃeĢNY°čĀWķ(Ž”½ł>zh©TŲ–ЁźĆ6{x‚žą;(»w’ĄQ ‹t+ģQ0åV`s @ń~Uƒ¦žUźžsłļ_mu:¢(›•ŹæƒżåU)Ł­>|€ļ£(†Ž”˜U|C+jĔbØüåōćčPK .3|QČPwüō 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/nl.phpUTŲ]Ā_„WmoŪ6žž_q( ŲīRgöap›¦kÓ×%EŃŲ†4 hé$1–H¤ģ:sĻŠßŃ?¶£HI¤]w&“š½<|īx<¾äŃI]ŌG÷īĄ=ųPp /č·fŹ€ĢĄϘšKA¦dĮrœÖĀĒÉž*μE=ēĘĄ£¹UŸR„™&²zģ”/¤j‰²¦,!‘õZń¼0ĄD %OPh )2©*fø‡P—ČȶäøjĒ½~öüķÅsKÕęg f`Å4¤\ÅēĮVÜä”ܵlT‚(m“=²3“cmL!•žYł>¼—k'\¬ &œņB1ńõI,OįÆąׅÓ~Ć%šŖa"w†7,‘s8ēiŹ:Ė)¼ÖŒj„’Gœ’¦}§dĶr&ØĢ›Ī1gœ½w Ki1˜ø•>ą¹ \æ+֚'’•DńҧɲBå}µ’IÉ*ģ"¼TR«s+NŚź*4pyōÖČŌŽĆh–ČFøaLmytč€ģz€"нøuČvÓY+)LÅ©h¶é&TP ±¼ ö=pŅV"ķģ+ÄEŃ6½¼Ć Xm/pņ­:kŹ¢9õĄfĆ0=ŅFŁKC²~6m’(JÓōå'qˆ1mo£¢•hśBrA;3^$25fh&Z„`D»L߃“­ļ=)¢iƒ3į&VƒŠįŗ¦ģaū†é0†īÉréķ†W9–ŒÉ”¬®…ōK/—Ø Åõ£3ƒ*_2kšŽ9Ņ9‰”Q„ƒ?åY6°‹&²Ł7Ģ’Zž±|×}­0ĒOu„ŸĢ>~Ō?Čjr X£¦ŌzΜ[5h¼wŠ}ĢFVR©n$ē[“ buø}œma·˜młæĮīŖ¼=?ŖōökT\¦”DŅ(2'u,pXå‚–¬lqY#{åĮųngŸĄß-Ž~t1Ɠ„ķCŗåDwecźĘŲC·ƒt¦c:±1§Dź’%8ż5¦.Ž|żņõ‹Ų<˜P=ŽF‡0¢’C¤‡= Ļ`ÜŠœ;ĆĒīt¾Ł“ūæ™E²ź±ŖźZ7YĘ?¹š†/(:M»¢ŠŪ4e¹ÆC'Ņāi/®čuŚÉ©½w•W–Šßxń–g¾ŚŠMõVN]˜© 1uōNs?K5u|Ó]Ŗī„a‰£q,ŽÄq8Šž!ćJŪck}-³įMų`xēY»YÆÕśGńĻUŅÖńщœžm£”Ötī„+ų8Ņ “‚^IiŪ+VÆŚæ"“rõšą_PK .3|Q¾c…åŚ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/nl_AW.phpUTŲ]Ā_QĖnŪ0¼ū+ö¦Ä°eōڦiŚ8 $94½E PŌJ¢M‘ź’“`}ł² ··ź²³ĆåĢ,uóeģĒŁl5ŸĻ`?za Įב‘Ż‚ķīÕZyŠļX‡„Ÿ ćWü¾‘` ^ŠŌĀZø©C{§|«mÉõp›G5E”ÖI \]o©¤ąØŒ·T­¦Y”ÕF‰Ģs{S¼÷“¹xy}R1Ÿķ™…‰h„±$jg±IŲŽŸųģF;ā荚v6 wæ:Ūk2^Ā#!Ā«nķÄ}D§šlæQ¼’Õ®[vRŌ|)5gĶ]§\©©‹¢„Ö‘FÄį(G_¹##öxEųĖ /\UėĶ÷Ŗ*‹•’„īb?gA½H ›>ßf*ŅO‘(Öėåóóņķ­XÄ£÷TŠA+Ūē;Ŗ)ĒHxɢŚNx`žēĄF22¶Nå*ce®sĘ:°ĮŃāP#…Fļ¬ĪP鿙n'|™¦2žYķŸL9O4>¹Œ‘SäŁ?;g×lxöšw ;œv?j’æŗ¼ī 6B™ 'gÜųY¤ÜģIl3<2›čæ=.6:źä’ ’vRMrIé_AØ’Sh[yJ·U‹2ņięÓP8 Ż¦ŽÆ?Ķ~PK .3|QEˆkNī5 briannesbitt-Carbon-d046377/src/Carbon/Lang/nl_BE.phpUTŲ]Ā_5QŪNĀ@}ļWĢ[ }WDåQ x1†4ÓķĄN,»uv į‹üĢm«ó2sĪÜĪĪJ]FQŅėEЃf.‚/Q<ŲxM0Aɬ ”śÄ# Bm]ŽQ] £5¹Œ½‡aVĆG õeO£æŅ¹•fŠ”* P¶¼ µ49¬Čø°Ņ¬œŠ³5}( ĀĄ™.Mßr1™­·³zT£ĻkōpA9;/œUžrø°×!“;[‰¢°(oÄ&õ ėŽ§Źk+ī¶Žo`cÆm°õTj4-˜ šŸo¦Œ[bĒ'˜³Ó-z„3x®Š[ā•Ķ`ÅyŽ’ĢĆ­\‹ßĖxD¤¢käłJ  ^S”²@EĮ«JŸ©#ōU±¤ét±IÓAœ˜b>*īĆGĮāöT.†ūŃÕŠĖ†ˆ§ÓdµJŽƒÅż&¹ļGūī]ō PK .3|QŃē±Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/nl_BQ.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦‹”ÕlvęPK .3|QŃē±Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/nl_CW.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦‹”ÕlvęPK .3|Q-µ»^ÄŠ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/nl_NL.phpUTŲ]Ā_PMoŌ0½ēWĢ-ķj7+$NPJK)R%T”Ā­Ŗ¢‰3I¼ėŲalļj÷×c;Ž…Ā _ęĶ×{o|õq¦¢X/,ąĒ -tR„8!;0øą¹1:”Ä{ŖĀlæ—š‰%jx$ŪHēąŖ‰é©q•0ćużb8u^)f:°ģØ[PR¶ARw†GtŅč%LŠ0Ōv’öiļėĆŻżć÷ūH•ü¹ģŃB+­cŁxG-ģ„B'x·Ę³  Ō&³ėxaܽõn0lßE¼‚§Ūo^ćūUÆd#VŹTdozķ+Ć}Śdrž5 3j¦I” …g+wtĮōÓK&ØėĻOu]•k­Ŗš§åž‹Č^ŽF»Į–šįžĖ j,C·ģØį1|v8±T©B©±ń:G•"śŽ[ēmĖ&GcC³u&CmvērKbĘ/Ė?ŻŌ6|ƒūķ)ūIĀg#ÆmdŁDÖĻŹY5 žµöDŪ§ŪF·ŲēsO°•Śfø7tĘm˜%ĪɎå&Ć#ŗ¹ü·Ę«‹ŽfV™fī™u¦›™žå„ž?†N²uuąØMWGŗDó&ws}ŠŻ˜9M½]/—ļ‹_PK .3|QŃē±Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/nl_SR.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦‹”ÕlvęPK .3|QŃē±Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/nl_SX.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦‹”ÕlvęPK .3|Qžœ+o,Š3 briannesbitt-Carbon-d046377/src/Carbon/Lang/nmg.phpUTŲ]Ā_­S»nŪ0ŻżwSbvŻwÓ4-š¤H€8C“„”(‰°H©|XšX ŸąĶ“ŗwź–U( żØR¤ģH0¼•ĖĮ=ēš¾(æĻ“|0˜ ‡ĀmB%D4%`0GBAJœ"3nØ`Žb26ŽĘ~ĀGA‡k"1U Žq~ą&ĢŌ8ČŲIkż” ›(Ņi A–/ˆ‡Ņ€piJņ( )šńä)A†[PRŲ{W—§ē×7ēM*۟J‚I©T‚b­HU‰QLļ2Ó" ¦Ph› QZp@B „/Hž¢€ “tAłŖ© ąūg—Ÿ}ģM›Ķx#ø€9#‚†”0ŽĄĒÆJ£zsWŽżČ¹ Bę!ZŹÖ%ėÕßo<¬W“uƒ­ EÕ°ŖÄh¢tĀķ†pUĘUŁ0 õ\;{UJŅÖ|™dBõ|ģĪ^d؁K܌„ÜMČ(’éXĘU²Y‹zĶĶ Ŗ*a§l©ßßīĒķz¶1ļĖ ń~¬«_"©× ėz-ŖŸ6­W Ó!ź5^čźG‡*4ėGĄŃāĻJد¤““YL¼Žņyoāk“µ–0}ć-2=†_ßĆx’ŖZZŲ?ėńoc󎊼1ķQŪSī•’v90VūgɲŻ`†QøČƒ üx5¤ĪZż±˜ÖXā.’£€=łiÜ&¦[·ŚŒ +ĻX±ėEE鐮ØS°,&ėŠYŅīD±¼ź’$9Óc]œ“ĄAKl·š\Ņ.©SŁØ;ÄmoßEÓ,ęŖZ½ĮTÉA©`°¬eև‰!R•bwob.Ó±*čŻ2€į“­-×ŖšKšŖ*h0gnQǾhmæHĘę|’½o!Ļó¹U]»ļ\‡Ę-ŅŃÕ ˆĪĖ1×XąÓ*ž]N¾~5?”B•%;æ|¶RZ·UŻĶ %B^0{äė܇łPe'\üÕéūā/™F}’č]oo'U»‚įKd™30zÓÕUņšüMߥŲZx ķG0-E2ƒƒ,:pFóˆ\f”֔ ”Yø#£b «šŖķņ“Y-šė4Zˆ(®Ä'#}7^’Õ]YM¢ÓćHĮĢ€ÖmŸ¤Ś“NohC#ĮŻć3ƒ×bø"ƅ ĒįžÅŅ(qÉD8+²®ؓĮÓ¶Čų“µ»žhėąB‘.,ćF¶Ņ\xwĆ·Z†Q4#«‹ŚX'\YtQÜD•VQŖu§ĪŠxy6Hdnč)¶}:!—GHc˜DČ!¤ā‡Č!jŲÅr ¤¶lC·k<ŻĖD»5AR²•,żMb®1H‚Õډ/É„Ÿ§ćä9ŠŹĄwČÕŽāŽ)yOćY<‰ēč(r®uß\åż+ūS’t:½9«›u’5~(A’§Bx"§ØśĪ”ęĒ* ņ¤JŻH˜Ł/£’PK .3|Q¬ą8óŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/nn_NO.phpUTŲ]Ā_-PANÄ0 ¼÷¾-TØ}+@,‹“ŚpÆŅŌŻXdą8Tü·ādĶx<3ņž1‡Ü4}Ū6ŠĀg 3E›Ł‰BšAĀĮɘŲ(’å.Ų™v•ßų[xr g,#©Ā~\įLŚłt}ų—¾&ٌę#ų”….AĮń‘ā»sļ.Xī†U:²e]`*Bb8eH”?ŃŅ×vqŅJ½åÕ=Ļūõ<ŗŪy›DI­ÖÜŚŖĮœELCČb ¢ ČLDa(O „üéŅęęéž&¼WŒ8”ŚcĘĄŽ—_ß ¼JÓš%ߝ§~Ŗhöć|™dŠu#D3Ÿ #E('†IQ‡$¦± FÓ¢īųhļąäō oUģg"b %¦b^ߊRf"dpw-ūʧ8((–mÖ5}%€(E2WŃ$&>Åč÷•ftCŃĻ}¦(øīžŃG×m8M*čŒS‡v š8œ*0Źx³ m‡{dśhoŠ€IŽšS{'¾ŲÜéŌˊ”Ņ^@2]TŌ½‚»:’ŹĢūÅŁd4}œŒf— ?|µ?ĒCcoóĪü"“wó³ļå,īM®f—“+°NmoĘū`2śwŃōļIE?nÆ»¤ŠW‘U‘.gbU(—ĀDkņK“"^“ń°ŗżÅó”ŃĆÉ ŗ©½`L“ UčČ>¼dśöÉŽ/n‹nUXœŪ'Ū›RV™™«x‹Č½é·Ł`iڀ렗ƒé#Röi2zieÆĒCRŠ©Ģąō<•ćįŅ"…ČgC¦“qŃIW†nnjaĶ«g¶ų„•å{,ąć³q·9ŗ°Lœ.1ŪZWȒŚßo¶ZĶ,«PĻ“Z­:|ĀS„ē|;ü!@mA:yž¼Ö·YŌxæŌ’–£;Ķ×µ?PK .3|QKN õxn2 briannesbitt-Carbon-d046377/src/Carbon/Lang/no.phpUTŲ]Ā_]MnŪ@ …÷:wJ WŽēÆmāN E ( C F“Ex4£pFvs ž¤+õ³ˆĖ gž>¾ĒŃÕē¶n“d1›%0ƒ×šlŁhoQ"ų-Ěą„ōN%³ĒeŹöų™9‡[atšL”äįŖģÆ_œ^}̌on&ō›—ĮhŪY Ę·ļĀ»:ŗ ,rA#ŻÖKƒ‘½›Ck U;0‡¹üįīžłå¾·ö‹5F8b€ŠC.»H9ÖśEw¾CT Ė.śö³_»X{ żł,Ń1YxÉą–­e·åļŲŁńōČMƏ¾F‚w“ŖėŠÄŅ!ģ…b'Pß ”Ö¢!ķ¦“Ą:zėXŠbłš£(²tįŹL|:‡uZéųōĀõĶ$ ržēƒ”.3xŅ‚_Z°Z]4M:?Į&®ŅšĆ ½ŽŪls2³[jŠ’«PžOuō;ž$Ś–ķß?ŠŪNFłėĒd‹įŗęĶ€®œ²šø9æLžPK .3|QÜ/ŁņN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/nr.phpUTŲ]Ā_-¹nĆ0 †w?·“Aa?@ƒIS @‘”ĒŅŐeŚ"¢H*EÕČŪ—v: ¤žć“6É„ŖjÖė Öšé(Ć@AĻdX  agø‹AWödF¬U;Ėoģ-l™L€#ęŽD`ÓĶćSŠ1Jmćłį_śy Š÷`cŗ0NĄ„qF`2zŹĀŌĮ&§7Źžca‹ZŌ/°ĶüĀŁūN!NzLńŒćRW2^ńˆ³RłäL‡BÖx¹0Jį †ŸBŒŠ¶/‡÷¶­WMąöū¹Ö_\ŻWPK .3|QZ,vc ó5 briannesbitt-Carbon-d046377/src/Carbon/Lang/nr_ZA.phpUTŲ]Ā_„RMoŪ0 ½ēWšę¶Hģŗu]?Ņn-šXŗĆ6mӑEr))ūėGÉ^‡nĒéB>Š|ļQöɇNu“ÉüčhG𠓇V‰r×BP—Č•³RŖ7ø¦™ō¦öƒś.X£…{ņ•NŖϬ@fµŪžŽ­×Ž3QŚu=ėµ €¶£k²^$mėx‹A;;…ĪJm§iŸēīn.ÆīWW‰*ū ģŃC£}`]Å@ ģuPr#޽‹\“5Łģ2ŪæL[m’‡G8Jז­fŹDšPOșōĶtņxųnņ PK .3|Q-GY†óO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/nso.phpUTŲ]Ā_-¹nĆ0 †w?·“Aa?@ƒIS @‘”ĒŅŐeŚ"¢H*EÕČŪ—v: ¤žć“6É„ŖjÖė Öšé(Ć@AĻdX  agø‹AWödF¬U;Ėoģ-l™L€#ęŽD`ÓĶćSŠ1Jmćłį_śy Š÷`cŗ0NĄ„qF`2zŹĀŌĮ&§7Źžca‹ZŌ/°ĶüĀŁūN!NzLńŒćRW2^ńˆ³RłäL‡BÖx¹0Jį †ŸBŒŠ¶/‡÷¶­WMȱż~®õW÷ÕPK .3|Q*öē—‰–6 briannesbitt-Carbon-d046377/src/Carbon/Lang/nso_ZA.phpUTŲ]Ā_„TŻNŪ0¾ļSœ»ŌµŚ-c JAƒµD¹Ł&d$'‰ÕŌĪl‡Ø¼ Ć{Ķvܰ µ\,ŠtŽĻĻ÷}>±sś„*ŖĮ`r|<€cø/ø†Œ—ÖVØ Č LAp‰*–†’5ę4¶µ®|˜ĮTq°$scą4vĖsa—ŅŒ¹9 „×Ry ¬.KHdµUøŠļ„)pē6rłķåł3“Ęz~æļ’ు­@č÷ūšmĆ5ÆČÆyų+™ß¾~Į…®7ģ…Ŗ~Ņā·MÖ÷!AöÆ1!1L°”’WooŽŗ2wžÆ÷OßĢĮ›;_oæļüPK .3|QY™ģe3 briannesbitt-Carbon-d046377/src/Carbon/Lang/nyn.phpUTŲ]Ā_„R]o›0}ēWÜ7Ś%Śk×u[šN­(©"M[U” ˜ąlę¢ģ×ĻŲ! Šö4æ{Ž}ļ¹pū¹«» XĢfĢ`[SmXģPj蚡=Ź\p[*īČÜzūUq KI‘ĆšØœj ·ł@æpK…ž¢½;Xæ éŖLÓ@!ŗ½¤»ZņZ®lK^ Ł¢¦‚GŠ5mķ’ŽŻ{~ŗX§ĆSn>]£†”TiIs£I =ÕµUģģJYŪØtĆ.I“‘PJÜg’t Äba¤¢ļäJ’߆JY¶zŚdŁ<\>·› #x Ąž°'„•øW!|ŗƒ×0µ“«†/²ĢäČ’ą"ÜJzbŹĪjN”Ÿ5"#m CÜaųM[fŖRæ®;ˆ—R^‹·’ųņ©–ņ’zØ\×ć^Ų4;›dgÓģģ,;³阿HķEžĖœ8Ÿø{ĀĖ#£Ģ“tB€#XģÉE•ŗń¦i&ū—?‡Kńrć uˆż>ā­‡$öz8æ{gā`ķ-ėå±WE„Ņ™ż™Ø²į{ø†FÕżś‡Åŗ’+?o]%||¼iŪ0:Ņ3åF©‰č„Õj‘$‹öLÄQ…$IąR=—½—Ż¶Ņžže¶Łß®?PK .3|QvōäėL2 briannesbitt-Carbon-d046377/src/Carbon/Lang/oc.phpUTŲ]Ā_•WĶn7¾ė)ę``åT•ź¢'9ŽÓ:ncĄŚŚEHŖAķĪjéģ’’kG­ō5zė­¾äāWŠ›ōI:är’,ĖvʚƳfę#g–=ßĻ“¼×={փgp–p 1OčĪ”ƒI˜šKASį{¶Ą!a-¼nĆŠ3oPϹ1š|nŗ‚Di†”Ģ^xčR9Gq‘¦Ź|©ų"1ĄD)Qh )b©2føČSd4wÉńŹŁ¾9=“®?“0WLCĵQ|^ŒąŠ›„4Ä]ĖB…H"GvdWhmæ/L"•ŪńךKĀ¬>;Ąh/-ü@^¢¢5-„Txjhz<¦„¦LėsüHįt?8]f±Ėéō@f¹äf:=SLčŌńŸNN ÅRž‡-RŌĮö6üŁz¦•ucܶ]75š~\ˆŠNAKŁUåĻ> M”x ģķĮģĆ70†]ś4€@†ĮönļӆµŠØ×ó~&Ī&X"Sģ½€`ŹBŲ|]×# J;op…ø³|ÜM&…I:° õu3ÄVĄ–"nĀeOņv…ų¾¤ĶΘ`×]±½±({ ~õ%¾#ÖŻØ ©ź­²ć‰J°=Ķ[BŸK)UM‘†­Ø Ņ.},yŠÆŒ śh»²S5ø”ŚIoYŲčĀI|ŗo”ѝD-hŖ•('¶Ų“mŹ2xŠ@‘÷…,į1ƒ±įVŠXÉģ\H_SŃ4`ŠÕē.†Å«lŚy`¹ZŻä•zŽtĢbG?o}…ć&S“ĶhwõFÖÕ÷Ūź†ÆėĪ.šcŽ@śūćéTŶ÷;ą%j"[;ć«uæ¾ćšˆ`™I„ź BśŗīÕwü½²° Ėķŗ(D˜®žé€ŻÖßǁnN­™©Ą9*.#āJ”±[įź6ænõ;.(Ģ%KK£ET%õ\ŖķFgEõŻDc'ua(¢(ęBėĖ»¹ä9©Æąų¬4y=Ī2õó§b¬uGēwżÕčädōŽžŽ²ŅĀ =0‰pė˜ ˜°¬Q©į=š˜ĶĢ/8d)튿×Z+Ö,ĆWULlm9 }h…ųŃ4W^÷ƒŽÖ7‰ć6YQ×Ńņd Ż‘ÅÜuTÖŪ:Ö²?LµOōń5»kÕēŲ–ŹEłIŗĀ‰‘ŗ»F̘ZżėĘt پ/­܏. ‘ŌĆ4ASĮRÆ +³9HVüﯿehV·•Œ ØGÉ1°»”mS²Rź¦<ūõ6ļštĆŲÓ­øZ¢Pqll“ė2Ū@‹ŗMÓ0z:Ć»T†–<ņ”ē0ōń‡>ö°Žk[:„źŅł.%Ežö˜·# ]V7”B/\¬n ?¼¤ŚÆē©”ę×btV-¶¬Ģ½C÷¾pļK÷Öė>Ŗ{ś‹=HqįĻĄµÖx[åÉÖī‘·¼ ģĮdĒÕYßŗ1Żå³IŸŽŃķŖ‹žĮž>(‚Ż^ķƒZē‰3ō=ŠoŪłĄ®f¶7”­ ģjCū"§KēœNŃ0é£ß'ĖwWo“׋Ÿøžm‚†r›s‡÷pŖ!Ų­•Ÿ^ŻžX™T½æ?ùŅö2XžĖøibwšŽÓĪ— «µRŻŁēQ)żņ £|Š ؜Ģv{’PK .3|Q>įFŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/oc_FR.phpUTŲ]Ā_-PANÄ0 ¼÷¾-TØ}+@,‹“ŚpÆŅŌŻXdćą8Tü·ādĶx<3ņž1‡Ü4}Ū6ŠĀg 3E›Ł‰Ļ įądäd”’rģL»Źoü-< ¹g,#©Ā~\įS2ČŚy¾>üK_Y6£¹ĘžóÆŠ%(ø4A$©XdšY®N‰ÓäˆĪøĀe»{;ŽēćjµõÓąW`¢¢BcUœ`! ¶±ī…«x“ i+Ū7‚Z%ąw%A†—Óū0t»ž}gŲŻ7PK .3|Q8¶QsŻp2 briannesbitt-Carbon-d046377/src/Carbon/Lang/om.phpUTŲ]Ā_„TKrÓ@Żū½BIʱ‹móĢ'¦Š¢(JՒŚR'Ҍ33ŠcV\ƒ»pŽĮIhi&ʱ+b6óyÆ_æéiĶžĖY1ėõ†;;=؁[˜rI ć =W£I“’­ōs·”o„Ūpd¼%›°s°Ÿ4Ė%Kķ©®^ź©6­Š“.KHõla8/ Ź ä””•”jŖM…޵źĆ¬$”½[¦y÷ęāųäķ䤑jż¹ĢŃBĘÖNjGĢŁ‚ˆw«k“’$ŹZ³Ćę„Mģaķ mģ^3߅3Ščœ­“µŹŚüš&˜cI“†÷uR²-Xåp¬p”ŅČWźTXö 'ś6Š&osrµQ€Ęą"64+1%ÓŚX¾„-C75‚8]\Ęń ’Č-D}ųŅkD#_Įóa«Ż~󱯉ĪĻ÷Ŗ*ꯓdĻŚ ‡F£įx<ü,ß0 Y¶;w7į%‚”!Ąfž^–õ=uŌßdõCTIŋp¾č°Ā«+f9~tV”–(°ÄfyÄNkGdm»<)“vAÕ ¬ė?8dńWN‚l r›R«’‘XOć)ėāFµY-M«śōžČpĘT…TŸFm¦£FÅ–Ń<Ļ„]öRł‘]h¹hŃbÜ¾ŅžqÅææ’X—Ø:0Œ;¢’–ÓćNiŅ5…y†ńćĮĖ{8ÆåWXw—u`?ė …¼°·ųė§ōóšDŃ cÜ)ŠĖJ^öš¶ą ó͆Óū6| Ēø[ij,„Z…‚XŗÖ²Ųpl»aŒ’!ņuūYļPK .3|Q óĢjĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/om_ET.phpUTŲ]Ā_-PŃNĆ0 |ĻWųmP”ö˜1†4iŚš^„©»X¤Ię8Tü=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)÷mÆŲŖv•ß¹{xe².Xż°Ā—Ø0IėŅüō/}O¼M5p)’2]½€#r‹FĘ)ńl…R|€Š*÷CølwēÓįxł<®V[?ńV`±F*Ā4TĮÆķ^Re‡4ne;Ć(•#0Ž*1Bßæ>ś¾Żuinõ»GóPK .3|Qv”ÓCųN5 briannesbitt-Carbon-d046377/src/Carbon/Lang/om_KE.phpUTŲ]Ā_-PĖjĆ@ ¼ļWčę$§÷¦š¦(9“½•²Čk9qv]­“æÆlŖ‹i43hūŌ·½s›ÕŹĮ ¾ZĪŠpG`½GQH hK°C©R“Q8ć‰JćNōEXĀ‹0F8R®X¶ÕŸ£Į¤eH—Ēź[’YØŗBźo§Vc ŠŁ,c“䂏)®”ļmveē»÷ĆnüÜORs>mQaÄ 5g®„FÖÖ6–=§A™Q=‡Ż8!$ŠąĶ õ²É|„…ŠļĄBążėįĆū²Ų¤KiŸ)ÖšķĄŖØķ.5¾aÉźG¢ó„n„RĄĆ#Ü­ŻĻņŽżPK .3|Q«ĄńN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/or.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې*”ų8Wnź6Ö²¤8ÕŽž“棳ü’żól碨˲€¾,GŁäsFQ#Ø%8 ōĮē•9ćDUÖ®ņ;sÆĀ蔄س*ģūu|ńy Z™pyś—¾Ł‚Ęä˜0_…'«€~dž|Ģ•~ rAåą`v„y÷Ė“l¾÷ępj?OkŌʧŒ0pTį>) °°Ś|“ŁcHb( l½¾põ~ū³‹‡FLNAhŚźR¤KĢTn¶Ų“²Aē®·!Mā³į'±tݱłčŗjW隶ʿø{,žPK .3|Qé ņ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/or_IN.phpUTŲ]Ā_ķ–MoŪ6Ēļž¼y ’»f]×4ė€I= ¹CaČ2m µEƒ¢ēł¶t9 ;݆Į^Pė…”‚ X½KņUōQF‘ņ_¶āöŗĖtE>’ēł=|(J¼’éě“Z÷vvZd‡œy~HžˆŻN.įQräš ōūĀŅ}­-åø’GÜwņ”†=_ræWvŗĖľĖĘ*éēŒ›@ƒéhD\6™sč ā}2ņ]„ ;ĀgĮ.™ŒØ£Ē¾ņéĢų?9züōōqŹä'y@Ś…”…¼*ŌO…ü³ŗĖ¬7…ŒŚ»ksj~ߙÆÜ^酑^ņvC-ؘq^3~(äRG\n¶9ŚJ‡ĘŦj†ĻlŽwŠ“ĆJ]™N×l°a®ŒŸķuNö:Ļ6L°‘}‘¦õŽ™lĆC××y§ųy5Į1 „WĶO×äµ­r”¾5õŃkšM{·,VZØórYŌ÷ ƒ]»XæŚ»5¼,dbśWĘõņsūōŚ@¢õε‰u½œoMˆK;“4‘lŌKóœ™ēņmÓÅŹüćŗ!*¤Śźń›^ķUä5Ūf}ŗ”Ž ā’*½«J3J_čmXæGWFpkī7ˆ²4ø¬1Ŗū昐z"5lŅĢxŃ}eFÆĢ}Ćš·ŗØ Ś“•Ó[K©™|c‘«)ld¾%į<›émÉj#™»9ŒżąæÉ@Ó»lŠų<Ż2²7§7é|T©œ‘čÓqr¬µzc*‹VöUU±mŪ¤¶‘¶Q¶±sQyå^B¬Ā-q  Ä] ōŃ,ĄˆĄˆź|ĮˆĄˆĄˆĄˆĄˆĄˆĄˆĄˆĮˆĮˆė²€ƒƒƒƒƒƒ‘€‘€‘€‘ŌÕ##########­ŒŒŒŒ †C‚!Į`Čś]C‚!Į`(0 †C”źW †########«w99999999y½KĘź3€ß>pŁ4dķ,övu*š7ūķõßeĆj’}KH¶˜į_~xöåź_fĻh’@ś>āpŻóØ’ļ7{ś€ÜPü\Č?,¢¦¢®‡>2 zwĘ·ęė{¹&Ū¢A”ŗ,h&jĘ«d~‡x‹‘œ!«ĢĀSbJöŻj}õ¦9ĒĮ—³q} 7j{Fтē·žPK .3|Qŗ!ŪńN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/os.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې&”;Wiź6Ö²$8ÕŽ·ćŁłü’Ķkr©Ŗšõŗ‚5|;Ź0GŠ3ˆˆCŲībŠ•½˜kÕĪņūļL&ĄsG"°éęń-č„¶ńśņ/żˆ¼ Å{°1ݘF'`Bž,†¬•aˆ|5B19Ó”5ŽßīŒR8Øį§#“ķīpjŪzÕÄÜžĪµžāź¹śPK .3|Qü¼ĻFĒ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/os_RU.phpUTŲ]Ā_­UĻOA¾÷Ƙہ6^LH€ƒz1†l¦ŪiwĀv¦ĪĪŅōFQ{€D<`bŒšW[„ȯ`6žC¾™n»J!÷²oŽ÷¾÷¾÷:o;õ°ę×r¹ĀŲX”ē> Q™Į»†…D¼Œ¤OŠ,EĪĄå­ā ÉC¬ńFŃcA1CĖ$,R)ŃTQg¹Ģ{¼:mCŸpa•£ @Æ5­ųaVBõ ”$+sQŒr6ŽjĮą[£¤nx‹ ³óĖĻęu*£OśX¢:Q‰†RŠb$I Õ©ōķ!„G PɈ-č5÷Q$}.ĀImO bT™Ø“čMÜĆ g*,ŹsQ1Ad$ĀBą†+H-Ą·‰®‘A^ETäŗs O]7ļĖĆ0qō2‡ąq’vB=˜¶.ć^4gn.æ“”3nĄ•äåT9“¾e9ń¶źŖՎ×ć-ČģÄoŌ‘:ˆ×U[%unŠxS«ėk«Kˆ9ŒI±ćųźŲg)ē@żˆ_ĒMȕŌjB†.œ¶U§W_]ØÓ?<]u‘9ė²%žlWnć—¶7õ]÷f8ßtWĘś¬»1Ö{ŻCϧNŒõQkO­3ŗµ«õė«Vi¬/Z±v“®TOÕnōę¬ö ó­øÕ_«t™äło’:LŖyµoõģčČøuµŸŌ½j™łg|j?ŽR—źRsĄwŽļ#9ŌŲÕ³‚ŗiĖNkŌu¬Ŗõøi•“5$•ūsŻ[£s]ž*e’?{™ŠPŗßåeW—2%īYŌś“ źSƒ`ы²×…2XédS&=1‰ąršĆ`õ_( ŲŲ P\ HŹ»; »’P.”†Ä欔!ĀĻŪU‡ö²\_0¼+»w.”ÓɦmµÕOūĮqCģ#ls>’õA/©ÅoĄ`ŚĆŁż šÅOū‹ŲĖSæ5»·%Jļd6Č.§EoĄ°;”›ųšG”Įį£ŚŽßšu·9ü[pģŽœdeō~ī7PK .3|QߟW  2 briannesbitt-Carbon-d046377/src/Carbon/Lang/pa.phpUTŲ]Ā_åV_kG×§˜‡‚£ÄN)'m»Pj‡BLK0B¬īö|ŪÜŻŠ½½Ŗ¦ $†bC)äE$¤)}ØqļWUBóUī£tv÷ž­dŁ}źKĮéf~ó›?;;»« ża«µ¼“Ō‚%ŲņY  (ą{H„īō)Ü%bĄ#9ɽŽXæā\…O#Ü£ń€I «õłq„Ÿ\^wxx»€~Ź…&ņ’ ‡wŪń%Č…€94ŠŃeäqÉxԁa@ ʾat¤ķ6>»»~ļžŗ¢ŅńIŸH‘\KĮ‰¤.Œ˜ōQƒ±Ē<EG®vYeØlļ$Ņē"īŖ’×ą Ÿl8¤š%IŸ #݊ÉĆ>OwIL¢ÆÉ@3 *Įv šiļR"Śpė6“ót?ĻžŹÓ1äéYžž§Ææļ:<‰d-hwŒUČ#éĻ›MņōMž=ĪÓįµqCœķ—#J– oņōUžZFFöV‰k#—ģĪ{=ŹÓwČ]›‚ŅČĒZĪ[=ϳižžjł,eµĆEø2µu™ę;ƒ“r,d„iL¹„é8Ļžäé/¦”ćs,qÉAvø!čJRDėĀ`vÆõ‚ģ•@Oš°ń‘>Մ˜š‹7 Ų£ŌFaDŖ Ų‰'©Xdt¢±?`Ł«UbžW£s’ĶRKŽXK4~iiwiŒˆq£ł ū QūhĢ6ŒµŹ“¹olšš»ahŹó²^ėsæ źĘńœA­­-on.?ĄĒR–ZŲÄęÕóś\UeāāӁcŲ+Šį€Fn±ÉՈIH׏o›5čÖØį7¢ßŹ&Fł<ĢWÕ^6DĻLõĄ„k$¾”Ta,ŅcŻ–?+Žl’|^•Šzͽ1S† ę2j­—DŽÓpå=5®Āw ó !¬ĀM…zŠŃ‰ķ6ÕMŲ¾YéKqce1Ē™Z² gŹōršÓéŻUmŻĖÉŽæ8¦·:µ‰EӚGŚxŌ<Š×VżØŽ‚S…Ī·;ŹĪ õéŒt¢Ł¦zRį8Ļ~Ґ½µ ԁł‡¾§G|ńń¤œY•ż3Ķ”ł>ÓkŖ§Õ“‚ŒµtÆ)ÕįŚĄ#e^‰zV¦żcłČW×8ėµ}ŖOģS“HéU “éD“™™`)NtæĻHOõUa:GeDø>¾ØÕżM_XźŁųgVģi£d:ų٘­P­ķĄtT³ĮĢ{Ē ÅķŪc"–}ōŽē^æŗv­ŌW*%7 „U_Õ­šF š–Zčnšŗ”ŌŻ ¬$iqåŁ^éĄJ© ģGI8 ¢jŸģHĒ›™“2ÓŁYf^ĒęõʼNĢėó2EŹžT^{7[’PK .3|QUæqāæ7 briannesbitt-Carbon-d046377/src/Carbon/Lang/pa_Arab.phpUTŲ]Ā_ĶS=oŪ0Żõ+nSb֞¦iŃ8Dš,E“DGD$R%© ÄF†żq0ŒN]ü;HūĻōD©ŽŻ5(ńīŽ»{ø’®H Ļ Z-Zpž2}–QĄ½ RƒčƒN)ŁKń5¹¢äVōx>HF8œRÕcZĆ~ÆJßsL…īÄ"?hØ…tƒśe–A,Š”dW©ĀČXL¹BIŽ2'š ކ"£k7Œ\ßÉńįŃéŁQ5ŹłÓ)Ń0 ¦“d½RÓL§ˆ w%JSJœŁĄ“T—’‘’ #I‹ŒÄ÷ø”ŠŻŠIæ”LRˆ¢īń§(źųA);x3~.<Ąå(½NČPłšö.|35Oöæs¤ųv±ŗo¢±,gö¶ŠĶ£żjfĖ…‹ŸķŲü0óŖļ%_Ŗx5²#ó„ńe{[+R©śUsĘ_C/\§ė»|¶TšÆīŻü‘™odćŹĮrā&Nķ¢Ŗ×Śˆ<4:wv²Žn‘’P÷šérf¾7npĒŽĒś ˆ|s§kņJÅ®&Ūö»ż?ž×õ{j®Ł•\łäÜUüt/ρųķMäģŚSź7“ĘŗŻ ƒĻø¶Ą_(„a¢›pĆ_ō×¼Wŗ’¤ć/wßx?PK .3|Q]"40-—7 briannesbitt-Carbon-d046377/src/Carbon/Lang/pa_Guru.phpUTŲ]Ā_•QAkŪ0½ūW|7·Į$=w];ÖvPhzX{£ÅVjQ[öd¹!·®0ŒA/„Pz›²•² ;ŒīÆč§ģ³œ:‘—@¦‹ō½÷¾OļI”9N§Õr GĖ”Ļb øgDHHū # ŪDōRŽPpJNhµ„|%X…ē‚4ļ1)a£W–Ļ8–©li²9‘¾H…Ō/ā‚4 vI <„˜”ēx%ļ§"!’„܃,¦±3F¦oo{÷ąp·eüɈHB–KĮz…¤! ˜ŒAļyZˆ€āE”1Ūq•…ą@„ C_Š,&Å=(DĪĪ芠o &(ųžĪŽKßo»Œ“ńe\^;€Ė­¼å.<ݜ@Ž?2ˆ­' כe§Ōzž7؊Ūét;Ć”E<2Šķvį.›„+ރ9—×Ā—‹åĒÕę&)—Ń$ž«Õ­VJ«ŸZ}Óćs|„¾jõ»¬mō^«ƒŽTõ;­¾čń#iõ£VŖÓ­_ąģŗx‹3bT÷_kõK«U]žōēßįČZreŠ‹YŌŲµ…ŸŹö²“śy” iåµb.‘nÉhÓ\V¢f+…åæv> ō4$Ćé/]–­å<ŌŽ±į½1e”÷ę®!‹ø+mŽækõ¹A ‹óĒߞŽ3éøZ@—žō„h¦hüĄåĢ—›MēMĆ–Ļłöŗś×LĀų’Vž×ĒÖõ”‡ÕĶk¬!q¼śÄł PK .3|Q­ä Püc5 briannesbitt-Carbon-d046377/src/Carbon/Lang/pa_IN.phpUTŲ]Ā_-PĮNĆ0 ½÷+|TŠŽaĘhķĄvąV¹­ŪDėāą8Tü=iĖ)~ĻĻĻĻY?z㳬Ģó r8 ³Az=Šw †`‹R³KTsʞФäWĶ5<‹E µU…u=Į'— kŃšåį_śŹ2uq a’+¶7 čZlC.¤•®c¹ Zv7ąĀÄżXē¹żvw8ī&«9ŸT1@kƒŠ­£R £U“:){ą( „Eķ¶œ.œf7Q Kø›ź[x‹ _)o't õĪĮĄ‘…ŗo‚Y ƒā…Hχ€½¦sgc!ā@č;Z!ØŖ—żgU«Ņc‘¾vuŸżPK .3|QPæ­žõ†5 briannesbitt-Carbon-d046377/src/Carbon/Lang/pa_PK.phpUTŲ]Ā_ÕRMoÓ@½ēWĢĶm”q…R M‘*µ=„*kmOģU]³»n”#¢I£ˆ?"ØŖEĄK~‡7üf7NK¹ƒ„/3of޼·#ļ=+²¢Ńč6› hĀ›ŒkčóbĮ”Ł“!2IA„ų‚„Ų”Y7¾ļĀ Å™€3Ō7ö"Ai:±ģ×£/„ņ‹śežC,‹‘āif€‰r£Š$)śR ˜įR“ Č‘Qķ’ćŠóNŽĪ^¹Uޟɘ!ӐpmJƒ ¹ÉØC޵,UŒ$”x³]÷BĒ}^šL*żŲåmˆŹ“ę<ŠŪ¹ŒYŽś eGŖŌSšR `J±QذČYŒćRi~‰; ߗ\!„aļųUv‚.Š3hĮ»Šlž£xŗ_—|łÄ‚^Æ{zŚ}K_ŠņĶóMR˜¬fÕ­Ųiµ“3ŚŲ”Ż£q5Ɩė‰Ė«¹]¹ŗ½Śtģ矟|żÖNķä.»¢¹Łf~½Ø¾V7>§H»¾TĖzÓGĀÓ-vśæu‰U£‡~CM‡5’ė!āEĀFwwž{ö¼fÆģ¬ĪĘv²^lü±^Õ®ĘՏjéX÷Ų^{Ę5½÷†ņ?•^čč øųūj¤Ź~ŲēJ›ŠI;4B¦¼ō£ķ?‚Š'[?ßżŽonĖłī“Ę/PK .3|Q µJG93 briannesbitt-Carbon-d046377/src/Carbon/Lang/pap.phpUTŲ]Ā_TMoŪ0 ½ēWšę-HSģŚuݰ¦C$½“;EČ«‘%C’käõŗŻäę?VJ–øŻi†m‘|ß#żqłµĢĖŃč|<Įraa#$­%3ō\ŽpĶLŖ…²Ūā”r}ś‡ģ#|7‚)øC› ēą2õī7E®vÓLW1õ‡6”Ц’2]īŲę˜ā E†Ź„ŚhS0'“š@)‘QģY`öĶ^ßÜŻßųRAŸĖ™ƒšYąĀ:#ŅŹ!‡ZøœŅnue2$"ĞūżŽ_j§t­€ć†UҁĮm «,¶ņ„±¤J–9KщŒI¹o t•Qš8:’V©MąĖU …šü!D’ŪŪiQ$“Sąž¹°v¶Šlv¶Xœ-—(b :ą‘‹ĢfX.ßfõ%Ą'¾§Ÿ u5‰«vI ­\;KöL5fD2”ž15½SŠĖįWV”!€!¾oŖ3d0tµmžZG—÷lóRŗę„HŃpēt4•~>Ę9Śč e­m®‰øuEEQŠ9š(¦Sé#u$ķéjÄgūnü‰q]µÕ!ń‰ÉJ±h±figfµŠv*Š(ŒŽe©aļxńĄ"«¶-ÆĆnģ4tf’Qƒž_…šŚÆ©ĘZoÖ¾\(ó)¢1Ž&yŌ{{¤yŸfõä"ӕ¢ÆØłĶ’Ó§7@Ū€VžŁöō‹~cNŸłÓęH)ż(…šƒė,fZń!/īš?Šc—"éē'J£ų”­>^PK .3|QóĆ6Äžk6 briannesbitt-Carbon-d046377/src/Carbon/Lang/pap_AW.phpUTŲ]Ā_MPKOĆ0 ¾÷Wų6˜ ½Ćƒ1¤IhBŒ{å¶n­ƒć®šļq+œāĻļ‘Ķct1ˊõ:ƒ5|:Ÿ õ=½E[PG°C©8X«>cG¹ķĪėWõ5<‹ĒGJ•W…M5Ćm0Ț×<<ü­¾²,DķŲ÷Psüß9 ō¾¦L2“,Ŗēp±'“ŽÅӓܽvūći?S-žŌ”Ā„ ŸT|5*50yu61ļ‰G©É„šÅl1'œoŸFu,én®o’+B+<@°śB"į™ޱźN(ØßŲ”Å7¼Ģ“ŲcG¹ķĪėWõ5<‹ĒGJ•W…M5Ćm0Ț×<<ü­¾²,DķŲ÷Psüß9 ō¾¦L2“,Ŗēp±'“ŽÅӓܽvūći?S-žŌ”Ā„ ŸT|5*50yu61ļ‰G©É„šÅl1'œoŸFu,én®o’+B+<@°śB"į™ޱźN(ØßŲ”Å7¼̓ؕJŠqŖˆ2ŖB°wÉSįä²[z„ŗļ³T…\ČݾĪ±7æĘz=2µŖŁ?r€xng4FT†V:%"„į>KpīßüŬņKIcĮČ9Ģ£0s<¢Öųz½’ęM:OÓ1:-2ģ„Ęįœą4²-ĒQ.KtA¦Øc„śžqĻłEźžĀDåĒ0io‰t¦ŸE‘KŹ+pŌŒ?~øŻ3!ˆJCƒ5_''XtŠ»Ø³ćń”)$ųtęšVøŃīlŲ.ų¢ī“Ś;o£W„=ęL…-Ÿ˜IoŽ{³™“¼¼fŌ@¹{÷x)üfiŹ™¶¬*÷ JęæĻ*yĀ}Fɂ\3«īŲ5[ˆ;©Hłø=©mX€h4k"UÆ/q÷ŪJu»ŖeĘeUŽ­˜·ÅšBŻż.żĀ„ˆÕLĔĮ¾_HØš¬)å-©±h½æø‹ń*:’xœµ§N’iŹü ؊y[¬5.\Mi4ÅĪiöå"•Š)žpgS4†Ć”Äii /wĖÆĄČøT8vš]^šĘŽoҲ‰‚Td|5®1!/Ģhtó¾å¢xµR÷ :’øl¼dBŽ% Ÿng8”÷xÆßņΉ¶\ę\ą7·»“@Ļ­ē'`¹åHޤJš[ķ-Č׌ķ€vęéš)ŗ³ÉĮ‹„kE•'{“Ś`z£><³ī/_īıóu†Ó†eGŹ–ŃMõŽęŃŃęÆšµŒ„Į‡–ĶĖv“¾róįŪ@Ÿr¹įy8"° Äāų$ŽÉ^9³6!v##ļTķds»Óyyv)ótY‚ŗC[¹æW 2@ń€¾ń±"=tYčOB=ā…ØkŒ÷w!³?sŃOž®v¾ŻYŅėĻ]ŁĮ9‚ūBŸßŃĶGłÉķHW!”)® ‹ĻĀT$‘»æX‰Ø ]_ŗÓ“#UīŒāά Ø ą.…ŌēžQM3J”3Ēųł÷ "2kŽhb’‘8æ ŽīłG'$xž·N¦`tźŗHÅģa"R_;ŽZŌ.¤‚§Ž8#M–Pč9–¹ćXÆ$éQgŽõćHRk–®eh–žš§,…&Ļ&Ķ’„©3—xĀóKÕ;GĪ1ksrtĒ¢Œļ⺐‹ĮššVwoÆĻūĆĶ~w8ü6 G£õįh6”½{ś²éĻ/nl_Ķ"ó×Ūj¾`ƖŁ/wšM·"ž_3öPÕ-³}\ņ3xI[mO×4ū”Īc¦5CĢ/\ 1)‡µ T–ŖƒĪ±Éɉ9· žÄØNyP!•~1\š ~Į<ØßZo“UK՛pŪyéÕąĀ8üEu~ˆ >%±s°Õ`Āē×zmƒŚŒ¹R˜¼Žž¬ż PK .3|Q2~ÕĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/pl_PL.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦Ė”ÕlvęPK .3|Q)²(ÆŠ3 briannesbitt-Carbon-d046377/src/Carbon/Lang/prg.phpUTŲ]Ā_µTĖnŪ0¼ė+ö¦Äpģ8}»iZ4I‘QM.E+i’H—¤"ų;ņł X×¢]XmT@‡ņ2ŠĪ ‡Ü„}üy‘/‚`:0‚Ū\ZČdIĄø@ć@gąr‚S4±V\J |  k×ņ½d¾‰ ®ÉĘŅ98Ž×Ÿ_j7Itu²‘~Ó¦Ż(«Ė½Xł;@•B)R–#U¦M…Nj5†EIȵGIM뻺<=æ¾9_o՞Ļåč A ©“ĪČøv”B#]Ī ŸŻźŚ$ÄAi{Ųi`ČÕFƒKahQbBŒIm¬|¤=C?ki„8»ü.Ä$œ’špgĀ1ÜĄ+¬“r¹ įÓ Ü…ŃįŒ†#Æ<¼öšĘĆ[ļ<¼÷š”…Ł”æĖģ(¼ļ¦›kćžwV&u"å~čL4DE8Ū²ķ,6nKmłź¶­„óŖ Ē»ÄĶ3·¶Czźƃ(:HÓ¹ĆBEpÖe’ ™‡æÓ_’!åÕóŻżõ–„Ęꉮ•ƒŠnDį²—AŃgܙ_—^=)Yp7`:…’¬C„Äø¤cÅ oś=Ū­Ćbƒ«g'UoN3PbXˆwńŪėXR¹ķsŚSGń¢Ē“9’č;\lźĀ­ž\ļ±óarƒ"6–Š’œ:¦rõ\Ōīo‚›6DĻÆbPˆwYJ“ź6ŗū‡lhQ Łž~’cš PK .3|Qaå=%Ą 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ps.phpUTŲ]Ā_ÕVĶNŪ@¾ē)ę@4¹“=¤”žPŖV" — ”hcÆńŠŲ­7Ør”"ETā-Ÿ@)\č”Ļa'/ÓŁµćx–ŖR+µ–ļĢ|ßüķĪ&KϚn³P(/,`6]€ĆšŻ$Bw@ŗVˆØsUÖ.Ł”%Ä*ųœ5/#>¬Ó Ī¤„„ŗŸū(rY²ø·œ@_s”9­F,ŽÜlĒ•@|Ģ¢~€!}‡ HĘżEh6(AŻFۚ·öveu}cU¹ŅłI—Hh“lHĮź-Imh3é¢sxKXŁ:ٲŖPq_“¤ĖEPQėPm¹Äóˆ ė$`Ž—y,6”&`ž6Ō1eāĀ\ŠdžG"ęµ?AeKų°U|Š{”ˆ"<]†bÅā-_Āč,DCŠŽŠ‹ <‹5 y¤Ē}鞣nŌįmxŽ™ŃDż”—åĢP~ÄhSŗkĀDzŃįųs''§„,:Īcm²gŃ ‡£żŽ!MS±ä³Š<ŅÅm6“¾Įŗī¦½™ČӎŻĢĮgŃóńd™!®£OQ?Gœf|’”aņ”YF@-īŪf  lć!¦M†f„Éfńd‡' É<Ŗ2ļ†WÓrĮ½šĻŪYŒ:ŽzóĆhāH* (nĀe;X§8Õō¾  œ`mß*†ĒP\„¢ÅķI7©`6£ŽōµuK §V½RŠSGOZ0Į 0~vtØ7öćHÅFömœÆ^Ń1 ϵt‰Ž%Ø+=‘ż™(µo’4ńA#Ž{żĘžbO³>&å·=č‹!­ō«Rµō5{?<Õū0‘»Ŗ²Qģs} ‡ćć¤]5¢ŗŽ^S­ĀĮų8F®ÕnźõĶų¹ēčķ4ī(ZĻt‡Y吱"3‘ĢœĶ¾ż_™Kü½" īӟ¤?>ł;üĮĘ’ŗˆ²‡‰@ÖpfjÜ©„æU3óD“ėsėį"2 briannesbitt-Carbon-d046377/src/Carbon/Lang/pt.phpUTŲ]Ā_WĶnÜ6¾ū)x(°¶kĒżIsŲ¤vŲA\x£Pė…1+,:¹!©uÜ:/ŅS‚ęŽKŽėP¤$r\ ˆ3óqę#‡Ķ>ۛ䓵µĶĶ5¶ÉŽę\³ŒČč=e˜Ģ˜É‘½5–‚TÉ;øĄG„µšõdƒ=W{zĢaĻĘVüI(Ķ£D–»śRŖŚQVKääZń‹Ü0)+x‚BSH‘IU‚įRl±I@ŗ)Ē«zŽńыĆ×§‡ÖUĶĻä`Ųh–rmWSvÅMNā®e„¤@iMvĒ®ŠĪŻÆL.•īŪń6­Jk¢+Ł@ wśŠRNäųR˜}–äö¹Sœ(IaŻųēv¤öÅĖæĄ$,Ų~)/=FĪ>Qø€"Ÿ}BœņÄHe䘃ל@UH ‡Ü4ŖSƒ6v‹)7ØPyęT©¦Œ (I\hJ…×”õzšJ 6\cōō®TżøĖzżDVĀ醺·åppŽ!«rź:t¶¤=Ģ£ åģ‹nę—Ø1€)ĪJ`ś+ķā»(Ę’²wIA°_•p?ų*ōK¶FŸB“h:u­±Z -k( =„6§… sŚN·ć H‡µ Z Œ²‘·{Ź]–8QVÕ¦ŚIa²‚6[÷”IŒrF¢·hL¤HēņvQ‰TŽÄb9œYu Z5IGģh_Ā€ō\ĻŃuŃ.Ģ¹Ø·āÓˈVšJ”\ŹĖź<ʈٜ“šŁƒÜż‘³bćśB:K>»e}ĆKl,™’幐žŗ`[!3Ųf«g)NØ|6ę1R”ĒŠĀt—>åYÖł& "“‘ķ%{%/qŃv®š?L:Čś^’ģL=ūKoģEškŌÄ“uGE)øņ ņłĘāV:5’JæjłS}”¢æ9ŻwĄ•nŻ®ĶS¶;·H»NĄ—J›£4AÅeJ\’J) ź®¶Lń÷Ꚋ°Ė‘ŸĆ)²šBį&$ė·ŗŖ }©Ø<6…„xōk)†”H˜Łß1̵Ž”ūøÕźć·>ŪÆśe³ŽpXśZGFg:8Ų v~£'26V6LqÄōøŃ"š>$[¤ŌNHéŁb’?mäŸ@Aūć?ŠĮź5”xМˆ”=ńŒĪψѮq~0Ź·UĄ_Ūo¦%ɆK`5&æśN,ófa­·¬‰mšŲś™k)żėČš ØeūŹf{ƒżŃ:°¦Ī.ÉŁzmÜŽ„Ó’&³>ēqöIlßųM¹žÉ¢Ž>¾[ź gTäˆÅ«~ŗ0+Ԛ5ó wp滏­ōq+Īéa”żE8ž; R„\4÷®/ŖrŒźīߨów¤w ¹’½-ŗ<8„Ņ %(jjķØi/œŠ×ŠĖJä~PøUamź‘FŹóŲ¹•©üPČi«N©RŌćQÄē\Swb:Vž‘ēā‰xž…ēąųš>²ź¶±l³Gē£Y}*©i¦Śļlg“`täfŸł}E%*’©–²¦{гŪ1¤r!r“NŠļcūˆ>÷ļŻ6ī}5żŌ°wP/ā»»/öõ½{=vÆÜė‰{Īn[?WŚVŻės™u}š·]Wkõd­Vj’<ö(jgšÕwś1d6ĄčéŚPK .3|Q¬TAzĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_AO.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĖŅź6;óPK .3|Qą²Ķq~5 briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_BR.phpUTŲ]Ā_RĮn1½ļWĢ-mz „Š6­Z”TUАP­&öl×Ŗ×^ĘvBƍé1»Ž qĆ{޼7ó<öه¶n‹bzrRĄ |®M€ŹXŁ[侂X\!o¼H½ą3M„ŪяŌ1\²A÷6&F8ŪtįG'”å›ózć¹/T%kAłvĻę¹Ž€Nƒ5Š\–®ņÜ`4Ž”µ„‚m ķzŻāīźśžńŗ+Õū‹5FŲamBd³I‘4ģL¬%#ރO¬HéŽģ“»a§½H±öfŻłÜ*±ėaé]D‡l2~­²ö0Gk¾RµĮœšćÖhXy-ž… .Q®žą[Źį £{żķÅĘeŲ‹Ķ—­Lr‰ßwd3ōiwe“e…mdį¢ńlšVuŠ SŪf¤"kZ²d"f$ģŠ¾ē`‘”Lg‰Š“\`²^̉‡N“Į»”—'īµÓ‚)&v€Ģø/™Z+EdW‰ƒŁŅÓ·d˜ ,ēw«²œŒ¦mœČ/į©Y£–Ųx%LNQĮūs„Ī”O.Ā–~ŒĘ’°‹Ä[“™½F˜żÅjž ¹ZīÕƋÅ"«ęš¤i KYłōU<½ž kø½5ĶPč dZÖžW¼>˜1b©eF¾*wD/}±·CvĄ3©Ėvў{ÖéøXæ+žPK .3|Q¬TAzĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_CH.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĖŅź6;óPK .3|Q¬TAzĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_CV.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĖŅź6;óPK .3|Q¬TAzĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_GQ.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĖŅź6;óPK .3|Q¬TAzĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_GW.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĖŅź6;óPK .3|Q¬TAzĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_LU.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĖŅź6;óPK .3|Q—7Ž‚15 briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_MO.phpUTŲ]Ā_PĮnĀ0 ½÷+|+ ŖģĢ›LBź8 .BUšŗ4¢M:Ē„āļg ڦi‡½Kā÷ģē—L›² ‚ńhĄ¶„ńP˜ AĪFƒ+€K„¹¢ĢY”ōQ0–ŽKū@į™Œ²°FŸf˜f—ņÉJé8Ö®žŻZ_õFE[U ]s&s(”Ķ”2­—•¶pT+6ĪFŠT؄;ģś¹d5_®7Ė‹UŸKÅŠ)¹ńL&ksč —¢HvļZŅ(‹ņ>ģ8 ä–,("uN ›Ji”S·äĶ „­!„4]¬ŽŅ4Ē Ēņ3a»į5›įav£z:ŁöLXNźTżT6ßŅÄū_j’\ÕģrÜĆ«ąz{Dš‡ß×H.ˆą?ƒūčސē4—§»"ķ½Ń]ģ‡÷Į'PK .3|QK‚ČzņF5 briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_MZ.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tK[Bŗūŗ®¬ė 0zŲvĆ8ŽŅˆ¦¶'+ }ū)aŗIߌ<§.³^­ ¬ą«£ -õŚ“cŲ‚t{Ēu ŗņwĘJ±|į—šĀäœ0×$›zwAĒ(•×ķ?ō-ņ,Ō}>¦;Ó¹p”ž<†¬–”|uB1”ztŗ»Ž3ļżø?œ>“ŌœO:'0ŗ eaŖĮF’N/š=ǁ=ŖQ3‡]F8€cvw˘zēQ»8Ó Œæ1‚µÆĒk«b¤ŅĻ%|Š*Zā,¶Qvlķˆx)ąi „łY>š?PK .3|Q§¹EŽćĖ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_PT.phpUTŲ]Ā_„RMOÜ@ ½ēWųXķ‡*õŌR e©„Ø¢½ „¢Iā$ÉLšĢģvūozźįÕ3ńR!ŽĶežŸķēg+GŸĒn̲Õl–Į ~tŚA£{~GEl¾C8STZĆTõØZ\rm,?Øį ieą]©½‡£2†'†Cė—•Ž„ō«„$Ō„¾‡ŹŽ;ŅmēA™z]”q<Ņ4–åµ5s{TĢm4nSßåÅŁłõ÷ó(•üłNyŲ*µvžt<Ö°Õ¾ć {w6P…<ØNfWqĆŲ{|gÉ}ˆx7§ß€æ2“‹¶×eµčm„zt'­ KKmź$ō ("µ+Ē^UČoČé >ME±¾ø)Še¾ż’ošĻį.‹źł“•ĖįÓ±P‰¾LD¾^Æ®®V·üå󔼟ž|°ĘwŅ•?(ƒš,‹ę nöĮ čłOBŠ/ßO”NÄC0€~ŖµĪ'äŠćPN6ų ŠŲĶ ]㯠æöS8¾Ÿ’ēJ‰1"6ąx2^&ĖTų2k‹ųX«Ż~ūŚŚģ[Ū`j”GŽ=”§ĄæŖ m&äš§€ēß„ŖķķW›šQe‘MÜ˽Õb’§Ōhr¾`­Ā6E”Mrļ$+üT³1Ś!{æPK .3|QљUóF5 briannesbitt-Carbon-d046377/src/Carbon/Lang/qu_BO.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tKJĀĪėŗ±®ƒĀčaŪm ć8J#šŚ©,7ōķ§†é"$}hż<ö£1uY(į»§ ŚGĒ±é¶Ž›tåOīˆ•bļš…_Ā+“ pĄŌ¬›ūųtŒRłxŽüCß#ĻB]šq¼1{ZČcHjŗČg'Ć Ęī®„ÓĢūŲow‡ÆŻ]jĪ'½˜\‚–’05Y°…‰¤×‹fO1³G5jē°µa”̳»YĘqpµū̉®ø`¼dbkßöŸÖVE}ɕ~¦XĮ­¢#Nb[eĒĪNˆ§ž6š°2æĖGóPK .3|QљUóF5 briannesbitt-Carbon-d046377/src/Carbon/Lang/qu_EC.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tKJĀĪėŗ±®ƒĀčaŪm ć8J#šŚ©,7ōķ§†é"$}hż<ö£1uY(į»§ ŚGĒ±é¶Ž›tåOīˆ•bļš…_Ā+“ pĄŌ¬›ūųtŒRłxŽüCß#ĻB]šq¼1{ZČcHjŗČg'Ć Ęī®„ÓĢūŲow‡ÆŻ]jĪ'½˜\‚–’05Y°…‰¤×‹fO1³G5jē°µa”̳»YĘqpµū̉®ø`¼dbkßöŸÖVE}ɕ~¦XĮ­¢#Nb[eĒĪNˆ§ž6š°2æĖGóPK .3|QĻ}Ö4óO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/quz.phpUTŲ]Ā_-ŪNĆ0 †ļū¾TØ}&@Œ"MBāp]¹©ŪXĖ’ĪqØĘӓv\EvžĆ—l';E]–”še9ĀĄŽ ŸŠB@-Į„ >ÆĢGŖ²v‘ߘ[xFЫ¶[Ę'ŸĒ • §‡ék5hH΁ ÓEx“ č{plČĒ\é‡ 'Tž&G˜w?Lóź{ŪļšĆg³D­|jQaĘ=Gī’R3«Ķ7™=†$†rQæĀÖĖ ļ·?ś0{čiĄä„ʵ.Eŗā±ÄLå&‹)tīr Ņ$>Ή… m_öm[mźsśmߛ*ćę¾ųPK .3|Q.z‰/{—6 briannesbitt-Carbon-d046377/src/Carbon/Lang/quz_PE.phpUTŲ]Ā_„TMOŪ@½ēWĢĶ€B¬^iKiJHV„T”ÕŲŁd§YļšżĄņĻź½·Žś«:¶7“25—Æ÷ęĶĪ:oŽÕŖžLņƒƒ ĄWE–¤%šY£ `—”„St…5*×ø’3®ķŹ÷Ź}ųą \I_Pš¦čÜĆ® ³ŅVĒ©ō£u=Ń2j „­[G+Ķ4•Ņxni–ÖUȚ)ŌZ"ĒīI6=n~qz~u}ŽQõś‚Ā zXŽŠä Š3¬ŻŪčJɍ½Ų¼›°Ć¾AYē:ū®ć ̱šēšižł|Ņ™Y·biEyˆŗVx206čd—é9 Ń@ē°NÖKÉg§{¹ēä]$'Aˆ³‹/B̲\šßv6…oą_6Ģė3x{œB}x޲³³üņ2æ¹É¦}źv8²Źš &#C.2aV+j\²+t¾7Czˆ“}@ECK' WчŽņTj©rŌyqb3˜&6ń@>9»Š„ē› ŗ’Ŗ$(ÉIb’–$$©HRļŌ7uÜöj¤\/°ŻĢbEfŻC5ĻęS·,źÖ…ąś½ŠŖŠF7|ĖŽXߤa¾cā–Śū‹9¶›[3ŸąZ=R’’”ξłĮ¤¶~[0‡ÆcŪVēV“Nš?IXŸ¼×ųPK .3|QÜ Ķéž2 briannesbitt-Carbon-d046377/src/Carbon/Lang/rm.phpUTŲ]Ā_TŪnÜ6}߯˜7%Ęv¾ŗin¶»ĶAķC˜%gWģR¤2$×µįŸÉ·äĒ2¹²e÷©„Ϝ™9Ƌ^½éšn6;<8˜Į\5&ĄŚX™;ä~ ±!8F^y'Śā†Āķé/ŌKxĻ\PX™įÕŖ_¾u²ōq”|ūŗP?x­“µ |wĖfÓD@§ĮE.HI·öÜb4ŽĶ”³„‚ķ Ż qĻO/.OūTƒ¾Ų`„  MˆlV)’†ńˆöą+’Bz{ŲwŲǾK±ńŽzūųŌkŗŽą3&Õg4ž³MŁZāæ°$K.Śe菄ĪD0bČŠUHŃ· žLģ5fģŻÖ0J| i7,R}'uą„¬Ķč©có-‰£±@—¦õnŲrK1š’Yö’ĘH¼Ėą…QŽžųąĢ«-œ¼+µ­0Äž`“l‚˜dWěa'˜bbȌ·5SgQ‘Ģ*q0;zĮō-&Øė“óæźzQ’[Č©ęšu2Ŗ|J”‚ß_h€?^ HuvvŌ¶Õü±ćņ‘ē(„‰3»NNĖåā‹Œ‰sļõ°”ĻżS†šõŸ S˘Ćć„’t§ź–sܑņÉÉspīžĮÜwRɁÅfBlьŽ¢ķÄI­ĆūGöČŌx;!js?Z#©‘»=•xL×Ū²Œ“w1ÕÕC#;ÆF~ 坞šJNe9iMD—ĖPéŌ’Ū”ĖRm¬qš‚6ż¢E.…¾ć Ŗpw$Ԑۭ±ŗ~R ņnćX¦Č©sŽ’2§Ė‰žg‘†’oŽįŒ÷Õ #ī)kÜq¶¤ÉŠĻ˜ĶHÜō󱲨S p{w)Ĕ޼tjW9WŃÓłŻkRŁž*šģĢ kÆź‰¦g‚Š˜gBІRæ”~ØJl“”¶TÄŗŲŅ]9¼$?Kā¼ŽGXłļ¶Pä‚ѹ6b-‡Sūu=¾”_ē³ė—æĶ~PK .3|Qcā{¦H2 briannesbitt-Carbon-d046377/src/Carbon/Lang/rn.phpUTŲ]Ā_­TŪNŪ@}ĻWĢ›EŽśJ)­ 8\„Z„V{bÆāŻM÷‚žųž^æ¤ė]‡\#!Չ4;{Ī܎½{ōu^ĶƒŃĮĮą®ā¦¼&švŽŚ‚š‚­NPO”ō[ł KJ=·„ļåūš]s”0&3įÖĀѤuæIļ*›ęJwŌJ‡DSWא«łB󲲀²€šē$/)§J “\É!ĢkBæ÷Ģ© qח'gćŪ³6UčĻVh”A7Vó‰³T@Ćmåß»QNēä ”ŁŃ@“uZj ¦i^cNŽęNžL{š~;® ;½¼a,MF$SÆL2„Ēų'¤yĮI$šå“_ivŸz“]<¤ÉÓ0²¢Y Ó±®4_’pY4¼%·>‚˜¦•;Ć ×kp‰­[Ē%m¢ŅmłE°Ż3•Ҷė$w”[_:X_3ŲŅŗĪ—Ń—®³Åū”˜ąņ?¤JŚj©Šų…“j)7®ņ?ķzlŌ(m{\ p3ž‚‘ePt«ŠLdĖÜ gӌ­åŹó­”!ąœ[Wŗ(lęäBł‘{v›t³æ õ2gĆēh‚} l†Ż>σ½B‘vu;?źą§ ö~ÖD[ŗĪw+]¦\˼ŠLMY«y(ži‰†³ŃɶĀöõ]ŲI..…H†ėĄķrhĢ”ÓQ6śéŸ h‰A–eš]‡#ļkæŃ ’@×g[źČē¢}cp˜+'mGK;0dżĮkÆ3PŠ ßJ ś!dż±«“ŃÕnųV|Ó!ė ’,‡āf;ŗč‡õEF¼ņćr 4XmėYķ‘ķļääŅ_Åo xg;Éņ遑ķLI†r%—*ČŅ=»7ŒFP“1 ©ę8©©‹ųه <ķüPK .3|Q,͹¼½ 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ro.phpUTŲ]Ā_„VĮnŪ8½ū+ęę$›ŖŲ«·Ūt7ÉnS$½¤hQ¤AK#‹[‰HŹn‚Üü‹=,čOÄ ō³v(R¢Ūh€ ę7óę‘“zqTõhōüą`š®ąr^"Š»fŹ€ĢĮĒLͤ Wś™Ķ1”X¾—īĆļŠ3oQĻø1šbfĶW‚Li’TV/}čRµDyS–ŹśFńya€‰ Jž¢ŠTRäRUĢp)”.‘‘oĮqŁęŸŸ¾½<µT­>S0K¦!ćŚ(>k f°ä¦ „“kŁØ©P֊}nghskL!•žŲń3x#u—Raīķ8ÓŒęØ}¼^™õŖäžD©ęØÓĘļY‰Ā’lĮžū7m`O*š…ūm1…¦Q®F@Ļų™ĆÆ/aŅbd“Ó>„%U»ęµ}SĢõ/£’PK .3|Q˜"pĮ&5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ro_MD.phpUTŲ]Ā_uAoĀ0 …ļł¾PÕŽcӀ $Źap™&T„©K£µIē¤ žżLa„ę‹å÷½ŲO½4e#D<Ą¦Ō ]!po$y°ųa")³†%õ-w±÷dļ©>¼‘–Vč2ķ=Œ²Óųjx“>R¶_¬ļ–ŗEE[U ls$½+=H“C„Ē'Ma©–^[BS”dmÆńн[.&³ÕzvZÕåó„ōprķ<é¬õ˜ĆAū’ gw¶%…|(ļĀƂзd@ÉcJŲTR!wՒÓ{ģž“šŅtŗųHÓ(ˆÉFü3A_ø‚s6Ąóų"uņrÓ)Į|>¬ė ¼ė2tīžŃt%IōÉu’($IōŸyēƾœ+„ŻŪPlūOāPK .3|QWQfuŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ro_RO.phpUTŲ]Ā_-PANÄ0 ¼÷¾-TØ}+@,‹“ŚpÆŅŌŻXdćą8Tü·ādĶx<3ņž1‡Ü4}Ū6ŠĀg 3E›Ł‰Ļ įądäd”’rģL»Źoü-< ¹g,#©Ā~\įS2ČŚy¾>üK_Y6£¹ĘžóÆŠ%(ø4A$©XdšY®N‰ÓäˆĪøĀe»{;ŽēćjµõÓąW`¢¢BcUœ`! ¶±ī…«x“ i+Ū7‚Z%ąw%A†—Óū0t»^ø³ģī›?PK .3|Q†Qs÷ ¬3 briannesbitt-Carbon-d046377/src/Carbon/Lang/rof.phpUTŲ]Ā_„SĶnŪ0 ¾ū)xsÉŅżtėŗī§iŃuk/CQ“-Ǭ-ɓäŁiƱ×ė“L–Ē^¶Ót ĶļūHŠ|ś±ĢJĻ›O&Lą.# ) ¬/Q)˜ŒĮ9ŖH Å9®ŁĢjłA|_”€¦#2N£&ü$l(Ķ,–ü¬“^Jå „UQ@,Ė¢ufEÅLhŪR¤Rq4$ÅŹ‚”ވÕ.ļzu~qs{єr÷3ØQCBŚ(Š*ĆØÉd–±wײR1³wٹ§˜©”T 7”be1³>®”¦'v Ų÷Šƒ0\®¾†į̟31³›ń§pļ=>gŠb܇gpļē(ÖĻ?!G+ński¤’0mÅ5cy‚݉WĒ’ j“.0hŖ>‚ !›ąs‘!'½ĖĄž‹K ’Ł)Ō™T¦ļW¶jÓ:ŃE¢«Ü•j߯ÅIü_%.…ɶÓµ]}+Čk?Ü;»­ ķnŠqšŻŅX¢ÉŒ£1 °Żņ®鱂ņŠÓ>b3ĖĒæh5Œē½E°p‰Gξtö•³Æ}ćģ±³o}ēģāEėŚģÅQß"%„MhŸ)”iŲ¼˜ė³Ų²īź6ļ _ß9Äæŗ:įܟ‰Ūs¢õˆl©åróoöŒČ- AĄ>;¤[ö»÷²Äž)üKlg8|ļżPK .3|Q¼¾_>…³2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ru.phpUTŲ]Ā_åY[OG~÷ƘJHkcš”¶’ q“:؉ © -Ŗ°‹ļ˜]±kvĶ%1R€*i¤¼“ŖśŅ§¾rU ĪCśf’QĻģģeöbr©¢vŲ3gĪ÷™33g†«•–ŚŹåF‡‡shĶŖšššŽ¼[2qÕDŽŠŃ—2Y“L5–å%\]¦žoŠ ¢É&ŗƒķEĶqŠÕEVüĀ„¢å”–qĶW“ˆgØŁÖuŌ°ZėD[R$› ҵ6m€4›1dG³Ģ"jéXي†W½vS·¾¼ygę&3åńsTŁA«²Ķvˆ¶Ųv°‚V5G…ąn[mŅĄ¤xdG™‡¬ķõ¶£ZÄ.³ļtC&üRdĆV5“Ėnæ:!&zõ›nØX3øl’Č櫿,°{ƒ f5Mj¶ŹKōwŚsŠczF÷é1|"ś݃S”× ¹Qąz3˜ØŠW×[ņŗņ÷¾÷e`bMŪ˼øb›cš’}»ŠnŁ2t¹ż–t’-‚“X×ļYüF–ąõDŠLøģkyėhf™h­eĶDł–½¶ęC_×ńڜ¬/cb[>šwŗ ƒ«Ė+č[YĒŹ]ó*H,Ž»ē ķžŚ,vŖZ³‰& ĘĢ‹"”ŅĢVŪ) ū9ĮN: āÅ!~UĶ{Uģ‘ {Žéü/źņB„v’ņFŅłp ĖtŌ8ö Øßtw݇”D°ɎéAh-ƒĄYc¤]zćå8ŗ!”Œž¤en74–aIš#Ābn Äqw.ЭȉX`õgn·•Ϥ#ĻƳ°u¢­Ą:4ĢH§^D…;†ć>‚j³+Eę—{Ń`©‰ÖĖČ6ŠĢ²{~C3a«I†d8½;)™ū8-ŒeXƒ[@ćŃ=é¢č6nXf|lćėZ'C„”É k‚;"¢å s ż ±ŹŽ1£™šŪ'%/Y¤°-8š Ø F>¾{[…°]Äü¶%‰Ķ³=ś~ޤqÆĶ†×$–±`Z«o*Aä{[öS$•2)ÄA妃É{qó%ä›lOø¹ˆAæČ#ŚK€) ö©±.„Ģ#V”DEĒ ×%ś'ō!ß­`ń)¦Õ^Āk­Lķ|„\«Ł—čA”køŽmčķ業½l­8ē@¹ÆyĒ2,Bg½;€©œ“ØÅĶ’i÷ąC—rFŚĖrĒ‹°$·08²XņtžÆ Bš55ĖU6 1Mšš‰*ʶ«ć5Õjizŗō=<±Ź MƃX5Kqā*Ł:E”bŖ*šŃ ußŃ$§¦āēN‚§¶ląjнó‰ąBō Ž /lÆ9‚¾8”}“炬!š‚5~Vó_·Lµ¦ g””F›lBŹŪWƂ“'*{“&LeæķČ5–¦ &&|e.H6a ‡±†*6…@»Ūœė£Īž;ń}\άcO°6ĪÓ'ȏ:ŲÜ÷gų:®#>`ó~O÷ĒøœįÕ]P7öFÜNč³ pūdž§ź>{nģ÷ė¹mäā„įŽ1š€¹’5ŅŚ ž€Zöo·!Ģ]¶Åł­¼³‰éžog} ŻŅs‚Ųč}H3)āå>žf‘Ąėæ=ƒŲvS·ż#ČTbß³ˆ¢™²žĢͶ±ˆI µ0Ń,Et!ŒćtU8Ņ“Tΐ*™Ņjµ*„Ē,H09“’4ēĢń¬Öēj{¦£ńÖ«™ŒęĪcÓŻMXTpSnėĪėš £Ė čNEĆFr(ŲÉWģd/֘]EcÉŽ¢N6=X*O¤$ZŅĀåTx†Ē—m?|­‰Ļū²šŅ¤˜Ō)‰Ą‚$«ńƒw/äēž’» >°O°Xz?²kÖŹ»ė+z7r¬–ŻŠ±Ņž7ƏcµüėÄŻńx߁¤jōÜŽ lxGŃ3č†]ŗąĀźz𐰾ĖģŅä¬qI=ęĶ‚ķȐgź–‰ÓŽuSŽuEĒn…uģ&t«+øÕMŗ•įT7åT7įT7åT7å”j'ęOäIäAÄ?k@"ŽėˆoÄ2bńŹäÓÆ«ĻGMģŌwIM<éę«ÕŠU©•*łŚüüµłZ½>\«wjvį;²T:S÷ÆĒ6:ŗ÷*ŒŠ·š°Ėsų°3Ü) x»pŲ/śBį6¾O€SŃ;ńnyR% x^é•ŲœÜņfēī-ōĪ.H@ß}čėlŗŪtžõ¼[šz‚]zŽ-Q’$Läˆ(HŅD…ų¼Mł%æƒāxhxŲG—”śx[<  å>„AŹ~pKČ­¶ĖŻĄj`3°˜¶ "{8OŸtčA}å+åxrÓIŸ:ī/lȘ~”R«Ć‹„a|55b;ģfxĮjF׌—£«h&ēJ¬–•Ā?<Zŗf] ~ĄDOs„>žūPK .3|Q“|˜Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ru_BY.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ćŚź6;óPK .3|Q“|˜Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ru_KG.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ćŚź6;óPK .3|Q“|˜Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ru_KZ.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ćŚź6;óPK .3|Q“|˜Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ru_MD.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ćŚź6;óPK .3|Q“|˜Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ru_RU.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ćŚź6;óPK .3|QōĖ!k·µ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ru_UA.phpUTŲ]Ā_eŃnÓ0†ļóē.[Õ¦®€1e“&”] ī¦)r7±–ŚįŲ^Õ»uHć‰W£•ŠPĖ+8oÄqÖ¬ EŽ’ēū’dļu]ÖQ4ģõ"čĮĒRĖJ­5C z ¶0b˜iEæ`…HČģ;|Ž¢d N„ɤµ°—…큢­¶ דżõHc »Ŗ®ėŹ¢“ĄT•äBŠTcf„V}Ø+ĮH»”bŚĪ½?ž|8 ضŸ-™…)3KcQfΊ¦Ņ–tBŻvČåmŁaųĀ0ūĘŁR£yŽpz4‚§Ļž<ŗ2W ŠJf|PiĪ*a åE;ŽĀ:TĄŁ,EQWŒ Z¹C#/ÅŠON¢€4}w|š¦IūļtÆIæĻū’¶K żūŲ14ÜtZłÅ¶Ćcöā!7¤nņ(m›ó?"Õ_ōŽŻ‘;nGķ˜1šĪw_FPK .3|QW¹nņN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/rw.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې&”ˆc•¦nc-K‚ćPķķq;N‘’Ē/Ł<'—ŖŖYÆ+XƧ£ y=“a8€8„­į.]ٳ±Vķ,æ³÷šŹd1w$›n_‚ŽQj/O’Ņ·ČKŠP¼ӕit&ōąÉbČZ†Č#Ć$Fwæ„Óā{?l÷Ēżµš‰3“ÉŠS¦®ö0‘8½Qö [Ō¢~męĪŽÆpq Šć`Š`—ŗ’ń†Gœ•Ź'g:²Ęūė-€Q 5üb„¶ŻNm[ÆžŚÓw­æøz¬žPK .3|Qco„¦5 briannesbitt-Carbon-d046377/src/Carbon/Lang/rw_RW.phpUTŲ]Ā_„TMOŪ@½ēWĢĶ€ QƔRZ Ar€¢ŖŖŠjlćUģ]w?b9æ¾ėŻ%ą“ŽZÕ{ę½yóf¼öŁĒ¦l&“ŁŃŃŽąkÉ5¼"p÷•Y€) .Q„RøT¶Ā%M·§d‡šYq° rcą,ķĆ įBi¦™¬Ļ#õ‹T^ذU™l:ŗ„9T<#”]KQHU£įRCSŗÜšSėėīo/Ə׽”÷gJ4Š¢†œk£xj åŠrS:Äy×ŅŖŒ\£Ü›õöµŸ¬)„ҧżó <“®?Ā£”5ĮÜŖ¦ģ ¶Ŗø #e„ū|µ"c•T ;¦Ø©0#wϬŅ|MŠ~Z®»ŗ}`lšĢHLŻ^“cų1w%a2Ą‡ó˜ņé{ŸH®®¦ółō»»’c>‡[RKaŹX•Ģ­A…5:ÕäuŁ”p źĆo¤¬jżćM`pē…ę}p‡5 Ÿ^tøB±ÄQn±”ŹŸV-®øņɧ„uMøXŹ€ŲTn0ZcŚ­Ó¼ŒŽ¢§č'ډF¢‹h v½cŪŲoŪ«%ZåŲ½,āĪBÖŁŗuC{Ū"Ō)…Uųh…)W|.ŻNŒ}ƒ `Āügļ6Ž—!LżŒ±G˜ź&ØŽˆüw©š‹’*øŅ†9)& Ö«zµwł@źŃ>źÕ +Š4eŅiśxšI+ ¬­?%³T¤5(w*0­(ņ’žŠģÄCÉÖ_ā(„’ų5$Ż€l¤ģĶ (mųNm= «{}‹ƒĮųėiŒŒż0²½Ū—8`ų/9Bc²?W“t’Äj,w7YŽ"ČĘ ć¹p?ßAױᢒķŒ}0²½χļ'æPK .3|Q„HžĻķB3 briannesbitt-Carbon-d046377/src/Carbon/Lang/rwk.phpUTŲ]Ā_„RĮnŪ0 ½ū+xs vķŗn]Ó¢ź XzŠĀm:ÖbIžD%šß‘å,A°ÓtłŽ3õąŪĻ]Ó%É|2I`ƍtPˁļNXS5ĀF3TnÅg¬=ČÆŹkųj„аBWH"ø-ķĶ­”YiŌ]”>Õ¾m”4]oå¦!ŗ‚V–Ø[źŚX%H=…®EĮŲNā>|÷²|x\­£Ā~Ō‚½pPIGVž°‚½¤†ŽŻoKd£*,;O,’·„µ¢Ļ-v­(‘ļŅ['wxeń·—!ĻĖy>KēØgœL:…·ų¤ ­¬$Ŗ>ŻĮ[źÉo ³é¶—\é^¦ļÓA¹GÜV¢wQłĶ+Ńɖ¬>4$Čū±Ń’ā:Ą÷m#”tAæüńŹøK›Ü5ĘŅhÖ 6DįŅzčtœGP™ĖQJź’¤Œ¦ęųp~°aĢv¬3Q6”øļģK†1=ĘŌöbm¼£P­±#TEćū–ĢP­ĢnčBy¾Ģy) °°Ś|“ŁcHb( l½¾põ~ū³‹‡FLNAhŚźR¤KĢTn¶Ų“²Aē®·!Mā³į'±tݱłčŗjWG욶ʿø{,žPK .3|QÖ~`Ņ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/sa_IN.phpUTŲ]Ā_åUMOŌ@¾ļƘ[Ąn¼"" ˜1ź…2™¶³t¤Ū©Ó)›½”# ńH4†Äƒ³J(!A—ÄĄÅ2?Åłh»»e³|œLÜƶó¾ĻūĢóĢĒŪ™ūqW*µ‰‰ ˜Ļ’€: 1PĻ1hšƒyÄ\©·‰6pUa5|ĢAXʼnK83®ĪEjHyÕ£Ł śˆ2CTOĆx4n1²p€"„ÄĆQ¢¦Œź”5'4šqˆ‘ŠmÜ4uĖKó‹«O5•ŃĒÄA%Ą' gÄM9öA“š@e”ö„¦ĢĆj"߈­i‡ŗöAŹŹ’iż>„ģb°€]m fōö8˜˜"Ō‘Ē˜1‚pSWiĘs¾V)Ū0„ ó”E1†Zį8DVO/e ŁĀc æL ĆĀ…„'VŽŖj©Iš¼ŌϱfܛĶB&¼lĪĀŌŹŹŌښ3i2ėöį4hă¬Ä‘b_Š)N„8–mŬBߤų­ĒƒŃļRœ›ń;)>ŚŠ)ĶXEßJqRwģŪ¾ģ¼VōÅą•Ā–¢ž½]C!lØ+Ņh=RÜvĻ„>Ņ^ĀŖ/Ćæžī@bp`¢v‘’ĻėŠÄxÓG­ŽY°V/Ģ’¹©:žĪåtv£K{mäŸ IÆ_‡gŚRœå®×™„h[čOC²—-p"Okė%Ńe‹„Ķ.Œ¶ģ]²4hć éĆäH"«A¢F”iÖ K8Ō õ؅3 ļä—3āÜ(dšshļƒŻ‚3ó~Šw7“·¾„š1##‘jŗ¶[M{480Ø][”j5ā$ ‡¹!.źn^„ą-¦³„Å*ōŹNsĻæ²žź“®D xQ_ƒ*ĮlŪéęTŃiåu$Gļ– ݼ•‰lĒD$(ę(@:9{ó6EŽbŗād–źl[;ȹżŃiG1XL ¾ö%Č)>g­VŽ w‚× ³Š{4ŗ¬?»Mꊣ–⇹ŹYɍŠŽlŠõń»•æPK .3|Q zC’ńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/sah.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې&”;Wnź6Ö²$8ÕŽž“棳ü’Ķk“±Ŗšõŗ‚5|[N0°#(gDQØ%Ų¢tĮ—•¹ąHuŃĪņóļĀčįH©cUŲtóųęĖ“6įśņ/ż² Ł90!Ž„G«€¾dž|*•~rEåąŸ :²ūešßēa»?~ķ稅O-*L˜ ē¤Ā]Vźabµå¦°§ÅP)źŲf~įģ=ū‹“‡žĢNAh\źr¢;K*T.ZģHŁ s·{€fńÅš“YŚvw8µm½jŚöt®Ė7®ž«?PK .3|QK:†aõ6 briannesbitt-Carbon-d046377/src/Carbon/Lang/sah_RU.phpUTŲ]Ā_­RMOŪ@½ēWĢĶQG½¶”Ņ*!‡UŖ*dmœu¼Ā_]Æł–!c’GrH a—_ŌŁµƒ“Šcm9»óvęĶ{³Ł’˜ųI­ÖØ×kP‡ Ÿ„ą±€® įb„OįˆšV!ä^‘µ1W§ļø»š™3Į9M[LŲoéš0Ā0¶‡eź—˜"/ pć$ē¬ć QęŅ(Ŗ‘óG{” Öe“gźNOŽŽĻæk*£OųD@¤Šf©ą¬• چ>ž ö4ĪøK±Qۈmh‡ŗöS&ü˜§ļōž |'å9\°q°œv’‰jŲ “/CŹ©Čx„s’;œ&q)®nĘSÖ„;œžŹ§ą8Ķ“ÆŽc[ žŁ8nk~Ö«0œZšį „ |jė>öŁ™ŻlZ{ęš²X¬0Ž„_VYj(—źZ ŌH.äBŻŖņ[r)ē[ČĘ5T#,›Ø¾9xÄh¤ *XåD>.š[˜Ģ{u§óÖ”„nd«¾œŖ[Ü_o ē\NžćŗŲŖCqCÉc#a€ż†rV`rVņk³UŽęPœļWlf} Õ(Ö½W†+Ÿ+{ė®*•ęJi„ļEUŅ«6ÉW—„kÕūŸē¦_įl²źŠńLNåĢģŒgłPŖŅ·†zśÕµg¦w+¦źĪÄ7øĀw¦ń?å$uvY5B\3╿һ1GĢ”Ī+5%GńW¹)bĢ+§!ļ_3†,ś|ć©pŃ‰=G“Ņ·åi‰IśTG9%|•u¹ū¾öPK .3|Qž«[Šó§3 briannesbitt-Carbon-d046377/src/Carbon/Lang/saq.phpUTŲ]Ā_„SMo›@½ó+ęFbYö=Mӏ8U¬šXj,UU”ĘfdŲ„»Kożż{ż%v ;=u/ü÷vęń×Ŗ¼ ‚łdĄ69ŲRĄµڂڂĶn…N”d(Ż‹ĪXŪŹ/ŅKų¬IHx@“µp“ķGÉ­²³T•7G鄯 m]Ŗź i—[2ƒ‚R”†WŹ­Ņ„°¤äŖc/„»·ZŽŽ=<޵£œ?› 0‘±š’Śb ٜönT­SäE™3;4ŚZKZ‹C¬±*DŠ\ÓZzĮ ?kŅq¼X~‹ćY8G9ćdĀ)<Ą',QSFX†šžžĀ ŅB2ĻT‰šyźu ā>sŌEje‘Wc«~öµ¤1¢äīĻÆßū “D{‚'³Œ` ćé žyŠM®“=:ūäż|­Ż¶µÜµe)øōóEå$o*Iž× RI›w)­Ų>šWU‰ju]ۈch=ßeÖĆÄ:JŸWߣ!]V=mh¬7BĆŽ*6{œšõ ·<~ÉQģkė»pÖūzZłFhKC¾s6Ŗō%ń„éwłŸē˜Øƒ¼Ś8$¼ææ*łźx0WƌHO-ó(š’ą3";¢(‚svH{Ī·÷²ŒĻž%ę·{¾|üPK .3|Q}ŻėTńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/sat.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې*”ų8Wnź6Ö²¤8ÕŽž“棳ü’żól碨˲€¾,GŁäsFQ#Ø%8 ōĮē•9ćDUÖ®ņ;sÆĀ蔄س*ģūu|ńy Z™pyś—¾Ł‚Ęä˜0_…'«€~dž|Ģ•~ rAåą`v„y÷Ė“l¾÷ępj?OkŌʧŒ0pTį>) °°Ś|“ŁcHb( l½¾põ~ū³‹‡FLNAhŚźR¤KĢTn¶Ų“²Aē®·!Mā³į'±tݱłčŗjWGŌ®i«ü»ĒāPK .3|Q^÷4ŅąĒ 6 briannesbitt-Carbon-d046377/src/Carbon/Lang/sat_IN.phpUTŲ]Ā_åUĻOA¾÷ƘŪ)m¼"" IōB ™Lw§ģ„ķL™„é ŒF.žL$!„İ5 DŁ“āAěÄīāü(…­Ż†r2±—Ż÷Ž÷}ļ{ov»Ówė~½P(OLĄxźŖ$Ą@]ėˆKĄŖ@śĢ!^aT„Ü “ŽK «įcī8øĻ ¢`‹ ‘LWt8KUČdÉeµ™.ōćFØpY½ÉÉŗ/¢ˆ‹©P-i•ń’„Ń"Ø©Ü&Į Ć[Zœ[X~² „Œ?é# HÉI%”Ų "}UQŽ ¹‹U#Ϙ-ė 5÷^(}ĘŔ¾Ÿ+ŠóPé<)źŠ;‰‚ŗf­@q\b|ŻHp,CNā5!Ēõ¹X]ݐ ²‰Ē8~Ž„ó‹+–œ2¦%µ\§ž“ŗcĒø3ÓM™ō’I8óåGåÕU§h köāŌ•~—į$Ń~}L¢oItš“¶”°Jė ›śœD?Lü&‰ölźU™Xe_'Q»ܱwūIk[i_ ŚFe§ĒßM¢Ž‘ˆlŖ“D?U UtöDi÷°ļ’Øu5eM÷?…N¦ uZņ?æń†‡š—'oŪ½Š>ōvFeóĢŽXÅ·ŚP~łÄķ!ˆŽ vķ6†ƒNõ­­<ŠžÅ!lÄ`Ё)Ÿå‚ś·Ń÷8dv’Ł@’¼¦0Ėē|žķŖFčæāIł¬ «„ µA51āĘą­bįŹŪe’v¦\R ~½$ŌKææ®śKfŖE¹ ,ą8 Øą.ń&$oŅļrÉbķüŠ??ĢķÕŒąņ–ā«ļB†Ę­4žšĘqļå6ņG§ 8r«īŖ>†}Ä/i„ńA„ń§üÓķ>Č£ņ¼YSĖŲeŌĖpÕóš×K\ˆąµ…-”÷š\€)žŻŻ²ÓĢ/!˜Kķ½•}«96«‰/¼įe‡)¬ß.üPK .3|Q·«Æb3 briannesbitt-Carbon-d046377/src/Carbon/Lang/sbp.phpUTŲ]Ā_„RÉnŪ0½ė+ę¦Ä0lōš¦é§ˆ +(š\Š FŅXd,.åĮ_Š¢·=•—į¼÷4ofÄėϚé,›O&Lą‰q kŽ„ØŃ8PkpŒąM„d€ź ¶4 ŚA~Q_Ā7ĆQĀي;×Ր~‘!UnV+q“¤ß•‰…Ö¾ė VzkxĖ l ć5I,åZŽ+9ŻģSæ[-oļļ†R±?ĒŠAnį•wŌ@Ļ LčŻ*oj FMlvžrŽH@cp[ŅÖbķåotačē† ,Ė_e9Ėē$ga3łž3'dxĆIäšéžóU‚wŲū Č¢e!e”æLGuO“ipk“ŗš—mŌžšaDtū»”t€„ī_;ŹY>$ĖץąN"T@ߛ”–)ćVQģ\ RŽ™ ³T2‚B—\žW!”¤c‡±5vļś8A~ŅqŽĀ[F²Iw¹åĒ Ųb— W.Ŗ=Ė5i5&Ś·Ž©Ż÷Ć Šwµa>©•lĆū"QõɆį°įÓVß-O§>c°,•ŪŌŠČJ=‚Ūy²N~{Æ57֕aĆ„Z—ò£į‡ß}ŚZ„"¼zŠH~%D>=&˜+kOȑZ,ęE1’Ī ¹c”( 8gé‘‡s÷½¬ g ’‡Ł_.?fPK .3|Q>™KšN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/sc.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ cH•Š0ĪUšŗµ, ŽCµ·Ēķ8Evžæd÷œ\ŖŖf»­` 'GFņz&Ćqq{Ć} ŗ²g3a­ŚE~gļį•É8bīIvż2¾£Ō6^žž„ļ‘× ±x6¦+ÓäLĄ“Őµ2Œ‘/F(†Hī~ ēÕ÷Ńīǯõņ‰3³É0P¦¾0“8½Qö [Ō¢a…m–.Žļpq0ąhŠ`œÖŗ’ń†Gœ•Ź'gz²Ęūė-€Q 5üb„®{k?»®Ž4Łvķ©Ö_ÜS¦©O¢Ó£šČÕ©(żŅ—Ūķ"34ūŲKģ!ŗÖ£ļÖvt-FƒÄŖŪb+Ä[ėöŅFŖŽy 91Ų²ėN„ščb>Nv-JĮ”„Æŗ!Č:©ŪIī |ó«åņ.²³“¤?ŌP魝² €¬ƒÖĄ %wżPČI¾y „ģE›ż÷½?PK .3|QÉuUIX2 briannesbitt-Carbon-d046377/src/Carbon/Lang/sd.phpUTŲ]Ā_uUĶnÓ@¾ē)ę€dØJ#$NįZRŪK‘Ŗ¢hkÆė¶7ŚŻ*@©u¢ ^”=Pń£8 Ō>‡×¼ ³žw|H¼ß÷ĶĢĪģģųę¾×oµŚ++-X'“ą2Ÿž÷‰PĄ]P…Dģń!ū9٧kØ5ņĖöø/ a›Ź=¦ÜÜ3Ė»!.¹Z³yp;—>ä"uä|lŽ?lßS@B|fÓPbČŠå" Šńpś>%ˆ½`t˜Śm>~°±½³a\„ūSQ0$&•`{E2å!ƒ{—| lЁœt³ķÖ„€‡Ź“p v[€ёĒgzb­fˆ~§'ńgDščQ|Ÿ%Q±ŽOõ…įõaMń©Ņ£ß±Ž«Cōp¬?–ŲIņ=žéór=Cośż`ōšjŠŲøŽ™7UÉ­ ¤{£Õŗ4¤ō¹Cź™ž$QĶļ,õQ­O“3“”WH|†—ėoś+3«åtT±ÉHGÉØŒßNOūŽ@y\Ȏyæ ŪDĀŁ'"CvȐsīł$X*i·U)P",øu¬W׎Xk–%Sˆgx‡øzݱł T€Æ9–ļ-=ó;Ģf„ĒZ6m <>-ģM-ėęÉš'ś]<]0“2Å#Xœ|HĆbĮš¶5<·ö°}ͧ¦“’éœq9³ﲤ#l¹ł„£Ŗ %µyč4Ņ°ßĮō'F‰’É|­KĢa4ČźcÅæpŌ}µV±U~āvެn}vdm’;DOā€SKčbžfT±š#ėÖ’“ąE^*p™Ŗ‡@»½rB]«ęŽĮ3‘aĶŖŸ×s•Ķ¢ļĮdĻĮäŽ3üPK .3|Qnć•Ćż”5 briannesbitt-Carbon-d046377/src/Carbon/Lang/sd_IN.phpUTŲ]Ā_ÕPĮjŪ@½ė+ę¦ÄŲ½¶iš6Ii %ķ%” VŅJZ"ļŖ»« ŽcBĮż…ę’b ĮäXāļŠśk:»R=ŖƒfŽĢ¼yogėU™—žt:tąSΤ¬ €±$RƒHAēv‰ŒĒR|F2ŚĒY;¾oĀɇ#Ŗ"¦5lEīp„B÷c1ŲnGß é„UQ@,Ź‘dY®š S®P’§Bˆf‚w”,(ĮŚ9£CĒ;<ŲŻ?śøoW9:'†DAĀ”–,Ŗ4M`ČtŽō®D%cŠB‰3ŲZīėJēBŖē6ļĮ1rŽŻ…§€_Te½¬`QÜ+DL Ŗv2^õ…ĢÜIu%9)É(”“,HL1ʕTģœnHś„b’Bī‡aßTŅĒėś]ųģŁķ~ó>åĆĖķ¶äʇ®ąļļƒ“æė§Mš‚ė¼eųõ/31Óza®p§o¾Ö?1ĄõM½XMl^ߘ„­›qÓi&?5“u6Ęłę»Ć×«ŪśĪÜ»üyKs’ «ŠöēX™žÅÖĒCwu…œ=ö*¼¶ž’Ü)=KČh}÷ėzQĻ‘ͬU±Z„'«[3nŃo3[}[÷¦8»¬ē­ļĪNź%r.’”łųfOŖ<`ü)uQ3i˜2©thMX4¢D:ĻŗŽéę ļPK .3|Q$Z˜:@ briannesbitt-Carbon-d046377/src/Carbon/Lang/sd_IN@devanagari.phpUTŲ]Ā_ķSAoÓ0¾÷W¼[¶ŖMÅĘlCL\&4ENā$ÖR»ŲĪŖŽX„mÄM‚I\ ŖŠ¤I=­Å?ŪI¶®üČ!öūŽ{ßū޳½öl Z­^»Ż‚6¼Ėˆ€„äĢ:@\K@f65Pt„Rģ›X¾­Ā N…=,B"%¬…ÖÜ ĘdŅX½}Éø#JŠ<‡ˆ Fœ¤™DcČI„©0%iĀxIĀh9F;&xčņvw6·÷Žn[*§OfHĀ ˆ‰œ„…Ä1 ‰ĢŒĒh¬ą6…b'¶g;“¹Ļ ™1.Ū}öMĪ+$;š¦ Ģi7ĶIus”‹”>ć©ćąXœāŽ9аY£‚ rŒW8žPŽ!¶vöƒĄ÷z"öĶt½¼oYvÆźOxšt½†¼ėo«÷ŗwpąuœć°Z¼>£2«3<­.µś©ÕµVtłŃč—Væ­}jućģĻZ}Õj^”§ZMdēZ]5±åyµ»ŌåŲU˜/ŚWŽ«9ÓźB«™cł®Ė“ 9¾Iƒšżø–UŽoó¾4īe_ÕŅZššs˼čø?–@˜Ć”’‡³4œ!ĘG1ŻŻš³¦Yåønég®ātš:Ö Ū[SnnšŃźĒbŌu­ĄņNõŻ\NÜÜ>Uö7Ggž³.ąĆÕŁ'ōįŖ4 – įBV²µFq'łQód0'1ĮżŪ>¦¾»”cæÖé»»fLĆ{øś¤õPK .3|QähÆÅ¼ 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/se.phpUTŲ]Ā_VĮŽŪ6½ū+xs²Ż:Š“›fŪd7HŃŻ\ (Ć DJ¢%’IŁYdū‹ņ {ź_ōāŻ’ź)RŽ5"¶‡óę½ ÅŃ«³Mµ™L^œœLŠ śT1 ÖPæ¬ ’2Eo±Ź¤€„¼Ę%ÖŸåĻŃŰ@ØĪ˜1čUfĶ_˜ŅĢrÉ_÷ŠwR9¢¢m”Ė͵bee5,§Bƒ¤(¤āŲ0)NѦ”Ö¶Œī\Üåļo/>|¼°T.?SaƒvX#Ā“Q,k %hĒLČ]ĖV儈Kö…­ŠĘžÖšJ*=·’Dļū%ąßt `…9m¢Øi•@‹ ‚kzM±š¢_^£éחĻsŁ ƒÖøŖŁM0Jf¦§Æ¼¬ >‚¾ī€Ž5óė\ SEłžNˆö&²ŚH6 qŗĒx¢l}A|Gi=ÖŽB u ź¬A;‰pŅĒš»Dzt ¾Ėf³møuĪŚĘ÷:qŗĒH¢œå 6ĶXš0ĘyØ ³"å$ÄI Øe24šAOčA§aµ2ų&5ćf§a]·¶œ ×4—‚Œ³Š“n!Ų܌†DF‘\bBčwDź$2Į„ģ<?Ü2ƒę†qź…’|%¤ß?օJŠž£:t˜<ŚPö« }ÜæR“¤_6ģŁŁüógżƒaĻĻ’#›4‚ś& yš‰K„| ¬2śņ ĶĶįįģĪīnvē•[¾üŌŽ?ē¼ĒöŽ‘g®uāģ\ē糫«Ł_p%ĪŽ{:Ÿ”E6[¢CŠS(“0 ž&B\§č{—}ń9nØ żiUÆį(?÷żZŲn ƖnJ$,č3€ŗüģĻp¼ŁmBcTƒuL;é* ØrK3Kō§­ā¢ŃżS~9Ŗ]*ĀnśGA“<£*ż¦˜Źūo÷ß0ŒŚĶƒé)š–­Ünń`‹u[ß’-ä­|ø•ƒĶÕ:&€!Ūŗ•Œˆh!“*ņT ”MYJ1Ōū»ŒGˆ5äŲx{™T¶Ņ0ĖM\ߌWå«é‹š¹ūœ}®>Å!7ŸTČÅē“ķ”ƒGŻßW  wóĘB·­Ōz§Jģ4įųzø„YX(±®±Ÿƒ°‘Z©`;؁7†5&Ńģļ 5ŹZcį¤l+ļu½¢ņ žÜó2ś©|ŽĢ19Ēįģ×e-˜ŅĘŽ•,†Į’r˜įv½YƵĀŃO=ŖW·^øįoEhč1UŒ0Ź{›ŁA¦ŌžfłóäPK .3|Qr®åqżv5 briannesbitt-Carbon-d046377/src/Carbon/Lang/se_FI.phpUTŲ]Ā_RĖnŪ0¼ė+ö¦Ä0ä{š¦Eć ēŠäR°’Ö-‰«ņ!ĆßPōOš·ŲłÆR/[®ŃKy”fg93KźśS•Už7›L<˜ĄK&4,EAąö •^‚ÉnQE,])Ī1„Ąõ6ķń%|Q%<‘Ž„1p5š³tMsyÓ·~eÕ -mQ@ĢÕF‰43€2BÄ$µ³”KV%Įr UAčjµ u{īńįöīéł®‘jó™ ¬QC"“Q"²†X “9Ęe×lULĪ(iĆĪ»ŃŽKōƒŖvš0ZĒ ³8ęŒm-JōµtlhWŒ1BžĻ_~åł$¢šų—IǰNĄÆō€ų^‰£Iįė¬Ó95¤vĪ÷ә¤V ń­°ƒ@‰4RØĄf¢p•K7ćs’ÜHĶösJ'ż©M(Ä]Y Ū•eo™IŻ.­|Ä’2j“²røń«PH¬;ĶīyĄ ĮežÓ×=CxuJFP÷ąĮ휱fh±)z‹ÖE“ŌūvŽeĻӜ½ĻóÄ(1HŒSÄ 1AœĒ©qąĒ¬žOŒWT ßVIŸŸo’ §ģ¤scĢY³oͧ‹éoæĪZ±WĮŗĀ ,‹\ź.„'JøĢóyĄÆ1üū˜æłęśKņPK .3|Qč&¾ˆu3 briannesbitt-Carbon-d046377/src/Carbon/Lang/ses.phpUTŲ]Ā_„TMOŪ@½ēWĢĶ€P¬^)„„|$B„BB«±=ĮCģŻt?°Ģ_čæé#‡ž«®ķMˆ‰LՇxwŽ›yo';Ž’8Ļē£Q¼³3‚øĪŁĄ” ’ž£¶ ¦`s‚#Ō‰’>”ĪšŽĘžŪŠ·Ņmų¬%\’IŲZŲOšķ'é·ŹŽSUź©Ņm”©+ HÕ¼Ö|—[@™AĮ)Ić%åTé-+¹ ó‚ŠĒ˜Ŗ6ļāüčäņź¤)Õś³9ZØŠ@ĘĘjNœ„ *¶¹G¼w£œNÉ e­Łx¤É:-µĘZhš˜’§N~ -M?k!ŽĻæ 1Žb’cߙhnFąŸØ$ĶSĮ‡ø‰³Ģåčįč°p®Ąčv·ćUD³ k³ą9fÜņ,KVX ڐķ;V9–Ģ&l]Ł­ '–׏ “+m_D‚B(*wÆ2 ÕÖK•,’«P©¤Ķ~~BYqM 锨b6ō­nS›XцZąłÉUōü3,ėŽżĶ6æW4³(§›Ķ—™U*¬/•Ŗ–Ą1‘é6}G½5¾‚§ą&xéYøčyźA8H.Ŧ¬¾“BMEÓŌVńŻmļtčNjĆ×m$:;Ū+}_W«dϘŲAĒń$žīŸ“Ą`2™Ą:ŗ w8¬k/i™`ˆė¾Ņę.a/UNśyö;k®KCAʀ¦‚1)($lBF±Iż.'÷sßKųż ńžå H¾Å&įĢ,żĒ©—óčgŽ 7)Œćæ±Ql"ŠåŌ„żCܳÉšļFõ0„b0õå›ņ Ö s;ԁń6ŒāĶÉĻŚ«ćā‹ĒlB1”Łį†R%ūłœ³œ”“KƒęmÅ_ŠÜnæżPK .3|Q¢_e“Ś2 briannesbitt-Carbon-d046377/src/Carbon/Lang/sg.phpUTŲ]Ā_„U»nŪ0ŻżwSø6ŅĒ’¦i‘ÄöŠd)‚€ $Z"$‘*1œ­æbdźŠ,¢ŁŲ+EJ©»HœŅuļ9÷žĆ ‰ŽżX¦e§ÓߌźĄ\¤T˜ęģ^b”€A„°9³©(Ć éYnE߈6a_PĢ`DdH•‚ݰ ?1rՋx±WS¹pĘ:Ļ!āåTŠ$U€Y 9“V’¹(°¢œu”Ģ ¶¹kJ&®npzp4:?ŖZ9*Å &XBL„4ԊÄ0”*µˆõ.¹±B±3Ū`€…ĄS$H™ćˆŲ=ŅBŅk²!ČWM„O?#Ō ś„õģd‚.\vĄ®  ‚Ę”|؃Ė`th”`p\u=>!$‹ńTÖų>Ķ4~eī3^ńöĶ I²–ŹĢB-Ķ™/$xfœŠ™•ę^zĢS¼$ŒdŹ…jä³m×({ķ·7~{ė·wMצįr³‚²’lUp¦Ņf#ėyźĪ~¬sĶbs—Š*†ę–%ž˜£D‡ęg= ļ¹¹ųü±™³Ųq`®qõtfģp„' Æu†}‡ūsĻøj[’v8Ć«ķ®5³Ń£ĮĘYķŖqԘ©­4>j µZ»Ö|ŌS!²£E|ŒŖ);Ńķu/~=,—réĮ…Ė'';EtódGŹč”Ćž°’Å®Ō`0»° /āC‡Ć²ų#-¶ žÅµ'÷‡›,<'āš)ˆ³ćé÷!'R‚ 9ÅaNjņ³™=·ńßW»Å[_Łj‘ÉŚ­+äėģ«Ń*ŗ”I‚'ī‚X-ÆGĒh_“Ś[“U253ūµĪ23Ķ\ø iµZś²2Œ^$é‹%‰8‹WM¾¾†Wkʵ+0Z_jįÖi•nģ™ł¬ŗfjŅSŒžźsµł¾óPK .3|Q²5ņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/sgs.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې&M;Ą8Wiź6Ö²$8ÕŽ·ćŁłü’Ķkr©Ŗšõŗ‚5œeČ#č™ ÄÄ!l w1čŹ^̈µjgłƒ}„w&ą„¹#ŲtóųtŒRŪx}ł—~D^‚†ā=ؘnL£0”OCÖŹ0D¾”ž y4ŗū%œßń°ŻŸ¾ösŌĀ'ĪL&COY˜ŗ"ŲĆDāōFŁs,lQ‹ś¶™_8{æĆ%Ä)@ƒ)^€q\źJĘ;qV*ŸœéPČļo÷F)ŌšSˆŚvwųlŪzÕä1·Ēs­ßøz®žPK .3|Q¾._»ŗ6 briannesbitt-Carbon-d046377/src/Carbon/Lang/sgs_LT.phpUTŲ]Ā_TĶnÓ@¾ē)öę¶j!q*PśKU‘–Ŗ$„*klOģmœ]3»›(Gīō܇ȁ7č„Ī{±?NĄŖ©ųąńĪ÷33ėµß¾ÆŠŖÓéķģtŲū\pņ¼Dfc¤™2] ;J¤°©t9v-×Ń·ŅmvL»B•p­ŁŪÄ-…]JŻMåų ”~ä†¦,Y*«ń¼Š DĘJž¢P¶¤JƒęRģ²ŖD°¹ Ē©×õ/NĪ®gĪŹ÷§ Šl Še\iā‰Ń˜±)ׅElļJJŃŹ|³=7”Ó]HRūīy‘°_29įõ=7Š%&ßĖKž¤{„L”Du˜ ӕ”{BmH0 ‚YLX•¢©!Å'øEųĆpBǧ7q܍z(ŗvw£]ö½Ćģ…łTÄŽ4)ŸīūDōĶ^ŻĖĖīéi“ėĮŪ¢±ŗhT‘£źėM@…Ē‘‘p ”Rd!™c.õƒņ@ż@‹G,T>Ķ+šy’yu·˜ėW`I†jd먆“Óā·«Šī.Vv_uÓćŒc~ %>éĀ1”.œcīW¶ū¶or}Øü4}šÉsŹVÕ¦ˆ£ fĖŻ˜q7”=OsįE„$÷Å„F\ŒĀLH˜yR}z‚”ūt…ZŌóś¾Ł™€†g[^eŽy-Üż“öūiź_~qRÉs“1’i1ä¤tlMb9ŒŸ÷yÕ M>źV3ņ¬×»ę]qa?”pÜöSi„fcX¤JsąĖäÄŗ¾Ŗ ³8_¦kÅē‘&ˆ¹BSJJ•0Ä؇4FF¶%ĒUwžjxv19Ė©ŠśLÄ ¬˜†€k£ų,3ĄŠ›ˆŖ]ĖLłH‰‚¢Ųn«Ū…ē¹6”KTŌĀ«¹ '†zlń:‰™Ö7ų#±é¶7Y'”ėét(“T f:½RLčø(o:½Œ3Åbž®PæĶbŌ^§?µ€ži½ nĘ>ķ÷5šv˜ ?7Aūs‘%3T_ž(4™"ØŻƒĮ¬|½Ćsķ‡TĻ38„>µ›œ ਌rĢĒųŖ4;vŠ,› <°ē<”%OÓ£4G§E¹ļ÷ĮӑGŚū™ś™ņ—Æåif"©t?—æ„ķŸŪOŪæ·Ż’²żŪß·ŸīŽ~¼’£Ļ„āo3„ļyĄāŅ4Œ­—L#Ŗi„±µ ¹ę¾Õ˜ą·h”1W’Öa cfrÉ}h'|±ą‡G½N±MģœßxĆ!W NØ)0o恬QT[—ųmv÷#©TŸU”[]țz™½ó«Ņ÷åĖ~’X_ LH_k,”ŃØ;w Ē-:¦FūšÆĆ!wyœśÜ„°ŽćµmkL•¾}_fĀĄ\\°MSCG«'²vć*{"…‰,Až¦©0GćuØVS®$0Ąų¶f)UtÕŗŠ•Z³ÖĮ"“ó6;‘5å:Ä Ø©"ŗ¾H3³Ł‰¬!×Ķŗ3ŗū° t;ŗ£ČM›¦Ā\­ū0°ę„IKįv q‘‰`ćhčŖu½Ś¬iŁ\–HŖś†'õ™ •LvĒńsQŅa,!Įt:č éÄUCČ +™ß’†Ķ=A+hO¤wQ­9x—Ņn€E®}g¤*„‰Ā pøūĶR™Ņz‰V˜dō dŽõžMžŁe±,µå­X-”„{ĢU-Ļ’f*WÕók&2:¾äņgʊcśCęßÓTńø4ÜęŸ×™(?…ńt9ĻtɎ©ĮdV³0Ҋō ØĢ#ōKŁ-Ć c+±UŲ"ž«›ßf¶YmĀ:żŖ„Š v… āĒÄ:ä[0•(ʘJ+“óõÓÖ?PK .3|QˆŲßč 3 briannesbitt-Carbon-d046377/src/Carbon/Lang/shi.phpUTŲ]Ā_½UĻNŪ0æ÷)¾[UķicӀ $Źap™²ÜÄm,§³Ŗ>“`ƒ L;ohŠ¤ķöy’9v’Å)­ŗEæļ÷ūžś«½ś|ąöŅR–`ß§z4  ¾Ģ%D=>uĢ»S*÷÷IKq3ś‚»/9Å v‰čR)aµ›‰/˜#Łr£p-§¾ŠøvŌ‹ƒÜh0ā“ļKĄĢƒ€ŗ„ ’õ"bI#քA@°ŅS2Ōv;Ūė›»{›™+Ÿō±„!ąQ!9ķʒx0¤ŅWˆŹ]D1w‰ äédŪ NdĢ`Īńq2°KŌ׍¹ Ēd“·1åŚŲ~PĖiÖRqšpŠõ8!įŌ£$tąŁ8ir“&'éųG:žš&·JTT­Uņų!ĖŽä‹†oœĆ¦ń2$äČĆ#QxÉŠ+ż{jÖŚK¶ŗK“³šź*‹X׎¦Éå¤ź¶¢Ź Omméqü=‹f€zžHų—õl­$-gVVV>µ*Nė9L†)ūÆĆˆIæÜÓź¼Ū*܅±»/ŗ}WÄÉwī2M>łD³.“‡‹*åNæēF•­t„ŗź}±ųd““p]NŲµ–õœeŁŻWādõŽd°NĄŠĻ4żöQśƒĘŽÕ1»!öm±ŗaõĮj‚U¾UøU²U©U¦U—U‘UB™sr!‘šõP6J:ńåŹlę™bž4a¹4Ó'O¾łZ„Õ;ūZćlm­„”Ó¬{dE 4ŠF»Ó~£ *0čt:M˜„«xGć0¼¤yźi\U›)nD07ü7Š™:ué÷Õį™ŃL£Y*£bSF£˜.ĀéFÓm’lšÓøl¹3œb4ĆÜP԰Ԋ+­½iF[ŌW·ĘüWöon·! B'ÅŻ€äģł©Ķķ:o\|Śų PK .3|Q*2ˆ,õ8 briannesbitt-Carbon-d046377/src/Carbon/Lang/shi_Latn.phpUTŲ]Ā_­SKnŌ@ŻĻ)jē$Wd1„€H‚)“ÉE‘U¶ŪćbģnӟXęœ€e9ÜbnBŁn{f!DoüŗŽėWÆĖöÉė*Æ&“ščhGp—“Œ ü¬P[PŲ\ĄźXI.%+\Šk[łAro5”„ab²NāvūFņVŁY¢ŹS/}§tg”¹¢€DU¦ene %Bn)3„K“¤äŖB ×IŌŻ¹ė«³‹›Ū‹ÖŖĖgs“P£”ŒÕ;+RØÉęĢpv£œN7J»°įD ė“Ō›H‹ŖĄDš3qŚŠ£8Šā“#- ŠĪÆŽGŃ,MN3M0…ū š J”)%QšźīK֖éĄbŗ\žü†6x˜öŅZˆUŠńR4X¢i„ŲH hµ~ž:ĄzdĖ \’ŅšęwóČäJŪM ļļÖŽx°Żxī–$’ƒ]©¤Ķ‡«“”ŲčV·×l¼C‰ ÖĻO-&ždt_lׂĘɍūÜ¢O.醝8‹2‹; ]=S÷±Ē»yv¦Å©ĘHcŸÅ'ń9|Š!‚Oą›ūÖ¾ėŲ0#mlčTµĆķŗoM[Č“Oņb Ēć±īć÷ƒėJ]łś®«——ó’ǽMÜn1scvȞ:į^;ŌĄĮb±˜Ā>½Ķ/:ö›²”üIĖwó/$’”ż‰y¢œä_éŚa‡!ĀŠ¢ Œ 1ź’^ŒŃ?Ų?¾œüPK .3|QtĶ&Ģ 8 briannesbitt-Carbon-d046377/src/Carbon/Lang/shi_Tfng.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦+žZ}ĮfgžPK .3|QL-xVņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/shn.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې&±ų8Wiź6Ö2'8ÕŽž“棳ü’Ķst±Ŗšõŗ‚5|9J0G(g4¢P‡°5Ņ.+{6#ÖE;Ėļģ=¼ †¦ŽTaÓĶć —1hmĆåé_śd ²÷`C¼ NĮpž,r*•<¹„Ą=š²ū%œßūa»?}ī稅OQ˜L‚ž’ uY±‡‰Ō•›ĀžB‹„Ø_`›ł…³÷›Ļ&†“½‚ąøŌå„7<’TØ|t¦C%k¼æŽ5 ĆO&AhŪŻį£mėU“·Ēc]¾qõXżPK .3|QģpķĆ6 briannesbitt-Carbon-d046377/src/Carbon/Lang/shn_MM.phpUTŲ]Ā_ķ×MŪDš{>ÅÜŅ®¶É})„t[¤J»-¢½ TYg¶¶ź—07ŹĶ E ā²~·%–C/œJ ŅBčw‰ł$Œķäæ7‰š\«•ņÄ3Ļó›—dģÜüd  Z­īŽ^‹ģ‘ĒšīŻ`D¾(Ä>!BcäņžmÉKź3ś”udß²ū5õ:¹Ćuj‘ĢééB›½ņķmK¾µEGµĶ[ó®ŸŁ¼*tāQķĮˆėO5AØÕ'†®2Ė‘¤ubs“ ݶöÉĄ`T^{®³a•wt’šŽƒG÷ŹRÕų„FR‡ōuGp½ē Ö'C]h²EŽŻ±]®2 õ«ĮvĖ–¹ŸŗB³¹sPĘ7ˆŪs-į’ćµLŹÉ‘}h“ĒŒšDbpŠķ‡ĆNŻē†iv,&ČŪbäóeäQÉ5až+G}Ū¤ŗQNøŅ8.·圎ĪU™|U]īčĻŁ5ξvuΈ¢Ü½’…¢tŚ]fuä>“÷ÉW-"’ŚõJ8mņń­ł„źņQu”żšKr||LŽ%}ł×ŽÆ:<©_ڦm mžŁ.¼ ļUį½)ĘŽ“_^.)½×ężTŒ_nlö~YÕ0“oŠÉwkŚŹų¢*švUńŪĀ“Ķgė{xq1łvŽcrŗ²†,p^5ÆD9ņWe™õÄRĀ{Y½Ż4¦M Uė»Ā{±f%ēS®š—wMqä§Süæw’­½2ö¬OG—ß¹ó…TU— \g—Ģäūŗō•~²n7žö~(k”›ūāņŠ\4yeŃē½båÜŽl°Ž5ÖējŖœžėʦ7šĻWͽńÉÅd’XĢii‚«Ę—šrJsœ+ʶv<¦nżū£”†P,×ģ1ŽĒäLžW½ĖČG EˆbD ¢Q†(Æ#†ƇįĆšaų0|> †#€Ą`0ŒF#€Ąa„0B!ŒF#„Āa„0"ŒF#‚Įˆ`D0"ŒF #†ƈaÄ0b1ŒF #‘ĄH`$0 ŒF#‘ĄHa¤0R)ŒF #…‘ĀHa¤02Œ F#ƒ‘ĮČ`d02ŒF#‡‘ĆČaä0r9ŒF^ø©3®÷uf.¾ūõASäņø™LpąŸįö]ŠæĻcyO”µ®·UUvąźT‡©¶Õo,xżõzńąxŗvvM¤ŹĪp]`Ä(o$ĒÕCń¼yCUÖ'×=äGc³Ē³éo³éélśsµ ł¢V’ūQåƒj>¹žQėPK .3|Q]jw¬ńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/shs.phpUTŲ]Ā_-InĆ0 E÷>wiƒĀ>@ƒNn (²č°6h™¶ˆ(’JQ5rūŹNW©?ų²2'œØ.ŚE~cnįE=)õ¬ »~Ÿ|ƒÖ&œž„oAÖ 1;&ċšdŠąŲO„ŅAĪØüDGXvæLóź{?“ūćē~‰ZłŌ¢ĀŒ N*Üg„fV[n { Y •¢a…m–.Žoņaö0ЈŁ)Mk]NtÅcI…ŹE‹=)tīr Ņ,¾~2 A×½>ŗ®Ž4ɦ®}®Ė7nī«?PK .3|Q5ó.|6 briannesbitt-Carbon-d046377/src/Carbon/Lang/shs_CA.phpUTŲ]Ā_„TKnŪ0ŻūÜ) ]HÓ4m’A“ ­SA4=¶H‰¤Āų]ū¾B·ŚśPҊ#÷³0*ĄĶćĢ{oF„OŽ–YŁė zģ€ŻeҲ©D`KnÓSę2`ē܌µ"Hä|Ŗ å{bŸ½7’+v v,c'搞)Jµ]œ¶„“‰DÓ‘ ]ĪœeŽq5a((K’jŖMĮŌŖĻJNŲ£ū®ÆĪ/oG—*śswĢsĖ&Ņ:#ǵƒ óŅetBŽ­®šD³Ć0ač}W»L{Žƒė\»įŖdōŒėŁį åX¢ĮžĶT=Šf9 øŚ(ʍįóŌ@‰\EQ+aĻ@UK,M/®¾¤é ‚Šv“>ūŽ ģÉz>›°7§-įė$ƛ›įż}ŅGėZ¹¬ķI>bīĮ­…TDį¬,=ØÕĀĮ3†¶j–%IÅŌ"6Kß9= æfy„XuPgĖf©œĶ7@å«ÕĀ7K$ögX|³|ĀĦŻVTJ2ų‚ †FŪQ/Ā"ųY-6Rąš„#-(’ķÉSK_̵óō:ī¬ aTŬłį£·KÄõaCåC8fĆŪgˆĒßČSˆ_ÖÕą6‚ Ÿšłó²GO@+”ÉŚŁG%ø¼“v’œ†č¤ŲNę,`N‹č U/Čļ¶f&­z«Śźµ:­@Ėś'Uø(’CD$©ž¦Si¬KkČęĄMd}Õļ­Ė6Hr,t­³Ū02ZŽePņ1BŪ²c=OwéÜ¢ķ&>^•æĖ»ótžuOFNŪ Pyl~ŗŖd»•ót'‰‡ż×½_PK .3|QÄ!8£NM 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/si.phpUTŲ]Ā_ÕVMk7¾ļÆŠ”0¶ćzńÕIÓ&±)v.6˜ā.‹vF棑I[×$ƒćCBŒ1›„B.>…`jfCCNķśK*½͇Ļū„W÷¾%£N§»°ŠA h+”ÅtHža”‘Jz„Å€3- Ÿį]²¤±>Ī£‡‚b†ž9 J”{3żé)WK!OļŠĒ\€”x<¢öŻMĀ,BC&µKs‘bE9[D£!ĮZö %{Ą[ņhķéęš1ń©+“‡%ŠØT‚ƊDhŖDktģ’EH“£‚ķš ÷ĮX%\Č3ž=˜żuÉ5ž”l‘člŒš~ō÷³ĀWщuęŅĪ7𐲣mB–”ķźšę įöĘź<ųDC;¤æ`Ÿ` ļī£ąłņA>=̧Gyö-æØĘ+!3,Zī·Sņģ"ŸNfŅRĪTR±²OłōGåŲw4ƒ“gĪ$ķņ¬›Ę~ȧ§Žū^Ś)ŚI™Q;3ĀūµŲ>ē ņqcßS+Ćy™ĮJt»ŌH׳ōD‡nÜŲwÓN)ż“ÓRŹt£6‹ į™_ż~ĻÜzµ©n,ßķLšŽq±ŻŹ²$!gQĶī¾.Zדų}ÅDsšO_B×Eķ²ĖÆŁŻåÖ䊢)A–ƒ Žēķ`±ąiŸń=ĄĘcšSĶ}cHóč9€ĢGc47d·ÆĻ0™ ŗU‡üŻé‹ČRźóŪ”K‚jN‚»%ę Ó™ ½påw„ƒ"čŃ ¹Mz8VDüÆr‹h— @$'°ŽP¼Ü¾yv¬a ķ>‘:ļbbŚfzį™H¹„'Ó`ŗt—egĄ#A»S&¬oY»®Ž4™†®=Õś›ĒźPK .3|Qąź2šÜ6 briannesbitt-Carbon-d046377/src/Carbon/Lang/sid_ET.phpUTŲ]Ā_„‘MoŪ0 †ļł¼¹ ²»n]׬i¶M†5» CaŠ2 ±%’bøæ~’¬tzœ/üų¼/å«Ļ]ŻM&‹étSųYK•l|ģ-č lMp‹\hå[ā€{šū»įś…ø„/,QĮ–L!­…«"”7Ź—ŚĪ…nÆÓÕµęŖ\Ó€ŠŻĄr_[@UB#)ć%U„¹E+µšAלŽQRēļoļ¶»»€Šžlz4PJcYĪR ½“µ?ńŽv,Č •Ńģ"lf—ĪÖšĶ‡æƒÆ”Ń ¬Y++‰½G§ŹØžk“Ą†ĢĶžče®y1LÖ±dĘ!gźä£plä‘.˜ž8Éy¾ŗŹóy¶ 5÷œĶą÷$@³qE“Į§ėԊķĒŲČV«Åf³ųåælŸĒµŽb¦²TyšŠlMŸņ ²ØC²ģX6c'<8Eclb½t{glČvŌYj āP|V§t«Æķ‰1?÷’’öŸ£ä&I6ĪM$ÉBŅOŹI5 ¾jõD‡‡Óę;l “GQ zäćAšSõ¤u—ż†­31[rćY"¶ō†}¶‰WHō‘}”}B&^½EµRżČCr]å•dcó@ Õ@žAõżéĖRR›¤ŒÖe\¾Ę¾Gցö|łqņPK .3|QQtF±z 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/sk.phpUTŲ]Ā_•VĶnÜ6¾ū)궉į:(Š“›¦u×6ģ&k°Q ŒWY\I¤ŹŸuÖčä҇šų”œ‚&ÅļՑų#Ń>ē›™o†ä'r_žÜ–ķĪĪ‹ŻŻŲ…Ė’k(x@ļ–)²S"Ģ™ZIAPV±kܧŲ>üYö~Uœ 8G½āĘĄĖUož"Ȕf?“Ķ+z"Õ@TŲŗ†L¶[ÅÆKLäPó …¦’¢Ŗa†K±mŒ° Ē›!ļĶŁüųüāø§ś3%3pĆ4ä\ÅWÖ`7ܔ䔎µ“*C*”;čgŲēZSJ„śńwš¶ä5o[„ß™ĶJT]м¹€ »føŌÖČĘĀk«dī1³®l ¬QŽżf™ąFĀ 3L;člC«ta˜šł‡WŒr¶r^*š‹l©8Āŗö\¬A ‹ģ5·;Š’i©mž3vĮ)†}ŖŃī‹0E›ö–ƒJKį å-pbkŁ:ąœg²īī4œŹ¬‚3Ķnüe§öŗD=©§Ż?Ŗę žĶ·—Ļo- ®ģ Ēóø XĮaĪžUŻ—a?«¼Ūzf[dj?½‚™’Õ_™“Ā ·“±ÜĢö|“ ®Ss¦t.Z2βģ,LĶ‘®Ičšß VĪcŗ/_s|ų 0µ>Œœ7 § pĪ|ļS¶\šqŲŻĒŲ„"pIŹvžRę\ؐ:XŪ‰ÕŻ‹˜“P•qā”nŠÆŻgٜ¹MĶI^ŗdŠ„!Q\i³ģ'/‹eü~æŸ, į.hXg²āÉóƒŖé €w³=čĄ`v(xQŒš#…±ŪŁŌµEM`üŹ7ßž¦$‚.©ŌØŚµÜõē¾w0š›K|zzŠmzĒÅÄs uāt®££żÅb’zēč…=š4 DPĄ><-rz`J“_MdMĖāē6˜ć·Æ¬_Ž–ökYõcŗf•ѝŽłąø3eŚręGZŅ’ 6{LæŌt»›XÄń;fĒź™#zJĪ·’O1|üa’k&lw§śW*Œŗ ³~ĄZÕŻ×ŌŻ­ū÷šND’pfÆ­+ر5Ų¬p`•é>ś±›ˆē˜¹qŚN²(Ō”oČ÷ā;ł6|¾ŗ/ģkŽåPńœcćK岕µ„ŪĶﳳ肣ų«wžPK .3|QīKWęĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/sk_SK.phpUTŲ]Ā_-PŃNĆ0 |ĻWųmP”ö˜± iŅ“ą½JSw±–%™ćPń÷øO֝Ļw'o_³ĻĘtMc oO& :³e4x„å!E„ÜÕ^°Uķ"pšĪd#œ± $ŪaoQa’Ö„ŪĖæō#ńj4ÕĄ„üĖtń6ŽČa,§Ä7+”āä€V¹Āy½;w‡ó×a±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń^‰ś~üģūvӕk«Ų<›?PK .3|Q/żņ·Ž2 briannesbitt-Carbon-d046377/src/Carbon/Lang/sl.phpUTŲ]Ā_­WŪn7}÷Wš”€ķŌq¢¦m%MšŚĪ­¶ŌF‹Ā1jwä„v—Ü’\9ē¹/ĶGųGśRēæ:¼,w©•b„ !@sć™įp†KŽXeÕŚŚ­7ÖČ rœ1E&¬‚’•šˆ ѐ*Ē‚£(Éél£­1ßH6ÉO’QNA™ÖäžŲ°?rd…ŽNDłĄ›>ŅMź¢ ‰Ø^Kv–iByJ –Wč’O„,©f‚o‘ŖŠ²ƒs;o’ŁĪŽįў²ńéŒjrNI™Ņ’k )9g:C Ę®D-@G© ö–Y”™ūØÖ™jhč›äEĘ VU@~£u’tŅcUkQÖäēZŠ”:™žęµ£č+rpĶ`ęDĻkŹ™ä1ÕT9Ń£œIжZÕ ÄN&1TQ”² Eį¤{\²?kŒ€„Ō‹ŽX)øMyZ3H%ę’Õ¤Ü Y"Š/y*’œĀ“fĖ]Žę6ūćCłpɧ¬ŒęŲ½˜‹„֍±†2¤}¤Ņ#³H1…‹Ē s ¢ÜŁ“V˜¼ųū× ©@2‘Ž”Ęė=b5Ÿdd¹­Č °p[£T#‘½±»Ļ˜»ńYńž±³:,›µzłQ«*éœfwwūą`ū‘²Ńn“¤Æ_`@zīƒYŠc‹,3>õ9H(ŽóSŸĄĪņ-a·ŁÜ[ŗDŒO .»ćĆ+ŻZŁż\bõ{øCšøČIßŖ Ŗƒåkiš± h“š'ę5E6^ŗ÷›’{ʱą&ßG_™ĶÜ$o€ ŸQIF6¬ņę,«_&sŽĪŒÄ<Ņn{r3üC`żĖ_C^ˆSrĀńr\L åcæ·r°$C J8PČÆEżfuTm|=ąÕW®š ø~Żß®!ր–z… æū„\Ā*€ßĀŖÅXč„Ė~øw[qwķŹ9ūs=io¤žĄYŸR^›ļD0–ž,©„Ä“’¬p’©ł›Öœy¢pÕJJA„”ijaD®…'ńÄ©¹ō:Že¤2!u‘LJā‰ĆšAų¼ļŁ{õƒ/s c+6+w5OUŪ†³…k±ą¬¾)k ž°C{čŃZÖć{`Ū€z@×ĒjŽiÉ9ćQˆĆSMØĄaXX!ķųiJ”Ž"•(R—÷Ŗ”ŃöōŽŚPK .3|Q÷B’ģĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/sl_SI.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦+”ÕlvęPK .3|QĀ"±wņN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/sm.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې&”ˆc•¦nc-MŠćPķķq;N‘’Ē/Ł>On*Šŗ, (įÓQ‚ž<‚ž“aŲƒ8„į6]Ł‹°Rķ"æ³÷šŹdœ0µ$Ūv_‚ŽQ*ǧé[ä5ØĻރÓ•ip&tąÉbHZśČ£Šį&Fwæ„óź{?ī§óa‰ZłÄŁ$č( S›;˜IœŽ({Š™-jQ·ĀÖĖ ļWø„8č°7Ł 0k]NxĆ#NJå'gZ²Ęūė-€Q25üdb„¦Ł?š¦ŚŌil¾Ļ•žāę±ųPK .3|Q:‹Š*cö5 briannesbitt-Carbon-d046377/src/Carbon/Lang/sm_WS.phpUTŲ]Ā_µ”ĶnŪ0 Ēļy ŽÜ™}ļŗ®Y?†i¬¹ ka06‘%O rÜ»ķĮ&ŁJ£ięCD“ņG1’/>7U3dgg8ƒiÅę,üŚ ¶ ę`+‚kŌ3%½«Xā‚RÆ ņ“ā¾hF dfl-\ĢĀė•ōÆŹ¦…Ŗ/£ōNé¶ŠÜ …j6š•”%.H”s„k“¬äAč}+¦u›7_ß><ކRm¶B k4P²±šgĪR k¶•ųŽrŗ *Ūf³°Ć;r¶RڜūØUtNÉ«ßDnü,ķk+±ŲBģ GšˆŽÜĄH{A­‰–%n¶;å’¶¶€·¾āܽ¼LvMį¶öTĶykß”FƑ§%>%ü†ÖŪŚę~āp‡· {‹©YžHG©ü%čNÓy”œ“຃‘eąµM‚q&(Ŗ—b~téx^Xś ŚK`Ė|±Ģ‘rĢ’ Ń%*”,{)¢ö~†9Z‰łń„»Œ ažĮĘ˟l1?¾sa{ŠśĻoĆņ„F}(č§{ ’õH÷+d ߖ>ĆüżäNįļJ/¼“\¾Ą|ÖóéĒĮ_PK .3|Q,Z¦Ō3 briannesbitt-Carbon-d046377/src/Carbon/Lang/smn.phpUTŲ]Ā_•UKnŪ0ŻūÜ) ݶiZ4IŃqM6E”4¶I¤Ź ”Č"G°Ń›Č½W)‰ś0‰’V™ó޼y3¤čćOyœĻf‹££:B71•hES@ę”_!:%"ąĢ„Ā„¬Į7ܚ~¢/‚†®@T)tŌĖĻĢ,¹ņCžXźW.”•NSņ¼t+DX„R“¦$[q‘E9›£<bb…M“wyqz~u}^K5žTLډ"*• V” U±AŒwɵĮг‹™„CDRbyJB0ļP I 8šSS㳋ļūŽ˜o&ćĶŃķ ™ĒĖ@ЈBę”'čÖ£¹o0ĢėnŽ26IDJi¹ńŸŠ‚ÖÄBs) ėjW/3rĮ°LøLxĢėŸJsQķ¤ŅE“VmĶĻ|ŠI«m”EdЧe±Œ¹PCq[ÕV³Ul…NŗS|.–QÖKµJ­P«ÓŹX+ņ‚!e¶—¤œ3g"ī@œy$‰3j;qR£Œ3wŪ ÷ūĒjg69«¶Õ–5®Ķ‹j7 °{ļœPØ«ķŸ_šŽBE r¼NÜ„,²q ēb=.»ąO«Ī c%Ė$$Ėҽ±›·OgßM·“:·6ī©o¦ėb°ßū;YyėM­Ø ›żĒ|…ė£Š8{×”Ķn÷¦ 5įĖ›&ā}ó³Ģ›ć׹Ké`-rę/żęq ‹-—Ktę£ēš€÷ō¬vO‹Ģ3GSdÓxŪ[līœ6į}Č5SØśM×õ< ”‚”H@JI‚„’—ąo3J .ŸĘ` {å@šDŚč¼9hVŸĒ<7ßn'‘½ü†Źp‡8œö6°ą$BšTb‹›cé€ö±ą4DšT¦ķš2óä6EėX?{¾Œüš@Ė‘ręZd:śĮŹiˆąW’ļ?ĢžPK .3|Qč²t€j¬2 briannesbitt-Carbon-d046377/src/Carbon/Lang/sn.phpUTŲ]Ā_}TKOÜ0¾ļƘ[-ĖRZ( ’=.”h’x×VÖvźG¢šė;{ŁW“(’Ēž3ž8¾śVóz2¹8;›Ą¼paa!V h¬Ń8Š pœĮ š\+Z**\²q×ō“ā~ ęĢęĀ9øŹ×ÓŚĶ -Æ#õ§6½ŃĀÆVPčŗ3bÉ *a% ¦,„T m$:”ÕźCZkk{ŻÓćĶŻüłnmÕ×ē8:hŃB)¬3"÷Ž•Š Ē ”Ś­ö¦`”Øģ‹½˜ę¼Q€Ę`—Vư`4ŽXѰĆžzadŁķćļ,›%LĶØ3ÉŽ&@O"™„`2Æ×š– !I¼OŚ2V•Ųو>7Z•zMI}ýéĆ.jaD :C…1°•Ŗ„n˜Į#’ĢrmÜ6KLōu\Tlō;¶’B}RÆ.Į$x‹­ƒŌŹńĶVē„0}żæ|…凔ń’…(o¼Ģ7›n¦1®¼Ÿ”Z’d=›w(‘ZFļzzļU‡”?÷Äß°ŅÜĒTźäAe{M¢śbu±²XVH;W…a+ˆ™c֘0fūĢklCæŌ/?½ō+ÉĆĆ„$é.š¼ƒ\Z»蕞ó4=/Ė=p…4Mįv=€ ‡ćģ’£M”¤gL» Ūėš Xiś5. ķ•‹“¤Į0ļ|§Hh}Ź9‚a6¢Žń€7tø Śa³Ai Š³Ł×‡oš@^Ž`˜ jÓ•µĮ±=”óa³Aiģ¦Pt=F‚PĀŁ£~Ē«`ĘlŌ",+čŅ Ė*­Ž¾œ15x?ż2łPK .3|Q%½žŌ 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/so.phpUTŲ]Ā_…VKsŪ6¾ėWą&Ūućų҃›ĘQbgźTröL&£j4 ‘€ €‘ŲØ’½‹²āp<°ūķ·»Ąī’o®7Åf4ŗ8;‘3ņXCrQr‚æŠ–ØœŲ‚“ ©’(ŹÖ°āÆėą'Ł)yÆHrĻ ֒7ŌmßIÜ*ū*SÕŪżØ“'Źė²$™Ś4Z¬ K@2RŠŒKƒ.e®tV(yN6%”}|ėķ¦wnļn•Ļ`É aĀX-hm9#[a Ō`ģFÕ:ć舳`/\†ĪvRŪBé+·ü•L(9X(üŖ„Bœ¼ƒ$ū÷ŌŪink-É|Dš7ō˜üń–ŒÆ2UKK H`ūžF)6>hXvųMĄ|æü/ŒÜŻ®Ķ~qy~'óy$³JI[ Ā”¢ÜwĖA(=šQUŸ UI¾å|=š# ­ė¬#ļA³?ŠŪö9„IbĶ€¼(…Ü÷vÕ “’2õI«6—+ćą ”—I§vņž•uØĮ™›V\ ‰U8ąfš$ēźŻB•ūćXDö©ŲSRž)Ɇ×QRĮ ńdDē©Ū)µ‚Ŗi>·4ƒKj V**¬Ø8Y¶QŅåZUK©¶}ĄŖfé][n¹0p&hŅRŽ­Ļč[2ļĄ` ±Ŗ_ŅŃ.5_ńݦ:¹¾śĒüR^Cƒ Üb×C³w’Ųééõ€¤įćoݘJh¬:Ž8KŠwĮĖõA¤•Ņ:„I¹GÕz‡: öiP‡>Lƒ) p…æØƒP°ųHŹpƒNĆ8²Zk.3nŅĮźTX_9×p!‘ł”ńšÓÆŚtW±(Ń;=õJ XĄ8‘Ø"W^>4ą’õą8„łńœ?įü…ó&ćœź“žąĖĖU<Ͼzѧŗ–īwZׄˆØ•RĘśå§–óŠāĒŻßk«T\ß«¼SÜ7‹A4Kƒ5n»˜b±ā’ė J¬ĶČÕ³3Pń›Ōˆó™I$ō0ń¼ ÓĒČå $ßŁĪą=–żOįŸŪ×2ƇĢ_Ā—Ų…żƒŸZɁVĒ :ó?q¾,Hš3{ĮĢå}[šŲØÓī“揞PK .3|Qv³„'¦5 briannesbitt-Carbon-d046377/src/Carbon/Lang/so_DJ.phpUTŲ]Ā_-PMoĀ0 ½÷Wų@]¹olcćcBŪ.ӄŖ4uŪh!éæ~i†/ŽŸķ÷ž3{ī»>˦“Ių쓇F„˜{I ®ī’*g#¤~d‹EœĘGj Ƥ„…=śJ3Ƭʹ„ćB¹ćÓmtķ(5ĮP®æn;ik0Z”õQŅ6ŽŽ’µ³9ōeÄNĻio»Y¬ö«*łćN2œ„‡Z{&]ĘΚ»Ų‰Ž½ ¤0 ÕÉģtøpŲ} Ü9ņ÷ĆūŽPąÖä,k¤č1Ų:éC ć”4čē-āµpŌ&BdAÉKIŲ©0fČėŽƒ&„²\nŽĖ²SļŠųĮ"‡ļl ’'zO7(ĮŪˆå²Ų튯"OĶCžĘŁPK .3|QŚ‘“ņQ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/so_ET.phpUTŲ]Ā_-PKOĆ0 ¾÷WųVØ ½Ćƒ±”Ihą^„©ŪXdqq*öėI+r‰ß+Ły»Ķ¶uŠv‘R (ŅĄ „‘EY"µ$U'€’§łŒüŲ/ŗŠ–+0ÉsxĪ̐õę¢)šŁģüäd'šµąr^!ŠƔ™ƒ)>0µ’‚†Ņ [ćq-żEśŽ+ĪÜ ^qcąĶŹv’Ō•ę,•õŪ@ż(•ŹŪŖ‚T6ŠÆ LdPń…&K‘KU3Ć„8…¦BFc?9nݼ«Ļ.on/­”‹ĻĢĄ–iČø6ŠÆZƒl¹)”ŲµlUŠd”¹`Ļm†vī»ÖRé¹m’ Ļæ$ńßūšY3JRĖ(X0]p'£Š“JĄŻ čI‘©ž~ É<•­0®ŁuĶMrźyl90EłüńøĮŽ÷‹u浦ˆ°ŗeå >Ā¼EwĢśØĘq%ūłü48Lć»)ņ6ęõId,N/ćfģŠĆ.Y,ŅĖ“ā$ÕX~€¾wÄøŹrX.h‡Åå³CƒŠė²ŃšŒfųEłŸzūā½·ĘTŠ8mÄ|ä>žC'„uŒ#t¬Ž[³µ ˆį5BMiŠ[a(W®d½2,¹ Ųūé¹A5h˜ī°ŅiĒT}@ĻóAŲ0Į#ÄČ~»ÜJs-®ń”é/.ę?~č?(Ą—ū5…Ų‹e%NƑą¢Ä£‚FÖR©¾"؟ŸŌ$!R¼q¼£¢¾VūĮR½öćuߋj‡įß²~Éż‹Ģ _}õüOŸęuøø!s­#0”dq~}}žžģPø¦įCķ{ZFĻ)#߇ōRV!mmµŸŸf5.ŗŚŻŃ¦*ō=PŚ#3f łe9ĘūÖæm`p7A«˜ÉѾ™Ņ²¤}-„ «Z6ém¹¬t8;W{éK•qĮŖp°D[ÆP Æ1T<ćčäĖ"9…äz‘t“ŻEvFR2AU$‚.6­2¶U3„ķ£xUłŅžż‡JÓ½j›Śz|c[ėVĘĻ7ĢxŌ`hP^"4³¢t£qK+h†PB !ŠDB°ŽĮ9øvžĮ°7³Ø.g¤Ė]fŃķ«Ī¶ÉŅōmŚT®‹¢“7øm6 ė®MÖ­¾oåEf–]„ĄBbµ;¬$"JŸ'v¹ˆu÷I9!ÆDœ†Sšóūé9WŚŲw)óįj5\Ōvܓ,j{żĢėĄŖč»+X“8ż £Ļ4kq’×ģPK .3|Q f, Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/sq_AL.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm£Bķ0bҤiĄ{•¦īb‘%™ćPń÷øO֝Ļw'ļ^²ĻĘtMc /O& :³e4x„½å!E„Ü·½b«ŚE¾ušĘd#\° $»aÆQa’Ö„Ūóæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹Āy½;ŸöĒĖēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń^‰śžpśčūvӕ{«Ų<™?PK .3|Q:€šŠ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/sq_MK.phpUTŲ]Ā_uAoĀ0 …ļł¾PUīcӀ $ŹaŪešP•¦.Ö&ÅqAüū™Ā$“i¾X~ļ‹ż”Éc[µJG##xÆl€ŅÖŅ[M ¾®fšrļD2_z‡‰°g|`†šLV;Ų`Č-3LņóųädōœßLÆč‹§~QŁÕ5ߞČī*ķ Ø­Aä¤+=5š­w1“5jяż»õj¶Ų¼-Ī«ś|\i†£PŲĄd󎱀£åJÉ|GåPч+Bīȁ&ҧŒ°­µA馣`8 Üw–²l¾zͲ$‡}"?Åš©@*ŗd 8č‘ņ”`Šä¬‚ļšJMDNtä5•cĮ±+Ń $hkĶ÷Ņ}ņJ2ŹÉ{Pc¦5y1¶āE”“TTGŽō PnŹ’¤¢¾•lRhByFJ–W8$Ļ…¬Øf‚’ŗŠ}s7ßłŁėÓ÷—§Ŗį§ ŖÉ U$cJK662rĆt䮄‘)ą@YCö±Šś¾4ŗR lūy'TA.…„ÜÉo$å’)Š’•ėPeųŸOgĮž ßO—¶ß574a/5žxl­Jü ōĆ#8ž#v€įóŽæPK .3|Q:öĆ’7 briannesbitt-Carbon-d046377/src/Carbon/Lang/sr_Cyrl.phpUTŲ]Ā_ĶWOoŪ6æēSš0 i§ŖķģąvķŚ¦Ż24Ż!†- F¢""²hˆrŅ )ŠŌĆŗćŽ0`Ē]4Į‚¶qė ¾Ń%‘4%»NŠ*ıłŽćļż'ŸnÜź…½¹¹«—/Ļ”ĖčQH9 hD|÷p’" 4$č.N6Y $ood„ų‚w ŻI(ŽŃCĀ7iš¢›rłM K–ŗėŽ,Eļ³$ śQ„<ÖŪKčV˜"ū(¢‰9،–tqJYģ ^D0Šv(ŁĶ÷=X¹{ļįŚ= •Ū—†8E»˜#Ÿņ4”›ż”ųh—¦!pĄvĪś‰G@‘Ÿ{Uz(÷Žī§!Kx[ž¾‚¾gNÉ%ōTȇĆ<ē…h!g^¹ I’!˜U9łxrZ¼Ö®ŃåSŽU`ńĄjfeöõÉhĶŁhYMĒ3±¾:Ö@B]¾ųšOÜŅ™pHVZŸōLƞ„,Ā|<»eGMČ­üģr›7ö(ūM¼›ĒĻå™Y™…{¾ŽØ£lµiį˜Ü!ņؼńr¦{P9`YāÓGåĄ÷»›$±_¤Ź«īQyȂ Ćģł¼·ß/šC”¦Ąl=”!ĶsćOÅ[Ķy•ļz%Ē]żėm){$^C{ó‘÷½ōöjōܘPfc”3XU¤Žó×5CŪ°|épx“N-\ćŒk¼pīy=pń®±Ų5¦ŗĘBW&'88IT˜ķLŽżVļĀøžkQ§ÖŖSņ=V}—eUyULÚ%Vō«¦2Å5ś]£Ś5z]£Ī5ŗźwŌ»Y”DiPš [+T©ńšš“#Ē>tō[ų¢y7–ōB(Ÿ–™œĖ‘BIE”+‡ž8E¦vHB}JŗŹŚßş¹5Į7Čl\ŸūPK .3|Qė©·ąØ: briannesbitt-Carbon-d046377/src/Carbon/Lang/sr_Cyrl_BA.phpUTŲ]Ā_}PMOŪ@½ūWĢm!Š6w Ø@"€KU!kcOš Ēkf×D¾ńqč_h’­ˆ„ aż:¶LØŌ9xwŽ{3ļy7?ēIƒ^/€œ%ŚĀD§|ęŠ˜ øaØhl2†¢Ku’µµ|-Z‡]Ņ*ƒc“cķlŽėv'ćÖ8™éöBśÅP³hR¤)D&/I_$TCŖ#Ģ,[fCSå“Éś§Ø»Ö8kꎇūǧūõŖ&ŸK”ƒ™²kėH ‡1Ģ“K˜įģÖ!ÅMŲA@č Ź@©2$ĢS!ŸQAV_ćįU” ! ÷OĀPЁ„pXR*łyD¾Ą%Ś€VĄÖöjࣳÓ©čæ'Nß1Ö®-µ'G²,å ³¤˜ÉÆ\莇4ųמMsõį?śóö3ÄĖX•‹_žÅĻżcõĆĻ«ŸžBų?žµE[Ģ?×hu_Żł×źę­æåūS=Ēŗf®śĪś;’»ŗįļBÅ»ę]Ē3÷žoaD|ĢŚÄ[I%»8r™A.Ķeē);+ŁłČŚā|żSšPK .3|QĻÉEH: briannesbitt-Carbon-d046377/src/Carbon/Lang/sr_Cyrl_ME.phpUTŲ]Ā_ĶWŪNćF¾ē)梇z½Kz‘ŻBŪ…m‘`{ĮJU(rģ1±p<‘=E lŖŅĖ^R©R_ĮœT%{ÓæQ’{f|H6ŠŖj-Hāłæłžóų÷‹„^§75õtnn Ķ”7/B®ēcß=+¤ˆøˆv0zi…mĄ’½kķ`°>cĻ¢ÆBĻ Škµ=Jы6æż"€[BM›t3č+ "·ļūČ&½ƒŠŪéPdņ=Ø \v-ź‘Ą@=[°¶ēį}±omõåŹėN%죋¢}+BŽŃŠk÷)vоG; Ū#Ņm ŠaģSī!ßūeŸvH5łļ'čkߌóž{׀Ce¾’›ƒ]«ļӉtۈWŚIt¤īŽr)ó­(ŸŻ¬§Fä–’w¹­=L~bw`³Ī²v`LfęĪ;d—š\ēĻ}Å~«‹ ķqübĀŅdęIõYˆˆ¬Ō‰ńh<Ņ^(°ų"9†ĻÉ6/<:Ś×“xÖå`d­6.£;„•+~” zk„–„ŽX~6żn‡Å÷­ģŃOR~Ȃ qrŌSoj‹MmŖ©-4•a|”ƒ“D†9×§±€{fx”Evœ¼—"öź;CdU©ń²˜āŠ%… ©wPiŠ©õ›Zµ©õšZ©uUnɗ¶T‰Ō é%·$–¬’Rń¹^ŃüˆŪR/éóś„™Æ§ 16>+f#…Dł^$zųCģéŚĮ”ēxø+­ż™ż*¬ł ¾³ż|ź/PK .3|Qł”cEŗ: briannesbitt-Carbon-d046377/src/Carbon/Lang/sr_Cyrl_XK.phpUTŲ]Ā_MĮNĀ@†ļ}й) ¢‚˜źfŪNé†Ņ­³[nŸĮ·P#ń¶oä“!źv÷’÷›&ۿȓÜqzŽxH¤†X¦|ę‚ ØL‚0،­p)č1[ć­° C’"ƒ)ź@ż –—Ke¼P­'ōFQi ”Ź7$‰‘EŹ3Ķ-³XŃJ©².ä) öÖ˦īv2OļĒuT3ŸI„Rhˆ¤6$ƒĀ`„4 æšģZ"7Šša{”)(A$6>ažŠł Ņr-ĀĒB‚ļ_Oī|ßs{šüцRxåń¹]˜9ĄĖ-—‘ŲhĪ0sķ—=Ų{Ø^ģ+C®ż¶Ē’žż¬Żj_ķģ±Śžź'¾×LSS=3»³ļՖ÷Į9‡?Åü޾q;ī¼ėĢŪgĪPK .3|Qīa£…Ė 7 briannesbitt-Carbon-d046377/src/Carbon/Lang/sr_Latn.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦+Üź6;óPK .3|QJ–¦ū{Ć: briannesbitt-Carbon-d046377/src/Carbon/Lang/sr_Latn_BA.phpUTŲ]Ā_}RĖNĆ0¼ē+öfØ*÷Ī£ (¤–ō‚P¹É¶q›Śa½i•ąÆų06-{YļĢxfcåāŖČŠ(ōzō`šŁ ›#H/ 1ųp†pkhī@ÉŚ,Q‹¶–Ÿ$§pCÖ8xĀ0·Ģp1ÆĒk'£gųͰ“Ž{jŒežCā‹Šģ2c0.…Ü&č‚Dŗ…§aė]Š`[‹»ęŽųńöīéå®¶jöćĢ0ģL€Ō&;/SŲYĪ„‘Żƒ/)A J›e!—䥙*&,r“ ō¤¤`·xBų^ZBˆćŃćsk5 ;-Ļ£śš”j .‡ŌĄćiƒØ‡‡³ĶFõ/昳Ȗ鉮*}Ąģ)į&śUźˆžįa"žĘ+S©>ü£ŸµMķש©ŗOTÓę+#O  /S=¬ė©dOķ)]aŚH>?·Ä-^`w„ü FGÄ!óÄ?Aŗ Ń­½n½õŽWwžŗ³Ōµįģō<śPK .3|Q~[犲x: briannesbitt-Carbon-d046377/src/Carbon/Lang/sr_Latn_ME.phpUTŲ]Ā_Ķ•KsÓ0€ļł{`Ęi§uyŅRma2SŹ ķ ‡ń(ņ:VbKF„@{ęÄąæ”’…dŁnܖ&ŠÅ^i÷Ū§å½ēEZt:;››Ų„³”)HX†`Ÿ‘D:E8 r$øŻ¢S2ĘŠź:õ.Ż€W’'ØFLkŲ9ń·¢Š!ł~„śZČ”˜,*Š…dćTį1dŒ"WÖ%O„̉f‚oA‘!±{3†óŅīøptrzäPe|:%ęDAĢ”–ld4Ę0g:µ'6v%Œ¤hÅe°;.CgūŅčTHÕsļŪšvłĶ oY&œ’©˜1ZŚHŌFr R’E$±ČEū¤F*6Ć®ÄO†I„(:ģæ¢0ŲQ2“Õ ¶`Š»‚\pšl‚†kČ'ؐž·$ŅY°å­ēˆÓ–1Ēx‚٤ѯd¼&“`a‚Ē-„Ā©įńyK¶Ųų'cįm É&=Ķr¬Ļ)ņˆ‹¹WųBڧ$Ń(+ænø­*ÆOGhūŒĖĒ„ƒå“£6束Y7’’Ōdń‡˜%I¤E.¤¬ĆQ£e£@I†<&>_ßųrŸćg}HŽdąmĄ įų¬²l“>ŌN §nü”ūŃpÕ£Ļm=;}p/&7ąkpKٹ§)tĖĆķż˜,Ž%Žy]Ļ-ź¾Ŗū½ūnUó LS„*ąŻŪ9Vr”ėl¼ót5ĘŲėä÷”b2½ 3„Ų.܆¹h¤‹„īdDżŻ)¤ųłĆ^õäŽ]Ü’”öp-šƒŃBNÉߍOš¢‘=^7²ĖļØgRÆ īÉŗ¼ļb­7šM¦nĪoOōʀ—n9;TŹß?ĮÕże/nQKS'ŗžų7_ŃR§*‡ß·¹T .\÷)ū÷ŌWžĀŹKXįĆ Öä°¢†4tČįĘnēPK .3|Q±L¤–: briannesbitt-Carbon-d046377/src/Carbon/Lang/sr_Latn_XK.phpUTŲ]Ā_-PAnĀ@ ¼ē¾ („J%$Ä”ķ ”ČŁuȖ°»õz‰xDՇušÅžńŲyžāŸe³É$ƒ |5&@mZ‚”=²€«A‚5rål¢ŌOT$m/©1¬Ų …=…ŹˆĄ¼źį«MŠI”Üeń¾;Õ±mA9csjŠjh"ŅI[;¾ g§ą[ĀÄ] uĆÜn»Žģ?7żŖĮŸ4(Šam‚°©¢†ĪH“:É{p‘„Cz0;˘$²dĘ[Éä[T”²ŠĢ•FL?Ń0AY¾m?ʲČgĖŠ-WĖ"}(ŸĀ!ƒyGtÖx 9—ō—2Xgm‘ßč[xfRĪ;mWŅĻiZ‡ĖĆæō%š ’s Ćxe2V@łiō1ÆōCą‹ ~£C•k?„Ó<÷zŚĻͱ fb•Ą¤"ō…©K‚=L$6w²÷kĢ‹śŁģ¦\XfŸ’ŲĄń®¼×¹żüX•°oĄ­2ų <¹ š|V—ĢŚ8źōśÆwʧ:°™™Œ’Ųćw"FhŪĆé­mėŦÆģźüµ‹ūźPK .3|Qīa£…Ė ; briannesbitt-Carbon-d046377/src/Carbon/Lang/sr_RS@latin.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦+Üź6;óPK .3|QŹ „×õ 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ss.phpUTŲ]Ā_VŪnŪF}×WĢC J®kGAóPيĒDöK…-Kr).“a/V”Ųł~H~¬³RŌÅE6µ³ēĢ™™%wČó‹e½ģõNŽzpŸkf bœž.‰¶ *°5…wDēJāR± sz‚\OļøŌŒHø„&gÖĀyīĶ?%šŹžJ¼IŌ÷J”Źq…Z®5›×ˆ,³‚Jƒ!e„“ –)y KN ®=0ŗ ~“ļ®o?]{©Ÿ­‰…1P2c5Ė„%¬˜­Į܍rŗ Ø Éžś ½ļ[gk„ĶČĻƒ÷šČŸ’(ä_ʅ[V(N\ l‚£¦Öi w=Ą‘­)ŃŒß@ö}ųä„\“yŹI L°`gĒ‘+”“uKö˜œ·d›ģ†¼¢tŃr‡³¶`ěCIÖ-Ÿ3ŽÕF&ļj×ø.n@—źĶ6e&q#;~sß܆˼Łp -”,[nDWDąJDŅĘO¤õʑĢUōZQi邦 #Ėm•Vb&Õ*Ņöą’UÕlM„ŗŻ…Vqu˜0ÓtNæ.;¼žÅ螎üŠĀƒ‹-«ZĮ["\ĶÉ>¼%—X’!(”ÖM%!fW2¶T#ļhm ‘1;hÄ®®NonN’ʱ6(Üą€}x‡ “¼Ē1<Ėž¦ Ā©,Ó1ėŌhˆ WĶŻ¹KļŸ)`łˆ’~µbÜĖēxµĒĪgwhœ˜Ž\x~©yŚ®§œ-k¼p:=Øķkŗę&øÉĪN(]2Ix+' ß”’B:‘S=€ļ­Ī‹#›3 cH8üƗg½–“śXBOś-ąG’Ē~×ļ%œāućń†ø€ SĮ¶Spģ†ödx|„µWA€x”Ł’“Öą,LŸšFD5+»µūVÖ­œUiĪa8ģ"š3ŗp†J–µčÓa…×Ļ*`güž<ė/-Žėœ²%²{w2š;ć.ŪŁ ’&I‡>»¬™ČYł€-;"v4YrõśkcÜgx„µćίݐQ­P EĒØb£wøF‰BÅ“±3’&RÕ¬żnn¾ üz$yŌ[ķgĖļǽéYļ_PK .3|Qpa IĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ss_ZA.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦+„ÕlvęPK .3|Q ŪmņN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/st.phpUTŲ]Ā_-¹nĆ0 †w?·“Aa?@ƒIS @‘”ĒŅŐeŚ"¢H*EÕČŪ—v: ¤žć“6É„ŖjÖė Öšé(Ć@AĻdX  agø‹AWödF¬U;Ėoģ-l™L€#ęŽD`ÓĶćSŠ1Jmćłį_śy Š÷`cŗ0NĄ„qF`2zŹĀŌĮ&§7Źžca‹ZŌ/°ĶüĀŁūN!NzLńŒćRW2^ńˆ³RłäL‡BÖx¹0Jį †ŸBŒŠ¶/‡÷¶­WM–öū¹Ö_\ŻWPK .3|Q}ć"¤5 briannesbitt-Carbon-d046377/src/Carbon/Lang/st_ZA.phpUTŲ]Ā_„”ĶRŪ0Ēļy Ż LšLƔR ”„a€ŚćYŪ›H"}ą1oӇé{ue9 . SO}ŃJŚ’žvגŽ>”¼ ĘvĄīø°l.$2K0Žé9sŁ˜L+ZŹ—°Ął÷½|ŸŠ]”Ķ„sģ( ÓESķF¹^·®Ÿ“iͽ”,×emĂ;Ŗ`RäØ,!Õ\›8”Ր•ÖVnzyv~u{B5ł9ŽU`Y!¬3"ó V Ēi‡r·Ś› T4ɎC…AūŃ;®= ööĶ?»ÕsWAJŃ«¢Į³½;ŹJp8Ņf1z‚}6© VČNč5+šŁ‰ūĆ­AtŽ(Ę@,%äHcīøgšĮ Ā„éäņ&MGÉՈ~B2dߌ¾$¶Į&ģżq»Ō,O›…d2ĻfćÆō%Ćfó>ÉJ+Ē[UrĶŃąr”Ղā&–ZB0ļ$‡„ĻPb˜ĶVh£”åŖ\s_ž…kŪGœĘÉ;ŹJrķē ÆØČ±\ø “nv©„ö»mŽmr1±‹6£6Ÿ0|†/›Z|Ėn±-oĆŖ—Ōė^Ü¢ts ™Ī°kŪ€Ńk;,NÕEš~@źš~é”DØXDƒ8Å&µ0aøz^-…{i%Ō’Ä”©ž§sa¬KCŠ0«‘T!čŪį`‹‹Gé0§#ļŲ¶?ć1“h-3(d[A/oHū6™w„ vBŠ~īö!D §'¤#±ųė§/éx/õNļ­€“/ؽOBћ×Ń­PÕń.žµ>^’źi?HTY̵źžǽŻ}`l_Hū„šĶ ŲöWāJ·ÆgRæ²énń³g­ć°\TĶ«Ņīæ²GżŻ­¾ß7ų PK .3|QWÄy 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/sv.phpUTŲ]Ā_}VŪnŪ8}÷WĢC¶ƒ\šÅ>9M»m“"é&AX,# „‘ÄX" ’J¬·ōśž±ŠMŚM„ š™sęĢšbRoŽ-ŖÅ`p°³3€ųZq Æč½`Ź€,ĄT™šIA”lĪJÜ'®„²1|Pœ øB=ćĘĄ›™u’äJ³ŸÉę­§~’Ŗ*Śŗ†L./+LäPó …¦’¢Ŗa†K± ‹Åī9>tyēOÆ®O­Tן©˜¦!ēŚ(>k ꚥMEõ®e«2¤By×쁔Ķ}ߚJ*=±ö|RL¬~Hāpæ©É¢@ׂĶf.śłĪ5£”kļS»p†ŖĘ{ĀÅ®ģp\ sߋ•†«ĒR”€QĶ 6ØX”ڹw )4­p3z†ČŌŽßĀp’ÉVX=©į®ĆŲķEÓAĖmÖćs鍦JĄfõ$X¾L<ŒŹEŌüĖģfK¹Gē x“y–‘#£šk6•|łJöᜄćĻY¹\›,*˜Tē9Vžj•Øh[%˜įMƒĖȉK­ŁTėfµ)&— Ś×é ŪŠ2v’•‹ģҽ@&wSø‡4fR¤s qފ° œŽSÄź©T,žKŅi UJ«Ÿ &4H©9 ŻJ6·Bś Ē é…£Sīr±ˆ=C:b0†m•œó¢XK‹6‰¶Ī¹Ż. ųˆšŹ‡2ś¦Œ[…%~[ōJ[D#©TßņJ)~IِJ™ī0u³ģN™.|ńÕŃĻĪ&MæŃ£ļßGqŽk8 ’c8>>†Ć1¼£sfH“ŗÄø“%Ćr ±ß;fH&‘o|Ō™’ÅיßÕĆ;&Z¦ųp—¶;ĪToÓŁŖķ›-Æ]ąĪ¾īZĮŻ»īŽ¬-[m:Sć‚®č™=*hzēFzSČūĪ1sö4éåVÓ'…Ywä»ńų>Ņ.|¾_ßWöU}ĮPĖ^tzō#׫Ÿ¢;„H–.]o®½%EośŽńf”Š[5{ÖÜTOĘbkō¼ŗ—īu½hÆø-×ß2˜×rRNÉ 9ÆD ®“±÷õ­,Ö߇ėßĘÉ¢Ö JxVMßs¾R§?YėDÅsŽ§„Kųōhš?PK .3|Qõ}Š„Ļ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/sv_AX.phpUTŲ]Ā_uAoĀ0 …ļł¾P)÷±iĄå°ķ2MØJ—Fk“ĪIAüū¹„6i¾X~ļ‹ż”łcS6BĢ&x/‡ĀTÜI\”DXJŹeI}É#&ĢvųHį™Œ“°GŸ›`žwć“åхD¹z1 /ŽśEE[U \s!s,H«”2 ­ē“¶pTĖ`œ”©P²v2xīßķ¶ĖõžmŻ­źó…R8KŚų@&oj8›P²ĆٽkI!Ņ}Ų™ -YDņ’6•TČ]µäĶ G„ß­!„,[m_³,‰fž”šĻD1| ąŠ®Ł|‹Aźå]/D\Ó4jÅ7ęą® MSč˜ßī­}õa³¹«ė?Ō€i.ų=Äā0¾?PK .3|QoéĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/sv_FI.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm£Bķ0bŅ$“ą½JSw±Č’ĢqVń÷øO֝Ļw'ļ^²ĻĘtMc oO& :³e4x„½å!E„܏½`«ŚE¾ušĘd#œ± $»aÆQa’Ö„ėóæō=ńj4ÕĄ„üĖtń6ŽČa,§ÄW+”ā#ä€V¹;į¼Ž}œöĒó×q±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ńV‰śžpśģūvӕ{«Ų<™?PK .3|QoéĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/sv_SE.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm£Bķ0bŅ$“ą½JSw±Č’ĢqVń÷øO֝Ļw'ļ^²ĻĘtMc oO& :³e4x„½å!E„܏½`«ŚE¾ušĘd#œ± $»aÆQa’Ö„ėóæō=ńj4ÕĄ„üĖtń6ŽČa,§ÄW+”ā#ä€V¹;į¼Ž}œöĒó×q±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ńV‰śžpśģūvӕ{«Ų<™?PK .3|Q“Ÿü eÕ 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/sw.phpUTŲ]Ā_VĮnŪ8½ū+ęę6›uŃv{ń¶Ķ¦MŠ6H²‡Xi`Œ„‘EK$’ŠėE?~G$%Y’»ˆ`Xä¼§÷f†4å·gU^Ķf/NNfp_sa!%ß+4t.'ųˆf­‡’7“`nC–<‡F ‚[²kį¼]7ÓæOµ[$Z¾ŌOŚx”¬.KHtµ7b“;@•B)R–-U¦D'“:…Ŗ$äŲ£ īśĖĒĖŪ»ĖFŹēērt°C ©°Īˆuķ(…p9#œ»ÕµIˆRŸģ‹¦ĀęŁóŚåŚŲe3žJŚ—õ6ŒÆ“ĶįNŹĀÜģQå܁WžqC®6 īgĄ×|Ohęšī=Ģå „e¢kå~JŃO꧁Š«1YJ½Å£Üż5„V.o¹ōÆč¹ż¤÷Ÿ°Ū¦dłDŃQØ;QLGpš;ĀÜEŅbO1vŠ¢žØŃP a¦-k,Ÿóވö}Ę~Ņ{ ©„hŻ&ŌüI‚R(ާšb!Žģ–#oz”ĪäČ×h)ŃŖķµJibuČÉÅ£€Ŗ”żč.p]vp*²¬×·Üqh ĄNw¦$=…V†6ō£źĻĪ–ßæŪßxńžŸ Ų{²œj'¶E…#5©i“)Čęc·€ =ķ˜e8 C×Ć©ćĆ×_ĆsŸ?/„ŒÜÜ Kk`€..77‹o| Ą…¾` Oq˜Św“”ÆSųł!–—`I*ćA}%]“-¾ēåīŹpŁfŠ~øžä[ų+Ś?ŻQtļ ±Å½~€&IøēgÜų”ķv³ČĒŁRģu%žŸtSŪeićv¾uÄÓq½ēWØj4¼‘až‰Ö¦ß`’ūĮyeŲ҇Čß®jļ%ĘF[ēGwT9’klĘN‡Ń­~lƒdżp˜ÉŠ»j\ŸOĢ%¦“fˆöŃ;ŚFĻč×y5Æ žIuu׫XY3včźv¬õaååĻĖ„°žže˶ ©9:6–TłDÆŲĀß[yJeé *}”õ¦rķńĖbÆ<ėµ’žĆæ *AÄG^v ™0Ö5/²•Īś·åĖžõ×Ä©A›Y÷/¢e•üæ'ŗ³8@!4ĪžPK .3|Qėć±}5 briannesbitt-Carbon-d046377/src/Carbon/Lang/sw_CD.phpUTŲ]Ā_MĮnƒ0 †ļy ßh‚X×M+T©ō°ķ2M Įk4aŽ)źŪ/°NŖ/–撏ż+«§¾ķ•ŹāXA -yhØC½×,ąa£¹r6 ó­O˜ļd_˜%¼0i ō‰ĄŖšĘgF'©qēõĶśźx^Ō ]ĘõW¦S+ m “>œ“ć³r6¾CŲ…pœßķw›ķį};­šóI«Fķ”&/LÕ XĆHŅ%d÷n`ƒįP=‡Ķ£ lA3ėkÉŲwŚ`čf`O\0ž Äe™ļŽŹ22?¦įg¢¾„Šž²ł×74ćż ¢<ϊ"ū %wāæ EQĄzLŌqł ~PK .3|QØ?щōŻ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/sw_KE.phpUTŲ]Ā_RĖnŪ0¼ū+ö¦ÄHm¤Kš¦qāp»EÓKQĀJZ[“)R].mųļKQt··ź —3³”.?·u;Œ‡Ć įG­,•&µE°Kšą¹°&PåW4 ½]ūIy 7¬ŠĄ‚\”Dą²č–×&,­ŒJŪ\„Ö{ĖQh鵆Ҷ{V«ZMZ•d\°4KĖ Š²ę ZMø­¢]<÷8»½[<ŻuR1ŸŌ(°C•rĀŖšBģ”Ōa'dwÖsIĮ؊aĒŻ„ŻŁ‰—ڲ»čšų‚w ¾±]S)0+7dÖŲ m‰šÜõ&¶,Æ¢“x6€ĢøĻ™Z%…ZzvjK'Læ½b‚<ŸĪ¾ēł(»Ż(\rv枬Óešé*Q‘~ŒD6ŽēóńĻšdgqó¹/YcŌéTö€Ę#« šŻSĮ<DzŽ`ҲŅ=E±ŹĘn7 9;ƒ_O֏é2ųt•ØH?F"›NĒółųgx²³øłÜ—¬±Fźt*{@ć‘U0Ķī©ąžcYG0iY鞢X¼IUcÆXY'=Q+ŌŲᯱ=ZŲ큜’‹š8Iī§”×<)KŠ‘B'HRūŌ;µM=Sæ—^;¢M…ū—¹}ƒmš¬Ć‚āŲz„M“Ÿč:üJå³uŲĄƒ¢±ż»ÉńHo£ö]|æļɳ·‹Ōłæ&įīü§ÅR±“<˜äv™w~Ńē<ķ&¾u»ŻjOČGŖ†XUŠš/|'P£S§~>ż8ųPK .3|Qėć±}5 briannesbitt-Carbon-d046377/src/Carbon/Lang/sw_UG.phpUTŲ]Ā_MĮnƒ0 †ļy ßh‚X×M+T©ō°ķ2M Įk4aŽ)źŪ/°NŖ/–撏ż+«§¾ķ•ŹāXA -yhØC½×,ąa£¹r6 ó­O˜ļd_˜%¼0i ō‰ĄŖšĘgF'©qēõĶśźx^Ō ]ĘõW¦S+ m “>œ“ć³r6¾CŲ…pœßķw›ķį};­šóI«Fķ”&/LÕ XĆHŅ%d÷n`ƒįP=‡Ķ£ lA3ėkÉŲwŚ`čf`O\0ž Äe™ļŽŹ22?¦įg¢¾„Šž²ł×74ćż ¢<ϊ"ū %wāæ EQĄzLŌqł ~PK .3|QVBóO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/szl.phpUTŲ]Ā_-ŪNĆ0 †ļū¾LØ}&@Œ!Mš&ÄįŗrS·±–%ĮqØĘӓv\EvžĆ—l£Uլ׬įÓr‚A9#ŠB@-Į„ ¾¬Ģ GŖ‹v–ߘ[xFGJ«Ā¦›Ē'_Ę µ ē‡ék%hČ΁ ń"µØ0a‚ž“ wY©‡‰Õ–›ĀžBC„Ø_`›ł…³÷˟|˜<ō4`v BćR—]ńXR”rŃbGŹ»\„4‹/†ļĢBж/ū÷¶­WMśuķŪ”.ßøŗÆžPK .3|QUĮ}l™­6 briannesbitt-Carbon-d046377/src/Carbon/Lang/szl_PL.phpUTŲ]Ā_„TMOÜ0½ļÆš-€–E•z¢”R>*!B…KU!kÖńn¼IģtģeϽ¢żż½sĻ’ź8q–F”\šĖŲó޼yžX>śT$Ådr°·7a{ģ>Q–-T&ÅŠ1³`.‘ģ pn4„D K9#®§ļˆ]vŠ 4»‘v®œcGsæ=Ń“5n&L~Ø_ ¶B‹2˘0Ej™8:f™R[j©spŹč)+2 ”{T²jė®.Ļ.nī.¼TėĻ%ąX–ÅŹ:TóŅɘUŹ%„wkJ’Å­ŁB_ū¹t‰A{č×ūĢ®3~{Å2#€$oq-óŚfP±ÓR¬SSŁT‘»¹Ų‡¬HभåĢą²•EéJŌ ”ę(‹ „¤(J“źQī üQ*”ŒóóĖÆœĻ¢©g4šhʾO}Qwd±Ē!Õ¦ÆŚDt~>»¾ž}£/š¶ąC¢Üh—„ŖČŗZ¬ėę'©FYéjs‰ĀĒ“ZI”˜›•DĘjÕØ¢_ZUćvSŃ4l_X@óƕD­Ņ®Č:S@ģ×K, ņÄ”9niŅīÅbpĢoCWĮOš\ōżCߊrŪ¬’2”īg”UķfŠ–‘+Ś5Łŗ®\³ĮnIwfŻlā–e×®"§P¬š'ÖÖĢ›ƒW­'ÓŃ¢õ ‚vÆ_«åJ’ÆÖB”uœŌøYp/Ü ¾ hČw$ś]-[Öū餣m3Ń”0„v M®]Tæ£ģÆ«0@ó•l~5æµčņqųøĘĖ0”ū:nžŪ9Ā( |L`;Åa؏`Ąß¬ķ =,|ičŚjč’1ųHy±Ņō>(×>µÕčÆąæQącĒJaōpw2„oeģ( |\āa÷ĆäPK .3|QffńŪ§f2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ta.phpUTŲ]Ā_ķWMkG¾ėWĢ” ÄØž„ĒMŪÄI±sq #ĢhwÖZ¢Ż13£Ŗn’ƒ µ „-|Ø Õ!†ŗ:¬l)‚ž¢C’Čž”Ī×īĢŽvåøī1{vę}ęyŸ÷w>vķ³żö~­¶“°P ąi;¤ ;š’}HĄ`m@ŅĀ1ļņžĮ=“ȱ~Ė» ī“Ęą ¢­1°ÖĶĻcŽÄlŃĆŃ= }ˆ‰$ ŗššž ÷Ś ĄŲŠC1å.ć“²Ē °ßA÷}¢ž·łųĮʓķ A%õ±6d )šCŹHŲź2äƒ^ȌܵSÜ%āŽ|)vID(Ę~ŃemLčŖx’|‰ilc‚Õ~H`üϟ˜æÆėą1…óæ]ŃxĶX]7ÅU05•XS֔„ÕŌ`’¢kŽĪj“²j6V›†Ķł…8ģńQõĀ‰ß˜ņ¾ćć²īŁHŌž¦”ś„“ié,†„Ž©“bB8cJüQXœ¹™ļĻ­Ūķ¶ ½-ēŠgE¬¢QuÆŚMóī‚düŸ”ÖUH×ö±ÖHpM}īĶvIhŁ“b0o~N:UOžW6",>hżPK .3|Q’˜[ÕbZ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ta_LK.phpUTŲ]Ā_­RMoÓ@½ēWĢĶmŌ8”Æ(„Š©Øō\"TY{/µ½a½n”c‘(HØāŌQE.€ƒ]‘8ŃæāŸĀīŲ‰±Ė ჽ3ļĶ›7ć]»7šF»Łl@žy,—łŌw@„ī‚ō(lŃć”J٤OMÅÕō%{FBŲ£QI k=n„*äŅ“y°^PrBnģū`óĮH°¾'„ų̦a¤Z†.‘Œ‡+0š)Q¹CF‡X·»³¹½÷t[K”?é CĆ")X/–ԁ!“žB”÷ˆĒ¦Ŗ‘ƒfŪzB]{?–Ńm}nĮ#³ĖūDpėz«Óé“®­Žøzå&Œņ¬÷āPĘż€0_ƒJ‚ŹX„@„ #KЁOlŖ¾v,"vH—}3AĮ²¶vžX–i“%1ՎxŽõł”‘w׋¦w1alµ·»]cżüc<”^QadÉY–|ɒY–œgɅV©Æź¤ßé f+X’%æt¬±±zēŁ÷Šæ/²I–¾ÉOgYśJ÷™#y¬˜oóų8KN³ä'JL,„<ž Ü š;_0^ėŗ¢č] ūŒĪ’R4ĮńĘu¬ŗ+R’VV¶T_N}!•UüĖźSWf,‡ŖL±°=¤ōĄ!£ņĒ~Dc)ҾeéQ^ö ć8¹Zł“¶ģ³¢tŽ)3GXZśŸ”NŠÄU@ėLQgŗø6c¼e—ÜÖÖ¬=—>Kc„²{Ł®ą]XųŸ„]&"i)q‹»–īƒś«Zäs’Fu4¢DTXĢa4XX;Å-–w!)cÕwłNć7PK .3|Q«f”_cĢ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ta_MY.phpUTŲ]Ā_RMoÓ@½ūWĢĶmmĵ”‚h‹T©éö‚Pemģu½ŖæŲ]7Ź1H$Tqā@T‘ ą`B$NōÆų§0^;vl*šĮė™÷ęĶ›ńn?Œ½Ų0½ž=8ńø—ū šŒ©P¹ <»TŒ¢Sö9=c¹}ĆŽ„Ē‚ÓŽ˜q„`{T„B #Eģ(Ų©ØO"”…ÜÄ÷ĮŽā‰ągž:ąs›…[†n$Ŗxö!öÅÜgc]wx°»t¼_HiŹ£ ĘT‚Ć„|”(꥘+ō.£DŲ 9ŚģĄL%"*X‚Å>µžv"$æ`‚½Hø``Y{O-‹˜E nĘģĆsš1KoŅ„;UJ§OtʤąmŁ_GŽ×”-)[h‰ķ †ƒÉ¤¬‡}x†O^Ē+Bīh_3|śšžiy˜A*ƚŠĢÓė<ż’§Ė<½ÉÓ[\¦¾āWńĪ®t¶…„yś«ˆ l†ļ2ūnž½Ī¦yöŗüŗĪ³—EŸRĘČ|Sʗyś>Oj‰yĶBżĖ•š\Ė]is75ćUQW½ķ`Ÿµó;Šęz¼YkļĒ’^$TkK¤»Ņ] imƒüĻHwtҚ”4³‘Ö4¤ö?fģÜ”“ęŌž2Ķū–gÓ²ī“Ž?čąī­/5°¬JWšźŅfˆ„ÖÉ4ńG(tZgQߟ™¾n·øķģ»ńLŗvI×&iy#][¤k‡üĆIĄĆ–Ę@Ó¹iŁ“kśT¼ZŚåB* ŭȵŠ>Z’ŽźĀ1ĮĪ‚ŗ)ޘ)Aõę¾éÕN7ļæPK .3|QīēĶSR®5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ta_SG.phpUTŲ]Ā_RMoÓ@½ūWĢĶmdmī„D[¤JM“„*kcoźUżÅzŻ(Ē QPÕ¢Š\8»"q¢Å?…ńڱ³¦ ¼žyofŽ<ļö£Ų‹ £ßėЃ'0ā> ÕgŃܟ™ŗnwØķųŻj&]¹¤+“hŚHWéŹ!’PšPÓŃ h'·#Ūq휚×^)&øĖYŠ“Å;1%Xߎ(!’tóńPK .3|Q½7ńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/tcy.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې*”ų8Wnź6Ö²¤8Uߞ“棳ü’Ćód§¢Øöūöše9ĀĄŽ ŸŠB@-Į„ >ÆĢG*³v•ß™{xF ŎUįŠ­ć‹ĻcŠŅ„ėÓæō-Č4$ēĄ„i­śņ1Wś!Č•ƒ€ÉęŻ/Ó¼łŽėć¹ł<ÆQŸZT˜1BĻQ…»¤ŌĆĢjóMf!‰”\Ōo°ÕśĀÕūķ/>Ģz09”q«K‘nx,1S¹ÉbGŹ[nBšÄgĆOb!hŪSżŃ¶å®R³“uSęoÜ=PK .3|QøüdĢĒ6 briannesbitt-Carbon-d046377/src/Carbon/Lang/tcy_IN.phpUTŲ]Ā_­TĻKA¾ēÆ˜ŪŖ¤»ōj­µU Bź”ö"E–Éī$;ø;“ĪĢӓ ōŲR/(Bé”T¬ØLhÉ©ž+C’’ĪĢnv4•B¤!dgß{ßū¾÷½! :I§V ęęj`Ÿ 'ŒKø-92FmØĆ٬u“|ĖÆ[5 Ō ł½ oŲøu0åĆ\opLC/Äź¼ņū±+.,pė1źnĆ×:JčēBX÷M…xņėC³8XFz÷4ļjƧµXw–fƒ}›„æfé„Ų+o„ł`6 ŸU§’Š„$÷w1PތśŽkČM$Ų„œö:ß*dĆö‚™zjŽVņ]Ł— z•›¶DÜßeלŻE~D ŻOZś½1„®å°:,ĢĒ/Ō? Ÿ«V4ׯĔ’ØDū²Õ;‘ƒDUA ҳBŗ/Ėq®8(‹oŠaz"āŠNåf{¼”4'6Z»R¢ķ„ß|Y„PNMœ¹ ć¼eM»NMŽN™Æc'éčĢÄŽ÷ņóļĖ pmŽät“™•­ø%漏iݹž—ŖJHŻO½5ĢŃ/Q:ó5˜ĒŠ’‘o¹Cß}Łq+Fł5b‚ėjP`%ķĮޱb¦ö¶ī¹ū|P„[I(({…Ø-PÓ EĄ_Dzµ¤čK”Ø…ū‚Ä+M³°åŖĮLÆāÆŻŌzI˜|׳F3ćĻJzLĪ܆5ī‰ÖĀlhę̽¹ß›UR©tj%ME™:użĄźų^&ŸņéÅĘgāėė3fÅßÖ{șR`€f³i’LæŪw($IĒč>p8žžN+ģĆæČööēӏŃoPK .3|Q›HĻóG6 briannesbitt-Carbon-d046377/src/Carbon/Lang/teo_KE.phpUTŲ]Ā_-PĶjĆ0 ¾ū)tKB²ūŗ®¬ė 0zŲvĆ8ŽŅˆ¦v&+ }ū)aŗIߌ<Ż`L•ērųź(AK=‚öĮ±@lA:„½ć:]ł‹;c©Ų¾ņkxarN˜jM=» c”ŅĒėöśyjǾ‡;Ó¹p”ž<†¤–”|uB10ōčtw#œŽūq8}f©%ŸtN`r JĀT‚ L$^4{Š#{T£f [F9€cvwĖ8ōĪ£v?r¢®Gbk_֖Y%K}MVĄ·­¬%Nb„ĒÖNˆ— ž¶šP˜Ÿõ£łPK .3|Qm÷|1®3 briannesbitt-Carbon-d046377/src/Carbon/Lang/tet.phpUTŲ]Ā_}•KSŪ0ĒļłŗhJ†™žR ÓR˜ét “‘ķu¬‰­ĶčA „Ÿ§ē^{,_¬+KvāŲŌÆ“żöaKŚ?\d‹^oø³Óc;ģ6š„"FļW†aŹLģ„«%MÅs>ƒ]Ņ:łV¼ĶŽ•ą’]Ž„1l?rƏ’†hvc,‚ō U Jmž³OJĢ2ĆøLX.bšBŹUĮ@9`‹8Ķ=X–ė.>Ÿœ^ݜ:T™ŸÉøaK®Y"“Q"²¶&#å®ŃŖ(PR&;tŗµGÖdØōČŁoŁ9źĢr*q®żŌ™āņåāø\§ĄX%Ł]ŃÓ®śģĆė!©ģQŒVšžĄ{łtå’±÷ÓKDŸ»ÄJ“y-õ¤ƒµ& ˜×8X—z 0÷R —¼[ ˆ4Ö)Oų“×樰Xķ&”W8R—6£Æą„ØčSm‚Vn"• źBŅ÷õŅҶķn­IˆTŽ×¹@CŒ2©Z6³2i#×5e×¼,⹕ϯ,š”׏Œ(€žlńŹ—*,¦—^ 2źŗÕMiJ’6 źB%4ˆy·fŖ`‹¦tėptÆß~ū°±Ģ`½Ī„lū8'łŖ@„ŖJŽ"¾IóīŠ©ŗ€~ĖėRä7Y9}qŹś4*Š  Ž›5ĻHė†Ó»Ęćįååš= gåe—ō°¶»ķgķšµ,”gĄ^OBy1ĻA&įPX«OóĘÕ÷øsŻfŌ– £ŗ×¢Ix4+•kįkŖÆõžvy±»YĪõ¬ś_ŗ€N¹ ōO:ł®¤Ó\‡=x±ŃT ‚yŲŅØæ‡aų śē\‚P¶?`ż3xU .¹Ņ„qD—LīgD9qn_~#Ͻdfµ)­0PDžpMA0Æš”žĆwoOéL5]f•TH(¤ iųą2äą3Ą>DQCĄ:–;™i÷Uŏ‘Ī«YČÜ1ܙ· ti|±t){KHoÜŠyą ńĶĄ2Š6P+dE Ą6Ņ«Y ”yN xHĶH…ŅĘ]SLW7ŅŽźÖqó^ä¼nT_Øļ½ÉūŽ?PK .3|Q*'¢.¤ķ 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/tg.phpUTŲ]Ā_WŻNG¾ē)Ž¢T ‡„涁*­€^$RUd-ėY¼Š½k͌ 4E"4ØĶM/*õ¢P›AĆM`–¾PĻĢīĪīŚ»+~fĪ÷s¾9;»Xn֚ccłÉÉ1˜„×5—ćÖ ą’¦E9ųšŻņ=4Ło­m2ƒ\I·'ą+źZ¬¶år‹[²ū…‡]ŸĻŲ~c)¢~ķSČiÕė`ūĶ=źn×8X^ź®M<†)=ǧ ‹»¾7Ķ:±Šö£Kv”ßź7/VÖ_­ČPJÆYv,U—qźnµ8©ĀŽĖkˆ vę·ØM0QU‰ĶĖJß/[¼ęSV”ķiųŽŗ¬ĻĄ·Tq(į-źĮĘą“Ū#ĶAi rļ ūĮGqĮ{q+®.Ś~ĖćQ/7²¾ĒkYŗø·÷§1=ģÅōBŽfŁ÷§¢|E;öH,±WÕŚėQtšļßāB+R½˜\Ć Šß3#Ą¾ƒėa{q&Ś÷ŠKüÕĀҶؗŪ÷ŖßąH“EWœ…yŗā2ų˜É¬,±æµķ‡ĪEī6ˆ;qĒ CżFÅówB†č č_QÄ%(²®Žė8īė"‰?ÄM¶$бG'4ażŽ2†°*”l“Żf/y¼\|ó†}—P\N”{t4|Jµäæ°§é !eshīč}śō‡ų†«Œ)p®+óźė0ĘĖ—ÅF#āFĄ«Rd,†Šņr~m-’>0Fa č‡ūqčOÆiU|¦ĄDތ†g[uāU£µ›³d9~ėI„ ©Ń&`R©=²ĖS.śÅŒpł^/n©xC’6’ÅŒÓVÜāśčŹe4$RŻbéäzępü4ųE\ įX†D“[©³hCXķ)³O«®gÕč“<[nŪ0žŠk5¶€w:n±±J„Ģ"ł<°&±] ¹Ļ朄Ÿõµ—|¢żųAä=ż©ćٟ:žkŅž˜n2އ YĖqÜ]Ā ”z÷ņ™U£˜Ę±ß¤)Ÿ‚y!æõ!sFä±1Ś#2oDž‘gFdĮ<Ņ!Exd†ęĢ2œ›5—ČģõÄ Ķ›”§fč™ZRŁĮŲęódĘE³3šœ3ćzźmD¦M(—”Ļ Ÿat“TR™Ėźo¦ Š—ĖM„S~?>§ u«.iō®=yā÷­^ā‘7&l·Å"ē "žQ­Kœņ]ŻŗŽø'rßÅZ)_ÜtĻE78Äl0nĀW™~Wqļ łWR;ö73ŗ+ /“<£>QžhN’_µ‰ĪD_¢,Q„õČ;-^HR•¼RõīŹ·ņ±‹Œßc9Āč=~w²w‘µb'^ŪŹ/ĮzõōT™HMŌĀ··Ž4z·ĀUžöhķ’·„Ct"ÄΚšŲZKy\Č9óż}“ŽAO=-ļŪ>ćCkŲ©I³Ų“ąaF™ā‚”šÄ{x:¦‚i#Ѳĺ22¾’üńJmy£¶²ņx=1TJ–s…^Zćw|?IĶØŃŽAÆ Ŗ„ómN!}Uōį#T™sx‹)…æEįMeĘŗĒųĪ”Wō¾ĀŸ£šÆ(¼ŒĀn œ“OČn)Łyž )5ś* /¢Į)zrØ‹Ė‹8pšŁļötĆKˆļ bŠ1ŠĮwQx…‡)zrh@™Ž[%|ōæĪ—™²;1’8œXĒõ(0ŽŹĆæzšM4xa”•m³r‹Į_×Ģ,³ĘęģrR;Ü" Hģ3™ZĀŪhšRG&ІąĮć¶ē°mn“T‘)_CQ`¼0D¦•‡Q؁üm¢Ó¼L¢¶‰ž ¤ֆõē·¦K|~ŻĒŸ¢šŻąO7\ŗ•Ę ·Ł!Ļ›·ܛŸ{öL¾gęÖsu¾Ąr@¤^x–Ó Ķ鲫8…•wGĒ³ßś/Ä(p!²Jõ¢š$ C <¼­ qH©£#Ē*ˆg|¼’āéęÕ'1ē§sA`”Ö¾‘9ę¤,ųbĻāāģŚŚģś*8/ZÓvūQ^1R’†¤ĄÕWz&Š$Lu[ū„¹vØēŹ q@“]²9¼Ó Äu¤«–SČČs•Ż;)ž¦3ެoŽhĪśÕŲXĖ|ś»öé\™Ž¬u+iÄĖgźŗäK;CVKŻˆ .%ńp³’Ÿ.@šd ūš`0; 7¶†)ÆyöŹ”õfŪ ŌĮĢņ˜©mZd|oĄŃK:~OGĒŻ$Ć9³åż¬}˜öDžÖ7„4Ē0įdŻRP¬J’’±tA‡°Ü²čXeæDõ ¼-ĮcUg0įÆ!ŗt”°fqÅnIżŚ¦²JV5Ŗj„čļ½jV©Ģ%Ņ·}ėķå¢L9r®vĪu^"O0Ærö^Ī~ŪĮęIķ¬ķ—ÉSõŹÓOūŚI–żŚŌ?±^&OĆw’VP×õ(_Ī źż /T7±ļ €ķ£)ĆyĢeLe„ŅžĻj’«Čäż*‘hkß±Ÿ—i_²œöėYŚÖ”Õ׿,›vé?dIųPżƒ©PK .3|QÄ!¹ Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/th_TH.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ßź6;óPK .3|Qo“ÖńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/the.phpUTŲ]Ā_-ŪNĆ0 †ļū¾LØ}&@Œ!MBāp]„©ŪXĖ’ą8T{{܎«ČĪų’Żcr©Ŗšķ¶‚-|9Ź0’GŠ3ˆ#ˆCŲīcŠ•=™ kÕ.ņ{ ĻL&@‹¹'ŲõĖųtŒRŪx~ų—¾F^ƒĘā=ؘ.L“0aOCÖŹ0F>”ī y4ŗū%œWßŪqh?KŌŹ'ĪĢ&Ć@Y˜ś"8ĄLāōFŁs,lQ‹†¶Y^øxæĆ)Ä9Ą€£)^€qZėJĘ+qV*ŸœéQČļ/×F)ŌšSˆŗīåųŃuõ¦Q[×¾×ś›ūźPK .3|Qā„EDć6 briannesbitt-Carbon-d046377/src/Carbon/Lang/the_NP.phpUTŲ]Ā_åRĮjA½ļWŌm’%nšŖ1F³ŁʋHzgz3Mf»Ēžž]÷¦M@<A^z5Ä ˆl@ōWśS¬®Łl2ļģĆL׫ŖWÆŖké~–dĘb³Ł€&J ɔ턔°¬åµµDŅŗ«UŒ{ź„E²HSIĮŠRBƒĮ$ųķ?éģź#QBä^Za$ĶĪÓ{ofVņņ³®Ó­Õ 5“€Ž8,@męR×.ń6’EkD4¹Kö>éŠ:`5|ĪžG/#>Ś„A“I‰–›:\õ!ä²nso%ƒnraˆŚ”ė"›wū‚u‰ˆßB.³©€¤ßęĀ#’qu]J`ķ€Ńžyn{kmc÷õ†¦2ž¤C$ꑵX k†’¶PI2ą=ą”°)µŒŁ†®P?ū<”Į’¾„^R‹~@›‚ū’QCæeō.·‰KƒÕ„ź\t  2>"B>“ė›ĀÕEĄ蜠ļC&(Āx}ėĘu«Aż:4ŲZDļjšŌJK ,ōt%[2ĖŪfĮZ_oģģ4ŽĀa-šä^z±<°čdOYjx®¢ßĄi©(RƒK_©xšĘ§j˜ØųgSÉ„JFp6ńšP NTü«ČOŌą(½ūŖ¢š™`pdāIĪMÕąBEš„4ē*ž¤ńńU 9QɵŠĘ&ˆÆuĮyj•żćš/KU R„J”ÜßXGé½äśaĖ…ß„ū-Ņ/:®Å@łūķ¾}QÉ8¢XWk‚ ’PÉIaģ,Ļ$ŒóŗāF~tO±Ü£\÷_‹zĢ’O’m&‰Aó6ÖśF÷q–ĶÖSĪźØO‰(”<*X‹Q/· ~‡`ģ3ŅA>N‡ŸLĶTĒÅ²Ł)EĮi-ŁšŚKdlŸšłfˆź4Į•·¶}ŠQI¤Ū£óxÕi‚«9nęX¶¢guÉyzÕi‚+)ŠįÜAœš’Ķ››af"žĮ“Āų‚ßó“1#rŖÓWRdŻg>üsܙāDÅĒ*.z“æžA“Ājs’n&śĆ ū7)|3ϦڛRūPK .3|QąĶb‡Gš5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ti_ET.phpUTŲ]Ā_½ROoÓ0æ÷S¼[¶i“ā c öMŚv.M‘›¼6ÖŅø8ĪŖīBBNÓŠ4$H€ D„ Ö#Ę߄g·éÄŽą‹ż~~žż±½r»ukµĘŅR –ąaÄShńę.“ D T„°ĪdS$¬uźµķ Į"ܕœ%°‡i“++M[®%T UDguÖŗ%¤#jeq čö%oG XBĢLR’LZBv˜ā"Y†nŒŒ°CŽ=wng{}sļĮ¦„ržTÄōX !O•äĶLa=®"Ś!ļ©Čd€$:³ ›Šž½“©HČō†]_ƒ{čįlI‘(Ž’A+.O’Ņ· kPŸœ¦«š`ŠwąŲ¹Ņ÷A.ØüLŽ0ļ~™ęÕ÷~ÜN_‡%jåS‹ 3Fč8Ŗp›”:˜Ym¾Éģ1$1”‹ŗ¶^^øxæżčĆ씣“SÖŗé†Ē3•›,¶¤lйė-@H“ųlųI,M³?~6Mµ©ulĪUžÅĶcńPK .3|QtßÄż,ń5 briannesbitt-Carbon-d046377/src/Carbon/Lang/tk_TM.phpUTŲ]Ā_µUMoŌ0½ļƘ"»UI…ąDłhałØŌ-傲&ÉdcmÖ¶Ó° Īš'€Į‰žVż_Ų‰“ŻŅ[sńŲoę½gĒ™<|RdÅh“·³3‚x›q )Ļ ģX 2 S0Į3T‘v)^ąœB›ėŅĒńž*ŽNHGÜx¹é°SiĀX.ūŌRÕDi™ēĖb„ų<3€"œĒ$“•©TK4\Š](rB»vĪ©ŖėŽž=?9{īØj&CjHø6ŠG„”*n2‹XļZ–*&+”Ōf÷ŗ–&“J?pńxićČŚŸ…šĻq!óœb”K8C…ęĪn’7«pYęR„RĶmÖ|iīŻ½°ĀLJ·óFį¬,HĶPœ¾:mføŠÖśŒ%²‚1ט,qR›¼e ķNaŹÓŁÓ±;ßā¢(;ŒĄ>ŠL©Ųå”]x_Cī 4-Jaxōø‹w7hFEB Ų„ öa²?śŗ?yrT WLQ‘cLvŒK„ł9},¹"`lzō†±0Ų#ŚK“‚ę5źZaĖŌq#9†³YųĪ>­n3K)Lę«‚õ*K¼ Ja½‘n<,ł…õ…Ö„hƒ9¬ę„®“ĻH˜õF5×ėÅ&>‘]8„…‹śN˜¶ļŻlłńf¼o䊍ÖEkĀ;šŚ­¬×ģ+¢E‚«vóÓņņ‰ˆźb¾‰×ßPmf§$6“C!Š—?»ä“šųU™ŽĪœX+ԊxzOÜņ¶¬’ņ-¹čŲ.ĻŌ5<žĘ³t$)WŚ0KĆdŹcĶt×£~½Ir؛­ČZōYMZ·<ˆ„½ī°¾Xåž~«AŁPįÖEčĮõ›öą€lØnsl=pū+ ŖaŁ`iwZ=t¾ž#ŚādA6Pץ™ķ„=TŪ¶Ų6” † –śäĀöķ^B½Ō°æV’‘]S>ņm0–¢æļ^7 ō5²ėŹ}Ī\ÖšVŸ6|I(ķækÜoēmļŽźßż_ ?Ū~·_gmæ%—LČź&䓼ü®šŠ ¦†ŌM©]ъȦŃMˆ­o‹¹?Ü_PK .3|Qąyųå.¹2 briannesbitt-Carbon-d046377/src/Carbon/Lang/tl.phpUTŲ]Ā_mU]kŪ0}ĻÆøoi»ŅPŲS·µk›Ž’nŠĀm×¶l‹ŲRä„aŁߕućÄ&Iē蜫«ūłfÆG£ÉŁŁĪą%—RY ’5:— øGiECń 3qA\O?‰OįĪHTš$l$ƒĻ‘ļ~UŌÕī"Öå5SæiS „UQ@¬×[#³ÜŖ  eÉR„Ś”č¤Vē°.ŅŲ)6õ¼Ł÷ū‡§ē/UĒērt°A ‰“ĪČØr"t9!»Õ•‰%u°“ŃČWÆ# o¼hĘšåĘW±®”‡ZĻˆĖž{łOZTYMŲ K­\ޓЪ v“:„F¬¦ģ†ų!V=µBŖ,Ó­\KhŌe78!ĮmO nZ±m“<¾ąę”Šž6h[”n”2-µ1ūØ¢jÕ.«‡÷Œļ<mU֚†+’īf=<{ ÓÆŹ’¹ rœImįŚa<&‚ q.Ę8eeĻó›÷ńę~2SQTėukx36Āh‚œ“"†0„ZQ¼@ś]±n¦_čKŲ’U{Ė ›>^ĘĄ„§»ź>Š"4&ē@‡é‹ģŃ0(?€³}K?:)¶Į_ĮäP öiq^öžŪzwxŻe©%Å0«ƒL¶OŒĢ–¼Höi£a [å†y÷1± oņżö¤üļOžö “R„35„ļ3öŌ@•‹!'ņ@ų‘,!t]Ó¾t]¹ŖŲ•ņ•«ŪāPK .3|Q‚Œ†³Cä 3 briannesbitt-Carbon-d046377/src/Carbon/Lang/tlh.phpUTŲ]Ā_µVļjŪ0’ž§8FĮmÉR ū”ž[Ū“$І c”[ޕʒ+ÉĶBWŲkģ öyϰ=ɞd'[vl§Ł‡±Š@Ī÷ūłī~wДÓ4N;½ŻŻģĀmĢ4DŒSĄļ”(2S8'j*ŗ‚{2£=äZśv°gŠ7TO™1p8µļ>JÓ dr쨗R偢ŒsdŗTl "Ī*4¦‘T 1LŠ.¤œō=2ŗČß»_Üų6T^Ÿ‰‰Ń2m›f††°`&Fk×2SÅDa^ģžUhß=ĶL,•ī[ū-\*"~~—Č?+>U1Ŗ9MÉ2üõC΁L˜`÷$£ØÉ”€»ąņ–”(ŽŽĮ{Ś^ß_æĮ`äé2ƚ^· &R˜øÅœU2Ń,™ Jļ[ÄXĪā’iķ’’åZČł*ä¼äÅ،QŃ“$¢YUÉö±E5YEE³¤jHVŌ4󁯈|E$3™³¢Lv“°½eXBwą)ĒķŚ’™I3G€£4Ŗ t]ĖåYAyŗa†e¹š5ŌI\PŃĘģrlŚĄĘ;źĮ͵*åčņ2ąŽ2Ž@ædäo>;‘‘’ÉDČÅVŹ©æY'ł°Q§ ÉæėLGu†,Š&KŖ UÕęĖwI}&ĖȊ1 ĆŚnth"•r +B¬ÄzÅ9 spÕļźÖm€a?© DĄÆ!}­ +bŠ»¾ī}ĀÕK®qĮ:¼ŽĆzśŠāźĀ&ņŲÉ §"tƒ¬éÓ$”ƒ²iwE×ʀŖk¹żlVœ²q/±>V‰-Ær¢Ū!ņńµƒXŽĘ ¶Ö ®ŻaqÕR(UČįŲY2„Ŗ×8 Żp=ÜIåay)^Ī ~É» ó¶‹Kæķz$ö°lśęä±ķņe°F ššXy˜™µJ¬•į&’ĖŖ*ŌÉ7z3јݸ5:ÓģH­µŌ•×ו6֔µ½¬äo ģż…æür¾\Ī“‘Éžö š•ŹGgĶā‘į±{ąx»9sš=¬Āšķ .½f¼_/KĔ6Ģ3‘Ѥŗü÷WW¼õ$‹Ś§ź_Ē;ĒāųČUˆš8:›d|ŠłPK .3|QM|UņN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/tn.phpUTŲ]Ā_-¹nĆ0 †w?·“Aa?@ƒIS @‘”ĒŅŐeŚ"¢H*EÕČŪ—v: ¤žć“6É„ŖjÖė Öšé(Ć@AĻdX  agø‹AWödF¬U;Ėoģ-l™L€#ęŽD`ÓĶćSŠ1Jmćłį_śy Š÷`cŗ0NĄ„qF`2zŹĀŌĮ&§7Źžca‹ZŌ/°ĶüĀŁūN!NzLńŒćRW2^ńˆ³RłäL‡BÖx¹0Jį †ŸBŒŠ¶/‡÷¶­W„öū¹Ö_\ŻWPK .3|Qå7h»#5 briannesbitt-Carbon-d046377/src/Carbon/Lang/tn_ZA.phpUTŲ]Ā_„TMoŪ0 ½ēWčę“ČģŚu]צ $ĮŠä² …@ی%đ<‰®‘žśQ¶’~eM€ł"’z||-«TÕėNO{āT,”öb©K¼VąHŲ„ …ā\j ‡²8dl€÷³qå41CŸj"qž÷Ұki˜ŁõE„ŽZ×-ė²™­6NŠ˜\”:C㹤YZ·ŅÖ DU"pģQcÓęMī®ofó›@Õź#$š"מœNkĀ\4šļ°vok—!Ź[±£ŠaČż^“²ĪŸū“ųU?˜Ū%5ą%Ö&oĖ‹žĀń%­+†Op"Ę l Š+ąź‘·Ž%½µ„RķŒē`#V%dČkV;ƱļšO­¹œ”ć»{)‡É͐‡ Äļžą/éŽĮ'āėE µįIHĘćŃt:śÉ_2h7ŗ%Y[C*f%·čōŖ°¦`ŚdQ*XŁƒ=µ•¦²‰6ė‡3µä`bĪ‘0µ^6ø?T½jtgué“É·ÖXW J0­3+f坮ąsŻJ ^k•ž‡Aϊ£Ö(3*Œā¢¦Ø% ‰*¢„X<ŻÕjW9l¶'SĀĀ+]éŽ×ו-m×ćR›²Ś­ķĄķā]kĮ">Lć<&öČŪwÅ^µĘcµ°\±6^ī”mm†/»zĻ“Öęx˜CŚ„\jēIŅąm³éēAƃķ"I® O°¾Z‚oŚYĘ÷‚āæ–lŽĄ€9Ó”5Ž_oŒR8Øį§#“ķīšŁ¶õŖ‘Ųž>jżÅÕcõPK .3|QÅļćœP5 briannesbitt-Carbon-d046377/src/Carbon/Lang/to_TO.phpUTŲ]Ā_„TKnŪ0ŻūÜ) R{Ÿ¦iŅ|€qZŌī¢(a,MĀÉņĆĖ «#GČÖŁäTQ”j5q£ZˆŌšĶ{£!?j®{½ĮŽ^ķ±1–MEŒF Ę15eŽ#;3Q’BŁfŲ'lßÉvŁ'#@²k“į;œTŸĒ’>•ėgŖ<ŠŠ eŃŌĖ”^1掁ĢY!2”–$åT™œPrŸéb·!ļźņōüzt^QŽƒc °,Ö1ńs¶ŽÓ y·Ź› I(fÕ«Üļø2ö šæc—Ņ”‘A vŖJ­$JG% ·ß¤ØŅ=0ē¤iy~l”“^ĪŖ­^ƒĪÉĄX¦uҘycÅ-īüé…A–¦g—_Ó“Ÿ Pö©āÉ>ūŃ«Ø“zĻ6aŽb(„ÆB Ééaggl8²ļō$ūrSI©¤ć17­~I… īäbõ[{¬ēCxz¦Oē‹&¾ś] #/1ŒĀQ'j®źŒjį°„:žyNéšqżxwććÕ½­¦]W©„J»5oÆÖSėØė&šiD­ƒF½‘nuˆó–kõŠąjņĒ;)źéųńŽĘéO„šEP{2¤×@Ո)T sńLčß-źF«Š*­@$Ž¤ĻłJ!’Ÿ­D#redā(g"¼* NLĆNjšĮŌ­v)/.Wķ0`Ōń–j˜Ńo‡Bśfźµ®éąKąBĀF…r0¤Ūš’ż-„ĆzYc± Ņ-čėj‘žZ€«łXHßĢ]'pŗ_;x @¼œ¾qŅM‰ń— Iy÷' :¹¢!hČĖ«¾FPc,fJvkc‘ĪwKb_Yƒōµō›Ż÷½?PK .3|Q{kÄņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/tpi.phpUTŲ]Ā_-ŪNĆ0 †ļū¾LØ}&@lMBāp]„©ŪXĖ’ą8T{{܎«ČĪų’Ķcr©Ŗšõŗ‚5|9Ź0GŠ3ˆˆCŲībŠ•=™kÕĪņ{ ĻL&ĄsG"°éęń)č„¶ńüš/}‰¼ Å{°1]˜F'`Bž,†¬•aˆ|6B1ÜAņht÷K8-¾·ĆvüÜĻQ Ÿ8#0™ =eaźŠ`‰Óeϱ°E-źŲf~įģż§§=¦xĘq©+ÆxÄY©|r¦C!k¼æ\„pPĆO!FhŪŻį£mėU#‰Ś÷×Zæqu_żPK .3|QóQJžb?6 briannesbitt-Carbon-d046377/src/Carbon/Lang/tpi_PG.phpUTŲ]Ā_„TĮnŪ0 ½ē+xs[dvķ¶®[“-šXr†B m&&lKž$7ČßO²ätFė^ęƒEń‘ļ‘”ģĻ_Ū²Ķ3ø€mÉv\øµEmAķĄ–7Ø3%+ÆpO©‹õįgł9|׌Édl-|ĪüöZŗ­²i®š«z«tO“ėźrÕ5ļK ( Ø9'iœ¤Ü)Ż e%ēŠÖ„Ī÷ĢtčóīnV›•§źė³%Z8 ‚Õœu– 8°-āj7ŖÓ99”¢/vį;ō¹ß:[*m.½ż6ؘNīaUSnµ’œøQél‘‚{°*˜)ÓźŚ„XßSOØÉvZjG”©­1'·ę6üLgšžt¬ „XŽż"M$S7źdægž: ͚¾\EWļ~čÉr¹XÆæÜ“Ģ{š),I£¤-cVr²#ĶŽ4¹„Lö_V­ęŗß“ßw2,5öQ?ö!lC­„&ĆŽWY¬Gõ<8—dzs\‚0n’ö„XÄX’-õØ„£j”Œr'©QUąqčwćī …hl»ĮŠ­[59XŌ¤é먅Mha–m(w‡«d$ŒlÆ©–’EäH„ډkc…gõ»#¹Ļśq½;į‚©‰RW¹¶,”£ ‘§ŌäČ—¹ź¤W)9N(&Ņž9ų€ß]§Sy/#®†ÜĆ€b"ķ4ĶęÆAD&ü(ŽĢ `é~'# ;Ė)ÅDZœ—;/Kć©°äÓY źMÅ;é!ÄPī>„Q€D÷ƒķó.Šā}ЧóO³æPK .3|QŌś-Œ2 briannesbitt-Carbon-d046377/src/Carbon/Lang/tr.phpUTŲ]Ā_WĖn7Żū+. c§ŽI“¶J׎&mœ°"P ƒšįh͐ɱ#§^÷²L–Y{ć•w’’«—yi¤ČAœ¹÷Üs.ßäóa2\ZŚxš` ĄIĀÄ,„€åH "PxIdOp4…ҧėˆ5š•pö$#ŽQÕcZĆóžłüć§Šė”Č^xč+!-Qœ§)„b8’¬Ÿh <‚”…”+”䱐ŃLš5¦” ķœŃ ÷öĶ˃wdžŹę§¢į‚(ˆ˜Ņ’õrM#ø`:Aę®D.CŠB‘MvĆŌŠÄīę:RuĢūCųSØŽ…¤±ūŽM±*»}–+÷} 4ü‘óHō w¶W’šń7{ždŽ(‚ ćƒs‰©½ßMi`Ü}”¼?¾õ¶cš’ŒĮв%I5ć«ĪsBEFųŁÄ%Õ¹äŠ]|‚%2€ķtB‘s £Éu¬9'9«ÜŸ¶®zLZ÷æ§[koxܝ1Ŗs k&øN*dTiŌ¼^„Œ¦$*xV§©Ģ” ‰5©4*旰ž)•FĢE.)¬iŌ°ły„Rz½ˆńNiŌ¢:Uæ°&8Ņ8t„Q¹½ˆqO‰Ō#ķ®ŹźeŒćočDdĄµ6«C¼–ƒL©5ć0ŖĪ ‡¢”ąŃTĶ8ŃJ±qŠ2žęa­:ÖcU£–U—ō…wh–Qßš° ‰„ČĪøøØ”ą²jXS9×Ū£øøŠ¹ģ‹ćŠżī+Ė"ÖšiQŽ–^Ž„÷LŅ>ż8¬ƒVv:>؟LÆī4"FTaŗ%gŌfĢ„”EB#"'׳ U‡›ÆźZaZœžŸÓT1hUĖ6éT*曮ųV6°nŁv}źÖ)k~{ā"^æīd™ĒzĒqĶÓQŖįt®żżõĆĆõ÷ų4œ…ń¶»ķ‡¶| ‹šYƒyąS_½¤”G~a­ÕO‘ŒīmŲunēņ)`Õk‚œ~ŌŠõŃ\ą?åŅ×ķӔ†tp &OčΊH‰ŖQ›Q4 Ńą£ü{”¦Z©ņsåķTc1NRėŒsšŻV–yžõØ\ƒå!•LD«š©$Tø+‡ bŚ.ó„f›Ēµµ3Ćŗ?Ū*f›§Ńęń»§ĻļYĆјä©n±ø¬looĆ&ę °±jHCÜŖ Žzø¤R“Ākŗ?xš{<œ\’š¬¾Zj™”Ę3PĖ*cö‘*Ų®ŗś³e{čCĄxČj=Xž,†üŗņĖę=hīyä!ßQZˆx“¹ņd1ä±Gą„ Ē·s@?ß“µ¹yŲÓ2„ÉõČo‚³*Ÿ+¶óų˜§ʍĖy -D>kße»&±>Ó8p‹iō#¦>ۜžė+å˜ļV,§°³5GqOĖ /¶-rĒžwąį–ÅĮj5ÆģŪUq$Āu*bŌ]»Įųóųs°†ßēc[܌o\©‚bQ“Gbæ’‡d`w_ņž9×Apˆ)S¾cx r<„+óöš\2éŒ'4ĖņKó¶;łš+-,ą`”ā•Į¾ XfŹæˆš\Ū·]IŅÉõ`*3…7]%Säā3ń‰ų4|^æ÷Ā^ՋzÅR͜ŃńQTūˆ\:rū¢©²qĒ&CŪ\’y÷•d=›ĻÅŠŻc>^ę)J8-ŃØŅ‘K÷H+/PŠ{bOe ­Ś\ʼn™<‘ćń4ŽÅ‘8Ž’"fRisk8quEŁŖīĘī@Ęk¾Ź YJńŗźå‘pŽ{*ąTśPK .3|QÉB²Ea—5 briannesbitt-Carbon-d046377/src/Carbon/Lang/tr_CY.phpUTŲ]Ā_mPĮNĀ@½÷+ęV!¤Üшš˜XB„‹1¤YŚĮnhwėģ?ą‡łcN·(ŠĢa_ö½7ofwx]åUō»Żŗ0ϵƒ•.+E vœ#Œ-­*]«7ŒÄŪŲ/ŅܒV&薚†Ėęzcäj9Jm9:X,ł U]ŚjGś-gP&ƒB§hœŒ4+K„bmMŖ•p[ß÷ō8¾ŸĢī›(æēŠa«dŚ1ée͘ĮVs.ŠģīlM)Ź Ģ/Ū¹&ŠHķĀŖP) ¦59½Į Ā÷ZB’Ü=>'Iö™"ł™°ÆH…[Äu¦v.q¹%įjÆįTķÅN÷ÜĄL |~(ņ,zׄ‡’ĆEļ$«Ōę'É·r1mJāĻcDūU®ķö”§Ÿęž óAY‚ō’VfGiąÜ‰ŚjwQG/R“oā8†’źo¹ÕįĢų³¾LźÆYŽ·č\_PK .3|Q' ĀįĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/tr_TR.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦nõ›łPK .3|Qõx0ņN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ts.phpUTŲ]Ā_-¹nĆ0 †w?·“Aa?@ƒIS @‘”ĒŅŐeŚ"¢H*EÕČŪ—v: ¤žć“6É„ŖjÖė Öšé(Ć@AĻdX  agø‹AWödF¬U;Ėoģ-l™L€#ęŽD`ÓĶćSŠ1Jmćłį_śy Š÷`cŗ0NĄ„qF`2zŹĀŌĮ&§7Źžca‹ZŌ/°ĶüĀŁūN!NzLńŒćRW2^ńˆ³RłäL‡BÖx¹0Jį †ŸBŒŠ¶/‡÷¶­Wäöū¹Ö_\ŻWPK .3|Qē߬Æ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ts_ZA.phpUTŲ]Ā_„TĖnŪ0¼ū+xSø6zMÓ4Mœ¢Abš\Ņ6ÖŅŚ$$‘VäS£æ×/钢ģ¼jØ`€ZīģĢpWęѧ_ōzƃƒ;`7\6%2Z -S3f9²3ŠS%i++`ŽĀzų^¶ĻNµÉ&h¦ĀZv4õቤPŁA¦Ŗćż¢t š¹²d™Z4Z̹e sVŠ „!I9Sŗ+”ģ³E‰@{KuØ»ŗ8;Ÿ\Ÿ{ŖąĻr°¬Ćra¬Sg1gµ°œ2äŻ(§3$”<˜śśŚĻĪr„Ķ”Ǿ»°k5³5h$‹NęAžķŻh¦‹„ēƒģ³Q Dv ¤Ž°=Ÿ’QŌ/§B»–Ią½)yä{ÉT ł?<đŖY:ŚŲŌ“śØAŖņ¤ļū½¶ŽI*(±š"k€fōļ°ń‹KšyH·“<š ²Bžłõ›×h³ĻŁŖ7` }Ū¦µ%…xéæŽ‘‡t;ÉŗßĈĀ=ćČ·ä żgm ątæugŗ½ąeGųŽ<¤ŪIbļ…¤«µCQ„_™Pü0·@ ŻIÕ fJęĢ`”ä+ó6»ī$ŗŪ’Šū PK .3|QĖ}jZńN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/tt.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې&”;Wiź6Ö²$8ÕŽ·ćŁłü’Ķkr©Ŗšõŗ‚5|;Ź0GŠ3ˆˆCŲībŠ•½˜kÕĪņūļL&ĄsG"°éęń-č„¶ńśņ/żˆ¼ Å{°1ݘF'`Bž,†¬•aˆ|5B19Ó”5ŽßīŒR8Øį§#“ķīpjŪzՈ“§s­æøz®žPK .3|QÓr9Ŕ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/tt_RU.phpUTŲ]Ā_µTMo1½ēWĢm” ©ø†R mQ‘Ś Ń^Ŗ"gćķZÉŚ‘×!ōF[$*čõ'pK?"•Šm’‚MžćŻ$^'gö’÷žē½±&»ņ¢w+•å„„ ,Į~ĢRˆX‡žv‰T "P1…u"›‚#¶É!­”ÖŹ…į•d„Ć.M›L)XiŚrc)T-ÉźDśZȼQŌėt Ż#Éc„· ĆBŹS“䑐 QLš*t;” ö‘Ń~~nūĶśęīŽ¦m•ēS1QŠ')“XŖ$kömAŸ©ĢžŠž )µņ°ĖvB{öeOÅB¦uūžŽ1Ž]v…l3oI³#`H¢>‘CRõŁ®e×Ģ+I›¦"ʧ«‚“¢5EXT“½ÜIRՓ>TŸ ) ąłźŹįķż ¶¶źITĖÄ^‰©§©GŌĘFmg§öœ²°ƒ,ҳÓVP…Eė9IŃĆ?A"øŠ'Sę\gśJĢgsT!0_ōP_™Ļz ’ˆ¾ĖŁ=Č«~@vč±ÅŪ­ł”³ŅūT1Ąž×ęŌO{˜c<Ÿ™ō¾œśź{=šC2}ļÕ7xj„Ż ğ¦‘āj(o&7›ĀM0Åōo—Ż%w¹]^—Ņ„s¹fyś”¶[äØtæ#s6¾@ÆK=,ōꛏ`’Ū9äėų§DĢ;ł€Uö÷§š3‡b}ÕõänĻō­åĘ ‰ęļs¹<.GŁæģź¼œĻ¢GĀų’qˆ˜LU="jX»Üę鄝ą…Ȳ¶:¢DzŖŌCŃć ģåEņŁ|;܀s$®sf/}–ĄēGć_vi 6ĘošG›cœłŚ61ßg ĒO”ßå/!Ć?ĻÉT”ŅPšÖ\/»ęćÜ ģąYåPK .3|QVŪÜ = briannesbitt-Carbon-d046377/src/Carbon/Lang/tt_RU@iqtelif.phpUTŲ]Ā_„Q±nŪ0Żżܔ®ŒlE›¦qķEÜÅh’NÖĮ)©ž‚žA¦"ł‚ Ż³ÉłÆ’4ķ*Š„\īīŻń½wäéē*Æz½aæßc}ö-GÅ2,€™XqŅLfLēĄĘœb) ”¬ųB3kĒ’cö… 6£Öģ4¶å¹0„Ōa"Ė3?z)ÉeuQ°DVĀe®)+0”Œ¤Č$•\£VĄ v‡Šø{×W拣üĀR9:ēš5\±•&Œk )kPē¦c¼+YSF(uf‡vC{wTė\’ś`ów씄™ó×LsĶ)ĵ†³OŽ‹óeɱ°[8 ]“`œˆo"‚Ŗą ˜˜Ō¤šŽÖ5°(š\ŻDQ A„ęqƒūŽcę»õTĄ>yČĮ×&“p: ę׼݅ ”BēžV°}Ųž 'Ć\bC¼ųŲ|j>ĖĘQEXģ€ ‹öYųčąQ³¬•›œ£Š·OŽŖżµś[ĢäęOpµĖ_»‰”yFŻõä y/ŽŹæx{}/ķU‚ Ą*å›ż,`õņ„ńäŪēN5ĒNŃžź”_A$ķSĖrūČmöņ€e o_ķhdz{©½Š§÷¤{Ę·|„ŁõæŁ2$„#ĆÉ,²ŌŽņÄw=¾²][mĄ|HwŖĀ”ōnŚū‘æŸ[•Ūć½?PK .3|Qż!-Q’W3 briannesbitt-Carbon-d046377/src/Carbon/Lang/twq.phpUTŲ]Ā_-PĮnĀ0 ½ē+| T>`ŒMcLBš8Œ†På¤.±h“ĪI@żū…j¾<=ūłłÉė—Į J­  ųv”åŽ ą€’ “ĮÅ_ZöŠŖŠö!ŸŁ9¼ £‡EĆ)ĮŚ<č«/4¤Ź†~ó/ż2µ¹ėĄ†a¾øččŲ’å¤oƒō˜8ų% a鯘īÓŽē~»;w«)_r˜ąŽŽIŲäD Ü9¹2)ŁcČb©j¦°+%”²x@k””CKm–Č7š żf‚ŗ~ßÕu„W‘bU^£—pRPJ÷$Ü0õž7pŅĒl ¢ć"Š?ˆĀWĮčóRēOźPK .3|QUG = 3 briannesbitt-Carbon-d046377/src/Carbon/Lang/tzl.phpUTŲ]Ā_VKOÜ0¾ļÆqY «„H=Q myō”…õµ¬VŽd²qIģ•ķ°Pńc@Ŗ„zØzGØ’±Ś‰ćMš„…śāĒ|óĶēq<Īęö4ž¶Zk««-X…£˜Jˆh‚`ś) x*FŲ!bĢ™Y NČ»kįĖĮ ¼”08D9¦JĮęŲNŸ33åŖštĖA÷¹Č‰¢,I ąÓsA'±ĀBHh€Lš,ā"%Šrցi‚ĬRœå~½7;{‡ż=K•ėS1Q0#B*• ćLa3Ŗbc1Ś%ĻD€&P˜‹]kµŖL0“Ą“ö9цg[Š<ī¬7ž1£F\ų‘lwōžø”37±)Ź‹ł™‡ß:C™;<Rf>…¹Õ?2uQT]„—pę¶ģ3d,œ#ī0V2į…ż  ES,Ż"ĮÓćīĢøœ ¤į2M£htŽR”šGD‘ ź¢ œąŁ“‚[ŽŽ8>–ōåŹvĶEqĻĒĻbړը,än¦” Qī"ÄT_.“×sXŃå$/ EB‹»›/÷Ž æ×Æ»iźč”_±t„¬ Óīn÷ą ūÉ“š±“vįĄ4„$IˆBų7$4%y‡Š“ :„ūĖ$AŗzUɁ$)īś{jōåLj*Įž©9(OóØ¾ŹX™0h¢ŒĪ Wž9-ನ9×@ź[˜ ”`µVĢøŁŻģ%Ņ]ŻŽŸIHQАbQ5K»ķK0Ż»„aµžŗ„ż–°Ģd¬ķ}<d’Äv|@„¾¶ƒ§B’̊%j»Wś–Łžm–P’/d2ˆ•õQazZõĢcƧś›-Š>䎚ƒb\W3’1j®É rZœ’Å2œ§ĄwQ]DĢ>ꊖ›ļ뛄„9aOß0Ō×ŌÅ0E>é+d"Œõæ§ś;Cįą}}„,ęĻ µ=ŁPeœŹ>l€’¼d.9›„eĪé[Aęø Ŗ‚ČŃx.BŹHā*.ĖŅ1Š®ÆØTH5²Õ‹G#’Œ®Ļ9»^€¬ÕĪüŸĮ“Nkų“õPK .3|Q·µŚ89¬ 3 briannesbitt-Carbon-d046377/src/Carbon/Lang/tzm.phpUTŲ]Ā_ķVĶNŪ@¾ē)ę )‡rH)“%TPŖ* Č±×±Eģv7M£Ņ[{ ä@ؔ‚TA_T[ؕx?I÷ω©zEŖ9;3ß7ė{i„ėtK„źÜ\ ę`×q)Ųn’ļ„¶9V ŅĀ>W™FĶs¬€Ļ˜³š’ø†ۈ¶\Ę`©%Äē>1›7±·¬”Æ0‘Žģ^§&īˆŪv¾×D>å!}Ļ`.ö+Šķ ƒė޹Ø/y›«kŪ;kĀ•Ģ9ƒ¾AĮr)#n«Ē}—9ÜĀs§øGLÄY2ŁŖØPp_ō˜ƒ ­‰õcx©;˜ [ĖuŲ ƑJA¬G|h”€_å2Hž-CłĆĀĒ(øŽĀqüT‹Ćš‰{>ƒ(<ŹŖ£pX®(¶‡}ęäéW8 O£p”#_É_Œ2ä>BŠ›…žH/ĒqØqŒ¶ŒĮdži†X‰RŸųwx·Rж~ā÷4µ‹Ä“6Š Ņź\Ÿo@Ęʼn²‹ƒß©—œ:&Sdbߏ40ø;Ģ×+u1ĶhcÅ“å@¹Šķ6Į^ÓĒ} nˆßĆĻÜŻīaY®m7Nzo“ąå0D"yÜ7å‘w«Ś$؍Žw 3+µ½=ś( ‚Ł•‰dģ¾®Ī4:Č·ōaĻ”G Õćżnd{¼;ūĄĖĻõŃ{6qśMrŹešXĒ “NÓ'ØČÆ üƒ_QŚZ‡ź¼9Ń9»ōn—ćAOØ</Ąń¼IĒū—M6ŠR}Łß|ž±wģĶķI8iµŗkk-XƒćkxĢ€¾Td&d°ƒj$MyŽŁ:q}Å[…÷Š£€#¦GÜŲ9÷­ WšuO&[õƒT™P0cšä$U|@įCĢ=&4-)©4\ŠLb†4÷3›Åģļģ vT–Ÿ рE >×FńŃŌ0,7!!”»–Så1ZČĻ’ķŗ ]컩 „Ņ=g意R‡0Š…߇}T£Īb3S%ą¤4Ś)CՆ7[Šž¾ń£ēÉ© ōõõeįpēˆv'§ćpš-‘Ā„ ŁTZUńӔ«šl-ā že,ŹI%œ`ŒZĻtjŒĢĒ“Yh•æŌkéTäĒ(!Å¢œĘ»ßX² E’Ļk¢s1O“.čģēJuS7æj[Vć`_.§kęIį/ģfju©9šrq,sNJżŃ3©”¦Ąüg©¹Ė˜Ś®Ü1¤ŻE툘ŠĀм“"U¶Ā’™IwYJĪ¢ō\ŻĻ²]¤Ļ Ÿ0Å}Ī’Bś‹O?^`ģŲ7?Ypå&ŖņµqļŅP³WīÕģqsó9ɔ۞źNėģuė/PK .3|Qkųˆj0 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ug.phpUTŲ]Ā_ŻWAoŪ6¾ūWš@Iš¤É ››6Ūź –¬RĆP$*"*‰IĶ5ŗ¶$nœīą‹’B[£=ķß!YfeQ²2wĆN‚D|ļ{?>‘ļ1Ū;]·ŪhÜ]]m UtąŽāa»&ˆ:Hø=4Ł Ąd=7ń`%|ŁZA_3bč1ęGD“}$‡_0¤bĆ¢žż†²”Č =Y“ŪgäŲČ lä ¦ Ź|S¬”®‡M°żDp/Ūūöįīć'»’*Õ'\S žÉ‘Mø`ä(ŲF="\š€vNCfa˜ČNÅŽ•+”±_…Ā„Œ7åū:śŽ%év1śĮ -³ĢzĄCAż}2j›™­or)Ć"d:l xŒ>6™ī?@ĘĖ­cƈŽÅĆh‚āĖxŸĮųē¦EĆ@ xU¶µ,Чpk"£7ŃŪų²©l*²‡ńóšĄéM2Žo¢«d\ÖģŠĄ6ūu’O“‹xP‘œŁTœ I­Sü>z½IĘŃUEuaĻ×LųNusŸCjÉ«*…fW[4°u š§ƒ)ü%É(>Aņ¼Ķ£ØĢcšń4ń1ŠŽĮ<“äU±^‡QæŠžŽ‚ŒŒŅ9CŁÄq:‚Ī’ <Ók=o)¢¹Ą¬@]%P^‡„ĶG˧Ķ2Ø}<Ņaųæč–‘Ė;ĶgĻų"ż+;óZĖ‘3É›NžFd›?5ļd5}_a•ć‰ęir^rf®įYßß_oµJNŻ›šxøæž‚x§“Ö³­ˁ’$2ś Ķ‹žQŲšāß0µUĘ,ÓƁ­źƒ–2nśø•o„Ć"łŚIj#Č«¦+Ą/„¢¾ō‚€§³Bq˜nŪ3Ną ŪH®Žī™\ŸÆ“Yė°ŚTiŠĪ¢kyFā_?f2™]«Ā°WÉ"e6 L/u:a`Éž€–—‚Š?Āl -u1#Ō^A/g„ś€åfŽ%K6Ć6š5ÖV½µUµĖG5„dĆ(¶ä½Ž^-óӏįÕ*x™ŁĘŽzbEt’¾äåŅcģWS+ė<$6«Özö–Ņx„č‹[››čN,f!¤ŠmōŁęf5’JōĆdūqŸ§UUVp£*µJ÷ÅķtPāĒ2SŃd!ĖÖÖ§·Ņ€Œ‹čCt%·ÆŽr~²ˆs1Åē·Æ®$KkB:g£8h s¢_ u-»ųĢŅ.­ØĆįf'žOė’=hÕÅ·‚2p}€ßؘcyQ±Ą1ö’m:HW[²Å7óøčw(`ēź½šTõT2](ÉēĻēĢēɹsŽyF(!’ŸCy½”NgvOŽ*ī½Ņž¤WŽfųåĮ?J ŠĆJ^C«•s“ļ5žPK .3|QĒl3·źA5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ug_CN.phpUTŲ]Ā_-PĮNĆ0 ½÷+|LŠŽa¶1¤ ŲøWnź6iŅ9Õžž“p²żüžżģĶćhĒ¢ØÖėÖše9BĒŽ ĒE!t –`ŅŸ!ó=•™;ÓÆĢ5ģ„ŃƉbĆŖ°ięņÉē2hiĀššO} ² ź’s`Āxī­śņ1Æō]•ƒæŃfģ‡iZtoĒżįōy˜G-žŌ¢Ā„ZŽ*Ü$„&V›;Ł{ I åEķb¶š/œµŪ¤6H¼›ó[xM¼£LhńŚ:`.x^dBšÄƒŠ9±Ōõóń£®ĖU•ś2?nu_üPK .3|QŪ}£Ś? %2 briannesbitt-Carbon-d046377/src/Carbon/Lang/uk.phpUTŲ]Ā_ĶZŻnÜƾ×SĢ…ī:²\'i ¬,oÆ «–l»[aDΊÓår¶äPņÖ ĖHŒ äBFŽ¹č­,˱¢ŲŅEśÜWč“ō 9äĢ,¹–åJI Ś9sųļüĢ/}­ŽwūW.]š@—вKCŌ”Aš·ŽXq— 8Xe>ˆģ.^#Ó +Ō+v}P죻$\„œ£k«¢łšŒOŪ¬w]ŖŽbAŌ‰<٬?čšĖöäQ›ų!˜ō;,čaN™?…śĮ [§d#yoažĘĶ»K7TĀ»˜£ "‡†< «'Ś Ü…ą²(° r²W&&ū³IކŽšVäŪĀ š>ņg„•ś(’Ģūœ “ęd +žšL9VŃ£ O@xų™tڊ­éJņĘåė.˜B³³³čźUTGVüŅB5dYÕi«–­™‰­xįŅ\Ä]„5ńū2ŗłŲC‹8ŲĄ.NEd”‹–X@:iūV€żŸ’ÅĄÓ/RĮ2ķ”[4tÓÖ \ČŹ\œæōSį"~ˆ]Cüü.“Ą 4bHkؔī°õ>ī¦ķ¹Č^NŻs©Gū}‚īćČvIJē½FK.ī{ƒ ņ>v=4OÖCJ(YO… āBš &-ĶÆAIÜĮįū¶IsĖaÄY/ŠĢ‘¾óæt#ĶģyŽū„G¤Ļ¤{Ōg¾#‹°O9C·0ĒŅā}ʱG)ŗćF!g¶Ū•ęŗ4ĄĪĆ(³yĆ  ®Xüźž—Jośżk –¢%Śc~2><Ā9•€8€Šŗ‡9ŌPČdųē|' “<€‚”]&łß„6ó~ž.D·™Ż©ų›d0恻ŠZ, €¢{Ģg=Jģ;Ą«0śŅöś ä _„xĪ#`Æ;Ā… Ūx=x4ź¢J"šŖŠsĀ!0Pőæ.÷’ž+²č›É°š½Ž¬šĶ"Ÿ£įöp7>ŚĢ[ńq|šmŠŲ·¦$€žöp;ć…üčźÖ(źŁl@’øk°Œßw‡‡Ļ‡_æŁ,ŹvĖdžŽæUœ5C@ś#axƒ®ķų0ž!>ˆ_Ēļ ”¾SpJ¢‘ßQ^(+"ņļ³šQv<0s1‚m !mio±?P¬sXł"äLˆ©Ūdų *źį4¼W®eŚų6S‡ĪYE0°S€ĻŌLōJ{~ā‚'ąuj«Ģ™$u£Ōņģ•‘ģ“€2ŲŁQß&ņwq}°æŃ. e\.@[?-J@*® ×±'ю/9÷¢ZŽc¾ršqY˜EՒ–©F`@iJPu¦Zz÷˜:‘ŽÉ$ā…åō…Ū·k½žŌ•KZO- Ī“«Ń˜^\œžš·Š¢ Jémpv§›=ŁŻn™nEŽ [ĶŃ”‰¬źL³„¹ķ“‡ü×g« Ć÷2}ŻżzTæo#Q Ø9ާ‡Ć’ƒˆęÓęŲx žĻpƒrŪEŁw˜9æģ{£zā±ÅW•ßŌŹåŸ‘’vŒüwEł÷Ļt›“ćዲ\gC:8ņųycuœ¹­ŅЉę¦ŹxadzbC}9ķ«ģNśQo•SĄ,™Ęõdä +vå±µ­Z‰Ō)•6RłF©ōU eʔõ“u9žŃš)³ōAļB„GŽ›Cóem%æ¶²½7Ź”¤7d±ė×ĆG;Rˆ®”ĻĒ hKl̆OaÓ5jmįź§ć ’MĄ;± =ä÷cyˆć¹0QŠŁ_ēūž3&āSƒ\ö­įcŲņNzóvĀšAžI~ėū _¼§°s ¶c }5܆A™Ę”mų%vG°č{Ģ'¦‹É5¾ęä!TŖé¢ŅȜĢ%¹›J’9Ŗį&®*ĢY„”ÜU²ĢaGwŁp8ÕuŁe7¼U~*•gŹ#å‰ņ@qWœSÅPńå£oąÆTMÖh×+­fóĻ­f«Ż¾Ōjo¶Āź'b÷Vß\xōéŌē[›^ņ§zE’^ Rx–µo*ūž?Øļ‡ĘÜÉ1§6šÜ€i7D³Ś~0±ē38JƒĘzV50J_Ć”r7=ĖÉćD.ß Óčˆ ½ČUśķPĖūė¬X“ųīhq<łĻö?†ĻECæĪF¤÷%ĄģĄKķ)“¶ķ(CīŁĒ’§ÜÓÉ=3É©\ēäֈOĖ©ķ–P;’X§&eZÜG©Į„“WFow$v‡:½öŒš'}8„ŻKŃ,źC}®@™ŲnʳլÄßnĘū›ń÷›Ć'ÕV» gL±ŹC-ę’mĆp¹ndÄčŖ”Ja„2̵šu8ĘĘoõ=̦ų°%F<N’EęEµŽ aœœĘDc”§”T”fTø”R)¬é ię1k7ÓńŌFõ:ņ#Ļ3”l¬óPzĶ’ä’ĢųŽLÖvš]97dņųe>äˆŁēĆ’ÆCƒPœ˜+¬£>R_UŸ•…W_ØÜŚŪTüöźKīŁóŽÕė” _MĻšLü@÷xIń&?üŚ®²¾CÆļ¹«P×籓¦?jG […üX»ŅĒ’ž»ż÷ƒ?PK .3|QŅŽ mČH 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ur.phpUTŲ]Ā_}VĶnŪF¾ė)ę@±ćF(Š“›ÄMcnkl“hAX‘Ksk’+ģ.-»čŁ,č S!‡Č1RØJӃ/~Ž„ō2åņW¶Ģ‹8ó}3³3;3Ō³­žßk4Zėė X‡CŸIšX@{D(ą(ŸĀ+"ŗQŠ'\&•`ŻXQśLłˆąŁ%…C1›¶ÕxņHłžĆQšiźÉ0éŁbÜܰšäBĻ–4—z¢góa.ėIrkšdPa¼/łčs” kŅ=T“łT’«Æ ßŃĒ•žUP7ŖźĢI—X脊“æn4õ)=qÉy5ĆIźgRńs»W¤Ėd8Ÿ–¹ ·éü¶rśK}£gĘK]·øČåÅÖģ:•ĶZéMæŒ•Ļ…Ü4ļ_ĄésīĀĖ€„V±O}é“Č ?ł,`½…ŸIģųTX플cų1Ü%V§~?‰ķŪo„”æQ8$gč4 ‘bōŌŖ|āŃ?\vŠŻE³ŗ].%eü@ŗŻB±„z «Ųķ,?‡ąŹp³)Æ$(IH·ó›<2wyqŚ€ŁWbFōL•TSĶ©æƒoŽG«ø‘U·Ek€mŠ•1Œ]£bŲ†‡š”w™MŌŽR”B*˜Ėhh ÕŌ’į0žŻÜĄ~ūŒKš²Ł®nAŪ/ŁĒ¶t$~Ō=pžį²P.-UėU\m÷<&¤ź˜‘ć^§Ų¾_–ŪÖč-É F*Ö’W+ĄyĘ`²L’,€É?~’PK .3|Qqhķ}5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ur_IN.phpUTŲ]Ā_ÕPMoÓ@½ūWĢĶm”q…R m•J… — UÖŚYŪ«:»f?åX©±rČļ €"‹—üŽuņg˜Żø„•8Wb/3of޼·³÷ŖĢĖ t:tąSΤ¬ €±$RƒHAē‰ŒĒRrE2ŚĒY7¾“ģĀɇ3Ŗb¦5ģÅp„B÷1ŚoGß é„¦( åD²,×@ų –P®P’§BŽˆf‚w”,(ĮŚ5£cĻ;=9<>ūxģVy:'ĘDĮ)-Yl4˜é;č] #ŠBCovą~čøÆĪ…TĻ]ރsä¼#ŗ  §€/6Y/+Xœō ‘‚ŖƒŒ›¾™ß!©6’‘’L"IĖ‚$cb¤b×tGŅ/†I QttrEżp`dÆvįsඇے©^ī·%_>õ…šhš~pqv}ćrĀ‘ą:o”żŁTĶĢ֛9ī ›[?@S»°õŗr¹]4+WonŪĪ×ķ ņgMuŸŻ"㮳X/ķ/ūĆē‘óĶÖmē;āŁvt‘Õ¢ĒŽ#…wÖ’“ļ1„WC2¹æõ³-{µ™·Ł“©ÖĖ­Cä/׫Ö×Ōž¶µcżÅ››­Æ¦ŚĢ×Õ?“_éIGŒ?…jE"R&•ŽœøCJ¤Ö .w_PK .3|QX÷`ųńŠ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ur_PK.phpUTŲ]Ā_ÕRMoÓ@½ēWĢĶm”q…R M‘*µ=„*kmÆķU]3»n”#R“FˆßA BŠ"ąĄ%æcž ³§“ÜAĀ—™73oŽŪ‘÷ž”yŁjõŪķ“įU.4¤¢ą@±dh@„`r‡ #%©_°Œ÷h֍ļÄ»š “pĘu$Œ½ČĮIP™^¬†ūĶčs…~QZÄŖ£ČrL&Pˆ˜KM’2U8dF(ف²ąŒj—‚<ļäųščģå‘[åż™œ1 ‰ŠETžĄH˜œ:ä]« cNB‰7Ūw/tܧ•Éź‡.ļBTeݬQÜ-TĢ ®2Yõfž‚ÜT(!²qˆ¼,XĢ)ĘjqÉwæ­rĆĮń‹0ģż {tĢ oZ@_°yŽąń~Sņå_ƒžéi’5}AĒ7Ļ7!*iņ†Ų/õ“žŁåĻ“7ØßŁå4±s»\O]nēõŹÕ뫦óq3CüY=½Ķ®ˆ±ķĢ× ūÕŽųœ"q>ŁeÓłLx¶ÅĪĮ.±tßqØé“ęņ=āü"aćŪ[Ļ={ްWõū&›ŌÓõbćų‹õŖń5±?ģұ~朌3®éÅ7”’©t’F’@o(äßW#„P„a*P›ŠI;4ę ½ōƒķ_ĀQ$‚·~¾ū½ßܖóŻG­_PK .3|Q':cž 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/uz.phpUTŲ]Ā_•VßoÜD~Ļ_1o×†ŠØÆ”4„^Ŗ’ŖRRJO§½óś¼Äöžv×I)M+•Øx…Gž×ü€ćҤ’Āŗ³¶×k;?(N¢xg¾™ļŪńĢŚ÷–‡Įpnnq~~ęa+`|RĄ’C"pT@į=£©æCōb üV’6|.‰į1•=¦Üė™åg1.¹ŗÓēŃżś‹,‘Ÿ„!ōłp$Ų P@bBÖ§±DŹŲē""Šńx†!%hŪet/‹[_{°śxsÕ¤Źō©€(Ų#<&•`½DQö˜ ЃŚ%ODŸ"‘—‰]4;4±+‰ øKęžchG cG°‰łnnż¢ k’ąNe¾^‹łˆ(Ō̓@"0/_"v6“ĮO²įĀW$éTäVŸ†l·‘AĢ|³_•;¶d¢x”Ą—‰ąÉmźŪ$æŪ ū°ACD3jÅ%$fŠĆC¢H”o%d™ąi˜ ztĒ*Y‚ö]XńŲwhĻŹ ØJD Ūs€WkD‰hĮ§÷”µŌēI¬@’£§ś¬µ»I×¾æūƒ~£§éA_1jd³öˆĒ*Øū.œ—t+ž BĘWĄ£F"kߣt§ęz¬'éĖōPO“9"‡_¹×Člķiģy–¾ŠēŽÆōWö•AĘWxdÖ`?×\és,É$=tLāØ,j|MTŠČY–˜Å8Pu-'zņž7=ÅæJ9«ĄŹ+Ųń ńŻą°Iū<ö.ļųóævōUŅ;ČųŚ yĶ–É€Å" z¢šgāzŪ<źĘ¼hż§žaēŸCŸ¦ÆpyR©ÆØØd4>„cŌi63å#ļQ<öhūBŸ!¼‚ń˜ļ;nģĪ ż·©tĶÆxŁlślŖćZc•ˆ® ŗ?lo-/={&?²r{¹9¢·ćņ’ŖOqƓ«1u†zs~<¹eq’HĢšécG‘æņ§—_™y}+yōh)Š lįŲ¬x–¤¬9sW»½ø±±ų ^5§õĀ^pŁ}Ł—éƂ-€‡W Ü)¶×'xĢ{Åi[ٟ$mŪ²o»ĒUŽrÖ·`ŪtW§ŹÓ}U‰«ō†€ÆĖĆ1Ó¹ŸMzś_d!‘U²ā‰H”cÜÖæ£Āc3$ųō¦F«”,fh½QŁģŻRōM+} q¬Ķč@+}‰Ćx”äcŽ}÷ÖxĢńˆ÷ż=§ĪcŽ@x7M6cUܝŲ#óXŅēy,ź=Õēé!²½É™P’¬¶>×•Õ āg˜Å¬ėŗ»æWTM½Sī4;ÅŖÖétśœ2§ŖŌcޜ8ܕJĪŅĶćĀC’ć±5‹Éß°¼ĀģøwFmĆö>ś·EŒó4µ4«ƒŠœ§Ą1;>Ēā8.ē·oØ<»Ķm3Ū¼6«Ķi3–ł|&¤2ß]ī»O»īĀŲsńšUłéeQĢc4²z~*FśĢōMĘ<Ėē•MKfü6“õAž‚i0žĪ's’PK .3|Q**"–7 briannesbitt-Carbon-d046377/src/Carbon/Lang/uz_Arab.phpUTŲ]Ā_„“ĶNŪ@Ēļ~й"ć\Ś(„U $Ā”pAY{Wų«»k¢ÜZ ’ņ EįŅKžcn}’Ž?Ū„ź„{Ł’föēYyēcģŚÖnµ4hĮ™ĒøĢ§€{Lø„ČéQŲ#¼…(Ł×䊚˜›„oŲ›š™3Ā ]&%ģt³šSˆa$M; vĖŌ/Ϲ‰ļƒÅ}Ī®< $tĄg6 ^ŗˆdQh@ģS‚Ś £½¼īųhļąäō k•óIHč’³n"©=&=t]D ·)^ää°mS™šē¤oqūĦøŪ ģ†npś-aœ‚eķ}µ,So»ÄÄÉč\h€KļQz퐾ŠįĆ.\č/ćåƒzNź>b’®žŅQ#ž§Ć_ßĒui9H‡j¢fu-]ąyŚ(œ¦wźgy^é—FĀ^ÄåÅ,Šmn—™E’BœŪ³łŗUĄĀ’jD”ōVcAśbö2Ī‹~Ø{5«ÅwŁ÷/y‹IŗČōō¶pŠ ¬„ƒõéVMJ}²|RsõXŽv”±ö.½ŒG«8#عXWFMāĘ īŠ¹¢­X’ÅY1V„[EU­i\ʅ“š)¬Čµ²WɑŽÕž‰†NłĘ€·ė²ü_)ēžK¹||–+śįįvčFŻ8­9ŪB4ĢĀ:ǵÕél9NƬ¹Šét`æéža£Æo’[š®F2~Żåę{ķ7PK .3|Q$’E°9ö7 briannesbitt-Carbon-d046377/src/Carbon/Lang/uz_Cyrl.phpUTŲ]Ā_uANĆ0E÷9ÅģÜVQ²‡RMQ+5]„ŖČu&Eb‡‰Ó*… Nđ˜¤A*HĢf䒟g¾=½®ņŹóĀÉă <ęŗ†LÜ+Il.G˜KŚYƒz‘{ ˜ķš‘Ć-ii`ƒõN;Ó]w¼1|“.P¶œ č„~PÖ([µ¤÷¹iR(“BSóJ“Y*„ÓÖųP(Y;h<ö÷Ö«łbó°čFõł\.e ©®é]ć0…£v9;œ½¶ )äEi6ō]C$‘lĀŖ ¹«†j}Ąįk£ !I¢Õ}’"lŽžįó\ā”­p5¤^^÷‚ˆ¢0ŽĆ¶ž™õćAĒ>ŹŅs=0ī #„z ƒ®®NNæaé X`ŽÅa×~ķ,=ņĢ/&剿µ:ćS¤¤WĶOķüŁ#3ƒū L2ėšrśS²›æ‰_Ū«Ę&5Å €½,]Ց¶»āurŸ>=õ‚šü#3ąėBłŻ|æ5Möņõ›O _įŒĆš†®¤9W0|Ą§Ō|/–’ś@m>·µŁœökĆ«E„,sL¹&‘•yʛڣØ}ķŠę¦ÖO`®šmÓ! ŸƒOĄūæīī­½­÷ō†­›yš …ē*#<"–W…ś˜†ś„yvŪÖģŻ6>W„£»Č¶ĖÖØņĘ„qhŌ½®WlwåšĖ׈9-§äuœŒSń"­FʤŅ湚‹4<Šgį3qG2Øiµo~Ć*š’Š÷GuüĮŠ@XH*YĀhé“'ƘÜ|önšPK .3|Q“Q_L #5 briannesbitt-Carbon-d046377/src/Carbon/Lang/uz_UZ.phpUTŲ]Ā_RĮnŪ0 ½ē+xs¤ vŻŗ.mÓŁ’®Xv †Ā m:lK%9sæ~’¬6hw›/$ŸČ÷%_~éŖn2YL§˜ĀĻJh(ECąb‡l@•`*‚[äLIå5hīz}ūY~7,PĀéL—™/—Ņ•ŹĢsÕ^ÅÖ{ŁؓM¹ź‡ŹŹ‘“ŌNR–Š[4BÉt ”ĆzAĒ0·Yߎ=ģī briannesbitt-Carbon-d046377/src/Carbon/Lang/uz_UZ@cyrillic.phpUTŲ]Ā_­‘=o1Ē÷|Šg»6J±B)¶HM…(K…Ŗ“ļāĖY¹;Ū—¦“]˜€!^„„iPR_Į÷xģqnńóņž’ϾĶ[½øW©4ŖÕ TįaĢ$D,”€g<SŲ&"ą–Ā.éŠ:j|-\‡;‚‘ Ø ˜R°˜“™aŹU=äéV)½Ė…]åI!ļ ėÄ Hֆ„…4“h™E\¤D1žÕ —P‚µ>£;·æ·½{pøkVY>"”ͤ,Čmƀ©;Č.y.BŠFm Ū074³·ss!ƛxZDʂp/ļÅū«y ī“ įpHQOH‡@7+šyĘ6ASšÕŪi®™āméRÉ#{wk,ØŹED2ōķ%$¤x†¹¬O×}œ3AĮ÷wöų~ŻkäOėųK¼<Ŗ~ŽüQ¤7·Ź’-ļŪ‚·³ÓhµGG^ͶŽē‡—ņLÅåŒ§æź™žčq1Ā­žž¤/ō¤é±¾“ł[Ó)NmüR’ĀĪ…ėčļ6zS<׳EtYj'ś[qVœ”³qnVœ/ōyéō^O—ņwśē•ģź§č`ņen_āORKōŽÜ1;ā„uœŽĻ‘9ŖĻ€Ņn› Ƽä“x†>3}®Ēs=¾Ąr÷ÆT>ćöŃJ탔]©½.Īō2ž²č¬²¬¾9GąœŸsqļOYö’·GLHåć~ŸG¾±²׏nYŸ‹L×dCJÄÕńśŹoPK .3|Q©ö‡^3 briannesbitt-Carbon-d046377/src/Carbon/Lang/vai.phpUTŲ]Ā_ÅSMKA½ļÆØŪØ,;äjŒ Q‚ė!z "CļLÆÓ8;½éīuŁ›˜$2=+†Їņ˜@H ł?õ+RŪ½«nb@sHśŅ]õ^Õ{Õ=3s·¶+•pjŖS°š M‘q ½Ķ”Ł“r˜cŖ!sJślƒ×ˆ; Oēp_ –Ć2× a Ģ4὜Bij±lĶ©¤rš,ƒX¶{Jl¤Xž@&bžk’Ģ›Rµ˜2ÆB;ćŒr[‚w]ŻŅāÜĀņŹĀ •ógRf Ė4$B%Ćč “B޵쨘“Pā̆ÅMGåĄ”b½HńvĘbN{ÜQZlń Åw„āE󋣨„<ÆŃĶUX«­ ĖłfĀz:€;³° =Dū‹Ļ݆ż#Üßq=pąv\°7 Š“OŃ_Ž·Ń~pqń ‹wXœėÕqŃH§R™’#Żł?nÉܤē×\¾ĮŅŚ·h?‡X *Ń>óĶöŠałš8>žŽåWw*G¹ņ%ŚS:Åżē£9,Nü ư–Ó|žōĖ'Žß!”-Šž _(ż]ßdĢZ—¤‡ÖĘGZB ×Ā•ä=œ–!ż 95~V™īlOżdllŌ JAeśµ„…ō€ŗE•ŠŽ%ucl‡žŒžBÆrmIbŸ»ŗ<æø¾¹­¢?/ŃĆ Ō伄rš¢†yÉ{wf°•`”:šĶ+ü`5 µø.¬čV‚Ļj°Ž–āȊoYE1æü\³4zʓI§p—Æt%D[挄šī īR…kb8õćĆų Ć3Tč1D”»€:rūč+u1r4nČSz?=ģ^8i¬aŽōĖ(tF{ł4”ahŃ@+ŗßyÜšećøB²·ć6ü=ÄĀ˜p¼Ū›°µćV×"Ŗ ŹHA9­Š}‹ŽĄø1ŹØ]Ÿ½glķŠĻįL’櫆¬óßDaš"\J“öź’Ą~ˆ±ĖW·±’Ź“®žsäętāÜoč›Ļ³<Ͼš:QČóžDŸĆ;ž¢’Ä«yMįŸl~’ūć·ÉOPK .3|Qk°˜lĢ 8 briannesbitt-Carbon-d046377/src/Carbon/Lang/vai_Vaii.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm£Bķ0bŅ$“ą½rSw±Č’ĢqVń÷¤O֝Ļw'ļ^’KĘtMc oĒ&öu&…8:‚=ŹC„ģ^Ø­ŚE¾µš&ŒĪ”V…ݰĄ×PaŌÖĘėóæō=Źj4ļĮĘō+|q Fšl)ä¦(WTŽį’'¬Üi^ļ>NūćłėøX­żŌ”ŒFĪ*<„fVW7µ{ŽE,Õ q-Ū!-@čVXśžpśģūvÓŻ‘Ūś‚Ķ“łPK .3|Q–ešņN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ve.phpUTŲ]Ā_-¹nĆ0 †w?·“Aa?@ƒ^i (2ōXŗ²L[DI„ØyūŅN'Ō|Ņę1¹TUĶz]Į¾eČ#č™ ÄÄ!l w1čŹ͈µjgł½…&ą€¹#ŲtóųtŒRŪxzų—¾E^‚†ā=ؘ.L£0”OCÖŹ0D>”ī y4ŗ;N‹ļ}æŻ>wsŌĀ'ĪL&COY˜ŗ"ŲĆDāōFŁs,lQ‹ś¶™_8{æĆ1Ä)@ƒ)^€q\źJĘ+qV*ŸœéPČļ/×F)Ōš[ˆŚöu’ѶõŖ9cūó\ė/®ī«?PK .3|QšM¹‹˜Õ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ve_ZA.phpUTŲ]Ā_„TŪNŪ0¾ļSüwŖkµ[Ęƒ‚„Ö¢i­&mŠž$NlįŲĀ+ģeŲŻö2¼Éž8i”¦VĖż¾ƒO9|·ą‹^oŌļ÷ s.,äB2 qĘĪĮq§h­(•^cĮ†ŌŪ“ļ„ūpb*ød6ĪĮaŅ„ĒŠB톩.ŗÖsmQī„„T/j# īUR¤LY’T¹6%:”Õ’!喂U7¹8=»œ5TĮŸćč B ™°ĪˆÄ;–A%§ y·Ś›”‘PĢŽš6Ų÷ŽqmģA3_ż ĀLē®BĆČ¢WY‡½¹Ae%:6Ō¦Žą>Œ+¬ƒ$õ²»æŚ‚”aĪh Ö±a ‰)£1õƊ%Ū3ģ»$Ēć‹Oq<ŒFL é¢|ė}Q» 6‚·G]*¤'!Ē£étō…¾hŠWķ•Z9Ž”¢œ¶Vg4ńÜsŃĢīļn9ęXz^±PĮ2ĮCmĘińž¼ µs/+±š Ā5^]Ēī“„/Yvśę–‹up’ė7š€¹¬mź’{+®}“i5¶tīĮpē6ØbŁ9ģĢ…Øu4©ZęĀw6:łµp§»V«»Ī°^mͬŅd©•›zėĖÄK_霼.¹āQlŠųGįżŻÜ¢ņ-[!–œI|"½±ŌY+FŚĶš¹=œO­ļ5÷Ż-ŖŽó)[)Ō’rO¬ó8Ęŗø!n¢š²!~=č…¶ŃęZƒW†I‰dm¶æęhļäAJoĒ­½hī”$³6@Q¶C/Ę[s·N~£æ¢vćy¾K3Ę;Šw7\(ś%ķ"²:Ó­=ķ$т,Kéīo@¦žE »m#Ę[?\äēN·«¾\ĀųŸPśū^ķæéżPK .3|Q<š™ Ģé 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/vi.phpUTŲ]Ā_•VŻnŪ6¾÷Sœ;7™ēŌiŚ“^×,MR$[ H€ap ƒ–(‹ˆDz$]×Ųvµ§†ķv ƀ^ģŹ¾ŌŠ÷š›ģP¤%ŹĆ<Ō÷óĆ_=?ĘĆZmow·»p3K(`;$Rƒˆ@ĒNˆģ ŽŸ‚;2 Mäśƒ`^JF8\SÕgZĆó¾é~Į±+t3é G}%d(% b8‘lk <„„”+”䑐)ŃLš JšŪFǹßåÅÉŁõĶ™ •ē§c¢aL„LiÉś#MC3#‚¹+1’E”0OvĻTh|G:Rµż)¼’„g÷ł/ķ‡cJ _‹drG8掛_5›pE9M0/8K0ÕlšdZ‡/OįB•«HŖG’C§ųŌ'”Č:|žźķ@ŒøžĻOi½aAŅ+įļ[?¦óŁĻ–šC·Õ€ uÖ8M6†K×qÕqöžJ9QčYβbÕ3ŻuLé]ͧ÷¼- „fNYѬ8Ž· ÉŅ( ²w“R±€ĖA5„•Qõ½ĀĶc\HtĄę³_K¹/ōrƲ^Å-Ž1e—rĘŁT{óč1 ͜³¬YqD·ĶQ —²Ź~ó†Õg ź›ģ³”ÕB=?µ%ä@8P³÷³üųa>ū%XĄ‘i‹q…ƒVųGšJUd“ĄśOŗ-|Č¢Ø ßǼŖÓćZ‹é<ū;]Åz’čŪaIypŌ~żZ}ĀÉdēČŁI6 vŽ*¾Ŗ0÷JlųnDÖs6i Ć6 -R!å¢Ąk³¤!%l-§"‘S]\tŲ aOj;½ö“Ė?_Žŗ<ĻŪéb¼pć!m„* …NO÷®®ö¾Å§.PøĀ:ęŠėĀ*k# V“)Ų!> ųŸ®«9 xų‡īĢöŠV$„§‹Éģ䳉 Ģ€uGÄSęō­.©Å¬lä~SŸ&SčŲ“Šn„µN Qz)\(©›ā»Ż²ÖĻ”{–(·½.—)„’…ŒŚK£Sæ9®7 ~r^/ps ¹uS·— “ ĒŁūžżČ³<ū±g?ńģCĻ~źŁĻ<»õŠļųŹ­ż„${ “Kõ6~˜“±Żwķ#×øö±kŸøöеO]ū̶6l]żKŪDē³? 6»xŃé“ŅÖ?”ūo°č©ģżČsšOŸ¬ˆVŹ=¹Ī“³„ŚBm™¶H[āįjŒÅ-óæ#DL*m.ļžˆŹæ†Vyē›ļ–dPÓ+žŸ+Į_A§ŽĮń¼¦ĄHt?«ż PK .3|QÜ åīĖ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/vi_VN.phpUTŲ]Ā_-PŃNĆ0 |ĻWųm£Bķ0bŅ$“ą½JSw±Č’ĢqVń÷øO֝Ļw'ļ^²ĻĘtMc oO& :³e4x„½å!E„܏½`«ŚE¾ušĘd#œ± $»aÆQa’Ö„ėóæō=ńj4ÕĄ„üĖtń6ŽČa,§ÄW+”ā#ä€V¹;į¼Ž}œöĒó×q±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ńV‰śžpśģūvÓŻ©ÕlžĢPK .3|QNąė[2 briannesbitt-Carbon-d046377/src/Carbon/Lang/vo.phpUTŲ]Ā_µ“ĮnŌ0†ļyй„]„»Ż–RmQ+5=Š^PUYŽd²±6±ƒķl”wćʋu6Ž, ŌÜšå—ē›ßćĖgŸŖ¼ ‚ŁdĄra iŵ•Ķ.ø^*I”dĶW8„ÜmśAr_“ąīŠ,…µp¶Ün?KŚ*;MTy¾KżŖtwPV$ŖjµXåøL” JC%e¦tÉ­P2‚Ŗ@N±Ą¦óŻŽ\\ŻŻ_mźīgsn”įRa¬ĖŚb °9ŗ»QµN „ŻegF[k \kŽ2UĮ$MjmÄ4žØ…F`ģņęcÓp†rJ“ #x €VX*isĀĒsx ćć9’'Ɯ¼vņĘÉ©“·NŽ9yßÉüŲ‰;e~>EĆ*ĢäJŪ’]+ŚX–ŅJÓPˆć.ĒōLž®žRZ)­Q2õīŚk‘kgX$Ŗ–Z,v9aėœylƒĒѲŽ{KąĢēs|’2=܈Uļm|€3ĶazōK÷˜śg/»ĶéĆįÆŸUoͽ„3Ÿq75!égg³ ķ§*¤Ņdżv—b0QrܲĮu-ū#ŒqöóÓį‡ąPK .3|Q„HžĻķB3 briannesbitt-Carbon-d046377/src/Carbon/Lang/vun.phpUTŲ]Ā_„RĮnŪ0 ½ū+xs vķŗn]Ó¢ź XzŠĀm:ÖbIžD%šß‘å,A°ÓtłŽ3õąŪĻ]Ó%É|2I`ƍtPˁļNXS5ĀF3TnÅg¬=ČÆŹkųj„аBWH"ø-ķĶ­”YiŌ]”>Õ¾m”4]oå¦!ŗ‚V–Ø[źŚX%H=…®EĮŲNā>|÷²|x\­£Ā~Ō‚½pPIGVž°‚½¤†ŽŻoKd£*,;O,’·„µ¢Ļ-v­(‘ļŅ['wxeń·—!ĻĖy>KēØgœL:…·ų¤ ­¬$Ŗ>ŻĮ[źÉo ³é¶—\é^¦ļÓA¹GÜV¢wQłĶ+Ńɖ¬>4$Čū±Ń’ā:Ą÷m#”tAæüńŹøK›Ü5ĘŅhÖ 6DįŅzčtœGP™ĖQJź’¤Œ¦ęųp~°aĢv¬3Q6”øļģK†1=ĘŌöbm¼£P­±#TEćū–ĢP­ĢnčBy¾Ģy•J?¹ ršaŁż2Ķ«ļżxhOŸķµņ©E… œTøĻJ̬¶Üö²*EĆ Ū,/\¼ßžģĆģa ³SšÖŗœč†Ē’ •‹{R6čÜõ ¤Y|1üd‚®{=~t]½ifģöm]~qóXżPK .3|QśóĪ”˜5 briannesbitt-Carbon-d046377/src/Carbon/Lang/wa_BE.phpUTŲ]Ā_„T=oŪ0Żż+ø) \:„iš4NIPÄ]Š" NŅÉ¢-‘.IYõÖæ‘­K‡vč”-[õOśKz¤h%ja/ÕrļŻććAŅŃėe¾ ĘvĄŽē°LČ(.A[¦2fsdg c%©•,`†#ā:ś^²ĻŽh’]£‰…µģ(v剤RŁQ¢Źć@}«“ŹŖ¢`‰Z®µ˜å–LY!”†Ž”™Ņ%X”ä- ź­Ö~īņāģüzz?›ƒe5– cµˆ+‹)«…Ķ !ļFU:A:(õfĒī†nö“²¹ŅęŠåĻŲdNÖ§§g7ēģąbSŠ`?Ć č¦TŸ”äOƍŹüm¼”F[iÉ@kXsĖ¤˜TڈīiüT ŒóÉÅ ē£hŒrDKކģć€Ńµ×4{uZ¾}éŃd2¾ŗ 'zš¶ Q©¤ĶĆT” –’ūUó“t]•įJwEŁ|3ĘēææÜżś +-6¬C–Ī+ł˜hńÉ@­*c0Ą­(ć'°Jlso`ŁÜÆ:œÄ0ńUß67“w»1?G&Ė.8³.’K_‡óÖŻ¼šX­\ '.Šł.øƒ=“ī“q‘ĀśqM%Τ·V(™Špž™@½mN;h“Uó]Ü`IÉßŅż«ˆ2ˆo¤ƒpŠÜ(¹ÅJ!’S*ŚXNb\eÜéz½ē ż–äPW­“g½ZZ׉UI÷e6?Ö^Įh½¾}ųÉ+Š#”Ų<˜@¹¾}öq‘=Ų@Y );{õNų.n…=B:WĶĆF Żß6Łā9ż¤z0Vŗ3–oE€o ė’ž†ż•U¾5ģ;Pą»ZŽĮ„¾¦c*fŌźTĢ.ųNŪż—ƒ?PK .3|Qł/kØńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/wae.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ eˆIh>Ī•›ŗµ, ŽCµ·'ķ8Evžæd÷m¬Ŗf»­` _–ŒģŹQĀj Z”>ų²2'œØ.ŚE~cnįY=)õ¬ »~Ÿ|ƒÖ&œž„ÆAÖ 1;&ċšdŠąŲO„ŅAĪØüDGXvæLóź{?“ūćē~‰ZłŌ¢ĀŒ N*Üg„fV[n { Y •¢a…m–.Žoņaö0ЈŁ)Mk]NtÅcI…ŹE‹=)tīr Ņ,¾~2 A×½>ŗ®Ž43R×¾Õå7÷ÕPK .3|Qv—!…6 briannesbitt-Carbon-d046377/src/Carbon/Lang/wae_CH.phpUTŲ]Ā_„RMo1½ēWĢmŪ(BāTJi›4¢ØéDŖU+Æ3›5õŚĖŲŪUśørÄ•_ų_Ų^/iįT±æ™y~ļŁŽć7UQõzć~æ}XĀ@.$‚[+Ft¶@˜0Ź“r-~ĒÖ8r\O?ą‡pN‚)øF“ kį8óå©r„¶#®Ė“Hi By-%p]mH¬ L­@ ŽŹ8K•k*™Z  ’Č\ļ^`ö]]N.®^*ä³³Š0+a,‰¬¶ø‚FŲĀM\v£kāčŒV!ģ؟Šļ=«m”Éy<„& ,‰)#ƒ1,‘•PŹS{8lŽxDmM Ū¤„•dŻŹk2āæŌ‚Ņtzł>MGÉÕČ]o2€O=p_ŅŠ$šś$¶Bū*4’īĪēĆé4„įm»$„V¶ˆ»’wØ’ÓLŽjRbķŃ|÷Š£3÷R8Gń9€sŚm~Eö hZ“ū&Öæ¶Ū.e—»­j‡7» ”,Ҿž$öģ§!Sćī×ī£Ęœ]Č1ĘėĀÅ`]Ŗ˜ØĖ#Dē?~ āŻŠmŗkYŌŹ²ī2:ųQ^tm÷65/<ž‘ī(3-XŁ[<9”3ź\¢ETĀQ4*ž«Uŗ£ü—R.ČŲŌi„:O½l{§±ß’üŌWdX/½GÆÕžvG\»»ƒ9cŹ[ŽĒ Ń ”‚e#’\–>CżöšUļ7PK .3|Q’L(‹ńO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/wal.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ £H“Š0Ī•›ŗµ, ŽCµ·'ķ8Evžæd÷m¬Ŗf»­` 'Ė FvåŒ( aµ{”>ų²2gœØ.ŚE~gīįU=)õ¬ »~_|ƒÖ&\žž„ļAÖ 1;&Ä«šdŠąŲO„ŅA.ØüDGXvæLóźū8ģŪćW»D­|jQaĘ'ī³Ņ3«-7…=…,†JѰĀ6Ė ļ·?ū0{hÄ섦µ.'ŗį±¤Bå¢Åž” :w½i_ ?™… ėŽŸ]Woš]מźņ›ĒźPK .3|Q¬ŗ]ÉAĖ6 briannesbitt-Carbon-d046377/src/Carbon/Lang/wal_ET.phpUTŲ]Ā_½RKoÓ@¾ēWĢĶmTq…R M‹*µ=„*kcOāUoXÆ„7T„ģ89 ¤J<Ä«‚–?f’ ³ė8­©rą‚/»óķĢ÷ŲõźŻ~Я՚õz źš8ą1txˆ@kŸI¢*@Ų`²-"‚¼ÖÅõšö%oīKĪ"ŲĆøĶ•‚Õ¶)×#*…jx¢·6kŻŅu’0Oō‡’w,ņ!äF1IF!{Lq­@?DFŲ!ǁŪŁŽŲÜ{“iج?0ƒĻc%y;Qčƀ«€NČ{,é! łÖlÓ$4³÷ß2ūš<‚-)"ÅQ’Ē$ņ­>Š …ÆwBv-D•Č˜”lčJģ‡ĢCZ½DĘü—$>KøDpŻÖöC×m8MŒtĮĪ <­R§ˆ;pgmYxĒN«ÕÜŻm>”ĻY±‡ūÅāōČb0›rōųXNtžYē©Næ¹£'c}ŠéU(źōLgæm1zÆ'':ż¤ÓIqųFēgv7~Ndå.ĶKxōQ‰źBgÅĄ¹!ČĪuśVg§Ä\vHć»Ī'WŃW:ūVm̆9TĶåĘō(źļt•\‹]ʁĖ<°8P%M%DÅ{ÅõÜļńĄgĆłKŠmó‚ń' Ńti4{i Ń“ =µO3ė<Öék:œŸö;[d/tśõšVõv¬",–üg=ø.Ųćѐ#)WtÜ—±r¶©†Č¤Õ¾Yž!(¹Ļ±W2’@Ŗó_#iM įžņķŚPK .3|QŠÕ‰–ńN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/wo.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ cH“P Ī•›ŗµ, ŽCµ·'ķ8Evžæd÷m¬Ŗf»­` _–ŒģŹQĀj ö(}šeeĪ8Q]“‹üĪÜĆ«0zh)õ¬ »~_|ƒÖ&\žž„ļAÖ 1;&Ä«šdŠąŲO„ŅA.ØüDGXvæLóźū8īķé°D­|jQaĘ'ī³Ņ3«-7…=…,†JѰĀ6Ė ļ·?ū0{hÄ섦µ.'ŗį±¤Bå¢Åž” :w½i_ ?™… ėŽŽŸ]Woš9t§¶.æøy¬žPK .3|QšÅc0"5 briannesbitt-Carbon-d046377/src/Carbon/Lang/wo_SN.phpUTŲ]Ā_„TĮnŪ0 ½ū+xód)vĶŗ®[Ņ”’b@{¶"m:VbK†DĶĶmßŃ+%+©ģ6]D¾G=>ʐ/?µU›$“Ixؤ…RÖ¼·ĀčØBX“iÅP¾[œq­/“æ…/F wh3I—™OƧšf¹n®béWm‚PéźrŻŒÜVBP˕喪Ԧ$µšB[£`ģ·Ä.œ[}[ÜÜŻßx©ą*AŠ …“ddę č$Ṵw«É‘Įģ…ŸŠŸżģØŅĘĪ}üŽĒEXbęųnōs‚EeX0 hŒD™ĖŲ3^”p¦Ķ6$güL€WŚ;·)|¼ŠP€WIooēM“N‡Äż€™[;"{j¹œ­×³¼Fdd×¼`¹œĀyĮé<ųšóŽ«jŒ ū-m“¢*Ž•Z”:yų•b:å‰ł[³FėwŃY ĄÖuØś Fņsa³Ų’M&ŒĻōž“Ž±ŅŻ+Q ÉŲŠĘņW¤W[ŃPtō6 śˆ.ĘbóŲ7v<õź÷…8Ē/dĘÓb/_“T”‰Z=Xó3‰į“h°æ’ŻĪ5Ü Ń¹3õŃ,Ü#ŹGķØ5£^;—j¤ś/”RK–ŚčrćUƒŚūČF¼/ņ¬ĻČ>¬:é<×Nń§tųńF\÷üǤƒ)Ę.{ž{|¾żˆræ÷±°x"wź+’F¼•¬å±Ąb®U1.ąk™&’PK .3|Qū„øóN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/xh.phpUTŲ]Ā_-ÉNĆ0†ļyй*”<[)R%ŌĖ…K4q&ńØ®mĘcBß'ådĶų_>{sm¬Ŗf½®` – ģŹQĀj ¶(]šeeŽ8R]“³üŹ\Ɠ0z8PźX6Ż<>ų2­M8ŻżK_‚,ACvLˆgįŃ* ļĮ±!ŸJ„‚œP9ųˆŽ°ģ~˜¦Å÷ŗßīļ»9jįS‹ &č9©p—•z˜Xm¹)ģ)d1TŠś¶™_8{?żŃ‡ÉCOf§ 4.u9я%*-v¤lйó%@H³ųbųĪ,mū¼kŪzÕüŚöė±.æøŗ­žPK .3|Q4rĖ(Ŗn5 briannesbitt-Carbon-d046377/src/Carbon/Lang/xh_ZA.phpUTŲ]Ā_„TKoŪ0 ¾ēWčę¶čģŚm]פC‹6=,¹lCaŠ6c‘„DĪÆ%;ŁŅ!łłB‘ü”lłćēUµ Fq!ęY± ‰‚ć Œz!\…b &ӊKłJ26ĄĻņsqk”xF›‘sācŅÅ©vĆ\××=ō«6Qhᄹ^µ†ŹŹ P…”£²l©ŚŌąH«K±’\Ū6‘÷ō0¾{žŻ©8Ÿ«Ą‰¬(Č:C™wXˆ†\ÅžŻjord£"; ; Ü/ŽUŚŲ«°~'~ų-ˆ™^ø ņˆ^Ń^œĶ (+ĮįP›rø…s1i U(nŻ[QÄģƽ‚E+ƒĪ%ĄhSƒ+ 9r̽±“Į3ƒkOl—¦“‡oi:LF؆ü’Kńs ųIŗc°‰ųtŻ—bł)’Éd4Ž¾ó“\ĘęK’Z+Wõ¬[=]{Uz–Iįė śä±!UȘł¹­`KõŹo)ęcP[ʰCāŒ$Õ({">V°_Ļ+æŚ N-)g©ļšQ™j{^‚*÷ø°<œ7µüB\?5r;7>AįĆł]ėĶ%Š’‹PJa²e*ĢķĢŲ™Ū‘w@ŚĒĀĪĄĪ!ÆébLxgźŅŲ54ščiźRbgįŅ‹‰Šv^“bŻÄøoŽō˜k|ŗ[ć§"“—^nzŠz†å įiZ[”®ĒvīŽHƒŗ„Ŗ&Ć7›ĪzŲ¦ä’åōÜ1R…„HܛxѧµYÉnßYĖīn€×Žxą]€÷>ų ’ŖĮ&N÷9]ŠJ›ˆFÉ4rSö9ūKÖ’ŒĶԼʫĻ.½¦}r²WŅĖ_%.V˜=’*Ø£Ž ÷“Öµä`0Ą&»J6s?›%“ą_¶tńėķO­æPK .3|Q§‘©ńN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/yi.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ ې&”;Wnź6Ö²¤8Uߞ“棳ü’ķėhĒ¢ØĖ²€¾-GčŁäsDQ=Ø%Ų”“Į畹ā@UÖ.ņóļĀčįD±eUŲ¶Ėųęó“2įöņ/ż²õÉ90aœ…«€¾dž|Ģ•¾rCåąŸ`t„y÷Ė4­¾Ļćīp:–Ø•O-*L”ćØĀmRź`bµł&³ĒÄP.źVŲzyįā½ų«“‡ŽzLNAhXėR¤;KĢTn“Ų’²Aēę{€&ńŁš“XšfüjšjSĻÜ\ĪUžÅĶsńPK .3|QÓ;iÜ¢5 briannesbitt-Carbon-d046377/src/Carbon/Lang/yi_US.phpUTŲ]Ā_½TĮN1½ē+|[@iV½RJiJH€ŖŅ j‘ålœ¬Åf½õzIóihڤB( Z’žh/pØŌ戧cĒŁģR±pj±gęĶ›7³¶WžE~T*¹KK%“„Žų,FuPkD„D¼Ž¤OŃ:U‚Ė;$ Z¬†/x‹č…`$D»4®2)ŃJU›k!˜\V<Ž\µŠ—\¢zČćQ[°†/ k(` c(Ö¹hÉxXFQ@ ųŽm™¼ķ­õĶŻ½MMeōIŸHŌ"1Ŗ±X VM$­”“>D@{ĢįQ(T3b]Ż”Ī}žHŸ‹xYļ!_ŹhŁu[­V%i³ØĀEĆEÆH5ąh"?žĮ^k‚RAiĢė¦/C*ØLDˆˆ¤āQX½DÄģˆ.ś>a‚"Œ7¶^c\q\V`ÜN½-!ų9ӆc=]µ.ćŽ6gcĆŻŁq÷÷² L§ÉCéŪG Tgr­†ŖgÖp;źbņG«j”óž‚o¤¾™½ö^L~ƒ=P'6:P³@Ö0³?±ūģŖ ’gŖoVćG³0Jp!Ć|“yDĻÜdsP,äž8ĮÅ$éDó¾tg,µĀ(ĮłSˆļp1†ćżiĘąÄ¾;ŁNš…šģē§ęžõō NA÷ ¾hŠ‹©ĒĆ[ŃOĒ„¹üš@Ģć`~ŻĮā“Ņ_PK .3|Qēī”{–Ü 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/yo.phpUTŲ]Ā_}VĶnŪ8¾ū)ęę6MŲ“ū“u𐓇X‰aPe1–Hƒ¤źķņ}÷!zź+ō瘫^"o²ĆŃR$ÆŪē›o¾ކ~y¼ŹV£ŃŃĮĮąCʤ,§€æ+"5ˆtFį ‘‘ąø/ɂ>C¬?ŠƉd„Ć;Ŗ"¦5¼ŒĢćŸ…~‹āµ‡¾Ņ„ežC,VÉ™ĀČYL¹Ā<² š ~«œ\ūÄ茜]œæ9{wufج> k¢ aJK•š&°f:C jW¢”1Å@‰{d24¾ÓRgBŖ‰¹ o%įwßāOÜĀT‹œ," ӈ)±”ÖUR]J×#Ąk¼”DŽįÕkß’ž7)ė-‡I,J®Ē‡@ę;ȗēŌ’šÆ{\ Įuę<„*ėŖĒŲ „þ!ōšŅeØīżģ±ķNŸyy پ[üŌŪc€8Bņ”ƒ>nsY“z»Ä]ļ‘ī ČP†tKĮ8¶saueR¹-Ō¶qH݆öż®ŠĘ‚'>!2@ŽĘ< ÷ £_‡ĀłM4+(,Mķ՘S)Š9k‡įĢų`Ų'–¦Ų{JSöcZWœ ę’.čēU ÷čxrs£žpöųøć¢Eą{8L©oī°yŌ~¾BHŁ$r’ūŸŗŹÉ ¢Ćꁬnn( sÆ©]¾ųą³IQĄŌƒ½åjgš(õĄźl§§G——Gńź+\ā}sß.Įėö¢g>Řä”'~®“rT¤ §Ķī\ūĀg3Ąģ[9ż¬w8_Ź=øæĀ|0āĄ M#Æ8¼nĘvę ®ūŽ9Q­(¶©bŌ’ĒČķČ a>Ė•}/”IȄq’÷ę/‹ˆŹĪ¼õķ2¾2a·Ņ~a|VW’buØis$łõĆŚ0·p^WxBlÄ"fn±ōKĘIi¦ t)„__˜‘oļ×tM-©©?N±JzŅ$ĢKGj+³Žę¹ĀćKw•7¢óF.2ƒĘ–Ā Æ„Ī‹ėH ²ök2 ¾ūM%q晍ał¦·¾HēnÖŪEÉ=—Ū¹KŲ-˜¾ņIhę•¢zœ…%ФŗS/`8zI67ŃpØ~B h+÷K8Æw§żńüu\¬Ö~ź­Āl3Œ”Uh(Š#̤¾nj÷ĢEÖ q-ŪA-AšVHśžpśģūvÓŻ¹­Ų<™?PK .3|QōlIQņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/yue.phpUTŲ]Ā_-ĶNĆ0 Ēļ} ßj€ Ūh>ĪUšŗµ,)ŽCÕ·Ēķ8Evžædū8ŗ±(ź², „/G zņzކbāv†ŪteĻfĄJµ‹üĘŽĀ3“ pĀŌ’lŪe| :F©l¼<üK_"ÆA}ölg¦Į ˜Š'‹!ieč#_ŒP w0z4ŗū%œVßūqw8}–Ø•Oœ˜L‚Ž’0µY°ƒ‰Ä鍲§˜Ł¢u+l½¼pń~‡sˆS€{“½ć°Öå„W<ā¤T~t¦E!k¼ŸÆŒ’9Øį'#4ĶžųŃ4Õ¦ž36Æo•~ćę¾ųPK .3|Qw¦}©ė6 briannesbitt-Carbon-d046377/src/Carbon/Lang/yue_HK.phpUTŲ]Ā_½QMoŌ0½ļƘ[ŚÕn¶ĖGł*„ŠmEEŪpA؊œd’XMģ0vŗZN\*•ÆH­ŌGn æ§»æŪńŠ­ą†„/Ļ3óę½{ķA]ŌĪ Ūķ@ž\AĘKƒ5# 2] l2Š„0©äå®„/%Ėšˆ8°*ęZĆZlĆ aB©ĆDVėžŗ-É eMYB"ė ń¼ŠĄD %OP(c)2IÓ\ŠŌ%2“;ā8v}»;›[ū϶¬”›OLƘ)H¹ŅÄćFc c® S1³+ŁP‚Ę(uĆ솶÷a£ Iꮽ÷!nņ~^ņ8é—2a%Ŗ\4”¤Üµź†0"6‰ė’%h0iHń#\"|ÕpBˆ¢ŃĪÓ( ƒĮė"zü$4ļōąeĢ ŚT÷×}Ź„w]"xaĪōĒ÷½½ŁŁÉh4ūüRs‚ž#“TRčĀ+CĆ4źĮ5×=ŽšxÓćŖĒ[o{¼ćqø2æĢ‡NņŖi¤Ģcé’l=FߒlÕFdäXĆł"ń”cå¹¼x7żxŅŗæ·7ću°|Æó PK .3|QŃā·Ļ8 briannesbitt-Carbon-d046377/src/Carbon/Lang/yue_Hans.phpUTŲ]Ā_-PŃNĆ0 |ļWųm£Bķ0blbŚš„©»XdIp*ųz܊'ėĪ结wŁē¦éŪ¶><˜( čĢ–Ņāö–‡•rŸö‚jłÖŻĄ“pĘ2ģ†>F…I:—®÷’ŅcāÕhŖ!€Kł‡éāl!ĆX42N‰ÆV(Å[Č­r߄óz÷zŚĪļ‡Åjķ'Ž Ģ¶ĄHE˜†*8ĀLāu£ŻKŖģPƒĘµlß0JåŒ_•Į˜ēӛ1ݦ’õęÅĘŅé6wĶPK .3|QŲ'½Ļ8 briannesbitt-Carbon-d046377/src/Carbon/Lang/yue_Hant.phpUTŲ]Ā_-PŃNĆ0 |ļWųm£Bķ0blbŚš„©»XdIp*ųz܊'ėĪ结wŁē¦éŪ¶><˜( čĢ–Ņāö–‡•rŸö‚jłÖŻĄ“pĘ2ģ†>F…I:—®÷’ŅcāÕhŖ!€Kł‡éāl!ĆX42N‰ÆV(Å[Č­r߄óz÷zŚĪļ‡Åjķ'Ž Ģ¶ĄHE˜†*8ĀLāu£ŻKŖģPƒĘµlß0JåŒ_•Į˜ēӛ1ݦ’õęÅFéō ›»ęPK .3|QŲädēņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/yuw.phpUTŲ]Ā_-ŪNĆ0 †ļū¾TØ}&@lMBāp]„©ŪXĖ’ā8T}{܎«ČĪų’ķćčĘ¢ØĖ²€¾%čÉ#č9ˆ=ˆCŲncŠ•=›+Õ.ņ{ ĻL&Ą SK"°m—ń)脲ńņš/}‰¼õŁ{°qœ™'`Bž,†¤•”|1B1ÜĮčŃčī—pZ}oĒŻįōyX¢V>qF`2 :JĀŌfĮ&§7Źžbf‹ZŌ­°õņĀÅūĪ!N:ģMöŒĆZ—^ńˆ“RłŃ™…¬ń~¾0J꠆ŸLŒŠ4ūćGÓT›zĪSóžZé7nī‹?PK .3|QĖ>”ģŚ6 briannesbitt-Carbon-d046377/src/Carbon/Lang/yuw_PG.phpUTŲ]Ā_„RĮn›@½ós#±\[½¶iš6NUKIM/Q”˜xŁ„³‹ż0’€¬Ė‰¬ōV.3ļķĢ{o‹ĻMÕDŃz±ˆ`?+¶P°"šµAq` pĮ5Jj“§²–“ņ³ĆųYv_…QĆ=Ł”ƒ‹t€WŚCćV™©/§ŃoF‚PŃ*™izį²r€:Åiė-ua¤FĒF/”Q„žŪ3uaļv{}s’p3H…|®BZČŁ:į“u”CĒ®ņ'>»5­däņv=ÜpŲżŅŗŹˆż0ōļ`ūź…˜“ļ÷¶!ܑXųŽZc({“=čV—FƔÉPńŸ°wUÖČjøi°r­h@ģ”FaF¾f­X/|&ō»e!H’ĶöG’¬ā5é•’ń~EąŸx dcųt9Q¾ D¼Ł¬ļī֏ń2=%®vÕ“?“nQŲKĘ„s[£ 5Ā*` ōs«Ē¢0ąć”lĆ „ĘQāHīœ[}¢ F ü{p X‚§éįŒ‹ĀWĮ<ąXæī'xi1ōÄņ‡Œ/1;qśØ„žˆ‰$ЇIB<tŃg Č" f”»ĢbLŅ€!œŻƒ\öĮ‘“;žéiēł‹Ž ’ń±~ĄĄ(  B”Ō2b}®į±S<$!äŽ"lKd(lYŚææO’|Ś9퀔ąa$q²!ÉĄYšOs ҁf;Ä́"ŸłĒb}#žüb½āĖ·F9±” øjŽWTAwKvw–ńMŠ3Ö÷ø–ŅžZ>>7D®øČ§Ūœ,įo½)ņww¢JŻ`vāF¾ņāęi~ļUüųJ'-ŸÄ^łāßQ޾݁ĘFæŸĖ³Ņ‡ŠX‘ćjᒁ}ä7’VōłÉńt I0¢•omĶÄUNœ·dvuļŹē7ģĀ4ŹųłÆF­š~£ ä:ņ”ną6£ś]I9e}„@aˆ3_T­O}”¤Ę¾el–bżE•²Ęāė\tW¹ƒ ¬+ó™oh3”B­Œ N»é6D3Ø[LČÕiW;× ä/č¢6bˆPŪžV²äĖņ°åĒšö¼č#Rt ¼€oīŽaūåKś _·”—½C#ŗŁ;thʐņģŖ¾äNåņS½A½oŪn§S†SLˆ] х_ä³ŖEÖ9Ó;ŻØ=©¦xĖ÷MŽtėæv¦)7ŻT!×·ęEę…<€įˆĒ Y+-)½–V|×=C”q§ÆƒÄ: 3Š6RLŸwų­j޽č[¹tq0‹lT>qQj†QŖ)BŠOžŁ³vš–ŲRńĀŅ“)u”JutŌ:9iżŹ?ŽRkĮ ’€ŖŗŖU÷ńŲ…=/³ ƒ„ē_Ī1Vz4Hį‘īˆ3Ó½`{fųĻ›sĄĖ`9ĻąV±ŅŪ¹ĖąóʖŸÕĄ’€VyݳTĒ.ĢŖģ+ł—S”¼”DÕ‹ tZ¶Å±W·”÷N„ šrΚŗsoĖ«O\j@JÕ-ęLt‹¦aÓ5+”kywŠ®ż³Č/µčRŃŖä²ČWė‰DĶ%Ć܆”#—©įkZ½×?>+éorqe²ø’ė…8¤+ćGĮOB-ĆTš©„/kį©{ēė܂t)Ÿé™_§Nœ"8é;‰;);™:i:y99)˜˜ÅÄÉ/Ļķ6Īōp¦‚ųØ8Ģ=µ„3ūEķbE—.Vˆ–µęv(Ä ~]*ü€½2›V“™›’ŒCÕµžž/Ē1"T¼ Ę]o’#|·Ū…\„V¬Ģß;Jų?Ó2hī†?b„ĀÅł÷æPK .3|Qp‹R}„2 briannesbitt-Carbon-d046377/src/Carbon/Lang/zh.phpUTŲ]Ā_mQ½NĆ0Žó·„­J#Ń­üCA­Ōv H!9‰Mģp¶)ed@¼ +oĄĀƁ“0“Ø·ų¾Ÿū±½{PˆĀó‚V˃\Ō0̃; FŌ ŒąpĀ(RŅQńœ„¼ć¼„½7ᘐI˜p”1°•šP:ØL'VłžŸõLQÕhf³ bU, Sa€É2Œ¹Ōn¤œ)Ź™A%ŪPdœ9īł¢Ŗ ON'ÓÓ²UµŸĢĄ‚iHPĀČžĄpŠŪ]+K1wƒ’jŁ ¼aY{dP¤{e¾–°Īō2¶ĢØDjŽ ēJ޲šY”i.1ːåpÅd E–lw»ĶjqcI#bĖ0ē”ņń;‹Ä! ūĆó0ģųĮ£LźŽūæ ×øšė'Š>ģķ’Q=ŗØ0čå¹ß^¦+JOė5±–®\ćqŠļƉ+ź×ēĒųūķ„’żś¾nŁģ#?OŸyžõņüĻæ¹ q±”č¦ķŻ4w¼_PK .3|QDɳ¤½5 briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_CN.phpUTŲ]Ā_mQ½nŪ0Žõ·)1 čč¦im+ķĘź,i“t ‹¤z¤j8c†"oŠ„kŃ9@—Ģķ«$}ž$°ŪÜ źū¹?ņųu)Ė ˆ::p)•ƒ„*ų,y°Kša$ha SéJäŲcom?HaHJø@·PŽĆń¢†o Cė{©Õ'[뙄¦Š²* Hm¹!•KĀdP؍ć–fiI ƬéBY `ī“Āu“w>^ĢOėRĶ|^ kį SĪ“ZT3X+/YįŁ­(En”5ĆFõ†uī ņŅ’ė×’G ­Yį&µ¦…g$ĢĻļ–Ó‡-1Ž—~+üĶѐģzk›#I^yPŠMöė~KĪo?µŅøæÕ¦1Lœą s-~Ę֟¼…#IÜhŒŗl±ćš+tłźE3/”ÆČ€ ›D#åx@ų±R„$ńä]’ōĀčFöųõĀ.|€#lļĻ…šźdK5ōłeƄćq_ė°»+Ģw”¾s{b+]qD³YĒ{āŽśųšcöōõ.~śņmßņ¼g ß>hżx÷ł÷óöŒćæ”ėnp}ų2ųPK .3|Qz±ēļŅ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_HK.phpUTŲ]Ā_-PŃNĆ0 |ĻWųmP”ö˜1†6ö¼Gnź.]‡ ¾ž“āÉŗółīäķ}ņɘ®i 4šį9ĆČA E!Ž ž`‡ŅĒP)÷‰gj«v‘_¹kxĘ'Ź=«Ā¶_ąCØ0jėāåī_śe5Ė4‹éGųģ0 0±£kd£\P9†Ha徙ęõīõøŪŸŽ÷‹ÕŚO=*̘aą¬Ā}Q`fõuS»ēXÄQ Ö²1BZ$€ŠWa!°öéųfm»é~½=`P{xiė+6·ęPK .3|Q`YĀfą 7 briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_Hans.phpUTŲ]Ā_WŻNG¾÷SĢ’ņg’¦‰CŅL É ‘¢ YÖxw–±;c͌qŻ©U•R m„iØčE«VH©TU$½l;ź[ōĢīģz×,Ę{33ē|ē;?3{vvęĆŗ[Ļå&GGsh=p©Dõ‚±Ž…BÜAŹ%h‹g ²Öš*™¬†[#hVPĢŠ}"kT)4SÓĖ,¹š°øŪ@ļr9 ĻCÆ·]uĀĢFµ“ą’9\ųXQĪĘPŻ#dė”4»ņāÜüżåyMħ\¬PKdS©­5±Q“*4»ä apdĮNź µķ†r¹E=G>gk¤eq.ļ ĢžyÉĮ|6|‚%$}«ĻĒgoŲ=ΤĀLQ¦§d=”ι ĖŲ—ĖDøP—;uܲ’żĆX~ŒE •¹!/”E‰” 2I°@üzø–`æF䟌tø.aF‰0Ņ`«hŲĘlś#Ar‚؆`h%‡ąÉ·ytė6Ź-Ž`ŖČėŗ¦Ų—°¤żęĻü˜Aƒ2)·ōģō·ĪįfŒŁ$d­_?ĒČĮ`6ī›Ń/Æbą`0NQ?äėļ:ūÅą‘>ep\ūĮ7æłļŁQ>0V8Ķż²{÷ņY„ÅÕ$śQa£żägPQ)Œ-2gå2s9 —Un€Šś¤½µ)Įż*ćͤöūŻŲĢQDd«jśÉ&µ©ćtIßķ¾n§tŠĒ‡äģļ§É#”µ-"ĮmŒč÷"÷¹‘ƒĪĮn¶Æ°.į»ˆĖBšĀBŃ÷ Ö(–š¢”)eØśžÉ„„ÉR)„LhįE]‚—ŖŌŁ’5 ÉĘ óa\µįIĮ+&Q {„٦Ė$2•Ų'„Øx+a}+~Ā#Ÿ©.$¬_äaÜVĪNæ­čHŅ ĖĻńy Iń<ĶąŃ!Ļ{ҧrO¢\Ųu tĢŅg ±†_#b Չ ÜAbB ß ĖĢy•~,żQƒöS̐–²„„^¹~LĒ7‘Läõęß̰^Ä:r–m33ž‡0ź–œf“‰ƒžŗĢ“k“Ģ6¢Å“)ń{7B7hŲ†°”&k=¤ūŗ…|> SSč½ŲõB  3čŚŌTļn™ąņķ'Ūēɔ62n\ĢŠŁēļR†BįŹ…`ßŽŁ¼œbŗÅÉ@×/NŽĘ^Š\/¦óüĒn²ńźK„鍡ņep¾·ŪŃģtĖĢŚ/^ÄŚ½Höų$Ę}Ė~do~Šd;_ug]7zzŖ¤ā©Jø*UĮ€§ĶxŌWĶų¾ƙń3^7ć 3¦¢IÄX˜NŗÖ÷ųĘDÅču‚öĢO,Žn'5[Ż* ŪKhŸœs—Ź^Qćfʝž…¾Ł–™/v/’eńG••¼”6¼†4b é"®‘C…TU Ŗr§_ ŻĖ–‡ ­Õ«ų®{Õ <ų{9“ņŹĶÜ’PK .3|QŃā·Ļ: briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_Hans_HK.phpUTŲ]Ā_-PŃNĆ0 |ļWųm£Bķ0blbŚš„©»XdIp*ųz܊'ėĪ结wŁē¦éŪ¶><˜( čĢ–Ņāö–‡•rŸö‚jłÖŻĄ“pĘ2ģ†>F…I:—®÷’ŅcāÕhŖ!€Kł‡éāl!ĆX42N‰ÆV(Å[Č­r߄óz÷zŚĪļ‡Åjķ'Ž Ģ¶ĄHE˜†*8ĀLāu£ŻKŖģPƒĘµlß0JåŒ_•Į˜ēӛ1ݦ’õęÅĘŅé6wĶPK .3|QŃā·Ļ: briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_Hans_MO.phpUTŲ]Ā_-PŃNĆ0 |ļWųm£Bķ0blbŚš„©»XdIp*ųz܊'ėĪ结wŁē¦éŪ¶><˜( čĢ–Ņāö–‡•rŸö‚jłÖŻĄ“pĘ2ģ†>F…I:—®÷’ŅcāÕhŖ!€Kł‡éāl!ĆX42N‰ÆV(Å[Č­r߄óz÷zŚĪļ‡Åjķ'Ž Ģ¶ĄHE˜†*8ĀLāu£ŻKŖģPƒĘµlß0JåŒ_•Į˜ēӛ1ݦ’õęÅĘŅé6wĶPK .3|QŃā·Ļ: briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_Hans_SG.phpUTŲ]Ā_-PŃNĆ0 |ļWųm£Bķ0blbŚš„©»XdIp*ųz܊'ėĪ结wŁē¦éŪ¶><˜( čĢ–Ņāö–‡•rŸö‚jłÖŻĄ“pĘ2ģ†>F…I:—®÷’ŅcāÕhŖ!€Kł‡éāl!ĆX42N‰ÆV(Å[Č­r߄óz÷zŚĪļ‡Åjķ'Ž Ģ¶ĄHE˜†*8ĀLāu£ŻKŖģPƒĘµlß0JåŒ_•Į˜ēӛ1ݦ’õęÅĘŅé6wĶPK .3|Q…-Јmź 7 briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_Hant.phpUTŲ]Ā_—ĻoŪ6Ēļž+xą$Ķ;ķŗÖM»%qŗdMzIb0 ƒ–(‹ˆD$]Ļėdŗ%m²nC€&k†^64Å`vh: —ķO©]ōæŲ£Dɲ£8օä{~E?ѳŸŌŻz&3=>žAćčžK%rØG“u,āR.A XT9“µŽkd XZch^PĢŠ]"«T)4[ÕĆO ¹š²øĖ ·¹„œ†ē!‹×[‚Ö\…0³‘G-Ā$„d>V”³ T÷ŪJšĮ¼•å…Å»k‹Z*XŸr±BM,‘M„“ŚPÄFMŖ\šĄŚ%o‹@ ;Xģ“ĪPĻk(— YŠżI4gc?ģłœ­“–ÅY8¼-0ū÷%”łŠš9–ž¬¾šœ¼i°W²‰¬įĀ^ĢÕqĖžļµa>Ć¢…Vø‘)¢e‰aeR`‰ųõp¼hŪ”„Ż;ĖŰ#AsČŚśL8.bF‰SIƒÕŠØŁźI ¢‚”RĮ“m,²čę-”-X¼ĮT×õŽboRĀ{$퓿³†ƒMRī tóIēp+¦ ¬IČśņĆęė˜³ńĄt~ƒĆa.„Aä_O;ßĘšŠ¤OœŁAųÖ÷~ŚOąC³’ĄA”Żū—æD,®$釳öÉ)øæ.ē'–™Sŗhŗ2JPQŸ“·w#‡#ø_a¼™ōžīÄÓEDŗ«J XtQ›:NWōżÓÓöįQOńų¼ūēqņHho‹Hż£~BqŸ č쒘ĀīKųC Ģ+÷Bxi©ąū†5޵„§ e3t}Ļōźźt±ŲćLxįWŗ ?ŖbēŁ½H:ƒĪ.ć<Ō†§/›D-ģf›“ČTbŸ£Ķ+…ū[F"#_Ŗ.n`s?.„wož”ƒµōR–=JG)JšéQzœ¦¤×½čIs¦Vś²å¦p²§Ó`–>čht„5ü*h¤Nåöz JųY.0g]ś±ōē jP!ÅZL·ūķś15߬d*«OĄ”Ł«ĆĢ…²œ6·™ŗžūC(¶>źS“‰ƒžŗhjwŅFŠŪˆź l&|#żž”«4¼†°Ŗ&÷zDt|@󹺁Ż(Ō‘EWs¹ž·e—m’°Ó9H¦“‘Ŗpż|…γWp/TČē/Ÿ+óŪ»[KĢ ’8JāŚł‰Ą²_"ÓĻt~ķ&æB}0T6ƒĖč½Ż‰zo¶MÆżüyģŻ‹lŽcī»Ųögd;ł-²ķ~ÓķuĆčA©Ü³žŠ„‹”2«ŹxĘ“—M{Å“™öŖi?6ķ5Ó^7m>u"ÅüL2“¾üĄ‡&ŚŒĪž‹Īį‹ †#3€…'ow’žķī6*‰ķ%<ŽĻ„ėÉ®N&"ōL8Ż c¶mÓ3Qļ^dKӏn+„¬‘6ŗFŌ(9£•rؐŖRīTāb¾{ĆÓöŅ^=Šo»W åĮƒ°–C)/ßČüPK .3|QŲ'½Ļ: briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_Hant_HK.phpUTŲ]Ā_-PŃNĆ0 |ļWųm£Bķ0blbŚš„©»XdIp*ųz܊'ėĪ结wŁē¦éŪ¶><˜( čĢ–Ņāö–‡•rŸö‚jłÖŻĄ“pĘ2ģ†>F…I:—®÷’ŅcāÕhŖ!€Kł‡éāl!ĆX42N‰ÆV(Å[Č­r߄óz÷zŚĪļ‡Åjķ'Ž Ģ¶ĄHE˜†*8ĀLāu£ŻKŖģPƒĘµlß0JåŒ_•Į˜ēӛ1ݦ’õęÅFéō ›»ęPK .3|QŲ'½Ļ: briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_Hant_MO.phpUTŲ]Ā_-PŃNĆ0 |ļWųm£Bķ0blbŚš„©»XdIp*ųz܊'ėĪ结wŁē¦éŪ¶><˜( čĢ–Ņāö–‡•rŸö‚jłÖŻĄ“pĘ2ģ†>F…I:—®÷’ŅcāÕhŖ!€Kł‡éāl!ĆX42N‰ÆV(Å[Č­r߄óz÷zŚĪļ‡Åjķ'Ž Ģ¶ĄHE˜†*8ĀLāu£ŻKŖģPƒĘµlß0JåŒ_•Į˜ēӛ1ݦ’õęÅFéō ›»ęPK .3|QŲ'½Ļ: briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_Hant_TW.phpUTŲ]Ā_-PŃNĆ0 |ļWųm£Bķ0blbŚš„©»XdIp*ųz܊'ėĪ结wŁē¦éŪ¶><˜( čĢ–Ņāö–‡•rŸö‚jłÖŻĄ“pĘ2ģ†>F…I:—®÷’ŅcāÕhŖ!€Kł‡éāl!ĆX42N‰ÆV(Å[Č­r߄óz÷zŚĪļ‡Åjķ'Ž Ģ¶ĄHE˜†*8ĀLāu£ŻKŖģPƒĘµlß0JåŒ_•Į˜ēӛ1ݦ’õęÅFéō ›»ęPK .3|Q”^dL$5 briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_MO.phpUTŲ]Ā_-PĖNĆ0¼ē+ö–¶*©Ä±”ņh‹Ø@=7„¢³©­ŗvXÆ[•@ü$’“āĖάggĒžŻ“ŗĶ²Éh”ĮŽ“ ŠKj‹,ąM°@®¼K-µĆ-IŪÉj÷lŠĮ†BeD`VuōÖ%ź„P~?’—>xīšh-(ߞŲlµŗ¬QäBZéĻ{ćŻZK˜zCĒ~īy½Xm^WUŸO4 1@m‚°©¢P G#:ݤģĮGV”Õ}ŲI÷Ānö.Šö¦¾AŽī@֚3_Õµ”3|Z/Ļ ht; ŪŻeļĆ$‘ 3žJ¦Ö¢¢TUä`4`śŒ† Źr¹~)Ė"Ÿ|éņé›ó1¼gNŽēp=‡|*fOæ?ßł8ū^ePK .3|QĆū%Ū.5 briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_SG.phpUTŲ]Ā_ĶQ=O1ķ÷WL·pŗ„M!ܑč$Ž"¤AZy}Ž]‹={3örZŖDRH‡DT©"ŗĄļū™õł>PŅ„‰ϼ™yļy¼öŖČŠ č44ą}& $2@wĮŠ‚NĄfŗ c­ā,mź­ŪWų*l¢d v„‰„µ°×醢TŪ6×£ußśF£#JŹ<®‹ ešY`j¹äB’T‰Ę³R«&¹`„J1vsŪżīÖĪīVMåüٌY3Ci,Źø“bci3Ŗw£K䂄†Īl§~a=ūŗ“™Fó¼Ž[ŠßĄŪ\Ē,—GNŗBYõ«»zT+ƚ°ĒȖ†]Ų1C2Ćb„`tā2m„¹Œy+לåĀl¤ŖlkL0 [¢†ČŖE‘3.čę%y(VP|,%QFQÆ’.ŠŚaē(kӗ„MųŌģįt)&„—ėrš¶Ā=:wæƒÉÕ×^orž#lŗžżéŽ“²™n?QQ‡÷§³čöÄG——óźŁ ;¾™÷}™c?gŲŻ÷öķó"ZČŌÉTé©ŸČŠ/Ų’ĒÕXˆƒ!«f{š\\O®®Ż2Į'4½”ÜŸ.WN ¹]n;[Ŗßü!÷d ^Ī y Oīi=į_©FRż‘D:‰‰ĘF5kU‚”c}Ö öW_æPK .3|Q{$ŽÓ5 briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_TW.phpUTŲ]Ā_-PŃNĆ0 |ĻWųmP”ö˜1†˜„ö“xŒÜŌ],ŗ$8|=iœuēóŻÉŪūä“1]Óhąä9ĆČA E!Ž ž`‡ŅĒP)÷‰gj«v‘_¹kxĘGŹ=«Ā¶_ąCØ0jėāåī_śe5Ė4‹éGųģ0 0±£kd£\P9†Ha徙ęõīõ°Ūß÷‹ÕŚO=*̘aą¬Ā}Q`fõuS»ēXÄQ Ö²1BZ$€ŠWa!°öéšfm»é~½}Į öōŃÖWlnĶPK .3|QŌ>ž1IŲ6 briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_YUE.phpUTŲ]Ā_-QĻOó0 ½÷Æš­0µŻß IŒpAUnę¶YŅĻq˜Ę_ČÅń³żŽsr~5SQ,‹š:ڽu'dŠƒŒ+ä.x…Ģ'ŌhļÜ~bNį–-zx¢ŲY8ļęōŚk¤1ał×z8õÉ90a:²Fō;p֐*éūĄ{|“#TģĖŅ!Ļ=nVwO/w3Uö'# 0ĀĪFaŪ%”¬ŒZQļ1$6¤B»lv9o8ĻŽ$dzł^Ćęv .tčģwօy!ž·^…żDBŽ+xCµą%ōr@V3ŲV„ §KC=8Ū™ŚƒŽāõąSxČĀL’Ų2ć±ešŅhGūE'L’“Uʶ]ožŪ¶)—ßc£_RVš^Ģģåļ£Ä..’  ?f |ÓSo·õz]V¹ųQ§’ŠPK .3|QÜģü1óN2 briannesbitt-Carbon-d046377/src/Carbon/Lang/zu.phpUTŲ]Ā_-ÉNĆ0†ļyй*”<[)R%ŌĖ…K4q&ńØ®mĘc¢ņō8)'kĘ’ņŁ›ūhcU5ėukų°œ``GPΈ¢PK°Eé‚/+sÄ‘ź¢åWęž„ŃƁRĒŖ°éęńĮ—1hmĀéī_śd ²s`B< V}Ž łT*ż䄬Įß@t„e÷Ć4-¾×żvwxßĶQ ŸZT˜0AĻI…»¬ŌĆÄjĖMaO!‹”RŌ/°ĶüĀŁūé>Lz0;”q©Ė‰.x,©P¹h±#eƒĪ/BšÅĆwf!hŪēż[ŪÖ«ę7·_ułÅÕmõPK .3|QŲ§4lœ45 briannesbitt-Carbon-d046377/src/Carbon/Lang/zu_ZA.phpUTŲ]Ā_„TMOŪ@½ēWģĶ€B¢^)„|T”RĆ„­ŠjlOģUģ]³XĪÆg¼»$„A„ś²3ć·ļ½ŁūōkS6£ŃōčhĎŲc) [Š ­ hĖŌ’ŁŁčTI*e+(pBŲ~²K-@²4©°–¦}z.)Uv’©ś,Bo”öDKWU,SM§EQZ2g•ČP’”K„k°BÉ1k*Ŗ½lż¾ūŪ«ė‡ÅuOåżŁ,kĮ°\«Eź,ꬶ¤7äŻ(§3$”ܛöö{/œ-•6'}|Ģ~¹5°…ZŚ4’E's/Ļ5HSÅ‰ŅÅd ‡lÖB'‘]©w,÷ٹż ę„4Z§%­”ć› 2¤5sڈ<ŠųģÉq>»żĮł$™¢œŠ%$cö{ÄčIĀ1˜„}9‹%_¾÷…d6›Īēӟō$c’ņ),I­¤-ć®ä¤£®±&7˜źM2Sśąŗ)5V”†_k”rQ€±>Z`C÷P§Š'ßWtŒ!|P/oՙ0>|oˆ:q»µE/ŃItMDŃ@TŗQ3źm“ZÄUŻ[ūbAŚŖ¹¹Quź*· é}‹F¤"4²~–J·Ķ%nć²¢ƒ <ųH±R;’ļ$]ߋńj—Ā7ńX†&„÷­ņńķRÕł""įjɗBĖ{Ö>ė“gż4Ų¦’¬Z$ĶVĄPīų$£ÆĄĘÉJŗ! ą螘ˆ€ė' R“CZBÄø=䀬ZØĮōB? ŅvųŗĶœ·)°]ŗ|/ųž+éĒPä‰ę>2_īEßGÆIHśóœ,čī×nķ>’·Įž7 ųĀ€5˜)ĻMx\ ņĆ5C@Ą>~½PK .3|QxKž54b3 briannesbitt-Carbon-d046377/src/Carbon/Language.phpUTŲ]Ā_ÕYmoāFžĪÆŲFH6)Ž}L.įŚä®ā„RRõCE‹Y°{fķ¦włļ}±½¶±1$—R…`fĒĻ<óģ̬ónūq§3<>ī cō«p“ B‚ą=ĘL h‰„OŠ%fóˆĀ%ļ3^‘ŲJs×딟X€)ŗ!|ŽĶåĒ÷>FbąEė cś1bŹŃ2 CäEń# V¾@˜.Px„rø%]FlEŃ>ŠC‚įŚ}@Ōŗėń凛»Ņ•Ā'|,ŠęhpĮ‚y"Č=‡o;ęøŃBv(^šÓPĪ:üā½#€9 žĮóĄe/Ĝ£kLW „Š‚5@Y*xÅøó„ƒą„ø“Æcōž3„ƏęŹP½Ē,ē¹€ų<Ō {~#qĮ]÷uÄČ ųjt#ł”«?Ż`±×2ÉlćĀÆ2]·Ģ@&b:ģ=xėŅż™ā‘¤yƵ²uO¬åq2ŻĆv ž<šĶ„Uō3(ŹöžĄŲf:bD$ŒnŅÆV‹Łō™hpŗe‰ØhĆÓÓR)\ca3ņW0²¼ßĪfgx q sčŠ5œ3‹„ģOCė³Ł2īŁ\?[ų²Ėi-[¶Q=W)šÖLKy=OŠY}dŠ‘j yqAб!egĘ2ŖVD(nļŌ².Qf6 ŻÄ”żŖT:B%׉UiŌ–Tö c‚sŠł…]˜śUĖ<ōfćiSløuÄß*S®„ĮģP¢0ņ0Ģ"ć«:®75…*Łć…dڲżRƒPöźķšT 7{Č <"ōhx“dGĻz)[H;Øz>Ų6-÷ 4O<_JŲ{d!ŌA›įn˜Ŗ˜Ó7°G-pg“I{č)źK˜iCøżšDł‚Š„ŗėį«ŽVjēēČŌ)oLƒĮQ7W„:]Xė/ ½±ŠķΰéĀöAD śȽU¾ŪŹ"7[c–Å-Ķ”ĒKƒDÖł_ ~³46…€FČMėqÖ'U• WzčԚ¬šć#]ĒwædĮ**žWw>½Ǻ'Ō–»)™žQӖŅÖyž^ČūŻ$k=mFv ŲĢŹ™i¶“Ēk”żŚm#)0†§„”–I~Hø,±S ½xš)לéü$ÆdžnĶģČLõ!¼ÜŪ$’&kó­ņŸOµ“I61mT5V“›ņÓ]³ö㫨ünŪ$bŃV]Ü(”"A•Óėnrхū”ń® ŪŖ‚:īr\Ø%ÕpĄÉZ’?®Z ēź>œ]įdbj½mēģ+ģŽ;c3öĀoBN«žŹåŁ×ŽL7 Tw‡ŽčgŲÄ8Ž!Fłx­ŸMXMVĻÖĻį b”¦2ułs€Œ<»óZĻO¬ē™ia€«Ł:Ź0äĄķf}ŚA®30Nρ&ģ8Ņ"½Ujb>ē6»¦EļļĆŹŒÖē!$ĒŽ)ƝŸlš:ØÜ˜zÉ)”ó’$;‡øyņ(9z½MōĶžŌĢf"ŗSf&«}įžĻ›ćŸÖ?»H‹€Kå ž©ó/PK .3|Q/ briannesbitt-Carbon-d046377/src/Carbon/Laravel/UTŲ]Ā_PK .3|Q/F¢—xŚB briannesbitt-Carbon-d046377/src/Carbon/Laravel/ServiceProvider.phpUTŲ]Ā_UMoŪ0 ½ūWp@PŪ@Ó†]’.=t+P Šu;-Ć ĖJ-Ą– IĪZ¬łļ£$Ū ²łÅā#łōDŅW×eV Ó%” nˆJ¤ŲŽEö,_A„ŪM欧[wEQ’älĪ& S{’Ļ˜˜ā2õ†»<Æ .ˆaŪ)Œ"Ōčķē=ø|āČĶŠŒ) ŗ·8‰0ń{ į–#°ĒŖ,„25_›½3ö՘q¹%”¤ Ią¦}Ė”üķU hN“†GT†Sö äž§x:öl˜H5lgā°ĮŸš)«$ēv• †#ĆDJÅĪäöY˜Œėå¦*S x/)ÉY#‰ĘĪw½«A¤,—›DV"BęD ćøĖ>Š™Jįɛ÷Cj”=Mųč³v …Ö\¦MŠŸ#65„ėŃEu” „z¹É¹F #§ļ/öŒo: {rŽŚ£«US^ļNœ4Œįž+s·sA3"žpė¼»Ž({óQ#˘v_²éõQ‡øÆwOõq ƒŒ+EܜAĮL&ÓF¬Īvį3>’Ó„ē¶üBl?”sb¤ {ü^›Č•S„(ß>«•nµŪÓN—SĄ~¦œ¶LóŲA9Ŗi<V+gž”äwŒÓįHF;BŽŹbŌĖ\M)œØæ÷Dżż4śź¦Ćz¾Üćē8µmQ;ɰļęJśņ¾`)ÖSÓĻ:.\+ąbIĮΆ?­Ą{²=®&Åm³2–²vRAżƒ+ųpńØ,p„š„ēܼ ¢+i5Ö©I03uøŠ†ģßQJ? ”µCóGī`dpŌ××yŸ’†wŸB¶CšPK .3|Q, briannesbitt-Carbon-d046377/src/Carbon/List/UTŲ]Ā_PK .3|QŌ '~ąs9 briannesbitt-Carbon-d046377/src/Carbon/List/languages.phpUTŲ]Ā_„][oG–~÷ÆØ7'3v€3;»‘|S(É^“¶'Ł™‡"Yź.±ŁM÷… ł¤K;¾dģxĆ#Ū²dĖ7]cY²lĄ“˜Į" d,%@ŠtA`ģž‡=ՒŠĶ"甁M`²ÉžųīźŖs«S„_’[Ń,īŲńÖoģ o“É=2Ä-Fą½H]Ÿ8CÄ7é„nʱį«lžģ€š×²Æ“—S› 2/Ć}Ÿü:#>ž» ’Y§š›-čĒˆ†Ė"Y§Xq¹aś„Ś9bń,³=i9nśÜ±¤h1 ߕ8+GæėļėŻ=˜Ś-Ø¢ėóMź“2õHŽ{¾Ė3Ļr¤Ģ}ĪĄµ{NąfŹEū֎.ó×&’¹ƒĄo½½Y_j?łē_žĖ›’“õÅ[ŃūNšŁIžõ7[ččī9ƒ“Ą¢Æw¾É›“ wŗ3ŃBŲpé%ÖÕgæžnŒ6Ę볤>×8Uæß8ńĶÅśl‚lˆ>mü>±%—ār‡Ø‹‰ē鐏9¤įtyžRŪƉŪA’;sēń&ŠßfōŽāŒV†Śš†O™GyQ½ŠN[0©Ė³kóäDóÄĶwš'æPÉ]œÜ„œ{}zćƒõėsė76N®ßTŁm»įĄ€c˜j7ÕēgV4ܦkķoG¾½ņķŅ·×’>ņķõoæTÆŻĆł=ŽńK§Ž…SĖįŌŻpz$œŗN= §©bJø˜’īįÖgėóõŁĘ©?„·æIDGõ…oFÄ×0ˆWå)U6ÓČfž·  *­ęÉT šLQV Ō Tā*N\en†ņae({õÆWɂņĻq‹+B2ųpė”…Œęņ3“@mjw*ˆ ®"{Øgę9Ŗ%ėsš O|}„žžģiŒÕ—ź«õ%E trŽhĒe—‡›LqĄ\õgš~ÓĆ,xvžĪĘĢE×uŃĘh}Žž :ź#ѝUøéa¶A-ō”‡S·aģ…ScįŌ|ē ̘8?*–XŌ6š!PsNŽ ÆŸ '/…“3įõŃpr6¼®Ž» ׈ó,čB˜”vˆäÅUVćé4bĘńĄRę9fUžWéq[Ń~Šƒ³»¬j‚Ā7Tb',ƒŗŚīŌ8 Żi!źP¢;-č_÷ėĖõEZWO=«ÓėĶ‘ Ķ‘‹Ķ‘ŪĶ‘cšŖšgńQŽK} =)AS‹ŁYĶmeŗ6‘ „MtmB•†wŻ^“×u0›UŁfńAŽk²¬ÉšG²jźXć8<ƒõµhl7Ęcн&9eŠE½›oƒj£ƒ#krĄ>[0Śqü¶ŠŖ®ÕøĪ-łļå;?}vüÉÄkļ™ĻĪŲF¹vÓ~=ńdā§¹~¾wG<¼śóĢeµMqcßk%°˜ŲĘńoĪEöžĆ õÕʱś²"%_Ę„8®Ķq)IꌬĢTutÄĻjś3`‚NB•ńI}4Y\Ėōŗ ›ēGšg§šgĒ›¼Ó<{¦yöͳ×T×Q'ĀRü>L·Dż¤(³øī­ĀŠĮȟžaĻ®ų܆ ‡^¾¶F†iµ¢ŠÉįŠfÕ=ꜩõ*)ŽEwÉd—¹u0@­/iZė‡S?ÜųįÄ·łį†:ü-\^ągĶŁc±‚ęfY޹ XsØV‹Ņ‚0äpļqWÕ± ˆQć¾v5|t+\{®}><®ŖžīØģ¶ Ksķɋ¼Ż^¼4ŪGÕ¼ ’ܾ†¬ŗęł2ˆ /Do$Ϙ„ŠĄmÉī2:¤w’ķ32LįĀ›du Ŗ-»NÅĖū*ó0Ī̇5ĶQ/ Ģ{ž–øÆ†Cøļ·‡ŪŗQėN[¼1›ä9ėa†pż¶ĒO1ż¤6M¹:„†š|ĢžĄ¢(/†+Ēä@©»łī*R \%ģW_ē6†jGĻćśr/s\CĆŪæŽ?ŪŸhŽ_hŽ_kŽŽ’“ŖgšĪ¾—¹\Č.ų^¶ChZģbܑ‚jŠ~ć’jé«Uų’žWk_=ųjå+Õ5p¶7 ¢wÜA“c%Z›cæŪŁ\YSÉńŠto0 ģ>ŹĶ\o†3—Ā™ŁpęQ83ŽR#,×iū(>A¶xŽ…*‹¤Ė*µy‹Š ÷*LģM¼kķ£‡–×"ÄėdćųĘĒ'6ž°¾°ń±*ļVūDWåWėĻÆ>?÷üĘó‹ĻgTø‰ÜĒ\†‡ūżanĘQ’W{ūøĆśäƒpņq8y#¼~&œœ‚˜:A¶æŪüB•ˆŪ‡}"śĒ0©*Hrć½x_`ėÖ5*ŖćżØĻöĮlj|gŒŗ&łsžœČĒj®¼‡š œ«2šŽŚŗ8t¼ķw¹°eUH^YīÉÄžl–ē˜ ńÆÄĊMbT„Į19r¤ÆOÕ8š&u5ęv/eÜ2Tļƒć)‹>#ƒŽ“·½ęźuńÄ’Ÿ™č³ƒ"§GŃP›‹0 ²uäŖĘāųščĖ”×ß:-łš˜§/Ė„oާ²kg<‹AHŅŃ£pmŽ=BÓe· ché¼ĻżĄĒØEØyžƒę'ćĶs7Ļmž›R„ ćšZ¤ŗdĆO®’téöĻ3—Aæ’8zėĒŃÕĒĪ’8śĒ×UQxšö-iE½œš~95÷rźĀĖ©» Ņ#ś;“¬>‘<īŒ$)xwÄ1Ÿ Ā3±õ?’ĶöŸ8G)õøźįęq%Im›ęšPnžÓpžFøpF¼Ī_QłqųµWmɊ‘$õĢĒyĆÉOĆÉ/##xlŽfz9ńdbc|}qćŲĘÉõ¹“/FTß!k”$­Ņ<Ŗ枢>[æ_Ÿżś Ņk|V_m|¦ŠĄ§MzAo»Ō"I³ĄŠŽęåŃęŸ?i^žSóĻcĶ˟'HōÅØųāņēĶĖš—æl^ž3¼Š3­OŹĻԋý$Ļ•zjōŽƒ§7óĻnVž©.žrKŠ,¤[†1€Ūķ|NŽž%Mr×0y5A’רTѬģēS‘śB4­<šŌ}#¦”–ė«9E\³$!$E…®ŌÕŠœü H™WÉqcštlµFšübɊ[ø¤ć2Ühüļ§—^.ŻłŸĻUbÜj$7§ĖƤv†ķw77N¬Ļ­ßūžt—A‹§!’…ĪR šĢĖ›GøÄ6̶ ·MżĄ‚6‘%Lęs£2š‚”žą}VČ8ÄŽž™ żĢƲ |bž£čÆŻŠ¬ *…ā]jÆn(öF—Qhįz¤Ÿĕ‹Ąr됹ņPÓ%¶PjĘÅĀ ]?3Ÿų¤vÅźø|tōStą+—Ć•łpe&z½½N«pÆ­Ÿūf -ˆ±8óƒ¶ \‚LĒMą#±?ČŠ7“Ō§ŠHøž°‚Nn\ćĮŠŠe½-aĻ®bņĪéčL.`€ŚļkāĖ›E¹•U“ųÜŽŠ,Ėi“ŗQÉJ}©¾ŗ{mkNµń§Čč2«Šøč„õ*h֑ūĢ®B;T Ą'!eߊZ [’dbżĘĘńõéõnÓėÓ'7NtźąīēFBį_+‹wĆÅłpń^øų(\\ÕŠ>P@ˆÆqŚDu6 ø® īiśŒøĢ!OGG¶€»Ē"‡gjüŲ»Āw|NNtęn ųō,š{¦H ą­’¤ĆÜ&’5M‡ŁÓ‡Ŗ\±‡BUÖ/‰‘Q_€×UŅ8Ö8S_U¤Ųø}¤‹ś›»ĄIqį&©Ó™S³q2ŃŽ°“ āŻDµł.n×n’ ÆRšSeą £AĒõM2˜c†§O¹ĒŪQRž-dE]eČ Õ6¢3Ķwv&×Lƒ  qó°æL I÷j aŹLĢ&'_Ø]·0öņ PŹĮūiKĪ`Å4z9ķ@)÷¤-æšbĮÕPŠg…@ŽåŠQĒCGĆĖO¼<=ńņ“Ē›Pó}G­•µqŔr‚’gwu²Ø‘¢Ō”L:›š™EÕÉżngm>«JĮ]’żĆ_ŸŁ8”ņćĪä0؁h<§-TmF Gā ć?&Ō9F}0°)IqQĮŻß‘Yvń}Š)P€ˆ t²×åšÖ1õįā&®Ÿ‹ģĖs7†‘“ø®<ŅŽ•£%y蔹N ?¬]µŸŽ«āšGq0št£a³ņz3°«?Pč=|°„Dé˜Ėљ‘pr9šœ]ŽŅ՟†×ĒĆÉÉ(o}F†[Õus\®zRēi=Ü{Mq;§ S–cÓĪӛ¹öõ…æ;½qrż4‡ė÷¾{Ō-ēi<[į:3×&)ŠēNwŃR‰{µ+šæ˜Õ‘ČńšģŽpDŪ0&‡čļvRĮU ø ]OĻV ūµ«ÄÆŻ%^mŽÕµ6žĘmcnFחGĮ>n%)ŗ—~x)ὤ²ŽļƒĀ'›_ Y˜ŚĻ™WKŚ=\ǤLĒFÕdÖäqŒ¤ÕyÓ6ÄÅī :Š-Oŗ?Ž’$ür,¼’Aų„Z©ćį9¤”z 6‚ŁOĻDu¬›¢RÖwŗ”²zøżŻü5z3Ū8yGTänK|v%ŗU®ŖS Ŗq/%å0Ü"ŪU1ø-Ž¢‘H8> §˜ƒČŠ0ܕH£`pŪ©ēs].c·W¤µ9G ?=ÜŹ¤Ąj§”£Iä©’ć³f©259ž’ÜkIfMӔ55f)‡HV<į’*3ŻÄOŖŌ­¾ĮĒmm š?ļN†wļ†w‡wĆ{Ŗqõq;”føz(żģd8÷a8;Ī†³ąU•€ˆ4樦hŒÕ}éėo®}õŚ4Ļ?½%Lķ 8ģ·æ?żŻĶnÖĒӄi“āĘżĮįņ…płŖJ‹+Ł47\1O‹Ęß-5OŸéŗā6ƒėž4Ļ0M!\ū,*A?• _ ×ęĆ55§ģćŚ;øł¾z']{a¤~õė{`]WźĮ¬ŖfĀĒ5wœ Ė10AGx<ŅŽ”ōøMĆšĒ iŠłqŒäÕ<‘“ŸL¼>/ZX€Uī”yJұ\¢…;7āQh“Fō(jÓj.ŹĒ•\ŚÓ%6Ė}ÆŪćf+M}|)? ēŁč߈\ *Fµųń;Sj>nŅet·NK>¼T" öB·ŗē sČ&NįpMwˆfą&Č”ŠxĒ$ŖüåZążėÅy1rk}źūćO¬||}ī;5UąCłPŽ„ŚąØ~­¾ŅėĮ/ˆ™¼Ęi±ÜVƒwÓC­čŖ«„(±rÆ#ąŇŖ†š†ż[č?õĮ„k†W„]øM5æ~ćū³ćv”„[¼ĆL3łŸöÄź&»¹|^%Ü4ęĢ·©nłhš7WƒĘ;Ģ›«ĒÕÅ'%\1v,Z¬=DŪLĮl3—q/ćµ,_æ GM¦dńŃv„Yønė­\ڱ"øŒ·ĀĒr†Š+u¬Bęu—źłĀßćr]ęd[é˜čxwF~k:ųĒlÓVš÷.Ļé|ĪēŸ_üūāóóš®–­Ušf~×q[u]¹Q{©©å“U¼«½'¦|Œh>ŽQėM’zdöģŌ_ŽAHGĖāƒmØÕ>UZ¦\ÓiŒ¤ęš=ų0'ŚåÕ(IÆ©Ļģ5M*ęJ źā3鯀RˆFć*_Mćvn 64Ž0Vpēø !i xĄ0@³¦ų€š¶C¶‰óš\“4SŃlYG“h5jZ!¤š=/h““¦āIĢp3 ·”˜›ƒĒšž.8)Āăō¤Sq£qĶńm%»ą¤ŻR.øwüźó‹Ū4 ƒ’b»øa<‚P0’ŚŃ¬Ż“x[Ä!’X3ĢS¦čZøŪ£`ZŌøģ”C\Muld÷4޾c9†.󮂶É-ŠĒTżą¢mHRŽw“~nh# FRē5˹ āQCBŅŗøś”URżšČ½P 4‹ŻtųµN·ńTrPĮ»[ I5›ösŸ¹Ō­¼Š3ņ°Ū¢ šĪ7@ Š›ó6D‹V·ęˆūŗĢŽ‚iQė–yųd I™fĆWēÄĪKŹ!%tÜųžAŻiŪ1’ŚŠ­ŠŹ›A™¾9Ą˜—wE¶Äąƒe€łōońf‰!$­&ݳ›nξ P|œwĮI·äµ;^žkš¦#©‡5 ü©‹—ĶĒ’ŌÖ ›ė– FRkŅ QŻ:õŅ‘ÄUĶŗ9Z„ąĘ¹”¶-ĄÖģ?­†³_E v‡¶į½eP³¢~°s5½Ć•TæS~…ø%éMMZskAjŌG+ĘŗC„ ;8ƒ<ŠlŠ†“š5ĀÉ2õ8īĒ’ÖĘõā ĮÅųŌ¶ ’äšRŃV·®†³+RŠ šž3໦ÄĪKJĶƒŲG9ÆŁōNĮlS)>Ķp€9|ŠģGځ’ō.ŽOøśµ f›śØ&…ŌxY‡¼Ā2–nĄm!.ŽšƒtŒ˜©Q‘(Iļą±ĪA§€o>HŅ2ōÄ×ģXĒćQ|T¦ØfÆŻ8 EŠėģ›h >[;¤E¬)Õ¦bŪ9¼dø "‰3ųP‹'4×ŪHRĶŁb½„C^eė®H)†i”fā7Õ9ńėijÖ£$JĘq?~…|KT 24ą“ąŚ:Ą”¤×ģg™¦Y“Y&¾>JµČu‹GtDØĖõjšĆ ¼2-ā¬qˆ$Öģ(™ā9Š/ĮmCHZĶ nŸ-ž ‡nåTJŅW5ėMø„ŻSĮČźSMA\ZS‹”ī(DŚékv’N3mįŲł„¦Ę—łZ™HR͵ą‡ūe±’¤MŠkéīP)H³ū¦ØŠ×T`¶’Ōµ]Rģq…;‘@Ń'źĘɾŽu4¾fYtŚÉ“Üƶ*ØUA›Å4õhß1“"‰5ć$M-Ēóšq¢`ZŌųz±ō|£Č l\ī![£TāY“«I|ĘsS‡;2S„ׇ{óq@«ŸGØåįaF¢E‹w’#ŽE+>žV0²¦ÖŃ,=ušŗ£ŲyYņŖ)~yü­ žŸk‡Hā@£żÄŸ^Š–) 9žz—äµp†2Œp·³x! öYU«I8¦|±Ež›#‚'+žœš“čCŃž .ą÷æŚńPK .3|QMœ J Ä7 briannesbitt-Carbon-d046377/src/Carbon/List/regions.phpUTŲ]Ā_mYĶr"9¾÷SčÖīwOģnÄ\vfvM†Løķ=ˆB5U%ZU‚Į÷}–¹ļō‹mŖH„m Hże~łåä_ž±ßīß½ūéćĒwģ#˶²f/² ¾÷\7L½°f+XÄõJU Źw|#>Ć\;ż&’Ą:ZņŠMD½’MĆ~Yٟ’¬ą§j>ēŖü §ö•n7z1EĮrµ?i¹Ł6ŒWkVČ\T5Y½(]ņFŖź–ķ ĮAvāŲ®£Ž$ķŁ­Zżš-oŲ‘×l-ėFĖ•iĚe³…нVFēZ·Źžd-“k‡é”żķ/?’ü鯭T‹Ę芿ėƒæ÷wŻ÷ģ×ßą»Z+­łū[÷ĪāE%ķ!wšÆXƔš7¢¦9}\ś²Łņ Tā Ån×Fn oMīœfķOŗ)#‹ĀĖĒ(/V°©'(Ö„ÅSŚE{<Šń\ēĢżČÜm³ [åR(…†łKy©üh†£Ęļŋ@Ģ‹`ąŃcV^ųå,üžŸĀā1¬ķ—Gó—¼ ½āņ«³swéØ,o±ż*6źŠéą,€™ÆķŪé:yµ)ųZŌ[AwD±‘¦$1ŗµcōög}^+‹ŻX±į;d«¹ōši+S­%‰ļŻĮU0żžĀśĘ’„Ł~’³å‰&$n•.u&(†#„d]®M]ó‚{{¦¾Bæ›Ya4fcŽ,m€Óņhžƒ›_q©Å-K­B=p1,1u‹ʽ[;s§•ISB„—Ü{‰Ōٚ \:Kw¤9ˆ™Aƒn°©ČZ=ŒŃTUµ÷Ēö‘}}Y…ų÷ļų+įÖGÜś¼Ų…ÉžŻ$¼°Y»¦tÓG,™k=„ĶP}±¶Ō®ĻŁ©ÓSź¶ÖJ\³¼fö5ÆrbVŒĮēČŹøsQįGųkUŚ@Ž Ęö8 €Ņ¦»‰‚llAjšcb€aZ‰‰dJo<~qß)'Ŗ|Ėb#ƒl£OcēŌ‚˜£[ćm8=ˤØń40&…Ä…“āÄA†nß ŠØ© æ  ‘gChRŪ”dŚ/‡Hƒa­¹ ’3”A¬œ*üÉę$«ŲÅ«¼,šÕC¤Č0æ4A6¼ “īŃč{”ƒ@¹Gėī”ŻRņ=qÆōŚŪ{?s“÷^8Ā}G¢:ŃśĘåč¤7§×°Ē Øx®TŪƒs$įŠĀ½oG®ŲŖRiߟŽ&aß7‚ չڈƒō“Pߑ‚ÜÄn‚d&\›~_æ ėh¬» §Š ™‘9Iźj*?A™¼fś‹ŲˆæņŻ6ÄdŒ™vĢU Ł -Ą,<pŪńÉy… ŒMīį#¼c …½Kd#|éc4§Z²1Æv~ÕÜ­Z…uwœŗćkÕl©ågnv³5į-lŒń96šŗŃ”.ĘKgysę?ѱžR ‚” ņœM"'®x ķ:i±V‡·}˜ōh%"6ŚÆī‡8&p©€ŠvƒČŽõ‰) ņ<:¶įuīkJ2p#ŗŽrøÉ_±!¹ń\¬m›r{¾ōý^höd6 ęŽŌ{ģV%‰k I—2.ŗądJ‡ūŽ1Įh”²Ų»\å®5 ĖłĶPÅJęnÄŲ6 `@’z¬kȁœb&ÉȚĘO_„Iߟ&Kš½–’ؐ<’œ=*Ų'āpćÉĻ=U!yv:¾ŚrŲ5AźM }Ą©7GńāģFDvM$“¬$ģÄ/ŖŲ]µä“8Xģ4tb ß?0vē[]ųh2„ƒŽœ’żÄyXģ9Õ·ÉÜ×m.ܙ ĻŽÜgĮCͧHæi铦 A›…JŅy†°Ģ„?lvŁįĶTqŗ(׳Ųķ“7œŁć/Ū§†Ś .iræ‡!Āa6rKw/M3„Π̘%aÜĻ$Uœ›ˆĀ'ŚĘÕL69Üö½±œA;Ś({«#ÖĶR§IW Šń–ŽhJę”ŅŁxĶi©ļĖfONŲr‚|ü€°?š Į#źóļšJz;ęH“¹*Ćh»ĪSč€īsäÄÜŌµķhšŗn‡ŠĪ­KļŖf-Ū7AægŚq=.܎Õ%3uMœņ­( ļŲ|j‚ž$E3Ó#Øę„HŸī*|ÆüÅ?„īˆ®#·ģ®¶o¬`UėłL·¼akĪ"Sm½ā”i”įĖbŠ×ŗōĄ‹•mķ&÷Ü&ÓS ŅČÆfśÕī5ĖR³±€¾•ĘˆœēĢ\µR× Ł*ęi“N¶eųȘĪrö9«ōū_\7.qĶÜъeŖ<ĒÄ –ēŅßrRLͽn%Å!¼§_ȶœBŻPO»¦¹.§)’:=µOåķūńuļ“bźÕGnė“gȕĢčŻ¹Œ £Uõ5§2÷,µåųŁej!°еėŅ/C6eŹæ=eH¤lĖe˜O2$CĘæŹĖü“Ü.;u†žĻ$4»ŸĘöM‚†ož}˾ŲmāĘ@ī=MŻ!@|Īż>ž”‡ī•\ó3m3µā‘K·Øķ5~t&Jś[`…}^ĪŪ›ŅÅ;Xöģ&VƼmwš įgc±³ĻĀĮ”_lĀō²@`p;|śH >4›š¦8AŲ_s`‘¾µTĘw|š‡|\hęŲڲx]‰Kæ.QóŌ0– R}yљ/-BUCwłóCHX·–˜É–ŅÆPząöŅ>D·Ł›w–%‚³”z#+’r„×P?oųö¼Åēō³Ÿ4q“DĆ&ž„`‰%`É+Ć"Į#†Ļ#ō¹ņ{}ÓļüG—[Ā’Ž<”O¢ō™ń‰ŚĮ“j<ūŸ] i“Óła˜ĘĻ4ĻHĢgY®ųźhwś÷ßßżPK .3|Q/ briannesbitt-Carbon-d046377/src/Carbon/PHPStan/UTŲ]Ā_PK .3|QĮÄL®Ž8 briannesbitt-Carbon-d046377/src/Carbon/PHPStan/Macro.phpUTŲ]Ā_½W[OŪ0~ĻÆš$$TÖńVŹ€”Mb“Š*7q©„ŌŽl„ ’}lj“8NRDä…āsł>Ÿ›ķļÓt•z^L¢ āK%h¤ęź)%rrzĆk"StŠÅ‚³ŁåÆĖk…ˆ2 ‹ —™ ‡ł?F4»"Ė„DŠjķU:;Éh¢(ūCԊǵ¬is#(Ćāé‚ßÓØŌš§ –Ņ]<Ϙå¦^/`ÜÕK,`#ŠWp[-Ö¤Š- ›•ąx‘€Š[µEZˆžąHpD×iBք)‰zvē={¾ńŽ^žķGb|č˜~5Ė„ōų‹B¼Æ“Ąī`œ’M}ĄŠ \ć/Ų­’ėœE?Ą6ׅmæoQķ -MģĒ…M'T;S/n’ŗyˆŽwńIĖ”ŹWš«Üߎu#֞ŗ‘Ø„ĄaE£N ēI·ßĀMŠ'²#ŖE-EœAZ²HqŃņŸ33Y³’_ĖW)€°żBĻ.Ÿ¶v·Sd'ŽQ‰p’čĶ“¹Él‘ĄŽŹJ@óyµæÅ`Tm”ĘÆAī®čżķØ•ūG•-„Ļ®zG­ö§õģvŪU3*ēXüäŪ\ŹoŠylM£zūķ®ÜĮķĮ]Ó0t KÄ„E®.@½‹>ĀūG÷DUÅ,żĄT”žčł[ ©4ƒŚ+ÖśSāÉY1UZT·±Ó9(~˜üŪ_%{|Eā°ķcĮ3ŸVŽĢÆ0\P17£<²å¤īrSąWēi:~yA~_rlÅ ° ߀S?@“ɱ,IÜ 4ŠŠVČÆĪ “CÜ0w‘ƒn!Ž+ÆłkӚĻĒ”­ˆ *ęŃfkGż³üX‡ĘĖĆå”{Ø:½'ˆŹsŖ·°uŪŅÄą#©¼,&„&VMŃ3<@ĖW¶ƒÕ)łÖ¹¾2|Ҿ~3Ÿ÷cĆƘ’øė¼[¶ƒ5ėć ŗsxtŹ×ś†§‘§Ö½©¼g䣎Š4ĢēĒ ĻiBt#śīś&Zµõ d W!zCœÜ3śƒČöy¢ü0ß oßõ€æŹėGD^'ĶwÅ{c;„!ōP”½³P,óAčüdńūÉTĘC –3’ '7‰uźģ÷g75[# #AĄō\šõ Œ%‚™ß8Č·ŽÅldø‘4 Ar?_ėū„æ;>Ž+Ķ1Ż•^;ĘŹīn}$:’ąŽ€ć7ŽīmÖ.†étĮW¦Óś^Żż,j÷ÉiwėAūö !Źōė-"|Łzf4ŠbŚļ£”×<^6ŽPK .3|Q7‘\A briannesbitt-Carbon-d046377/src/Carbon/PHPStan/MacroExtension.phpUTŲ]Ā_„TMoā0½ēWųĄ!A¤Üa7ۊ.j¬PŪŪvUg –Ū²ŗØāæÆmŲD6 l·–ųpęĶ{óĘĪ|ł&+™$× %&€fX­^Ž- ęÓ$i4 ćīłÖ ˆ”0cXėn?ķĆ-ĄT¢üg Žxæ’6Ąõ¹¼e%Ż'֙cb„Ś…iO; ž«¢ÜÜ“ ¬Ćńp˜ !ņŹh‰­ź• øŲ5%ĢÄŽĄż† eIÕ2£W…„esųq²¦3DŽįC“– jąĘFĪNŽd—/Ī-[Ä+Ōoõū_©„±Q(Ń īėĢ»ü¾ŽG‚9ÕĒØįS†Ī'\Õ8„«c“•‘XįśŒ‘Ž’Ćzš£­ī!čå„ÕL’ƒ;󤇞»50Õyq“о"ÆAsŅlƒ{Ømr’!øōżI#ß®)Æ@QS ²?k»Āś`5.šĮŁīP¾ł[ĢūĪg“‚EŽ˜FńØyŃIÅŌy±ćųŅlŠޟ%žœæų"Äē¼j(3”ū£u'™īō?`ŗ§“=— /ˆl mÓ|a±½ ŹĘĀ'‘ŃY*_łż»…'°Éj»”øĄŅZ 2ž ÷įģœLJ “ōÉs%źN! Ŗńz¾šfŁ%3ģåÕ· [z™fy±×~’qĻ (;™/ēō2Ź:ŗd&j7ĢÓ¬…¶W~ŸüPK .3|Qh¢ā°? briannesbitt-Carbon-d046377/src/Carbon/PHPStan/MacroScanner.phpUTŲ]Ā_ĶSÉNĆ0½ē+ę€hZµpOY…ąŖ@āM̤±äŚ–ķ°ńļŲNhBŚ qĆ[3óŽlĻĒŗŌI"qEV##8C“+ł°øXÜ:”ó$©ģŚX_—Ņ‘)|ģ<śnØÄWņL µ}ćł#žŖą°WȌŗe(%™ä#ö'“xĆÄć]e$8Sš\I°ä/$A#75ĆlE®TĻĄ-`S ¬é^CņĶu¢Ńą ¬3\.a'‚Æ}æ­æŌÖ÷:«ćjņ”čŅŗ–mq¦ī$WJ4¶żxė*œAQÉ8&(Ń^E’t#õtKšqÖRÖÓ §IĘķ¦]|oqY}Ó8ß1ģī® Āyšp†B`.(½ļҌB‘aÄ£Ē T—eßai·ąy ’L†VķWAP(ć7:°ī’µ\Wõj·©}@±Ć_u°$÷G“œ­vĢĻ_ ‡ éµ’W;iÖ±Ś(Mƽ{PŸgväė[4žt“*G °#O±É1;²äN#kyŠST\'Wü±!Q šīPT”Žļ;>vŲ›a†Žj (qśÓŽ’õķVüY+õ3łPK .3|Q. briannesbitt-Carbon-d046377/src/Carbon/Traits/UTŲ]Ā_PK .3|Qm.8ĶT$,< briannesbitt-Carbon-d046377/src/Carbon/Traits/Boundaries.phpUTŲ]Ā_ķZko9żĪÆšFY1¤@CŅlwI“–ŖDjȖ€V‘*µĪŒ V;ö$A«ž÷½~Ģ˜$< h„!_÷ŚēžsǃēŻūŃ`T(¼ŽŪ+ =ŌPŽśŌ'¾G8(č#1 č ‡·ƒ*÷¾#Uč+»;n } )fØMų-½»•Å ŠØŗĮšŌtż„ŹP?ņ}ä£qHļaę!Ÿŗ„qpÉśA8ìŒF>ĮPwOɃ÷łā¬Õ¾nISj~b€zĄy”‹ŽF‚x聊“ĄÜy….GžšģėĆCĀaśńR¾vCL?."žŌµ]2’žł×ūĮ‚ÖcT$µĒ)Nr0śDĢĆ!%<„ ĄģŖ_F„yW}µ:„ōę6$bx–ˆv(Ėń°&ĮŽa…QąūĮewh# šP7]?˜Ŗ1Ą%Šī˜ą0§z01Č©÷š˜_°Ė'Z’Ž`ö$|iRz%éŒĢŹv5šDté8Źą¢P63¢ Bd œø@s‚ö“V7 t-—Õ„\ĆM,Œa¹ģrf©ådy9#±ē©s=öū'µ’"†˜ eįŸ‚KZ^{ØCĄ7W XŚßÆ«ø ø6żćaČ#ćņ÷ļßćŸÄ†sõ:Ȍ§x°_ū½²’¶rp„jõ7GõŚoÅRåŌ0Ŗ‰ĒNéxÖTā,$" ™œ ®©}­¾GŃ-( „Ē\Ib”µØ:čĖĖQ°kJ’ł˜ü,ĢŃĮażčųT’P—TÄ:qR‚³ˆRjo.Œ“ÅzżüŖ×¹žög«ó­ŁøAT+£øéņ¢Żė¶t£ģ6ŁzŻ:»j7u«ī9=ś¬s•ķ¤ĖNóDÅéČØ(%Ӑ ˆ8¹+ ©d•ĒńuŅZéŅ2±Ķ—¦’‰)źtb &”ŌrÅ7ȆźSŠęėb}b°ŠmÖāŖČšRę^”£ßåŁlīb[įóķŪ2£«SČė{ÜŹb“ć„ˤ w#:w\µ»ē:k|é5:ŻV½BµćĀB!“*‹‰mZ–ƒ4ióyqLųršīMž VE”>+źå5"cŗÜ€cĖźŠ&OJ5[dNĮÜ4“m¢™1ø–etX³šĘ=ābl…¤MåŚö~ŪĪįŠ='('č=[ś5Éć7­F¼¹l5š­—3øe¦gc²i®Ū Ź„I‹!ė“M•yī¹kӓK8oEPgŚ·eE%V犟3Y„ R^ĻZķnÆs³qeMDgÓҲžI›s§¶h€ru¶hšģ‹lH}Ÿ0F£įv§÷¶Ÿ©3†-ŖķņāóēV»}ѻܸą¦#µń§s딚1kYyi°rÅ·D,ķźļČńHŸ2ā! ^e͵d oˆŅVłĢĄ)”*ŚłŹvŽ—°ć.ö”‡6­fķÄ#®{ķfćfĘj%Į6ź?ܳ£@’`ßü)Žåy‘›ˆKūcĮ4^Š$Ļ_d5H¶Ė†•3–ZŪäüN‹|’…§›čˆČē-<ż£JŪSR™0łž}ÜIQQv‚į%) ·+§©|B·˜—ŅyÓYĖ2ŸķŲL­$\nĄ>`96kxWä21©f5&§ėŹĪlcĻ‹Y\™eń+4a0小g)ürn¾ <…F,a€ĆĀöHŸ’é£?®ŸńŻĀ7pw­É÷¼[Ži“Ļgs"dŠ‚—ĪĻR öēFšhj· `ĘąāšmļķrĒ'Ś›¤ō„ņi}sƍ.—ų\Ē ±şĄqÄ¶ ć„É•AÜ›5ś2ÕdŽÄX„«‡‡oŽKń8„Ž_+ēĪD“~1Č)ž×iW£¢]Lx\%vIWåbx. kŚÜåĘBqzƒ‘˜õg1k’̽',~kƒqŠź,6'`NQīėŠåÄĮ§Ī…Üæ¼’•ļб;”¹vå¦zį0Äćw°W–}$Ž)ŚU |e :Ź]U«Ucręļ‹ČķĖ·ń` æäÓVrdŹaź‘C٬ •ā%ˁęe°“cœÅ¦vŅN“œ_tĒoä‘rĮ5ĮŹńpŲ§s‘—„šHĄČŹ{UŠL#ušó©?EŒ}'³ņ…³Ę’L“ĄD=ļšP¹śÆ°šgį_PK .3|QĘŪXŒ`6 briannesbitt-Carbon-d046377/src/Carbon/Traits/Cast.phpUTŲ]Ā_mRMoŪ0 ½ėW°EŲA>īN± h7¬—ŅCc3± ›2$ŗ)ZäæWRǙˋ-ź½G>R·?›²Qб&×`Np‡vcųymQ‹[)Õŗ>÷ū=§F“a÷üĄoXéāōŁUÄŽ£ŠZ×ōĄBvė½Ęr:U0…Ø ³šĒy]9¹O‚f’‡ FJ²Wč\.•ōDõ©ĄG 1YšČ[k‰ƒŠdļ$Ź…›~#īõ"ķÄžÕ ÅœXĶ;ø‰˜~°ö¼ó1ĖNŖI 5Ii ŲėŖ‚Æ‹UEEob؊ټR.£š–¤µ<žTXĘoÓn*Ć¶å< 7Š'£>ӈ=%„ŽBrulš…Žµ—œĮ3˜œlLŅtĄ:1µ{Į üØÅ,‹·3ŪŅH#DgŽi?h3¹‘R»ł‹ū?ĘÖ(Éäi^Ļ ų›éĢ-ŚI:ƒ²# ? ūY§« żƒŗ8JiĶ>Vśī9&׃u–č€Ķq;ćU2Qńß ļ|q=Ø?ØŻYüöyDķ ź PK .3|Qh*@½č< briannesbitt-Carbon-d046377/src/Carbon/Traits/Comparison.phpUTŲ]Ā_ķ]łrŪFŅ’_O1‰Y!˜å!R–£Š–ņ·ž*޳±¶\.Óė ‰!‰ƒt$ņ[ķģ“m÷Ģą$ā’"U-K%’ĄĢozz~ŻÓsžl֛½½Ń·ßī‘oÉ錹di˜ŒĄū†ŗq–Ä[3ņœŗsdžK‹Ļtņ“k‹yęŌ&?1>7<<šć×lųźxƅc=VI_:®Zś¦IĪęŅ5VkP['¦±`6‡"ķ„ćZŌ3»O6&£pķĢ`ē"ߏƞŸüōö”„|ޚzäœr¢Üs¹ļ1œŽī€ģÜńŻƒ‚t!ģhϦć ~P•Ł©K ?ÜŪó”˜gTͼµ£?§¦yr±`”┸§ŅĖ·W¶ĒÜ%Ą$ī…9ų ž;ØĪąŽżOŪšRhÆģ3jśSwå[ĢŽß Ū#H ģč ń=ĆäBwć ’§ V”_Ē4sĆ^KTˆ—y¾k“¹ć€JmŽpÄvĪ߁®Ž‚RN’Pų/؆ِš3¦*Żņ;į4Õ‚Ø—Ėøcž1©­£SõņS#“‚ū ł2Ŗ·KQ^jϰŲŽĶČ1±d™<Ēr\×9ĻĢ3ŚóR °÷ēŹ$š_Ø*(Ō2€åĐöaŲ€m/„ݰß} į@9pĻU¹‚Ģ?° j½ƒļæžśkšQjo:…‚9Óŗ“żńŃ`’»Į䐌'Óū‡Óńƒnoš˜żžsė!ˆēś¬2^™„ ą3n}§Ä]R“gØ"T`S‹ĢFx5{ō:…¶ ĶńŹ2.ĄŽ„!8c²MN¤RņfĢ:Ōµ‘xßųsšKą®ģš'(RO£“’’ż„ƒ¾k, “ŠT_ön‰¤Œ-3I‚^/ræAN•§Mœ ;¹CŽeyõHT¹vāŲy·¶U_°<_źįp%NĄės?Š'M=Ō£“Š•×Ä ŻŸ"Q[ęU|½ü*¬ĄĶń¬4ŅÜ(āÓW-vi+—Af—ht o= įķėbÕŹĖŗuX»gĖĘkĄĪlĄŽŠT‹œBCŌ÷KP“Ņ~)^ą”RLęv9U ܄\ÅČ·0NŚ&ĘīXéq“Pé&dš§XH»ģ)mĄœԻ蛂źÜåø×M­¼Ģ{M:¾Āxæ5ĄæŽ]oÜĘ”9Ö©Å¢¢ļ$ײ*r]=da ŲX²„ŪŻe¦yT¢ļl4Ļ`2Ή6gKĒe×Ūuš…q|.°A™ x³Ó ŲĶ:J³B–ÖÄiŻ …q[&Rl:ĄŽ¾¹„vūGwĆķü™(„eĪĮ6 Śóaļš# ėņWŗ£žĢā@½VGŌr¤žų×0Ŗ…(ݬ„o—{·čµ%žõō~×–—‚æ½ŻaõxüQ£x|μsĘlā;DŠ wy$ŖpŗĘ-3†«ŖvžŠū;Č„ć# ł†-Œå%‚Ļ·PĖX˜¾ZĘāZ†Ŗ&óK¢³%õM/0E2÷=Ü&ēk!eNĆ^Ų…ś[ō’l\G÷AvŻX.™‹ŅøŒ ŌNäw Żl@µr3PPŹ9ƒd Ēńu÷Ó *Ų¦5¼pĖĖą±ŅČ+UM]xłä"¼ŒjdTOė«Ž"qUŃåńżnŸØoš7®b€"8ŁÆdƙ"Āå6EĢģKń®m=n’y’ŹŒ¦JJ¼:҇æ²uä©4LjGž}ķ×ākĒ7u0S¢;vmļčYV¹Æ¤ļ‚‹Ėö52 $Q½[Ęn­±źŚĀä“ĀäH¦‡š+ŒŌIÆ“_’5ų}+#n}Œdł’*FT6Xv†mÜ#ß|³£‹Ÿō2 ß1Oœ‰œlīÕū sĖn+t—m»Æ4p{nl[äīģyŗ^ ¬wŅ–Ź„¶y~DøÖ©Ź.®…ŖaŽ6UÓĄķQu[äŖŽÖ².WÊ·ĒUO“D֖؉s-‡[-Š1C̦!`Č’m‘¦k„ålK…XõŒ‹Ā(}Öée#’½²A­wP+Ås™ó0+ēŽ | „°Łź öĢɄ0VÕé»­ėSJµŪĘ·ŌeÜeĀÕō)p³õ93ģOŌuÅ”XŠĘ›%fź«ÓiGiź½ä5µ%©”éčŠPŌūčk®ŽĆC(™9ŚSn ¹Šx:Č·žkŲ+­GŽCåĘŁČŃóNÕÉ­×Kē­§~Ļ©§z‘O*ńŌ©¢ņxźöŌ­P«Ŗ:Ü·8÷Ō–feµk)7©±ą[®ŠS†ŹŃ¦šąŗ¤Ž»6Nź(2±>1Ų0{³Ž]«qlŁ.T×’īų.×…Ź_ŠĀ šHećž<7[{ķĄ¶Rb2%ÓšéC¹'µŸ±‚ÜH÷)%ž ķÖ|ŖĮb™ŚÓ»-Ōz4IÕ¦Ź)č˜n 3„n“ˆe²C1Ażļ±lȒ›³=GĄ…JvéłKqØYėžŲ•Ø;īÖV­cƄj›Ä‚‡ żbiĶ>(ȹK³ø–»ö¼ ŸŽFĢžŸ Ó :tÜÕæ^½}óéčĮžųFvŸp,²5.ÆŠ<”tŁĶō įz@ÕöÉĘ@“£>Łž‚ĪäØ8ʙo–-óš Æ-åłahIy˜9€GŌĻØéĆEu¬§ DM›F÷ćŁ.hæO¹Ö}?Šaȝ•x<‰KŚRdL|?ó(UīŸ‹–”|u¤"…Ī”Ry4ĢfĆųī)Yüž–ć_ČŚ\,Ÿ,€« ˜P-=.|W,]fŭ噪“Ŗj¦FįŃyō,ņnł•9JfČĻŹÓØg TąŪ†GVƳ›yœ >@Aė¢Yęsg ŹMW)ā×o•Ī”0I}<‰ü&²VfpŒŗm×[CLĢIžc,š1]č\Ō¾˜é" Ē…Įš’ąēˆü° P“-q_¶&9~Lŗļ»żjYŃ³Ė¬Īą]ÕĢ JUģĄB÷X-÷ĀĮXvņ÷Ŗ`§¾ĒS£*g ĒÖS S^]–…ėl” żZ892%Š>¦V¢æ28gŠeüƒxūøµ U:é/Eŗ­dųJz]iŗ;­Hö0[L$Bq4CĶ…÷ŚŃىMē&Ä Ož„q ()}[ĖVŲ/±Ły KÕō „S•^ÆÄzxŌÅµ®lüō1v0‡ń\¢Iß/ģ®üHyRˆP©ƒ,Ā]Yā8f|’O7ĪxĖ")"“4Ÿpä13ų'ŁėĘ¢ĻŸél !¹®u`č…f £h¾Ō>ģN§Ż!äö³‘V€°5(‰īĢ,€ŒĄĖģ¶AČnJ}-$ø“iiŃsĆõÖ$§eŃJFŅŠŪ›—F h™Į*Ļ3%A©…¹(#|y,¦¦ v3üĮ`?ŲdŻJ‡ž^¦+=\4ū©Zķō #Ć–V·ü m4gnéå¼²pŹŽņČČD°7/īEŅŠO“#µˆčo–²W*Łž™wSņ`p°ß(÷ø¶ą÷ ŠnmkXŗŲ¦±Y$ųŹ_Ł"ćn‚¤&Ją“|R3bŽˆeč6>\¹i·4!ūūSń§¢F,éĶņE”Ė~/^m`s@v“()ѾxmÉ½š5jˆhaŒ…WĪŠ@¶³Ą̓r"®|l1”±ā·6.Do¼Ł }$pFŁĒj4¢õŠ8Ć@Z('tÖź`£*+Ī’-äD¼š$cé<˜óU čéĘKäŸęåOēĪ]…ϵ3܉)­¬ӚLæ‡æ„UœŲzu›‘Ę“ƒū‡Z@jqTT­’VZ¬”Ŗ6Z¬„ ­¬Ŗ»a锸·ŁĪÓĶ_ĶĪĆö¹Åżékݼ7m‚4Ī„hoÆT¼+ZŽ÷ęU[ š©-Ļ<gų×æšOR­]<Ģȗ¤ĪxWUš¶sÖęēŹŽcĖ®’/f×įŽho ŹSoŲ-ӟ‡SК„ æŖÖāä,4•k‹jWQ ­)䞈gTą Øµ”=·­āٲ³U[YŒ=Ą"}KÖ­b«ĶŪ9XÕ`·š}Däīŗ—®c©=TögŪ9·ql¾¦¶n2ĀōŒŃ)gąy źf`Åådø’ÆĒßw88Œæ&Śū=ų­C}ās’ĻqiĮÅ„……cż@ČgQ|-6 |-¼ŗ”€$4¾'/QŅ©1÷qu]|Ś5 —fQtEŃį|>…ĪøįX°mk¤†xų‹źŗš¢&¬Ųæų"e1ܚįāĢ\N§±XKżŒū][Ód£õˆŅ2tś«OæūŽĒb·‚Ņ»#œ¬MC+įņOĆÜ“Yąęā׎n, ęr­{0ķp?*Ņ]ægŻ{_ĘJ Q¬{zˆrK&)Ź‚Šķ•&Ź6;Äį©OsWLĖäH6uB1Ė®ī•ćųŻ"abŽNøBDܹōź5Ų¶ ö3ö\`ź1æSÉ#ēbÜ ÷œ#}±ÆöÜĖŌ“=zCøk!ĢĒgžøŲ!9•»SĄååżŖUøīė:g>H(FŽtqŗĆøŻ…”R<ę”ƒlšē4Ö-ąKģõ ˆ ŃĀóto“ÜS[“·+µĶI’=ü:E‘“ÜZvXĪIvnŸ Ä/ēņĢšĘ›•Ē—I„NÕ¢‡“EŁ, "øOŗom²W·@œ‰A& ŗī«åy+k]”ŌQęjBM±b‹ %WŪ«„ŗÕą[ß ‘­€żæo³– Ä÷6±Ä÷įpČÖŪʓu]É“H«-$jÕŚÖŽ‘?7(ęEšūj—„üŒ{!ūDz,ę-†h'6µ×Rjɒ·v>)p߄aiAŖŌ†`: ØuG’šéėŒp5N%.~–ŌepŅgfŲø’X^=«“?ś_š6īO¾T(8¾a$č%dˆłĖ‹€eז§cŅ„ŗvŻa±DKõgŠLB2—mLŗŠŽ“™Ž[wF†T1Z]$Z¬sg,zŸ@čXx¤ĢŽķWP¶p/q:I<<ņ`ž†‡ā…&!ä»ŌB9ćOB ŗŃp”NžtåĆŻ²‰GĖ$¤“WRH™Å'Z3Aü”¢Ék7ō åX1Ó§ŠÓ*¼EįrŖī­˜ŁÅZD²U VĮÆÅ‰‡zkė+j]m¬^­’q/xõrŠ`”ŚoŌö©{yµdsW|°Ø»Į6®aĀē˫ߠ»…ęåõW>÷®8D›Ģš3÷ŹYx¾ŪĪ™¼ ³…ųŠ›ńæ ’–>ü”*^+Æg¹”«nśVŽŃgąéŠCœēų0ī«ó:“²†‡iD ™!$<1óaæ/3¤SĎĈ4"G:Qģx‰H¤2mc%¢ˆ“źūĒģƒ(xœā A)śBur²w Ćņ- ŸŠå?Å•Œ*Ź”%NØ¼Y£™ø·J7¤w0Įkā~ĪmoĢŹšI­Ną>ž@Ž0 .e6rރØ^Gbu¶iŻµéŚą¦˜Ģ¦ŽWæt|åg8LĻdĢ*ÅÅė§$R3JI²'Æ@?ƒ$bā²/žģ2 Üa|A7L's ä0)_‹é_\Ė9g]Ó$:£¦Üͤ\¬A .z°†äJb,K„npŚ£7 6fšĀ¦’“#j%é/2)>źxj2ŌßʎG2Ÿš V$ķęµ'¾Ār{šödŠžœ|é}ŪÓ>t‡šÓŃA®n0A÷™]ˆ?”ÓŽ°ū±7Jłņ°ŁĄ=`ĆõÄ&·TĪ‚sl"ӇńG±ƒÓU &xZ+‘ņ©Eč!źO2™R">9Zģi_qs&3—ÅšÕruˆŸ“Ł9jcĒΤŪWIYN„ ņ§L•8Šn»J¾—Sņčž,r6ÅĖL»H Ķ”f›Ę!X†]|$¶~Łū/PK .3|Q©DrmŻ .=; briannesbitt-Carbon-d046377/src/Carbon/Traits/Converter.phpUTŲ]Ā_Õ[{SŪH’ŸO1GQ±½e›ĶFlHXīBHaēö’"ƒ4¶•H—4‚°Ē~¬ū÷É®{ņčį•=U*FRO?~ŻÓÓóŠ//Ę£ńŚŚę?¬‘Hä'dąŒĄļ˜Ę‚š#Fh|Å#xä~„CÖZ$oŗ-ņkģӈ¼aɕ/łå o_FpĖE×åįž&=ę±d4Hƒ€ø||ūƑ 4ņHą»,J@d4ąqH…Ļ£6ŒĀ³kŸŻČvÆOŽŽōސ•ŌOŒØ 74!žŸˆŲæJóȍ/FštOx» yRŁĶµˆ†,õ)ż˜ś"Ł][K“ģ™śŁ-?: ĆTŠ«€U½‹‹ĄyŚ»kT¼zĖbŸ{¹Gß\6Fó“‹w‘/²[Mš$µ”C*Xß w–š™GŃLrĄ£kƒ.Ęs# ń !ą.8Ą8°˜E‚ œŃ(_$ŅCāvĢä_ŲZzŅ̐ŗ4†ń!³ČK‹t7~ƒD!#ī%ަ{©ī8ܕŃlIO‰¼Ęk’^#pIsš’”šPm=Éå„ą=„‹f{3b‘T›|I‡Ćßp×M椫¹f/Æi¬ķøÓßE£śż¦üĒ\0#L«»aäi]žlØT=g I{Ø9>ņŲ€¦ØŅ•šēG 1‚Ø…6TėY“ f"#rĶ}/Æuz]ĖØ.頃HtÓDšŠx{LķļĘِśr śFL½öŅp b4»œ›s"›b ÷tŒ™€²cmÕąēŠ°Ŗƒ %fÅh,G˜ę;-$Ė]O7˜”ēR”Äź…č|™ł“ūQŌuY’  ÷_÷ŽšŁ€śX[Ź cd$Ä8q67ašģFLl†4Ji°É¢Md, wµÆpxésNÉ™!8˜ ŪFF@įŠŲŁ øK…ޱyłĀ™<ȽŅI /Śęß2†-K ^Zc-$¦7īfŌęY^ųÉ„²³i1ōH÷•Kö †ų¤)·'µŠ Ų¦~,RŖot6TĶn·{7—C&.irœˆß4[»ds³˜”ČŁf’bź.s¼p“ņ”4jp 'Ÿ±Č‹Ó²ÓnEØ©6Ę2ØÆuVĶÅņ CØĀ¾•{éLķdŲ›9Z¼.``š#ę5FĶic]£Uj¬“™×°²™C ņ‚ķ§w¹)±ˆ]m•ėģ Ž5“ ‚ŻZĀ*ϳŗ/–Łxß ;^cłŽ3źaé_ Ēfœ|T*™/ Ļ)łŅ&ļ—ĘńŖ ą k,ņY=…™Ü[(Šż¬_6K|ž)$§FĀ Ģö‹Āhŗ3ŒrČV=żõ6cYpÆ©fŽ5ąnf·ßū‚ +ćÆz9itks„Ŗr!č`Ć4ä•ććP ?NŅM u]{r“ędč_Ć̹“±a_*ugĄIÖC?J[o“ue=žśAąė[,¦įsż`i' ‹¢Tœ:ĄüĪ‘,ź±`Ić"K ąBQéā*TC™ŚpJÜ6”7v+źø˜ŁŠI*›†…VF“ ąy\»×•|’ūŸ)Œ3GĶeœ6*«i1Šł ĢioHnłŖŁ˜Œ7öm¬VShČ£”Cŗ0ļ—ŅŪIJQ&KµīŅ™?—ŠHæ“0 źlµ0āņÅ<Ŗ-O½Ę±”¬d›õ‹h}wy.&žTmŒ X'€¢?øtß{ąłżR©m_Młō¢_cB­ '1½m×=ĄŻ.3Ę-‡v‰õ¢¶‰*¶Č†‘ż„;Ž~’ģtUdöė†Äę¹ BĒA£–āąģģ'G«BqĄłWæöųČs]eڲ€œōĪ~žiėńŖˆœ$ŁŌ IķLLŖ"taĪ~ŽŽ^…ó \ź!ĻuéøP¦MDoī䁚ō]’@&U-0śiĶń‚,æćT¢¬Å=G?µeÖŁK…‹?u †ŻĘŇ„ó<śśÉVaüdė!ĀxĀõ^aüdė€<ŽŚł©DĶ@b³½&Ųž> <ŽŽ©`ó Xlļ “æ(Ūõ Ū3lÆ8lϦƒ²³³ó¬:_q öM°Čc^ Ą”(c!é.2AĖ7qŹJ WŽ’Y #ƀ ›¾G‘ĆYL¦éøŃ–q*ļœMåpyōÆžŃ›Ć£Ć™ūg³÷üw}Æ·²K“¤ö~0a¹|čõ–į÷ƒUAų}Ē­‹åŅ €E÷HO·wV.ł '!›Ȍ6ŪŹ“\wėģ%Ŗ ĆU§fć·Óā¾› cyóNc“mŁYŪsłWUpyŠ©nł‰ģ8 cz VńäP$ä½ŅJńtĻ\ÓųĻ·4˳{dœm°Ļt‹ŌaŽW4»jo|ĢÜøe4nē{ĘKxßĪ“„<#›F>(yōÖ&Įµ”ĮŁąwƾČŌĆ*ā÷Õ²‡āOstx_4A-Ś6Ø„Į<™žnXdzå°ČĶyž<(įzDc8¶ ³‡āģ8ŽM<+ō§ļ[/°G½Ģ~t«Ā,ģ­E«šŁ„ōÓ"ŻIE{€žt&9/Ö””sz”aXŻ„šŠGĖZ Q=pŽI, ?‘QŅh²qķr“X0ūlÖøTu§ž%r¾>,žE øónfčžē‘ÓÓSrxHŽĆE^½rĀŠIņƒOfLĀõ>Ž—'½³.%˜5Š&ūęĒĻž>ķlżŲŁŽīożälmĮæm¬ž6¾26> äŌ8£Ū6įźöĘ<\󕍅cٌ+F­'škŸ4öCū.ŻģóŅ)oؕ™ŽŁĀ5ų<‹äö|Ā‚ę-/ \Āēźd%F¤B«KŽuģŲU‘ŽõJˆčpĄs’w‹­ eśŪŹL)ųÕ9<j~ņOų^³“qi©PYŗoą79C9É/d‹ÜŻåķ‘gpAŽm¼—Wr©üÓŚÜLŲYF@£’žć‡O6¹Ä“H*…N8åÖø*S!»c­[VuNO;‡‡ūŸLēźöä•é¹^k'k©Ż!\Ā4Cżåļ½³7 å²Å#O±œ™Īrtf gד/ČŪWo͈»#sVŠMcyÜżµ €FźbC ”žŠ„i5HøßŃL;éaöĶ[mźŠšĢ=Ö”Q(“}éń}ĪÄ/‡tÖlAČ-1ó±Ÿ×ķ„—ań /DĢ_-ōkū¹yaŅ7¦nõ@y‡[åćš[¬żł“ĮGžV2øČA~’ Ī(±H×oāŽ—gJh€Ÿ-Éo«ŹõˆŚ/²Ą0垝}Wų¦ė8éOP”¼ĘJ½L4Įv„ <ĢStą•(ˆEfR“łöK§a%”ņŚ0¦±fŖ=ńQ^±Ų|§‘Ū7łs„Uȗ§rš‹Ō©ŸymKÆ0MäĒ74’: Y<%ølēĪ 0EŌ”˜«ļ§l‰Ł©›ŗ«ŖƒäūŅz¦Å&’!žć„ō+ƒ:!£XĻvÉĘAÓ`r(,ėM$_8i'='ML?¶ÅŠåŚŗ’ €J2;ręāzŁ4–śhwį‹L³’QJn&Ą˜dµ˜ł‰PI°[XÜŁß\Čg?ŗōü”Æ gip>é ŠŲ’M­jĮ9*Æ5[LŽ"OQ`P.ōĘśkIėõ’Y’™`VK"ß3|äćĒ««dŽā8få"‹•ę‘m®żPK .3|Q·  Œr9 briannesbitt-Carbon-d046377/src/Carbon/Traits/Creator.phpUTŲ]Ā_ķ=kwÓȒ߳ŽÉ?`†C™Äģ“ÜÄÜ&d|d«mk°%Æ$ē…Łß¾UżZR둆{gŃ X–Ŗ««ėÕUżņĖ­ÅtńąAūńćä1éO€Œ%š¹°üxcN)ٱü”ēĀ£ŃGkB[‹ąęØN~ńĖ%‡4:aH^ńėk¾zakäĶ_ Š7žĻ—³y‹kߙLCb¹6™9#źP„;öü¹:žŪ ‹µąŁ…C/Y¹ƒżīįiQ1śĀ©’K+ ¶„¾3\†Ō&—N8…7@{ą-ż…ŠlFlūkĶiä˦|čū–/_†ÖpFuļܐścĄœx×½Ń6%ų°ļ^X3ĒŽµB=-}ĆQ }“ Ę'–;ÉA mtƒ™z¾x<ó‚„/EzśĪœ¦č—÷\ńDĮé 2ģųqKm8 Av#2āOłx—.ØkŌ‡)€7›y—Ž;!sN=;čø×ü; 8Ž„UŠ’dBĆ> ĀCļҬ3Į†*)>= p!ÕGĆ?é(ÜwŠŽ–h¾fĄ žźū@.רč²7-±Q B¾¾°|bł¾u-ž“ŁēĀ÷B؆Fd×fVvĘlmŒJJ,ā‚V “r\(éŽhŗĀcn„Œm!4™f9ĄŹŖ„ę3XŠ‘3vFÖlv-(čt…Eu‰L‹Ģ=ŸJ1,¼ p†ĪĢ Æ¹ƒŃŒ@§B9FŸ†Kße5²ŗsé| nš4Bw²rѼW-eJ«:¶RKÖĀ›4śpź{—ŃFRĖ!øš0.ēĪ`5ČdTM‚µ4°qĻłĆµ/gL¬l/0'c)u„DŌFĄXC66_EÕb”hćߛK$=£”Ž|Å=ži¼oĪ›6Łė8 µ4ź/"ōŸ$hs‚»œSßqĄsĪGłxµ"k ŸN€~45öģOgŸkm£Į)®×ó"U‰Ł2#I‡§óÅ»žŽØ#Eż‡¾ ’8‡žv›ģóŽdF)xo”\®w JĶ»ƒK0ŠÓŠæFķ =īP˜Õp£ŃI!R°Ū °dĒČŌ÷–ŽOķŗę`Š4:_„× —D“77‰ųI~sŸ4 WŠĖfĤæA h°4‘`eqÉŲeKJŲ»™1E{  ų gļ\ŠŠėKĻ·Ń̘giy˲soōq'¶žc“R ŹØŚš'Ō_=’cÓņ½%ŻĢńŽ1.'d†‹ ÓnĆ}Š‚(£åŅæąż–cožō|ćÉó·”~šK¦ÉU¹NZĄŖpÅ3¶fAÖņf8?¦²4ä÷ęĮĪąš]Æ{²æ„×UedMÖĆķä(-ØaŖJpaŌ ;¬{ŁźpjÄ®ŲSīōU—g"7šy „Zč~ĄX‰ł7R£ņ6ŻręYG¢wf\“ł Ō­GƒB7³Ž ė ƶŁiOFmџŚČźÅl౯Pŗ©É€ė/Ņž 8m łd^ ZK’ҽD}¬)„1I<­ Ÿ3]š[š2”pĖd Ž üŠ ²Iųüœ>.ÓDÜB ÷čćxg›ÅŸ 5œ ōƒQ’VÜĶd‰eT6Č#Ō>m·wCÖ6E·˜63T䞍Ņ3h¶¢n^>/ŃvF\óĘ.¢5Q”¤ż~NbW‹ēh2’-ŠOō*Y,YĶy·Ą·Dg(Œą“[I‰e’«9Åż;›žČ(ĀLE—RÕ„°€äźZ®ŖwZg¹>čš-āØõ’“”Ój c°xqi­53^^j*½‚ 9ŒĆ/V»"ūZÄ£MęNy9ShLN€ÖŠjTŚf”ŹYü‘†9āÉ]Öiˆ@ŠęSńŠŌYݚ€½9@ǧƒfĘ!ćµt™Ė–ÜēÅ&1™/''B¢÷åŅŽdÉRuéՙūÕ“"³Q ųƒ\:FˆĒbšAMpXŗga.!K}2ž-”/!ĮµZWw"Ąko‰©ķ Iv:`35žēŚÖ5čĻU,żh`tģBÜę[P±/‘A„µÅٟ® (YœgeŒTö-·H¶øšī–qŻŻ ųÖå1ćŁ×MÉtu:±óaqÅPO Q½‚6¾MÜĘķ}“¼–¤aVƓĮчr"sģYg¹„ĮąĆo9³!ƒ ÓXb°ZŒyŲŗ} ˜bœĀŖŒ;V@æŪõߣ®·2źZT.)k Åń"Օ®E%J,=é_ 2WÄŖŽ›Äų=*ĪŽcЌq+Ķ:Ė+u^Ų%J(³Õj}Ą/°ÉåOвš2{b¹sƆ)±µž¹ä dN£iƒü·µ°\ƶ}kčŒ„†£V±¢’ģÅEOX6Õf÷Ōį#Ž為d.n ī…˜s0Hé=“ŽŠ ®;™9Į4Ŗø|hQ$’ Iy0m#ąŠÕ‰įQj7Čhéc¢H&3ohĶ$ü„ĄĆȲŖ^Ė8‰<¦–¦¶(ļc³7 !NC…C’‘›‚ž֋łćĻŹ„ńDĆ+eg…ņA(bOʛSeØ2Ŗ¤A ź²Č:²X}ś®Ind? „ĢŗXKÄ JҜ[äēÕŁ)śōb^)aEÄŻ;$vŲvśšoŃNVqyK3Za°‚ƽš<÷|°ˆoÓj^÷ŻĪĖŽ§ķ×<’DU~—ÖG…ļ%zģL@.~¹Xx>NĄ”ŃgrėęĶ­«Y/fiŲų4!N9Ž;†ųģśS60ż,“Ūäé2tĀ¢8E3µbāĮžaŠŪž­žŃ¼Ę ģœŲ€.sāz>ÕÅłÓ³D…ŚŹĢŸįj' ņt£Ažš/B’ų—Ā!Muč«c~xM]ßĮž–811ź"l*Üź$Q3ņłBŽĶ *rŸlI1-ć…E¢e1P |ä®0—Ķ˜£¼3س%YčģpžQāH·O™DäĢE²Ź„{f‘€¾—HŸ¦‰gK¹#o>t\jže`ń2­FC’Ž1+ļ%‹põÆPsrq2UŹ{ĖuKóö¼AčÕbŗi41²ī4_AŌż&š¼r›6ß6&›¼ŖWŹÜ:c"TG­ŌŁ3a*āSČ µ)Ö“3²ŖÅĄ„‘Ö%orŹsf3ģVĮĄm’ä”Fi°²p£”6,>sŹ2q±Āx§R.Ķ>ŗĖ£ •Ļī,‘æ0Ē3Ļ;1£G9č„0tü^UunÉPQŖŖą‹9žYŃm!‘¤ĮGÅ\±9Ÿ*‘ś.S±˜4ɀøXĢŲ±sõžk&wSɘ)ėKˆ¼3ć·Q±”¦Ŗŗ¾®NżPčZbœÆęXehI“é±'ߨ¾7Vyū’l¬ƒ‚ė؃aŌ[Šy ©?³Ö~RXŖĪw+śN” IƱĘÜy+ę¼JBŸŽM懠ɾČAē‡õ'ü?”‡;Jå ‰Xj­HJFr*w%ŠB½2ńlŁ6 "_hŽ™ŃYcś=ŗž÷®” `ÄNl©@(*eńbg u+ńÓčY˜é~ą³ą_8‚×IįĖÄļ§`°Q /†Öe !¾ņØA|€„”»ųyŻņ9M‡Īģ 9lĄ†F‚_®ßA•;m§.Å¬@` ›ÆHĶĒrŚYI/ÉÉ·<ą/¶³õsõ±¬älć\»ØtąHWÆĢb„„¤E{’ŽT,Š×ēlč.ō)B:xÕÓõqjnW±ŹtQ‘ŠxśąÓ Źņ/.Āś×“!B*Ż€ų»‰ķÖŻ³¶Wžs„bUo‹mša“Ń8>Ķ–!QW›;{ōoā꒚ёź~U®/¾o­:GTd•ś’ŻęŽn£sĒvq‡āw ¹†ō×¾…–¬Ėæ{+ į™r°Ø>«Eóķ‹Ųģėł¾ū~Ƨz„Šx‰ā^ż.Ā•C®O¼«ŽÆ”ś‘bjOUiEKFźŃnĘ\ł”±P0’€°ū]¹½‡?»%¢Ša!ސ‹ē;ǵfżŹ}tNįœhF©`4­Õv½c€«‡hŠ Ē'Ż·ƒ£7oN»żĮĪöq’ŻI7³­»BÓÕdµ·z›Ŗfz«j"ŖĪ6ĪįGˆ¦É'…tYóÕb¾Śī­Ž{õų0Ø@¾O‰å³õøž#ĘJ|_kæćRŖ=©=#µ§Z—™I^%*ÉI¬OIķIŌ†¼-īo3ƒ0ÄÓŌ3 bæŃ Ē7Ÿ°óDȜo£ ŲąžŠĀćāč„;÷l¶,=é[H¼9HŲ®ŲÕ'V2)§ Gō{¤cpp‹ü€“śSoVÉēĀĒą”Ņ!°JكÄčgžP[.ŅĶ÷°2e·A–īš±œf6s3t€x™|^āIA.upĻŽŲˆ`;>…³k!a'QČóŽŅBI行†Äų?FĖš³ˆÄüĆb › Æ%@@ż$²šė¹Ż`d-(¦:Fl‘ś©Õ Xb_ NiųĆö­ĒŸ”Ÿ×Śō}†Ž‘EŒćX‡­I²]h“h [eBŚ¢h®§™ •ūģČ#®ŒŃįž ŹęŒÅ!HĢ#ŚåSTr š—P”K×¹"tįA«}ŠIåxfMZA nmÅÅ&Ō@+2%ĄäŃĪ?»Ūżnæ×¼9:ém÷[DŪ4;š+=ưfu7ų1¾²łÆH)ŖK¬ņĄć ŠuN’P¦^'tB]HB‘“3āHłcT7ōŲČwœŸ~{ΜY(Š @؊ńP²dÉr䩿j·÷’ŗ™ŌNüśé“6”>%­óśq{ ż·š˜(ŻŌźĢł¢'L)»G µŪ;3ų±^ĘyńņZ%Żųž#üuK,ļ” h7¦ń}ż£Ur˜’G{JĖ”’ōH:N3°ęč6Yh2‡ “Mk7_9'{ę[ļ+Ķæ¾Ų Ÿłķ-Ję&ŗĻģüŌR™K‡^lŠÄKÜbēűś Ś€’ąßž;ą»{!œ‚¦É™bXŁrœD.„6vuŲ³‘` !ˆ ;z=Ež‡ÓėłŲsÆ?ģxó“Ī £(Äa”ŹÉ2aō0ꎌŻćWŠ$\?ĢĪ0Též¶žk?Rź|¦n”Åķ­D“óܜ._ą!Ckō112 €œWżÕŁĮģüÓFćŁg–™+˰Y„(×aĖ· 1i·sVƑÓsżbŃT—/ŲR“”Yg‰_Ń'!ŠÖs'˜¢~ŪźXqXNiʧ„åE³HNĪ’īƒ¾k3Ō=±ŽŠ£/~…<ŃTˆ€dJąmAquĆņ“3Ÿ“m£ž³bdrĻŚN3Õu‚ ØĘū՗ح×kļī¶ßƕ_Ż=ėKWŲė‘Ż)©ņ¾uęWJŹäł*OÖnĆÕ i8/Lp¢Īž×%ķwk+ĒdŠm¤c»»+$¬­Łk xğ·˜H3‚åś5}¶~Žš„Cي¢v@éŠ[.T ©³6F¢„ŽiĒ=īęTVźÄ®N¢‘zNŗo»æ·ŒÕŁvów«ysžćsļäXAT¾wM‚¹ŲĀ’x“ĖÜŠķ3į=ŠĖxĻŽēģq€·¹S0ɘs' ąA@Y+wK¼›æ_Ė}_ v Ź@veCn *€x% “¤1Ż’÷e*±'ör·U•ØĢTänŁśXBĮĒ2€é\hå$W-$$P®nīIDosķňŽę#*³’y€Åß[yļ·KŽ—YaPĄĆ'ćqīūr€ U@*Į e1„*ĮU®Pøģyīūr€2Æß«ā•ŌņĻ'ńOÆąmŁūr€ U@Ź`&eļĖ*@T)ƒłµģ})@™Ō.ĖŽ—”ÕpÅßæŪŚŚŹłM€ä½/ jŽ €Ü}æ,©)ĆQ¦ č†æĻŻI|Sš{Łū€ā,%ŽĆ©’­[éŁOeŌæfÜķLž€°ŗųqѹ58¶Ä†v°õ°x¦2™i•e÷_¾÷œŪI'Ōā;+uß·œ“ąiš- żĪtšCõ2ĀŽGįn·„¶P…¾š{w™ų‹T.®ń»Ś؝n˜ŗ²ę„¦ŖV5ŅGw:ż“ķĆӃķ~wŠ;:ģļ’UĢīöūüĶˆŻżnÆĄ×V«o¤~x"k=ėc® pݾ°|‡ż@tVü·•f=ߞ]Zׁ$ŅJž÷IŲy|•ׄ€{N)¼›9)~a<8u“­Dr? RrB„ō)?sDƒ:īTĄĪŃrItž3ėņ®‰D2eø ‰‡«¤.¶žT Š‘c³sē :ĻŚE“ēéKØ:ÖWEÓē <¹Ģ׎ėپȉįy§ ČEš&ŌIą Ķ1>ŒŗMsYA&äIćH/ŹÄ+õOĒgė͟ūēlQfÅ"'X¤øD¢Ą™Õ¼a%Y$Æz”‹a’‡%łŹy«įr•ßꡅcøöCü–[޲²M»ź"‘5¼š;©9{1’ d2čÓj­YH¬ĪLübœ¾yŸ^;.Ų¤ŚŽčsĖH­ō,'4|~šPK .3|Q¦[H4(H)t6 briannesbitt-Carbon-d046377/src/Carbon/Traits/Date.phpUTŲ]Ā_ķ}mwŪ6²š÷ž Ō×­¤F~K_¶ė6M]ŪI|6v²¶¼¹i’ė„%ŹęF"uI*ŽSēæ?˜@‚$@‘āHVīytzKó 0üśxr=łź«­ļ¾ūŠ}Ēz×^ĆŽČeü߉Ę,²ųŚeūNxųü§ž{ēŹŻäm”y»ßa„žć³7ŗōā˜żz _÷ł× ŽģćßdÓ'Aˆ€†ÓшõƒÉmč]]ĒĢńläõ]?ā]śĆ ;±ų]6¹’ķƒēŽą{ĻöOĪā_;1»q"6š¢8ō.§±;`7^|͟pÜ£`ö]ŽŃ‘ŻśŹwĘnÄŃW¤¼ķ…ŽGæ|õՔwó‡38vćė`°ļŒF‡ūī°ųŸÉöāĆOG~ģ†CŁšģ„zĮĄš ēŻ??ūNŅqō–#“Œ¹¼(šĻ}/6#„½q4OcēräĪnépFŽ@”P¹żķdvŪs’½ÜųOݘ3„jkĮśŖ­ĻjĮ6ńnDÓP²žĄ‰]” §1żE—|^eæå¤®~Ne*¹¶^MĒ®ŸĒįŌŽÜ>|Ļ=č]‡Į ˆń—Ä(÷X䍹=°½—GĢżscįĶ7–¤[eæ:Ó8}våśnč€M\޲s;œ‘2nėüéæ•Qž> ƒ‰Ę· ?ž³ĢgżÖuĀŹ ¢ RŪqąĒוZœŪJķ®¹µWėŚó¹£ØŌ4rū?صV$Z–A¾Ž'¾—ę_±õ˜Ė6Šń„Q}DēÜAz~ßEĻŹ-ä#;œ}“L$" ®5ņ¢ėēöÅš•ė¾oŽ Į% CĶ ō|v(:©„Pt„ń!%V€syŗ<4”ČInƒŹ7Ā)ƒZP>Ńą“ēÓ\h‚¾3r ÕɤOżir'ĢDgģłžEļčų°:ŪžS"9C½ą*^!T¶¬¶Ńp‘=«ņUĘŅäžG\o…‡¬ūBõö•ZŽŠŲ‚öŁį, ƒéÕ5ūńūJ(š©'‘EĪpį5ŸZŠ”ęōūA8aw"ņØĆB“Š8½Ø×¼)³Rq}’ÓO•pą±!Yļā3܈9<Ź| .jwDœ7p‡ĪtC˜Źc;>Æf²Įp¹q±£ł?ą‰`¢ö‰Ļż™Ļżši Ć`ĢĪ{ū5°;Ęij“HģƲ‹9°{ĘgŪ4øY±»Ę.JpĖFр[…ģø©ĮDAƆŹ':$ćG’N“„u#"”ė l.Ō‡o³6ĝgSŸĆī$žį'ł³OCxP;8Ņ`·#Šą3Œ vĖ ] 7p¾“Ž”»ōŸŚŽ~ݟŽ/y<Ī% Īæ‹?ņ ,vĀ†Ž "Ŗ22:ņ)§})z,ŒįŹūąś¬¾ ¼ ÓQ‡sģ†ŽĄsĒ$x­9ćµ­µÉxµ÷ü˜OMp.Ž—A§?`ß|xć†}XH;į{“č-XŸOx*Ō×öŽ9Ö/«b=…Īkb­üĀ^:%>įĆb¬Mī/3ć†%Õjø}¬¢“łżaŽīJxqݦDŠFļų¢:ˆķāŠń£²,3ɓkź"N邑ÉÕę ™$ļĮbŸóĮńF°,ˆĖ~IˆćųWS>ēŖD-†`”$#ÄU%—OpH‰eģƒŽ®8ĶąšIU:£Š"Ä^ZQĒ”gE»RĎ)Qüh#£‚ ƒM ‚ÅXµr§”£/~“!õ¾É-ĪßüąO7 ¬"”•G‰0jØzųCåÉo$¢m"|~“®üŲp«,„hŌĒA”ój …Źœą\œj~_ƒ”F1H‚¦;ĒĻv5VĀ`ä#P_Qƒß’ō#LžóĖj6žwŹćB—p'÷ *¦xxåńųÓļsw·Ć6X5W1pūĪ€tĶwoŌ)ĪeXŸ÷öSœńĖlŒķ« t±„q5”Ę q nXAؼl 7 ?¢ĢµSlҬńcš”z§ f^t÷ŪJ¼öAĶ”–åŃb×Ŗ["ĪMÖž#€=X@3ūų_ü9L»#ę„.ÌØĶN5jp·˜’žŁŌųæ‘”ئ’²–‡©bČJīqćŖHrŸ»LåĄŃ6ī²c²¶"Ęb½ž鿌×LP…HÅī*ā&Vē—†Ū8؁[oźF¤Č•ć‹ī*"÷Źų¤č•#w£ŗ«Ź»ėiHʼ¼“ŻUÄīIč-Sė†Ų]Uk•{Kā\$»«ŒŻŲ…®-vī i¼2åņ·üōuš«ģƒ/r²Ų‰1|ĖK¶Ė"˜²ˆÜŽ(CĆ&;"l6q¢ČtYs½]X£ńƒ֖‰ģ†Ž:‰ŻĪé%‘†E%¤Ŗń`@ņsE¼O܏„HąĶ|Ž>ÆHĮs'Z1 `õ¤`(°Ś²tCĮmńū1¤w‰†¢“:·”Š!M€·0x^ĆPV‹4”€”šįŽŹN* €÷c'd£{5ii”Īm&t87G[XIõI ÉJį6RoŅ»ZKKpŪė~lé]āX¢“:·‘Š!M€·°x^ĆLV‹““€”ˆœ_"S©j(" ųžLERL µjĖ;·±Š”M‚¹0Ń¢†Į¬h2µØ£9Ćū%Hģæ'£‘/Ķh²ÄĪm4th“`.ŒF“Øa4«FM-*ÄHÓŖ9Yõ‘&9ł|oĆ M!»Ŗī®@qƒ1‡ w:ōÕĄ“4«5ś¬ =rŖKObRŃ`ō…™TDįļɤHp§Cæ±I­=sš”R/Čx\¦ĒĘ ĖƊE†5āR„ AeZ-„Õ A*Š?E†#!ÕhP•MUˆoŌ…É&5Ōhåč@EŖG®óc>ź’ĆL™{OKż‚ā„…™Ybē_ķ'C›s¹ą-ź¬łÆbŁæ`4ū"ešĘjŖŹÓ¾«Q$/k¼ÉQ;·ŁŠįMƒŗ°٤†į¬h9õčį¤Jķ'°žźįdržą¾¢É„ꆬ¾ä nLR”N†½Š%U«Z”äźQ##É2jråXE]„Ø ēqÖ?8£©KąĪÜø˜ėŒéWÜRūĀī*ćH‹"=Ž‘æ&få¢p¤d%9ŽĮŅ*¤Gyt½’K0šFHB,bf.ÉE›M#$įlė2üVɘEb ÉQä¢> fäbP\¼ói€"V}[‚ėĮĢ8.Ć^šąØjō-Śńąøp‹i‚£¬‘øpebL#,—0«h„eZՒ ÓEb¹čyEC,±²čĀõRnķ5ĀrńzŁK™Õ³`½$ĀrĮzŁ KQ {ž(©ŗŻÕeD9ĶQEŸDĖŲE£ŗšˆ‡HhéP„bģĀu•ޱĖA•„±‹SH Y†_Móyš ŗæŚUTZĘ.ÕÅūUXŠ_„DuĮ~•NWīW‰Q]¤_mŒŖ3ä÷5Ų#¶ÓDö±ķÄŚ€‘ڦ~,7O9…pBL{Aq±-+o£3īžŚh ,ķ4@u.}«ƒÓhzIĶķ³éår¹-i ä6аn+Ż~åÅ×/>š_GĮMCĪSź¶øĀ%ˆ1÷ćdäõ½xt˜”&6f ŪˆĢŠŲP4õ•Ÿ†e„ņ¢“R")åUß|HUåLc ‘-Ǿ†Axé ®_×Āt*›‘T«GŒncD2[ŽĶE&„Ģ(­l.D™$žqÅķL£²‘o\ ;#’ŁŠŪ•ĢīßΈäŸ¶3*y)2ļ×Īe¶ĀvF)³{µ³BęZĆ0P¤.qсō„ K­(“ĢF±Só”g¹üVDņ[Y5æż¦ dIõ›,śC* #Ł9 €,(§–©…ŠRI(±9LˆVūŁ%ŁŲ|c%a$Kjeµ§1ŌR[’ĶG'”ŌH-mĪł]0»ņ¶F4Ó^[£‘ŚŹŪ‘ŌVĮÖ茕¶5ˆvlNj+mk„R»_[ĖXjŗ:ˆ×Å/o‚“:6KĶH;ÄD¾Só4g™¼$ņZ)?-ƹRäĻ>QäōąŃ“%*6i=k–*¶~ŠF-ع j±TnK‘ÓCĢm˜7ĪP5ć7ĪĢe.SŸfŚģ's¬Šhį•˜ć8·Y.Ē*č8žĢ\Ø9ε£x«¹ŽĖÄŁ%ź8i­h–źx6å•F;Ø9ڱdŽ'TŠė89ĒŃęNtQģj'o–źĢįÄ×v‹gØ|!-ļ…G_>ļ)‹Ų\ļ½§s7÷­÷T—ŁŅōžŽ÷÷­÷„¼_‚ŽēNš‘ųūōDŠRõž°v?Óõ¾p ‡JYhy/ō~ł¼W¤,Äß/‚÷‰ŽSūūūÓū…ųū…ź=µææ?½_ˆæ_˜Ž‹J•‘ŪQó„¹äIY)P–äČzŸäJ¾«9ĪRł®ŃAÅw}‚CĪw]߉’ČØõ.ń*a M&ټA—G,9j‹!'”Jróš¹*:D e˳¹śéŁ5Ļ*£·ŗś¹ÄŅ[žŻĶM*•ōč-on…tˆ̾Ūkžż²j¶G ½/ĘöšKo•lš<š*J/c{4Yg«d{„'ƒWQzŪ£‘Ž ŲžøaĒ#ˇ…ģ+˜K\× ½)ˆ„†„®"]  f:čŃŅ™žŠAĒteōL×5pEƒ’éda¤” ŁĮø¹L,ʧµ­J'¶¹Œ‰X „؈Ö2–#¶9‡Š[²ćqÄöV{–C-ŗåYܜ¤Ņ‰ŽŲęęŸĶ®b¬¢č²VG2_)«#ZĀXEŃe­ŽDt+cu„ė«(ŗŌźČŽĢ­ŒÕ.^¬¢čR«#Ż}[øT›öTø{©)ÆgځGq’7ķAbŽć™Ēår<”‚žT9ĒS'+äC«ćdĮ¢ “®’ĻŽH.gs“š/ĀęHÓ)VĮę($÷EŲi6Å}ŪUŠ»ņ6GžLqß6G%¹•·9ņ\Šū²¹W®ūžŗĀī Ą\ābаˆ »@mˆOĶmŠž„r[Ұˆ »Äܖz1 ¬Ö­t{ɕŃ%äkq’zķ ä¹Ņš%WH§ę¹®ääUŅO]gDY¤2Wģ]žĖxRŸ "®×ØŹUY® Ō<'©ČՀ "ž×ØĘUŁ—nčÉßÄs?öFķu×€©ž“šå/ÕnŲ™Ļ\(9Żōv&ŠV#&µuZ3Ēϲl½hęt#<Żķe{ ļŠ›wp§»¹,ÜĖn-›w@¤ćōYĆ;āšP@]o¼)§3£9²äK“pɇĢ@.äŪŌĀ)ļßÜktÓé|öMy÷¦²ļ²{7ē³ J.Ÿ5ŗįt~ü©ø¬l»)—5ĖFv†éK³lä‚f×B²M­šņ¾č½&÷rĻgŌ”wE'gŖģ; óŁ%ĻšÜĒ=7śä;Ķ y¬Y40ƒÖ —fŃĄĶ Q¬Mķ™2‡§Y¶Ō|M™æS%Sj>“ är³,©łń§„›rY³idĒ—9J#4£’m]~|M¹†š–\C‡Ō;g“82%ä3ĘÖKć³NõnYS>ė‘52äĖÜ'C6聵nSŪ¦<ÜųLĮ|ÖMy6øāałĢƒ’׍O4"ōvJ^k6®˜Bhå˲qÅĶŹ7µó×®Cŗ~v š–hä€?õĢh 5J.ƒy,ĖžŌ3ó¦\ÖlŁńeĪĢ‘ ša É6^?#¬=Ś“zќKh„uG«•%šsАÓMė 5”€vß«9§õµ4Į’/qßKņA_N“ņmjį”—"5Æ >ŸS^ˆT±4ś|&BÉģę5Ļ›Š@ĆģŠÅĢkŚyĀ:K_–+Fh†žŹ˜"M•źR÷ę—=Ο£Ju”{õ[ēĻķ¤āwóė›Ń@Įļź÷.Ī‘žŠŒłņ ^ćE.;UHzn›¹Z 0ÜŽ‡Ó? ݾy Ī‚.hr¶Lż~,~]ĆwÖ¬ģ9…Ē(/E~"7Œ>°0‚ąDŚ™(I%”ŌEx9±OS„qw„”Įe»#dČ.!öiŠ,Ś’:Õ·pT'ÜäJ’–$„Ü hšeņ 6Ķ2RjcL¤š Ę ”–Å%J‰-•?Y ¶É„ŖšŪÜg,@x‹]šĶ2nL̽ђ,L”É„ž&Ķ^˜(#g.¬ ` X«å :VĻXž Ę˜ĀĻ,ci›éķ ö3é- ó3Ś…)‹õ3‹¤EZl¹\hżL99sa½?C€µ°ZJV—Z-=ʋö3õ1–&–~¢ė Œ÷.£`4Żo8|„ϦcĒŚźQJßzĄ ³ēš&|BeČzźĘˆš€Cs9ŹüÅ6vĒŽĘNÜe-Õa‹ƒŪᐘî”[ŗĪĻ;‰ĘšH§~ō‘»Éڇ/qą’w8µPM¤Ļ]ŗ,ŗq&w°Ł©Ā‰Qą_Ń2ĀČ čfµ²:uGNĢõii*”:\%N€¬hQA%V‘•č'ĮMcvŌP ģp•Ų”ė 7jčÅŹq#§/|C†ŌRģp•’U ~ŌReóXņė–3ƒAŠ’Ūś*/Ę#Č_żõ°d¹ģ˜³;°’ōKņŪ~0ęĄ½(šõßü.¬Ņh?qÜć@ūį įCśŪ±ĆēCŚ×€3Ėć8k?McēŅyńmśŪ‹Ė’øżųČ÷bĻįa›‘€ötß5xpq§æœ¹!¼ł)÷fĻbķ›:QžžtĪ»ŌCŃŲ_¾ĀÆ[ß}‡’r¾žp¾G,ŠņÅü_T=Ż”-TĆß?8\dačÜŹ_¶šßIĜ.šŪj '‹ŁDn ¦\|ą ™-8mXux$²‹ŅTē#R™ŃĶ`ˆø·)£‘G‚>x€Čąb0dIłā$Bž„š(XUÄałā!ų JpĒq•;‡CŽOĮŠp~yéN@ŗć/ŽĮ”†OppœÅ7‚Š»ņ|gÄDØ_§7ĀEe1ņ’¾źtr0OŲž'LŁ7V= Cž>ØFĪ•[ōńuÜDģČēØyÕŃįǾ‹|óP”iÉ¢~‡^«Ü”$Kœ‘3t…LtŹŚ’’n†$1;ģ Äæ¹qŲŻUĖDFP1ļų\P5ĻLÄ łR\c‚‡¹r2¬Ķ½l¶ūN±F,óFž’ž]Ēńdwkkr=ŁōŻx‹Ļ\§ĪhĖõ·`TAe“k üū‰CŲäͲœž^Žtžņ¶=ٶ]—s\ćų ±»›ae”øwóĘÓ±—>ĀßQZps* D:]§ŽĻUų[š6ŚŅń*ć;pU=ć=Ѓą3‚7;]öwžy×­õ¾ž2NōzĻĪ.^ž^¼>Ü;­ Ę+ńūš/ćX…oo§ų<{Į§dˆĢ6X] rųʃ=>:9ļ ĄŠÅ„óĪC>;ÜēseYō’ƒż®ĢœÖ&·Ź*å¶é č³Ō¤œMßś#pėńµŁpś{Vī0J‡Å`;*1ż čŠJ\0`NB7Ź,ĄĖ:ā1KŅü˜śĮĶ+ībĻ8øŽ'ĘJ'xć6ā½ń[5÷Ō#ß]5šAuÆtL’^ĉµł:²AąŠß½ńdäĀ\š1,ӂ±÷ŃMÖJÖĮ‰ēČQ½Ÿ\™1,ßN Cņ,é~œĄŲ'qn#ŻtŁåĶ»<æ×å?lāĖjė—ä9÷ččŠŪmD¼£`qÕ^u4hˆ›ŲšlÓek)H)4ųpÉ“æF$uć&‘ˆäŪo™żi"<ČEę»7FF¶3mu„7[z1¹B7]ÖŚ,¼Ū~ėEB„³;ģ1{ĖUõ¢?ās õŪ.žs<ä/Ķ–ŠĒVdGē’YĮeÉ<ÓEV'ś§W×]®ÜÜ|ŹķXAå‚Ą©„“‘ÖĀ"W:§É4†rPĒ3Ąč®Ą;5…ÓWĶ8ŖųDŁ-ē*}pEo‚£–YcŖ`y-‘Jē’sJVeq Z” Ķ`•’B6&fhwd¹®Ōėfs~ÓR[\!*­w_Ņway»‰Üѐ+§ų}7é"@#=åćĆj«Ż[ńļ[½reīGŌHīīŽS³ßä “Ź›¦ ļ“;Sk~O!\®Ģbę²ń3R5č³±YóóD:k Ž_R„’¢šŸÅNˆŚk±Ø,ګΩcóO9öō°×;<=c{'ģLž=œų˜§²°”&‡ŅÜÄ cÖ•Qäs³Ģ)Īż÷Ü*}žkЬ@_[p€EĢÄ$0ģ…-Õń‹ .ś6"c™Ż„ŽP6+ŸŲŃܰņB­¹ŠmŖģŖ«Š.NPLÜ0¾…•©l •İ­×­bōUžŽQˆWƒ:Æj ļ0L–…Å-æN*ömż§ÖkIŌŪzZė=-°myµŽŌ×VT³OX÷ħõ_Ōū-{}ö>qWu›µa-Fģ]uŌŲĢ~’?ĖNAb?EōtS©§Rģm„=ż-ƒ€„ŸDO*uutöbć矶wÄżˆžt|‰kµX„µ+/IŒ`Čóē¦'pŹö ­^ _'ÖóŖRĻi_ā~U_ (Qķ FGžqjń ™ßaœhČBœęOŠ7¶ģpōs%¼E7ē3‰‘=¬9ćµ­µÉxµ÷ų”‚ł€>š\¬Žż2ˆāōŲm÷Ł(øqþçfc'|Ÿ'69–/DœŹˆģsD^WEd:™Ģ@äZd±Ł+ć¾D³\‘Aķā}śW#/ŹqÜ?dMeT±ēņ2t?ˆuę*½a2Č”±ĖƒŠ]Šņ¢3ČŃTõɤ”÷””ut<ŸT²yģłžEļčų0§ų,ǰoŖŖA‰ŖtŽä>7bPfF™U'Vcģ74aMõ~/«ZżŗŠ÷R N0>ŌuT› šéœNįb%PźUĒč@$ÄĀ-—ŗ ĶɛÅ>ßiqytćې‡ÓĀbz4‡Ń|®(ēƒopŅų®³[\ƒ‰MX®ķ/Ŧ2…ė\4ĮIUŠ»l» W=ārk±Ē¬%;õbÕfs2ói·¦­Ūb;ŪŪŪł9M‡\žųńūR„`€š…Äš¶ézö¢ąUõĪeėŁżć=8kƐIĢg²—cŖ³C\o\„£³•Ń’”ץL{£¹Ōž¬„/ё_“Oņ rl$„õʾT' „™üy1±č tąģŖ²r˜#n%;”{ÆEņŃ«ĆĆŠćw‚kˆjY° –:šņ›{øŠ)i†ļś¢*äMušQ¶®—R6ōĀ(†nłŒuęų‚CÆšźš‘•‡}Å)€EBF[@æą¤]Ć tšņæūB0śM/Åc©2’2Ų"~` Ųf +E}½Tšł¶^[’‹7ū|‘ž®ÕAPZFDF# ™Š£®#(ķ< żœś(ˆ¦”µčCīM”8¾t 2ĆkTfŠŁĶ“¬eYµ)ūZė°oæĶ@i­‚åĶözˆ2Å*Īw)§Ļü >ńZėt°”Ź„åÓ2’)X)ɝō,]aBJ?ƒu…óü6ōŽk4we%ą¬śĶ*Ū¦ēźę_1榊Āژ„”˜ɼ*‰7 cާ7‘Å‚£b=·ĢŠ…(” įēę:H+ ‹fĘwSN »okœśµ Ģ_ƒL—µ >']+ėZgR’{"†LŲJŃø2ö¢(Å%æ’AŌ^P®p,%”]pÖā”o+'ĒņJ~¦ä÷ŒļjÉc°6bń^ŚŌꕳžĮxå@”;CŁDÅāƒå)š]ǚŹ5sŽ&'ÜRĖCą”°Pė4Ō3dm"żPą’Qhg~hĮ}ŹÅ ½¾+¼¬šø«čgÓc?Kö“(ʙ~V{įg‘ę>v‰Śµ`'k•l ‘aĢp“3„°©ūÄ1wX/³0-->,ģĀ!ńČA{,D\=ęD°§Ā#„ņb‘wÉé 7“•›vé¾ĢzŅ.!'?룽ÅcČ£‘vYƒ°k_NŅ’fsVEÅ «mÖN*²PŒ%)Ä2×lrŽKĄUų oŠĪOÅŲö7Ī­\xŻ4xHu’[ Łaϳd7kĢKd§Ī %ņŪaķ¤ĪM%n¤4WKzr‘µ†įČČ£Ālš’Z“õ§ ÷y;«pūŁæ—p.;ŪĄÉӘÜp8 n€kjÄeIń­²R*›B/<Å·pˆįн ¢(‘ełÉŹ3-Z8Mņ‚ Ż*̱ēL·PuV=-•©ģeż“ą…ÕN)UkmŻ,ŅQ’Jö¹ĮÜ)ŃļäMé,±«Ք.Ö«F$Ų„+œ™ę®Õ+ ŅģDžąÅ°„$÷.‘2æ-OO•¾ŸÖGüUĀ2īœg«jūOOøĖhĖsūčĢEn ’7¤sč.ī\e`›÷čį}CŃĪąėvĄķģ"õ§=×A.‘;µRM·»:œŁé[{ƒĮ—āœq0õ’¼0f%\‚¼@£‰KČNJgų˜¼aĆŃEc'Ö`zÉ#ƒž3 ¤bę«"{ŽŠżŹ~£¦ģUzq*GŖ‡8SĪ{ū²Zƒ^MńŖ#Y}ø‹•©™[’‰¬]«ĄE׎0–ÆĶœø‰¾-€f„0ū2įﻓäŲ“ĖŽĀ›P"é‚S G …3Ÿe3±VęėģxJtĖ·d-†œD—±’Dč^ńĮŲńeĶFącå}ņń„tń¶šČuńŗ”Øü¾Ž&ü­Ż•b°^Ģ 1ż®•qĢ>HJHĪ9ĆśĒ†T‹”©ŪXŌ›ņ½x_~‘Pä7€UžĢ‰ȔBPį –Ó;į€[«ˆDD)M%” ō­ń5_4qūސS  ›HŒ+ „v“\žF+3ʌŲnäę‚s‹UĪ”œzß$<«¢ģóaąŃ&8~<¾6Š4zžłŅ„ŒpŠŪ˜žˆ„*ó;iFfc›ŖāÅE·ŻĶ"?Ķš¬œ8R%gŃÆ2RŁ»ü*zŌž¦X”Œ†hxł36j±4½®BÜi‚Ó$uuŖhŚĄ2ńßr³\IŻzA”šA/RŹŹĪUśBKbÄ|²¼ü’D39·”÷ԊŽĒ–ł4 ‹ Ć^‡ŗé×ĢĻu‘ńz“qŗÖWˆEŌ$“1]å3Ō …$ę2@ó’x³ž°"'7H4…+-°ÖőøøoĻšqiģŒ^B1<ģājVNĀ#U¶&yķüXė»=xŃr/oÅæ‚£3‚h٘˰N’žÉ[KØiÖÉ;‘xŽe­]yœ¤ ›x³ķV…łf’^ķ•Ōś—fisS3w W#ZŽŽTē•ŠŌ"Ō¬!”˜–7[öŸ¤å…Zˆ“91i mŖ_CY… w¶ÆāOå Ēó)āLfĶč¤"s®óSį®O`¼%iŁYÅg+VĪ ÕĖD%ć Ī1Į`+]ĘøNJ¤7²/“ŖĻ`aOg‚a-Õ0»ā\žT«/—āƩ댲®_uø”Z‰ļNڬ£/óK,{4øoo÷m·ģXŅāµf"ŖEļ]'ĘjD+ž""M'9H(oв^wX~‰˜”$^.%ījCˆEō’›˜rŹc¾¢hVč ŌDāKFĄ·*Q ˜uŖé¦œĪāå«śdöĖAŗ±8¤§‰ś¦©Th ¶VÄĢ=yšpµf€¾4Öü…³^Ķł;3G½Ę&ÖM[öģiš›)Öiė=yŅ · Ź W ć¾ōŒ›G!ĀĻŻ–JpŻW †%üĪ^īķ=gPŲĻŽ#>‚Q”÷mąŌČĢH2ŪŻ¤Önq"&Ņ 3=ąüG6QŽŠ<Ūģ­ †üäłLõĮwõ{<,ścÉŖ0š$[mŅJIŗŃZŠ’ņ ˆ®e¾Ų;xq…¤A e“hcē֘kąNB·Y“=z@įX,rŅcvéĘˆÆ/)]{į`jܲ‘w:”ēFźäŗĢ^–`:ąք˦Z £“ÉĪ”"ŹMR„’ø%ģŒŅjŠč#”ŽŹĶ5GC¬Mć¾?곈 '6Łė`Šė µœi“é+læŽ §*Ķp:G1œ£±Ķ?m•2ņfåĢĘ“b1¹ģn³™€Ävįśöv—µ’;Θ¤õ ūŪL’^ÉŻƒŖ»ŗ0ē +ļYkÄjõc žĆZA¶²c®¶[I˜[ͱȔ qŽ‹Į‹?”¦į+mŸI’ĄrŌ˜éj;£K©źš:ŸY6Qā{\¹ihö<šäŅ…%„NŽY>ĖrSŅ|g:)9p-ŅEA7’§¶m‘:3ßW\„ šMŚv% ģL6•[ÓPhÉø"·vŲĘĆ0gtD$S­Ń$"ĢŪKÜ)ßrH×Īn7Į¶Ś¢8›zLĄbLĀõš›ėīżęń˜Q<å@ä"‰"<ü„>®ā1‡‰3Ų2gt¼›«žł÷æ’mśY™ĄXœŚö"ōķĆV7•µŗyž/›IeWŗ¼H¤2s[R×>Ə"Ū9™pf”|6’\@ī$ˆēĒļė£.˜b B=Čé°ĶM£RŽH°/y‰o¦ų#ØģF0źÖšiøŽĒT±GģG#ŗŖ–Ž cqßßŲ`æar¼•y‘†mc[¹ŅéćB™#ć(žµ^ā©jŗaåØd©#–-„'¶ŗ«ūĒž[-޾Ēn¼ŃŽÖ¦}0ŃŠ…ĄõƒXŪ™›‹Ŗj¦ŲæĪw ŠœV—Q0‚…LR>8#o ćY…{×Nt*”’ý½į“„Ⱦķ÷µŲĖćŹÅ;ˆƒW˰±}ūofå@“ŁXTro’vėįöööĘö’Æ·½½‹’żŁŅ‚Yńšq»0yüŠugcēįĘĆK >,@Ķ{ēÆe®õĆ„.żœõNNž²'/N÷z=ųs.8µšYń±&Īē½'?'‡üųō½’ūq%wńŚ?>Ę\ss6Ķc±|š“Ÿ…aˮřAuÅ%šŽ–1KF8Zļś4ž\Ńió¦m|Įź­ą!ø)ų×ę¦ÄJifGH¤Oź‰@b¦æÉ’pCå¾Ź ˜ŒdŒćĘ#5g†, - (y4ĆŪéw'֟gn.ēīMī Ķ1Œ…(Ü "{åł(ÉgXCOn{„īdäČ뱿qEŗ¶‡s@N~Ÿ;›¹°›{7¼œM•ī{łģåŋ3<š}Gļ{utR(Ż—^·Šõ3dæķÖµ’śõ7vūńī7ßt¾ė|ćžŸą“Žī|ó_8©īA·w2 ¹ž]ł<2śMńX „įPøcug«ī”Ŗz Ü Ģīčt ž-«{üsįś€R;ķ®ŌIæĶŹĻyF¢R»ä=“(,H+•pf„øČ$k $Ć¢Į–ļ2Y#=ä9ŠaP|” KŽ¾ÉHæõ¼‡×śĪ8Ą(:Ų䍻Š® ×»ć1Ūk嗳Ÿ÷ĪjĮ<+Ż"Ü:P30·¶^óOh-Øy°ĒĒģ Ė,€ėA¶ƒf6>×ī"ŪĒ€ŗlFO漢 …4ė•6–}‰d‹‰ˆ=n+p^±dS½¢s’M/Ąp=~ĒøYåeė»暝ØWrŒł€ܔõ“Üą^£#|'ÆLģ„Xp«Iz%CĶk7ā³®¶©ėĢźöT ēĶsžė;VJHõĒu5ßŃ;{>—Į)Óš½jĘ6Ēr[ą8Sq-M ėɗ/“ĻIŪŹO;Ō«YėBƾ8@–¾ž{£XÜ,Č9ö ¾{×5¼rl{ET—5æōŚöÖŖ5æóĢö„5æsm}ĒņĀŲJ(pk~+²½%kßß¼Fʞ*Q$BXl+÷XWȬ ż_$Ż‹½ Ń(]\kp¹œ‘nzś‰šŅš4O}²+„ÖjEY˜¦2ˆFŒ—r¶ÖÕ¼H/ėfhڃusĶ­4ņŅ \<1¬”S½É¾7ėōM«“ćĖ®|Sƀ7ķsVĄƉ”gFc|jīū™¹õ3sėkcć+Kcsk‹7£±~Q·©Ń{«Œ“Ķ،Ēfä=kū(²¼Yxiéā©„‹gÖ.žŚŗ(oj`FĮ‚#Į©«Ś MöD“ģ•ī†v‚5ˆ˜DVŁ•Óć×ĘqͲųˆū?6ܖ©Źė*ƚÕäuśn³¹„~€ī_cY«ÅvYėA«³™zź·¶B짊®ł“‘™=33?}’āwÜZü™2Lž»ĆV}ų³ä…V‰w„GøqÕzÖ ½#jÉC]IŽĆ9(R¶”T‚*½ „,ü[™O)ųÄA!²‘׏VČņįņ&ˤŅZīUŽmäśWžy.ž’˜ÓŠn“jČu,rb™ü'Éą°„ĀOķµķµP ޼w;zsgŽĄmGX}–’ČŚśŒÕ(W«tµ¦ČČŗnG‡k”=óęĮGŁ)4vP<'¦ŖÄ”¤=m A™īŁs.£Ģ•‰„åąjSu+7*l²H[®FųśčĘĒrw–ö‚Įüģ—˜“•į]œ‰J!p5ƒÜÕįig6EQ­Äź{ż¶–õŠĄ¤’ĒŖ;Ÿ­kCMĘā[»¦ŲĒē¶śvn¢…ų[Ū±3$„Øu©HæQ@¼$cWa8ŽrU±§źJ”ČjgŃRŁ™6E€ż¶TĪšMSĻøæa«_ŁĪCĪōmĪīü6„ģĪr+P²€ŗŁŚlKØŲĆ|)^»ÖåovJś•Æ`(m ƒ“tDÓl—ŸM£”Dz-AZ`¼VÉ>$¦&$Y,³¶tåŁ“Å»‹»„ŚĘ9ž]7““ėįZKy°ŻŠVŠR4–_rƒ{™(Äż¶ ķ2(}¬p‚u_­”§5Āńēs}}Ż*Ä“d²M!^//0UĶ“õjaŚ¢kPyURgÄēŽ¾ČŻ–>jˆ„¶D .<1ŸŒ0sø…ģ,ō5²ŃȞlzėć‹ĶäŖ÷(ŕĄóaXūķ¤²F¤k'’ÆKNūĖՑ<TźÆH_…™ ’ų’Œ}[³ĢĄÉ[5ŽŻ¹…Īń|ŗ•Ü7‚Gś×S’=dŲ³KȆ–„šR“ł%ć© ÅD,ZʧØl\C²9žÄZZq®t'Ģ…7Ģ/ {Ź’ņ8I͌&‡Qߙ`ŽjīXĄŗJwSI0ÉKn X7rØĖ÷ ‡ ÅןšķĮƒ‚Ł÷ÆńĘ JŽÉ­ø·īuŁŽŃ”‰wĄ½}ktdЇ›FĄAĆ“…ū_7ļĒŹpxÓĀėłR.1Ņy Ó¢Īßaē5ś–ņmŠyy_)ēĖy{Z-ŠaŅ ķzÄÖÖ’“Ÿ÷Īīž÷īŽ<½ūk§ūĆēĪ„:JB;ć•”Hb¢ō–ģ®ĖŌ:Ņ9-c¹ā­¢Ė «7ŪļŠo­Gī’N”|4“¾Į÷ŽĮU+zjū—F—N’}ۈrk æļųw³eXƒ€vÖś)[旾R¼Į Vfzێ‚t*Ś“„Ń=ŅŁjŽ2]6ĪuŠŖ:|z«yPm‘œ0ŁFÜLd²‰€TņŁIk„ń„p ™UüÖfn‘lw—»ālŅÅéįÓĆ’~¹ŁŖh Ķ4Ly2dNZqƒ4³š­č†€ą43€ӌ_ņÖģKf=©æ“«fgļį$3^øs³RS4ģ—no±¢$üĶ_Éo\:ŸŪ››©Z¾Łyg3>uˆéš;v$.īÉJ–ś#Ė…#ėåŪ{Śśœ&ƒŅ F²žéLx”žÄuµ„šŖÕņMœ o§ūˆµźZŖ4ö,rŽ•€-y #ø”aµĄė¹LåÖ&ż‘ØAQ»£.ģ‹mm­Q'³[Ą½€»—S­wk¦wEsĀw¶‰-ļ;Ȱ6 –ŁpIŖųPe|Œ™h’){u”¼j|÷¤ģŻ|ŅFéƊ,¤_¬ ÷Ÿ–ķ"x-ÆCĄ[0k]y¦<.ƔR­«ę³Ż”ö©ģ᫲‡O;1UĄšĻhy÷8y×ōŖ_öj\öšyŁĆ ģį벇·ee¦„S’b¹gzöGŠ«²‡OĖ^—=|VöŠ+{•=œ–=üPöš°ģįQŁĆe_–=ü³ģaæģaXöšÜņ°|CQw‡3œˆmü6”ƒ¬-–p-ćVÕĀ‘Kr'”åuĆpK¹³MuEI²CwÉ'ŚÉ’Ć XK Ž„³IE¬ųµÅ½ŗŻä [ž§÷7;r=«ör`ÓĆ×qęžßĀ‚SɊRfLŅK‹YĒIm„'½ņ6³"•xėZKUI³UY(J×#­Ąóū!9ņa¦¤Į1µ}š É’Ė×^÷Oeäų‰{gŪ²TeÄ7{:ŸŽ­c @ąе·ońļ5XśĶNūę¢XéL”åœĖAYŠLœ0ļ|ho= o&†©Y Äś“t2˜éĮųʬ0ŲÜMqŖØ>źš„q:‘4’GĶŹŲQY›’Th#f“-SKŅę¦B_RVÖFLlDRI³×՚ݪfedźž))8i#s Ÿ•µ¹–pJ=“€J!y2UŁt„%i¤Ž²D–F†•ESą›1ō֛Öfa3HųĶÖ;C8Ÿ±}ƒŖK{ÅfZ±©¾­Ūwµ•œ#Aā“ŸÄśŽ°ūt€ū¶÷kœŻ#L£Æ“³n°ŅņnLJÅķa/[ŚVÉa¶6ÄerÓ5rašĆ|`m7“Q•āŲ0÷£3žĄro˜ŽČƒ—,xū;v±ļ·ÕM‘]Ø Ų°zåŚƒķæļ~æĶĆMÄ`ķ÷ß×`¾‰,Uźę–.¶žżw­yŚ8׊·Łd'ī•ŲP–äcĶ"5«  ®h:±c#ļ½ĖÖ6vīnówĖē‹)c¢$ M”ĶQõœŃ)«£ ēŸmęŅ Ū:š†”ü43¹¤+Ż ‘7gź³Éčv|ŒÄr¶Ļä=Š'’R}‰,2YĪ_»ĖRæ£CÜk©½,óglGI$ģ’‹1g[Kń+t’Ą’fųyū\“o~†?Ćņ-d5p<”ĪcJ#®'õu Õśr„ˆ.=p ļķ ߊ†ŁŽ^²ƒ¹’ķoōouŲ9ƌŽ\ŌŌ¬čĀ/”f/öĻY’»l)°Jč)„ū#'ŠLkS* öĢ.8Īį^Œ$—ėµŽ`ß\‚Öi)õŁåĄK”}¶ŗŪƒ[‰zņVÖ/…Ņ4£H] Š¤Īš+¢Ō1>;W\IäXė ¹ł;žDqHY¦ż %;ņ=āā‘eĆĄā”ĘŽG·R…É ÜäŖÜ–ädY™S`Œ¢”6\; U½Yˆ” Ā±ū#Z¤üŌõŻŠėć‹paÖÕN«IKķ;99c²Ų„‚Że }95ķ9•ß oæ^}Ģs„ż•ż›^Ż‹`øčĒĒĮĄ=ō–AŪ¤.§×ĪG®­ń°Żś&ŚŻż†Oi³ęœ0&æNl¶Ālöн>ŗYI¶«Qp錄¼‘¼³ˆĘ|åL’öž\Ž<3!<śQ)>s…C6Ž0WE¦Wįä fÆCO/h‡•v÷yqQ定LzŁ„t‚¬tm Ų¦#'Läk‚ž«;źøFzĖčdS=ßz¾r¼›FA;Ķ÷@q#€‹±3ik;%>nÄń.ChI‚„,’ÆŠäS¤ž±bQ’}'€ēŌ;‹»Q§ÓźC¢lO7-¼:`ņČtŽSR˜,Ź'²žlŽ…„sŠÅžß=³¹¹ČDJXöŖįę†źš­-öb…d mŌERMeŲT~ »©.7{8„nõĘR§Ź`35‰šäo[“Ń4tFé©@śW\t×ÅĶŌ¢3©!J§ź¶ŖC¶.HK†üįøĖ÷•§DZQf31§}MCĻ-č†D^6ø5+‡AĶ]ß÷+4Õb:.×6€YK°Rv+)VĄœBS¢·3ź¹Q-‘rW5a;„²^[’ €~ŽlńW>šŖrÕ ‹r!‘xoć7ˆˆzŹYŹCŃäVšč¦"KėJ•Y—©P•&ą•,/āĶŽMÕĆŚ#žbŌ’£²ēČémę-Œt ³FIų›!ꦉϭēŽņy~¶žżė‹xĶŃĢ9$»3dąŻõčBŻ09WŠŒ×”$üŒŠ[PPłz  ŠäI>›Ž?Ź4iEPĒPåżQą‹½ĢKמ’ƹ֏TšńzĖśŁ“3`_… ك£'O.öž8{ńü¼wX$bpu_C šÓĆē{½£āBó÷Š N‚›*Żō^\œ¼xÕ¤£p\»bW/zĻOĶĀ‹øj½ł\pp™.oŻńųCLÅß»xGˆŅĀNv­¤^õõTE:ł‰†¶¾¶õ?ķĒæZæéČuąG„š[¶Ū΁έõ­5mEʒ:ńč©@qčĮ”³¶f„™›t’ŸĖŽäeļ>“³Āķ²9ך?Ę)Ną7“1FĘėiDī_1*Fā&’æjeŲłR½ČŌ{KĮ®7s³Ü§ógĢ ;rĶčt[ Ń-ųŽ72“½%D Õ4˜>åßš™}ւm¼CĪüK.oH„ĄŅNq>„ŹbvʅSŌז<‚$·Jkl_H¦ä †‰øŹzĮļ6¤¼ˆé²Ćoȗ‚„šĢ;M 8ŚŖ ¼”Ī-ŝ@e Æö$Ó{D¹JD7®Цč‰ ō"yA…—=kžT³€C‚ē½żä&÷MÖž#€‚ŃyÜ7EšĪ‘ó9R‡ÉGŽ`³SčOš·ų[­]۳޾įY‘Óø_“¢z$łæ‘!Ė‚ŽšQ )Ģ|k‚\ņ&˜§_×TĄč_Š¢FXéŒg»!ZŌ›ąš:ņ®®c9p6½q¦€ćĮYƆƒā±žōÆŌ|1DäM Æ<ŃFIø˜dČcmKŽŗ‚ę¹±u9M ٳż}oYe4®«¦×•T[[ÕWˆ«xŪIĪ@.Nfčœ^ŚéĢgš[~’ Żį©Ė­Ā82–­_gĮżŠÉwYdĢ_kė z>C—eķóL6åX„ØÉŒÄJtw’5Žī VׯŪwīŻ¾Xƒ‘’zīŻq²Œ’üét¢Ēķ“ąbjü_0ńߓ óB*¢H-” ©%§Ė$Ļ䨻c:÷Øé¶löš¼ģ‡÷Ł*„½ÖžBNÅŅķ¬c¼šĀ1ķ½rµÖ¤—•œ&¶7ۘµÓMi“L/"ļ#Žü\ŽÉepz„Ŗu>9…b Pbˆ‡Ė ŠęRģnƒt?Ę9®§īŲ-ÖŅ3‚+ōŒNč|†Wś©`FårK€V˜vōƒÉm»ƒ·/ę^ī*r儼|“Ė“Šn†•ÖdtQ`”y9?ƒJ°+cå,|µåż`ĢŪyQąŌŖ»Ė|ąķqtįr•jœ((łß“)龫ēä‡|»œ%ļ¶•+° ä€äBx£fō?Jޜū±W Ģ|©4d©¶±“ŁW7`·‹~N›Õģ$0ēŠ3ܶF­ÄR\pŒf3µĮzÆdPŁ‚Æ\Ē×ćp~ĶB1x³Æķ+ŖÉźė}ž]¹}¼Ė޼K§dÅõąwÖÅŻB7é"oY֋ś”ŸcÖ8n[Ÿ'ż%‘kć4õ±§Ć$}ŸN3[Īh²+äĶ€yŌN«ĻĢԚTå*ąiL 1“%ŪÖųüÕ’PK .3|Q‹3vŪ¦bĒ< briannesbitt-Carbon-d046377/src/Carbon/Traits/Difference.phpUTŲ]Ā_ķiwÓHņ{~EĆĖl’Ą0¼1$!“˜%osĢ„°, ¼D±Ś¶YINČ.ü÷­źK­Ė‘m90Lū1»:ŗŽ®.µŗŸo]Œ.––Vļß_"÷ÉÉȍɡõ(æv”p@’%;vtPŌ’déCh‹Ķ­~‹ü¹v@i|ī& y~Ž?_š3LöCS4}F Š`ģy¤^\Gīp”;pˆēöiŹ`F¾øaŠ&µ”ģŅ„W¬ßžŽNļšuA1ś’‘+;&Ž'‘{>NØC®Üd5@{Ž£>D#vu)°}ł’•'‘ķ&ń³„„q¬ŹųŸgÅ¢=ß'ö¹GĖź‚„F€\Uwi{%UæÓČ LН„‘(öĀx ø»vB³ą°äÄõ©F€’#2GvŻĮ€F4č+ķŅ 81Q2a„ž^¹Įų4…NÜķ^šßä< =āŃ8>فµģʖ^' ®>“§UVŃ8ō.)ē÷'$(kņOõ•Į]]Jr-żo‰Ą‡ń‹†ĀŽ /iŗ7 ˆŠ*Õ4ŚöIV4dŁ ¢É*ū{… ķ£B Ā栏j Ŗ÷ł”ģ’øż(Œi?„ń“Ź@¶,N&~ܱXEg3&w66Čłņ…ˆ·P2*”8…æPrĶKZ^üˆŚ ¾…楱TÉ}²¾Ę>-ņ żŗ*æ>+ƒw: kzE†¹ēEōĪäĮł%X«w ĄsÜ*:*$Z›Q)¢²Ń$d:0Dųčēr„Z;§i±sb("\Įm®­?‘€~"tąHČś£É„hķÆ‘˜Iķ¾V֖×K³%_³¬G4GAJ‚VČé¬?Ė—»8šÄjń ŃO÷FÜ×č^;ćidęalūü%LeyĒÅéĢy®ś> ݦģeIj§ˆóN‹Õƒ×ČbīvŻŠ€ęŠŅŅ4ju•¼ £O›ł˜b"2J’‹ø»ŗz>Ę!ÜxŠą÷-ףxśtżē':€Wž:h¤Ģ—Č&xĄ{÷Rø±ӊ|V“®9dĢõ©V2b=֊\VōäW­(E“r—éWÖ8•5£Ź·²&®¬aĪ_xuŅ!•ÓĄMĪ?«łųłJØӌLJÜ×Ėn·j•š¤ Ž ½ĄYŹ*„Tb]„ŒŲ i•p’B&ǚVłßhĀā(G…%"R;kõŅTŹ^ĒrD=6Š@““1.ĄNyčņ”<ņüņ” ~ĮØ8~ĮX‹°Ąk’ć©’IY2Æ ÄR!Œ /¦NևĻ=Żs!¤LŠØ9*(Ų uy‡%p4Hŗ]—Ķ’`“Õ&DKó€Ó ;ūU‰[žŠŪö®ģkXg…±‹Ro‘q€±6¹ĒĄ|a’$dx¹;Ž}ąķį¬!“ę¹ŁŽ³&čL«TFóO™łRhĻ͚”ŖP{6urrMķ(ž% Ź£8÷‚w8 ³IŃ `ĶÓĖ f-–}°V~Š~ŗ^™Rn’CxB£˜O«…9įUš#›h=Až!†eYźø„A2štńAŠ" ųąčšäÕėÓß{ǧ¼Ł>>éO)LŸį0¢ĢˆRųŚ‚”­'Ųą³bČ„Ė[sqß/÷»Žö1yPęņż3ÖīOkķW”~2ś‘Տ·8&ĶŁł.DF­|wūśŪ^ļļSŹĻĮ°ĖˆO_:Žßfʵ§µA&ĆqŒÉk € HŸ'ĢėˆVäÖ§–Gßö¼s»’鯭)/ŁxSĒ’ĆØĘ„MfR"M}RŲ¹œHÜBŹ”š=Ų…ćČčNŁméŠ+ło¢D(óµčüš• ał¤+ūr•ŖŅ¢lž ¾¹āŪ¶†s‘} !7Ņfōµ}­P&A›Ģ­¼Ė1¦¶e¬=h sS謌²Tf¬²bZPĶ2£ź¹ĄTH†*üŠ*—ńÕHČÕ¤‘§ņ'(įa¬šGŽŻnļŸ;ūov{§½ĆŻÓŻķ“ł¢‚?7>ąŚ­Ł"k¤›ėŗwpšędū·żžĪ¼xFāčl&!ojq¶ŚŒ‡¶¢ƒ&MKÉ ŠśąėYøąQ$›÷ī‘;© ·H‡#ķN«–. œ™£ŠĀāA­Bc呏RŽTŽźPY™§sGØh[eA¬ŃмVĄHĶ¾æ«­|} MĒH¬µMKßK»EtRŗź—žų g®`»ŪļZäA‘ŠĪę(ó¼*7…”wqõ.%SRi§ød«„ŒŻÉl|Böųta=˾MėÓķ[Ę(r›Łš²Œ¢¶2Č·ļY~ÕM÷ >PjÜŹ"Ż9>ŅĮšļeٚ…źŗē¹f6(WüthÜčQ0§Ŗķyż8ŲŪßßSJ2„|MWÅĶ6ėĆ “—vDJ“,+c¦ĪfÕXŗC‘ŅäDŹĖj‘Ž„’-Ÿä3¶pģ,·…sĪŃhQÅZ`ęirŃŖd ]R"KÕH՘™ ³"ŹT#Č~.^+&-£›ŗ¹ˆ™¬\ėoo6³c2šB;!–ęž:ķ»1šßś‘eĻŸ(}ÖbwŽemŁs†ŁÅͿϖ‰2‚®)č¹ņQBŠUzS;5ĖS#įšžćŁAQ¾u©4äģŅx†ĶŒFø5…;ĆĆąef?»™4K¹ŗdӆ…ł]ōœ¬įNuĪÖ1,¬ŲæŒļÕ|ܑ¢ŗ¶«R0«å³ģN7ŚTS›ęŲø^T¤é¶­ĻōZŠlMĮĪöĘJ»ńģøĶq……‹Jń9ß`§7‹Ża€0õ“„Öw‹ kŃĻĄ‡#wŅłĒ"ļõ=oņ{±ł,{µz™+•tŒ¬ažU«,Õ¹Eų—Ü9d$F=-}=® S$üИΦķ8SJLᑐ°)ʱbwÓū:_„Ļ~nä‚y4`”mĄ2^–±UŻj#å¹Č*~×»Zv«oÖa_JĢ«§¤|¶Ŗ7Į`DHņ«ńÓ#«d«š„XŁm?“œ•i^Ä5®¶®«å…Żæš§eÆv—:Z1z‹÷³‘¢dn/« Ķåd‘¬}l±Q•‹Å–š‡å?+ljM’šJs6÷Šˆkz×ŗØŖXŖÄƹÖB§zžUć¢é¬ä_*E=•³żY\YŖr¾ģō"ӕF&i@Ć9ĢŁwŌ-"iD?Iō&7 ŗdœß…›OręTĒ$:’‚ZÕh²3«¦ß,įi&‹‰q‚É‚š,ØÉ‚V®S'vK™ŠįB³”E¾n##j|ń$_lҤ&MŖ86iҚž·ŃTiĮū. ]:ŃõNL™ž€Ū Ęž9Š ÉT)øTpĮ¾ėxgJĮ£ÖÜę* ½F`–U'CØŅB¼PŖŠ]<cJ†ĘAāzäŃćī“_įߜ ½A` AŹģ QcŹ™Ń&£±o扮¶Ć,–Ÿk‡UŲø?Žš0jā…}+£ŠWeņ“h<ø „Š>’ČT?]Ź #„Wh—l.d„ÅÕ-ż Ó®§&ɳ³3ł•öG”š1Żnśa…WČ8ró2Œ^!±Õ"ÉŻĮŻgSö{æ‚Å+dc“<śŲ”Ēm²ņļŠ Ųœg†*[\CTB#vœKƒ ŚäżJ< £d”©rį‹pśÕEöµ˜~pß̊Ł1įfŌ+ŖĻ)„_ŌĮ Į¦ģDbÖ° ւ3ÉuŲŸ””^)ŅęłHe”t ‚ęié‡>ćĘ!Zˆ0›¦ŪĮ57’\_Š6q…lßüĄ¶Xȅ—MI¢%sņÆĆ‡¼r<‹ņŠĘ_ŅC?'‘Ķnč`Ą…°ˆE¬Ÿ’Į‰ Fßmbl:d…·BĄĻD×ÄB`‚o5Ÿ«ü¢Ą ?°(šā@°Å!ąž‹CwP|7 1…€Bb-ńĒ^₳fW­ÅrŻĮķ¾ *ΐŠĶe†ĶÅŪ 8p4”•XƒĶČ#zcŗ ÄxÜNŽ«ā4Df«C1ŸznĢ®šćŌ1Cķ{Žœæķ…ŽJ $»Ķ€7”¾2]6åӁ ābCŌfj—2`ė†H#Y’‰A„R7;»S‡š-]ČØą<–qØĆ1EēĘŻĆĻkÅ·¢īlć—AÓżFĢ©@œļĘ1ÓcP v«_~ŅiJ“ŃSąü’ńöyxIa x‚ GM0ڰ2#~1‡ “G#SĮļ!Œ†„ģ ¦¦—\ę¦ŪŻŻ{łņtū·×Gūų’æśaŹĪ"1÷ö·OöžŃ;=9:=&-Qś1i “–0i‰iŅIøĄ50 JĄcWŊ}„[ Ō}ø7ŲŠÄW^J_ūāX «plŪ@V$É/æ’ŹYä™EžYäUƒ7‹¼¹©83‹¼ZęEžYäU|Ģ"Æōcyf‘gyÓ,ņŲ{å·ö¬S-)拜¢¬°„i‚]V,ŒŅ@ü›…ŁóŃs…ČsĄs†··¼ž-&4-{[gõ-…•gųæEŽn/$, n(ą›?ޚ>šZT¬t+‘Š­Ä9ĶD1Ä(·,loŪaxe5Rd‚•ĀéKœĖa| Ģā‘[uC|”æŹwa;Ödņ\ö© c<ÓäI›\# ­ķłū.b”ņÉ<$2Qig™ˆČDD&"š®‰ˆ¾yD„Mo9"J†ć”BŠ%“Ä1A… *LPa‚ T˜ Ā?jPņ5)–ļ<Ųøćb¦>ń– ;(<ńÊ’†ø]“÷™Fš <ĶF=¦©T$Ś:ņ,Qņ}_zųńJžeėd4µ“L®ŸŠ¦Ź:ž«w|tŠrżŅc™;ėiÕĒJM;fģʄŗ|ė źD-”o¼ū2rš;ėOF×ī¶ Ø ohąŲ‘h²¾¶ŗöėź£µõ§wqŚ#Š/Ž@ўņ+Åä40ėĘO¾åSmTÄ69õö).s‹™ĆéIę­,5J©ÅśAąĮ»>~«:ūMZ«~a€,SwH”ģ^yтœ[…ZŚVŗK9Ć_KĆK“aAځ]ŖØUIڲ#®‹`x³“ .åQaZ'įć6D÷ē¤ó Ł»‚UXš®.±²ę/Ū­c; >ń6­b;½ķšl Ō”·Ō[ÆK&¶Ö{<Ā,oģ”÷z*{IR®+ū·JkЄْōWéŠóÉѧŃPłŽ0…—\×q¦”zßz/¾i§čń+9äŒ„Üł_#œx*wžMÓu|! ĻJ 'īĘ!§ŃśĪ¦ć0Ó#ݾ.żPK .3|Qó¼Ļ–«(B briannesbitt-Carbon-d046377/src/Carbon/Traits/IntervalRounding.phpUTŲ]Ā_…TQoÓ0~ĻÆ8¤hNŗ’‚/ŪŚ"ʐ&Į`h˘\Ēi,R;²•iŚēģÄYÖČKāÜłū¾»ūģ“eS5Q4›L"˜Ąe% ”¢ę€ļ†j Ŗ[q8„z„$žbæčšg˜ėŅ–ĀG-؄ nVĀZ8Y¹å‰Ke3¦6‹>õ³ŅØlė˜jīµXWØ, ŒKƒ”²TzC­Pr MĶ)ž»|ė÷}9?=»ų~ę ¼>[Q [j Ęj±j-/`+l…ŌnT«G¢Ā‹E’nøAł””üRSaĶqµfų×½Ī„åśŽÖĒ抣oĘ'Ķäēƒ¢iC¤Ė’D-BėŲĄ*`ė×Ŗ•…kŲp[©Āø€č÷@ߨ§u ®…*ŗR¬Ē ßz¬č!|­,g®e+™“å)}ÖWĻ–ø~!wܑOjMļ!ĘqcŌ¤©ĆsOL; 9˜v…»“aė›)¼K±Ź)JHBö«łć¢&éėæxļ/$>>GĪ…¼õbĒ®‰ļ%™)k„“ūšœ7é.«ę¶Õbē×‹‡"#?¤°ä1Ł•’ćŖę2P„é²,wéE=‹D›wń>öĀ\¼ņ+“l7š3a|EqˆļM”E”Ų3b8SXņnŪ “ޱT2ŽĪ»qo O;ꊻ"…ēgąč(€ž5!sŪÓįąėēė[<ܬJČģgn&ÉņdČXäÅaŗģ~ŗ*łö0Åo…A/ņ«l’.ćĪöY£<ŚŽ˜ T°Iŗų5ń ä–K hEoĖ=KŗĒVZmAā…󷞐pŚÜżØd}2F¬šBņwĮ~ūI…l22jŲNÓöē€ŪRÄ!WĄ¼ŻA žénInžeĢŽžŽ{Īł‰‡Ųéģ`Į`įĒčPK .3|Q L©t’ > briannesbitt-Carbon-d046377/src/Carbon/Traits/IntervalStep.phpUTŲ]Ā_­UKs›0¾ó+öąxŅųī$MŚ<:™é¤ūŲ‹€µŃ$FøžĘ’½+ 0ŪÓéT`µOß·‹nļˬ ‚Å|ĄÖ×°į9=K¦ Č ˜ į‘©X 2%ļl‹×äkŻĆ$‚ÆŠ3oØcn ÜĘöóAЧ4׉,>7®/R¹D›*Ļ!‘å^ńmf€‰rž ŠTRl¤*˜įR\A™##[Ķqē⾿>>歞m*‡ĻdĢĄŽiH¹6ŠĒ•ĮvÜd“CŲµ¬T‚T(u``j‚ßåēZ1nōMTŗ³łĒĶŌōZ•aqާö„Aµ”ĢĶ^.u„š'fpĶ Åwęch`,p–šå+ƒeš;ZN»ę`­`$°²Ģ÷ė6ČR+#R~¼ ·N[4Ž9A ¦TšŗÉŅ&{ؙjŃ~’„ŁXøg©¤ĮĒ:£*%ałÖ¤O÷D-OĄzQ} óM*)4•m±a*&ż©-Db…·Øķ)Ćh ÷}Ļ…]M²™ÕłÓgĪŚˆ+‚Č<°’EŚE3 5X¾¬æ¦–K2ū6Ģ5”€†‰ŗ=±ÉŠ ->„Ø©%OG“ōų€»V“Ó¼¬Ł;ŅéķłÜzf†żz-7¶ž4ƒ›TJ”0G¶0Ÿ*½Ī°sXų,Ś„ēčĄ- wT+4ū’',§W]ÅŌśž¼}qŅ”[[dqĢ\Ø„WƒQÕ“Į<»“±‚YژFž±”9 V[ā\ėGż¢j‰5*cф ]yŻŁī`ƈRR÷T±£Š$d3»C7˜%Ī`K¶ŠÜÉzę»cyG6 ŁćL÷=·eŪY µĢkō¾aē5æ»HŖ°×‡Qur€ČMĖы’E8ˆ®öÖ£«Ž±(ŗéŅF Z—æ@ ŲnUžīéŒg¢¾¤é j:h¾¦×@G¾żsŒ®˜ćžĶ§±\LjĪōĻćpŗĖ?F€F÷Æm'uŻ>l‹ 5£Q;Nu愭3*Ž`.—mŽAsž×ÓĒ_;‡ąPK .3|QsPŽ\Vćl> briannesbitt-Carbon-d046377/src/Carbon/Traits/Localization.phpUTŲ]Ā_ķ=ķrŪ8’’żÆ&¤2“”Ģ^ÕÖČqOāģøĪI¦boķģÉ> %B7©")+Śq®ī5īõīI¶$åŲ™¹¹ÕX"F£»Ń_h ĻŽ—óåŽ^’ńć=ņ˜\ĪÌLƈų»ōӜ$S’Ļ)yé§ć$†G“žŒö -6w']ņ}ś1yK³q˜ēäŁ¾ˆįg’÷&Éā¹hś:I é*ŠČ$YnŅp6ω$ '4Ī`Čxš¤ ?“Ų#ˈśšģ&¤kÖļüģåéŪ‹SÅšĖē~NÖ~F‚0ĖÓp¼Źi@Öa>‡7€{–¬Ņ …†l/ö4ōåT®.S?̳ý½UV<ćĪ✦Shzؾ;ż8”KÄ-»:‹oü( .7KZ<µµ}›äēÉďčÉŚO-ĶĻżx¶²V~qły’ŠĒQ’­RŃęb³˜&ńęźe²X&1ó¢yXéś½?ÓfÓ¶§µ[œ§ž$Ļ*Ż”īŌĻ0–čģ…Sā~Ź#ś$ s9”2µŹ`¦Ńœn—ü²Gą3‰ü,[żĢeš£Ā”ųo‡éū·Ē‰uļī}*—%Ź*aT’ĮzŹxŗƒÜtźÆ"±š/H^ĪŲ㼕Œqe-h>O‚ŒÆŽ¼6Ą' C?É+1H ¹'^É/nü”\ķ,a¢{Ÿż]¦IN'ø˜³zLH'W‚ŽÓŒNĀ)“*I5Y„) ZÅś°ČvŁ/P}Ē:k:…ųĆjķŻ®5š-„™c÷WJ‚>"š ޾żĒéūw£WgÆ_×qzŠeJ'>B½Lˆ“„čĢx *9'cšÆ)¶”ŃTk ]Ų€Ö§~ŅĢ“e4‡qA÷Ī“U8A“@ 'HŌĻߒ•lšśĄ±›2ÖOÕÕ°×{KK¢cĖXÖõ”ĢłØź5Ź|ž®@Ģ^™£œēIÖq“''ę;N’Č4ßb¢ī¼źłŲ˜f@·ƒŃŁĮsĶ[²J÷ķīń„”˜ \GN<ģJP—@KR˜‰@ŽwZ! m¦‚[}ß\"lr„Źź„Śq…Xxdt²7Ɲ ,ėŗ+-h–AhĪHė“YxöżŻ<Euvrż¦ ŁŽxFvłtałæÜiFĄ·1&hŚĮ&~¤Ģ‰GčŰEąīa ¹¬į#æŽų‘Šs »RĮF¤$LÕ"£ƒķü|ƅįÆa>w¾y’)Hčņ‡ Ä£AłXāϟė¢Ķ’*šbƒā3'vČ£Gdk‡¢u‘ńŸ|ž&kÓ51åµÜJ[ü8ʊ š1æ5\,#ŗ@ž;=Ć ƒĖÆō–‹P›Ø)Zõ Im\÷*ĢFÉųļ«ōé’crl±¾Õ7ö&‡łTžw“ƒctÖŁ’ī9•į„ĪÅϧ½*k$Wķ47%Ćtš—²”9x.MuĶtRšqŃŃ»½ōs?Jf+˜(Że]”Č®AJ@GG\;—r9oVUžKķ®ĒīÉĢų±ˆüČjnŚ«Ģf]éŽ]5z¤ź›Ō„Y“R×čh Āä³yW¤W eõÄdo”œ‡ŹH15€Ecņų7~aąünŁg.3 ŠŸ¦žfK7 ėI1Į”ŪeĮH`ńj1¦6—³½9—dā2±…’šYē4P¦"9¼ö$nR@*:ŠĖ*µćŃnĀ*„Q,®Ī%P“H`ʼn½"Żźr‰%Ł-pr{½›Żˆé"0¢å$»v[('žÕ‘˜ŗnäJ(CēėI²ŠóƝk4^¼£ X…+"Ecļš÷Ri6`ĶųĘīƹōūän¾Lnh ä8›ÅIJ/r?ĶKöMęI8Ń v…ä {V„«¶›}w…ĘQČ^é30ōyÉ’=9E« ·ĢšL§®HKŁąžB*ļ÷Ø„4ŹnaŽ ]ēŽAy¦ŠĮ`=–""?Źß²žnźGµ*BUTŽj;[ėrBÅ\TĒפ°˜_bnQ—0‹QJ—‘«­Xg£kB¾ļz•išUh‘•(nóøŃ|iCóJÄ|T‡[ä°q¾Å¢ĆŒ°šāŽe)²Ķ€;šŪŗģ ŗ(@·ŹżwpķČ>LtÄ»d=Ńwæ$d'Ū,Ę yG5VøH5żPŖ ĶÜķ·Įēä»ļxPØaćØóųī;§Ė†®?ÕĢZ†ęfē8‡•ĄkźOęÄ>}<•’^ćF‡~\ź°¼5¢Ž–Éŗ‡ķ÷kĶ+3;bPŁäÄ£güÉcƒ­NÖFN »Ā'̾cČ­āē:’¤XC¤Ļ'SGŽuŽDļǬµ„1'fļ0eŸ“§ĢkčVE[īcĮqŗ=œaų§=ūÆ2V×YøžcS”+LܚĢWń‡ŅS"_#ƒė櫳€Ę¹0xū0 5²7ѳĪXひš#Ź>§²aæĶ‚i±^ŒĖ„¾Zī›Öæ©[Qŗ¹nTö« ³ÉóI.ØōĄ¦i~TQD”°\ī5·pÜ:č‚?t÷ƒUZq fA:ā.Ąo!ĮMōÜ;uĻ¢0›wr-†¤Øx¹*r5bkHÅ£š ˆū3/Žaq—̲żLĘ™ˆi°–Ÿd•×ĒŅĮÉOmŸĘūMąŃ$"±ē\|ĻXIÓ$×Ļ«ÄbՍbóz ”młŌK‚.ߟ¼½8?¹<œŸWGļs¾y÷öņ‡‹ū€ōźäo÷ē/oĻ.ļŠ›Ó÷gÆĪNß“„…µŸmēeødKi–&«å`;żČmKŹÜCä²X*®²l<±ĘŹ<\R~g²j(5«Č•ž§ƒōµ Em.ī4ĖƘė¾ ²ŅĆ(šæŹęØ1KĪQÄ”„CcG÷ū84ęõ%6_Ƥ€-Qpń~ą§Aų˜Ą2Š'Ė9U°(UĘ6ižVé:tž÷æ’Ē!GĻɾ³­:§ A%0äqYe‚†·ÅėŅ/tć'Oī\ÆN$jŽ‘hŲ jxŖ^o1ā»E箄—,Ó6)DŠ+sÕyK}% Ćb¤zāgß4Žéųń gŽsTŗjžƒL‘U¦£”¦÷K6gķeߔß;Ž+Le֔~üÖE>µtZŠ4 BŗŠĘOE'ēä ĀoœkÅyL€Ž“©Sp f(]7~b”iõīĮžē4‹.=g”±%1å8£’Ńp­ąŒĄl#U0ī£0,Ć8 qŻ=źąQ€& il„ƒsėō¶c>äšÆėŽžü|2¾©?ÕCŠ*×ėĢ󶬒­¾UĖuõ£&ēŲ’•>Aš®i3æõŌՆŃŃšŚ{Ąqµ4ŹęIšĖ%qŸų Y݆|üéK[× :ī³×Ætʤ\’Ł÷¹Ģ%ŁĮ¢×Qœ¬śĄåū<ōĄ# é¶Vy²HŅtĖ`cŠŹ %D šąbŠTrBlÄܝĪĢ-½#”7ŌOmSa«Äö„ĒJ;yęą®YĒ ćUNmo3 Q]šŠ“”ž9S(Céž®ŪAü»Ģw «iS’hb°Ģė+O4o2Ņ ‘‡lDņ ” ō&öŌb>™ķœOĮ#O<‘Y7$¢<&Ś|ūĒ.§f„Uc:[ĮWu—)ÉT÷HīŻøNß=~v4¼ ®²ozW}otpŻuVüo\0^Żyķöœ®{¬õź‡ŠTįĢĀĻ'sÉ‚§{¼:†<ÕĀ6ū$Ķm(=šg]q:kXs&£00’0čī~’?YÓ«N?Ü÷DŽČ*…kZ™ƒōPqė©*Κź/c”Ā>“lź•\öČ~%Łļ‚½ōČĮÓu †¤P}ø?w0Ļ# 11ŅżŒ”‘:¢š÷ø×“ fe I™ö‘tS}™hAt6·,ˆ·‡ćÅX‹É˜ÓTAŻĻD„° ĶŽUĀ‚s ķõz©PējDo.¾mAi!]–Ś!ƀ¦šŹ¢›„X”Zšm$tCQ ¹łö¶ ž„žļ–ˆ">=jß–óN¦ąš.–94Pʄøµƒč¼®ö©1„kŠī­6fŖ·śĢ7*”wmŖˆęō‚J ‘e(#ŗ*$sžĮFšbD ŠG°łĶOj© &<†RzµŠµyß¹”^ž»*B‘;Ėęń]*«åĀjVŽECVR«īż fķĒ$¬Sa‰H0Ė!ė“ēfDŽRjLÜDāēĢ‹su?śYF•' u¹c‚īĢ$J2;H‘e«™Šó—£Ė³7§Ķ{ńšŹčĒ”±…¶;†JR µqw.Ōa1%ƜÕml‘«ĆF<½8Ļóe6č÷3^Hƒ×JōƒdŅ“ģOdaMÖWņ#½y¾ˆž įTŅĖĶ„nIæŖb“ѱŖ³ >?ćS1(ü§¼Ł R čŌ5²S/ŠŪ¢Ā‡×k“­Ųz”Ąh4ĄQžR`Gp޾²Ż†n©V5Ø¢z©ˆQR "…7†ŌW nÅ@cw›}½ ,+*ś»µīŻŚ¦põ›]{’Śk«bn• śm†A[Y½¤j#–”^­%ųØÆ¬īš‰’Ę.„«Õņżv‹Uš|ŹŹ¼<0 ū9?ž½S„ē˜= {Ŗ.?ō9» “UF€›ž šČ³j¼$ĻXņ2bā™ūVŸćõ;x"¶~`Z‹ š ˜lŒł–­ļą<,¢“?ŅVpy°˜°Ŗž=æ&R‚Ų…öjŽl,ŠA®ķ˜üt„`]Ü+z,ć± 4pkéÕBBeedą ęö³>[k •Sü”Pp+äćÓfŗ!Łj¹LR¼’Ż&ųf‚ĻVņµhsŲS‡!ó碨÷*fĘÓyéü>0e‰zŖŠ²FIŸ­p…d›8÷?Ź·Äõg‰ĒCŸ8Y{„oȀ‡{-ŻöJ‘ł7šøa|šEA/¤TѲŗYE÷WŌx‰Ē£ĆoD?š UŃæ”ŽB Ų ‰±äŌ‡š‹»|Ū8œæųqŲ^}"ŃśœcĪś±×r‚ŹÉׇ¢ä ĆxEėį‰a›FC^=ĘÓ-ÕnŁ0P›Ö0¶tÕRĻ\ÕøßĮÆ,{z€Ö™­r÷ļ«,ē+ŗŲ[õˆÜ:Żq]’QŒń›_ÓļbśŹß°żŁßČĀneų RZnÕK;)ļ ÜWWĮ”OwVl¼«°Š‡_XÖæ=`åX\Ų¹RS%)·»Źū·’Wäżrü®ä½V ¢JZķåN µŚ°öź‹ņ’¦aԜ±ŸŲkęzCÓ łIxf?”ź&?ż^ݱ1~SŁå˜3–g=SF{)k†7;eućGÄāńŽąŲY Vh•;‚¤q`X<Žimaj ĖRĮ/TÖRyb2’Ū•°¦üœŽ`Ļüä{ެѢX6īYNÖ!&ÉX†l¦xøĮ&ö ¤ä¾g+>`9ī6Bnī‰ÄøH@ź‰-[®Ō²›cŗ6k‹“^aāqĶG· (?2“ķ\oc£d”¼@›šė˜gqŠĪŠæį\4ž'k²IVģt†Č˜ž]¼#Xüė~ČVŽÉŸ„t†”G±Y)‘,mޕʪ¬{O“:s垢~X ˆÓ†×łĄė jµO%Ō!¼Åś*¼JĪĄÅĖEwūĪā0ń¦iŗż.Ė) >ĮĶ’“~‘Š=Żć§_¬\+ń1Ü䇠ńžFKy‰łNG}‡©¹HÆbŪö½°Ø ”ņxxŁW§ęæć°É"́^u¢ĀŸ¬zM-vNŒĶųe¤%ØY”Œai>‚ØóŅ”Mū=¦‚¹ę«J‹Z•-ā—cć9uV"ŠĄšČēČOŁ»Čö'ĶÕ: w¹¾£ā®–}4éšŗ†Vv!šö„.ŁEq~L(ų²ģ†±ń$ŌiČÆ‚Sš+œ…¹¦¦·-9nķŪrq·”dĆ}wūķžļõÜŲ£GÄz' ‰˜œŽ²įÉ»9݆ė-’uÅF[•¼±t†ÅdQė4Yd‚JŹž3ūĻ<²-”BiTšt„7Xō£ĖCCß×ÕŹaYšÉ*†u[Ģ&pT¹.¤ø‘hžuńm€q˜s ß°ršĮ:4Į³ƒųĖpjPo­VncĮö/WĮ7®ēĀæ·ą8t»ĒŸn‡WĆ«ėkż9Śķ;UltV¼®Šjsń°ōĖXŖ£‘cĆk–*ĶŲ;öE-żķYūµÅ—±?ƒč7"ķ:¢Ģ „Ø× āQIā*N Ņæ‹‘Ÿ«4 (*”–÷tvśq Źos­·‡Kä[I`¹Ļ£a”Ŗ(C-Ø5‰@¾°+O䩈źQ M‡•7—i'Q/Õź)ģžņ8£—Īu}Kź˜4vصĆE…±ąU¶oŲīpž?õ޼}wIޟžx~ņņōŁ3­$_/ŗÄ‹üŃÕ,•³r$ © š(!Āa®ĖĒļÖé9 Ž{<ŠĪd”œ–c€Į†•Ž<Ŗ&9TĻ骁5—ĢŖŠńō…бĄHY‡ģæg”zQ ,sm”–! ­Mq‹B'¢ń,Ÿ[×zYMĖÓxNOĮŅ“ųTę™WjgF»Ä,‘Uæ£<¤*)KŽ‰ĖĄŅ¬Ųń±-.Ø8¹[9†Ž S|™8YW’zCˆ-žBp‰Wń±š×7ßŌcMbx­®vŁ(ŚĮ°‹+^`܁P)¢Ÿöž PK .3|QˆGÄ} 7 briannesbitt-Carbon-d046377/src/Carbon/Traits/Macro.phpUTŲ]Ā_½VŪRŪ0}ĻWlg2Äf”×”k`˜Śś”f@v[E–2’’.’Ž•| IZhõĖŚŻ³{ö¬œżaMƒ-Ŀʩ$Ž“‘I ż ™>µļļīīņǦmĖ55†‰Č”ä-.CĀi v÷ 54­våȰ„>J‘&6S²uMäķw2ⲓŤ³§“·ŽĖŠkYܧŌVõ,B«Xš|×_o&-žJhEĶH hZnģŁšü½4ÕY·n^@ Ģcż°(Į[;Ń'Źó‹|_ŹGƲČJ-ć}āpcœķmoćcYP%HÉtŃ ¼HvÜDÅjŚŃŖŁČą ćsć$Ąim:źźń2Bʒõgu5 šNČEU0œŅļąŚYDߣgćJ]:™ č:—J$uJK|™#ÉDŽ)`Īł|ŪŪižd,LTQMMŠķ­”a6#oŲ̧·*XmØVhRnĄźj“Š™)†V”LÆÜļrD-ŽšF‘ą½0`J›w¶=Ŗ”ļ„9¶+iģĀē:ĒlŽ'¦± Ž"*»EžļWܗµ āWkœ]÷JKµø ×ß®nn/\_ł„ÖŃ?H »\ÖG1 ļµ%řŁęT/~žOߊH6ģÕÆ÷1’ÆŅǘč‹r‚ė=Ė‚ĶķŚĢūoÕyJū+2BÓiÉsźüƁc±1`’=9Ų³Ą’6«)Ś,gbįU¶æģ}-dĄ}gžE÷«m?· Ė+ö²/#/Ģ5¬­e’x}–ėĮ‡ēē‚­šČ>H+%Q’S6U½¼ƒBŌJ·ēW”“sU“aĪÕKć7PK .3|Qt Ld47 briannesbitt-Carbon-d046377/src/Carbon/Traits/Mixin.phpUTŲ]Ā_­W[O9~ĻÆ°ŖØ™ .+­v'-RŗŖ“°+`Ÿgā$ŽNģČöäæļ9öŲćLJWõK2öń¹~ēāĒóé¼ŃŲŪŁir=嚌yĪüĪ©2Dމ™2ҧj(leßč„uɓ¬MN§‚\0=äʐCüü$ąSšn&gG%é©,£q‘ē$“ó'Å'SCØ‘œgLh)ĘRĶØįRģ’yĪ(ģ-8{°÷žüŚ?»ø:CVV?3„†ZM!‡‰2BĢ–Š¶%,!ė–ėÓʐ÷ļ‰Ķ÷{„ڧW.śu\ IÓ\Ņ‘- ¶ąl$N׉m©óÄĪ}˵¼ž™¾ó5†/3kڬWĶUĶ™­ø€d C­pū[ķĪфWu²āˆzńNÓÆWƒæ’9…ęC^¶œ^žu}Öæ>ūµĖˆ £Ł”$A7čXå’v¤:.>d#®”®‚G‹ śŌ„—}fÕQ .¬ģ\¬·r²l¬|~š™“,cZshP 0f± ø<Œ0œ¬pŠtoŚör–Ÿ[ø=Č˜Jī£D’Ųõ=ŲĀ% t_=z ĪN"§8ü|ōsIšŽ•œõiž#·äĘóŁuLī¾/§øÅąL’IJv#C7! ¢įšĪqt蹉K;Xˆ;9̇kՐą}Ć ŗśW SŁČ2ŖM M &mµ“Ō­ĀeŌÓķbĻa‰ ė ¹]Ė8`õ«K’Qƒq c*YžŻäWämą¾n…oé彤ŪķŽbxˆ/Ŗ&:i×Ō\nK§m)ņ:ĪWR®ž8„v­ņ7ĢX€šPÅZ]17æµČ3BŖÕu»­Ž²×ź½QĻZ’`ņų“ÓjÆ©²-$å`öę<ĆbėØ}]1ØL¬’_\Ÿ8ĖGŽÉ÷ė ›©dłĢĮœĒi`L†Ü×8û҂)įĄ×{d<~ąś„/L»ÖÆkµ/µh䋡G˜wR$+« n6żĒ–vņeĖ€Õ& ś#"Óōx°CÓ„Kó”ųžQ”H•0ņŒŠI‘CSų™NŁdQÜņOĮiN^39įJ‘Ǽ}’Ćm”a‘Zї…ŠŠā2MIXĢę‚OEh‘”‡,—0d"£ŠyĢRF”휳 Żļ_ƞ½xżöŖŅö©„*rA%‰øT‚OJÅ"rĮUOĄvY”"d0P¤īä4cĢw®œ Ź•Üߣ)eÕf¾^劉D÷ėø 09."s&¤ó’„©Rä`ULĮR0žl+HX Įr„ŸRņ|J2ۛȤŖŸ€ėĘ4µØ|ē=2~cEt>Ģ @ Ēö{žäœ ˆž²÷Cż=…b!FE*0+$»žÓłSEČh|k2eŠd­‘Ś ķšņXå@tÅe"ˆØńŲŽéZŠø†«Ét+ćöµÄ—%ėžDl&XHєӂŠó‚GoĆĄŠL˜ŗ`,2Ä1ӁˆØžĮ&‚ ĪdĻ™(™Œ%BQ¦É T8±ČŖ4?ļŠŅ‰ l8²ä\€Ż}Īš^й„Ųβrā“9tĶ ¤’(lćŹéœØjÕxśžW„]ĪĄI®Ņłx•0~v‘gżC3|ļ'/ €ņ«äq"†bl”d ä5øÆzŸņŒł£{䑳“øņötxh†l"»ųŲŹ_Ē<„ż&Ō“ źiŻmž-f…ģ" žŸ:PĘŹ‰XLĖT™h¦qCW‡ńfĢUęWv ]³es[ż%j0Ö{I5g—įC“¬ 5B²w,سU&ņ,%M;MŲęÜēyĆŖ;`åÅ9ĢŽØgZ»ĘsŖl©sęÜ5™~“LßÉr„ezŽƒļ¹’•1°(ā˜“dÄ$ ŖŽÄ惒}P~üęõó§ļ–ŅØ”#–“|z¬¼Ź±Xķ:Ļ6Gżö+=Ą4TÜĘCSęĄJ5$ōlh±tØœÜÆ$-šĖŌ ”ģL™æ ŅÓ°x’ŒĖĘūڐ€5Ę×óF•ļ«'‚Je'÷~*$Ø *"ĢAXJčė&7ļ>>Å –ėŌŚÓ¤(”™•Ļģ`·€MšsdŠnoÄ/‚ó¢”81Ż€}%JÖ«F± mPĮ}Sž[K “HŻĄXŻ`A­‘Ü•ŠĶ°ŁsDFC“_Cm’8]&[ÓӃōµ® Įr‘ąZŖöźČuįņwƒ€Ąh ę§`™a(tģŪxƂųvS«²źŚ¬¹ ęuLmÓsfūmĮd§jS³ ńbšJv“¹ÖŽ7€J¶sŠ“¾X-ŪæÖņkcwó›ńæ‹ ė0X¬µ•[Ŗ·UÖæ®ą®ō/StļßpįM©¼Ā»HĘ ٵźk±Ą)ąłW²"WÉmxčō˜”ƒ“4Ž3éj¶U½7§›öķM|ŒžųµĀĪ-T{XŃ+ŲØ¾‰mQZdfCU5›X³Ņ×RŅˆ|Ļ ā Z «Ęż0š/o`ū zńŅn4_z<¬žĢ7d”¦žW!”łūä ŗö­P°¾”ÆrmŅm8i3ć½RҰo;œŌ­4 ĖTæ±j(‚„Ā—G†ea1ėŖÉZ}•dƤWś­iµåõSX0F2ŖßwmŻDŽ6ƒÉ.ŗŖy§3~ÉV¾Ļ©×š*©­£Qė\Ch|ÉģżĆ…ÄÜąąn˜°šs½Kjpč]?󚒋Ū)Ēч@2Äۻި]„åńōܲF9'ģX?č>?ą^L3ą¾*żKH LlµÖW:æ~¦mG”z„‡rw^ üj]Ÿ‰—Žī=}{‹ ¬ēžŁŲ9 —O~ūń—'żķéÉé‹Ņ'{=2j3æ1oī©B߁<]5śūēŽ)į_‰:†6«W÷VD›“ŁJµ ’.¤ ^mVJĶÖ«’ęĘ͉Õ,¦H/M®fE…Ū†·~ŠwÅø•kƒ»—gæaįć ÉՕµķ Öį^ŻjÜQøļ«`£5[­ÖFįw›n-}ށ—·M¶f|uvSĢ»Šģw¹)o›#¾"˽{ńōäėΊ[©šfńšwÉ4D¹ÓÖS«ŲBej,ėĢf±®@wŽ16ē©9fŅs&čt•ˆ_ĶÉā"ŠÜX„É ęK<ˆśx’‡KqЁėŁĀ¬«3\Õ⑇ź÷Ó*W(¶y&°Žł½õ€FŃ £é1Ea|‘¾l ˆ[ į ¤Wł’}*˜,ŅsfÜ2ćīg$2${A÷ĻbL™Š¦ Sڃe±(2ŻZć±½ėłaB<ŗKē½Ķ²Īš@zVßõu Uø¢[/·ø_ĀGī×ļ½uĄÄ°Mž2Č8o· ĶįŸMĘsž•Y…;.øa:Ūp›‡¼¹6cµjŃŖ”ÓYZR hąź‰‹ń÷bÉ“~ū¤āķbnŽ¢bTh­Ķģ½üęCx‹HŃĖ?„ӍYśbĶRŽ]Xjܼ KZ,}FÓT’Ź•ńŲn)yL²RŃIŹšŲ^ķjf[+Akœ„x”³‰R39gÉl35Ģh^ŅtČņ!¤@ŁĄØą_*\ė·Yśš³ó"€Š™åūęÜE@\Æ®¼åO©>;›cžVC@2¦’"Āõ±sŸLJ[°œą)’Eaƒ4ndT’õĄbŲ%ĶfiµJžō铻daRŲ£ƒć1Pwö$‰9µ¹7«©jö¬t§<’¼Qˆ[œ6aŚĘ¹k}Šåzfš ĆŖiśQ°Y ³ē#ģmS<#ę{Ćū†+wÖē ·ąĮ™|čŸEŒz{_üäŠfW³ģjģÜEp»CīõjĖĄ&ŖĀdłä¶¾ßūS ĀąĢš½:{ćGą«’i¼éŌ}õ!ž„aÅŌŽ^–QNļ胎šiĢ=Čz^ _cāM•×īYɛ±ū‡V™Ł‚˜SEV6 °ßԊTWŒŪD¢!;Wgsć×|ü» ”„ÉĄöČū}” ž;8„’¼Žā£’”R'[ó/Z4Ę—ĢŖ€©$œ˜»#GŚ“V— ‹qŽĶ! LhO±SuKśķ^‚zöeēPK .3|Q Č×yÕ4< briannesbitt-Carbon-d046377/src/Carbon/Traits/Mutability.phpUTŲ]Ā_„SĮN1½ļWL%ID“{B!* 8“ō֋×ėe§xķ•=N„*ž½c{w‰"|±<žy~ļĶųä¬kŗ¢XĢfĢą®A5j¼wĀŲØQp.\i ‡äƒøWsĪé9…[åK$‚“2׆–ęҶ§}ź„u ØZƒ“Ż£Ćū†@˜ 4JeÜ„=įcāG‹žÓЧāPK .3|QĒ‚ĀM¬F briannesbitt-Carbon-d046377/src/Carbon/Traits/ObjectInitialisation.phpUTŲ]Ā_=MK1†ļłsš EŚ{[µX*¤ģQ(Łdv3š&K2ŪEÄ’ī$lĖd¾Ÿ¼ė§ŽõJ-f338:ŹŠ’GßėÄ[`‡°Õ©‰ARęKw8—ŽŅ~kīą9‘pĄÜ3¬›n‚„‘ē&ž§Ö—˜ź¢všLģæuŽA ž †,'CÓY3Åp½G-¹ įXē^÷ŪŻį}WVU>všaŌ,eNŌ ŒFb'aĻqH吭° ō³ą_æņqLš8Ɣāņ€·ę ļ1iO¹RØbU›b¢OF‡E‰„—ĖÓÉÄ ƒap‚Ó öķ|šŗo.:A Ż”ZTß§Čr[ųožw”€,<@ĶVźWżPK .3|Qo–yéį ¼29 briannesbitt-Carbon-d046377/src/Carbon/Traits/Options.phpUTŲ]Ā_ķ[mS9žĪÆPꨳMl^Ā’»8›6@Ā^x©Ų©1>Jž‘ķŁĢ‹OŅ@L†’~-iޤ‘³°w•ŖųCšHŻZ­§[-yņėīl:[YŁX[[AkØ?õ{>Ašw†)GŃń)Ao1E!49_ń„¬ƒ¬o:-ōõpˆNyœ£_GāńM_w¢ąu*zQ 4Ž}9ŃlN½É”#ŗČ÷22G4ĄÜ‹Ā6šłCŪ•G®„އ£·'½%ķćSĢŃ5fČõ§Ž(ęÄEןBŲĪ¢˜:r„±+!ó³©\ō)ö8{¹²³¼Mż9 9”c})ūö1'}/ FsJ£k<ņį1÷ž€D§31–łč e#1™€šiä2Ä#äLq8!ˆνpĀ„›S;>fŒäźūdFBЁé¾Č÷£kPÉĄŗ©ÜõŒ.“©$śćQÄ\،ŲŌs1«›($ĶUž~k”įr ¬E:—'¶ņ}ĮGųąCä`ß»‘KnĶŅⳆŽĘŒGt‹ĻŽŸ]ō/{G_PtE(õäŅHŃLćͦ@ž>oČæ³x AŒĆ0Z X‰žwCŠ+ µjĄ”GG.ž ÷^ņuŃx‰ P8ч„'Ž`U6²@čq ¶Ēalƒ,ŻīńéÉžŽyՌų±­8FŲmč}²Ū°ē,ųd5SŠēKŒśī(iųT Łėś¦“ļ‘¶*”eõd2@”LČ7H<ōdTż9Ć%Œ‚Ō-oø ōź5j4·›[Ćd°õl8Ųģ¼&›ƒ-ųÓj3hģ§¢½8LŽ!ŗś1I>7éOćäzIsMžT@·SŌ*؟ įĪĶ^ēĖšū³ö­&p’£tž”«öŅʓŠM؛š©Öinvžėš7٤ŸCßĪ0Ł–2S|v«ģŻ•Ąē`¼öLNė—…3<¬›a l)0‹ēMˆm!ŌŖ<x6ųē 9Ż-½’CŚæ™liķQįü©W6ۿ胟—e”ƾ"ób%¤_µNœvā ™ZĻ^ڳwœœk=æi€†7&uŽx—{c³³=L¶, <­]“÷:ˆpiĘ+ģܱt³»»cm–[ķēś<ƌnĆ Ä$ĶV{ē¶•äĻkłwMóhN3ħaįi6Tģ Ųwbē' Q¶Ž!P2¢w~4Ā~VÅ[ż:Š"æĘ­jÜÓŹiLjlL’¦Źaļg©H ¢°u$qåĮ8 §‡G6M¼$”ˆw”y‡qčˆü&ĻaŽ£^Č8Į®Hw*ÉYmPÕy"4~ĀI¶Ę&…–÷ ūdóc™fā>ČȰĀ~˜ū–I°Zs¹½q 9µ¬»ĖāU_œĶš]Āą{‡ļ#Ś{nÄšęÖĒš#Ś×³²ŻĘōBB-‚ķh L~ZĵŅ8JÆJ`“ڇ!²!F‰Ś¢!FÄżšW,0»3tk-čG=)™°ōųæ÷NO`Qؗ_Ō<Ȍ^ŠDč́HŅa'ģŠč޲c‰“÷rBB°ō1†~§j,ųė÷eĶ’ÉśKf”82”ō#(#Ļ…Ņ>ū"†G„_ʘ!”„āĘĻ£nG\ųĪ‘ļ(¦aķ,%‹˜&E¾ #!–ß#”ņē<Š3QŠ!uPÉE‘C:Ƴ Ļf+Źį #Å}Øį+•*iØ)ćžÉ>™6g˜1mcģ3ŅŖxę‡ń–rAw»vē8ĪÜ ó(²SsaÉђßó:TĮt»V…jćK©x[YŌ„ĒP¾Ė!då‰,„üyšžŪŹˆų„TŻ<ā@ŃP,azė@!/ '¶Ž2]H„ –zĢī0U²yÓōN ¹ŲI‹üń’¼ü9„h b)āüĒYĮĆ!g]„]W•ŸŚŁ~½‘·žDYL$ד%NöÅQģ—’‰Į0ß¶ŖEą žt1ø*Vž <ß'ača8hĀ| @”rgł1…‚]ä5ÖZ*€V­YX?5-ą© Ä’­—qMū©ladW¤–Ÿžį9ü‘°ō·1¹“9KĮÅS|åE“B×{’Š .O8uÖµ³ģŻpµ[äö£ę’ŪBug½ē¶ H—Ʀ\»/ü (Pņüfʓlü”ĀéAēaėŽ ]N=|CŠĪÉMėÕ×Āč4…õ†ŸÜżĮ¹ūæŁ t.͵w#®Ż– %ńKno”æ‘“R©ƒŠCFW:,‘„ņł[HI7eCŻ%(lZFnjÜ#uå{†×®zŗŁ%Į[?b1­@ņčw…ĖÉŹ+ҵÜöH¤ō•Ÿ.ŗČŽyśék)‰ÅRu»Ņ­^„ˆĪIłāÄ"cäp٧a{ÄeÄZow%Š 6‚ĢŹR–k²Kv^/¼yĢ‚3!ŚŻMÆ^l@•+įŠĘ©: 󮶄S¦\Œåś²„d’²­rYĀҹ[‡¤Ż&j(§k}]Ģ•},Ūź4Ķ›½€ĘŻ:œŹ\ H’،”CAłÓōØ4Kz*RĆV«ÄU9°ź1ģĶÄK°ō“ ]Ź hfŗPx}¾ŌÄnuō²Hs}}=Ē/Ōnkę™åĖLĖ%ˆžĀ¢Į:l¦īf͉©,¬ä<ņ²h“³üdn$” į½¼t2Ožī'8¼äčÕĻ“ÕŧaĻOźēķR^j[“ōd¤Tō$dÓŅ2RŅ2ŽMĒL3J­’^lŖzNQŠF.±© $S)%«3TD+'Øļ61-5(i=%Ų”Ņ׍Ņ9Ŗ6µ2£¬ EĻ&JĮČ"…Z‰7 C°3EMI ĢŠźŒF3"αś•Ģ+©ä ū±x‹6 ±B”’īÄGÄoŖņ䕶įĮšGņŠc¼T2SIń­ŖĀĀān ›!Y|:G©ĶPą‹_»ąŠpéĘĮ¬¹°2­ŚĖK—ŒāÉQ8ŽŖA+ŽQ+a.Ēž‡Ž&„łe4śƒ8üņJT°ŅŸ­v)üFå7č*%®V)…ēK:hˆIåSm“QĪ…ų±ųmčTŽ}äĀöR^wsĄR–Óä’Õä+>qh—]b%SFĮįīą§x?s(KįŹ³Ģü ;“%/~üŹ=iAü{ Ł-NWÅ\$iå’Č-ł›öł›Č(IPE¦ņÖæé!NēŸÉWsrĆ$Ėö¦S*+¢QÅ|Óņ–łŪ]īļõśGĒ—‡§÷śĘ’‹q‡mwlæ¦}…ha£Jj¶Įµ'ä`.hœ’— “J¾9Dn¶a76PE³…4S’Ž®üPK .3|Q ąÉÉńm: briannesbitt-Carbon-d046377/src/Carbon/Traits/Rounding.phpUTŲ]Ā_ŻX[S7~÷Æ8™aĘ»ÄóX·€;e ¤u`2ćaÄ®lk²+¹’Ē-ü÷I{ó^œ@čՋ½Ņ¹~ēéHļē³y§³½¹ŁMøš1QĄß9‘ÄōŒĀ ‘w‚ćTš•Lé;¤5ä^ąĆɇKŖī˜ÖšžĪ|qüś] āƒ”ōW!­ IEˆłR²éLį!D, \”J>2&š ރyD ĪŻ3ŗ°|ēg'ƒĖO#ŹŚ§gDƂ(™Ņ’Ż%š†°`z†+h»‰ (* ­±ŪNbŖŠüĢ•›+I˜V{N¢ņ9÷sĘ5•$Ż+Æ ¾tnlS7×ü+ ~Ķ™Īg÷ `Š„‡ŒO3ØģwŹ¢L"p$ČÆ²õS:§o®!ŹńõĒš6OÅĶ"ßkŒiJŒ,„),»)y™ÉčWXpX¶nĢ&v‹żŠ¼5'«—ŸÆ=ä)ė/ša»įcvö}æ!øCžĪ…¶ŻP,Ā$&)QV„;#„Ļ~ •ž¢43Ó©zUļ2›¢×ĒV;äu³ p/MÉÜŁj^5Čm`Ļ—ŠR ˜\ŹC[HĄFŽī±Ī+żžLT%‘ĪZ$kT:UäÄj”zĪŠµĮ“fUĆX›I°¢ßd~ć&“ķBå]Ę©ØJ…ķī_šQ©EĶ{kŚ:¦Žä±Ö@_Iōhśb=ōK7Ė?Ó Ū¶·ĀÕ®7CĢåǚ>›*+ŗė·Įz‚·¬’%¤ęśųß j$·ŗę¢ēZÄgƘõą}ø9ÅzČ®ž¦Ķų‘+\ūxńĖ÷Œ]C$>#`^9¹˜×…ŸŽ¼'§Æ÷2»ĄkCĖēĻ‚õģ7µ źKĀ^:H䮟€˜W,XŠ“Ha]Z-x«3O‹†×,™ĖPX&³n^Ŗ`ķXĖū× Óä)5‘ī„mėĄ&]]$ŽÆ+„šŗÖ¬ļ^sZ ū”(”ß1W|zŁæf ›³©B{Atų1u‘h‚÷Æöp°Q¶h̳ō]üŠ˜,^eioRqpXæž|/®[$t5‹W³föę׌Fw~ȍ'øP¦i·tĖ,Q;’PK .3|Qč„KI®Ā? briannesbitt-Carbon-d046377/src/Carbon/Traits/Serialization.phpUTŲ]Ā_„WŪnŪ8}÷WĢF-©óž“M°½YdŪb}X4…AK£H­L©$ׯäßw†"uW`õb‹ ĻÜĪ _I1›æx1ƒp•¤ā4C ßB(y &Ax+Ō6—“~7ø"YĀ%ü®R!į#źmj ¼Śņ빤×ܬĀ|÷ʉ~ȕU—Ya^Tz“2‚, Qj:RĘ¹Ś “ęņŠ ­Ż¦ø·ß]^¼}’qżžUY|&öBC”j£Ņmi0‚}jŚ!ģ:/UˆtPdĮϤؔ&ųŽ”ė+%R£Og³R×kļ†XšłśśBފ,>XDõśić)žÖHęfé/ Ś{„³h-ücżé#hSʱ—y‡ŹH XÆäY–ļSy…Ź T&E}āDĻŻŅd`~@”F–w¹4ÉČz$śBž9±ū£¤£z ŌM’G ¢źŲńņęN²4„,E†Aµóź^ƒ¤ˆ9YX­VóXdŁ–éŅJčåP%øĒäģ¹`i#h†Ÿż;c1Žą§ķ7 Ķ…L okį¢ÅŪ6büp~SN”Śä;ŸŃUhœRT+'é?8æ f&¶ޱ)nēŲž’7 ‹ Ü:aŽØž~I©Źõdš…MQ¹+Žu/“†(*×|ł:`Īj>ףCŽ’²ˆ„ĮÅ,LŗĆ_¹Ä9…Å×”Uą k¤¢ĀĀ .ĀS”>ä.‹ö²"C ”)Pž:?+„’Ü.C€PÕ§•tB¹%¾!’”-ĻZ7g=UFńćuŌsf–婸 }«¼Må^£‚XQžĄĄ%¦;oۜˆ§Ä¾ˆIT¾×0NK“ęsNޙﲵö#]×0ƒ Bß!óڰ×p^ŹĘ1Ļ*łgKC~Ņ‚ßš/ü \uö²„Ų–:Ū’Ų~ÜÄą™[o»Ó{Ķń^Ūż¬ĘŹTü˜6fĆ"īl„ڱŗJ‰C•Ģ’;­Ć«±ļvéuŖ7ÕŁN¦ļĒα''„V{u£ī!T5{żŽ¾"^øŌbī”sꏦf€]x 7”4£4›0Zž8ū¶„ēĻ]ĖŲąOā<TĀnŸų§eėbŁĮ^¶ķĄ:z -æųē‚ÜræŪ=„ŽƒóX3& ¹¢m &sŒŻtåš»Üa{eä!:ւ©ˆ ΋͋6«[zł¦Ėö½Ās2¶Ó "u& 5š³3Ė“ż”ié’ņ•NX4ܼ8ķJ6g×ÜŻ> żVbт=‚57N°9ŗĄ0Sė]hóŽ÷śź·īÅw,‡~eO 2łIÉ[)\ ŠÆI]äØ#œĖBš3*¹ŗé%"ź"ŪT ½I„Nź®ÓjŖ`Ž NpFäļd4½4§Ė²x×IĒ`²ø>+d'ŁāŖ¬“#Pg Ÿ+Śet÷„ĘžMēr=ŁÜ[sZ/‡×Ķ%³ēŽĪ\׎Dkc‚ŠŪ”Żīˆņsęa(±ÆšßĆņ'pĶéæ”1RmŲģ¶ų“§•^č|!VĒł!{*dē CĮcŪUā6§&L¹“» Ķ„f(éĒČŁĻ÷/½äĖćųs«„¢Œ8ņķŽņ–Ś ]Š’¼Ģ"9«ąQø®āŽ‘’ä„U‚’†.‘Ģg|Qō¼K#7œrb=˜H݁ȃ^‘ļšąš ĘŖnŅ[2.t7–‰aĄß`ī'’—]÷”Q †÷·¶ićÕö³x$;9›½ųäØZÕl»« cD˜P„©½±ŻŻŌ‘ `Ÿ äU ¬¦p;Š[įµiE’#Bj”źø@·õł†ŖäŽļ7°]Oö4ū¹2½ ękĒŽ$£»»ćD0ĮP=W6PĒś«…īÆĪż:r#Łå‡;؈h—Šļ«[ŪūŁPK .3|Qö° Ä>6 briannesbitt-Carbon-d046377/src/Carbon/Traits/Test.phpUTŲ]Ā_ĶWkoŪ6żī_q[ ‰8ńw§I›%ig“I‡Ęư!@@K”MT" ’²›,żļ»W$õ²œ%{3DŽs_ēRoŽ®–«Į`|p0€˜-…Tdš’Ši *»äpĪō\I|e ~„kił0ŽąG-˜„knęĀZx3§Ūwo•=ŠU~ź—¾WŗJ‹,ƒX­īµX,-0™@&b. ŗ”©Ņ9³Bɬ2ĪšŁZšMi÷iz~y}sIPe|vÉ,l˜D«Å¼°<°K|ƒ±U蘣£¤ v<,ēĆ©ÜĪ4Öŗ9Ļ”)4?.o.˜å3‘óiž–Ķ3|<°“fÜŲĮĄßųŸ’žĘŁåĶlzżΦ7Oŗū×āq@ÄśĄXL8ō^Hc™ÄZsšŪBK*ś’KjS-0Ą4–^s¬cräĮę»5Ó€ė¬ˆż#’J+Ėcj¢{ ?ļkµ9Ž ė†#o¶¢¢æ e¹ŠæF½A2xq¾8•)ņ%D 8œ‚Y‹ĶŖ%“m ³ā±HE̲ģ ™pĻr•ej#ä(A”6“`pˆ„%Š’–ū”1øa9·K•Œ€;ņIN&囦żÆ.IÓ4Ĥē“_&A."7¼Ę`ŽFļŠŲāRüĆÉ6|9'Ģłܶ!!»śżmų}“ŽļKĆ£#ŒeBŅ%”&ÜMNpŪ>CY¼£.Ē®‘J%Y>(É)"œ‹Ż!ÉČxŠĀVTāĘæ±õy;WkN𐖸Z*`iŠÜ¼”åD0X³¬Ų¦^,˜NĖ8 Œ[Ųp¦ Fsd)‡¬bšći˜#¦.Hʊ̐:)tE­ėzæŗ…_ o””Ä"OQĖČ+)³ū­-ƒ&>:r>ŗ=¦,3ü±ä]˜PhN^w.ŪC^ĢQģŻÓBĘ4`ø9Øa…y5āŅO¤ŠXrre8Qcż: ĒÕĖļƒźŅÅ0™4ÖŽ s粬|Dš¶ZéČVæ™4$ŖŽŖĻWJ3-P0GS2½L=a6čhaüĘ%ܤQ’ēøĶ†®`©’uČļ#‡ĘŒĒ… , #ŗ“„¤[XŅbÜ’˜5]P|µØ°;ø5Ŗ‘v°-t¾‡ŸQMŖ eŲxŲcķ¢ÉßĢ’fGė¶ÉtśäˆShĶeCŠJjRė)ilćs ¾h$Ü)§÷ܝ¼]e¹ iĖŖ·(eZ—i1T‘tDĖ|„{jĻ«Ŗ4h*ļiŹīģ(HŁmÆn†Ķ•B)ÖE7‚–ƒ(zµ82%͟S%ÜWžY„f=įÕISѶKöÅŁR3bM[wŲéœM¢A#¬zvL°[ ˜¦~Nž ZŖUŽBN|ųĀīŠ/·įż;įŃŁ‡ĪŹ[Pw’¦ŁŅł½äĶ“ŻŽnēś¼<}Ül“Fāž}…#7óéāŠ?Œ`Æå·ŪµńŲ,EZ— X+”lS†ĄC „-ķ”ź-ģķAøo€āI-CŃį)q#Äõn‚!\øÖżį©iŲŚń eķėˆozwĻźu ³Ļ_©]^&ävB²­£@TņIŠ)jŸ¦Ī+VŲīų 9V¬K–ŃĀWßcūy¹ł<“C½żź0¦±õĶz£­CO6<ņł‚l5ž¶ æĶįŁ{ėkÖƏ·ŁāŒĀå°}ši-oś99%fD€Ė„ŒŲ(–Ō…“S\AŁEGEFn"ģZƒŸ _«r5ˆ“b§P]}ƀį6Iü0„’åÉĘ Ą‘Pر ū%’Ńb7rä2ާ„&M4T&ŹØŁļ§`ÅØ£KĒ$öŠŌ8ĮĘĄ "¤3źŚŻŒ“f˜Ė‚¬ĀX‚ƒĘQ˜°ŹĶĮølĆŲ Š:hqŹ8|‚†ą’0®~*6øäū#‰*“=t=ńS˜{D¼ĻPņŃĢõŖ\ 9”Œ’ ›Œģž+Ÿ7å÷*—ˆŹ8ā("śÜÉfג’a<ĀØČV0fø£¢œÄŚGhŚÜ V!J[ń€]Pģģ&u—%VŪŪ €> ö ,»ó5Čü„ ßķģGć™!Ąø¦4Tv,ŀ y’R~žsļOuYÅŅO}n¢ tB#t§‹§Ą'ŽtŖ Žx{{Båqŗśž»éź9¦)aīäXąI‚ŌØaYÖņ@8=Žæųxyø’ńģąrx~x1L›™8šr7Ć+į§€½†6zz§Q”™ķēÖ:JR”Õśq« +¹šåʲńh„#ćą3Ļc‚bŲøsŃń‡ą©x,MĆ`$śĢ‰‚ģóyįŲ† 3š›p¤/įĆčĮż}erwwzݼxQfŸģ~uŲ†u¹L d„R˜sviƁ·›IµŖiŠ5^ÖĒóéńÉÉq:”īež0čņmuGl^’ģĄ– מY9ł%…Ÿuü5Ń¢ć_B}VØóF’0$nYą6lµ”ÕĆ&FŽ­ČgąÓŁńßFFgÆLNEŻī¢ĘuźaX<؜Źėkfd܇¦^H‘»4Żė~.ydsŁ„I‘<eķŠs"ō˜LļZf½ Į$V ]85/KÄĪT•ß"lõ™ÕĶJ„I‰Õ_Īöį’óį.H*0­‚!v;}}ó©œ.ʗ*õXņFTJ„k~Xä”čƒ˜ 1Lßž`6„<»ƒØ[łÕįÉwƒĢ$°č‚± 5”F37ÄŪŌęšK½Żė0,ņ·JÓēmX/ō3‚ åŠŒŲ:»Õ[åżg¦oŪŠhA†bc°®˜¢d9‰­ZQ5™X¶˜¶ ŗÄTŚĪ»e.āķK›VĖč¬~ķ‹īŠEj{āE°ŅėšÜWjLÜŠifsÆ`uo\š ę™«X®&ÅĻŗyŸĮĖ3Ž%·ó>?«zŪj^ óбķ/:±žhüPK .3|Q) V? i.7 briannesbitt-Carbon-d046377/src/Carbon/Traits/Units.phpUTŲ]Ā_ķkSŪĘö»ņ”±œų‘6M:cB5Ī„ix\07“ ³–Ö¶Yrµ+ ü÷{ö%i„•‘)·”źC°“ē½ēœ=ēlŽl-f‹F£÷ģY=C£™OŃÄ‚æ 3M›4Ąń8 į“{§¤ °Üq[č×ŲĒ!Ś'tģ3†ŽŒłė»^#Öu£ł[ś>Š”Iȍ×±?1„C¾KB ,ĆIĻ1󣰍ĮšķŅ'Wļćī`ø<䤄|l†ŗĀy>e±?NńŠ•Ļf°²Ó(‰]ŒK_PŃ$VÄv0#toøĄˆćRm’mĻk#šŒYŒ]iKJJ4HÆĮ2œĘ·‚G握x7 =ŠX$¬ģ‡”įŒ”P?œ"ęƒŃž/ŗč0¢>ó/ Z”°Œ/I@5-Ų¹+ĆĢųę„dŠ-Ą@^ńY`Źŗ W“xž†ēˆļ&°^ēZ–æK¢E옰$8»źkOü]$cp1š¼ŠåGŲóŽøUĮ¦­åÜD?¶Š“(ų”;C°•[Ęģ”w.‡Ī‘4\īĆ͹ļĘQ³ßø7®Ü% € OæÄ1*ų$ZA ōĻ?ėž?™€ž ó6G=WVŲ(#q?Ȑ¦„“c8- øvŖM䡖µŠ$ˆ¢Ų‘¬{j‡śż½ŻĮŃĮńpp°æs|~8<:—æm’ē›)e ˆ ŽÉ@Ą%ī`d!"Ģ””?<_`ĻY¤×Śču5_4Ūčxtt~ø½sžqų~döĢTģF Byj ā4OFƒf v#V×ĪŚ;”p7g­%ą€tkćž^~ĮVA­t@S—|dž›FŲ’]ŁŪżųq7õ§qLšÅż“ƔžOМū!9šZŃĶTSSÉż“Ńša՛ĮYWKÉ\ ņįąä(·’o=|]KD.–”bgū³į-ßMō+B.jÉK)> ‡æå|„:Ķ£Ķ–*õņÅćÖą÷ó­žßģ>HQžs²}4rA»‚×/×īåėW[øŲ«—"?·µōĆĮöΐļĻcWš8ūꄵL?čbF'GŸ’ ņ“Ÿ„”ŸĢWŌ‘ŸäĆżżŻ“½ļŖ¦G&8 XYvõ¼¬X‚ q -‡Ėö W†x@#¹µ•²÷iiŁiż°Y]Aūs…ŒĻYŪ Į^¾'z3Ž,Aį„ƒ¬æā;уF®š¢Ńh®Y*ĖŪå„d†¬Ż ˜…Ķ—ų²ˆw¬ÕŚ5“”ĄŠw±ēŻź÷\ÕE„Bķ(žĖ\g{$@WŲmŒq“€žž\;Dc‚ܧ°Ń—>ę=3˜„~;Zl9ĒQŲNéA™ |ŗĒ |ŸūP¦M©į”Xės–7S_*ƒøĄłŲmƀ¦sŚ*8*ĶÆ‚¢ļUpD¶*/;3œ³\‚P{wź‡ē8Žńuź•»·ŠĶMJ'ńJ+żpĄ… å(äšĆ”ģšąéé»óyĀ8/®DӜ°YäUøb~,„Ö}õėžs_mW;ي˜IĄEś}.n[„?Ÿ0MAłPΤä=£'NnsŠé䩤;ł ‰ “"8²ći£—­eP?¾j‹¾ƒ6—‚™#»~Ÿc8?·Zö=éą&o³5»»©š.›e­ö“/M‰§Ÿ›UW”“ ŗśSc“r*og”į•KUt$~ųžśō\ZRĻ՞>E§œņy˜Ģ!Ō¦‚as“Ÿ …“VĄéā¶ĶńQĬ”8ó®ö“h‚Ŗv¬ČŌ<bB£ą’HdI“ó֕Døcȓ²&8 é¹XKéH+sæ7üWp5~¹yaSa÷K ²Hņ‹ō“¶ÜÄ3~¤tf%]ŖŹEDĪėj確łĒ(“Vóś0agÆ¢ī=‘õōprĆܼ'łŻ“Õ?łžœ=ĢąƒžZå2£B#4ˆß-ŰÆłµc÷Ÿu8ł°½ŠÉ×2hó-ś²¬įh«ĘłĢ¬Ҧ‚€źŹŖ°U‰S,[Ö*\]ėČå‰D[eĪģõŠ 0(UĢT2zĪ,qIŒEq.ŠJHf{‘us õŽĀSsZ`•R4_ ”·')ŹśCh>e NqĘ+ˆē1ŸŌ`ĒŪ°?Š2f„×ńÉ>¼ŸŁ:±u<†™0ņ_šī-ƒMżiČM$mŠCsüÕįŃdP±!ri¹Øƒ( ł™ō ź ¹:ÆŪčŌåßQ4žƒÉ~Oˆ”]«UE›L]˜˜jō mCrŽY:鏉’CC^šØ?NUO 9Töŗ3Am¹[*č“Xb³…móGŽ:¹"["ƒoLøĖ“‘iŗ Akš·”ÜÖi“Ó4«öč™tĖŖśDö+ęz®øå9–K*1‹FéW#W"‡»ha²D_źM¾”dR™„]^Ėü~&Š1'w–@ŠŹ‚ŸNYaPœrOŸ– @8÷DZ&q'~Lu÷ŪmB}nĆx¢ߚbHÓģ*ݦ־y›Ō|kRč /]Õ·Ž®ęÕÓ*¹’:Ūx±RŚ äDD_—VåGyéĘ­VüØ.¤Ŗj[柬*Q×¹G³„zčS_tp YĄ)cœLь±ķ÷zš›v³E7$Œæšß[¾·łĖ«×?’T­*æį.©šiQR5·H ÷Ń7Ńźf·x«lZõvŁÄža‰UmwĘĀ…7č…õ@2€žÆČę¶čŖł —§l STU;×2æJļĻóžSÅYŻV+TA­e/Y²LwGżØļćhžĖƒyü%ķ‡`•ĖŽm×"ŸI“æó€ēFņ–œ`Q·`Źdžži“K?J(’ Ö.[^ĮŖęäX’žB‡B“ń};”„½^§~³·Āą ¤żƒ7Ųšū ŽøøwެžōÓ7Īżī釪1}ć`’Nߊ½ƒģßéŪ²éæūł+‡o«ņ[aö–īõ㚽uJ³”:©łĮR%*y×εSAķH˜@öųEs᮸˜‰l^pŪųPK .3|Q§>Ŗ3›6 briannesbitt-Carbon-d046377/src/Carbon/Traits/Week.phpUTŲ]Ā_ķX_oŪ6÷§øaAk§qÜ CıS¬ķ† [óE€,ѱ™2HŖž±ę»ļīHQ”";Ī’ 0¾X$ļ?w<śųd1[t:ƒŻŻģĀēYŖašfšw)łĢLĄūHMr‰Kńut%ö‘–Č»q~Vi$į“Š“Ō8žŠōÄinöć|>v¤æäŠM‹,ƒ8_¬Tz53ɲ4R£J9ĶÕ<2i.÷`‘‰×¾¦bÉ|柾’ųéü#‰būĢ,2°Œ4$©6*F$°LĶ wŠv*Ø(acĶ…FóKWžś¬¢Ōčaå:Ķį‹ׄwKüfOĻĻģDó‰P{°‘ā8/¤AĆy„äū B&0^ģqžeł2•W°PłB(“ }äHß¹„Ź0°“D+}*/PVū꣔ģ[··†oe—7Z6f–'•YvŚąiÄ% éÕ]–G‘Š0‚ƒ^ )l·mĆ[Ų­Ü UdĶ•0xRgŒ…?„Öˆ¹®Ūܹ«½’r'ĖćŃ0£ɲj9ӨȌ_ß1N¢Š®µŁ(Å߆ĢūęÅD« äų£Œ=ļŌŗøčb²mW>H ³J’ c*Fų°LU>‡·Š=/$ŅõĄäpˆ³uŠ|³P‚w=Ō­ŃdEß4Cć±p$`ø’.Š –M¬¦2¦Įr“œ`!nöBėK5tᰐ¢įtļP)ķ—„`æOƒµģ՗*U''pжÉJqóGæ×ņēMēyśĻó-š\š^‚‡½’žT_>ŗk՘6·Ū Ēsg³ŸÖ‡ńč~N¼YćDH“®ŻųÕ]“U—a»t÷.ļ[Z쿜†śł_žŪ“µīQąč!½l)ķ {×g¦'jf_8ø–DÖĖģ#½Š÷Wļ‡ßWuyģ%Éß­·$ßnŪwø­ V%°_“čĪ3¼<‹Ą,zĢ‹,ģ\ĆÆõŽńęn9QoĀ^¢Å§fu ;żn)¤_E©‡IżÓ¦j5Š-/ķY”–üé¦āņåN ūOj]ĻżŸ«Żņyó §jÕ}5ĖĆK«<õląŲ¬{ĮÖ;s’ČpOYbå§×¶ĻĘ5½/rV̓‹œ+0uiw²UEĘ,£½Ö•3|.žwsƒŹčpj«ˆÆĄI:žJ¬ŗkĶĀB-vŲƗÅĘ®¶_¬õ‡3"Ž,ßó*KŌx?2äśēGØD·ŪčF’LKłwšMē_PK .3|QJ™h¦v ”(5 briannesbitt-Carbon-d046377/src/Carbon/Translator.phpUTŲ]Ā_½Z[sŪ6~ׯ@=jIŚ“”“ūäDi²ŽÓńŒ“īÄŁ‡Yå@$$qB,ŚV“ü÷=øń‚²ģtW¶Hē†ļ\©—æ›b4šŠ1ś“IZ„AšæĄ%Gł ń Aēø\ęnşńšL`­XīĒśg™bŠ>¶L9G/—āņ5…ĖœOā|ūJ/}——’ŠŖŹ2ēÅ®L׎0MP–Ę„2`IWy¹Å<ĶiˆŠŒ`øw›’;¹ļźņüāĆõ… %åćĢŃf(I/ÓeÅI‚īR¾' ;Ė«2&Ą(‘ĀNGo ń*/F£ čŸg9«JņB^|$«ŒÄ‚’Å}L ńÅ~š®¢qs’z·]åtwsžo‹œŹo>•˜² «%£8Ì!s,@ī9”Is –Ż4G_F>ņ,Äēø½•„tžS8 A Ē”aŗ®ŌyČõfŪė[\"\–x§ļLå’¢Ģ9؆bxĒhÜ":Cóˆl pÖˆ+Ęó-Źņgé_@¬É€3{4ė±ŁyĒ$-a_^¦°AžyœSŽSŠxcB‰·$t=_ Ó&ļ–ēšpÄs`Wt·Š €l8 k'ÓežgC SšņTŲ6ĒĪ6‚“7ˆĄž¦¢Ž+ŌSKąćm‰‡fÆĒŹč s½æšĀę)‹Kżx£o; ó‘šŖ¤7Č`Qš1½nOj,x«åžJE@+EQ.gH›IłG„”SD€SŹ6h¹C Yį*ćM¼Tb)„wmR-!Ō쯓'£5į¾į?CBEóKmę©łöėņõ“QÄ']!’‡”1 ¦œµ¼k®7.‚ EW|ö-ā@ųSK|‹wš¢¦ó­££½›ŖŚ§÷h›Ōʈ¢݆aŲ‰Vļdˆę¤¼yÆüø¾qIįĻJDŲńŹÜÓ Ń8†xEަ­; YVµ ōL.¢ųé+Ė[„¾°×X.Eo/?FŃě^Atō½õ8I®rœŅ÷dœņBi嶒źłĶńXÆ ZöüB¬?;s«Q¾„µQ7čI掭źy“ł0Ӣ퐁˜ Fp R$ąS=OŌpqÄk ą$oN~pÖŚóÅF_’`†4ĮõļŃDÅ)T7Ŗ‹³m_ vfrļ5뚔ĻnĒ]ŒŽ;–qZoČ`o’"®Łæ“™É į©FSø‘j×±ŁīÉĘG3ĘŚł=&[j¾hŪj÷HK}$Ūü–tŒµ*” ų˜«łV`¾y²½J)ńcL¦„+•°t+6šŅoևȻ¹šęM½@ż°įé+°#° „1_/±C@ŲHīSN¶5±Æ„²ęבTģź ‰~˜ĶŒn­$g"šžøŲ:ÕĪ/MœĮåĶŁŠÉē[Ø@Ŗ<0X•ˆE{Q Ó$”‰f<²D M*Ż[½ˆŹDY3aVµÕ>œ†¢gŹsĻY_čģ&³FÅ9ę8Ė×1I0·} ąIe g«f2Mé‰@÷d¶ŒÓ)z-ś¹sp’$¼\Ó¼$×ŗŌĪ:~ŲŻ)óŠ ¹}Üś $PĀضKRž¾śHž¬ōÉæź3š[9\؃śŽī‰łjkӑé™Eņ½/h2rł—VĆļ1›L&Ź«oqV’¶`„Ć«!dž³mń½ų§E>E7ņK‡ øoƒ?óŁ[¦šBŖ…łĮ35Ā÷D`uO*Ŗ \·8«ŪĶĶE½9I‚ICC& ŻwÖ“Ä„¢$TuSR?“ e+Žæńj=>”H”ŸMj8¼ ż¦²—>Ąŗ(gt4Ņó̊™^cĒåą®vŻ:ĘnYŽ:fĄ¢œS „„Y;½õ‚`ū:„qV%› 0_łŽlś#››ņ†J(VŅ“¹¤M‡¬Ō]’yFu.ēģŖßnŹäīC; ģ8ŹłSÓa Q”rмŹÄcėՏī TķcP ޳No ­½¤$«ōły‰„#ńČ¶ą»ąäŖ·é„Ž¢¢\UE…@+tļßӏ\©ŁČ;!¾oBóze’ŅŠĀļ÷b³®łfƒ“Ž“ęøĪņ„Ō¬Ÿj鏤g!³–RU‹Æ‡CÅóЦŠL-ÉTQœ¤¢æ§‚Ā·8ĶšąQØ Jā ōKvHÄJ8ėöȰ]!’’£»T@Ię1³Œ7“ĪdGń[Š#¶Žˆē’µ7F_¹żp36Q€Ūƒ7‚‡Oߊ•gĻŖ%“X S”EĪĢ„,¢OŠóžcožķ@B]lI¹® 9¦kŠč3Ł1ߊaĮpA~ ‰²É’fJŻM—OɓN‘õ“>M*“$߁<ĀųuŻźČ’j¤7¾{㼇2b·ėr¦ģA«^•8Āł8žL”IWi  ²‚<å±ØŻ vOīiś… فĄŽ3rĶółÖ°°kĒÖFWjo;A·jŲōė0Õ3Ń“u]¹kW$Ėd'FłŌqUŠrś»P”[ĪæćÜ[U8ū”#ļ!øXqRL2C†łmĄIBUüS¢Ź›°‰Ąxf»‰UżW-­×J,–ėĘHVÅŽ`m†ūŌFO+·€”Ņ$…>W¶Pbµ~æŖWH„‘{(zˆq³ÜO”ö{°ßa50ĀwcSĄü:*I‘į˜Dp/[āų³ļMē§ŃŸćÓæ_~æSÆ3Ӓ™  ÖŸCD?Ÿf„ˉ ˜é?’¾ÆĖ1ÓZ¾»Ž~9©ŸĖ·X¼ļŽ)ĘUQČ$b–Ė‹šåüłĀٵč-pü0õŠ×ÆØ}ļņśwyļHf„źõz‰~q•’ŚŠG‘Zwd—’®ÄęEޤŠe0±¤­÷…J£,æé£i«#*Ū4ÆŲUżZ­ēźö”ČŽ2«ßÅ=6Wtš]—É¢'DĖż<\ńÜė•hq¾-€©5^j—u}ŗ|ÕŁ3Ļ!¹ ųüß’MN'Įäx,ŠéŸ{”ĶĘMuģŚÆ`Żm§Eś|SŃĻĢƊ,åĀm¤LS§$]jĄł:Už¬ķX&Ț±‹ēĄš³Ūp©Ö‹ęĢM)¾–ĆéYjT,/y«&n©"=!Óź8§‰QČØ½G‰z_ļ}9{Õ¾-IŪ’õ,læšfóg 'ī{Ŭž]Ąp-Ū¢ķŽįäįńr%śŽ×Č'÷gā£ó7®@ä Md-ŽĖÜ,D»¶Įņ}ĶJĒēŽäRdƒc’9Ä” ™ß Ÿ~źJ¾ÆŽ”ŒÆöy\ĻßLkŹ5ĖTfŁŹI-6īL†” ^åū/‹Įķā¶({ēHכüĪdqšČoQRm æ?:øŠ"ł†ü’®r ž™wōšłCG­XƵ~šP¦·¢Ž±ā&Š°i\Ē‘q¬B“]g0āž9ĒKŁßC9Eī„ą’¤}–­“hžsµ„ļ¤''Ž¢ųµTJūóĆ»vζXŹ„×{¾Gt2CĻßi8ŗa¹ĖÓ·ŃPK .3|Q briannesbitt-Carbon-d046377/UTŲ]Ā_PK .3|Q^¬ Tf# Cbriannesbitt-Carbon-d046377/LICENSEUTŲ]Ā_PK .3|Q óbriannesbitt-Carbon-d046377/bin/UTŲ]Ā_PK .3|Q#ėŖ²¹z& :briannesbitt-Carbon-d046377/bin/carbonUTŲ]Ā_PK .3|Q{mu0U]* @briannesbitt-Carbon-d046377/bin/carbon.batUTŲ]Ā_PK .3|Q­ĆžŻ\v ) ębriannesbitt-Carbon-d046377/composer.jsonUTŲ]Ā_PK .3|QÖÉ$Ī~ + ’briannesbitt-Carbon-d046377/contributing.mdUTŲ]Ā_PK .3|Qzķdˆ* bbriannesbitt-Carbon-d046377/extension.neonUTŲ]Ā_PK .3|QóT>Õ % briannesbitt-Carbon-d046377/phpmd.xmlUTŲ]Ā_PK .3|QÓI×nz% ƒbriannesbitt-Carbon-d046377/readme.mdUTŲ]Ā_PK .3|Q = briannesbitt-Carbon-d046377/src/UTŲ]Ā_PK .3|Q' „ briannesbitt-Carbon-d046377/src/Carbon/UTŲ]Ā_PK .3|QW.Rśq1 Ņ briannesbitt-Carbon-d046377/src/Carbon/Carbon.phpUTŲ]Ā_PK .3|QŽ6©”  C |8briannesbitt-Carbon-d046377/src/Carbon/CarbonConverterInterface.phpUTŲ]Ā_PK .3|Qˆ‰ p‚: ļ9briannesbitt-Carbon-d046377/src/Carbon/CarbonImmutable.phpUTŲ]Ā_PK .3|Q³Kßf¬: oQbriannesbitt-Carbon-d046377/src/Carbon/CarbonInterface.phpUTŲ]Ā_PK .3|QŽĶåŽ:°O9 Æøbriannesbitt-Carbon-d046377/src/Carbon/CarbonInterval.phpUTŲ]Ā_PK .3|Q°>­¹ć/-"7 ķóbriannesbitt-Carbon-d046377/src/Carbon/CarbonPeriod.phpUTŲ]Ā_PK .3|Q=Š)[“ 9 .$briannesbitt-Carbon-d046377/src/Carbon/CarbonTimeZone.phpUTŲ]Ā_PK .3|Q+ é,briannesbitt-Carbon-d046377/src/Carbon/Cli/UTŲ]Ā_PK .3|Q„9-˜\½6 ;-briannesbitt-Carbon-d046377/src/Carbon/Cli/Invoker.phpUTŲ]Ā_PK .3|Q0 ō.briannesbitt-Carbon-d046377/src/Carbon/Doctrine/UTŲ]Ā_PK .3|QŁźšą÷F K/briannesbitt-Carbon-d046377/src/Carbon/Doctrine/CarbonDoctrineType.phpUTŲ]Ā_PK .3|Qó&’²37G Ą0briannesbitt-Carbon-d046377/src/Carbon/Doctrine/CarbonImmutableType.phpUTŲ]Ā_PK .3|Q”D\k'> a2briannesbitt-Carbon-d046377/src/Carbon/Doctrine/CarbonType.phpUTŲ]Ā_PK .3|Q’c’Zš G ķ3briannesbitt-Carbon-d046377/src/Carbon/Doctrine/CarbonTypeConverter.phpUTŲ]Ā_PK .3|Q8Ę0%:ØL µ7briannesbitt-Carbon-d046377/src/Carbon/Doctrine/DateTimeDefaultPrecision.phpUTŲ]Ā_PK .3|Q˜‚CeįI b9briannesbitt-Carbon-d046377/src/Carbon/Doctrine/DateTimeImmutableType.phpUTŲ]Ā_PK .3|QQ :’ŅB@ ę:briannesbitt-Carbon-d046377/src/Carbon/Doctrine/DateTimeType.phpUTŲ]Ā_PK .3|Q2 <briannesbitt-Carbon-d046377/src/Carbon/Exceptions/UTŲ]Ā_PK .3|Qšj’P x<briannesbitt-Carbon-d046377/src/Carbon/Exceptions/BadComparisonUnitException.phpUTŲ]Ā_PK .3|QØ ”S Y>briannesbitt-Carbon-d046377/src/Carbon/Exceptions/BadFluentConstructorException.phpUTŲ]Ā_PK .3|QÜ Lż‘ N g@briannesbitt-Carbon-d046377/src/Carbon/Exceptions/BadFluentSetterException.phpUTŲ]Ā_PK .3|QkÕ.ƒŽ=L mBbriannesbitt-Carbon-d046377/src/Carbon/Exceptions/BadMethodCallException.phpUTŲ]Ā_PK .3|Q‚µ¹Ļ? ¾Cbriannesbitt-Carbon-d046377/src/Carbon/Exceptions/Exception.phpUTŲ]Ā_PK .3|Q|ŠŠĶ‚ńH óDbriannesbitt-Carbon-d046377/src/Carbon/Exceptions/ImmutableException.phpUTŲ]Ā_PK .3|Qb…ą?N äFbriannesbitt-Carbon-d046377/src/Carbon/Exceptions/InvalidArgumentException.phpUTŲ]Ā_PK .3|Qā£HeqķJ 9Hbriannesbitt-Carbon-d046377/src/Carbon/Exceptions/InvalidCastException.phpUTŲ]Ā_PK .3|Q}yųOJ Jbriannesbitt-Carbon-d046377/src/Carbon/Exceptions/InvalidDateException.phpUTŲ]Ā_PK .3|Q|;briannesbitt-Carbon-d046377/src/Carbon/Lang/bas.phpUTŲ]Ā_PK .3|Q®ė¼&Ō %2  Abriannesbitt-Carbon-d046377/src/Carbon/Lang/be.phpUTŲ]Ā_PK .3|QįīÅ)5 :Ibriannesbitt-Carbon-d046377/src/Carbon/Lang/be_BY.phpUTŲ]Ā_PK .3|Q“FcKö; ØKbriannesbitt-Carbon-d046377/src/Carbon/Lang/be_BY@latin.phpUTŲ]Ā_PK .3|QDšóO3  Nbriannesbitt-Carbon-d046377/src/Carbon/Lang/bem.phpUTŲ]Ā_PK .3|Q ˇŗ6 mObriannesbitt-Carbon-d046377/src/Carbon/Lang/bem_ZM.phpUTŲ]Ā_PK .3|Q˜‹wßóO3 QRbriannesbitt-Carbon-d046377/src/Carbon/Lang/ber.phpUTŲ]Ā_PK .3|Qäjä’6 žSbriannesbitt-Carbon-d046377/src/Carbon/Lang/ber_DZ.phpUTŲ]Ā_PK .3|Qäjä’6  Vbriannesbitt-Carbon-d046377/src/Carbon/Lang/ber_MA.phpUTŲ]Ā_PK .3|QŖ3Zż3 tXbriannesbitt-Carbon-d046377/src/Carbon/Lang/bez.phpUTŲ]Ā_PK .3|Q,döyļY2 ÜZbriannesbitt-Carbon-d046377/src/Carbon/Lang/bg.phpUTŲ]Ā_PK .3|Q“C Ė 5 $`briannesbitt-Carbon-d046377/src/Carbon/Lang/bg_BG.phpUTŲ]Ā_PK .3|Q;–ęńO3 Kabriannesbitt-Carbon-d046377/src/Carbon/Lang/bhb.phpUTŲ]Ā_PK .3|QC›×åĒ6 –bbriannesbitt-Carbon-d046377/src/Carbon/Lang/bhb_IN.phpUTŲ]Ā_PK .3|Q<Ū-ńO3 Ųdbriannesbitt-Carbon-d046377/src/Carbon/Lang/bho.phpUTŲ]Ā_PK .3|QHv|ńĀŽ6 #fbriannesbitt-Carbon-d046377/src/Carbon/Lang/bho_IN.phpUTŲ]Ā_PK .3|QķĮńN2 Bibriannesbitt-Carbon-d046377/src/Carbon/Lang/bi.phpUTŲ]Ā_PK .3|Q vÅR_5 Œjbriannesbitt-Carbon-d046377/src/Carbon/Lang/bi_VU.phpUTŲ]Ā_PK .3|Q°įĒkĀ 2 :mbriannesbitt-Carbon-d046377/src/Carbon/Lang/bm.phpUTŲ]Ā_PK .3|QģŃÉŽh2 žpbriannesbitt-Carbon-d046377/src/Carbon/Lang/bn.phpUTŲ]Ā_PK .3|QéńS˜nG5 ivbriannesbitt-Carbon-d046377/src/Carbon/Lang/bn_BD.phpUTŲ]Ā_PK .3|QBżŖd5 3ybriannesbitt-Carbon-d046377/src/Carbon/Lang/bn_IN.phpUTŲ]Ā_PK .3|Qž˜¼čI2 ó{briannesbitt-Carbon-d046377/src/Carbon/Lang/bo.phpUTŲ]Ā_PK .3|Q&¦ŁĖ 5 ]€briannesbitt-Carbon-d046377/src/Carbon/Lang/bo_CN.phpUTŲ]Ā_PK .3|QڳąSÓž 5 „briannesbitt-Carbon-d046377/src/Carbon/Lang/bo_IN.phpUTŲ]Ā_PK .3|QĘ¢:ėž 2 ³„briannesbitt-Carbon-d046377/src/Carbon/Lang/br.phpUTŲ]Ā_PK .3|QÜ7>Ź 5 ÷ˆbriannesbitt-Carbon-d046377/src/Carbon/Lang/br_FR.phpUTŲ]Ā_PK .3|QéęLņO3 Šbriannesbitt-Carbon-d046377/src/Carbon/Lang/brx.phpUTŲ]Ā_PK .3|Q‰7,G6 i‹briannesbitt-Carbon-d046377/src/Carbon/Lang/brx_IN.phpUTŲ]Ā_PK .3|QŲꑅw 2  Žbriannesbitt-Carbon-d046377/src/Carbon/Lang/bs.phpUTŲ]Ā_PK .3|QB7²ņĖ 5 …’briannesbitt-Carbon-d046377/src/Carbon/Lang/bs_BA.phpUTŲ]Ā_PK .3|Qŗ8čR;7 ¬“briannesbitt-Carbon-d046377/src/Carbon/Lang/bs_Cyrl.phpUTŲ]Ā_PK .3|Qķ”Oą(7 E–briannesbitt-Carbon-d046377/src/Carbon/Lang/bs_Latn.phpUTŲ]Ā_PK .3|Qr¶ńO3 ƒ—briannesbitt-Carbon-d046377/src/Carbon/Lang/byn.phpUTŲ]Ā_PK .3|QU³Ó]€=6 Θbriannesbitt-Carbon-d046377/src/Carbon/Lang/byn_ER.phpUTŲ]Ā_PK .3|QÅĪóĻ5…2 «›briannesbitt-Carbon-d046377/src/Carbon/Lang/ca.phpUTŲ]Ā_PK .3|QÄ·7qą(5 9”briannesbitt-Carbon-d046377/src/Carbon/Lang/ca_AD.phpUTŲ]Ā_PK .3|QWWŪŹ 5 u¢briannesbitt-Carbon-d046377/src/Carbon/Lang/ca_ES.phpUTŲ]Ā_PK .3|QÄ·7qą(> ›£briannesbitt-Carbon-d046377/src/Carbon/Lang/ca_ES_Valencia.phpUTŲ]Ā_PK .3|QÄ·7qą(5 ą¤briannesbitt-Carbon-d046377/src/Carbon/Lang/ca_FR.phpUTŲ]Ā_PK .3|QÄ·7qą(5 ¦briannesbitt-Carbon-d046377/src/Carbon/Lang/ca_IT.phpUTŲ]Ā_PK .3|Qx‡Ø;Ŗ 3 X§briannesbitt-Carbon-d046377/src/Carbon/Lang/ccp.phpUTŲ]Ā_PK .3|Qłƒ²§ņB6 ķ©briannesbitt-Carbon-d046377/src/Carbon/Lang/ccp_IN.phpUTŲ]Ā_PK .3|Q³b’MńN2 <«briannesbitt-Carbon-d046377/src/Carbon/Lang/ce.phpUTŲ]Ā_PK .3|Qo«ęvŹ25 †¬briannesbitt-Carbon-d046377/src/Carbon/Lang/ce_RU.phpUTŲ]Ā_PK .3|Q"7«žö3 ¬Æbriannesbitt-Carbon-d046377/src/Carbon/Lang/cgg.phpUTŲ]Ā_PK .3|Qźŗ8ńO3 ²briannesbitt-Carbon-d046377/src/Carbon/Lang/chr.phpUTŲ]Ā_PK .3|Q0RXw6µ6 _³briannesbitt-Carbon-d046377/src/Carbon/Lang/chr_US.phpUTŲ]Ā_PK .3|QO%ėņO3 ņ¶briannesbitt-Carbon-d046377/src/Carbon/Lang/cmn.phpUTŲ]Ā_PK .3|QRŲ^ü‚I6 >øbriannesbitt-Carbon-d046377/src/Carbon/Lang/cmn_TW.phpUTŲ]Ā_PK .3|Qn±R¬ņO3 »briannesbitt-Carbon-d046377/src/Carbon/Lang/crh.phpUTŲ]Ā_PK .3|QXŃNօe6 i¼briannesbitt-Carbon-d046377/src/Carbon/Lang/crh_UA.phpUTŲ]Ā_PK .3|Q-Ā‹÷ą2 Kæbriannesbitt-Carbon-d046377/src/Carbon/Lang/cs.phpUTŲ]Ā_PK .3|Q#ÉåĖ 5 ›Äbriannesbitt-Carbon-d046377/src/Carbon/Lang/cs_CZ.phpUTŲ]Ā_PK .3|QõŹņO3 ĀÅbriannesbitt-Carbon-d046377/src/Carbon/Lang/csb.phpUTŲ]Ā_PK .3|Q8ޱīŽŗ6 Ēbriannesbitt-Carbon-d046377/src/Carbon/Lang/csb_PL.phpUTŲ]Ā_PK .3|Q±˜r§92 łÉbriannesbitt-Carbon-d046377/src/Carbon/Lang/cu.phpUTŲ]Ā_PK .3|Qg~б 2 ‹Ģbriannesbitt-Carbon-d046377/src/Carbon/Lang/cv.phpUTŲ]Ā_PK .3|Qe-)­Ė 5 ģŠbriannesbitt-Carbon-d046377/src/Carbon/Lang/cv_RU.phpUTŲ]Ā_PK .3|Q<ŠZšĒ 2 Ņbriannesbitt-Carbon-d046377/src/Carbon/Lang/cy.phpUTŲ]Ā_PK .3|QÉ? tĖ 5 „Öbriannesbitt-Carbon-d046377/src/Carbon/Lang/cy_GB.phpUTŲ]Ā_PK .3|QÄƏz°• 2 «×briannesbitt-Carbon-d046377/src/Carbon/Lang/da.phpUTŲ]Ā_PK .3|Qžx6æĖ 5 “Ūbriannesbitt-Carbon-d046377/src/Carbon/Lang/da_DK.phpUTŲ]Ā_PK .3|Qcj1ßŲ5 ŪÜbriannesbitt-Carbon-d046377/src/Carbon/Lang/da_GL.phpUTŲ]Ā_PK .3|Qxƒ¦Ū3 VŽbriannesbitt-Carbon-d046377/src/Carbon/Lang/dav.phpUTŲ]Ā_PK .3|QyÆV²}D2 ³ąbriannesbitt-Carbon-d046377/src/Carbon/Lang/de.phpUTŲ]Ā_PK .3|Q:É·žJ5 ‰åbriannesbitt-Carbon-d046377/src/Carbon/Lang/de_AT.phpUTŲ]Ā_PK .3|Q"„!™5 /ēbriannesbitt-Carbon-d046377/src/Carbon/Lang/de_BE.phpUTŲ]Ā_PK .3|Q«Ÿ*Æ5 ¬čbriannesbitt-Carbon-d046377/src/Carbon/Lang/de_CH.phpUTŲ]Ā_PK .3|QZōž)ū_5 2źbriannesbitt-Carbon-d046377/src/Carbon/Lang/de_DE.phpUTŲ]Ā_PK .3|QÆbü3łZ5 ‰ėbriannesbitt-Carbon-d046377/src/Carbon/Lang/de_IT.phpUTŲ]Ā_PK .3|Qdv|;Ź 5 Žģbriannesbitt-Carbon-d046377/src/Carbon/Lang/de_LI.phpUTŲ]Ā_PK .3|Q"„!™5 ībriannesbitt-Carbon-d046377/src/Carbon/Lang/de_LU.phpUTŲ]Ā_PK .3|Qе„®>ļ3 ļbriannesbitt-Carbon-d046377/src/Carbon/Lang/dje.phpUTŲ]Ā_PK .3|Q-'ĢńO3 ņbriannesbitt-Carbon-d046377/src/Carbon/Lang/doi.phpUTŲ]Ā_PK .3|QYm6]`V6 dóbriannesbitt-Carbon-d046377/src/Carbon/Lang/doi_IN.phpUTŲ]Ā_PK .3|QūŚ—ńO3 !öbriannesbitt-Carbon-d046377/src/Carbon/Lang/dsb.phpUTŲ]Ā_PK .3|Q½ōēÉ86 l÷briannesbitt-Carbon-d046377/src/Carbon/Lang/dsb_DE.phpUTŲ]Ā_PK .3|QLųĄnŗp3 ’śbriannesbitt-Carbon-d046377/src/Carbon/Lang/dua.phpUTŲ]Ā_PK .3|QĢ>ŗĄÅz 2 ¦żbriannesbitt-Carbon-d046377/src/Carbon/Lang/dv.phpUTŲ]Ā_PK .3|QÄ'鉀‚ 5 Äbriannesbitt-Carbon-d046377/src/Carbon/Lang/dv_MV.phpUTŲ]Ā_PK .3|Qšc ÷ćż3  briannesbitt-Carbon-d046377/src/Carbon/Lang/dyo.phpUTŲ]Ā_PK .3|QŽłndņN2 Żbriannesbitt-Carbon-d046377/src/Carbon/Lang/dz.phpUTŲ]Ā_PK .3|Qu·Źę\ 5 ( briannesbitt-Carbon-d046377/src/Carbon/Lang/dz_BT.phpUTŲ]Ā_PK .3|QVēü™žž3 j briannesbitt-Carbon-d046377/src/Carbon/Lang/ebu.phpUTŲ]Ā_PK .3|Q„ļk’Ÿi2 Ābriannesbitt-Carbon-d046377/src/Carbon/Lang/ee.phpUTŲ]Ā_PK .3|QĪ’ļ×5 ŗbriannesbitt-Carbon-d046377/src/Carbon/Lang/ee_TG.phpUTŲ]Ā_PK .3|QSŗ;Zu2 2briannesbitt-Carbon-d046377/src/Carbon/Lang/el.phpUTŲ]Ā_PK .3|QĢ„A..ø5 åbriannesbitt-Carbon-d046377/src/Carbon/Lang/el_CY.phpUTŲ]Ā_PK .3|Q‚vƕ)¦5 obriannesbitt-Carbon-d046377/src/Carbon/Lang/el_GR.phpUTŲ]Ā_PK .3|Q¼ģņŠ«2 ōbriannesbitt-Carbon-d046377/src/Carbon/Lang/en.phpUTŲ]Ā_PK .3|Qx^“óF6 × briannesbitt-Carbon-d046377/src/Carbon/Lang/en_001.phpUTŲ]Ā_PK .3|Qx^“óF6 '"briannesbitt-Carbon-d046377/src/Carbon/Lang/en_150.phpUTŲ]Ā_PK .3|Qi?#CÖ5 w#briannesbitt-Carbon-d046377/src/Carbon/Lang/en_AG.phpUTŲ]Ā_PK .3|Qx^“óF5 %briannesbitt-Carbon-d046377/src/Carbon/Lang/en_AI.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 e&briannesbitt-Carbon-d046377/src/Carbon/Lang/en_AS.phpUTŲ]Ā_PK .3|Qx^“óF5 Œ'briannesbitt-Carbon-d046377/src/Carbon/Lang/en_AT.phpUTŲ]Ā_PK .3|Q&ļŁ$Č5 Ū(briannesbitt-Carbon-d046377/src/Carbon/Lang/en_AU.phpUTŲ]Ā_PK .3|Qx^“óF5 Ä*briannesbitt-Carbon-d046377/src/Carbon/Lang/en_BB.phpUTŲ]Ā_PK .3|Qx^“óF5 ,briannesbitt-Carbon-d046377/src/Carbon/Lang/en_BE.phpUTŲ]Ā_PK .3|Qx^“óF5 b-briannesbitt-Carbon-d046377/src/Carbon/Lang/en_BI.phpUTŲ]Ā_PK .3|Qx^“óF5 ±.briannesbitt-Carbon-d046377/src/Carbon/Lang/en_BM.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 0briannesbitt-Carbon-d046377/src/Carbon/Lang/en_BS.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 '1briannesbitt-Carbon-d046377/src/Carbon/Lang/en_BW.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 N2briannesbitt-Carbon-d046377/src/Carbon/Lang/en_BZ.phpUTŲ]Ā_PK .3|Q„‚Ŗåo‰5 u3briannesbitt-Carbon-d046377/src/Carbon/Lang/en_CA.phpUTŲ]Ā_PK .3|Qx^“óF5 @5briannesbitt-Carbon-d046377/src/Carbon/Lang/en_CC.phpUTŲ]Ā_PK .3|Qx^“óF5 6briannesbitt-Carbon-d046377/src/Carbon/Lang/en_CH.phpUTŲ]Ā_PK .3|Qx^“óF5 Ž7briannesbitt-Carbon-d046377/src/Carbon/Lang/en_CK.phpUTŲ]Ā_PK .3|Qx^“óF5 -9briannesbitt-Carbon-d046377/src/Carbon/Lang/en_CM.phpUTŲ]Ā_PK .3|Qx^“óF5 |:briannesbitt-Carbon-d046377/src/Carbon/Lang/en_CX.phpUTŲ]Ā_PK .3|Qźśķf5 Ė;briannesbitt-Carbon-d046377/src/Carbon/Lang/en_CY.phpUTŲ]Ā_PK .3|Qx^“óF5 =briannesbitt-Carbon-d046377/src/Carbon/Lang/en_DE.phpUTŲ]Ā_PK .3|Qx^“óF5 Ü>briannesbitt-Carbon-d046377/src/Carbon/Lang/en_DG.phpUTŲ]Ā_PK .3|Q FLō5 +@briannesbitt-Carbon-d046377/src/Carbon/Lang/en_DK.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 ÓAbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_DM.phpUTŲ]Ā_PK .3|Qx^“óF5 śBbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_ER.phpUTŲ]Ā_PK .3|Qx^“óF5 IDbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_FI.phpUTŲ]Ā_PK .3|Qx^“óF5 ˜Ebriannesbitt-Carbon-d046377/src/Carbon/Lang/en_FJ.phpUTŲ]Ā_PK .3|Qx^“óF5 ēFbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_FK.phpUTŲ]Ā_PK .3|Qx^“óF5 6Hbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_FM.phpUTŲ]Ā_PK .3|QŽFIŸ~±5 …Ibriannesbitt-Carbon-d046377/src/Carbon/Lang/en_GB.phpUTŲ]Ā_PK .3|Qx^“óF5 _Kbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_GD.phpUTŲ]Ā_PK .3|Qx^“óF5 ®Lbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_GG.phpUTŲ]Ā_PK .3|Qx^“óF5 żMbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_GH.phpUTŲ]Ā_PK .3|Qx^“óF5 LObriannesbitt-Carbon-d046377/src/Carbon/Lang/en_GI.phpUTŲ]Ā_PK .3|Qx^“óF5 ›Pbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_GM.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 źQbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_GU.phpUTŲ]Ā_PK .3|Qx^“óF5 Sbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_GY.phpUTŲ]Ā_PK .3|QČDh‚CÅ5 `Tbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_HK.phpUTŲ]Ā_PK .3|Q‚ŹćČ5 ’Ubriannesbitt-Carbon-d046377/src/Carbon/Lang/en_IE.phpUTŲ]Ā_PK .3|Q&oqŪi|5 čWbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_IL.phpUTŲ]Ā_PK .3|Qx^“óF5 ­Ybriannesbitt-Carbon-d046377/src/Carbon/Lang/en_IM.phpUTŲ]Ā_PK .3|Q„4E‹›5 üZbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_IN.phpUTŲ]Ā_PK .3|Qx^“óF5 ć\briannesbitt-Carbon-d046377/src/Carbon/Lang/en_IO.phpUTŲ]Ā_PK .3|Q‘°l'6 2^briannesbitt-Carbon-d046377/src/Carbon/Lang/en_ISO.phpUTŲ]Ā_PK .3|Qx^“óF5 ¶_briannesbitt-Carbon-d046377/src/Carbon/Lang/en_JE.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 abriannesbitt-Carbon-d046377/src/Carbon/Lang/en_JM.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 ,bbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_KE.phpUTŲ]Ā_PK .3|Qx^“óF5 Scbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_KI.phpUTŲ]Ā_PK .3|Qx^“óF5 ¢dbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_KN.phpUTŲ]Ā_PK .3|Qx^“óF5 ńebriannesbitt-Carbon-d046377/src/Carbon/Lang/en_KY.phpUTŲ]Ā_PK .3|Qx^“óF5 @gbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_LC.phpUTŲ]Ā_PK .3|Qx^“óF5 hbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_LR.phpUTŲ]Ā_PK .3|Qx^“óF5 Žibriannesbitt-Carbon-d046377/src/Carbon/Lang/en_LS.phpUTŲ]Ā_PK .3|Qx^“óF5 -kbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_MG.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 |lbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_MH.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 £mbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_MO.phpUTŲ]Ā_PK .3|Qx^“óF5 Źnbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_MP.phpUTŲ]Ā_PK .3|Qx^“óF5 pbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_MS.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 hqbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_MT.phpUTŲ]Ā_PK .3|Qx^“óF5 rbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_MU.phpUTŲ]Ā_PK .3|Qx^“óF5 Žsbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_MW.phpUTŲ]Ā_PK .3|Qx^“óF5 -ubriannesbitt-Carbon-d046377/src/Carbon/Lang/en_MY.phpUTŲ]Ā_PK .3|Qx^“óF5 |vbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_NA.phpUTŲ]Ā_PK .3|Qx^“óF5 Ėwbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_NF.phpUTŲ]Ā_PK .3|Q«įņ”5 ybriannesbitt-Carbon-d046377/src/Carbon/Lang/en_NG.phpUTŲ]Ā_PK .3|Qx^“óF5 zbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_NL.phpUTŲ]Ā_PK .3|Qx^“óF5 Ü{briannesbitt-Carbon-d046377/src/Carbon/Lang/en_NR.phpUTŲ]Ā_PK .3|Qx^“óF5 +}briannesbitt-Carbon-d046377/src/Carbon/Lang/en_NU.phpUTŲ]Ā_PK .3|QĀ5NoŽČ5 z~briannesbitt-Carbon-d046377/src/Carbon/Lang/en_NZ.phpUTŲ]Ā_PK .3|Qx^“óF5 d€briannesbitt-Carbon-d046377/src/Carbon/Lang/en_PG.phpUTŲ]Ā_PK .3|QČDh‚CÅ5 ³briannesbitt-Carbon-d046377/src/Carbon/Lang/en_PH.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 Rƒbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_PK.phpUTŲ]Ā_PK .3|Qx^“óF5 y„briannesbitt-Carbon-d046377/src/Carbon/Lang/en_PN.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 ȅbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_PR.phpUTŲ]Ā_PK .3|Qx^“óF5 ļ†briannesbitt-Carbon-d046377/src/Carbon/Lang/en_PW.phpUTŲ]Ā_PK .3|Qx^“óF5 >ˆbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_RW.phpUTŲ]Ā_PK .3|Qx^“óF5 ‰briannesbitt-Carbon-d046377/src/Carbon/Lang/en_SB.phpUTŲ]Ā_PK .3|Qx^“óF5 ܊briannesbitt-Carbon-d046377/src/Carbon/Lang/en_SC.phpUTŲ]Ā_PK .3|Q'Ą._5 +Œbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_SD.phpUTŲ]Ā_PK .3|Qx^“óF5 ‰briannesbitt-Carbon-d046377/src/Carbon/Lang/en_SE.phpUTŲ]Ā_PK .3|Qķ„Q®Qi5 ŲŽbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_SG.phpUTŲ]Ā_PK .3|Qx^“óF5 …briannesbitt-Carbon-d046377/src/Carbon/Lang/en_SH.phpUTŲ]Ā_PK .3|Qx^“óF5 Ō‘briannesbitt-Carbon-d046377/src/Carbon/Lang/en_SI.phpUTŲ]Ā_PK .3|Qx^“óF5 #“briannesbitt-Carbon-d046377/src/Carbon/Lang/en_SL.phpUTŲ]Ā_PK .3|Qx^“óF5 r”briannesbitt-Carbon-d046377/src/Carbon/Lang/en_SS.phpUTŲ]Ā_PK .3|Qx^“óF5 Į•briannesbitt-Carbon-d046377/src/Carbon/Lang/en_SX.phpUTŲ]Ā_PK .3|Qx^“óF5 —briannesbitt-Carbon-d046377/src/Carbon/Lang/en_SZ.phpUTŲ]Ā_PK .3|Qx^“óF5 _˜briannesbitt-Carbon-d046377/src/Carbon/Lang/en_TC.phpUTŲ]Ā_PK .3|Qx^“óF5 ®™briannesbitt-Carbon-d046377/src/Carbon/Lang/en_TK.phpUTŲ]Ā_PK .3|Qx^“óF5 żšbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_TO.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 Lœbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_TT.phpUTŲ]Ā_PK .3|Qx^“óF5 sbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_TV.phpUTŲ]Ā_PK .3|Qx^“óF5 Āžbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_TZ.phpUTŲ]Ā_PK .3|Qx^“óF5  briannesbitt-Carbon-d046377/src/Carbon/Lang/en_UG.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 `”briannesbitt-Carbon-d046377/src/Carbon/Lang/en_UM.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 ‡¢briannesbitt-Carbon-d046377/src/Carbon/Lang/en_US.phpUTŲ]Ā_PK .3|Qq~mqĖ ; ®£briannesbitt-Carbon-d046377/src/Carbon/Lang/en_US_Posix.phpUTŲ]Ā_PK .3|Qx^“óF5 Ū¤briannesbitt-Carbon-d046377/src/Carbon/Lang/en_VC.phpUTŲ]Ā_PK .3|Qx^“óF5 *¦briannesbitt-Carbon-d046377/src/Carbon/Lang/en_VG.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 y§briannesbitt-Carbon-d046377/src/Carbon/Lang/en_VI.phpUTŲ]Ā_PK .3|Qx^“óF5  Øbriannesbitt-Carbon-d046377/src/Carbon/Lang/en_VU.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 ļ©briannesbitt-Carbon-d046377/src/Carbon/Lang/en_WS.phpUTŲ]Ā_PK .3|Q7‚æ$z5 «briannesbitt-Carbon-d046377/src/Carbon/Lang/en_ZA.phpUTŲ]Ā_PK .3|QŹü¤_Eš5 ģ¬briannesbitt-Carbon-d046377/src/Carbon/Lang/en_ZM.phpUTŲ]Ā_PK .3|Qq~mqĖ 5 ®briannesbitt-Carbon-d046377/src/Carbon/Lang/en_ZW.phpUTŲ]Ā_PK .3|QUėZ™j 2 “Æbriannesbitt-Carbon-d046377/src/Carbon/Lang/eo.phpUTŲ]Ā_PK .3|Qé ö½ß{2 ¦³briannesbitt-Carbon-d046377/src/Carbon/Lang/es.phpUTŲ]Ā_PK .3|Q‡ädŖ'¦6 Žøbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_419.phpUTŲ]Ā_PK .3|Q‡ädŖ'¦5 bŗbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_AR.phpUTŲ]Ā_PK .3|QĖĢņ &¦5 å»briannesbitt-Carbon-d046377/src/Carbon/Lang/es_BO.phpUTŲ]Ā_PK .3|Q” ÕņF5 g½briannesbitt-Carbon-d046377/src/Carbon/Lang/es_BR.phpUTŲ]Ā_PK .3|Q” ÕņF5 µ¾briannesbitt-Carbon-d046377/src/Carbon/Lang/es_BZ.phpUTŲ]Ā_PK .3|Q‡ädŖ'¦5 Ąbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_CL.phpUTŲ]Ā_PK .3|Q‡ädŖ'¦5 †Įbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_CO.phpUTŲ]Ā_PK .3|Qažźč3Į5  Ćbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_CR.phpUTŲ]Ā_PK .3|Q ösóF5 ˜Äbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_CU.phpUTŲ]Ā_PK .3|QYÓb1‘«5 ēÅbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_DO.phpUTŲ]Ā_PK .3|Q ösóF5 ŌĒbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_EA.phpUTŲ]Ā_PK .3|Q‡ädŖ'¦5 #Ébriannesbitt-Carbon-d046377/src/Carbon/Lang/es_EC.phpUTŲ]Ā_PK .3|QEV?ķD5 ¦Źbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_ES.phpUTŲ]Ā_PK .3|Q ösóF5 ļĖbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_GQ.phpUTŲ]Ā_PK .3|Q‡ädŖ'¦5 >Ķbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_GT.phpUTŲ]Ā_PK .3|Q‡ädŖ'¦5 ĮĪbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_HN.phpUTŲ]Ā_PK .3|Q ösóF5 DŠbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_IC.phpUTŲ]Ā_PK .3|QÆ ·`<Ļ5 “Ńbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_MX.phpUTŲ]Ā_PK .3|Q-¶|K5Į5 +Óbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_NI.phpUTŲ]Ā_PK .3|Q‡ädŖ'¦5 ¼Ōbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_PA.phpUTŲ]Ā_PK .3|Q‡ädŖ'¦5 ?Öbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_PE.phpUTŲ]Ā_PK .3|Q[Ū;ń@85 Ā×briannesbitt-Carbon-d046377/src/Carbon/Lang/es_PH.phpUTŲ]Ā_PK .3|Q-¶|K5Į5 ^Łbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_PR.phpUTŲ]Ā_PK .3|Q‡ädŖ'¦5 ļŚbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_PY.phpUTŲ]Ā_PK .3|Q‰[É|ƒ5 rÜbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_SV.phpUTŲ]Ā_PK .3|Q»(RHŻk5 JŽbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_US.phpUTŲ]Ā_PK .3|Q4ŠĶ 5 ƒąbriannesbitt-Carbon-d046377/src/Carbon/Lang/es_UY.phpUTŲ]Ā_PK .3|Q‡ädŖ'¦5 `ābriannesbitt-Carbon-d046377/src/Carbon/Lang/es_VE.phpUTŲ]Ā_PK .3|Q„“ų‘ 2 ććbriannesbitt-Carbon-d046377/src/Carbon/Lang/et.phpUTŲ]Ā_PK .3|Q’SœĖ 5 Očbriannesbitt-Carbon-d046377/src/Carbon/Lang/et_EE.phpUTŲ]Ā_PK .3|Q‘żÕącš2 vébriannesbitt-Carbon-d046377/src/Carbon/Lang/eu.phpUTŲ]Ā_PK .3|Q S¼PĖ 5 2ķbriannesbitt-Carbon-d046377/src/Carbon/Lang/eu_ES.phpUTŲ]Ā_PK .3|Qš¶čż­Z3 Yībriannesbitt-Carbon-d046377/src/Carbon/Lang/ewo.phpUTŲ]Ā_PK .3|Q^5&å ż2 `ńbriannesbitt-Carbon-d046377/src/Carbon/Lang/fa.phpUTŲ]Ā_PK .3|QZø1¼K 5 Ćöbriannesbitt-Carbon-d046377/src/Carbon/Lang/fa_AF.phpUTŲ]Ā_PK .3|QPĄ‘Ė 5 jųbriannesbitt-Carbon-d046377/src/Carbon/Lang/fa_IR.phpUTŲ]Ā_PK .3|Qß/’¶—2 ‘łbriannesbitt-Carbon-d046377/src/Carbon/Lang/ff.phpUTŲ]Ā_PK .3|QY›Ė 5  übriannesbitt-Carbon-d046377/src/Carbon/Lang/ff_CM.phpUTŲ]Ā_PK .3|QY›Ė 5 Ēżbriannesbitt-Carbon-d046377/src/Carbon/Lang/ff_GN.phpUTŲ]Ā_PK .3|QWtģU&5 īžbriannesbitt-Carbon-d046377/src/Carbon/Lang/ff_MR.phpUTŲ]Ā_PK .3|Qį²Y¹ś^5 pbriannesbitt-Carbon-d046377/src/Carbon/Lang/ff_SN.phpUTŲ]Ā_PK .3|Q± ßv¢ 2 Ębriannesbitt-Carbon-d046377/src/Carbon/Lang/fi.phpUTŲ]Ā_PK .3|Q­K%BŹ 5 6briannesbitt-Carbon-d046377/src/Carbon/Lang/fi_FI.phpUTŲ]Ā_PK .3|Qifö)ņO3 \briannesbitt-Carbon-d046377/src/Carbon/Lang/fil.phpUTŲ]Ā_PK .3|Q”³1¤Ē06 Øbriannesbitt-Carbon-d046377/src/Carbon/Lang/fil_PH.phpUTŲ]Ā_PK .3|Q"ŅĻ„ž 2 Ģ briannesbitt-Carbon-d046377/src/Carbon/Lang/fo.phpUTŲ]Ā_PK .3|QČB‹UŅ5 ©briannesbitt-Carbon-d046377/src/Carbon/Lang/fo_DK.phpUTŲ]Ā_PK .3|Q*BJ„Ė 5 #briannesbitt-Carbon-d046377/src/Carbon/Lang/fo_FO.phpUTŲ]Ā_PK .3|QzOkŲ=š2 Jbriannesbitt-Carbon-d046377/src/Carbon/Lang/fr.phpUTŲ]Ā_PK .3|Q~łłEŃ5 ąbriannesbitt-Carbon-d046377/src/Carbon/Lang/fr_BE.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_BF.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 §briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_BI.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 Ķbriannesbitt-Carbon-d046377/src/Carbon/Lang/fr_BJ.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 óbriannesbitt-Carbon-d046377/src/Carbon/Lang/fr_BL.phpUTŲ]Ā_PK .3|Qß6¾Rū5 briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_CA.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 Ēbriannesbitt-Carbon-d046377/src/Carbon/Lang/fr_CD.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 ķ briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_CF.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 "briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_CG.phpUTŲ]Ā_PK .3|QŖ°“v>Ė5 9#briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_CH.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 Ó$briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_CI.phpUTŲ]Ā_PK .3|Q ³ Ć÷L5 ł%briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_CM.phpUTŲ]Ā_PK .3|Q.J«‡7'5 L'briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_DJ.phpUTŲ]Ā_PK .3|Q “¢ąC@5 ß(briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_DZ.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 ~*briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_FR.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 ¤+briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_GA.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 Ź,briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_GF.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 š-briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_GN.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 /briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_GP.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 <0briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_GQ.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 b1briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_HT.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 ˆ2briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_KM.phpUTŲ]Ā_PK .3|Q³]öŌ_5 ®3briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_LU.phpUTŲ]Ā_PK .3|QpŠ:_5 i5briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_MA.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 Ē6briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_MC.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 ķ7briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_MF.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 9briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_MG.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 9:briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_ML.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 _;briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_MQ.phpUTŲ]Ā_PK .3|QĄd2½& 5 …<briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_MR.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 >briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_MU.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 -?briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_NC.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 S@briannesbitt-Carbon-d046377/src/Carbon/Lang/fr_NE.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 yAbriannesbitt-Carbon-d046377/src/Carbon/Lang/fr_PF.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 ŸBbriannesbitt-Carbon-d046377/src/Carbon/Lang/fr_PM.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 ÅCbriannesbitt-Carbon-d046377/src/Carbon/Lang/fr_RE.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 ėDbriannesbitt-Carbon-d046377/src/Carbon/Lang/fr_RW.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 Fbriannesbitt-Carbon-d046377/src/Carbon/Lang/fr_SC.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 7Gbriannesbitt-Carbon-d046377/src/Carbon/Lang/fr_SN.phpUTŲ]Ā_PK .3|Q “¢ąC@5 ]Hbriannesbitt-Carbon-d046377/src/Carbon/Lang/fr_SY.phpUTŲ]Ā_PK .3|QĄd2½& 5 üIbriannesbitt-Carbon-d046377/src/Carbon/Lang/fr_TD.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 ~Kbriannesbitt-Carbon-d046377/src/Carbon/Lang/fr_TG.phpUTŲ]Ā_PK .3|QĘźŗ5"5 ¤Lbriannesbitt-Carbon-d046377/src/Carbon/Lang/fr_TN.phpUTŲ]Ā_PK .3|QĄd2½& 5 5Nbriannesbitt-Carbon-d046377/src/Carbon/Lang/fr_VU.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 ·Obriannesbitt-Carbon-d046377/src/Carbon/Lang/fr_WF.phpUTŲ]Ā_PK .3|QŠfōcŹ 5 ŻPbriannesbitt-Carbon-d046377/src/Carbon/Lang/fr_YT.phpUTŲ]Ā_PK .3|Q—ł÷ńO3 Rbriannesbitt-Carbon-d046377/src/Carbon/Lang/fur.phpUTŲ]Ā_PK .3|Qyć•č.6 NSbriannesbitt-Carbon-d046377/src/Carbon/Lang/fur_IT.phpUTŲ]Ā_PK .3|Q®SW»N 2 ŁUbriannesbitt-Carbon-d046377/src/Carbon/Lang/fy.phpUTŲ]Ā_PK .3|QÕÕØ€ 5 ķYbriannesbitt-Carbon-d046377/src/Carbon/Lang/fy_DE.phpUTŲ]Ā_PK .3|QźČĒ„õÜ5 T\briannesbitt-Carbon-d046377/src/Carbon/Lang/fy_NL.phpUTŲ]Ā_PK .3|Qœ#zł“ 2 „^briannesbitt-Carbon-d046377/src/Carbon/Lang/ga.phpUTŲ]Ā_PK .3|Q[D»†Ė 5 cbriannesbitt-Carbon-d046377/src/Carbon/Lang/ga_IE.phpUTŲ]Ā_PK .3|Q)įÓĖńŠ 2 -dbriannesbitt-Carbon-d046377/src/Carbon/Lang/gd.phpUTŲ]Ā_PK .3|Q?J[ĪĖ 5 whbriannesbitt-Carbon-d046377/src/Carbon/Lang/gd_GB.phpUTŲ]Ā_PK .3|Q8Ö¼ņO3 žibriannesbitt-Carbon-d046377/src/Carbon/Lang/gez.phpUTŲ]Ā_PK .3|Qą†»¹Ē€6 źjbriannesbitt-Carbon-d046377/src/Carbon/Lang/gez_ER.phpUTŲ]Ā_PK .3|QŗU’EÜ6 nbriannesbitt-Carbon-d046377/src/Carbon/Lang/gez_ET.phpUTŲ]Ā_PK .3|QĶķ‰KM 2 °pbriannesbitt-Carbon-d046377/src/Carbon/Lang/gl.phpUTŲ]Ā_PK .3|QŠQ¾Ė 5 Tubriannesbitt-Carbon-d046377/src/Carbon/Lang/gl_ES.phpUTŲ]Ā_PK .3|QÄsī ņQ3 {vbriannesbitt-Carbon-d046377/src/Carbon/Lang/gom.phpUTŲ]Ā_PK .3|Q‡“"žtU 8 Ēwbriannesbitt-Carbon-d046377/src/Carbon/Lang/gom_Latn.phpUTŲ]Ā_PK .3|QŒ5Ę­ 3 š{briannesbitt-Carbon-d046377/src/Carbon/Lang/gsw.phpUTŲ]Ā_PK .3|QSóOĢ 6 ‘~briannesbitt-Carbon-d046377/src/Carbon/Lang/gsw_CH.phpUTŲ]Ā_PK .3|QśR{k6 ŗbriannesbitt-Carbon-d046377/src/Carbon/Lang/gsw_FR.phpUTŲ]Ā_PK .3|QśR{k6 ’briannesbitt-Carbon-d046377/src/Carbon/Lang/gsw_LI.phpUTŲ]Ā_PK .3|QŃå­W' 2 jƒbriannesbitt-Carbon-d046377/src/Carbon/Lang/gu.phpUTŲ]Ā_PK .3|QŠ{J~Ė 5 ˆbriannesbitt-Carbon-d046377/src/Carbon/Lang/gu_IN.phpUTŲ]Ā_PK .3|Q_£hžJ”3 A‰briannesbitt-Carbon-d046377/src/Carbon/Lang/guz.phpUTŲ]Ā_PK .3|Q Ä©éńN2 å‹briannesbitt-Carbon-d046377/src/Carbon/Lang/gv.phpUTŲ]Ā_PK .3|Q.•Ź}Ī5 /briannesbitt-Carbon-d046377/src/Carbon/Lang/gv_GB.phpUTŲ]Ā_PK .3|QÄūŁb˜ļ2 briannesbitt-Carbon-d046377/src/Carbon/Lang/ha.phpUTŲ]Ā_PK .3|QŠ‹YŹ 5 ł’briannesbitt-Carbon-d046377/src/Carbon/Lang/ha_GH.phpUTŲ]Ā_PK .3|QŠ‹YŹ 5 ”briannesbitt-Carbon-d046377/src/Carbon/Lang/ha_NE.phpUTŲ]Ā_PK .3|QŠ‹YŹ 5 E•briannesbitt-Carbon-d046377/src/Carbon/Lang/ha_NG.phpUTŲ]Ā_PK .3|Q/{PņO3 k–briannesbitt-Carbon-d046377/src/Carbon/Lang/hak.phpUTŲ]Ā_PK .3|QšPש6 ·—briannesbitt-Carbon-d046377/src/Carbon/Lang/hak_TW.phpUTŲ]Ā_PK .3|Q2ĘÄe€3 ¤šbriannesbitt-Carbon-d046377/src/Carbon/Lang/haw.phpUTŲ]Ā_PK .3|Q,}ėsY` 2 cbriannesbitt-Carbon-d046377/src/Carbon/Lang/he.phpUTŲ]Ā_PK .3|Qp…HŻĖ 5 ¢briannesbitt-Carbon-d046377/src/Carbon/Lang/he_IL.phpUTŲ]Ā_PK .3|Q­>Ś4° 2 <£briannesbitt-Carbon-d046377/src/Carbon/Lang/hi.phpUTŲ]Ā_PK .3|Q?ēŠĖ 5 ɧbriannesbitt-Carbon-d046377/src/Carbon/Lang/hi_IN.phpUTŲ]Ā_PK .3|QŪ@¬ņO3 šØbriannesbitt-Carbon-d046377/src/Carbon/Lang/hif.phpUTŲ]Ā_PK .3|Q{9ätrš6 <Ŗbriannesbitt-Carbon-d046377/src/Carbon/Lang/hif_FJ.phpUTŲ]Ā_PK .3|Q~@ÉńO3  ­briannesbitt-Carbon-d046377/src/Carbon/Lang/hne.phpUTŲ]Ā_PK .3|QŽibµKE6 V®briannesbitt-Carbon-d046377/src/Carbon/Lang/hne_IN.phpUTŲ]Ā_PK .3|Q^ōįßø2 ž°briannesbitt-Carbon-d046377/src/Carbon/Lang/hr.phpUTŲ]Ā_PK .3|QoĻRŠ3ō5 6¶briannesbitt-Carbon-d046377/src/Carbon/Lang/hr_BA.phpUTŲ]Ā_PK .3|QB½6«Ė 5 Åøbriannesbitt-Carbon-d046377/src/Carbon/Lang/hr_HR.phpUTŲ]Ā_PK .3|QīB` ńO3 ģ¹briannesbitt-Carbon-d046377/src/Carbon/Lang/hsb.phpUTŲ]Ā_PK .3|Q’ķ ÕK6 7»briannesbitt-Carbon-d046377/src/Carbon/Lang/hsb_DE.phpUTŲ]Ā_PK .3|QĒ<¦ńN2 i¾briannesbitt-Carbon-d046377/src/Carbon/Lang/ht.phpUTŲ]Ā_PK .3|Q臬O^?5 ³æbriannesbitt-Carbon-d046377/src/Carbon/Lang/ht_HT.phpUTŲ]Ā_PK .3|QČßofŒÜ2 mĀbriannesbitt-Carbon-d046377/src/Carbon/Lang/hu.phpUTŲ]Ā_PK .3|Q[“ó”Ė 5 RĒbriannesbitt-Carbon-d046377/src/Carbon/Lang/hu_HU.phpUTŲ]Ā_PK .3|Q¬ū”Ź­Ó 2 yČbriannesbitt-Carbon-d046377/src/Carbon/Lang/hy.phpUTŲ]Ā_PK .3|Qa®zƒ]ų5 Ķbriannesbitt-Carbon-d046377/src/Carbon/Lang/hy_AM.phpUTŲ]Ā_PK .3|Q śj 4 8Ļbriannesbitt-Carbon-d046377/src/Carbon/Lang/i18n.phpUTŲ]Ā_PK .3|Q4ć•ģšN2 żŠbriannesbitt-Carbon-d046377/src/Carbon/Lang/ia.phpUTŲ]Ā_PK .3|Q%šŽÖju5 FŅbriannesbitt-Carbon-d046377/src/Carbon/Lang/ia_FR.phpUTŲ]Ā_PK .3|QgžÖĀ Y 2  Õbriannesbitt-Carbon-d046377/src/Carbon/Lang/id.phpUTŲ]Ā_PK .3|Q­‘™Ź 5 nŁbriannesbitt-Carbon-d046377/src/Carbon/Lang/id_ID.phpUTŲ]Ā_PK .3|Q “£‹ńN2 ”Śbriannesbitt-Carbon-d046377/src/Carbon/Lang/ig.phpUTŲ]Ā_PK .3|Q+Ügk5 ŽŪbriannesbitt-Carbon-d046377/src/Carbon/Lang/ig_NG.phpUTŲ]Ā_PK .3|Q’›W”hr2 ”Žbriannesbitt-Carbon-d046377/src/Carbon/Lang/ii.phpUTŲ]Ā_PK .3|Q7ș¶ńN2 bįbriannesbitt-Carbon-d046377/src/Carbon/Lang/ik.phpUTŲ]Ā_PK .3|Q2o>؃ 5 ¬ābriannesbitt-Carbon-d046377/src/Carbon/Lang/ik_CA.phpUTŲ]Ā_PK .3|Q­‘™Ź 2 ‹åbriannesbitt-Carbon-d046377/src/Carbon/Lang/in.phpUTŲ]Ā_PK .3|QŹG“åŲ2 ®ębriannesbitt-Carbon-d046377/src/Carbon/Lang/is.phpUTŲ]Ā_PK .3|QŸ©ēpĖ 5 ģébriannesbitt-Carbon-d046377/src/Carbon/Lang/is_IS.phpUTŲ]Ā_PK .3|QŠĮāP2 ėbriannesbitt-Carbon-d046377/src/Carbon/Lang/it.phpUTŲ]Ā_PK .3|Qƒ4Ÿ†5 Nšbriannesbitt-Carbon-d046377/src/Carbon/Lang/it_CH.phpUTŲ]Ā_PK .3|QHā§ÓķD5 ½ńbriannesbitt-Carbon-d046377/src/Carbon/Lang/it_IT.phpUTŲ]Ā_PK .3|Q† "zĖ 5 óbriannesbitt-Carbon-d046377/src/Carbon/Lang/it_SM.phpUTŲ]Ā_PK .3|Q† "zĖ 5 -ōbriannesbitt-Carbon-d046377/src/Carbon/Lang/it_VA.phpUTŲ]Ā_PK .3|Qś'JńN2 Tõbriannesbitt-Carbon-d046377/src/Carbon/Lang/iu.phpUTŲ]Ā_PK .3|Q,Å Hę¦5 žöbriannesbitt-Carbon-d046377/src/Carbon/Lang/iu_CA.phpUTŲ]Ā_PK .3|Q„ÕĆģ2 ąłbriannesbitt-Carbon-d046377/src/Carbon/Lang/iw.phpUTŲ]Ā_PK .3|QĪ‘” 2 üübriannesbitt-Carbon-d046377/src/Carbon/Lang/ja.phpUTŲ]Ā_PK .3|Q £ōwĖ 5 ubriannesbitt-Carbon-d046377/src/Carbon/Lang/ja_JP.phpUTŲ]Ā_PK .3|QĄ×Yą(3 œbriannesbitt-Carbon-d046377/src/Carbon/Lang/jgo.phpUTŲ]Ā_PK .3|Q„HžĻķB3 Öbriannesbitt-Carbon-d046377/src/Carbon/Lang/jmc.phpUTŲ]Ā_PK .3|Q!”/¾] 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/jv.phpUTŲ]Ā_PK .3|Q4čwŲæ×2 ÷ briannesbitt-Carbon-d046377/src/Carbon/Lang/ka.phpUTŲ]Ā_PK .3|QO·`Ė 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ka_GE.phpUTŲ]Ā_PK .3|QÄ~õóO3 6briannesbitt-Carbon-d046377/src/Carbon/Lang/kab.phpUTŲ]Ā_PK .3|QpW)Q‚6 ƒbriannesbitt-Carbon-d046377/src/Carbon/Lang/kab_DZ.phpUTŲ]Ā_PK .3|QSl—®~¢3 bbriannesbitt-Carbon-d046377/src/Carbon/Lang/kam.phpUTŲ]Ā_PK .3|QĢŠ\å53 :briannesbitt-Carbon-d046377/src/Carbon/Lang/kde.phpUTŲ]Ā_PK .3|Q<Õ3¦3 ­briannesbitt-Carbon-d046377/src/Carbon/Lang/kea.phpUTŲ]Ā_PK .3|QłŪŻń;3 ˆbriannesbitt-Carbon-d046377/src/Carbon/Lang/khq.phpUTŲ]Ā_PK .3|QųR3כ†2 Ó!briannesbitt-Carbon-d046377/src/Carbon/Lang/ki.phpUTŲ]Ā_PK .3|QŅ£ˆźĶq2 Ē$briannesbitt-Carbon-d046377/src/Carbon/Lang/kk.phpUTŲ]Ā_PK .3|Q‡«OńĖ 5 ķ)briannesbitt-Carbon-d046377/src/Carbon/Lang/kk_KZ.phpUTŲ]Ā_PK .3|QĄ×Yą(3 +briannesbitt-Carbon-d046377/src/Carbon/Lang/kkj.phpUTŲ]Ā_PK .3|QöpµńN2 N,briannesbitt-Carbon-d046377/src/Carbon/Lang/kl.phpUTŲ]Ā_PK .3|Q×Q²>H 5 ˜-briannesbitt-Carbon-d046377/src/Carbon/Lang/kl_GL.phpUTŲ]Ā_PK .3|Q!æµ Ū3 <1briannesbitt-Carbon-d046377/src/Carbon/Lang/kln.phpUTŲ]Ā_PK .3|QŽ`))Ć 2 ®3briannesbitt-Carbon-d046377/src/Carbon/Lang/km.phpUTŲ]Ā_PK .3|Q¢ 7Ė 5 08briannesbitt-Carbon-d046377/src/Carbon/Lang/km_KH.phpUTŲ]Ā_PK .3|QŁå5Œ#R 2 W9briannesbitt-Carbon-d046377/src/Carbon/Lang/kn.phpUTŲ]Ā_PK .3|Qㄯ¹Ė 5 Ó=briannesbitt-Carbon-d046377/src/Carbon/Lang/kn_IN.phpUTŲ]Ā_PK .3|QF1kĄą 2 ś>briannesbitt-Carbon-d046377/src/Carbon/Lang/ko.phpUTŲ]Ā_PK .3|Q—żóF5 Cbriannesbitt-Carbon-d046377/src/Carbon/Lang/ko_KP.phpUTŲ]Ā_PK .3|Q}„uĖ 5 bDbriannesbitt-Carbon-d046377/src/Carbon/Lang/ko_KR.phpUTŲ]Ā_PK .3|QŁKŠnņO3 ‰Ebriannesbitt-Carbon-d046377/src/Carbon/Lang/kok.phpUTŲ]Ā_PK .3|Qn!KAõ 6 ÕFbriannesbitt-Carbon-d046377/src/Carbon/Lang/kok_IN.phpUTŲ]Ā_PK .3|Qė™ńN2 'Jbriannesbitt-Carbon-d046377/src/Carbon/Lang/ks.phpUTŲ]Ā_PK .3|QjĶ\ ĢĢ5 qKbriannesbitt-Carbon-d046377/src/Carbon/Lang/ks_IN.phpUTŲ]Ā_PK .3|QĆćVĘDķ@ ™Nbriannesbitt-Carbon-d046377/src/Carbon/Lang/ks_IN@devanagari.phpUTŲ]Ā_PK .3|Q§åé?3 DQbriannesbitt-Carbon-d046377/src/Carbon/Lang/ksb.phpUTŲ]Ā_PK .3|Q’“.3 ‡Sbriannesbitt-Carbon-d046377/src/Carbon/Lang/ksf.phpUTŲ]Ā_PK .3|Q^Tʱ[3 Vbriannesbitt-Carbon-d046377/src/Carbon/Lang/ksh.phpUTŲ]Ā_PK .3|Q‹7Óæn2 Ybriannesbitt-Carbon-d046377/src/Carbon/Lang/ku.phpUTŲ]Ā_PK .3|Qžˆ~˜Ė 5 ‹\briannesbitt-Carbon-d046377/src/Carbon/Lang/ku_TR.phpUTŲ]Ā_PK .3|QKV--ńN2 ²]briannesbitt-Carbon-d046377/src/Carbon/Lang/kw.phpUTŲ]Ā_PK .3|Qm0׀‘5 ü^briannesbitt-Carbon-d046377/src/Carbon/Lang/kw_GB.phpUTŲ]Ā_PK .3|Q‰ųęnŌ£2 Ųabriannesbitt-Carbon-d046377/src/Carbon/Lang/ky.phpUTŲ]Ā_PK .3|QѝŃĻĢ 5 gbriannesbitt-Carbon-d046377/src/Carbon/Lang/ky_KG.phpUTŲ]Ā_PK .3|Qw°HŒ2·3 -hbriannesbitt-Carbon-d046377/src/Carbon/Lang/lag.phpUTŲ]Ā_PK .3|QÆQ9iž 2 ¹jbriannesbitt-Carbon-d046377/src/Carbon/Lang/lb.phpUTŲ]Ā_PK .3|QeŻaŠĖ 5 {obriannesbitt-Carbon-d046377/src/Carbon/Lang/lb_LU.phpUTŲ]Ā_PK .3|Qœ•=ńN2 ¢pbriannesbitt-Carbon-d046377/src/Carbon/Lang/lg.phpUTŲ]Ā_PK .3|QgrtŠ™Ö5 ģqbriannesbitt-Carbon-d046377/src/Carbon/Lang/lg_UG.phpUTŲ]Ā_PK .3|Q`ōńN2 įtbriannesbitt-Carbon-d046377/src/Carbon/Lang/li.phpUTŲ]Ā_PK .3|Q­5±Ļšą5 +vbriannesbitt-Carbon-d046377/src/Carbon/Lang/li_NL.phpUTŲ]Ā_PK .3|QBkŠņO3 !ybriannesbitt-Carbon-d046377/src/Carbon/Lang/lij.phpUTŲ]Ā_PK .3|Qœn‹č6 mzbriannesbitt-Carbon-d046377/src/Carbon/Lang/lij_IT.phpUTŲ]Ā_PK .3|QŒ|į ¦Ż3 U}briannesbitt-Carbon-d046377/src/Carbon/Lang/lkt.phpUTŲ]Ā_PK .3|Qа<½Ł2 Ubriannesbitt-Carbon-d046377/src/Carbon/Lang/ln.phpUTŲ]Ā_PK .3|QƒpX]l5 ‡‚briannesbitt-Carbon-d046377/src/Carbon/Lang/ln_AO.phpUTŲ]Ā_PK .3|QWöžW5 O„briannesbitt-Carbon-d046377/src/Carbon/Lang/ln_CD.phpUTŲ]Ā_PK .3|QƒpX]l5 ©…briannesbitt-Carbon-d046377/src/Carbon/Lang/ln_CF.phpUTŲ]Ā_PK .3|QƒpX]l5 q‡briannesbitt-Carbon-d046377/src/Carbon/Lang/ln_CG.phpUTŲ]Ā_PK .3|Q× žŖ†Ņ 2 9‰briannesbitt-Carbon-d046377/src/Carbon/Lang/lo.phpUTŲ]Ā_PK .3|Q“ČdŹ 5 briannesbitt-Carbon-d046377/src/Carbon/Lang/lo_LA.phpUTŲ]Ā_PK .3|Qxł°¾3 >Žbriannesbitt-Carbon-d046377/src/Carbon/Lang/lrc.phpUTŲ]Ā_PK .3|QśŗJ~ą)6 Ŗbriannesbitt-Carbon-d046377/src/Carbon/Lang/lrc_IQ.phpUTŲ]Ā_PK .3|Q㼦tM.2 ēbriannesbitt-Carbon-d046377/src/Carbon/Lang/lt.phpUTŲ]Ā_PK .3|QÉåµ0Ė 5 —briannesbitt-Carbon-d046377/src/Carbon/Lang/lt_LT.phpUTŲ]Ā_PK .3|Q\BÉ@U2 “˜briannesbitt-Carbon-d046377/src/Carbon/Lang/lu.phpUTŲ]Ā_PK .3|QįĮĪ‚3  ›briannesbitt-Carbon-d046377/src/Carbon/Lang/luo.phpUTŲ]Ā_PK .3|Qʰ:&r#3 übriannesbitt-Carbon-d046377/src/Carbon/Lang/luy.phpUTŲ]Ā_PK .3|Qäiļ"c2 Č briannesbitt-Carbon-d046377/src/Carbon/Lang/lv.phpUTŲ]Ā_PK .3|Q“ārĖ 5 C¦briannesbitt-Carbon-d046377/src/Carbon/Lang/lv_LV.phpUTŲ]Ā_PK .3|QJ> óO3 j§briannesbitt-Carbon-d046377/src/Carbon/Lang/lzh.phpUTŲ]Ā_PK .3|QąƒVńŒ6 ·Øbriannesbitt-Carbon-d046377/src/Carbon/Lang/lzh_TW.phpUTŲ]Ā_PK .3|QŻÕ-ņO3 ¬briannesbitt-Carbon-d046377/src/Carbon/Lang/mag.phpUTŲ]Ā_PK .3|Q“śX«6 Q­briannesbitt-Carbon-d046377/src/Carbon/Lang/mag_IN.phpUTŲ]Ā_PK .3|QŪžhńO3 ĢÆbriannesbitt-Carbon-d046377/src/Carbon/Lang/mai.phpUTŲ]Ā_PK .3|Qw'į0 y 6 ±briannesbitt-Carbon-d046377/src/Carbon/Lang/mai_IN.phpUTŲ]Ā_PK .3|Qš’2¦óŹ3 ~“briannesbitt-Carbon-d046377/src/Carbon/Lang/mas.phpUTŲ]Ā_PK .3|Q[įNĮóG6 Ė·briannesbitt-Carbon-d046377/src/Carbon/Lang/mas_TZ.phpUTŲ]Ā_PK .3|QŸ·N)hj3 ¹briannesbitt-Carbon-d046377/src/Carbon/Lang/mer.phpUTŲ]Ā_PK .3|Qāł×}ņO3 Ż»briannesbitt-Carbon-d046377/src/Carbon/Lang/mfe.phpUTŲ]Ā_PK .3|QųžśEL6 )½briannesbitt-Carbon-d046377/src/Carbon/Lang/mfe_MU.phpUTŲ]Ā_PK .3|Qš³(±ńN2 Ņæbriannesbitt-Carbon-d046377/src/Carbon/Lang/mg.phpUTŲ]Ā_PK .3|Q“éBž»5 Įbriannesbitt-Carbon-d046377/src/Carbon/Lang/mg_MG.phpUTŲ]Ā_PK .3|Qęqźh §3 3Äbriannesbitt-Carbon-d046377/src/Carbon/Lang/mgh.phpUTŲ]Ā_PK .3|Qi©Ą“ųÖ3 ˜Ębriannesbitt-Carbon-d046377/src/Carbon/Lang/mgo.phpUTŲ]Ā_PK .3|QvR`ņO3 źČbriannesbitt-Carbon-d046377/src/Carbon/Lang/mhr.phpUTŲ]Ā_PK .3|Qä ķ7ö|6 6Źbriannesbitt-Carbon-d046377/src/Carbon/Lang/mhr_RU.phpUTŲ]Ā_PK .3|Qk_Ų¾€4 2 ‰Ķbriannesbitt-Carbon-d046377/src/Carbon/Lang/mi.phpUTŲ]Ā_PK .3|QpÕpĄĖ 5 bŃbriannesbitt-Carbon-d046377/src/Carbon/Lang/mi_NZ.phpUTŲ]Ā_PK .3|Q{ÉõņO3 ‰Ņbriannesbitt-Carbon-d046377/src/Carbon/Lang/miq.phpUTŲ]Ā_PK .3|Qņõ^×āŪ6 ÕÓbriannesbitt-Carbon-d046377/src/Carbon/Lang/miq_NI.phpUTŲ]Ā_PK .3|QµzņņO3 Öbriannesbitt-Carbon-d046377/src/Carbon/Lang/mjw.phpUTŲ]Ā_PK .3|QÆHlįŃ6 `×briannesbitt-Carbon-d046377/src/Carbon/Lang/mjw_IN.phpUTŲ]Ā_PK .3|Q —ŒĖ =2 žŁbriannesbitt-Carbon-d046377/src/Carbon/Lang/mk.phpUTŲ]Ā_PK .3|Q ŅU‚Ė 5 ßbriannesbitt-Carbon-d046377/src/Carbon/Lang/mk_MK.phpUTŲ]Ā_PK .3|Qއ®Ź0 2 *ąbriannesbitt-Carbon-d046377/src/Carbon/Lang/ml.phpUTŲ]Ā_PK .3|QېˆĖ 5 ³äbriannesbitt-Carbon-d046377/src/Carbon/Lang/ml_IN.phpUTŲ]Ā_PK .3|QėŅ…6½2 Śåbriannesbitt-Carbon-d046377/src/Carbon/Lang/mn.phpUTŲ]Ā_PK .3|QiܵŹĖ 5 šźbriannesbitt-Carbon-d046377/src/Carbon/Lang/mn_MN.phpUTŲ]Ā_PK .3|QŖaü ńO3 ģbriannesbitt-Carbon-d046377/src/Carbon/Lang/mni.phpUTŲ]Ā_PK .3|Qm'×1½ü6 bķbriannesbitt-Carbon-d046377/src/Carbon/Lang/mni_IN.phpUTŲ]Ā_PK .3|QWQfuŹ 2 |šbriannesbitt-Carbon-d046377/src/Carbon/Lang/mo.phpUTŲ]Ā_PK .3|Qøä|›› 2 Ÿńbriannesbitt-Carbon-d046377/src/Carbon/Lang/mr.phpUTŲ]Ā_PK .3|Q ų”įĖ 5 öbriannesbitt-Carbon-d046377/src/Carbon/Lang/mr_IN.phpUTŲ]Ā_PK .3|QD€łˆ 2 -÷briannesbitt-Carbon-d046377/src/Carbon/Lang/ms.phpUTŲ]Ā_PK .3|Q•D4"5 ¤ūbriannesbitt-Carbon-d046377/src/Carbon/Lang/ms_BN.phpUTŲ]Ā_PK .3|Qk¶zšN5 4żbriannesbitt-Carbon-d046377/src/Carbon/Lang/ms_MY.phpUTŲ]Ā_PK .3|Q(Y}¾5'5 €žbriannesbitt-Carbon-d046377/src/Carbon/Lang/ms_SG.phpUTŲ]Ā_PK .3|Q^­Ó§Œv 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/mt.phpUTŲ]Ā_PK .3|QŠńĪ'Ė 5 öbriannesbitt-Carbon-d046377/src/Carbon/Lang/mt_MT.phpUTŲ]Ā_PK .3|Qń?-k<—3 briannesbitt-Carbon-d046377/src/Carbon/Lang/mua.phpUTŲ]Ā_PK .3|Q…8½„Œ2 ³briannesbitt-Carbon-d046377/src/Carbon/Lang/my.phpUTŲ]Ā_PK .3|Q[äĖ¼Ė 5  briannesbitt-Carbon-d046377/src/Carbon/Lang/my_MM.phpUTŲ]Ā_PK .3|Q„‘_ĄÆ3 Abriannesbitt-Carbon-d046377/src/Carbon/Lang/mzn.phpUTŲ]Ā_PK .3|Q°āÕņO3 [briannesbitt-Carbon-d046377/src/Carbon/Lang/nan.phpUTŲ]Ā_PK .3|Qõ–Z—™6 §briannesbitt-Carbon-d046377/src/Carbon/Lang/nan_TW.phpUTŲ]Ā_PK .3|QŌŌžĶūß< ›briannesbitt-Carbon-d046377/src/Carbon/Lang/nan_TW@latin.phpUTŲ]Ā_PK .3|QÓĘŁ»×3 łbriannesbitt-Carbon-d046377/src/Carbon/Lang/naq.phpUTŲ]Ā_PK .3|Qź!~Pķ… 2 briannesbitt-Carbon-d046377/src/Carbon/Lang/nb.phpUTŲ]Ā_PK .3|Qćõ—¤Ė 5 Tbriannesbitt-Carbon-d046377/src/Carbon/Lang/nb_NO.phpUTŲ]Ā_PK .3|QļKˆC·5 {briannesbitt-Carbon-d046377/src/Carbon/Lang/nb_SJ.phpUTŲ]Ā_PK .3|QŚ„”Ÿzu2 ģ briannesbitt-Carbon-d046377/src/Carbon/Lang/nd.phpUTŲ]Ā_PK .3|QK‚}ŗńO3 æ#briannesbitt-Carbon-d046377/src/Carbon/Lang/nds.phpUTŲ]Ā_PK .3|Q·PĆ6  %briannesbitt-Carbon-d046377/src/Carbon/Lang/nds_DE.phpUTŲ]Ā_PK .3|QŲTrŁ  6 ÷'briannesbitt-Carbon-d046377/src/Carbon/Lang/nds_NL.phpUTŲ]Ā_PK .3|QŅ8æž;» 2 a*briannesbitt-Carbon-d046377/src/Carbon/Lang/ne.phpUTŲ]Ā_PK .3|QŃ/é­5 õ.briannesbitt-Carbon-d046377/src/Carbon/Lang/ne_IN.phpUTŲ]Ā_PK .3|QśüR®Ė 5 :1briannesbitt-Carbon-d046377/src/Carbon/Lang/ne_NP.phpUTŲ]Ā_PK .3|Q§Ō‘óO3 a2briannesbitt-Carbon-d046377/src/Carbon/Lang/nhn.phpUTŲ]Ā_PK .3|Q QóVP6 ®3briannesbitt-Carbon-d046377/src/Carbon/Lang/nhn_MX.phpUTŲ]Ā_PK .3|QSņņ%ńO3 [6briannesbitt-Carbon-d046377/src/Carbon/Lang/niu.phpUTŲ]Ā_PK .3|Q›œDq6 ¦7briannesbitt-Carbon-d046377/src/Carbon/Lang/niu_NU.phpUTŲ]Ā_PK .3|QČPwüō 2 t:briannesbitt-Carbon-d046377/src/Carbon/Lang/nl.phpUTŲ]Ā_PK .3|Q¾c…åŚ5 É?briannesbitt-Carbon-d046377/src/Carbon/Lang/nl_AW.phpUTŲ]Ā_PK .3|QEˆkNī5  Bbriannesbitt-Carbon-d046377/src/Carbon/Lang/nl_BE.phpUTŲ]Ā_PK .3|QŃē±Ė 5 “Cbriannesbitt-Carbon-d046377/src/Carbon/Lang/nl_BQ.phpUTŲ]Ā_PK .3|QŃē±Ė 5 ŪDbriannesbitt-Carbon-d046377/src/Carbon/Lang/nl_CW.phpUTŲ]Ā_PK .3|Q-µ»^ÄŠ5 Fbriannesbitt-Carbon-d046377/src/Carbon/Lang/nl_NL.phpUTŲ]Ā_PK .3|QŃē±Ė 5 "Hbriannesbitt-Carbon-d046377/src/Carbon/Lang/nl_SR.phpUTŲ]Ā_PK .3|QŃē±Ė 5 IIbriannesbitt-Carbon-d046377/src/Carbon/Lang/nl_SX.phpUTŲ]Ā_PK .3|Qžœ+o,Š3 pJbriannesbitt-Carbon-d046377/src/Carbon/Lang/nmg.phpUTŲ]Ā_PK .3|Q šŲ°®Q 2 öLbriannesbitt-Carbon-d046377/src/Carbon/Lang/nn.phpUTŲ]Ā_PK .3|Q¬ą8óŹ 5 żPbriannesbitt-Carbon-d046377/src/Carbon/Lang/nn_NO.phpUTŲ]Ā_PK .3|QAÓ§FQ„3 #Rbriannesbitt-Carbon-d046377/src/Carbon/Lang/nnh.phpUTŲ]Ā_PK .3|QKN õxn2 ĪTbriannesbitt-Carbon-d046377/src/Carbon/Lang/no.phpUTŲ]Ā_PK .3|QÜ/ŁņN2 ŸVbriannesbitt-Carbon-d046377/src/Carbon/Lang/nr.phpUTŲ]Ā_PK .3|QZ,vc ó5 źWbriannesbitt-Carbon-d046377/src/Carbon/Lang/nr_ZA.phpUTŲ]Ā_PK .3|Q-GY†óO3 RZbriannesbitt-Carbon-d046377/src/Carbon/Lang/nso.phpUTŲ]Ā_PK .3|Q*öē—‰–6 Ÿ[briannesbitt-Carbon-d046377/src/Carbon/Lang/nso_ZA.phpUTŲ]Ā_PK .3|Q֘e_¼3 …^briannesbitt-Carbon-d046377/src/Carbon/Lang/nus.phpUTŲ]Ā_PK .3|QY™ģe3 >abriannesbitt-Carbon-d046377/src/Carbon/Lang/nyn.phpUTŲ]Ā_PK .3|QvōäėL2 „cbriannesbitt-Carbon-d046377/src/Carbon/Lang/oc.phpUTŲ]Ā_PK .3|Q>įFŹ 5 Čhbriannesbitt-Carbon-d046377/src/Carbon/Lang/oc_FR.phpUTŲ]Ā_PK .3|Q8¶QsŻp2 īibriannesbitt-Carbon-d046377/src/Carbon/Lang/om.phpUTŲ]Ā_PK .3|Q óĢjĖ 5 $mbriannesbitt-Carbon-d046377/src/Carbon/Lang/om_ET.phpUTŲ]Ā_PK .3|Qv”ÓCųN5 Knbriannesbitt-Carbon-d046377/src/Carbon/Lang/om_KE.phpUTŲ]Ā_PK .3|Q«ĄńN2 Ÿobriannesbitt-Carbon-d046377/src/Carbon/Lang/or.phpUTŲ]Ā_PK .3|Qé ņ 5 épbriannesbitt-Carbon-d046377/src/Carbon/Lang/or_IN.phpUTŲ]Ā_PK .3|Qŗ!ŪńN2 Subriannesbitt-Carbon-d046377/src/Carbon/Lang/os.phpUTŲ]Ā_PK .3|Qü¼ĻFĒ5 vbriannesbitt-Carbon-d046377/src/Carbon/Lang/os_RU.phpUTŲ]Ā_PK .3|QߟW  2 žybriannesbitt-Carbon-d046377/src/Carbon/Lang/pa.phpUTŲ]Ā_PK .3|QUæqāæ7 `~briannesbitt-Carbon-d046377/src/Carbon/Lang/pa_Arab.phpUTŲ]Ā_PK .3|Q]"40-—7  €briannesbitt-Carbon-d046377/src/Carbon/Lang/pa_Guru.phpUTŲ]Ā_PK .3|Q­ä Püc5 +ƒbriannesbitt-Carbon-d046377/src/Carbon/Lang/pa_IN.phpUTŲ]Ā_PK .3|QPæ­žõ†5 ƒ„briannesbitt-Carbon-d046377/src/Carbon/Lang/pa_PK.phpUTŲ]Ā_PK .3|Q µJG93 Ō†briannesbitt-Carbon-d046377/src/Carbon/Lang/pap.phpUTŲ]Ā_PK .3|QóĆ6Äžk6 u‰briannesbitt-Carbon-d046377/src/Carbon/Lang/pap_AW.phpUTŲ]Ā_PK .3|QóĆ6Äžk6 Њbriannesbitt-Carbon-d046377/src/Carbon/Lang/pap_CW.phpUTŲ]Ā_PK .3|Qķ¦ĘųR¬2 +Œbriannesbitt-Carbon-d046377/src/Carbon/Lang/pl.phpUTŲ]Ā_PK .3|Q2~ÕĖ 5 ֑briannesbitt-Carbon-d046377/src/Carbon/Lang/pl_PL.phpUTŲ]Ā_PK .3|Q)²(ÆŠ3 ż’briannesbitt-Carbon-d046377/src/Carbon/Lang/prg.phpUTŲ]Ā_PK .3|Qaå=%Ą 2 g•briannesbitt-Carbon-d046377/src/Carbon/Lang/ps.phpUTŲ]Ā_PK .3|Qµ]„pĖ 5 å˜briannesbitt-Carbon-d046377/src/Carbon/Lang/ps_AF.phpUTŲ]Ā_PK .3|Q‰ß>2  šbriannesbitt-Carbon-d046377/src/Carbon/Lang/pt.phpUTŲ]Ā_PK .3|Q¬TAzĖ 5 DŸbriannesbitt-Carbon-d046377/src/Carbon/Lang/pt_AO.phpUTŲ]Ā_PK .3|Qą²Ķq~5 k briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_BR.phpUTŲ]Ā_PK .3|Q¬TAzĖ 5 Ė¢briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_CH.phpUTŲ]Ā_PK .3|Q¬TAzĖ 5 ņ£briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_CV.phpUTŲ]Ā_PK .3|Q¬TAzĖ 5 „briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_GQ.phpUTŲ]Ā_PK .3|Q¬TAzĖ 5 @¦briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_GW.phpUTŲ]Ā_PK .3|Q¬TAzĖ 5 g§briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_LU.phpUTŲ]Ā_PK .3|Q—7Ž‚15 ŽØbriannesbitt-Carbon-d046377/src/Carbon/Lang/pt_MO.phpUTŲ]Ā_PK .3|QK‚ČzņF5 Ŗbriannesbitt-Carbon-d046377/src/Carbon/Lang/pt_MZ.phpUTŲ]Ā_PK .3|Q§¹EŽćĖ5 i«briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_PT.phpUTŲ]Ā_PK .3|Q¬TAzĖ 5 Ø­briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_ST.phpUTŲ]Ā_PK .3|Q¬TAzĖ 5 Ļ®briannesbitt-Carbon-d046377/src/Carbon/Lang/pt_TL.phpUTŲ]Ā_PK .3|QP!Ų;(2 öÆbriannesbitt-Carbon-d046377/src/Carbon/Lang/qu.phpUTŲ]Ā_PK .3|QљUóF5 бbriannesbitt-Carbon-d046377/src/Carbon/Lang/qu_BO.phpUTŲ]Ā_PK .3|QљUóF5 ٲbriannesbitt-Carbon-d046377/src/Carbon/Lang/qu_EC.phpUTŲ]Ā_PK .3|QĻ}Ö4óO3 (“briannesbitt-Carbon-d046377/src/Carbon/Lang/quz.phpUTŲ]Ā_PK .3|Q.z‰/{—6 uµbriannesbitt-Carbon-d046377/src/Carbon/Lang/quz_PE.phpUTŲ]Ā_PK .3|Q5ėżuńO3 Møbriannesbitt-Carbon-d046377/src/Carbon/Lang/raj.phpUTŲ]Ā_PK .3|Q%‚lżĒß6 ˜¹briannesbitt-Carbon-d046377/src/Carbon/Lang/raj_IN.phpUTŲ]Ā_PK .3|QÜ Ķéž2 ¼¼briannesbitt-Carbon-d046377/src/Carbon/Lang/rm.phpUTŲ]Ā_PK .3|Qcā{¦H2 žæbriannesbitt-Carbon-d046377/src/Carbon/Lang/rn.phpUTŲ]Ā_PK .3|Q,͹¼½ 2 żĀbriannesbitt-Carbon-d046377/src/Carbon/Lang/ro.phpUTŲ]Ā_PK .3|Q˜"pĮ&5 Ēbriannesbitt-Carbon-d046377/src/Carbon/Lang/ro_MD.phpUTŲ]Ā_PK .3|QWQfuŹ 5 •Čbriannesbitt-Carbon-d046377/src/Carbon/Lang/ro_RO.phpUTŲ]Ā_PK .3|Q†Qs÷ ¬3 »Ébriannesbitt-Carbon-d046377/src/Carbon/Lang/rof.phpUTŲ]Ā_PK .3|Q¼¾_>…³2 !Ģbriannesbitt-Carbon-d046377/src/Carbon/Lang/ru.phpUTŲ]Ā_PK .3|Q“|˜Ė 5 ’Óbriannesbitt-Carbon-d046377/src/Carbon/Lang/ru_BY.phpUTŲ]Ā_PK .3|Q“|˜Ė 5 &Õbriannesbitt-Carbon-d046377/src/Carbon/Lang/ru_KG.phpUTŲ]Ā_PK .3|Q“|˜Ė 5 MÖbriannesbitt-Carbon-d046377/src/Carbon/Lang/ru_KZ.phpUTŲ]Ā_PK .3|Q“|˜Ė 5 t×briannesbitt-Carbon-d046377/src/Carbon/Lang/ru_MD.phpUTŲ]Ā_PK .3|Q“|˜Ė 5 ›Ųbriannesbitt-Carbon-d046377/src/Carbon/Lang/ru_RU.phpUTŲ]Ā_PK .3|QōĖ!k·µ5 ĀŁbriannesbitt-Carbon-d046377/src/Carbon/Lang/ru_UA.phpUTŲ]Ā_PK .3|QW¹nņN2 ÕŪbriannesbitt-Carbon-d046377/src/Carbon/Lang/rw.phpUTŲ]Ā_PK .3|Qco„¦5  Żbriannesbitt-Carbon-d046377/src/Carbon/Lang/rw_RW.phpUTŲ]Ā_PK .3|Q„HžĻķB3 ąbriannesbitt-Carbon-d046377/src/Carbon/Lang/rwk.phpUTŲ]Ā_PK .3|Q žńN2 Gābriannesbitt-Carbon-d046377/src/Carbon/Lang/sa.phpUTŲ]Ā_PK .3|QÖ~`Ņ 5 ‘ćbriannesbitt-Carbon-d046377/src/Carbon/Lang/sa_IN.phpUTŲ]Ā_PK .3|Q zC’ńO3 óębriannesbitt-Carbon-d046377/src/Carbon/Lang/sah.phpUTŲ]Ā_PK .3|QK:†aõ6 >čbriannesbitt-Carbon-d046377/src/Carbon/Lang/sah_RU.phpUTŲ]Ā_PK .3|Qž«[Šó§3 üźbriannesbitt-Carbon-d046377/src/Carbon/Lang/saq.phpUTŲ]Ā_PK .3|Q}ŻėTńO3 Iķbriannesbitt-Carbon-d046377/src/Carbon/Lang/sat.phpUTŲ]Ā_PK .3|Q^÷4ŅąĒ 6 ”ībriannesbitt-Carbon-d046377/src/Carbon/Lang/sat_IN.phpUTŲ]Ā_PK .3|Q·«Æb3 Ńńbriannesbitt-Carbon-d046377/src/Carbon/Lang/sbp.phpUTŲ]Ā_PK .3|Q>™KšN2 -ōbriannesbitt-Carbon-d046377/src/Carbon/Lang/sc.phpUTŲ]Ā_PK .3|Q˜NJ¶Ž5 võbriannesbitt-Carbon-d046377/src/Carbon/Lang/sc_IT.phpUTŲ]Ā_PK .3|QÉuUIX2 ˆųbriannesbitt-Carbon-d046377/src/Carbon/Lang/sd.phpUTŲ]Ā_PK .3|Qnć•Ćż”5 9übriannesbitt-Carbon-d046377/src/Carbon/Lang/sd_IN.phpUTŲ]Ā_PK .3|Q$Z˜:@ ’žbriannesbitt-Carbon-d046377/src/Carbon/Lang/sd_IN@devanagari.phpUTŲ]Ā_PK .3|QähÆÅ¼ 2 3briannesbitt-Carbon-d046377/src/Carbon/Lang/se.phpUTŲ]Ā_PK .3|Qr®åqżv5 Qbriannesbitt-Carbon-d046377/src/Carbon/Lang/se_FI.phpUTŲ]Ā_PK .3|QÜYŻóĖ 5 Ŗbriannesbitt-Carbon-d046377/src/Carbon/Lang/se_NO.phpUTŲ]Ā_PK .3|QÜYŻóĖ 5 Ńbriannesbitt-Carbon-d046377/src/Carbon/Lang/se_SE.phpUTŲ]Ā_PK .3|Q¤woŃ3 ų briannesbitt-Carbon-d046377/src/Carbon/Lang/seh.phpUTŲ]Ā_PK .3|Qč&¾ˆu3 # briannesbitt-Carbon-d046377/src/Carbon/Lang/ses.phpUTŲ]Ā_PK .3|Q¢_e“Ś2 briannesbitt-Carbon-d046377/src/Carbon/Lang/sg.phpUTŲ]Ā_PK .3|Q²5ņO3 briannesbitt-Carbon-d046377/src/Carbon/Lang/sgs.phpUTŲ]Ā_PK .3|Q¾._»ŗ6 ^briannesbitt-Carbon-d046377/src/Carbon/Lang/sgs_LT.phpUTŲ]Ā_PK .3|Qų›(}Š: 2 vbriannesbitt-Carbon-d046377/src/Carbon/Lang/sh.phpUTŲ]Ā_PK .3|QˆŲßč 3 Ÿbriannesbitt-Carbon-d046377/src/Carbon/Lang/shi.phpUTŲ]Ā_PK .3|Q*2ˆ,õ8 įbriannesbitt-Carbon-d046377/src/Carbon/Lang/shi_Latn.phpUTŲ]Ā_PK .3|QtĶ&Ģ 8 l briannesbitt-Carbon-d046377/src/Carbon/Lang/shi_Tfng.phpUTŲ]Ā_PK .3|QL-xVņO3 —!briannesbitt-Carbon-d046377/src/Carbon/Lang/shn.phpUTŲ]Ā_PK .3|QģpķĆ6 ć"briannesbitt-Carbon-d046377/src/Carbon/Lang/shn_MM.phpUTŲ]Ā_PK .3|Q]jw¬ńO3 Z'briannesbitt-Carbon-d046377/src/Carbon/Lang/shs.phpUTŲ]Ā_PK .3|Q5ó.|6 „(briannesbitt-Carbon-d046377/src/Carbon/Lang/shs_CA.phpUTŲ]Ā_PK .3|QÄ!8£NM 2 ~+briannesbitt-Carbon-d046377/src/Carbon/Lang/si.phpUTŲ]Ā_PK .3|Q“Lr¤Ė 5 %0briannesbitt-Carbon-d046377/src/Carbon/Lang/si_LK.phpUTŲ]Ā_PK .3|Qæ±^÷ńO3 L1briannesbitt-Carbon-d046377/src/Carbon/Lang/sid.phpUTŲ]Ā_PK .3|Qąź2šÜ6 —2briannesbitt-Carbon-d046377/src/Carbon/Lang/sid_ET.phpUTŲ]Ā_PK .3|QQtF±z 2 ä4briannesbitt-Carbon-d046377/src/Carbon/Lang/sk.phpUTŲ]Ā_PK .3|QīKWęĖ 5 [9briannesbitt-Carbon-d046377/src/Carbon/Lang/sk_SK.phpUTŲ]Ā_PK .3|Q/żņ·Ž2 ‚:briannesbitt-Carbon-d046377/src/Carbon/Lang/sl.phpUTŲ]Ā_PK .3|Q÷B’ģĖ 5 j@briannesbitt-Carbon-d046377/src/Carbon/Lang/sl_SI.phpUTŲ]Ā_PK .3|QĀ"±wņN2 ‘Abriannesbitt-Carbon-d046377/src/Carbon/Lang/sm.phpUTŲ]Ā_PK .3|Q:‹Š*cö5 ÜBbriannesbitt-Carbon-d046377/src/Carbon/Lang/sm_WS.phpUTŲ]Ā_PK .3|Q,Z¦Ō3 ›Ebriannesbitt-Carbon-d046377/src/Carbon/Lang/smn.phpUTŲ]Ā_PK .3|Qč²t€j¬2 ÉHbriannesbitt-Carbon-d046377/src/Carbon/Lang/sn.phpUTŲ]Ā_PK .3|Q%½žŌ 2 ŒKbriannesbitt-Carbon-d046377/src/Carbon/Lang/so.phpUTŲ]Ā_PK .3|Qv³„'¦5 ¹Obriannesbitt-Carbon-d046377/src/Carbon/Lang/so_DJ.phpUTŲ]Ā_PK .3|QŚ‘“ņQ5 Žbriannesbitt-Carbon-d046377/src/Carbon/Lang/sw.phpUTŲ]Ā_PK .3|Qėć±}5 ü‘briannesbitt-Carbon-d046377/src/Carbon/Lang/sw_CD.phpUTŲ]Ā_PK .3|QØ?щōŻ5 `“briannesbitt-Carbon-d046377/src/Carbon/Lang/sw_KE.phpUTŲ]Ā_PK .3|Q“v˜ūū5 °•briannesbitt-Carbon-d046377/src/Carbon/Lang/sw_TZ.phpUTŲ]Ā_PK .3|Qėć±}5 ˜briannesbitt-Carbon-d046377/src/Carbon/Lang/sw_UG.phpUTŲ]Ā_PK .3|QVBóO3 k™briannesbitt-Carbon-d046377/src/Carbon/Lang/szl.phpUTŲ]Ā_PK .3|QUĮ}l™­6 øšbriannesbitt-Carbon-d046377/src/Carbon/Lang/szl_PL.phpUTŲ]Ā_PK .3|QffńŪ§f2 ®briannesbitt-Carbon-d046377/src/Carbon/Lang/ta.phpUTŲ]Ā_PK .3|Q†ŽĄ)|t5 ®¢briannesbitt-Carbon-d046377/src/Carbon/Lang/ta_IN.phpUTŲ]Ā_PK .3|Q’˜[ÕbZ5 †„briannesbitt-Carbon-d046377/src/Carbon/Lang/ta_LK.phpUTŲ]Ā_PK .3|Q«f”_cĢ5 DØbriannesbitt-Carbon-d046377/src/Carbon/Lang/ta_MY.phpUTŲ]Ā_PK .3|QīēĶSR®5 «briannesbitt-Carbon-d046377/src/Carbon/Lang/ta_SG.phpUTŲ]Ā_PK .3|Q½7ńO3 ±­briannesbitt-Carbon-d046377/src/Carbon/Lang/tcy.phpUTŲ]Ā_PK .3|QøüdĢĒ6 ü®briannesbitt-Carbon-d046377/src/Carbon/Lang/tcy_IN.phpUTŲ]Ā_PK .3|Q’ĆluÕ2  ²briannesbitt-Carbon-d046377/src/Carbon/Lang/te.phpUTŲ]Ā_PK .3|Q4¼—Ė 5 ī¶briannesbitt-Carbon-d046377/src/Carbon/Lang/te_IN.phpUTŲ]Ā_PK .3|Q¶ią§[3 øbriannesbitt-Carbon-d046377/src/Carbon/Lang/teo.phpUTŲ]Ā_PK .3|Q›HĻóG6 ƒŗbriannesbitt-Carbon-d046377/src/Carbon/Lang/teo_KE.phpUTŲ]Ā_PK .3|Qm÷|1®3 Ó»briannesbitt-Carbon-d046377/src/Carbon/Lang/tet.phpUTŲ]Ā_PK .3|Q*'¢.¤ķ 2 ^æbriannesbitt-Carbon-d046377/src/Carbon/Lang/tg.phpUTŲ]Ā_PK .3|Qh3™ÕĖ 5 [Äbriannesbitt-Carbon-d046377/src/Carbon/Lang/tg_TJ.phpUTŲ]Ā_PK .3|QŲX…ŃS 2 ‚Åbriannesbitt-Carbon-d046377/src/Carbon/Lang/th.phpUTŲ]Ā_PK .3|QÄ!¹ Ė 5 .Źbriannesbitt-Carbon-d046377/src/Carbon/Lang/th_TH.phpUTŲ]Ā_PK .3|Qo“ÖńO3 UĖbriannesbitt-Carbon-d046377/src/Carbon/Lang/the.phpUTŲ]Ā_PK .3|Qā„EDć6  Ģbriannesbitt-Carbon-d046377/src/Carbon/Lang/the_NP.phpUTŲ]Ā_PK .3|Q¦ŅlżšN2 AĻbriannesbitt-Carbon-d046377/src/Carbon/Lang/ti.phpUTŲ]Ā_PK .3|QęŲÜ5 ŠŠbriannesbitt-Carbon-d046377/src/Carbon/Lang/ti_ER.phpUTŲ]Ā_PK .3|QąĶb‡Gš5 ¾Óbriannesbitt-Carbon-d046377/src/Carbon/Lang/ti_ET.phpUTŲ]Ā_PK .3|QaŲ ÕńO3 aÖbriannesbitt-Carbon-d046377/src/Carbon/Lang/tig.phpUTŲ]Ā_PK .3|Q/;Į) ( 6 ¬×briannesbitt-Carbon-d046377/src/Carbon/Lang/tig_ER.phpUTŲ]Ā_PK .3|QŅ »ńN2 Ūbriannesbitt-Carbon-d046377/src/Carbon/Lang/tk.phpUTŲ]Ā_PK .3|QtßÄż,ń5 ]Übriannesbitt-Carbon-d046377/src/Carbon/Lang/tk_TM.phpUTŲ]Ā_PK .3|Qąyųå.¹2 åßbriannesbitt-Carbon-d046377/src/Carbon/Lang/tl.phpUTŲ]Ā_PK .3|QīSå÷S5 lćbriannesbitt-Carbon-d046377/src/Carbon/Lang/tl_PH.phpUTŲ]Ā_PK .3|Q‚Œ†³Cä 3 æäbriannesbitt-Carbon-d046377/src/Carbon/Lang/tlh.phpUTŲ]Ā_PK .3|QM|UņN2 \čbriannesbitt-Carbon-d046377/src/Carbon/Lang/tn.phpUTŲ]Ā_PK .3|Qå7h»#5 §ébriannesbitt-Carbon-d046377/src/Carbon/Lang/tn_ZA.phpUTŲ]Ā_PK .3|Q-jÜIńN2  ģbriannesbitt-Carbon-d046377/src/Carbon/Lang/to.phpUTŲ]Ā_PK .3|QÅļćœP5 źķbriannesbitt-Carbon-d046377/src/Carbon/Lang/to_TO.phpUTŲ]Ā_PK .3|Q{kÄņO3 āšbriannesbitt-Carbon-d046377/src/Carbon/Lang/tpi.phpUTŲ]Ā_PK .3|QóQJžb?6 .ņbriannesbitt-Carbon-d046377/src/Carbon/Lang/tpi_PG.phpUTŲ]Ā_PK .3|QŌś-Œ2 ķōbriannesbitt-Carbon-d046377/src/Carbon/Lang/tr.phpUTŲ]Ā_PK .3|QÉB²Ea—5 sśbriannesbitt-Carbon-d046377/src/Carbon/Lang/tr_CY.phpUTŲ]Ā_PK .3|Q' ĀįĖ 5 0übriannesbitt-Carbon-d046377/src/Carbon/Lang/tr_TR.phpUTŲ]Ā_PK .3|Qõx0ņN2 Wżbriannesbitt-Carbon-d046377/src/Carbon/Lang/ts.phpUTŲ]Ā_PK .3|Qē߬Æ5 ¢žbriannesbitt-Carbon-d046377/src/Carbon/Lang/ts_ZA.phpUTŲ]Ā_PK .3|QĖ}jZńN2 ­briannesbitt-Carbon-d046377/src/Carbon/Lang/tt.phpUTŲ]Ā_PK .3|QÓr9Ŕ5 ÷briannesbitt-Carbon-d046377/src/Carbon/Lang/tt_RU.phpUTŲ]Ā_PK .3|QVŪÜ = ēbriannesbitt-Carbon-d046377/src/Carbon/Lang/tt_RU@iqtelif.phpUTŲ]Ā_PK .3|Qż!-Q’W3 Vbriannesbitt-Carbon-d046377/src/Carbon/Lang/twq.phpUTŲ]Ā_PK .3|QUG = 3 Æ briannesbitt-Carbon-d046377/src/Carbon/Lang/tzl.phpUTŲ]Ā_PK .3|Q·µŚ89¬ 3 F briannesbitt-Carbon-d046377/src/Carbon/Lang/tzm.phpUTŲ]Ā_PK .3|QˆĢ3  8 Łbriannesbitt-Carbon-d046377/src/Carbon/Lang/tzm_Latn.phpUTŲ]Ā_PK .3|Qkųˆj0 2 >briannesbitt-Carbon-d046377/src/Carbon/Lang/ug.phpUTŲ]Ā_PK .3|QĒl3·źA5 briannesbitt-Carbon-d046377/src/Carbon/Lang/ug_CN.phpUTŲ]Ā_PK .3|QŪ}£Ś? %2 Gbriannesbitt-Carbon-d046377/src/Carbon/Lang/uk.phpUTŲ]Ā_PK .3|Qd2M•Ė 5 ß#briannesbitt-Carbon-d046377/src/Carbon/Lang/uk_UA.phpUTŲ]Ā_PK .3|QņkžņO3 %briannesbitt-Carbon-d046377/src/Carbon/Lang/unm.phpUTŲ]Ā_PK .3|QY#NŽ›6 R&briannesbitt-Carbon-d046377/src/Carbon/Lang/unm_US.phpUTŲ]Ā_PK .3|QŅŽ mČH 2 =)briannesbitt-Carbon-d046377/src/Carbon/Lang/ur.phpUTŲ]Ā_PK .3|Qqhķ}5 ^-briannesbitt-Carbon-d046377/src/Carbon/Lang/ur_IN.phpUTŲ]Ā_PK .3|QX÷`ųńŠ5 §/briannesbitt-Carbon-d046377/src/Carbon/Lang/ur_PK.phpUTŲ]Ā_PK .3|Q':cž 2 ō1briannesbitt-Carbon-d046377/src/Carbon/Lang/uz.phpUTŲ]Ā_PK .3|Q**"–7 °6briannesbitt-Carbon-d046377/src/Carbon/Lang/uz_Arab.phpUTŲ]Ā_PK .3|Q$’E°9ö7 09briannesbitt-Carbon-d046377/src/Carbon/Lang/uz_Cyrl.phpUTŲ]Ā_PK .3|QoP§o­ 7 Ē:briannesbitt-Carbon-d046377/src/Carbon/Lang/uz_Latn.phpUTŲ]Ā_PK .3|Q“Q_L #5 ”>briannesbitt-Carbon-d046377/src/Carbon/Lang/uz_UZ.phpUTŲ]Ā_PK .3|Q®Ä²j;¬> ł@briannesbitt-Carbon-d046377/src/Carbon/Lang/uz_UZ@cyrillic.phpUTŲ]Ā_PK .3|Q©ö‡^3 ™Cbriannesbitt-Carbon-d046377/src/Carbon/Lang/vai.phpUTŲ]Ā_PK .3|QmGT5Ór8 QFbriannesbitt-Carbon-d046377/src/Carbon/Lang/vai_Latn.phpUTŲ]Ā_PK .3|Qk°˜lĢ 8 ƒHbriannesbitt-Carbon-d046377/src/Carbon/Lang/vai_Vaii.phpUTŲ]Ā_PK .3|Q–ešņN2 ®Ibriannesbitt-Carbon-d046377/src/Carbon/Lang/ve.phpUTŲ]Ā_PK .3|QšM¹‹˜Õ5 łJbriannesbitt-Carbon-d046377/src/Carbon/Lang/ve_ZA.phpUTŲ]Ā_PK .3|Q<š™ Ģé 2 ķMbriannesbitt-Carbon-d046377/src/Carbon/Lang/vi.phpUTŲ]Ā_PK .3|QÜ åīĖ 5 Rbriannesbitt-Carbon-d046377/src/Carbon/Lang/vi_VN.phpUTŲ]Ā_PK .3|QNąė[2 9Sbriannesbitt-Carbon-d046377/src/Carbon/Lang/vo.phpUTŲ]Ā_PK .3|Q„HžĻķB3 }Ubriannesbitt-Carbon-d046377/src/Carbon/Lang/vun.phpUTŲ]Ā_PK .3|Qč“."ńN2 ÄWbriannesbitt-Carbon-d046377/src/Carbon/Lang/wa.phpUTŲ]Ā_PK .3|QśóĪ”˜5 Ybriannesbitt-Carbon-d046377/src/Carbon/Lang/wa_BE.phpUTŲ]Ā_PK .3|Qł/kØńO3 ž[briannesbitt-Carbon-d046377/src/Carbon/Lang/wae.phpUTŲ]Ā_PK .3|Qv—!…6 I]briannesbitt-Carbon-d046377/src/Carbon/Lang/wae_CH.phpUTŲ]Ā_PK .3|Q’L(‹ńO3 Ē_briannesbitt-Carbon-d046377/src/Carbon/Lang/wal.phpUTŲ]Ā_PK .3|Q¬ŗ]ÉAĖ6 abriannesbitt-Carbon-d046377/src/Carbon/Lang/wal_ET.phpUTŲ]Ā_PK .3|QŠÕ‰–ńN2 °cbriannesbitt-Carbon-d046377/src/Carbon/Lang/wo.phpUTŲ]Ā_PK .3|QšÅc0"5 śdbriannesbitt-Carbon-d046377/src/Carbon/Lang/wo_SN.phpUTŲ]Ā_PK .3|Qū„øóN2 †gbriannesbitt-Carbon-d046377/src/Carbon/Lang/xh.phpUTŲ]Ā_PK .3|Q4rĖ(Ŗn5 Ņhbriannesbitt-Carbon-d046377/src/Carbon/Lang/xh_ZA.phpUTŲ]Ā_PK .3|QŅŃ`Ŗū[3 Ųkbriannesbitt-Carbon-d046377/src/Carbon/Lang/xog.phpUTŲ]Ā_PK .3|Q¹‚ jō3 -nbriannesbitt-Carbon-d046377/src/Carbon/Lang/yav.phpUTŲ]Ā_PK .3|Q§‘©ńN2 ńpbriannesbitt-Carbon-d046377/src/Carbon/Lang/yi.phpUTŲ]Ā_PK .3|QÓ;iÜ¢5 ;rbriannesbitt-Carbon-d046377/src/Carbon/Lang/yi_US.phpUTŲ]Ā_PK .3|Qēī”{–Ü 2 subriannesbitt-Carbon-d046377/src/Carbon/Lang/yo.phpUTŲ]Ā_PK .3|Q×-^7?M5 bybriannesbitt-Carbon-d046377/src/Carbon/Lang/yo_BJ.phpUTŲ]Ā_PK .3|QŠĻ3÷Ė 5 ż{briannesbitt-Carbon-d046377/src/Carbon/Lang/yo_NG.phpUTŲ]Ā_PK .3|QōlIQņO3 $}briannesbitt-Carbon-d046377/src/Carbon/Lang/yue.phpUTŲ]Ā_PK .3|Qw¦}©ė6 p~briannesbitt-Carbon-d046377/src/Carbon/Lang/yue_HK.phpUTŲ]Ā_PK .3|QŃā·Ļ8 ø€briannesbitt-Carbon-d046377/src/Carbon/Lang/yue_Hans.phpUTŲ]Ā_PK .3|QŲ'½Ļ8 ębriannesbitt-Carbon-d046377/src/Carbon/Lang/yue_Hant.phpUTŲ]Ā_PK .3|QŲädēņO3 ƒbriannesbitt-Carbon-d046377/src/Carbon/Lang/yuw.phpUTŲ]Ā_PK .3|QĖ>”ģŚ6 `„briannesbitt-Carbon-d046377/src/Carbon/Lang/yuw_PG.phpUTŲ]Ā_PK .3|QfÅž/`x3 ©†briannesbitt-Carbon-d046377/src/Carbon/Lang/zgh.phpUTŲ]Ā_PK .3|Qp‹R}„2 c‹briannesbitt-Carbon-d046377/src/Carbon/Lang/zh.phpUTŲ]Ā_PK .3|QDɳ¤½5 9briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_CN.phpUTŲ]Ā_PK .3|Qz±ēļŅ5 9briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_HK.phpUTŲ]Ā_PK .3|Q`YĀfą 7 gbriannesbitt-Carbon-d046377/src/Carbon/Lang/zh_Hans.phpUTŲ]Ā_PK .3|QŃā·Ļ: +•briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_Hans_HK.phpUTŲ]Ā_PK .3|QŃā·Ļ: [–briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_Hans_MO.phpUTŲ]Ā_PK .3|QŃā·Ļ: ‹—briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_Hans_SG.phpUTŲ]Ā_PK .3|Q…-Јmź 7 »˜briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_Hant.phpUTŲ]Ā_PK .3|QŲ'½Ļ: †briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_Hant_HK.phpUTŲ]Ā_PK .3|QŲ'½Ļ: ¶žbriannesbitt-Carbon-d046377/src/Carbon/Lang/zh_Hant_MO.phpUTŲ]Ā_PK .3|QŲ'½Ļ: ęŸbriannesbitt-Carbon-d046377/src/Carbon/Lang/zh_Hant_TW.phpUTŲ]Ā_PK .3|Q”^dL$5 ”briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_MO.phpUTŲ]Ā_PK .3|QĆū%Ū.5 –¢briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_SG.phpUTŲ]Ā_PK .3|Q{$ŽÓ5 ņ¤briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_TW.phpUTŲ]Ā_PK .3|QŌ>ž1IŲ6 !¦briannesbitt-Carbon-d046377/src/Carbon/Lang/zh_YUE.phpUTŲ]Ā_PK .3|QÜģü1óN2 ǧbriannesbitt-Carbon-d046377/src/Carbon/Lang/zu.phpUTŲ]Ā_PK .3|QŲ§4lœ45 ©briannesbitt-Carbon-d046377/src/Carbon/Lang/zu_ZA.phpUTŲ]Ā_PK .3|QxKž54b3  ¬briannesbitt-Carbon-d046377/src/Carbon/Language.phpUTŲ]Ā_PK .3|Q/ ™±briannesbitt-Carbon-d046377/src/Carbon/Laravel/UTŲ]Ā_PK .3|Q/F¢—xŚB ļ±briannesbitt-Carbon-d046377/src/Carbon/Laravel/ServiceProvider.phpUTŲ]Ā_PK .3|Q, Š“briannesbitt-Carbon-d046377/src/Carbon/List/UTŲ]Ā_PK .3|QŌ '~ąs9 #µbriannesbitt-Carbon-d046377/src/Carbon/List/languages.phpUTŲ]Ā_PK .3|QMœ J Ä7 Ībriannesbitt-Carbon-d046377/src/Carbon/List/regions.phpUTŲ]Ā_PK .3|Q/ ©Ųbriannesbitt-Carbon-d046377/src/Carbon/PHPStan/UTŲ]Ā_PK .3|QĮÄL®Ž8 ’Ųbriannesbitt-Carbon-d046377/src/Carbon/PHPStan/Macro.phpUTŲ]Ā_PK .3|Q7‘\A  Żbriannesbitt-Carbon-d046377/src/Carbon/PHPStan/MacroExtension.phpUTŲ]Ā_PK .3|Qh¢ā°? ‰ßbriannesbitt-Carbon-d046377/src/Carbon/PHPStan/MacroScanner.phpUTŲ]Ā_PK .3|Q. Ÿįbriannesbitt-Carbon-d046377/src/Carbon/Traits/UTŲ]Ā_PK .3|Qm.8ĶT$,< ōįbriannesbitt-Carbon-d046377/src/Carbon/Traits/Boundaries.phpUTŲ]Ā_PK .3|QĘŪXŒ`6 «čbriannesbitt-Carbon-d046377/src/Carbon/Traits/Cast.phpUTŲ]Ā_PK .3|Qh*@½č< ”źbriannesbitt-Carbon-d046377/src/Carbon/Traits/Comparison.phpUTŲ]Ā_PK .3|Q©DrmŻ .=; ßżbriannesbitt-Carbon-d046377/src/Carbon/Traits/Converter.phpUTŲ]Ā_PK .3|Q·  Œr9  briannesbitt-Carbon-d046377/src/Carbon/Traits/Creator.phpUTŲ]Ā_PK .3|Q¦[H4(H)t6  ! briannesbitt-Carbon-d046377/src/Carbon/Traits/Date.phpUTŲ]Ā_PK .3|Q‹3vŪ¦bĒ< i briannesbitt-Carbon-d046377/src/Carbon/Traits/Difference.phpUTŲ]Ā_PK .3|Qó¼Ļ–«(B ˜| briannesbitt-Carbon-d046377/src/Carbon/Traits/IntervalRounding.phpUTŲ]Ā_PK .3|Q L©t’ > ¬ briannesbitt-Carbon-d046377/src/Carbon/Traits/IntervalStep.phpUTŲ]Ā_PK .3|QsPŽ\Vćl> ƒ briannesbitt-Carbon-d046377/src/Carbon/Traits/Localization.phpUTŲ]Ā_PK .3|QˆGÄ} 7 ˘ briannesbitt-Carbon-d046377/src/Carbon/Traits/Macro.phpUTŲ]Ā_PK .3|Qt Ld47 ¦œ briannesbitt-Carbon-d046377/src/Carbon/Traits/Mixin.phpUTŲ]Ā_PK .3|Q°)ņ{ 5; ‘¢ briannesbitt-Carbon-d046377/src/Carbon/Traits/Modifiers.phpUTŲ]Ā_PK .3|Q Č×yÕ4< n¬ briannesbitt-Carbon-d046377/src/Carbon/Traits/Mutability.phpUTŲ]Ā_PK .3|QĒ‚ĀM¬F ¦® briannesbitt-Carbon-d046377/src/Carbon/Traits/ObjectInitialisation.phpUTŲ]Ā_PK .3|Qo–yéį ¼29 -° briannesbitt-Carbon-d046377/src/Carbon/Traits/Options.phpUTŲ]Ā_PK .3|Q ąÉÉńm: n» briannesbitt-Carbon-d046377/src/Carbon/Traits/Rounding.phpUTŲ]Ā_PK .3|Qč„KI®Ā? ĄĮ briannesbitt-Carbon-d046377/src/Carbon/Traits/Serialization.phpUTŲ]Ā_PK .3|Qö° Ä>6 ŌĒ briannesbitt-Carbon-d046377/src/Carbon/Traits/Test.phpUTŲ]Ā_PK .3|QĮ†:7®; õĶ briannesbitt-Carbon-d046377/src/Carbon/Traits/Timestamp.phpUTŲ]Ā_PK .3|Q) V? i.7 ŽŌ briannesbitt-Carbon-d046377/src/Carbon/Traits/Units.phpUTŲ]Ā_PK .3|Q§>Ŗ3›6 +Ž briannesbitt-Carbon-d046377/src/Carbon/Traits/Week.phpUTŲ]Ā_PK .3|QJ™h¦v ”(5 »ć briannesbitt-Carbon-d046377/src/Carbon/Translator.phpUTŲ]Ā_PK••ރī (d0463779663437392fe42ff339ebc0213bd55498PK!­SŽ{ { 3carbon/e96a2fdac6fbbc439cfcea4dfa67bc27228ad5f7.zipnuÕIw¶“PK i5P briannesbitt-Carbon-f10e22c/UT÷Hƒ^PK i5P$ briannesbitt-Carbon-f10e22c/.github/UT÷Hƒ^PK i5PüĀYrS^/ briannesbitt-Carbon-f10e22c/.github/FUNDING.ymlUT÷Hƒ^%ĖA € н§ŚīŻvmŖĮażŻ>¢ż{Ó!8Æ}y” ŗé˜}źBf<’®6¶5WUΐ›£_اj²±ŹŽčåB‡ „ļT„ü‹PK i5PÄlF.°ł5 briannesbitt-Carbon-f10e22c/.github/ISSUE_TEMPLATE.mdUT÷Hƒ^TĮnŪF½ó+Ę9IJAŹN…āŗHö!–!Ū#€VĖ‘ø0¹ĖīM³ŃsżÅ~Bgg)ĒB/Ձ"wgęͼy3gE‘’žłūÆ?įóāśš–ó/‹Æsų2ŸŹĶ]e˜:¦­!ض­ Ŗ®Å €u·­óņ—Ć *ź”œC7—7»‰ÓµÅ£D›<®į .\k °Fź-œcżü½³‡9Eå¹HFŲ«µ‰śÉ-"<Üx|2ŲRkĘ)Šóģ™ƒ<Ė®­våš0Ö9śõ†ŖŠE®"”Ś•8ĖV«U[µźŹuĶf­ņ'‡?¾ū„8}_œ¾;<*ĪC·ž¬† æ5ĪRõ!zfŁ>38>¾¹æƒĖłrß÷Køųøü“ø†Æóåķ’O¤1?˜³Ž$+Æ,3v|œeÆøüo“x9†Š¶g;Õ.»Ä–f†#+~a™q[CÅj°֎N“äŗJMu°E‚7#Tx#§÷¬®•PĮœŒW“£{.Æœ&ŽŗĶ43^b‹¶ Ą¼ˆ\4ó…Ļ”C@"f~Ō~£“w!2 žį,ęP3 KgŹ!#Ü!Ä”I„•(nQ³[ó¹Õ®ŪVєĪ»²Ó˜ y9°Ą8mŒ̚ÉWEŌ†ŁÉ ‰”i…Ž=v¬½)Swņ#6ųės}Ėcóü›5–©ąoœB,“ )·‡E+Ćųq‰ølNHW±„r=²5ė¾©Sū揫* 9Ÿ‹Å³ó…‡¹d³CŹ™—v›ŚŲGpywÜV?OGžµƒĪ„ģFK:6å½3BA2< „Q¼9bj;ŗżh*s&&‹$ˆ$f™ĢĀ{y¾hņcŻ«!¤VIä•ÖÖęJWB`„BLĒxp=_¼ÜØze J5Ōf[„“£^Fuzä䍍XĖŌ§z+’X3€Დ‹ŁZĒ›aŗ±ÓąNčlȹ•‘Ŗ8JŹ›ĄYēū£7pHz$ēSGpŹPĒ+yxEĪĻūä\m¤»„)e„Nk|įSŗWé1tulŲ’“ķŲē“ÅㇸAF½‰Ž±<ĆAö/PK i5P½yĻ›‚Ź- briannesbitt-Carbon-f10e22c/.multi-tester.ymlUT÷Hƒ^]ŒKĀ0 D÷=…/fŸŪø©›Fä'Ūq{LBbēĻ{ļTüĮXéŃłé“#½/} ²^ir pŖ Ž[yĪm½śņÆYæÓALĶtPQ”ŲŚÜD±˜ÉŠŃ…ęŲQ œ׎ķYŌRė.7c0jīķ÷6|+ōČL‰D—PK i5P^¬ Tf# briannesbitt-Carbon-f10e22c/LICENSEUT÷Hƒ^]QĶnŪ0 ¾ū)ˆœZĄčī»)¶Ņs$CVšåØŲJ¬Į±KYŠ·餯:Ą€!’ßY„ĖūäO}‚§ā–“·#H>„,«Żtö1ś0‚Š»ÉŽį4Ł1¹.‡ćä„#“½N.‡ĄŽļpqSD@8$ėG?žĄB‹"N¦ib8¦›w`c ­·Č]hÆg7&›Hļčį)õͱxžE:g‡Ģ@½Ü|źĆ5Įäbš|K9ų±®yųhžģ Ÿ“Ē IƐĻĪ”óGś»9Öåz|ģsčØoˆlĆu±Ę'[ŠJ˜}ž­„‘ĹRŌLQl+¦”ŽźZ5åK¤•B®4Ŗš —ęU±ü ЬYU‘Tʶč^“?(T½×āum`­Ŗ’cqÉŃ[Vü.…”ŠŠ‰M%Ū°W>£²čŒĘīī`·ęT"=†_a„’£PŅh|ę˜R›OčN4<¦EC YiµÉ3Z'"ŌL‚8Éļ,“jųr”÷¶įŸ„PrV!žG~9ßKöPK i5P briannesbitt-Carbon-f10e22c/bin/UT÷Hƒ^PK i5P#ėŖ²¹z& briannesbitt-Carbon-f10e22c/bin/carbonUT÷Hƒ^­Š=‚0ཿāŒ$“K««!Vg’äFŅbJbüļ¶Ä‘Éx¹ÜņŽ=Ć­Wbģ­(•ØtMGI˜$Ŗ”…#HyĪ.RņXpļ Q5ŠU­Z”8©~čiŲói1¦5EÅżq̼ųZ@„C]ė­÷?“¹ĮšŚˆOß “ 6£®6ē“č–ͲÅĒØ,Āč2ÆROČÓĀ–Fēi«ņL;sGK£œóذ7Ē  ģ °PK i5P{mu0U]* briannesbitt-Carbon-f10e22c/bin/carbon.batUT÷Hƒ^spuöšWšwsć*N-ÉÉONĢQpń vtņquqõqŒ’Ž~Įžž~\Į®! Nž~ń!ŽAī®!¶Ŗu)śÉ‰EIły\ JŖYU%U-.PK i5PćFG' ) briannesbitt-Carbon-f10e22c/composer.jsonUT÷Hƒ^UŪnŪ0 }ļWy*»é-śŌ]^lƀõ­—A‘™F‹,y¢œÅėśļ£d¹µœ k€X¶txH‘‡Ņć£ß̈f—4.¬/„p kf‡ż¢ļšøØÕĀ × Ó tŖńА“śÖ°·_?2Ųz0Hsliū <\«˜_ ϰmė<²ć‹9«Ōr ŒgZ˜‡V<õŗ_ÖUH¼7q¦wHd ŃĒEÄćļĮŁ,NŻ%®•­”!öćŹūę²LŪ+śĶŅփß A_hb 8˜#Ł?(æjĮ°\8%L RŽ—ļ#o™ F‘”m„×Sō;xJQi%)„ŃüóĒė!VŃś•uyŠ^¢ĪŖś.x`_z£ø"j”t@Å8®v’ņ ܓČųūtųæp֝†µšĀÆp2JUfłā1«wć€tÅы…4޵–jeTŻÖqMiå»ą„‚͐҅ J¾ 披ƒŸ­r+£Y5įž¼˜ģĻvQėNĶĄ`ßo2AtõҚ®ōNŌbč”ū“ā4ņœGq<#¾L )¢Īb©¬ōN(­«#Õqq>öøt L…vIA—ōēłRmĮ%š¼w|’o`œš²nµWÜśd5/ęc0±ÖUŸ‰ōb²L‰7e#䨘O)Z£|™Ę”ݳ}¹EJÄo-Ąß„„ćČÄ#eHdž8j«­Ø&DĒO³©8Żwįķm B'‡ĘžJnʽ[•š_S±§éÄ2Kk–źaĀé¬DŽ?Ū†eGó¼rŌ$’Œ²?“1ē Qd'Iœ½Ź0iŅ+ō¤ .W ×/‘ߍ£öŅŹĪæt±gžµ×ĶH&é•q¾*ĀDVźYųŒžŒoČ"\Eapw­Ł£Łd^™0Bw„ļ‹ÓŗŲ¾,­Ó­BœkŲ€f'ŒäĆbw:%‘ÖUĀl=ė›§ŲÖz‚¦īNpÖįģÉźJöNäU„ėŚČZ Ü!‰•×bhęćbå»ļŸiįmg—ƒ“øQL®”ē唏>õö··ßĄmč6ūšĢf™ÉŻ“ žžPK i5PÖÉ$Ī~ + briannesbitt-Carbon-f10e22c/contributing.mdUT÷Hƒ^•YkÜ¶ż®_Aģ"š®=ģ¦ #IėøyH#qF‹”$Ī ³’ؐŅĢĪ—žöžs/53ŽŻĶc5yß÷ÜCśŅ¼Ż}9¾Ū˜!˜×6–”+ŠĖKó&„ѝ-]*Š·³É™čśc»ƒI®£ĘĖś1QŅūw¾v_§ĻŁjų×Õvśōr¹ņ’EŚå“ģzQ·ī}Ó`[ˆµļģąĢ°ufķ6µOUŅŻb²©ݳaśąNŠĖq“L?–Æšƒ»Į7u0[»s¦t®ĆSW7®6%¾§EQ|¢ų°.R€Į ńofzÕVAÜäųd߯‰QėŠ4a/v®ķż²x’::Zß¹½Š8E`ć‡ķXŠ’eō¶ė\*ż0,5 KY–Ųx]æ„Ń“ö@]Ö;é€ē.™. }‘ĘC£©h'27™¬[ķĘśna^™& QµKUō=³«ńī܎.;cSQa‘ŒEjų¼!`«ÅĒ0=¤C—q÷½«³Ž”5~0WkÄĖłcōr¹ą%£°F<ø„\³Ī^Sōƒ2»ÄūŸ±ŪљŅm¦ACūü9×v£?¢­`ūŲŌā’É`i¶„šō†˜fØgüš* Łā_«ķ$«Cj5ĆŅ+Sę_ÅŹē_~ūܧ>y%æ^Čcč]÷B|Ānoiå q녬«¢ųŖIؾjė¤ģŠ‚ĮÖ­ķé0ĶŽÓÓ½C®mĒwu0¾ƒ‹÷¢/łOŌŅåͧ¾Ń\ü Uф5S٦9ĢhA‡č”-bY”}6.IŪØmļæńĆ·ciś~uē=’æõ^kk‡}ץ9RÖĖW«UŚŗ¦)6ԈŚuę ”Ÿ”Bbg[÷E¹ĄĒ¢Ŗ'\ćę覀¦±umĘ> čĪö)QOŲ'Ā`Hń£C˜+gV'}+ķ i¼ģżō ežįšI§THĻžqBĆ1T­MŗåX)NX“ŠK~ķ+SFŪ”žX«"·Ö,“®E„u†4óŅ“‡yn±y–0gļytŃRՉ)4‡…ķj”=źź€4"u!*rC%ńKc”Eā93Žx˜Ü FŅcÉ£üróÖoƦĪMüš_"@D€A©žGĪVčŁnø~äečÖ~cęóMJŪH„¢šān’ææŅ‰Ś jŅēE6įÆīŽK”ĮAĘ &x lFĘ^2c-a¾Ėüd¢P®źŠ–Z’G½ŗ°š0qč ń $Čā\žkFĘWa"˜‘’IšźGĆÆ;ŪP³V¬'CÉEcŁ6‘[†’å?ŸŪc`Eā¼5t<’l»܆MŽŹ›µjķķĄĀō÷ĄED{0}‡ˆ į%cēŪ%†ś†U ¢:nYJŗ±-]|œń£a—·7ękŒ 9"MlĻfż 5Ž%u_qnāøq×īCW©éŅ|2Øߏ|į߇z׎jÓg¢Ÿh£L?Š(Ń„!I-pōM1ŖcĻ\„Ą"*r9ŒāōY{§<ŒįG XøĖ“ņzVöź `µ!0j;hŖūm?v’ī7]ųżķ·o9ŌXd<$I7d÷yāŒReüPˆ䗋7Ė –—w_ ķpH{ķŗŹs¶0‹åqKæue”†é‡8Y‘u¢¦ÕF›Œ@ϵĒ×ēū߉דõ袪„KuˆĖiÉ_tĆßķ8'96iV0Ļ+ĒŹSÓ&½«e=6Ķ<ŗß0ü ‡‰Ė‘zJD•ŌŒT²ˆĪ|;¦ķYi… eyĢdD;v¶Z͊ź¹Oėé1d« ßźzb8QĆ4^ņp’KõUF†,0O‘…y«3ĻŽĀOó£śłŒqČū×pµą®b»Ž%ˆnēÉaµŠ`“…н©ķ!Nbóžo»»œdtÄšŻi~”»zå|’t1°xåßĖD.©ł' 38zu¶FL“>ą#ŻxEbš›ĘEÆķ.8¢*Ažø‹lö·°SģC9 šL;äO£b8Ū£ĄK%¶Øų“_K]ŗAh‹ć)”rX²ÜŸ”«…õ°·zs»Š»ĄŸ‚…(8ø‡z:p-…NށV‘-Jć»5ĀAˆÄéģ–Ć_|eÆąO]ŽńAŽ9ŗZLQ6öL&‚ŻŹŃ¶–8~)ń’†Ś]šuį;ĘŽ–¾ńŪFģl<Ą0śé`Ø%Ÿ2ūŅĀ—łĢSLś¹ŗčb“‰°ļĘ0&2?(D7ā±+‹wXŒEÆßĢĢ{žČ%RG+š ½ņ4twhܝPMZVbϼQõKQ\f—łÓĶø7ßiīę7¤×ĮW<&…!Ū}ńŅ\Š:µųb„·«ß®®IŪ~gõї9ķŗY]Ļ”ņ±Ś&\©ĮČTĆļuj3óK97ä! E Er āUēbVŽÆC)Ÿč2ya”Š>Õé¬RŠ=GŖ7ē/ļ¬zsĢšŁ%cš@|wńœó+!õr’½¦oĒB½Bó4cĶĪ5w-ń2»#ń9#6g@1rÜŲČŻyÜw¼S„žŌŗg÷·s,vnļJGū¦Ļ³ #n«×Ē:Œ³WØ@Žˆ+b™da¾<ƒ ³ŗYÜ~ŗx¾š«’ČćDz“ń ÷šA%L°¾śās¬łŲ|v³ų䓕ÕZĪģ{²• 7ĒŁHs%õć…2“Zቱ͗ƒ…Œ¢Rī§] ĒÓå…l‚’·§@…$lćæŃ‡z£›YߧɆې†ć±ra~ūÖóVb})'T%²z…š†©ĆŽ@ųJsz¹¶p§AĮi€!Él8m³ÉzxŸ1ŗzyźY¬ZżÄmäųm¤™'ń­…Åu©Łā,Ē_|~»žHSXŃpŲ„ĢŌe°Õ® «%z.Ę„€Õ[J”ė*IĒqĒY•÷­oą)ČGšpBū¤VģÕ2)šujY³ßbW¦®Ü$FžC¢> ²+[Ž£Ę߁6ŻMć6½×fó v‚9#|ØĆˆ1÷‡†¾4’÷ļiSń_PK i5PSÕ üļ% briannesbitt-Carbon-f10e22c/phpmd.xmlUT÷Hƒ^„T]oā0|ēWDyębŚ{CŠ"NŖ½JܝśVgI\9vd;śėom |„\›§DžŁ™ńn6~Ør¬@®ä ¼‹zįưėR€HšĆ œ1A˜ETąƒ„ŅĮ˜ź…’a'Ų?XLšA˜Y[ō )ņ$2ĖH‚%»‚PāŒŠÆ ÆIėõ:Z”NÉ}ÆwG^gÓ9Ė §ßø4–JĒtĆūƟN£Ögø!~ ?WIočšm+U&9ӖźoČ”ĮüĢĘu†ž'`˜ę…+9¬+ŽčĒ–Iž”ś®–ƒp'jSć”|xPˆ”b¢L`7ć *Ē`l¬ņB@Åķ& ČUüó µY;č¤b˜†Æ`6SÉdj³V„± Ęüž„\ ”¶ ’K©•›­Ó¹­ŪźüĀõÄ~š%ē;ÖÜ­G„p¤Ó2iš6ٚ[×ŲsęšpOK‡Wr„1R鮚æeK.!łC5§ ķƒ*iµņ[‰ ¶f^@» NeóLVTLŖB»ąĘjpR.ÓG°kłsńŽæYćÅų‘z’S„Š ·²ܓ+ŅGĀ…VhĖĮ OöĖž`³³”ÓŠēe»ÄļūŽir^č–K,‹Ę¼Ėy¦“­[ś sx{ą×’©ż1ŽåI×Ŗ®żų¢ŃR–’ś'qÅāżŽvžPK i5PO|Æd«S% briannesbitt-Carbon-f10e22c/readme.mdUT÷Hƒ^ĶWMoǾóWŒ)×K$W¤äŲRL6'*ģX°˜©šJĆŻįīX³3›™Y2l‘kŃŠ½õ”_—Coż }ffIJ)  T“Ś™÷ćyæßŻ!#Ŗ'J6§÷N_Sˌ%'–N#ß2mø’ß·rkKsǼČz&ēL¤¦ĒU\Ņä‚fÜŲxKf&ŹĘ‰—Õ3³ģ™± Į†SAm×üPQĶŚkA+ĪžŅYżĘĢU!mh¬,䄚K”hjn%µ’+,/*.Rēb5qO4§Ņ‰ąÖĘĮĮqAeś“x‚„nĀ=ž ‚<˜'at“fó"Į š•ŹÄ övćīF•Ūx½¦D„,Q3\n5ŗ&‰“8ć6Æ&›PŅīµž¤<›h*“||éńuŒ˜lĻŅ M3×T]&]j§ŻżżŃØß÷ „’Łˆ&9Z]±7a Ąz‰*ā2/ .Ÿ![yŹŸŚKĮ¬O<‹Gbn°®½…ŃT“h^ZTc\^dėœķ†4ķ†4}VŁāĢØJ'lø…ä#)XŹ«bØŁ”iM…?KhQRžIœŅ“`ķFć¹$\ĀĖ’:½(Cų°-“®+©Ņä%śÅ˜¬GNpÅģ Ó&mŗŠóósųÆQVw”߇ĒēF©”|Śj¾ćYn‰TsĀ łivjŹĆCœµŚŻ§V-QœXšd­vūóMܒ|‹ŌQՌ鍢¢ēÓ<”ńŠ,‚$B\B•‚'ܒ³3«–J÷­*”Ö=üMӗtŃŽū‰śž±‹ėDŖ»šTn=© x+EÉs‰>AD,{„Uį m vūŸß1ŖMk÷Õt ˆT8’ėŗ¬z7Mƒ%zĒ’«ł[‘>/޶ėź©”«”.^+™ā_x~£wŃź:d×’F_TZ•,\‘‡ņ‹Ł÷\ˆBĶæ)ߏk²`ńŽcˆčwH’ CöšŲļGų囱—Ē2²ōB,ȜJKlŽ([ErZ–L£H”’ — „|Ćģóīk8i«³wŻin׊ø%ÕÜ(iš”bN†Ą$ęrģ›ńØĮ§¤õQ2ČŚhm»MžŌ ųI9sałÉ+9ĪŁüyĒl„„³A*] ',Ēl@}o²ĄįŪ ™—eL¦­•*–äŠDĒTŪŽȩ„Ę·®,`-Tf•›€¤EeJ”;ˆsͲŠfŌ5.kŚÄTe©“eéaƋ¼žąoø¬°Q“xMłtśJ鯪‚J“(, HHĶTt1B%T°VōĒülōu“Uī/łóæžńó/żŪGB;nŃAw÷Qw°‡d:|Ų¼§Ō+ēgۊ^ć'ŖE+fģņŪ ©5@ś9f29~s{ńKąS}öźŻ ś ŖS=äö ĮlPÄųäčõzdRYdr:UšdŖĀev„¢ SdYD\š¢ C—f‘ćŅJ”>©J—P£V¦¦³t‡äH+<`©;UŅęx.\‡AŗÓ.öE©’|kµcek·Ź‘Dtqmė嗰e•2äŹ~EꘉØXF–#”œ\šy’Wcqg‡IX*„Ÿ‹ī`‡¼wųGh Ź0ķēZć¾oīµóCÅŃ+®Ų¼‚?ŠK”2›5eó°.Ux… WĶ? zżĻšžą'”ļR„Ož¹æK…Ń …ÆtL+«ÜŻĆ%*žĘ‹^røaŠ.Ćų„I 6lņą„®TK;›ńÓµ72tķ÷łĀwĖ…Ŗ§–TĘåāé’sµ$dĢ.ĻüśŪ~¶Zž}zHäT„Ķ£†m\Š6­ą5=z—+²²^(JK5DMżūļŽŽ6ÉłĢµtT EwÖ,±J/\‡š”Z}ĄQŒsL—„Ćū”ćŪéü²ĖĻ]ÉĮ4”¬ V㤠£)e2į8pŌ( ˜'K{ŪBZR›w­ź“ŗ+dwdÄš„JPł[×ŗ8ÅżöŻĪ_‡b9aI„¹]x7ÓăSßö|ńŒqŸ¾qM)PĪ*!™¦.šÖ!„qöĄæÕš½fØEoė5Y»×X±Ī¹ …RčµŅ­L!p?†Øp“e*ĶzŽ‚‘Fc°&äöŖ4G’U®3ŽŻ’Q§vcōģ9•~õpįv‚K¦`™cP$Kvģ̾˜r“›a󖳛iZę&N.ahK5rkŲ<›`v_4Ÿ>Į1:YKÅŚ…•Ć$±Či/½xY’’šóŌęĆĒ»ph•N1fX“ÄOŸÄ“.ļ1¾Į *Š{ąt¼2·63g¢ō“ĘښxU»<ģbT.Ö»Ę„ÆĄk™“öXl׊ćvĄņżœ…H†ļ/µć]‘NĀķ=ņłwrzścŪ*­/Öj·zh'P¶æß¬O1żŹŲŌB®†„y)'%–P„“0VĆĪ»LĒÉ #ä¹X øq|ē#T¦B |ø„ gh.~ S‚Eį¹Ń7ŗ9›īŅõ’ūja·ń_M ŽŽqĶļʵö_ēɵ8:£ä\Z;ņæÕæ[Pż;5ø[Pƒ;µw· öīŌžŻ‚Śæź?PK i5P briannesbitt-Carbon-f10e22c/src/UT÷Hƒ^PK i5P' briannesbitt-Carbon-f10e22c/src/Carbon/UT÷Hƒ^PK i5P€ō”Pćj1 briannesbitt-Carbon-f10e22c/src/Carbon/Carbon.phpUT÷Hƒ^Ż]ksÜ6–ż®_r¹j$—,śgk“ĢF#Ł;ŖŠO$o6)We ­ę˜Möš!Y™Ģ_\d³[­6€Ōö‡8jQä¹ēŽs‹æłÆå|¹·wüģŁ{Ę.ēIÉfI*˜üwɋŠå3VĶ;åÅUžÉÆ¢üZÉkéņżč€ż¹HxĘŽŠņ*©*öĶżų]&Ģ«£(_üÉ\ś:/Ōfuš²(_ŽÉõ¼b<‹YšD"+å#³Y^,x•äŁ![¦‚Ėļnq«žīūóÓWo/^Ń­¾jĪ+vĖK'eU$Wu%bv›Tsł‰½Ģė"ņA±{¼—ń…(%üʔÆ÷öź²łįĆeĮ“ŖüpĘ+ńµśžžļ2YȟjNX™,$*vņīœ‰O•„,2 ¹½ø”å^WyœGģZd¢ą„ģźŽżM²±ĢKQ0Éøüķßj¾[łRÕSŸ$«XēóōNšĀņ²ó2·ør‘gÕÜ⺘ßY\5—LŪ<4ɤ‹,.,E”g±Õ£ĀŹ\ŗĪś®•ōcYńŒ?śé2*“,*œßgÉ'öj™GŪA]Æ0‰ģ:MŹłæūaö“!˜…ō0 ü–ī™dģ•~Ž¢ržÕ+0,BÄÆ® q“(Ķ8£3|½”8 j RŽ;S0@›L9ąJóˆ§RŪb*Ŗ‹BHéē±ļO½<óŹ–øļĮ(?bĪ`õ`n=ā<āš=€Ö0ļgéTF®Ī“ż.·½Śāŗ[˜:Ÿ’­"ÆÆēģ«/-0$eޤ#āįgٟ€b  ćQ”1h•kŁé>Ÿ=1X\÷A_üŠXLé M׏c_¾|iBöŹ‘×Ÿ8%㲋=›gda¹ ;ٱ˜ń:­ØFėJ6¢Ķg³RTŪ4ąC©ˆ:mæå™`ę 25]®Y‘/ŲūĖSkxoTGµō oažŅŽ_dwīAxsõ”ątŻDEĻ/ō—OŪ{ ?®iPšŲ`ł ŠBxšČbSöžnEņ¼<ŽžŠŁü ¶OEēEÉŪ“iā„łšWuAæčO֍0x/4Ł×Xƒ÷Ē5Ōą(ĆÓŖLīĻ’ćå/t†ĻźÅ•,Ē„S©8T_Ź"­āEE¬īµvT–ēøøĀG·']’"®“‘±ūE¼vÆgŹ„-oD‘ĉX €=į‹'ĒO–‹'l’$«d/µ¹æō𻼬V_ØĒĖŽą­("ĻYšāć6ļo…ż~)ÆbrņFĀ~÷ĘvMĻļ»É '«¾ń[Ł>ƒ½- ®õ¾ilĖÜok8žµĻż¼øa»0Ż`Tņ“ęņÄLSąQ­W<+SEŚZ§Ļ oźŖå”fĘX2cYŽžųńž¤üJV7”ŠŚ‚‡g×µģ„Y˜«*²3°Ķź¦Ó“WöuŠÖ2v#Š»IMłÕk1­kīI«üšlńŗs'dķܚŖO§‰lnON‹u›åĮŽÜ «O§mŪŽĶ¾\–’"Šœ -”±ņÓą ŹJV/ȬūwĖ®p© p ÆŚĀ æ`qō”‹p7»ƒĮĀ[Õ1ö÷ūA˜%EY‘3d³Šxŗś|±Ŗ$- ¤ ']r Ä/_~EÕĄę˜Ūv’Øe„(°£¤Ŗ·ßÜXM¾'TłÉ¢4‹dŽ{Įž3›”‹ˆĒčA5½£o¼‰ĢR$Ó_]Ć„ŌÜŲM ˆ,Kjdc®ęmV7¶€u•ēiV\¢GIåGź%Uk.J~#ÕRՒUœD¼Ź‹CŁˆÖ‚ŚÓ³‹ĖC6ć©l›siKq›”6 UӌĶEō±$Tk#•’NõøhócŲu”Aļ‚żžņtZżšyȍ2@Ė‹­£ Ö# ųś}ĖȂåp‚™{Ä~ĢMĶr؆؎¦°…ØęyÜüĶFØ%åū*Ś?;„Pk"m›sr­GŲžŸsšŖ%,jõ•ü?ł{ꉗŒ‚ŻHŽć£sŌ¬2Ų Ļ›“åŁó5“l žYjB3gŠL™y+;”2óŽÕ.Ńßzć Čµ‚¬ō±ØOײg‹•ĘvhiŸz¢8=|Ü"·wY‹n7øJ?Ń ŻO"ĪŠųv£»mžhĒŽ¼.Šō}†=óD+xƋ$päĶŌķ4kęĆqWš'ZĀ[*ėö?˜Õ¹śŸß?4ėlĻ3YĶx$~×M’ļ-*~Ji–}Ėč‡{†­ĆÓShźś¤W+© £×ƒ”kF±ó™ŗ+[ņ²ń!£•¼ŌVV¹lnپYwlīŃ4LVÖžź”¬ Fłćgģ°µiłBžcü­ų„E Ī2 JżŽŹ„ļy9=hhÅŽ Č!5‰>†X”ĮaÅҵÕQ,PŌąZ,ō{k±LĪ%kH,g²ŻjÅZ,ŌŽ”•3d;oēÆŽ©ŽR‚Ž[+Ŷ’BB™šJ'}:`4ż5F›¢ęĒĘŠ‰28l›ŅµÕQ(PŌąZ)ō{k©LĪ„kH,zĶ0N.¶bŃ«ˆG‘‹1ć7;—­[ė((nt-}…µh&h†’M3H8j•~xįčŻ£ǘR8ėÖ: Š] G_a-œ š”„ÓĆ ŻāDEģŸŁ·8ķfź‘š²ä=Ū¤wĻd綇æi€ŚĖz“BÓ4Č4Eż jeUā„G%«”G‘ <’@YMŠ 'Y5FK%'nµ:s`l!a#›Ø¢ ģćirFčH²6ĀÄŠ_õ²HŒ%vF4+1‡E8»Ž#s‰u$MŃK} Q³jkųĀÓ,Ÿe"@›²š\·Öu.‰ŻLØ+ģg¦g†ž°7ƒ„sŖ[Ɣc+œf‘÷ŹilŲīl˜ė((p v­s‰µx¦hˆROCtŁģ Ą(ȾĄl÷#ŒS_¶fw”m9³i±sy ăßT—ĶU=ŠĖIšcjĖ]ę˜- ĶēNGD;zžŽš“˜Üp!Ŗū«¤Õj-)‡•ĘŌ-AĀ1¢A–¢śO¦`2Į UI Ź­ ͆xg”a”3%Å…§ÓŹŚ€’öŹJCźGŒxˆ`ŒŅŪgx*}` ’ƒœ1ŖóåĀd µŠĒd ŃøƒlŽ ƒ !węHĘ Ķ:š0Ćt1Ą\¤‰„źf€NĘ ˜ź4Ó±ifĄ ›Ć`še@žcÓl©ā”ŚSæ` Tł ÅŖRœZæXCTA€'TļXŌzŽW(µ!°¢Øõ“ą&P~]-rĒ*æÄŖbN­_¬Aņ+"BåWV’łÆ!ņ+«ēü:+ćĶŁö-{10NāXĻP±}‚dīåuV™‰ViĀAƒøµfæ.éų=…KĮņļ¶Ī“n7|zAĒ€u'DC-ė+|_ŌW!ł6F€ł&#ą|7ńżSRĶøÅ,Ķo‡sŒożJ™Ü`cāÓ2M¢¤JļOé\ä­ ·[¹fäpēōĀ–F!X!“ģ±žFŸņX^W §…ŃŲ,/®’8Y?•uĶ“•(Ÿõ±¦«3œ×ĀčĢĮN°×JsˆAåµ·9*?NZk3‡fČ)h ēµIk čµ±µ†ó}&«5 Ē;ĒŌÖk“ÕŲk#jķŽz·į…1Å ^•l ½Ż­”“¶QÄ{`œā'$ćXĘ`ocZŚBcT*3±µ­ƒ@uŗŸAU‚4ė3![ŚŅ™K£‰­m”JėŁ£ńą·@Zs1ė7ØŚœśnŠņvāzĆõ»§”7˜ß&®7œßĘדĝ°Ž°5īųzƒśmĀzĆśmL½mģ{LŁ«0To¶52>•›­¤ŌŁ …Øč=°MĮŽmmšķFH¶e\lī ­’Q»Ü‚7śm¶ īī¦*Ddxą›"# ßĘOė |SāŽN¬ĮŒ«¾’¾møeš”׬ÓZۜ“Ås®ś9!9oĶ€rŽöb°œĖ¹æ« ēfÅm°8GŸQĶVq¾¾P 8§ Źyk†—8s®įƾ0Šš g(ö”ģūXö½ĒžĘ~5TŽ_m+ ūŲw°nģßŪ„‰8ū:öC³ßŲā+ļćŁocßCŽ+ö}å}±ļ!ļū¾ņ¾§Ų×ēbr\ņiś<ź¶A;<ČĆGŁz‡Ēœ0 ī#€™oś;™ļd¾ŪŁ3ߍyܲ3tĢ£VjµüĮ֞¹Šµļ;“jĄ–}ē*+p4rÜ“pŗė»“bĶ{uhxåõ]v€÷_8ķ9Ś ō^}Ž1ÉqK҉ž ke¦„?Œ’‰ž ž›Žž°{‹§ēæ5żĮÖ©MGŲ]ĘÓóߚž`ž]śU? råÅdŌÜ6ŲXśEl%®ęÅDĄń“S(¦½5J{£ 4ķŻhĒŽr iՕĘ/ČķuNrž‡Ö ŌRØćœCć8ÜųFĒ9µ„wČMv`Ķõģšxp^8Õ9Ł uXw®=;ģČĘōœ·®<¦ęGMZsウ 9¤ē&­9ØēFÕÜ_k^Č{"‹gŠÄ˜Ū°0vųX|alA–śX§( ĖśŹk/ЬwbXž‚cT0C},½čåP5ļĮo`µ` õ±ņ"øß6ō*ƒéĶ­õ±š乞ż¾ ¦97S}¬»ĮwŗuɁīŠĖ.Ę×Čw@wčUćźXO\w>]Œ«; ļ&®;k.ĘŃŻOB|ōpšļ-Ż6Ųįé4_2Yõ{ą›( ßĘO§łBł6”cĻoā;čiģĘctĘt€€Yo¢<č©ģXļ:ųdöOĮē®ANżŖ’…ß,–}ķĄńŽćÄÆ^heŒx`rŚ—³8Ö{œōeƒö(õ¾ßū¬JŅż§"‹ĻH,ß²¬NÓC¦œ0ćQ•ż¼š£Øź"c”_먶śµ“/­skę”/P[5ó»^žęÖ2B¹¾ų²:w<p>”ėN»®y¤27D¬5éŚĆĆd~čÉ wÆŗˆü.ŠF从ź¢0ĻƒŽ¹źjēFąCynå­Ų@—īĮä­hčˆ[ūv˜“Į/²>ņŹpeƒ_bŻnĖzxšŌE`–/†¼*Üæ é,·²&.ąŖ&kb”£jåŲa¢Æų¶ŗŹEÕąÕ>6+«\dęyŲŖ*W<“×Cyn…­Ųx“ķµ¢”£lķہwžUsš›ŗeø‚›ēarn -V±L«z;Ó] ķTšā”[lk÷8xÆńą .ļ3¶Üją"0ۃ÷ °ż®LŪ­ŠN°R%ō†‰ŽŌ['ūĻ‚£Öīč–Į”Nx訓H‰€y&‰ā¹c€‡ŽśPž[+6mG]ŃŠQ·öķĄ5ģ)§COFr[ƞpjwä‘Óš–ė”g¹›ŸĪõjM3ņH§Ę Żq6ćįa2æ—ių±ķ.Bæ“ÉņQód??ŅŹcż­ēT5¢[ŠT¬žg\*’H’¦yd+J¤”­ŠóāA_ø*벐Tōõ2¤Žķ¬;ö‡7I §—Ź»śĆ „ÖV%$=F}znĀK1ób8;‚›”Tł°7¼ØņaKzF»GĄ¤M8Į;“‰ Ķ$žĄ*1Ńr,dgd—iu’—<¢ÖÄźRł0B‰ņ!O8·•»Eł=ąb›KopI”prwˆr8T,±~ *©Eځ„§–,{Iz­|˜Ž”+” ō…A>hH¼k™!xI–pzwȁ5T-3«.ōN®0E€ŽÕ䧘1›ź`†„·CūĆKqš°)żŽ'bU" )ŽU"€Š"ó‰/“JPfx|b6C{É'Ķ^üłÄ“J;üį#Ÿģ0„ā`łdbR(œā E” “O†”5ķz;߆‘āĪv½wņŌGi&@AYe[L«æÓ/ż#és­žNsś¢Žī‡š÷Z÷ĄTļģ ĆhöŠXI¬YŹ¢½oVµxI2«…Už“Œ/C”VwyÄC?`—-ż ?Ä=<½ „LJ…“¼C©0ø@‚żĮÕS#z1pjČ,Œõ3ÅcÖe‡ČŽžģŠÓ&ūĆG5“Ɣ~ˆƒUCĆ« 4Å»&P@hĆTCĆŠ*A5;Cč°Ł,ē%”“Ū5Q–Œ`ˆŅē.xŠē.[zBƽWȤR8É;TŠƒ Ģ*Žą¶ćĶQ½=~f\"ń9p»v~2š‘ŒiĒ+vy¦w0}~¼b—=°1"𻵀’ż™Q ,dP¶ń ŁtõŠ’Łfõ¦ O٦óŽļŁĘŸ1F¶»=Ļ6»ķq€&Ū †­„ &{§tѐd›žŅŚēyQ\•yZWā,™Ķ^ēÅ_źĻŹżĶF¤szKތĖ>Ķ%Žb}‡ŌRö­Ź Ćž[T q,o($fŚ”„žDū—¼:dhžł¶Čcq ļÅ8›Ó“Y!x¬6Né‹éW]óÓ<ā©8bū —Öņæ\šKG•DņFW‚•·|¹ńŃĮē©HóģĪÄV*čISfB¹źG‘ņJĘSČ hž9*ČUp&,‚bzL¬Åež6æEšŃ#(Ō3§ĆG72`tōˆŒ‰Ń±?ŠĶ‡3Ņ+<Ō3§ĆČz€€é ć"Dm/)’Ļ­Äė"_œ/uE:4_±§±łŹ®§tŖī*mĖÄmóØüźļ"ŖōŽkŚ‰ŻŽ›n½½WōŅ׊”ż¶>1$7?ӆóę§ß[[~”ŻźźwæŃ’io°w¼( ØłcéÜ|+lEy«2Eos/—²C7KDlfaĮÆæ–¢ś•¾ū¼(ų{Ŗž¶^UĖņ?—óåQ&ŖcL5OEvLĒĮGņ±ĻÕcäE'Ażę˜×UēџäOĒ{QŹĖ²A*>U‚^ĶŅīzOĖT,d6—“źŲū灨%‰tõ×{źĒćgĻŌæņ9zļ}ÉŖ¢“¾Ōź”Ēm×9)™‰‰#ó×ĶM¾+ōž«æą?Ģ~┑‘A©äž®%ģµ¾²|žfÅk0Ķ‹Õźö²—z/²€FĀ<ū“)*zįXŹo9<;{+įæ»+ü’ī?~SĪV}ųw²żµƒæ)vŖ%4łĮ³ĒÕy­ēÕG60(UF'_q*oE–Ŗ UŖY‹Œ'y¬ŒŲétVĒŗŚ:&EVc$,š±$m~GCØüŽG1 ›ŖĮŌ¦PćÉm);}“UEyę®.:m޲o…fĶŲČö‚<åwt“wb]!LŠ“ņĖ[0ó®³'Čzn•Õ«ÕŌ֗§FĖ€¹nóņ.Į͹zµŚč±yoė+&é/"K©šC‘–ÆUzŗŠ{Iōžå_ »Ž¹0ĄūzėW?˜j ‹g(]”€»÷-,†PŽ©ĀXo ƒ2‹²¼ 'ÉfB½¾\UŗPbŽG2Š.ĮģWƾ¦ŖäńŲb?’”²¢ŲQbUuŌVĖ)"ŖLeńœ2¾d/˜IŹ EĄCōؚ.Ó~ŒŠZ Ói™Ć©†V_ŲM¤ˆ$‰Jd§A̓­.¼¼›47Į sō(±|I]Åj•MĪļdć«šW¢ £€iv,ėRP»}qu}Ģf<–}€TrŹī£Ü¼ź  Įs|Ź ]g„VšWŻn¾śs8ü²Šąūąø>_W< ż©Qhٳq”Äxd?ī°adÄp8¤šóžŖ‹V åjƵr€øÅ< ėßl Å(’P‡G`€ēŠu$>ĘĒę\…dćévų—”¦Ź ‹ZŸ'’%?§ !g<ģNś!<92”„f÷ĮЦ•¤É‹5Č’E,½BŽhRWfīĀ ­ĢąžćFµs4eŚmd”± ė ,śóNöm0Ә-Uw4©§7|‚\¤Ę ÆK‘£Qöƒ,ōPž$Ā³å}}G3kĪĖ mĪ'¬YŻŃę›,ņ™3uG3WsÆžl™Ww4„¹T†~¬Ö…ė’żž±YŲČ"nĘń»ībüžŠröē”®ŁwŒžX#Ų…©§"Õ÷£f~2§®’^ƓwȜ°Ė™ŗ*[ņ<į1£ćŌ©lŻīŁaµā½ŗFŻŠ±>ש]Głg‹sz8× Ģ"]Č’x'>cѰD‚RŸQłžēÓ£BCEęTHL4Ą4†˜Ō¢…1ŤˆūS›³„˜ č“˜čsc1MŽŠ“1Ӆl?ZŚYLԢީ„ dæa7’µ([J ŽæV’i戄45"JGC:x48F›¤ęĒŌ‘"ī·Mjs¶=€€V}n,„ÉQQZ2¦BbŅkĘqrŚULzłØrŖØcüø› »¬-Å” %„æa,Ŗ ŅQ²@‡„u„vsų–ŽE2Ŗ°*ź>…Õem),(~-,ż caMŽÖ:ŗÅ ²Ų’Ū½Åj ¹Ł"ž oīš$ר[·]@8uÖ|m@+6MbUS6ŒX#»רķ„ģrP*Uv(8 ŁM˜•ģźČ£%ƞ¾Ze Š9$|ƒ*Śč ęq692:ŒÉT±õ7½¬Ćh72õJZLtA `8čųŖ¾baS$¤bl!5ė”–%ū/„«åŠ£N|hź> į.kŪ¹$~…jśC}Ć|dztō$ˆ9Ö¹^TS֮ª󏩬š»ĒvėmKiA `8hmU_1× )u !¤ Žz_Fa»¼Ķ~”qėŻ†¾½Kw-§3·.w`4źj·žÖ€bw’“ŖZ·–Psŗnżöƒ:Ƌv~=æćq)09äJė«ŽÕ*9)—•Õ Į±ŗ›‹āg¼qŻ‚×XUrƃv#Ųźk“~@KgŁįĶė­ŠŅ^mOéK0c‰ÕVxÓŗÄź%wYcUē8śÉ\j•5XOā²[Åé!oĮĄś—=ŲźˆT`«õKø~ŗ2ø«“n‘ŻĆõŠ™ĄU§ūˆŻję×KģbąV˱ÜĒ.®ūŲEĄÕGō{JdĶӘ=Uf(Ģ*„ĮMķ³* š„ģ 3ŠŌžājjŸ˜Q¦v“ŹS~^-ͲĒģ+?ƒ0«Ų€›Śf/ł¾ņ3³ūüŒŽgłŁ fĒł„™‡įćŁ"ö{igaØgųŲ!A«®¤eRTŁ’ŹQ¼auXęt•ž"§‰vł»3ŁżdĄ§j:NÆ=ƒœ—7ģUތa’Š ŲžDʙżėų’)*ę?܉l§÷ö¾@Ęæ~¤UZacāó2Ž‚Øˆéüó ĢūŁvČŚ;Ė\ HNµ‚°D*Č[°Ķ%ę *•Ó²9яgiv…”H†©°MŠę¢|8„U[‡8/śŃ”_°‘J“ˆMåÅw)*Ÿī…[tm3ꔓˆóā^hčÅ©hēAzM^‹@Ö|§ E¬'ÆE°' Åµõ‰ö…:Ŧ^Uź} ½­•­”ÖY²ˆ\pąŠ«1r‚>UŸ­¤ÖŚ:‡ip`} *’Ö×\ŠÖÆāĀś2^ļø­ÆR»$½?ś|¶ žö&“žµzZĶ|бf¼T?j 4t >hzIn| g} DÕ iļ:@Ÿ1ĻV:č.lFŽPąŒāƒ†Ž8ņJ ö‚ęQ[Ū¹FhhŸ”›ŁŌõ­XŲT ÷†nĘņFĶÉŃĢŖCo4Ś€&©ihxP;ó¬ Ø7¦” ¬7¼ićŃžFT»±Śf6‚6°Ļamm¬mĆĘÜZcy£ęäŖŻpēFŚ±µįŖŻš  ķĘŲŚpÕn8ֆ>Ÿ–ć’UݧR—„C…< ˜u;TÕ‰æŽś`OŌż©<Ń"ōD»3åČmMą–¢5^1×Ų¶pØhŠ ń¾D«Źc /‡ŹĪQ”rܒ@ŗŗt„ćMČŗ@¼2‡.ēĄūӟ6-9ż‰W§e¬rÜĮ=Ó'dmŅ4õ‰ńēžéāĻéé»w}ŗžģč¶npzśÄībŸ®?;ś„łs2śŌ ‹+Q(Vƒś²ŽĒbŠĻ@c+ńÕ:s0nįĄ b#¹”!uC­Wnh«; ƒtø¾­ü„ÜŽ9H.ą ŽDėÉ cØ# ĪI|VŽÄæųq¤U›ü€Ü” Ö䡎”gśS„gØ3Įŗ“ķ9bG^¦ėĢ®2Q„Ą•‰v™®3»ŹD9sbŹÄ޹Lי+e"7jNL™Ų—é:s„L¤3§”Ģ šæó*Ō—õæńVŻ×ɎMÉÉ~U¼ŌŽŪ1|ŠŠq²ćđV:@y…ÕøŠÕ|”g^  xČĮ±JrĀźÅ!Rs›Š#Æ|iŃŖ†žy…UćĄn“OśŅ£cØ'±Š“ė'"½ŚMĀȩ̄¢I”'÷F“šŁņ)hyōÕ^hzöՔ4‰ōä^hźÉIhņo%Ļ䵑ÅŅ%ØŲ#]¢—­LG— _ī‘.Ń«V¦”K`Y¾'ŗt±heŗśrOtébĶŹøŗüIˆON˾§Ėz`!2ŽNĖ&B.F#؟kūWd–ķÄžUȄŲóśėųåi cŒ'WöB­‚QžšąĄ m!8zrĀ‚Ēąs!§ŚŃBČwĖ”|p~08Ńnj;¼9ĶΚĪ 'Łķ‚ś½Č¢Õ{ņ„Æū!)¢ųš¹HĀ Õw,)ćų˜)§ĢxP¤™™W~E™%Œ',’ņTVZź;ϲtĮ‚2Ė„¼¶R°ds݉„É»³Ć¼Č$—cF8®%!&o­”7|ØČ꫊{²³ųĄž»ьqV‘ˆr}Æ”Évšā4’īŠEÆÉę…i$ œü$ m+\Źų’˜, 'ßCĪY·KŠSļ ĪX·Ō óÕ­łøčY@¼°!YŠu÷·g±²J'Y“™,Ą=‹±“…‹ž…‡dīYŒ,\ō,\&‹żķYųJą§LŁ>åĖ&O€Ÿ0µŪ¾l$¶½ķÓ½ģ©ĄOwą9A½|%†õœ€ī;@¾xfłšK»nōĮ‹«nCßCķZXØķÆ,ziOÅĮƒlm攟 ,“§é 2H§‹ =ŽIąēŸY= Ś&€ŸE\'ƒ¾ēŪčl÷+«g@ŪڽN¶v_KŹ:č”oi@™£•“Æ1)ą?Į?xZŁ&\ø™Ųļ™N¶Ń ŲźjžW«Æxø˜Č·“śšüÉ6põ{“?Y£„~åhŒųĮ+¬ģV·ŁØ¼ŗj—•m6²ŪŻnU›-ķæ­Ż×€²Ī޶’Ź­  } H“bžzT—ō? @·u0éH—uRDc-ÆĘ<[¾ĶÄĮD£­å×G”}övŠQŁ£= ŻIą½ģÖ;PlRxūŽ[Kl$¶¾õžō³yÖ_Kµ°)ĮWBØ-ŅJ Ó1IįgĮŃ„tIļˆ8(ˆŒ ķNņl÷‚­Ż×²ĪŽŹ­, }  Ğl{ņ—Õ!öÄąŻŽō²^ĆŚŽö¬.{*š)C{ŪÆj ķé”aeöxaåqL:?ÆĶžń 6 ü¬¶Ÿ›`##°łķˆ`OfžŸt0()4F‚¦_I”¶H++¬¼Ž[•¬žcŠĖ vFµ]’¬N ‰Ķݟak»‚čū‡Ó"Ȁ<°ūSgÆFVvŚĖģŠ2Ź£ÅČŚ÷– "“įŖ:p§\b™‰ Ź# FŚā˜i°Ņ>eśŻgź7Ļśģō#}Cy°¶CćIU ©Ć@“IV÷«\,¤?©o9„Mޤ3I!ͶśfØņ®3‰DE„”!ø7{a p÷øÅps³syU÷˜”¦vŒY NOKłQ©ž›qštŖłBŸŃč(õn÷Žõng48R €“†įļŃ044ó8­DGĖā>©Ņź0§yG­UōŌusIF‰w›g·½żāŻĘgllóė6‰nģńā c ķ²›Z„ļI j)ŗÓt£÷Fųéµ9e£„»Õ7n„»•ŠÜk+n’/ÜÜ=ņEböU[!0ėbDļōSŒč]pn‹«js&ŒŠx|t‘²Ż?NД픆! ĀrUŖ MŽWŖ€Q#ókŌJxՁ^ņOµ)ßiž©ĻŠš‘óQ*īń‹üÓCirołƒœ” 7y’ŃØżä źŖæŠĢOb$ŪŪ_hęē÷ź dP—S՛čõ“y„=՛č„5żf ‡/ōŗg6}oĻĀr˜Ł½ WR¬—TłčGŌ«Šœ&„Ղ7÷IÉ5!„é>9č_ōq}›/ąé 7z¢į°w[OéÅŽ^Ŗ³jĮ³Ū)°j¾¬ź˜žNŚīÕY„aȽUgäjb mņ¾‰%0j?Õµ^½Շ^ėM˜NP³=ÅhDBJĒ}r ć>N”ćDį:©nō5ća³sŲĶxJ}¤6D·OŒ§D>Ŗ;ēž#XLŖgéó”q==ĪŅĒĖ>F$Žą×£-Pć?1Śā:(;y^ yõ(!÷Łiõ$ĒŁ©õ¼'ēŁÉ=©JŽżž‚g§~^šżd'|-q°ń{%ī ŗ‡ģd½RāćW>O³āģ&Oć²Ńlö&ĶžZ.x’~¬7“]ŅSĶ'Ńb‹…ŒįęGµ²ž÷€`•ŅĪō³ožyšPK i5PĻÓ=cĶ—: briannesbitt-Carbon-f10e22c/src/Carbon/CarbonInterface.phpUT÷Hƒ^ķ½żzŪʱ0ž®Æ«ē՗ś¶Dmœ(’«Ē’\I>®ēQ “ €–•Ŗwõ^ĮļŹ~;3»‹€ųPt*žžŲ&ŁłÜłė÷“į䫯6’ü篬?[—C7“īȱğ;ˆ,`ECĒ:°ƒkß_õ>Ś7ΆxļōÖ¬×ö¬S'¼v£Čśė5üóOüӏ6zžų…|ō„  Įt4²zžä.po†‘e{}käö/Cz?Ū‘ė{]k2rlńŻ'×¹Å÷^^(Ä/Ś‘uk‡Vß £Ą½žFNßŗu£”ųEąśÓ ēˆśˆģęWž=vB¾"å/_}5šF~8 œæą?ķČ9ö"'ųdāo.ݱ“ü×ńx<ģėQśkxu †H~żOߓß{°Ūßn¦cĒ‹Ž>÷œ PKæž-ō½ G°oäž?w#§O+qų汐Š«¶•Ø€³ōW®Ū_ķiä÷żžućxN`ē®ļ¬_…“&~č–ŠńėÆJt?Lāѝ…1še~Vī;(ūÜqč—yTP Ė<Ų·ļŹ<6źPj\׊TęÉŠéł^æĢ^PŽhx°<ÜHčVŁć‰Åö”Į…õø^ĻA³{빟­£‰ßĖ’žwc äx7#7ŚwgƒwŽó‘%@Bę”[€čz֍R”pčŃ+V€}}8Ÿ\“œśČIn€®7Ć)ŚN>1į“ęS“F~Ļ9œź”„O½iˆéآѬ×W—Ē'G„ŁöšÉ9źUWzƒSŁ’ŚĘĀE.ōr•Æ4–³óHØ-MŸ/żx™o™ Įųl ~žōfh=Ū-ƒ‚ś\ęXąĀ{įO0¢ī‰e÷z~ŠżŒ|2:ņI+°…­YœŽ/ĪŖāՇ©‰—Y±øvŸ?/ƒƒŲ4šNŸ¾ļ„–-ü’ĮąŲņĀĪķśĪĄžŽ"ŲĄÆ_ųĘ„ Ö B'ŹØž¦!pÓ~[KĀ“r³?¶Ž^”ĒīżÓ°UģĘrŒźŲ½^6n¹Ų qŒÜhĻ£6^ŅOF |ĄM­$ |)T~gD‚>b·(6ĮĀCXÉDd=pģ~Ī”Ą;‡oYŲ}^L=|MĻĻå×v4 ą‡JŲ‰Ż"vŪ„†š/Ų}@ŗ n0÷2ϦbJ_’ęłÖ6ĶėŽt|-öąB¢0łwńK±#‹ģ ‚%@ģģ‰ˆ’Œ =VŸ/F€ƒE‚1ÜøŸϚݵ^³¾Ø-h9q·ļ:c¼žŲć'›O&ć'Vgߋ„_Ŗ  ń¾ńĆ(žą­ō Ä4¶ƒY¢ĻĘśķD<†ś“żõ›“²XOaōjX«ia?v‡OÅŖŲė¬é/įnC°­næVMŃI|fēĆįešŖĶŠ”ųŒ|1šEķę`c¶ސe 'O†šh“Ņ#“±ĖXžÆßs!Ī÷ÉvGŻĆąŸŽßŲŽĶT8]eØÅż×!+ÉrIÉž /±–õÉ ī–›f˜™yU:”Š“æ^ZQ'¬'E»LĎYQü+£‹M‚i­jƒÜ)ėź‹cI}hrgü7Ļ’§ų°­ā”U|°¢mŌ6Pµó“¬óŅf› Ÿg¹‘Ÿd”…Ź8Š&€ÕÆ6P(‹Į)ŗālž}E nF ±˜6?[ń®± #›ŖŠžŠu3øūü8’é°Z’šŠm”ĆEē^ÅĆvyb’éõÄt·m­[„¦Š¾Ó³ū¼1?<ŗ!°iÄŹ`ŌÓŽ4`S…‘[%ś;žēNłÖo<“‰Į–ĄźŚ÷G ¬ś!oT|„”Œ0ß#“?‰u4Äm£@ŖļöģČŗbݜ:°„^\v­=˱/H nݰĪøóāÜ:½! •E fā`1ĪņŸ5°žF=^œ‹°~{y㌒˜qn4q/‘M(AąŽØgDʆ ä”"ēG‚”YXŠM†5#^c'ś}õNZĶÜšmŌ묱āuj¦“,–5“QŻ“87¬Ī>Ą&˜™$ž&~·;“ģĄ±01jc­5xTĢJĻ|j<ß[OPT Ó’Ŗˆ© bČJ1ćF%‘SīB•W#8øK® ČŚrSøžéƒÄ¬©Q…$āxåp£ąüāpūåq»œ:!/rÅøE4^9äŽ9}½bänÕx%y7œ¼Ģ›Ć;9^9ģ^īBµn€ć•“Vyō·(Ī…r¼²ŲŲĄu>P`Gžq’a&«÷žÖū{2˜W`~µ¾³ąkEŲŃÉ>ķźć²|Źķ4lXĒ„iMģ0tś] ’raŒ|±ŻZ™ā,aØåh­±4#½<ŅČE©j=ū]ļSē3'Ņ x[ž@ /GĮk;\6 |R0ˆ¶,ŽPšXüA é]¤”˜¤Ö5F¤š&CßĖŹ’Q€†Rž0”C±Ü±ŁIiCšAģäou/'-ƒŅŗfˆss“ÉJJ;-`$Ė…?ŚH%§ Nµæ–ą±×ƒŲһȵÄ$µ®‘0"Ķ€7Y ü^ŽL–Œ““ņ€”PĪ/—©”5Ź~S‘sH­œĄ’ÄÖ5F“Y0's”'ŹĢŅQ&S… 0š L±_“ŃPb’ƍ¤xqF“$¶®Ń0¢Ķ‚9 =QŽh–Ž 4š*TŠJÓ |6Ÿ¬üJ£Æ=?Ōrd³Č®ģt7Cqż5‡ w>ōÕĀ£«²ś,#=r ŖH6©k1ś²L*d™ʤxpēCæ©I-=õLJ©d<.tĘĘ˦ŠÅ‡5āR„ą Ź“d4•§A*Šß)Į‘ƒr4ØŒŹ†*Ĉ7ź¤Dņ‘ņj“|t "U¢ćü˜Žŗčm¦L‚}˜P?Q¼ømf’ŲŚŃ~>“Y0—|¢BĢŁØ °*Ąh(cšÉjŹŹÓ~«Q$/l½IQ[×lńęAģF>RŽp–“œJtŠvReösXOłķ¤¾Oš@»IMuS–ݾ¤ ®æ™dC {µ—TOUŁJ.!5r'YD¬ƒ©ĖdŽaµ øŽ³ņÉMŽiį‰fs1żJ˜Bl_8^Y™QdĒ1t¢÷ܬl GVVrćˆXf…ĢÄQ^]Əä"Œ¦ ’P#‹›™­!ŁŗŁ4Aī¶.džĮ*uQäʐE!źCnF¶‚ā&Ÿś(bŃ·EL=˜¹SĒ…ŲKU¾Ö'žę8¶o1 p”%ŪĒQ&Ę4Įr^E,ćŖ–|˜¶ˆeė~E3,±°hūz)öš`¹½lˆ„Ģźi[/y°l[/aIµ°2é¢ŪMP]Č.§1Ŗ8'13¶eTŪßńš(óDŚ>ŖlŒm[W»Tyۚ@žĢBęÕ8Ÿ§Ŗ‹™W›¢Š ĄĢŲ–Q]Ą¼Ź¢‹™WQm{^eÓÕöēU^T[W›¢j÷ūés ė;k»‘ģ÷ūtīdu# µēO½Hž Öš˜Ī4„ā8t,+{ÓežžęŠĄZŚh€ź\ęQGsLĆé5;·/¦× 嶤•Ū@?·•næs£įŁ'ńåČæmŹyNݦ.¾ÄĢr>OFnĻFw–=‚Ņę™Ā9D&hl*šźŹĻBвNyqZ'‘¬ņŖn>œŖ‡ņņ§‹Čc_?øvū}Ē«ha&•—H.‰U"Ę“1.™-ĘĘźÉ*3N+«£€(³SŸgf\n;3Øl67.…qÉl¹ķŒMfng\ņ‚ĻņŚ›¼™jgœ2[^;c•ŁCŚŁLęZÓm0( å..čĄ{CЊ­(‘ĢƲcgē7(ĻBł­ˆąä·²f~kżfÜȲź7×ī©äÜÉÖ0®M9»ÄX-„•JN‰Õ0!VķćÜČ.ČĘj­•œ;YV+«źĘ°KmAvV‹NN©±ZZ=q3»ģ¶Ęåi/‰­1ImŁmKjK`kŒŚe¶5ĪķŲ£Ō–ŁÖ8„ö ¶–ŗ±Ōų0uŪÅ/, Į[ۊĶČøÄIJ}gē5hĪyM$šņZ)?+ƅR¤ļ>±äōąŻ“Å)6o=k+Vló:‹Z°sŌb‘Ü–4“’ÓĆĖmšfīP5ä7śGtĮcÖāӖįż$®Uń^¹9޾ĶB9®©`äøö\˜9.“cö>ƒŽĖĢŁÅé8o­h+ÖńdŹ+‹v°s“c±×T“ ćÜĒ0u£‹å Šøz³ČÉn|µq8{q†i.dę=Ķč ē½"„•SĮ6xÆõžqŗy`½g+øl-Jļy’ĄzĻÉūöõ>uӌg¾Æ-Rļ9k÷[¦ŽĻ\čaRfŽ“Ž/œ÷Š”vęūxÆõž}¾0½og¾oSļŁēūÓūvęū¶ōž UŚ\ӎņsčb¾R VŅɑõ>¹V¾+g‘|7č`ć»éąpóŻŌw®$2n}gK¼ŅücŹ$«klYqܒć¶nBŁ$WפøUŃęJ([œĶUN—HȎ!«Œßź*ēpKoqvW—T6éń[^]…“¹̾ŪcČ~Y2Ū搎—b{ Ņ["Ūć¼¼„ŅKŲSÖŁŁēĶą%”^Āö˜¤÷š¶Gv\¾|PȞŗøøo§ +6,Õˆ3ĄĪtŠ£E3]ÓĮČteģL753¢ĮÉt®m¤” ßÅøZ¦ĄµĖg·­šŹ(¶ZĘÄ«„Rl\±ŒÅˆ­ŽzĒw=ŽŁŽŖz9ģ¢[œÅÕ#•QtĢ6WŪ›ćŒb,”č’VĒćŒ/“Õq…0–PtI«ćݲXgüb E[ߕ¹e±:ĪąÅŠ.¶:>Ń=°ÕQSmę[Ō{‘Y[ƒ[ʅGź’Ķza›ćxēq”×T“p«€›ć±ŽóņįÕq®Ķ"‘ÉXɧŽpķćŁeĘk%¼d2ʬŽń* c!ŸEŁY½E“±’Æ„UõiŲå¶([«G(£Üx­­¦ļĘWĢgłķł¼÷ĮķGnĖooĢ'½jo|}–ŪŽ+ś,…½ńÉm¹ķQnkoŸŚų'ßVŌš_čā‚’ ž¤ I ė¾žē B ęyLN;Ļ =gŪģ2ė9מPŅɟRQI(\[wv©1[ 3ü‹—ZŹÖX6» ³µš«'B“ÜŖ:7ģ’[˜½Õ¤”?Ÿā!$—²9'üK°9ŽtŠ%°9É} 6Ē›MńĄ6Ƕé]v›ćO¦x`›c“ܲŪ.ÅŁÜ;ĒłČ^a÷€..X4“Rač`Żā³s“g‘Ü–4“Ra——ŪR/śœÕŗ•n/¶2ŗ$ƒ?'Ia×Vž+ _l…tvž›JĪ]%żÜ±G¬•ŃX*sEīŲߌ'•Éąāz…Ŗ\Ր ĀĪs–Š\õÉąāy…j\e}ć.}Gßz‘;ź¬8^’,å;Ė›ŽF] E hŠü Š Īhx–ķY®ą‰}=r¬ 8ü±Õ›# £Q "nÜOŽg‰±­N‚„®X\ :,10a¬É\_ĢrģŽ0Į ųNųmwÖ?’āv–mIܐƪl’LāŲž¹ŖĆ-Ęž™xžĄöĻÅó–ķŸxĆ5 ü”쟱6K%ęšöĻX»BꚆĆČs– ĢõÉą_’YxnŚ?üR×’˜ ū7ÄĶb’¬ė’ƒŁ?’śß¦ż³®’f’üė+ö’„®’­Ū?kߗ¦]vj™>kĻ—rvj™ +§›v×i@s5bN[g6sü,ŹÖg͜m…gģ^¶ß°W\Ķŝ±sY¼øu-«¹ 2rś¢aø°×oŹis5GŽ|‘.łXČI¾ -œµ’ę~£N§µģ›µ÷¦²ļ¢¾›µlƒ•Ė:œÖƟĖʶ›r9¶läļ6}a–\0ģš$ŪŠŖYūEļ7éĖ]ĖØY{Eė;Uł' µl‚•ĒMśq×EŸ’¤¹!c‹^0ōĀ,˜`4е”=³ęš4Ė–ŖeЬł;e2„j™+—›eIÕƟ}•nŹåŲ¦‘_č*\0Œš$Ūtwķ{ѐõü .ps 㱟œPŽ)'Ÿqo½(>›°Ÿ–5å³±³F~|”ēdČscMĀmhŪ¬÷ƒß)ØeݬwƒK^Øe¬¼n|   ¼Ż)xŪøā §•/ŹĘ# +×"nhēļ›7~vgä€?»g4°š+—Į<Åevϼ)—cŪFn|”ž9rĮ0l’lÓųgķŃ¦Õ‹ź…Š8ėŽ–+KT/ ÅÉé¦õ†PĄ|ī՜ÓF,8ņEž{I>˜į4)߆ĪŚ©yõZ6ĪŚ©diōZ&ĀŹģę5ĻŠĄÄģ’Å̫ٹf £„/ŹĪ# Ce̐¦ŹÖŌ½y³ĒŚ9Ŗl ŻĖwq¬ŪÉĘļęķŃĄĀļņ}«§§"_¾@ƒ7x‘ŹN%I×µł@hE·[ƒ‘o ś'ÓsCW`!XеKĮ–©×‹čŪ'ųĪ“|öœĆļ(/E¾–ī>°0q"M T¼DæØ+ņQ±p"ę~+‰zVuPõ*ŃQ Żlž×Ā·Et{Ž;bf®u `¶ˆ*#cŪBmˆN[axtöŠĪō!½øČX<hł²hĮ ó ©†/Ÿ¢·‰/˜%3{ Ģ’ WĘ9¤-\ю »ŠĻ)²>Č6jgĮ·…xQ­Š€ö˜'‡š+d±=ę‘Q[ĪE²=lĮ™Y[` ˜r²µ%LŃ~0Ńz!6‡yĒķL”ķ¾Ŗ"Šs%ц-ęŅQ Ż…ķ\” ÉĢÜ‹dAu1;—FؒĻOW°įóÓ}¤–¶.ņ.@ķņ„ŃĀ^ Ÿ’г){«掀—ĮE;.dłf’֐E[’×µ0“Č»ĖķĢ$źŽ|ū3I[d aHƒ&) ¤"Ā šI" ĘÉĢąćdCv3ICdåb®OŅ8¬°p1×GJmł%ź`“e>y RäR_(•Ŗj4o©/¤¦2ŅŁüƬś­#MĖ>+£ —}V„™˜Ü.Āh]*3§żE^e©“3½ÄYRmO/­ŃfZ$öÅæˆ”ŠēqžybiŠ1)3‹ Œ”[6ö¶ˆ-{PBļö>2»µ„ć™YŻž“Ųt&’/ ž½O%^ŠŽ§!Āx:ĀĖą¢Ó.d±÷iˆ,Ś’ŗÕ×¾ ŖnķL%ś‚%!Ašf‘<ŲM³ˆ”Ŗs)|»ƒ2³øĄ@±e›OŚĆV TÕ\Sœ€p[ Ķ& 7'ę”hс‰"¹TŌ¤ł‰"rź`Ķaķc­ĀŒ¬žž`ʘežici›qw޶癸KE[óŒŃ0„åy¦EZ¤ÅĖ…yž)&§֋˜gšcMVĖŹźB«eĒøõy¦:ĘŅĘō'śA“ś£iäŗƒĮK?x5Ū^Ųł nÅō­ų‘ y±i"Ŗ0A×ON„÷8G ,^ģą8pķhlG]kUøjż¾³& Y¶5„q­Ą±ūx߉†ŸLźG~Ļ9VGāb ā%āæ¶ Ŗ‰ō kĒ oķÉÄéo¬•ąÄČ÷n˜‘É g©¢:wFv$Ōiq*”F\"N€Ø˜QB%– •øōOżŪę쨠8ā±ĆŌ &nTŠ‹ećFJ9ĪzS†TRq‰’T~TREóXņ×M{ł}æ÷Bükó+W–v‘œĻ‘1fXеžśŽ…øöČżšüźß_;7’ügüSŒl“nż üö'ą“‡ē³šxäķsĖļEŌ<_ŲÄ?'Óė‘Ū³„ŸFÖéŁÕ?ĪĻ®_¾¼ŻŚžĖģ3{{qyuzö~ßÉųżģōčźp’żÕ»³óĆ xčiĘC—ļĪ’moe¶1ņBčū>ŚC)Uś1“·o.č×,¦¾;:ÆĄcY¼4ūū[1‡);Ź`śŃ’$Ą=Ėz ēH“ѵū3=/€l³§ó””Jh§4;f> "=6§æēĖ÷äųąü, _CØšVā…­¬„ąüåĮ×;»Ūqr”¢ŖĒ~ųdrFĢWa ėźåŁłÉž„uõ°kõ­ė½õjĻŻ ­?}8łp¹š± 9{:RžŌ8™†ˆŠuuł4K?ģvčWęnāXæMonF8G÷„[ÖĀłščåžŪח°*\\žŸžd`’~}¼Ž'Ō3p~Iø’Ō''ˆIæ÷Q8'PS»Žh uÓĢĄµŠ<9;ų”²—G—Ē'GŁ(nL3|cGĀćņ¬¾šē(Ģ ų®æpC_āŽßŽ^Oø‹‘ó2šĒĒź—Zx_œIģĂūÓŃ?Ž’³ŸßŸ¾ŽĆ_ī~5üe<ī„įŚ÷÷'žżÉÉ÷š÷‡žżį!žē{ųæū~æ’}_üįū³ūĖ÷÷ļğļğß½ĒĻ}ü_ńŸļļož½Ż}öŸūŸčēžč޾߿ææõźūūææææĆļļ/Ä#ßžēžóż?ī’żūūžóū5ͼM믤iį‹Y=½ól!K{4ŗ³†‚s½†„Ŗ“Pod‡³F‡Z¼ķÄŲ¾œ“_ČĶé§Ž“ƒ@¬ čž+ĒÜųėČ £ōˆŃ0šo…½żh÷Oś€{ō¹ē 3s’įÜŒHō—iÕ$»Ÿ5> yėøżÕ Ż‘tuM4×2,żĮĮŖĢ®O4˳ ü¶,ēŽN°žŚY0ķEN’ģś7!ÄcØ+&ųę{b‡6ORšT'ųŚæŲŪ½PĪ2pāō܁4‘æ·:Ń„xśŌæķ¬­)p0!żĄ*ŽÄCµŽS4tƘhń,ńGısńLhĶ=lµ­Äg&éŌĆjü§ąÓ½łęJōū<Ž*;Xļīśņļ|æś·°]ІwÖ$š'°ŠˆõB³ķU:žtÖf蒦†J=©¾s=½9ö~–Š!Ģ`ƒ!DÄhµ·|T¬b#cĖ1šcļ“ŲÕ÷÷ƒ›éŲń¢xŽ)?ķHÖ»^tķū£ū„\€—sč¾q„Å,]:½XėLš0]ĆĶ=糘B„„u9 Ńœē`č†aŽ D3ó11MY0Ųä­¬óמ`?łī¼åDó„+±Éąl+ńÉ+˜[¹”ÅS­+`U¹jU¹\ŽAˆHRYæÅk ˆŅ0r±āĮ‹ r” „AEcZĄ,<ŃĖD²ŒŻ‡#Ē™dټōś"³¢ ]“Ź— ś¤?žĘĆłl'#­Qæžś«ś«ÓśRS÷ö<˜ę1¼“ZPt\±g‡‘ƒ­„~„1{^˜C¼Ś1dŃe8éätź¹`įK”hŚI½ĪČAŅ/4IHż…ŻļwV”ŽĄj׌]+zjūY×Z…Öd«…QTÖ޼ŃyŖWĢlå+VÆX+@\ź9ˆ2§? kWā„›Z.W|±ĮŒüŪŹ†£å”!^]£«³ēŅJƒ²Øoųœ+”Ūeõ9½zkĻįєlšKk‹ķŻ!€äÓ (ūS1K(@°bƒą[Ŗši‘Ų   æā[øżŽż¾;ø+R eUöĖé’}££śD`˜!5²BOŒģł1iŁźŸIP˜X%nē2u†UõtŠŖßŠ§Q4 °6}Ru${†ZĶtµčĖÓtūšŖaÜ5÷·®Šßk<µ lŲ`@5 Gļ)˜Ł=5^žgŻZ„”W-AXp'vFbßtķĘ­•{B뾌zu_–'u_’Ķw=õ.„Ÿ‚±ė‰„7<¾æZćé(rań£ƒGéé&}üĻÆ0Œē Ārc'¦+D¶B±O¾ < lūʘ·*— “uSģŸĆi‘=1IHWž4Oˆ§ ™MG}Kłk (’Ž)ąĄ `»9c­Ŗha2xzƒviĖLI™*O—ŲŅ0§tŗ*\3»Æd°q§ŽŪĮŃ ²Ov3„ć\45„N¶ßYƮ’Œr»„55Ŗ„ Ī =[.Ō! œN'ŠRN?HW×@GRlģ)&:WĢ"%ę„7į¤ąTZnI¬ļķ%OeõĒócTźĆMŸ«ZH£}ćo¢˜Ä„«Gį„NdakGؙ³iąāFłAŌ ²to»2œ‚²Bi'–XµĀÉz›y(h ŚA÷*ßA¢Ł ‚“ŸŻńT°KŸŅ/°ń#ųV§ŸÄ{{Ļ•SāZžrr–Ė),²ź¤ŗžĪIČ·£J½"|GĒš]#O„#‘ė‹ +”Š*Żįpöܱå’čWÜ ·¦g¶4$5X‡¦¼u;9#6~ ķÜĻ&čHOvd Ü("¬ƒ`ņYt/ī ¹·sÖµŻ:ąåÜśäĶÄĘ! ]±„±eXĘ«•0Š;Š;k ÄŽškH£‹Jਓ©>ģĮkģĄ¼l]ß©ÅDkŽõ”ŽøšŌ @Ņ›B•6Ļņo 0øF“ĄļO{±Ū‰U0aOļ–=™>į„ŽU£Ü:ā±ž?CSyś¬p>óbŠ•'2Öś ɑcI@gĶĀ-łõŃgżµ\ĮņvļŃ øZ:Õ­ķoÖ·¾^ßy¶ŗ¦ˆæŽ~*öūņ_āŪ«ėŠ¹/"ąĪ–ēæTFQ|͉bĄ.”—iF §¬õį1 ™ßv“—wrēłāϊóÆ©=²Ž½>č©ģ…ćYō­ŠNLR Üwäé '¢ļ{µ£ĮŠĻDrWbßUˆ|‡[ŪC@Ķg®²WG ³‰hä6•4`>“™E9Ēt–UÅ몜&<©züŗ¦œG]+­k&ŹUÓ+vIUS§'Ž‹9JšC‡Ś =yøWøżlø»õ¤ NīӅaņ‘ķ­Ķ­o7_æ~Ś9žėŒ£”˜Ķ憓ĊRū™W1Ÿ3‰ĆįĄ‘1®ĖŁ#e™{0ē³B[ŒŽ»"¾“ÄF{ņ2&Ē_’üKy⨠\vż‚³ĄéͶѰŒķŸŽ 1)ž=^a®@F‘/d…b„;]?)н¦õ5ńOjѕśRˆ“’R/Ģ‘m³]@р“½9ū€;Œ²7Jś0‚øW&CŸ9IĄö žēŽž‚*d•O'£ ņÜü›4*tčœw9Ćæ9 £Ī žY ©S!‰RO2Öb^Óēo)ē¤nŌ5Ä¢S†b’h—¼Z…^y^ķŌ&½ųŒG3†ŸüÄyN}Nˆuäciˆ6ü~A„b?’ńį?‡šMö®8’ééžaė½§/_‚ßį&6¼ :I,óSƒÜ±;¢fćRŅĮRl¹i¶ ūt8U—9u˜Pu#ų2¶3c«ąÆæč ˜7Ā›ńœĻ‘µ3 ÷¤Ą-¹ŽGkE“poss2œlxN“9¶=±‘Łt¼M˜auŲ b6ÄÅSY*Xg &ü5¤,9Ɖ™aG‘Ż:śXNåōÄ ĪcdĖ©©QśĆŲæ9ā $”ģÄ(W;“V®Ö¬’Gż®AzBĒa Ģł<ńƒ(õƍ]Ńü|õ ڽ%~ĶaQ{(0~£ ĪJ–ųA bCöŻä.Å~Jƒ͹§Ė•—ØĪŃ’ e#L}`‡ ł€m;ĶåøĦŻå¼4>nYpUEåy­Z…z$' ۂŧ9ą1½@yŚvĮŌ”˜šW`J†0%ä ĮüK² Ģ…`„˜“äĮ ŗ. œ<ĒÉe{|sD0Ęѓ„©Xg–”ŠŲqL†®Čj’xiR{#śD.…f!J~¤©ó§yÅĆ)XjŌ­üU1#óU|ē„Fɔ~ŗogd?ä< Œ(ņ”ōćIV•ĻšÕoØ$š¼¼ĒŹę•Ī"¤kÜ{ÓF@ē+`ō7Ōł)żC*ż£(ŃXŪm¦Ķž6 a{Ż XŁ`µAĒ2Ō†˜»Q^E[BéĀ„šCSŹņ`M Zž“d]"e¼X’Ęģ›s“«8WX±VžxJw-™ ZHÉ{ ”ĶS-)ݛѹ’²¢ ŁĪŠŗkæBw¹xdr|q¦“;) œÉHų @Rī q5«³–ēæĢį{‘@įÓHØL‚Īó»ž»Ž¼„CIónu`)3Ką#’*¦4•’ ķėĖ‹®ųų’ך’ā?NŌŪ°Ęv/š×Uą¬#źė; Wé®ŲŽ{Ž©ā»Ę)“Y7ž‡°˜€Ÿ>É’pq7ųŽŻ‡<ŌyчĖ8ŃE’ŻŒ¢‘ž2ęNOLÜąĒ?w'x?“Yé{…–ÕÕ2śĪZu¼Õn‚h®ż(šŽI‰J‰}āŌ¾™Ÿ ›­^,S&Ń’ß0ϾFJgt‚ŠŽ“» įĒ#>*@”dĶ |: [ÜŹZQ–cłĀ’ŖģŚ>n^H’€R§ķ= IQšBmaęZRĶŪ ÅnyƉc–Œ/Ļäźæ4ĻšÕ“{S…s 9ćwbTøø‹ƒQÜ7ļȍŠ~.7wNB6žxÖŪ˃R*3C>+I ƒ¦Öc·ļ¹7ü]ōõØÉüɈV"KķĮlŹĮc@yiŹbø®īč8 W=ø~2w 4(Kf^®Ē’˜Öīüɳ*-‚P €aāō_Æ2wH‡R=©|Ju1A¹•%fšŸœh3TéøИ§zņ¶f|ŒĒx‚>tŁĘ#ŹØ@ä˜Å/Ķ(ülšŽ,.uė5Ÿ¤ōżJ¼ė–Ģ{š9 T ^¶,Eß~ļŲ£[Ȉ›Č ŌkÖŌ9aˆ)ūE©Žź<\²_]:(uŅ‘VHŗŖš½¶%M©ā˜žBÖkęČ.ÉŅbł Xūaņ…DęW×@Hęu—’ķõ‘¤e&•.ĘĮu)y=±0—QkFiö\ł·}cdŠø,i|×éIó€šØ,*HAƒR D%škłP4Åč¤+@€ŗ‚ ’«šM2' ”fÕ»•ukĪMķŽ5ŗM&ƒĪq”LNŠü±””ŌO\^³6¬'¼'©ųŽĻźŗōw/¬_8 ģvÕ5hńHmØź‰;H' Ä*ŃYcÕµ~V÷ĢsĶĶ@Ÿ›"‰ĒŖ8ęrg\ĆOßÅ5®åĖŠpż\ŻNÄkčµ&„Œ PŠ4.Ę}ZĶ58īX(Įżn’¼-«JR šŽł(¤4&)yÄEę¬,ĀüO³Ā åą×.­P |żā „Ą7)ĻPj€Ö 8Ģ’üŚN‰‡Z/ŖDäT&¢jķ’ØĮ•Å•šØS1Šł˜)ØE„1OŲמ'‡…°ęÕ0ęŖ×˘’i«¢Fż‘Yknš Ńø*ĒüOŻŽł–Ź%†a©żXäמ(EÕA’»ˆT ޲!Ł»T¼Æ‰-"Å ŁĻ’ׄ ޽CØ É@öf”Źpż1ęÓDˆ:ņÓb”Ā鏔äż+ą —ƒMčÄø*läń_ĒöD÷[6Ē)7“UŠŻFSs6vĆ©ź#§ÓœF®°1¹yœā12…wķ59œ. ž8_{PMœÕć1—ĆG~gņ{”kä£ rd°˜…ó‘ż9ģg]Mē›"f_šŖł£'žÅhf&CA Ēčę —ßI¶p² gE:9Ÿę¼ągx˜’Øą³lfcšæ¦v€ł:<6yüwÉ.6CŽ÷Ģ)ŚW!E½Kč;PœĖ†$²Kß²” ¤ Ä‘.׎ĒĀöėpvxgÜėĄ\'ģŖė”qŖLø…’ŗ““`Ī{Ŗ“rl<½Teę×_(!P׋³ź _Bżœ-w¼ķ†G­‡ó3óāDᭈ¾BBŃ«ä›4ØG>Īį£ćÕd£jOį[ą QYĶq©Ķŗéɓthk{gļé³½ķē»»OŸ>{¶j¤ß¾A9ȳAgC…Éßnš , «]=ĄĖóćĆż÷…„ónoˆ 2õ°ŗi­9Fd±x&jGģyēFCŖىė>ĀCyŻÉ뿢„¢v~'ˆŲ_Žļś=RŅ^¢Å®ō5RŽEŗąī·6 ō“ēSip!`¶›ž'·7žĘę˜  m ’‚h½•ćp Ż` ^ƒšāĖWPGK6ą”Ń Š œ~ŒF•”ų··wrv*œ“¹}ōŪ Ä“©ķ[ p~d.©Č «\4̇—Lš śā2<×Xlj·ł‚Ć’SœR#€t‘Q9¬ņ*ø×&–A*ŌŁ1BUׇ/ōD /f45»3?5»kv?Ö쮓»Zų„ŗėoyfv7Š­Óæ-ČE"_öĮ¼āf>o#¶‘æŚŠ]„Æłk;ždŲEł‰³C/Č üžÓ†7CŃā<ø™”™ü³ęīQuē§-×f!ŽĖBܧƒÅ„X„ĆК;pźßvx]ÕĘ;£o·øW•ŲĶ ę"ŅØVʵZg±#}½Š˜ŹĘ»™—"oÜÆ^ g%Œ…c»ų94ł×æ9½č>¾3ƒĻqW&ėn^HŠó)Ģ>toĄÓ?į$ iŽø\䐗~Ź戅Óķr±k ńµ•ćōŁØėjł s”D ŁŽXŽŒóD|ī F"<_ģæĒ¬ž>Ń4ŪHGĻ6±äwĮLńĆt)ֆšž m’•ńĆŚ_ö0 ü‰—Ą#żd»¤™š³ųčÜ%A֟ū£čQīš×öäŪÅt+WČõžŃčĪ h”:%ö\’;ń „褽Č'tō»s,Ż÷Ęk‚zLyŠlūNHCp`žČ»Ż‰NT9}öĘtķ,̾IOD+‚_ŪŽĶŌ¾q¤†£“»7œ!Ćŗ •%Īś”?y|qfŽu-Ņ 5&}ˆYFą Lüd‹IÉÓ6–£+’ ߩɆcoą—a<ģõķ@®™!ņh¢Gó¦yyŖ$½ĄŌV\ÓAŃő\Q›ÄH$éģ2TW KģcĮ'˜½ŹÓDß0µ¶š6#5)É0lĖąt4ÜŪÜ ļĘß»Ūčłć;ßŪ”ģŪ„ć.1ĆyQøiųÓĆh<ś“‚æ.ĶÆxęĢ›#3{)Ėė›$¾–:8Āź90©‡äĄ|ÖYS~ÜO }VgöвÓ„ą/żćŠ?7FĻ×p½ĶŅuć~ŹłéŒą–Ü‘}ƒ©O0Ž8A.®9e30MÕ­+5©ĄÉ[ą±’g ćĖ!½š2ÄÕŠäƒdrūß?øžšøÜHXŲJĀ{-¶ĢGAą…¦Ų·ń-jt¶p¾±o‘Ųžś×ø¦ Š‘⯦[ ÄW!˹’ÜQć–ņ‚Ф„S˜ć)šŒÕ:u=QodXAh—˜¬ ż#O”.h¢ūp &¶—ń¼¦’īår^Eń{ERRų”ƽłŽW–¦äĪ–µdŖ‘AF±r€Æ3vūb5Żō|Ÿ®„4ž)O\ØH½͐Ą?0€ģ#ż(ŗž &GęīżßĶurU% CųĀī<Ł{b]ß)}ÕsŽĄčÉ’ŻśvowėI—0xņĆO0“ÓŲljIŒ6?]|ś‡ŒĒć‡SO‰g6¬Sē†6$’|t¬•‚śPÕQŽÜŽõd}{goK¼[¬81cä7PŖT]hV^ųѬgXŲhĒr†]ą³ļ¬Õ½Õ]°)SŃOk™Ųż¾R‚-I˜¦āŌIkłŒFĢ,Ä_Ōnæ0Ģ.µė_.źĄA|^Óß$¦ž4šL#«³“ĮĮō ‚bŒu”…™ƒ09”šUēÉV–0ŅčˆĒ/ļ&Š~šĀķ;p m÷­ĪÅåłÕ›żĆ«×G//٤śŐHŹ” łĪŚéš” 9o­vc³ƒ±Ōõ-] ]§+¦V;ϳ ]$ŃÅw0–€°…shYŪĻvw¶¾łśéó§Owæ~śõÓD:¶ĘiŁ„?_›\źÅg³/ZVg{s{ >źĄ "6OÓ@ŸY1К0wÓ0įŽŃÕØ*Ą$Ą§ų!YÅķ$D+†XąV %փµ.°Ó°,«6jė;Ü3Ė—/c™›Æ=?m? ·D¢öó³Olct”ńŹ[™ ]Ģ<ßW“S}\z(pÄš>œlō>ā zķČUę!(ęd[O<’ö‰‚dėa(}v”QiŽt:y/}£L_÷ox'8XŽ+½OĆŃ@žöŲV›uÜææŚs8YßҲ{=?čĖõĒø% „Wbķ|£%ż„ÜįųŪČkP;8¶§‚M»>͊ ž8 ē† i__C6ģ»°8”ę˳)O\/‡õųCšæM'ż&]_F ĒĖĶ ×q: ž#h÷PĀŖßějyĖĢÉÕ°G ¢S wĀNĘĢp”ŠĪ¹×’JšüS~ąÆĀĆø^æ€}eĖ83|ęGĮ› ¤& ń)œ?#Š%HM\=(j­1Lø@¦®"_SĄ€E«Ä?OH̳å®öņēń׊%zr3°kY²4’N°ņQćėk|3?~F”Ęlǐ[¬zÕÕ³čģX>hhD¼¹ƒęĄ¹<Ǽ(>šĄ|Oćśq–å#õļtłĀƒo³®%ŪøźBsŽČfЪсœ!U«ĢŹ…äopæX̆\æCBp;ÄåX—bˆ¬gžÕ.">šó¬"ß,—°|ø‰q“jņ™Š§O-W™7š? Žņ+·³hKįõ‹Ś—a¹Õ'F]ŚŅˆYS2į5™N2.øO…9CŌīUq}™³K”ł[ÉūąĆéH< 4Pg޶ ŽG­)|óŌ!xH—śh7Eш Qė‡v(SüV··÷µ«]kug3_ŪĶ~mž\.¦“I öļģĄĆ7ÆŽœn'ŃŻõ†?Žąø¦0d‘U«Tš<„É˜NŖkå×¢‰FéAn8'¬~nŠ\õh—Č“‡H _Ż£$}t5„¼Jø&xė{ؼ=SiĊ÷@åXÉĻæ ésPOéx”Ą2ķS}&ßŸB©.’ˆ2@ę`` 0ƍĮTŅtÉś+]Ź v¾x—Ćij$Ī%ō’qīnż ēŒyõʔۜr`hcTm‹6¬ż¬Ÿ4¼y‡YR° Fš“†M‘š:­0H Š„Œ¢[7tÕ<>ÉŖ+W3ĒĻņā•Zq “PŽĢ,J…žkłŪT ¹ädźeLxĖµĢ |œĖcł+Ī';øźOĒ“ŒĘVß®o=_ߌ•}g–±ź»!ż”ÕäŖØoØÄŹT-ńfų-•ņ'&€SÆoß1ūŪŌs˜@įæ9aįæĮmmqiŪöΰ.fĻ’v'c.Hö8“¼y ļW`›uNוēvōwj­Mė—õ6 µ¶š|m®»!pM޼ŌŃ@7܇Ax·c@lŪ  ~‰{wEN“ üHģe¬ݤo[O~ÄQŠ„–LóĮ6R•|°_gØu{ŖjŖ'’–&Š¢2ō£[Ÿ¼Š™# ¢8 ć¶ŸĀ¶œž%ž·]eɉ@ ;[•4#Ķg™hņĀģŹĀŅķ(K'ŹŖ¹V(:x,ūȅT 5ŽWeyœk±A&@|N6¾ģ*TdõīĀØVs‘­¬ÆŻ  w`Ć:@\øĆõ&łTÆEeż€ŃĄ³YÄóĘƒŪś‹pzMȟ‘āH :ł¦‘õ¢ųĒ!¼”bŽŚ’S„ŌV½:óÜÖ¶z®ŒĶVś¼š÷6_—ć’ōÖ„9Żi”å©UK\y#&ŽcĪFs*ؤ"×,)_ŁÓKUĄTiÜźÖ×47< hx£füŪ‚ 8Ö2j4“S”šßŌ€dš/ŠŹRøĆ3„©².?Śż'śż{4šWŻ£„€L•Ā˜_Å`‡@ÕÅč¦W/ŻĻ²†TÖ"ÖĘÆÉZUKm.ļŽO.÷ߗ“¼"X/Ļ5 łC¤ÕwN_č,īĆėć³ś2pcå“ļĢkĻ[Bž11“<ČģćīaM“¬Y¢¢ŌwÖw¾±ÄVöŁ·āßā‡8uäõχ…Ė@¤ķŻ§Ļž3@jā›"²ęk` e»Qu¹C«ˆ\98¹Ź>ÖJtī$¾µZų …Čmø0mü4ļ:U SŠčfŒ,k}Õ]¹ӈŹ$:Ła‹¬š„×2»ß§e‰¼¦—8X)Ÿ)÷µyr*ĻU ¶Rd»7²Ćp3ĮÉńxĮ­ūŖŽČLÄ=gŗrŠ×9 5‹,—Š7)É Ć/(&HE„ģ`­ųVlø!\¼„˜½&¬ū’ū!żŠTE·…āŊD®wg[Ś . uĒ€:ß”)ö›$²ģ`»*ØĄxģ•PuųT‰ł§sĖŅWņģkÅżąõš§Jj/m(£©ž™ū­j†COuÆ5Éķ_[Ōž5nž¤ I߁ĀnŲu®‡:NßéēVŹŖg\§‘² a·¾yĀ}ŚĄņ“DøĄmYÖ²RÕÖ2–—z½¢ĢŚókŲŪāŽūŅŹc8;tnŒČ÷¤vJžń~£Ü®zĄY):Q„Ā*ӑż+«ŲK„ÕdłŻ¦DmÄnÓĆīįńŽuõ“¤Ģ]|3XŪ9@Jʅ4FX6q–ŗŖGR xz²Ļ‚·Ģ‡I•ޓ²"`¼=Ø£Ó§¼Wu_‰Š$Ø %Ī(.˜€­"d Ä’äŪļ;pŁ >³WZę6‰(Wø@O~GśÕ# xŚRĆĢš=Jčøō‹#‰‘?öƒ@„˜Oó… ŌŹŌjµ¤Jż+— w˜mmp-ń'+4ąŹĒ EĀĒ$K¤ņ,=³‰7Ÿe½ÉvBƒ­ÅY‘ƒ—AhŁõ#ɟųE>õ‰įVdÖļĢIŁĘūųŸ%g•ō|ü0!ĻpäevæPՅg Ī v…0:‹ˆm.DÅ½Łąä¬·™¼±›Y‚ĶÜ׳G•IąrÅz„ź¤aŒ¾7œzńŽź5dYĖ}¶=ŹĻz-QP+ī„’¼^W$J”&½ĀüN?9Ńf(‹ī`a?ٳŠŲ(ou§‹ń`=÷Dizł#…¼Žhڧ B\Ė“嬳ēøiu|ŠEy¼ģ-N“r0 Ķž˜NĖyā}ĘĮn\\č>’v£)J*CÖč½”?õ•Ü-ęxėB7ņPĢż"ä‚ĆįGV ėZ6“¼‚żϧŗ?Rõ“$Åų"”ŗO¤ī§£ŅÖ\»Ę’-xõuĖźŠ5B,½ü\üĖcĄæē+H’Õ™Üāž“Ķ¢Jx†N\lØN¦yƒp„³Aٶ:'¾ęČך?såKåŚ<ēVnƒ‚z ²+é(ܚĖ>‹L\¾Ļ)į•ę &V*WĀ4¶Ą*ĢŖ¹¼žåXÓņ«vł…Ē©u=E~8†Į&q£½æ]œź^¢ŌŲ,M,Üv_bż-ō=Żó3ĖĮso¬¼Ø³åüéV÷zL¤Š«÷Sž HYĒØ!1sÜPłż.õĀUC*8é<½@ė­<å§“Éš‚ ’¦Ńø}-ōV“wvd•ĀŠ…Ņ‹®å|ސ†ŗ·wrvzø’¾¼¾Ś}” FFNی“/y¼Į) ņįŒf‚.NYŠ×­“̌@ł¢„†a~F‘¼?ø¼²ēäŹŃÅŻ:Ö·gyompėøģān—Żyklł. / tœĀŗTUŹ2l©&e)šĖ«+e‹Qš;‘øGifµÆņJ3ŸųłųrcccečB›—Ų¼7żŹx†4¦½¤jBg Xņ̃9 Ī ĶڰčųdŪĮf¢IX÷ Y·½ ƒXŠVē·©XĆ<’¶‡»:Ņw)¼ pŲOH¬bbQ„uŹ”ƒ …Ī®ŻmŻ@­¶&²s²L%EņXŖ§Léó‚õʱ+®ēŚwļØżŅĒ‘ĆįٟկVǾń»“łB®Ót×µčžS5~?1>œO-?Ļ/m²;VšPpɹ ˜ź¼®«ä;_Š’_Žś‹Pņ‰Ųńśż5’uLģ''ø³ž!už0¹X’ų£*śdFūŖŽ=cÖ©—µüµ£°du7’»fu6Ą/­–ŃØY½źÅļ6Š Uג#s„ꀣ UŖGs«TŸĖ²¼pī*Żą”Cż'ž«ÓśŁłŲ滳½-žd)ē¹’Ń›āż÷ŗļż ².G›>łn?K›Ņ«Ņ8®ØÜ•³B”öĒÜZŗ“Ōć X‰Éi⇔›q{mt ެ:‰Ą“3½ŁµŽ€1[¾.rƒś„ćbæAKöѝģ‹—¬¬NųѝwńIL9j$:;U1ŌpmĆŗ„:p¾—US멦ŁZ Ŗ„ŠĒ­vuˆTl )ā į“ń×1ų–sRwsk9ĖČ Õ×[’Ų·Ģ,ģ]¹T³@ŪEõhśÄ+0:æ}9™ód„ŖŲcÄ*Šwqś@óoÓyKE{Jē…{õ·N@ķѦb¶RŃFšuĻöŖÜ|Č<śd»4M–©|ņ‘"«“DKå÷ęēÅēxOŅ?ĻĄ5ŸÉõŌ„®EØ]é'å„§sg0rPXó®;•öÖQ—iЬ‰Nl BK·Š}Zr u Ձ€Š@lüŖ(–~мP’0U=g2œlxN“9¶=±›Żt¼M0hXŃ7Ćx¢x&ĄĒ ųgåČ$K¶Ūšø‹n €el’ĮB#޼G2Uģ;'UµĖ«H8ķ )ć–ŅG$]øTfŹčņeŅć)P)÷6]uĮ™3ņx8N Q”Õ_¼īކSwźƒGukżĒņnöTC ąöLĮøy—fŖMl«ßMYȄŪóÄnw+$`ł²> |ē¦{ģ;MŠ£‡…4›.EĒ?}/U ś½ńNŖ+ 8ó{ÉCŃ-'Lō¤3K Ø j{óo”9Üī¾ü}~Ž1M÷<‰Ēų­=źMé0Ö*ģ؟FpśH“öüIŽōąŗš•§]v¼¬ ņÕ M““éüwl÷ćł‹w~„šŪu=ÓJ%¦Ń~Še uŚ2r£°Š4·@Ķ“e‘J€B5ņš/V×Ģ"SŹx(%>Ļ—ę¹:“ŃE±6# śpÕ²ĢŅĪ]¶»J+eßä®sC³š(†‹Æ„ŹŌž¹WAu“°—uŚeē“Z¼„6 Ų Ó²G®ĘkfoŌ…ų)D9_›*ņ[ę OÜ߅}J5éˆYē%Ģ&Ā žfOlįÕ;]k?°ÆŻõĮ+ę’5ūÉāRžĆ™½ķ3õ„ąĒkyjųv&s¬C`k_ģĄ—“Ń4cŠW„‰6åOX”‘įGŽĶČ ‡s8[T®µ|ū\B ™pKŪ€=«Ø!Wą”Ģ¬A’k¢Šö’Č;7CšuĶĆ Tq(¢ęń‰ü˜„ž÷\±Č`ą—&JéŌWGaLlB!F!5™PßauCĆ×ĀrU®Ež±fløåVœžŠAg© 0 ~䜬†õyh/,ĒæĻ]•ą³¢ŠT`Õį™žk˜©ūѱ‡jN2s׿ģcƒ;PŗĄ¤cœĘpMįœMÄē&×wĘž'øI ƒ”šwćxč)æŚ(5øp§£|>kŁś”ļ@!>Ü×_Š„ĪEAśƒTĆS©pĘ”T¢”ō×ÓÄ~tä^vąĀ- 9*ÕŻU³MˆÄ_Ce¤8ū?!‰÷BIä£$}] yż…*Y!4cŒ½ų2!œØiP…^„'UVRøGłbÆB„óģ“X…vnźoO}õ]—Ā©źĶ¬± &'9„Č0UŲÅąFéE=»/¦—ž`Ք83vG#Ēó\Ūźčj” J閃A‡ńuœzRÕ:b•PשҬ/Q,ŚĀCÉ­wRö¬›T£Ų’ŻBį!WÆņ½ŌŖ qžčnāXæMoÄ^ź²Ģ,sčūv8Ƅś„°ā$ą’>mĒ­ieĒ/u}Fa/…ŖīOs²¾,Ŗ2J19rduAӄš³:‰ķčžŖ3įj“tµet.U"µJāEj”£«· Ű”£#–-č|¬’ĪZÅGV«±ŠŽŒmzŹs¹©³šdé$‰Į\Ļ8k“”EP†ŃģģLRęęlfƒX#” æcńÜp?Š7šT—8åæćļhj7*T©^¾|)u’Š˜;q];f®«t™(¼„Ŗ’Š Øēäז.YCJB»`E­’²q˜z‘;ŠŪ6Ćį-3Ś™ęزTqŒÕOfI4ČÅ‹ T-ŁņŠwOaŃQއ ĀČŻ£+Ŗą•ØńE¾xʃ e!·xFźÉB 9Ö_%R6\Ē4zo‘Ž›]įN“dķu@9Į–Ā]13¹u]ŹEšū)Y¶/ N0ą¾|.'¦ßĪŃŚHßøšSŹļBśˆ£õ(pn|p•ä¦lńCqEiõ³iŅ%c3L}Ļ "ą|m4L|?öóĻ*+o[MnüØdWŽB§• 3˜Ó•܉Tā ŽG~Œ(ų©>0Ͳée3O,]²ōgcś!|4/}>”-*ŸgŠČæq`*Z†ˆ5ń5\‚Ģ„ćzÓ¬ø®µBkJö;q żĘ,e©Q—pī*» #Įé­n ųŖ4ē«n,ü©¢fŖĢOŽ*sŅ ļĘß»Ūčłć;ßŪ”Nā&ō³²ŲųmŖā °ö £ńčO žś(»pQVɆr«Tō2Q”Ø ƒ9eöčE;Ł„NÅ €„p9Ė\³2X÷*õZgPījOÖŃėažĘ Ņ@}X轫ϐ­uéČPŁZµ¶łƒ>ŌžÄdõ™DvĻÅņĖžś V¾ģ ÜĶ>ĮšÄŚw‹§±¶f¦©lIL@Ė‹}ø Kżp ,óĆel˜śļ~`Ģ>ńhM|"“Å~§&ĢŃQc&ÉB/ jś,\µbKC/.Öęb=7Œ“¶YoąZŁŖ=üU8vOŖęH#±t„Fe~<1Ńx}puy|rō`õ~ėæ iP•‚5–ƒS#Ŗ.°½3ĖÄ>!@@C>œk@ Ų(mϘĢTüÄxä Šć‘ąńDéF£»½¬‡įƒėåś @wVZ]³¾ö¹›õJ[_Ƅ rÕXćTüĪ0×h ćpݶ™aCœEµĮƊ·W³ČŠ”’‡ķz*”Ņ‰čŚæ9fņ,vęäōŌ— IźV… ·m¬[˜gAł¾Ź™–·h„m_ćae¼£€R`ž011;Q’ å Ļ•¶ßiµ¹~Uņ˜äŠĪXūbz‡zķˆ%ĪJÓH/Ą÷—ē"qhFJ) 1Qž ³ŌČę’ł ³øbh°ØcŒF ±HJĪĀq ֟iąČ¶ ©Ódńņ©Ų£š6—¶Č’ę~I :fĮY2zq3!¤ÕFD…Ēpj4–¬2åŻ<ü³ŲĒ[Źķ+m]¹v©G‘PĄ÷IĄųBƒ%Uw±Ø|×wōgvbJŹ326š”Ņ!1%cdcfD®mą<”,š¬·žū™źSFblh£ŲBÄÄóY?ۘ„“Z .„m‡ÓėB"«&2š;Źß¤Ė W¦°‘ķY–߉ ަ"pż¶ĆˆhÉŒ;½Üūśņźņģźāņüųō§«—gē'ū—]s”5?°ł”JrĶr‘Uéd¦Fģ HĻYyMiϽ?O“Ēž<J ™˜Øcs2ÄĢiš’8jPK--®…yvéTI~Ņ]šNc{k’2Ķ(ńŠāÖæ „-ļżćs{r|ōjUżŗ ’.极•DXŞgWb»ņW˜Å¬‹ņų;æįn¼5ZØŗ§S«83¶Ÿ¬øī„!“¦Üqū‚­;L˜ƒĢD!µŖ™ķ‰²r{JEŻ+,FĄ¾#± ŚĒĀĢYGĶĖ”Q„cI}r ag®bdWUWŹ+F¦V5ӕ™†ÅŹB(Ālŗ£,})µ§ ¢Ž]!ĒqH=”mQ!vX¤œ é¦ķOpL2v¤Ÿ5¢‹½,„MéĆķRp(° \%śU{śøNĆ@=uŸÆØ„¼—•ł1Šč˜ŸTŁi7<„[ŽƒDŃi*钮®Ō”毐šNŠŻĖż}ü%]1ŠŅ™Ÿ’d=ƒÜ©ÕĒļ’h\F5\„l;+ ŌƐ5hńSź }ĮK››Ö~æo=•]÷Ō€¬WzbQƒ¼Ėg™čŽį`.cK‡Ž__·^X[kĢ3 PĒ<¶+9%?sĪć)”m%ėz³Ż qņÉ;×gē“vÄē™Ö:śĪ½čÄļ;{XvÉøJg<…› åõ={¦2Ļ„3 öt#@ć”(±!ŽĖŚ}'žž[č{垄I?•†$<{ńWó‚V¦t1jO6]Mż(oOä=“­"yy©&^e6-”>’‚ĖyĆI[˜Ļf8½Ūņ ½¦åFŒ[ Š ŻA‰ŻOŁ÷}śģYā„ū…܈wVŃĄ’æį¦Ŗ³Š{¢®ąåłńįžū­?²Æį4żW±Ęt©²Ó Ō{ÜäXQŅ$ƒ„Šø‘@ŚŖ:3-4<¼~w§/Fįa•xxkk’Ē.-ø°- 9 ±‹Ū­Tfµ€)i:c•ĶŲPrtP9νĻSNč"ęƒ(Ą!ĶĶ “ĀüdžP«:Tæ Ž“ʇWbtf.(uµBŻÅŽD3NōšĢ|I® !ÉÓ¢ÅčÅ ŽÉĪ“¶nčL W ,QŹĢ³.;äÕöaˆ*ļÉĖj !Ėč&s’Z3“"ÆļOdnź\ßW{ī^ø1]å嘱ža8ŚÅøõ”M=­=ˆfįź5kĆz2Ӊ£d7GJQ_µNØ&õĘÅ[(p75ׁ;ģåu©Źåõ²sÄóD°\-Æ­)i^\ØŠU¼Ł„Z·q9•5=ļ^¤_'ļOÆ;«ą ŠĶāīZŃSŪĻŗÖ*pW 3Ź“ööąĪÓµ™.‰\%³¾Gę†Sf_$>‰ œyLŸ®kµĀU!(K§Æli)%ĪxżÜ‘u>gĄ”•vY —©ļósyx—Mx>’²Xń…¤Łc<‚™SG›ż%I "A4L b›‰šbذ«/j@~ŌŌļå(ĻņbnL™žŲŽLÄYŃĢM€Oėdg‘®NƓ˜(ĪłĪM”¦c#©:6Š¢ŅgDõ§–®˜ 4y†Ž÷±ąf½PF3ˆDe™TU÷“ԗڶ1tEčyŚF­g“IÓ?”p0Ģwę ißų3£ÅßU£LµÄgD1Ė㔌o«RU8•÷™/ńuJ­ó[™õo”·€CcöåRV}7™yi‡qbXHBģÉŃ'S׎˜33Ŗ~”ŗ*<@…ÓøH¦†XśN׹ąµS Ææka!7^lŖÅź /7č 5 )ÉFJp²?Sr(ē£ų9+ƒ’ ē3®c vkh½7’/ÆR†¹‚«|Ö­UBnÕ“Gpgu@Pšk\šįX³=šxJŚxyšŚŽæł®§ ÷ć®qCa!B!įWk,¦G6xt",÷ŪłW^Ŗ~~D„n®ąhć'wé^¼2ŃFtcøuĢ«ņc›=JĒA[½Qł¾nˆį@¹¬ćŠĢXŌ•åZ䊧&É8žįFĪX›®yŃę½x‘÷?ąi&Ō¬äü©ņzUŻzó2fI3ä õ]7&Ō›©ƒWøtM éŽtVA|«–QŅGVĪŻg1§äĘn¢C„zŪøģÆTšK“a¦€õ%1OąsĀ B…éeŠ˜÷ūŗÆĻRšĘ¼']®å%UWsoļšųåĖ«ż/Ī^æ½<ŠŸ4Ś­f¦zr|~ōz’ņųąĪāéŁ;ń$pR8•›ŹµRķIZGćģņÕŃ9¢Aą&ś¬hŹY‰¼Ń9BÉŲ°—Gę0YbNF˜'Ž_Č}ĢNĘhE‰Bī0“ZĀś -äĀ¦ō ør„žy˜“oļaāш°Xk‚…JŹ¢MlżTŚlƒ½»ßnžlTGȧ پ3³ĀhA¤ž“\Į-\}H‚„LÖ_Dž>‰É#s8"ĮĶC¼‰€Lźū—g'åÉH8Ä$DžX^Ć/w“PB²I˜%‰98;ūŸć£¦äųžG×į&( 5'fłjךLÖö„ę}2Ŗ|¼yõFå ŽĄuĀ›J§*•tk©•RÕyL!€„å›U„±ŖtaHnŁ&a¦‰YÉa néŠyDĒĻźöUCæ¾#ōk%9b SI¹ć%—ė”Ė,7°~„pś¢œ`n,±j݌-ą;łł…PV)-KöWw#Ց}\ßūŽĶ^*‰‹:NøŁåt d5›nż&Õ ¶Q§éKB‡zž„]VA’2bę’d™ ­e61qu/H23ź® ÆŖ1 tIe°ćć޵FSF‹\šœ‰_¦]—…i©7¬óYģ)¾żśėõ­§ė;;—[Ļ)įåŸ] D|tœÉ]qŠ‚i4: o<©HÄGgÅē m“¾õLüwö8°W÷Ēp«Ģ޼ōߋüUd¬ DQ\˜,UŹ'GQƒ5X,`ĄĘ ¾³ˆ[Ö4āŪČźß^äĀĘē¾”ōcüMdäĘŖØ}…«üž?Ń PózW¤z]ĪC®Ęr+ŻljrĒ”`ømlšŖ:ŠI’EĀĘISmCėŸÓє™Zł€KĪ,UV:Ō­KĄ\å„ńO2Š ¤”•·Z2×:ėŪ꜑Oņ rQ璘…4“&“>’|°Ēflj 6<č[Ä1ŽÆķŅe€]ŌÜģŠ :`ūžÓĘńŁ E‹;›šé諳ÉSõs„¶Nr&“žó–Óž³x4’,¦„“¬MŻŚéŠŒ¶p¼r†ĖEūÓņ”4ķ`€.ŒŁ~^јČ|U—DTĮG5ŚźĄd­ÆĮØDå¼R™n2.µŅEV,luŸ ”§‡†św!-ńØlMmNT²Ńin—nõYŃ9×rX„ś{HŚŌV r&+zīhćOe®|¢iץk< ±ö—­›™¬Ę¤LĀ£3ōPy®GØæAÜrķ%g{žņ`{k÷yÓŻł `ø÷±3`+Pµ½³ĖA•ÓU °å©Śłfg‡*ÓUI°å©ŚŻŻż–*ÓUI°å©śzg·qÄD `Z * ¶¾c<ŗ y·{Š”ļv{ÜrM€LS¢½öt׌ių};Æ1PV CŁč÷\ló®O„ė}įĄ)ßœƒųŲ’öap§±‹ŃW-ÕŁÉˆęÄåUlĖžd»i›{yøōg壓¾[ö–Š %§€UŁ—(`“õIj„ÆDĖQ"ŅēĒŗŖ’¦’Īśł—®B^ļgš”­ĮŠ Ø=ŠN©7·>tĢÆ|§#ŒĶp™†$Q;n¹ĒĆčæR±ģ3‡¢+ ±5į4ŃŲ1€›mv_REEć>šź ¤„ķą½Wš-0ና.óuÕµʦŻ—XČͼ >®“ŽłU-7ŗ—ęŚÆŠTJ†Ņį®ä”åkūń§Ń영B„A7§ėüśÄńž73›WĘ~_]•W‰L·ŠÄĖäʐWŁŪŃĻĖóżÓ‹×ū—GWūÆ_ė`Łk…OĪN/_]p@:ÜĻēķéń%  “£óćĆ㣓’°TZ”‹™ø“›ĄŸN2‚ĆižY÷%9S~˜Y>•R„»›]Č#,²±ų¢ŗ’uõ;kūYį‚›1[d±v~•5RFŹ ×<—T6l°ė ³n2!ĒBøōSbЌoß»ańžČ®ƒ¹½SxþY]«†£T°ĄĖ]–ŲXé‚ikVß·:¤Tø—œÉH 1ØĀuhcįÉ:еp¶iį ŲTÄoؖķz…¹žFęŖężūŸ@æ"k¢N';t ŪwaÅńW'źm¬]ZK9OŠ]…½ŽŖ˜k_vyK.`±ŁÅĖ}ąńGģ>źļ±° ÜĶS`p3Uü!ó7YeŖk”Źģł½3Æ'™¼Orc4‰L kzÉb-žG\Yd¦ē=źIÖń¹P6®Š˜²šĀK īņ—y,3Į0ųc™‰œĻc™‰9ąĖL<–™x,3QĄ•Ē2šy,3‘ły,3ńXfā±ĢD•ĶåŌ‹ÜQ»•&–¬™„jp»žB·9S­å3!œX[UeśO+[ģ’÷ĄØõÄXT)×Mżm\ŽUŪlõfÖXvą'5° Ź‚’‚~(« Q l9Ņ•Ķt3Ŗ†-–W6zO@6vcˆ›vÉBÆŁā޽¾ ‚ aÅ%÷`ėbzÓQ|k[US-lŃLPĪŠėŗ–m`(p’€×IĮZˆW’ZX$©#UD9ęPgĀć°ļ3ž†2‚%įxŖX()‚m xY‰\č÷:³0žP©8-`g»ō¬€_~¹“ŲtN@ |SĀ{\' =_’Š:W_,.Q(xõŠÉØė5€’ץåõÖģ l×rąŚs˜Žē"Ė)ā§Ąa/ĖāŲmœ'OcēĒ>Ė4 ¤Ņ…i:Ų÷Õåé9ż #ŁųÉUŻ[t€V ŒF؊Ę_ßaČŁśMXBŲ Ü‰ŗWęIIHß.Ž¢‡v6ȹƹ©ø8¤ĒGGÄńٶ*`_ų­#Ď®×MūŌs%ŽŠc§r˜L`y{”#æØ)ƒT±]j)mmZ“Ļó¼I=–²Ń)döĒ>ōA~7÷ °±fzr«[Ä~„<õŒVX›|ó&C8ŠÓ_¤pxüČąu×Ā6 ¤ŗĮÅ­KFņW„žŗŻŠG^€æ@ōšKXgŲ„ŪÓ-E<’’ŻŽ3ö1imI²>“»8ПfŅŠ«ė¶i!6Ō­“įśsX1W“t˜·Č€%\Į"%u„’öQFīAņmމ”<÷MDŶoźhÆŅ"ųrżĖµŖåWń¹Ā =Rļz ]˜I{'V\'x 4`=xV.ķ¦õ×Mņ©Ć_żē«’PK i5Pęū<»7ŽB9 briannesbitt-Carbon-f10e22c/src/Carbon/CarbonInterval.phpUT÷Hƒ^ķ}ż~Ū6²č’y 4?w%%ņgŚżPźx½¶³ń9µĶéŚ>.-Q7©%);ĪIė¾Ą}²‹™@HJVŅōžÕ/­%˜ ƒĮ`0ųag:š>z“žäÉ#ö„¢Œ £qČųßię,²|²½ ½NbžØ’>ø ×xY(ŽīwŲ_Ņ(ˆŁQ˜]GyĪ~ø†ŸŽłĻ$_ė'“¢čĖ$E@ĆŁxĢśÉō>nF9 āGż0Ī8Źx˜¤“ ’øĖ¦ć0ąĻn£šėżxøwptz ¾|äģ.ČŲ Źņ4ŗžåį€ŻEłˆæį“gÉ,ķ‡щ]“0ćä˦<ōhĘį’%¼óQ2Ų Ęćƒżp čŸć;*x”žfo‚4 Ņ4IŻEĻŅ Ź³‹×Ń‡Čłā˜ąˆWć$›„!żŲņš0ĪĆō6Ó ĆaĢßDƒŻōf6 ć\{+ūn—eф³ķ¾9dį‡œó”ægœ§ō5źgĪn( °ćlš&·Ń ĢŲ(OĆ4cyĀF¼{8Ą»0|Ÿ1Īb–Äć{6ī3¤!Ė‚Ūp€šŽa xÖĘżŁ8€Žøę8ąU°’ņ$ĘTUˆT–¦;ļö,ā¾Ŗ?sJ8ł=“³•ū3auś^ŖÆ5ĢŖ€ļbHjŒO‡y*ĘCSސ‡Š©=XķńC kĆX‡®=ž:Ų |š®Œ®¹C&žxF®œ˜&h)šŗ|Ęģ‹©]N«4ĀŚbŗŚf›¶Ē1åa1ž³iŲ†÷€7`±94ך!0ąāIø;õ0hŌ¶å¼8™T„XŠDQP*h@*ꃶ˜‚ē!k4 Źš * w"AĖ“QkĻEbaŌA’ØC/D¼Ķč{Ō_madĢÓD¬Ń PĪ€_ŠHø›H5©Ä¶2gę’kŖÓD°±¤…EmAE‚…Īj+ói‚ESI KA°¤¢‡ =Ž6 ­łx]TlÄpU܅Tg½F^£ęGŪ4AēkNQ±QsTqR½9yFsVpq[žjNĆg.z4MR\ŅU¼%ˆÕs‹£’k2‘„ˆgóSŅhöpŌ+O’zTG cļø±ä6LļŅ(ĒÕŪGĘßĢB¶ź¹ĆQɞ,$ųd~NÕĶī*sÖ(ėI5=šŸģz…ļ’ §†WĀ&. m Uŗ£Ŗ[‡K’äĆłIjŖ“­Ńµō’é2”ńBÄé:wéÄiŖuāŅd`ĶÜĖŽiŹ5>śĻ8”®Z. gq?§§±Īć;æī?čNrJŽD·!ųŲ$ŌY𠽑€«h˾Bā8EIźe\‡„¼.Ģ„ó‘P…É͆e¢ź‡Ńø¢M{üõņųš³,(č¼Y®šąL¼Ń&×Ņ×HŠœŸyu"ē'¢×bņ=2½Ŗvłeo14óĖų\xP ĄŸø\!āFŃr$]_m(r^¶Õ œ‚*D‹‰ö˜@ā*Z䗷pĢ/Ōs AŲēęśW'5’²ÆU }L[¶<{Y°dqö·giŅ\єå 3ģŒ,Wd`¹øqĘ]›Æ84/ćźĶKB¦ÅdzT qmņKÜ"Hę—ėy°żJ>„åŚÆsIöµpb|’Õėg`­Õė'£Ū‚Fö\čŠü­j[…ł» ¢ ķ¹0”dŠžńr剜3Ėx±æżUˆ"XĮĄ: ¬ £Ūb?:ĆʶłÅpQDó ü|˜„Ć8Žf“e+Q wYšžą_-™BW²³^ W’S‡Õ͜å#%„\ÓŅ*½ü„¾F.JĪ2K—¼LķŠå ¢0Z¶“,Q6«øX'™U„TćóńdÉA.«藬…QłŪ¶4dä ūĮ`ÉĘ’a.ÉQƒ°–ķ«YäFń3°Ö‘ā'£Ū‚~›¹Š”_„Ŗmž•-ąĆ™ JĘßfAš‡Köäü‹€.Gä…K–łe‘ˆbXÅÄ:1¬"¤ßbr?'BĒźöłåqqTóĖžœø”-c –nbGĖ\ėńŲ_/©Ź0ÆbjӼРxõĶXŚčÕķ­¶Ņ†rŃÜ8…19K–@xYƒE MśjIB[ĶŌz™­&ØŽEĖ܈IrėŚ[%øE¹Č`©Ē¹žØ?²ĢĘ#›ƒĢ8¬łč1ž āģh—įéRF/ąƒæ{½ >2¾?åļmžķ²< āl ‚óEkkkŒšG¾¹’˜ ‡¢†¬ųēŪ e§÷“aß_ģ%“is‰ĮX+¢ÓĮ4vĶ0€#GZLÓ$ūp¶T–ÆĔIEŒAš÷ŸāŁx\©d°xō”ė« Õ¢³Ūuy®D³ußbŪ/ąO·xö“ćYāx6”gżYģxöŽžaܵž|@Ļś³:ž}t<ѳ‘žģĘńģ•ćŁ_Ļ"zéĻ2zfŠ<ķ-¢?æ•ĻłT,ž_ĪŪóŃ-ÉØč®q4Ż«éū3®įŅš&ŹøPņžž ŪÖ\ŽD@Ø:ȇƒō³h~ä#C9OEÄnžóé1kwii'n®ų÷Jžń(˜„e|2äX*īVĘrIąä”ĻéH®’ÉĮa®‚`0XĻf×|üõ @2r2Ł 9“č»Ić4Hƒ »µ­üGńIšDž]# óY ʙ-›]9/•’¢a.y׹:X“˜ pj[}A/9’M¦ĄG Ă¾Yću0"?†lG| ;†$:Ų[¤Ix›§£d6Pī€kķć̊ ?Ą=ėóĘa„”ąę€“tēeĮT;dø$O1ė&ĢM‰oۜ2ßėYŹ‘ķō4݆ćRøĒ!zN“zÆ÷śpļäXL*W|ŽįŠ?҃®į²āeׄźØź@ –F„ Ka0a™tĮÄŲ-°ŚšT†M N¦X¦ŻnĒ® §TĢŹ8OcU>åw%üŻ7jÖ+¾;8ųO.ņ9ü£+°Ś ń$“Õ“I°*/]…W«{iŒK#‘Ėč HŃĒš-ķ$„‘łLłšŸP`üĒVgĻŽIå··±EœöÉŠ½kD—ū—%m_’żhČŚßdįxČå¾<9t“’šńŌõ»üpķżkˁå‰`¹®pĆ zg…4A—ĻR\_Śø+ńŸÓ›Rw¤Ī%Pē)'@ˆPD—ĖĻ/Šo%]į#ħGaę„Ć`6Ī •i(ŅÕBļųē=šSPóŁ&\M˜•ųļe‹HU§ƒĮQpͧA·Ė§Ī„‡jį0®łNĻNŽīóÕĀāpšŅcwæ8Z°8¼³W€Z&WwGqŽvČ‰ć}K*ĢūśŽŅ‡xŽ‚žń¾DUķĒKS€÷½˜`*źs¢Ķ|”&wY‘‰ŻĀŲČņp…«Łö”Ƭ¹ÕڹŌįƒ,Ž“,)¤oĀwA¬Ÿ&+5R®®ŠžHgż\;ŪeÅU ½ĖŌYPńS²æäiGń³8m('ÖT ćt0QöŽŁx6åk™+¾FķŚ­õ’>ßXżÓŚåz«+Åf—D*›cų@,ک욤½`|®¦kņ’ōX«õÜCȖ"oXP„7…Ą”įģ“üm8Pą«§ŪRd™kŹˆūģMH'D:S%0x æcyOUMQAž¶‰>!GQöiPŽ·jLÉßrššß.ūAŃbaŌMĻż•4Ü;ā‡M:y£Ź½lõ“FõŽśYźkỪƒ¦µ¹*2XФ§« ķ—il{†‹µ|ŽŻJŪ÷1L[Õŗhom“œć¤!ęRk¤Š4©™|”<ī5gčįuę]ÜŃw]wiDj³’ źøL[ī¢Å71e-\͓Ցƒ"Ė>¼}x`„7Ž\5oł/¤ÓĮhŸįźX }*±EHm}xÅ1ŽH<‚Ó¼•Ņæ£6FCm‡ŠmUÉBŁī‡·VĈó֊sĶŪ+½aškĖhqŁ…¶P’jÓ 4œ¾/£› — o½ʟ§·5—¢ę“:Żé‘üŗųPF)(B/ęa†ę«µż­GüN_[š8hK‚²PńbV"姤Ķ.jƒ"c%ģNK{9=†Uōu˜CäӐCQœdŁ}œ`q©‚÷É 6;‰E_Ū!ÕķĶ7”b¾:HޱÄ`»Ü ^^Tš»8¼Ž æcĆėÓš¹3¼žŒ 'F…’ā×v]ŲćĆæqdэ_—gCŚ<\|ˆŽĀo@“I¢5’ŒŲĀŲńBĢģ]lśq'ī!)÷ūż$EĻ­H6*'äʍšR߄Hø-’üóĻņkŲÉYģ%÷/^»õŖöŁģ=ŪhI«V‡ćY9ü Į‘I•V¢BÉLg¹(Źje”圩·aš ~’Ł| °æ°k,5YŌe;v{K+„·uńÜŠ&ć0¾ÉG¼ĄäÜRüg[ °×£†?*kŸw×.;ķóŁķegŻR’¬,S^§*Īm³šĆtœ ‘=ß¼ģjxnW„x¾¶ŒłRHc«l³T”ŽS„K\m„WÓ`Š.½“tžo]ŅŽÕ-lW=c=öū.,ļĖd(ź!}źµeĢpmՒē²U?HžĖ'OŸ–ŲĘyEĮŌE³kޤvĮl¬Öe›6½qų!ß°ńĻ':£®¤µĖ6ŞŸŚ2犐K¶³#Vxå5%n#:V’čŠ0=š«;ƒ§(9AŁ‘—(ŹŽ« Ś-Ju Ö[-“śĘÕĆNfi„:~ćŅv6 84čV_/ŸnƒR@箪÷¼ŒŸė¦œOa½ĖģŚo` /ūĘÅøj¦9łüø„ ¶wEL*ÜeZčXƒ˜`f”ć\ cA±ZFaĮU ­59°`ŽčŅvįÕūš>kŪĀŲé¬=¾ˆ—tˆõ4 Ł(ϧYo}żīīnm:š®Åa¾> āY0^ću¶:ąŽK4āĘ}@¢üV v§²gjÅgÓ­°GU]čĢVĖīÅ9{°Ę̼‹ÓC«Ü7+ę¼Wn_Ł££¤Śg‘ü5äVŽ”"§lļö`óx!WZł¬@§™3šš‚QÓÖĒ$]}Ѭæ-}„ō»TlX”:‚ Š—mż¢¤<ę¦ ”8ä5é’iZhW„ōĶ”ĮŁ#/øęŪėQBŻg„%ŠQ’‡=µ˜@$Z> n8>« ¶zŲ‰UD c I¦Ļ(ø„Šģ ¢Ąš:œæ²Ą=Ō… OĘ*ģĪ H`+ų+„c9LūŹĶ>G45¤±/śź П Y%²ŗ:Ś’ˆéMaņhåŠTŻ’M©)^š9E“Ųģ.Ź!~E®ó”[fć Eē“ę‘T“>¶:„ł¶waR«WŅŽõ'מŅ.€Įė-/$XAĶØ_ˆĶ ­&¬źZšŠ^‡‚–œK@Qß史°iļ—FGAWåųņ­Vå¢!złDūi‚ģ5„*Ė!]Ģ‚„¶±ģpė”Ź·×ÖÖtćE(™e§\…ōó×ÜT;ˆƒk®WŪ%¤…Éā¾²¬M¹Ö·ķĒoć÷qr ÷žįl}›µÖw™jY•…RµēDNKnfŚīrTābĻ.“čīYOOgĆaō}b KįŃ'v@žžMI5nfpˆFÖ]„ϧÕՊoÖGÖ½§¶~)óįc›÷ōģĶęO²Ü$å„[ Ė=Ƨ¼Ü³×²Ü„Gī2*·u'ąm½“å²śŃØÜÖ²Ü÷eĮ‘,H.6ųŻH<ūī•¢P”Ī7^psk" nn)3YRśßxÉɒߒéŌźœpŻ¬±Ÿ7ļŲ³ą~ĘĮn=Ė~Eø~B4G67Ø=ß jŸm)jĄ8Łz¦ŻZav?øĶŠł“…™” ĘVŁnĢĀÉ4æ—ÖČdē—ßfXVė%¬žą˜.€±ZRił»Œü…D$P¦S‰(®Ć¢ešļń¼µģ(XƱlvPJ.yÖī3@ßckßßqƒć»A§ŚĘ’mŲ‡…p77om憹©ˆ‡*ƒw…‘!£…=ŖĻćūŅ#¶¤GY *<ĖśCé^Ž0–vō’r4š”·YZ8—ͲĘõ!ę+Ć%­‡-q=[%p쯵޾kŽąĘĖö9–äPŲŗäYŸ-ģń,H› 9…G-œ'ĘöV ÅāåŠ:*ÉĒ—cĶéėėģ%×āņDØÆŽ<„%c©­°uŁļ>*“6ĖV€MŖšVjõÓ§|®łDö¾\ńn4ĀŪ¬åސŒŠBü’ļ’”üŪ‘' ĄRįō2Ø%“7ƒÉ,1›8Š`«hĄB(Ÿ•'śģ§{= ŹRŽĮŃŃįŪ×Õ<š$’ķx īĖ4>Ė¢wļąčģķÉO KyR¼“Ņė„Qŗ°·»°”žfńŅE¤xۜü…Hł6¼ųÅ{/ÅäQĒFķDĻßŽīžœœ,D­o­½õ³rāZøų±yžÅ{ńŅOܝ6šˆ†V©}; ē¢s¶DUŲöÉŁ·p4 Šµ.Šė]ēZøć„_Ś&.¾©ÆKÓ¼™—›=miÖÄu*6ž•V"7T×ģŲŁ1ė5Įx°ƒ ó ŒźG„§ļÉ 5±µš‡J²V%сd¶÷JĮķĀV|«cņÖwģŖ\2÷,ك”KmĆ”¬Į—ĀÄLĪ“ ŠŸt(½Öq5 Śø® ĖņtV8ų½Ćļq<°-@(Č*å“J†–µĒǜåķRL0Žqځnāź£*jĖŽu3ĒFŁ9%#|J§®œØ8aŖÉŒ„ŖÓR}ᕤSŽ@ž»ęf¤°E(OōČ ØTDNØR*WĀ9dCĀTG˜› a!4Ę0JŲ&ęZ€M®„< *ńd›­nś•¬Ę ]ńŃåN†± EF;”œ½Uˆ5¤*~özŖJ…Pxé1C/lR(F×(bäW£wžp·]«Œ<.ƒ%]BķQ€Źc)iI®1^#F} ‹JfQäK&bUNę%źõ`²”D÷ßāVŽIéҘ³Zf؁Üø‹‹ąaŽ}é)ÜŹöĮӏ 7üłūGŸ„^Žnz¼Æķ$’żŪ `?Få4ɲčŗ<…ļŽļ€‘jk Ō­Šuqé˜:‰$‘¶Ŗšļžn½įGƒB6%cķģ}4eb„,ąVHƒ¤f5>Ś`ĪᢪĄlŠ&$#NĘÄ^Ļų˜‚ówÜ(Ņ·‡=¹`›"­ģģĘį>ĪpŲ„H9 XĆ –¢$ a{÷éõPŠ·)fd@ѧ\ p›Q˜a2ą›Q¼oĪĻ6V’D‰ Ŗ°i¦n%õ&tŲæ=16²ųļó`õćåÓĪӕõØ­Ć„ó£ēc†R“Ép*,Sō7rG‹óTćOEźCošxģżMĪżęL”ą¾f‡Qt5xÉ·Ö“/ÓÅ)‰KĆ,ß*9j{µ ʇoŖ "h/Q‘\WGŗ‹ƒr3­PĘfS{v@e”cæ1Ś/ø2ĖdP„;RĆ>B5KQ§^Ž£ų= ÷Ö×˱ “Ō”źi U‘Ćė4Q n)jē6”ŒżYę pV‡M·”€tķdo]JĀȬą*Öņ»Ė²ģ“*}å…Ņzˆą,!³Q%ö׃³³ƒ“S¶Ė—ʧāūpę ĒBŒŽ!ķĪ£\5Ā;ņ3ŠÓL¾ušg¬@²ÜR’dœµņ庁<±ĆąÄX5 ćŚr£Ė¾§HÖVžäĮøļn†8c Ä÷žX0µM”x£Z]ž+é½?œµ¾ņÄrś±¶źĄYZvT:Z_;Ŗˆ ­Æyp—=¶¾2f‘ a‡2zĖ ™ķ¤ĀĶ%ā8« 4‹÷ōGz6¤|nš½”Ļ ™$„ˆ·Ż·_é‡ĪøFĻį;ŗB‚+ •„bĄ¾õŅį$ƒüfµp9¬" µpėŁ½Īćž«Rpź A‡€TˆGEķbh śæĆŹY®N×Oq3&B«Ó÷>EžIE.#·Jiœ. śóŸ-Ś‹/ąo,š-Óį(,Īł¹^ćr,ŽXĻ ŗÖķXųžę§ś®Gć,ųčä“=ŸĶŃ’Ŗ¾æ9óŽXĄrĘł© č/»£6%¤jNŅW³Ig‡p’ ’]ŽeķŹk įż£$-ŻU@wHÅOe½Ź^ū'ģ*ÅLˆ<@ĪKķoaDʏPÕr~¹>Ē"Ć`œ…f‰Ė*Š` R×0MBÉ@G|…JĒp÷_¾¼ŚżĖéńp¹`r%)—>ƒÕŒ-$ܞw@»ū²Śż*”ū•=6]Õ§NA|£&aÉ}-)2 °/U ¢°»ŠOndńāķŒĪo1-ńĊ¼XNy)“]^ķu˜eĮMŲnõŗ¶ÉĖw”¤r&¦&˜XFL“é wY6ēäĻd£õ—o)?Ŗõœ[«pč«]P×|ŒŪ6£ŗ÷Å3 ŠŖ–cļ8“=ø }X‚.»÷ščeÕH%E÷—i,äB? Ł†Cq;xŪoފŪœ.ĮjōÜ/,äEĶŚxxÅS¹¬H¤|8rfÖ č¦P' æÖÓäĶy:BĒo< BĒ·95ā Ģā§1ŃŚłS°¢!ļŲBĀĆFļA^Vn÷ÓĶ‹½R“oę¼ģw\a#łMÉ0S –t„–Ć—U¬“¦Āf•TOõõQR(ŠÅę ōŖXqZÄłR‹µUümłĢé#“ o!Œ+5Ūr„Æ2Ī4™¶e]ßņWe¬ÖZ5Ö°1kĻāMÕȗĮåĪn,Fß2ūę†R y0^UwŪĶŲ=ZlĘÜPŠ"GøYAqŖÓ„ō@VR&­žlājm$ŪÄh¶qeoɰ°&‰"ļ’Ō¬]jzWLI]}HvmśģK­ĖĪu“ą|¼Éx†xc©¬qļX*üžL?ļ°P•ņ’]y†:9~ ±yNĆNų/üš²īŽĮį>°čYźĖO|`ÉÉRe6¹KķHcą@&® oŽŻ(LCö>¼Ēüpą@Äpč@DĻ£ØC·§Ģ*nēXĪ/MƒŠņńåÉ.jg;ßļārjŻ‘āæŪp‹XÅ(¾Q+EĮf!ŗPŗ(c,zo×]—›„ŠĪMw@ ¢j€-žū®ź®’8‰W1‰ąÆ,$\?%ń?8%xžß{%=MMĆhœ‡*(U œ Ŝn-Æ»’ó  ]2¹ŽnnĀ,/Ų Žx¾zĢ•h½}ėˆg§įæf!žµK±ĪZcQd1Żv2[·įRsßāŁmˆ®@ž}eS`Ņ}Ŗq™a”fł†„ EŃo«Ž‚I”æ6|ĒK;ō²·²©:Y+i·Õ‹,õF6¶EJ/Ę1‡†‰Ź^§Śą4O`lWZ&•Š;!QĻUīC¢­dAØ`g5Öj” :ąKבå} ķ³Ņź ŲqR0ĄųqaOU<łŻ*TląiĒöZß Ų³ūncŅ‚;¹äāŗaä@@ēšckėņ³€}Ę5ŲlųDk™h Ų‚7l뻑 VŃŪb‘¹ ×nˆHSK‡ˆ6=”»Ćŗś„<(/<)ņ¼7X¶ XToĀ’ƒ‹R‚(ÖŅļz?«…׏ ezĻŚYȵ~8Nī:ĶjS«,:~±ŹĀ(]“:® Då.$7†){PhŃc–ÜĀĻMń b#SuŽ 0É5€žć׹#ø@9aø›šf±g7ėqü h8E“°ƒ{EÕ.—…Vė:ŗk ‘ńf܌›ī+CģÖūy`šFra%X\¢‚ö†ŁxP}_¼EĀ„!Éʙˆ£'j Ącéā •)ą§h°!±t#ÄLĮD¾A¤WܲOpY-Æ_„‰¦9`³E >Č>‰ķ†O/™Ć'&<“,/œhœüJTŁ.”žDY†ŅĮ;½ Fƒ¹ 4“Ö·R1Į„’ƒ›$ø%/m¢lވŒ Āīl¤žŖøEÉ8)HYīÉĮ»g‡?ø:;¾::~ĒKBƒ›d»)ęcXbY’ć³W'ˆä:Ūm=bØhc$ūb K{5ģ²ęŲJ"(bƒ±A”MĒI†ÅƒŃ„–®ė2Ņfó!šĢ8»Tü<½›G >kLŗW7{Š…ćhĀ1tü(¤'‚L,HpĀŖ÷yĶ-&óenģ,Ū?e¬v*v„üųōE‘~ż\÷®, S“O¶©l§nLö$}E\gÉx†×Ré›īϬČtgÉQr׈5–5XøĀ€ĖQµgāR?Ńć;“ ¶½ÄÖæV0Ź^Īød…öeYH‰ų!G3‰ßÄ ĒŖåŠ«DČuM«Ćæ˜EP+ą{R-½/UVŽ‹ÓūÉ0‰ļ/ö’É”/ÅćüBۊ¹(„ ā軞ŗC{¬‹ -ŖĖė•ŸyĒį~Ų‡q&„ękž‘h‹'łœMŃī*^uu ģń %ȵlżĘū“ĪN“ Ģß“_“Qøa&®Ŗ˜Žgi0Ž>*_Ī&z0(†Ō9o™\ŖiX±Ÿš\LėŖµ&ŪįŲBJĆĢŲĒUłńpŻ_ī’c~Žø63ÄZ;“?ŗfƒEƊā _ĘĻŖęˆh{Jmń]œYÕ‹lwb—Z4=LŚØQ¦Ę¦­CĄ„z)¶™¢g¬ęˆ{!JM“nv%ā\nÆ{!')ėĢ|ŚJói'Ė„åĄa;å:ˆfÓļt¾ø™)Æä[}›¬H~0AŽ*ŪŗģŅĶÕÄ„n›0äŖ]^„ §óŚät¶›)’‹jŸÖ ׇ°®ĒÉ®|vŖÜ­ūÖe·9™øŌ‰ƒ¢%»e“¹pˆS…n8éjĒŻ\8J :ˆ•ģ2ŽĮ\8D2Ww;0tŅՎŃ|ż!Å:ūƒā(»åžą«ūy°Ø$“.,¼(cÉt†}†źso”Dø-¬M“ŅźHūAČÉVΌ]ĒT]RĒõ†h)TDź…X²ćŅ„Ń) ĒķŖ•SJ‰Ģ¶»`Ō„2+L…h¢/g*,bh]s7¦€©`¶čWkL¹‹Ŗm) ¾¶ŒU “Țv„n›Baun’”g Ų&џŅHrl”Ų…”Ōó¹Ń Õ^b8@hĀ Ė(wWīłbzérT’ŗźœV—…f)“I‰Ļ}ƒ”"HąōąooŽĪw¼z³{rvzu|ōćOÜB)_Yļį]żõKÜĘĒBĀ•–LyRīBå°L¹„į ä—ˆŒpP­“Ėäm óŖ1‘rńĄ‡SŠĢÅ#gZ§’ćķé¬vHĖ•t)®7”{›ÆU„·¤…^%¦ĆoŗBŃźĢ»LQ£¢‚eGĒW’889¾§8qcŻ>ÖŲ9€…­Aµ¼å‘£‘\źŃĖk$n ”¾¾—ž^Ķvˆ&*HĢH7؊ĢbĢnTŅ‹Zz’ņ.Ļt”ścõ„ˆÕųR~gŠż[ žõ ÉāŅ70€}ĮRpŻH>>:øŚßżéźŻńÉž©oˆH„Ž<Žy2IŅT°ŸÜ‡pųØ+¢‚ÅŸgč«öĻ3ü ŖRšłÅ”źŗ`«® ĪŽ?  PĢAB÷æ°?Ģ_¦Ņ Ī„j¢Ó;ÕvsįOģ gŽ Mź9‚ §±=ęj ł•xŽźĮ7·™gÖ½†¬rn’Ÿe¦sŽi®PHwėīG*-…®aS€8f›ĀŚ1m=&D.}įZRšę‰(j‰#%·ø¹y&ŠŶ҄*īėdM]*½ØBͳ‘õ=UŃ«E Éןp=SŹf#£ó›WoDā †Y½eoŁ÷0Ģ*t¤WƒŁdŚ®ČȓčD÷+9ĆUę½hĮnIGÓײųóbŠϦ%©„Z¦QRĪü!HŃĖŌ“Œ wĀ—Ī÷;@ŹÜŌ²aZe_{ĖĶń@+©&«Ŗ’rhY'Ē­§xŪzF§Øķźā“õXžß-•ÖĪöžąX£”:n^1‰ö@śżÆ©)šE«ü%ŌõW0“¶ś‹IiŖÕŒ>ŁŽPØ…’Ƶ‘āӁ|2/ IŻ*WDh-q¦…mžī# ”q+nįŽōEŽg|ʇ[œw>Ÿ—.’>7Wž–ēŒhkŒ ķ7ęåŁ“‹^<įÄ-×µEš÷c«ĻUó*Nł˜ ķéÄhߢ„9ŗH½*hŗ"yj\äuĻ„‘•J›÷‹āoqT2OMŗ(Q›«€_¾bQņĒŠs²~ ”{›3Åę©ÉßøĀć#ėWUx¦Į­©ßU¼zFŒTÆEõ’OOˆƒōuŻaŻ?`÷ ’:,ŠN¾/ßGyē ÷9ŖČ5śĆķ6øĀ0ąE08TÄ8G|ˆ«ä±C;K %čo …Ećblłļg›] ŗv¾ÜzÖeaŽ_ėØp_±+łż š Hś•…Š9\„U™Ąö-×y²w#Ž<ø+ķ.ˆ!/żPĘSnā~ˆ&xĖ_ÉögĀiĀ©ŹŁ éņF¾–é'i#ā«^HuŸ†}øt  ŠāÄ®-Ö.x)–ä‘n!ĮÓ§C.‰ļš®ś•‚˜ōŠóv.zåŗ…°įrĀØ" q[S|õų_ŒTTŽ«#„ł-v|„³²“Ķżµe&ęr]2Ūż5e"'GUaŅWЬr5¹ˆ–ææ~‘’ČQ_›’üų¼FN"Ģ™TAškŽÜn£ćāIÜĀ 3Ą"éĖFAZV6ōZÓ4Śš—X¼ĆŅģ4aßS‚Y¬³µĮ$ÆłčzĘUS?s”[TTĒņYĮ„kT¾VeC¼l jDŸ,¬k'$œźé‹Ó&[WxķKƒĖ©I“éż›4™rķĆg”6ø›ō+‚WøÕ—¤į)Łš”CÅ"ĮN§YäšČÆdtcŸł4Ši\ōŖݤÖņ»t…ačāĆ Å ›Ņöż¼žģfn;ŗ¼ŅSÜ­'ģ5ŅĀŽe¹h_©VH_y¬¼åĶŖjžžź&Vć7BuܒTšU1”šu¹©—Š4·Čä éČm6ObŖōŸ­nk$­³*Ņ­¼„ęX70Hæåh=„;6E~†._}H„—åėźM/UēĮųµ{źs€‚Ųī˜QƒÅBžńćbnl*ŠržüģŹ[ĢĶ”·’æžv®–jį õån_ux ®ß-¾ŠežŻ.Gž—Ņ-éĶī-^AŖ·ĶĢēNI}sprx¼õÓĮīÉ)ģ5י·$ÉŖöśųč앫ޤŗŽžīO®ZƒŽ~¦į'”]Ńę zuüÖŁ QMƒŽžø*FÕŝ<ŽŠ™·Q l“M©¹4¼7'/’ĖIˆ}g"ą…\c—ÓŠ×äU8kPĒė­‘bø-ģ ³@ZŸ¾>PdėÕ“DŠ‹µ”7„žZąh‹Ź¹©ńwŪĆaˆ”xs¶qŚĀ³dŖĀ" ćūŪÅ»w©ē¶Ō¾ćģŚØœpĶß2õ˜/ṩ]š,te š“<ĶęȚh¹>ꀳ¶ƒ®wIóÉk[„¬“;}iEųć¶UŁā”:ūąē%˜ā=RSŠć’x²½’Ė˜Ł<n÷tĆ9Ģ’~§˜ˆ=nū6c’–=¤Zą–É]ØńŖ „JŻĖŪęvŠ2¾¬–(ż§ä—ćhŗGå_¢5—‰¼9_rĮq‹ÜZ̃”ķJƒÆ”EˆN9ˆ " šc‹v”±*=„”^.- Ł;ųŗ­:«Žņś K`tī×*jŲŹ$ĢĘ nY‰ĀSµö­²a;Åw7@ŃÜH¢Ź«vĒe¶+¾˜½0vŚ%TĒČŃX)øŠ”É|śtŽŁ©fėG«e_L=ĮøBnž’!ŽN(8ē5Aˆ †š”-/·ŠœåŖÄb—T£É_9Bčöhڬ±7#c‘ĪWnĆ…ź ŒÖŌ½Ē[¤G„͆sJLו"_¾jAĒB£EÓ„ź|Į7eĄF.¹®uer·HJ×-Łueā»®@ÕUIųŗ2g_™Ā»Ó*[:²©…4¶Ö{6ŽÕń  cF“W¾”‹wż5@| KGĪe V.a—:Óź ŠūĢz¾‹“\dw>SŖCĻ­Ķ:Żr ďZݢڷ•Õ~µTˆšøzZl8ß^×]—qŃdĪ®vÜGiūĻy<§¹¤.ėįłĘ%eĄuO…21œ([ųņ‘Š$ąvŃŗÕø¢6FÓ/®5œEņ•Bó“ćøœ=Æ  Ą]Gø„&QÜqqč•ĶJćBwGz󋫂Ŗ=¾Ąqǹ(R½5Ūö _;6Įķģ'²F {ģ!]ęmÓź[jŠ“*£ĘīéL &ŽÖ¢Œ©={Ņ]„N¦>U®ƒjĻ­¦'ØŗV˳ xń|ćĻf“:ŸĢÉņĮ”!q\F7³T¹¾ńx!ŲP”Ź+įfž\µx¦3„G’™ēx­‰ÆŅ#®Ÿüu8”‹”tźĘ_įG†’5qÓ16Äm¦^Š,qa†—ń0ŸÄ-¾å)ģ4"²³¤¼ÕŲōNįš_Ś)¶^QŽē‡–ėצ_ —š3Ān˜“z“¦` XģØEŽó˜Ÿä¢Ŗ.”kĖ·ņ¦źU-žŅ.°ļaėū‹J)GqšPAĆłUĆłPYż¢üjĢWūŖųņĮfˆ (k“ų&ä³ F–} I˜Ļ8¾ÅEé&ŸO”t¤æMÖ5挳„ŸWŖ¬xŸ>łį‹Ļ Ż]L_R7j,?N¬%oņ9Õ¤żēņ/ÉŁŽÕü…•ƒ&Ģ˲˜Ęa–±6ęOų¢*š>LߎēŌ· ćo‘e™RnäW`pžšō¬«¾“–•Ü^‚ŠĻ«bĖø?‡\ŚµŖå‹éĻ WÆĆü. c–ß%äy(m•žįe-Q:`šoˆėŁ!ō˜³³ ļ8Ž`Ÿįe1QŒłżŠ3°‚hƒŪ ĶDŽf•¢łz†Y¢‹hfŖÅ7ėįńM†» ¦i2˜õCLŻāĪ:¹+0 Ó=œū¦SŽF|2dq‚›<&ø× ™ķ€į( §MĽņ«/GEŚh‚z,ņĀc‘é}ŽcõīÓōßż±£Ą—Üč:Ē欿¬C•śĶĖCA5Ÿż^ AīgjČÖgmˆ@Ńnčrk¼÷kx”ÅE•¶Ų\Œ- F‘g½ö³Bj>‡ń†ū .$E]D†Šć… ×|<%±ļPY­¦“R0A ßŲźJ¢Ä͚•ŗK>Ņ[“ÓĢXßŌżWØŽ-3¶WiÉ:ź°–„t»RŅBæ,U«(„õłµĖ¼Ø¦ej˜KŪ|µ*`Ń±Ø¦/÷˜lb€ŌjĢ’æŻšŪ˜Š5ŸoƒbIC`)ełü–äÜHņÅ3§5¹(’Ū“ŸĶž,ŗd e³”Lżé×0xÕ၉ŌyZŌ&†bÓou˜ xF+åīĢĄÄ!B_*=#¦³ŗ›É#Ōa­O"Ż„)#č [)NŪ-€Tīéēśąjķ‘Y¢`Ų6Žą ŠnĖ»«K1¦×AŖ“‡“É,‡+ēz=ސ,l·¶666V76ł?¶±ŃĆŖłölÆe.Œū$lr4R|§Ó«"™ā°žļ0ŽĪ…ßQ¼!»™©ڈ²(ķī³”C†“$Ė’ļÆAēFŒ›ō cõ ÅŹ®÷˜ū2„Ńų9óįłĻĆ{¼š~Å..‚\”įæõŪ^DēŠXž"ƒ¹zEłÆ F)Wõę—BótŚŌśŽHš)Ah`żaqZR»¢48qJ‰ķŚ;?Ø/.O;;ōšöāāīi‡GĆüÅÅ»µ'̃§+d„VŠõ*8“6½?o!Ö%ŪŁa­„uk9ī4Éa'Ɗ‚%DļŁTމ‰r ©zĒāšviŻdF.;‹geęGÜ-ˆWÆ =>­ i™Ł^·Æ—šži<ÕjP¾Ža»ądӞ[˵—3­ü6xšū”,2µ’/žPK i5P,ÖQ©Ķ.Ģ7 briannesbitt-Carbon-f10e22c/src/Carbon/CarbonPeriod.phpUT÷Hƒ^å=m{ŪFrßż+W A›zó%½žYqdåā6²]Kn®•t:ˆEœI€@Ėržöī̾æ ©Ų¾źy“vvvvvvfvfö»ƒłd~ļŽöƒ÷¢Ńé$«¢q6M#ņļ<)ėØGõ$“ņŖČÉOĆ·ÉuŗEŽ…×ća?ś”Ģ’”Ē÷ī-ü’ŃqZOŠŃa2½¦sčž1>£/ž‹_«óEżōUZfÅČżźi™duu~œ½Ļœ^R8ģŃ“Øeʾ‹¼N®¦ģ볤NŸēuZ¾K¦ņڵü~šĶRż¶“QҟŸē¤}6zZ^/fi^H?'ļ&uQŅo’Vł é€4ų yMŠ"p•–œUNWUÕ ųøD"H§”*fi4+FŁ8āœV8ٳ$æ%?—„Ҥ&ćÆ83}?ƉˆŖš¼>d”cÉoeoŒHƒh#ˇÓE•½K£ż('üŌK 8ˆ¼˜“9®ęé0ßfł5mAĖ­Ę^ą4ŠĖÓiFŽ0)Ƨßā‹ā&n3„šĄ6ŖŅ:Ŗ‹(/n»IóE›ļJ#Ҿ…€¦Ķ]IBfĶdB°]ČÄīB$xæŠ7ĀkŃb*€g[“ē*­oŅ4æŪNŹtø(Ė”€ £Q¾„;š%ļ³ŁbF^™]„%,X„icŸ <½É¹Vkžó‚ŹĀxƒ}£Ļ^jF“ø¾ž¦(™x«›8“1A4 Ńø±;²!o ÉīqEöFŅl4įīh£(R@·7ņ|ų¶±»ł¢šų;“3ĮŠjž„y™ĪQx,3Śøėhć*NŹ2¹6Ų×`OUKŠŪ1AŒŠO°×DĄäT€š7›el2œÜ ąwiy{'«:ßąīē,'ä [«"}šŽ:½MĀqųaķŻąf˜(2’¶€%Õ½C­?¹6).ĶKsVäõ„ M’ķ„5kŅmlØw)g5cN¶Ą·qü§Ž“Ew“”ÖŸDšāҌó(¹­@ƹķ†16čŽ0iöAķMā‹x“Bw„öb‘ńā?L[t1“Óś“(S\Z,ˆ,_ Ē>t[¬Ķk[½*«‚aÕĀH‡E> ”~č„?oÓŚŅčU±dV:žԈn²ŗ&I~āŽ?Wģ4[eąV2Æ>K!€ŽĖH ŪŁNh§ŗN!®ĮHRµ¬°‰¼C Y@Śy- ±Ł‘pŪ[ öŠ6ā·2¬»L †IƒQqŠĻ™ŗĆ;r`“Łšt4"«Ÿ©Ł^ķšĀZÉ&` š¬€Wō…Ö8¹u|īģ¢“ŻÆ×SNMޚ1æ äP˜.ł?tijkŒ€6 ?Ķ‹’;¾ąĒ6ą:胓‘KäX°ß:¢Ń]æ£ķlŽćAźˆFG} /]Cćą/褉&[Ų:G™žŌēŽ›p§Ī$˜ˆżŲ•‹–ŃˆŲöķԁ8>üĒŽų¬ į”Å"ż,Īń“HźhƒˆĀaVAēŹ ‚£¢‰mŒł°¦æŽĒ6÷ūŃkų¤[P-•8XÓŖ ,”’MœĄƒFō Ā­ś ‘#„—pdK,I[TF:”źÉM†uv5L³i`L‡äńś:ń g=½ £ø_+óą&±Ö>¦ūĶgˆ²œŸxM,ēG"Ų×rüŻ©3ą½Šøü¼·\7Ży¼S?Čæ€2±V&";śz8üTf>;ܐå¼dkb8”Ž–cķ=ĒFäē·%śčĪŌ:AxFtĶĻŽk8fŸ+Cūˆ¶n~ö’`ĶģģĻŚø90”õ1óO`·¬•eĄÜY;’„†Óē‡2š—pMŒęE!ŌÓr<Ż„+ąøĄ˜ü·L'ŻłŗK/T„fšzõW„¹&żšŁįŸ#‚Tėõ°Qėõ£īmI%»SwØž†ĘP—ģh E»SOČ'ŌϲV~¢Ī™õ0ü sō|Ž" Ųā4½-ĒšŻŗ> ŽĶφĖvŌį»õÄ$čtšęy¶˜­[ˆrøė’ō^ņŁ¢É$pœĶB8ˆNSÆn⬿S*”F’Ė«tčä:ūCĪ9$@åšĶŌ!ŗžEA1ĢÖ­­ GäĶ›83„Hø?MÖÜ#šex€~®\ŗ+’ŲÖÖu„¤Ćd“få„0×äØAXėöÕ¬AźFń°Ń‘āG#ÜŪ’~›NŻ”_%4¶€geɎ–šįtź 9ć?I ń#keØ_)Šõ°<ĆpĶ<æ.‘ CDlbĆ" ż-Ē÷;~ ĻĻĖw՝÷;ö%쬺ów&ÆĻČŖ»0„׉ŖPĢCDm£š‡jŃļ²Ž Īs=<ް–¾Z—Ėxˆ:÷ÉXpXw³Xąu-pķ‹e}Ø2¦ µ™gƵčwŁÅҹcʹMć 1īŖ].³Xšūܾ7œ&Ueä;ĶęÓ’³+‘=Łą+-ūŽ’Ü‹ČäfæäįȘoŃš‡ß÷öfųsREWI•²œtxüŪ=üóøįļAōĆ"›Ö›äe—»ÅšēßæKJ¶ŲOŪų/nUGƏß¼~}ōāščäņĒē?Ÿ½&Ōź±Ģwu°{{žk“Ż{¬:zńģņŁÓÓ£vPŽą8ŗN s8'C‘L£wÉtA“ÜI6œDĆ$®ŅØL‰©9‹W·"¹.0Ä=CņĆ\EO§U!‚»Ęšœ ’ōōłĖސžžóīxś.ɦ0ŪJPŗC–×.žrųó›gG—'§O_Ÿ"9w;Žąä&Ļ©ĻŸæ9}śĆĻšą¹2©†Eō'uĪꄃÆŅ1döŽ鶘Cü8ĖGš-Oß×–#ąÉmGōāč/§—ĒO’rłōōōčųÕé hggĒFķt3|U„¶)Ō€Eéģ #Óµ¾ęeQ§CČ-dY4“9F­Ū]ėEt=JށO³ÖėGö‰Ł"‡nŸ ˆ½=owż&„åS„“ŠX!€o0,ŗL+"ZdčĮ=įśQ:NÓŚ‰"ķ˜ž”*‹S˜Ųż2!‚•š‘:ŠP±rö¹* o÷YõŒ¶ōć|`¦tć-gĮīą••ī=Ļ§M/ÓĀōö,äÅM‡€2>ģ°c`A/j"i+ƈ¼Y1Õ¤XL”b_“,ŸĆĻ», ‹B叐2āĆ;„2ŪĘśēl–Õ®ķNjaŖ†ŹÆ½ą^,ČdѾ‡Q©ėB°H•žŗ ?’MkłąDŒŒiLŁ"œJęęm6ŸkĒ-:"6ķÓ¾ øN‘OoÕIg%¢rwė8¢·é­=šCmĒD²ĄP”I™‘Ī'Åjz$C(sĘöa2.¢S¾Į3ųö„5 Øå:b“ᐠŁ,żRӚ±Óä-čėe13—Œ s^™ēæ ° _Ö¬G·4&Ć „d6¢ J„ "HH AŸ8żH÷Ÿ ük„ Ė$ÉGS²Ni†E]ŠU܏ØVķD‚Ø£éČ;ś/’™cģDŽڄQŒLéĘI Š6é C…‰,œyQUłla1OŹdFń€±–ęsŖ²żßAØÅՔčL=ጠø>¾%Õšŗ¼U¾ĮŸÖĮŽmżX¼ś™īšč¬±£Ž‘”ż0Ō!f[0=Ŗ?Ė?†µxcP6Qk:„> ÅÕßÉŌyH¬¾łQ²A³ļ‚toCrI8 Фöžę(Nk”k„›NĒØ@UŚm¬=†?ŃćuZŸš =ī‚/2«‡,µƒ=ķĮk56 C­.Öō.32ć¾öV'ņHX…H4kŁ’B’Xü lōŃ&±Žm¹V|e8]ŒŅKD敌ƒh'ŚĖζ»ZPlcČT~BéKȾMG—ų“Ź€õķ<„ļĄ'Įō%œzRŻčč:Q{¼\“ĶIO“~Oo‹¢²ÕŪŪėm]^žōņŁååVpZoK‡0[ż—hމ\‰F8"-$ā f#Ś'ę1•#=BĢž «·…ARšńbcĆžVJż­žŪ÷¹6žLŒ ņtBa%uCBžPaÖ|8…ķŻJ>œ¾O09 8Ü ¶€Ń č:·ˆīų˜BœķS[[[økT õ}ķG²3=Ć-ę­:”Ķv¶œ@d„’:½^t3cIģ“·5ZŽBƒī”€"j5Œ[/ŗ£~~ņ2ś×ŁŁežĻp™Ē;C»0žqŪJŲ9k$Ē󪈔ĖAdÖj0ˆĀĘOžrĪ ?T)iƒCŖhÜSæß‚•ō½Œ#ņÕ>Ƅ ļ_6ŁžäVɛ¹E>W7xSß4¾¦ļŻ0w Us…ł>,ņ:! ¢œńCZĢČ" 6Į˜ XęSŠĪU E<ÓšĘؚ…ōSR©»ūńš¹x¾łd}üØ~όļ•ń}܉ŒŅZ€¢¤ŹĀĄā;¬^©I:²³¦{Ńį$¾…vPµ <ėŁp>ödX/ØĖ™h7Y(d—€&xę &0p«²ü¢_Ņčļ°”Ž$yM}ŃP6Ā·*¢yQćÜ8ÜAa¶™ż,ÄŲ²VO—I®Äbs˜=°r¾ŹŖK*Hč+ÅoœL«Ō¹J¶·‰é6PET€ItµØqüp“g·–#ØS"µ‹ ¬YLԊ³dóĆÅĆų`ļģró‚~é?č)ė{^¦×—3č"¾’OēWŲp’~õ1Žī’Sv€ä€#˜¼¦ †~F“§:¦Ļv/¼łČ'Ęz††ShūQĀŌ3{;:YĢĮ•Xż’”9šŪÆ~zuülėˆŠšč=>!“ÓJuE¦›óßĀ#.Ąø¦ŒfŽ Å{Š? łEå©¢ćR?Šõ³¬Q¤€OPöqś~>-FiÜŪī pl}XŠą²ŠöŸPf09å:¾@dśNōõ×*'ō¶’ś:>ŪŁüÓŃžœÓRI”LXœć@‡†Ķ„œBķWĮD§É€ū‘ų‰h°śų_¢”Ģ ā%ÉĆ6ĄOö »ē÷öØēGéDM”6¾åķ—?Šisg|Ć=į|6÷Ć7źd4:&«Œ°.YCµR»ŠāįD„²Œ Gi=ł fĒ÷ŁĻ^±‡Ü·uæoōxOūŹVÅŁƏ <Ø"”Ģ §Ć—q±ćÓĻœ™ó•†oxü¬­Y€Ä ŚØ§I™~ÓM@V$&„k<"U5ĮCŒæ1 F{ÓäØJå(żÅČĖu ¶ŗōV}„ÉŁŠQ0j¼Ēź÷ߔoæłÉT-®>=™8ė"S^3™Ār€yzȚߣŁÜ!Ė~5żö¾)õ­‚ĶZȶֳ…ün¾‰ū{æNĒÓ§Glģ« \^“WŸ4ŃWü=Æć†š–c*",ÆÉcY6mEšC±ķ:÷P&Iu,EœĒB§[ĪłĶŸ²x—RŽ#Ń Žßā¹”šĢ ?4õ9ąÄÜāŁ¢ńŚMĢ)„n<ĒnB\¢#ž„śŪX§µmbé¦#<ĢJ‡mź{Õ[‡aOåbX¶5æœČV€O½u‘E„ĒG# T“Äf§–.%›MvKkC®n៭čG<ĮēĻæß²ćM»ؐi÷©Šf;  M5ą„äBąe1Léį(æPĢō&¹ŻR”¾„!vČÄ4J¾Xé ŌŪEćVŖ) Ū½r¶sa)ȱ—Õ®=RśD;qģsj݌Įģ«»Žöž‚X»#:J+1‹Ä ·ėÆČŽĆ:Ē›āŲN’¹łšĪĖŒē|¹óž ÷Ākčś(ķ:+^ŽĘM§Ęī&śł±õøįŁ ³é<ŁŻJœ,7“ÕÅ÷Ā ¤Pœ?ü›“’©ī£0ŖŽ ū8!IߦģĢr$Å磭_‚=J>Å{ē“ē#pJžo‘ūä;sM>ģolgąo’?~ ÓŃ\¾zŌ¦ņ×wLś]¾w{•"÷tXĪj¬Ę¬Ó#"WkĘYø•ūI`FD®‹–X°øÄuāĄZK T§aįGšaN0)AMi‰”ŗ¼e›ŌÄqœŅwL:ĻŌż²2‚9ł» ųˆ#³ .˹ģzÜe§ØSźioĻrÖÉOśīźćTė8ŠĮ€œwņā&ķąÉäļF[pę:†ŠÕ}U‹QŚZ1Ō„Ė ‰Üg1Vš£Ęgv§E šóŒNxoąŒŽŪó‚0fN‹Ī¤ĆīUä½,ü›ØŹ@ēdQp½$@¾®`1ѵĢõˆx|)"]JüSk«KxB•c4¦õūüČé15lÆ&öń&ź£p#c)DņQŸĘŁdU×-„Šeśž–•Źv˜|0ˆdAƗĖE•–—€u|fæßćvcļBmģ5tx­o=c‚z§ģ?Ń«‡ęˆ\Š”aKÄXßAfo(6"‹Y–Ę—%ķZˆ©jNШǶŖŃū3]č·)=łbŃ?W{äæž­=y0“ŰAPöē‘Ręԃ#¾¶’‡haZ±če\|pe\ä$ č”±-Ė÷+ß\Ķf ̦[O’Ų8xn ¦¢²®2ł$҉üUöéŠĮŽ×*{÷÷Ō&v¬…1~§TÓ­:¶tÉŖ“šĶł¢Lø{®Į;±ōr—*©/žWŗz\źÖ‰Eó%–¹ŠFåzm@ t™§Ć˜ÉšW§;'(ÅæR#_–Aęh6Æo•Ä1]Ā6|Ø9•9Ə­7]j‹ł0_„ł”ŪFƄ–»ŲBė«łŖ—%™‰¦P馮ĮFځ»M+š9Š i ü‹zJõ‘m֚Rv:°M*¹øķ"pņä$°Ė>MW”$žEiń€¶Ž|‚æ(ńVʱŠl‚™P#Ģ£÷ωøō‹˜o¶­:-|…¶œjÕižs_¢”«j+ś¼2(ŸpV}—§:iģ.…`ÓU;ō ­x‚Kīąé S 'É+īX&vm–l\Qü§øNź¶Īąß¤Ø±Óelb­ud„ÕW߀–•sĘŲ‘łŹ3ö<Œ/Zk‚Wœ—5ąOę„=öŚ$†qWˆžA9!8Ļ`ż`Ō Īń€ž†•f‹‡Ź{'!«h`ī|"īß©hĘŠxę՗’°16Š+@ƞXŠ‚ņX’«ŻįżM?Õ#µĒ™‘½7IĄŃ1‹ĄDX}Ž•¢Ćą&źÖ|uē0ĆÅuB;xµ©!ęIJ< ;\Ԙԯгā™AŚZ ”B„œ ĒšōŠ”¢K²iʬš]u­“Ž÷&_TéčĒ¢œ%Sį³šdféGŠpöčŌĶ¢(åŁlåEōcųŚq“źÅ|Ŗ(?,iaœĀ£`_Bž~RBń—¾ķ½a•ŠhĘ Ā»;Ļ«†KŹæŲ™›ÓżŽ³GCy5ÉĘu¬Ļ倁vĢöŗfRdīó‰Ä”`ZD™Ü2ö :d­syąožīcōq ~ E%€PØq(•ŅĢ|W&ÄoĶ)Ū(öy )-¼Ųiżx# (@Ÿˆ=ŃϾž.B"öLI†”ńUKŻ!ÕnōšƒKÄ">C`N ‚|ÅÆ̊w £]Ż*MJ5·Ų·öÅį&…°ō/¾Ä)0kś1mĀ?xļāMŗŗė•Ą‚g°L@Eyķ’>4üŸśjמ)Je›Q‚Ų øŲŃZ‚ Šč ^æ īZŚÄ‡åŚQsįœŹŒŅ×5’5‹"OGąü4ĖYm:d$÷ž³ ė4Ś$D§\'ŪȰZ “–͹+®V™Ų}9±^Š£Ķōy·E‰R(Ąķ WūōĖe[/¦Älr„°žB§²a”“…½ŗ“ōØ$Ś:DĻŁ© b Ÿ|”Um§±4­üiŃ@+Qą öV±uÜ3į‚ŃKY€{·ō/Ó«]‰;Ōńšgš 2 Ø:Än­3([:Yˆ[ŗ«¦*ćŽä;[{rr§1ŃŖ$„¤g†|į`"šŚļ$÷cωÆ+-ÜźĪMtjŖŖ-ŁĆrāŗ^ć~cƒņ²łź]2hAź*Ā®łUƒąÕwõĄķ Ŗ«ū.ŚY%ąĮķ’Ew¹bżĆM= pVhėģÅ*“ŲՐ×ĀŃ:öŅõ°$źėŪd¬u"LĀx %Ø«¶ke žƒsķjQŒŲ^Ž*eAĒ ØŠƒE8Ä*³īaˆyļģĮ£zäwnņL¾7ŸĄØė§Ż˜Š>KžP,솆¤ŃJĘĪųž6ŠA\Ką÷ŠJl3ĮćOv€Ł"b\1ˆmõU$¢25į(0%„†}ź,'ĒŲ µBłJ]>ŠŪfĒU#/Ł–»G~B¶A3]˜RlĖŌ+„͟‚OŜ6믒wgSæ ­©dŽå*ńHk`5Õ¹i÷ļBšumżGü8ø]¢Wxo^yēˆĮ ™.Ęq&…ņŠ’ūfhJ×½Ų“{ČCÕ!Œ…÷õÄäÖ=łģ»ŃXF%8RļljœÖ65ŹdD r=“ĻŌ ×Ÿ‹£!Ż6xD–uŽįEČ» |£œ‡Še%8Dd2õ•ōb%«kßø(œ}JsÜyVĪ­ÆÖ…žÕ[k<čYbǼ C3ČķłżOśzŖßz„é§u1WŲ+Ąę)Ō&IŹ[“Kµ8|UæE©¢Å^YX`É;pF;y’Gx(ĪĆQ1-…£ZŹ®‡qĘ(GJ±ą®FÆSņÄ lo³ŗIŌŁ$­0¹J¢&5RĢņ¬Ī“z½[. -6šmĄś–gߣāĄ<ÜD9¹…į g¦_#"Ü—oŃ¢ŠĄ‡`¼A¹’ˆHå¤Āė„ė0ė:‚ĘtĖ­Š޳“2%62ewƒś«FČRކ"©½Ey ,v.y± ęéxƒ¢Ē^īgŚÆf>óQD÷÷Ż«6ptŲyųßov_±.€r̐¤µ›»ƒ1’’g¶ ō"+Q½€‘Eg¤ļ© 7šף0xŸŒ0™43ÉdÜv7?iĮ7:ūņÅ{w6WÜ' ¼šµÅĪ#Å*Ą½Œßædµ Š˜PT±Ø:§Žk:/ŖŒE”8>¢ÉŗŚÜeÉ# “Ąqļ8P¼īY·.Ō ŌøƒŠŗÓŌT]¼ĀĒdxŌMӗių=#:Æå»BA£ŗ`pOh½3×U`u(„«U@Į@ŖŽėŽ–ŻŅ- e+s‹…sļĒ”†ŗćüY2"Ķ‚-2V(9Fō„™zÆõ;ž YqGåz±‘﮹.<ą›üZhķT"Mńč]Ų“b]W4¦Ģ½/rś”9f»ķĖń3سØlµ|’šXӘ½‘6wQļæ6g›£č§½lÆźiĻöŲ³ŽZøœk-Œdšé”]*pȼŸIķQy0PéīŃ]ZtÅu2č§'4“^ŪäZd&~ZĢ”ųLVļļE–c3P¤7ī¢ACM|;a)kCS<ń“‚£ĀerCEaĢø¦•ÖµkжŒSĮ­ńtM¬š® ©Ā#³+(TY‹9Į1†o¬B%…C+ž÷ū[Ž'»ŸfĆ”Ā×4fͧ u•ōÆjMći(įɵ¬šŲPū߁+Ņń6xłU¹D¼Æå‘^„½O˜¦Øxn•a#Ny„ŽŌķq2ر… ó(ŪØ:*^Č[{–)K:*ļKÜĀÕ•‰ĶI‚p×ōVģßƚźāU£”CĆŪJåuåW+ ƋāOŪ”c÷­e…ö¢ bų³6„)¬JӝkķcɦyšŽ öDõ~Ųōq±>Ņ )Ć>'*÷»T½„śÕOÆŲJˆ°l»i"yļ:öß¾ō.)/G‹Ł<öŻ€óhoĄł–Ž€ßmī~ 7ąŌ…DM½cĖqõM·uŖ 7\ŅÖ[R÷ć—ZĀ„Å¢¦ī@ ± Æīhéż>»h-½Ó×UØStĀw”gж{ˆž 2搳­i*ډóö9JŽ¢¼¬ –źČłZ¼¼ ī­p“ØŽ¤rU· ^HH/>ép S,[jŽĖ⻽œ^ŚĀwf6ómjmŠ Õ³Ż×Īē0Ų‹ū‚® ©Š ä=2ųžŁŽ–ŹÓ8Źiņ; :YēÅM<äKŹl“ó!„5PuŹ}w¢÷¾¬u\$刉 ųk7†Ņŗń¾/é°ÖļÕ2Mv;˜¼żćpZĄŃ–Ńpn¼cū{ŚnóÉU–N ŗfämC,„ź`Ļz‘Śś{†+”­­b7Ī poʶ%rÜ0½@~÷Äå„×AaŚ MęrŃ›ŠŠ• ‡Ž]³ыņ6Ÿ-¶¤×ēń*üü[.ć|·PØwpā}|»;=će–¾µµeŽ{Ą±77.‘>Ż@ƒ„IÅŻ€‘× =%lą ʹ6]Šxü6cAØ-ĒĀ· jĻα\„õMšęm:…«vcQ]¾®^įøÉ|āģSĖ% U+lRŌ‘€£/ŠŒĀŌm(C·@'Qę‹jŅŲ„Ro«Mw¬ČS#X£Tū‘“"9āe²Œ(lgn Āeļ"ķŗĶäÖ-xźtī}šƒŁĘ‰¼ęŽ 1 UAŗn|pĀ»M‹¼ņ‰óĮŒlłw|ä|BÖ’[wxā|ź”ļĮßēļØ_zŸøG’å Ÿ8£ĻÜ3޼ģnFŸuꆦhpųŪŽŽ^’ /įŖb(½Ś}Ęņ&Pk­3÷.K¢ńtŽ!]I7žų)¤}ŹA$w%½ąEń«g`JĮ+g_•NļwHW»׃ղłJ: ąÓeXP%rnFŃĮH׳ńŲ6ń„ėų‡dDĖĶ®8Žé¢Č™øń  š¼Ā”Ō?qå?iØd#•×ĖAU8źĘ+ŒG£m¢Ö%Ń@1CUQ6§øÕł’y’ļ“.D²9ļÓkk‚U“K°žšĪĆĪLŪó>¼ åŋ”`9å„NÄ)K¼ŠjK‚ULu?G”Šü¢š(T¼ś3©Hœ ­ i‡r䎢Ŗ² x Ü©Ūģ ×VīcžOBErlgp#ŗ ”%ę$P7x—2ēKg*hŁqf»օši2ƔÓU`½+ó-1* ׋tc0˜¢M¬-JYhüHIÖ䭃¹*Ō=óQHéN„Ļ?IŒBJ”2ż²| ’œ8®aź QÆ@ĮyÆhjŒ€äŽmDŗÆ&)>Ž/HĻ"=" ĀÅ­ŃzĮ,\Ć`X·nŪÉb ' m0õŗĘ!MĶsdŗžč»‰ė䣛óüžN,J™[ĪKa¦.ĪšžĆK‘+O+w6ww7ż Ī'A•|ƇšąŃę£oąĮø(Hß±ō[ń¬y­tĀņ_:œ\rĄ6ś<žK šŪ^ė~]‘uéŃį¤$ū’,©¾:Ļļ‹CQį­rž6ŌēõœÕ°aŲĶq¾JZ"f#ŗŠDˆö1Ļż’ µ¶éEMå6K§#ü‘&ā+ÉĖt`‚ w9vӂSĶć„øv(ŚŁę“Y2oĆ?ź6ą ž‡ƒz ’„OŲ8Ȕ›ēNs:¶ ‹Į(×Ę^tŅ»3Ł3Ųňł§“cM1Ęļ_D½ĀćūR‰%ķł•TąĢŸ%҆ą €åŁ&Ń Ļ™Ķ|²w°ńia5“ŽŖŅ_9{õ÷äŪ¾ćŽoā“Ą_õŚH²“JlG:tƖ*„<ę÷¦j$UȊ-Ś\3Ą§ŠAēa’ZײZ„„}ĀģJQcßą‡£lÉ噁*śģ’£”a ֋VŃUiOż 0jQųķ²“†Pc“åļŸĆ‚qBŗ?ZU¢äi‰¢ōøšPłlčؚNöČCōQņæ.A(墢Lģų ј”zŻj’kæNš6ÜĘ #Jy5¼ō„ĀŖŽ×97ڲXF£V AsJ Qż€xĒܶFć©‹™jšVÕé$Éeb@ULß„Tb ĀŖ“eĘ2ÖÕ$łĀhü²|ZƍĪ/KĮēw@pZŃę‹ćå§c<™Z‘Ä×ht”wĘĶ”ø_,3#‘×ĀĖ ”ļ–æPBÆNįt­D÷Ś}‘ŪA`ŁĶN÷œ­}³sŠõ ”’¾K ×-TbqŪŠx¹MĪ$ļś79›°_(/æĮˆ|—lüEyuꮲ¹ńDQęCUņāxŗ*×Lƶ$b9uĪŠ‚2–•ŃvÜ*}£>ŹG-Ēll7mG £Äm–ž“*óQõń`C&ęw*÷?UžēÆŹāī|hE…yŌR‚ŗ^RańgŽ0K{¦²e‘g5§ßēe:Ģ*DuŒyĢŁ8Kéńlä=2.¬ üm@ĒF»ń“HźPb:Ÿ«VÄ!\¦SŽøgśøĮłĆšˆ÷Žq(å3]@C⠬ѣŸŻ: ;„«¾~”eėūK‹°ŪmŽ„oŲq3ƒNéu­/1Ņ6qE§%i™°‹×±>–ļζŻägŪpŹQpjXą”?q*ͦ’ωewC{š³ÄĄ2Dšå~ŒxFčģ„‹@ģŅ—"Ēcm&Xõ’ņ™u_D›ĀWŹN±¬Bayü©Ę>U°cį}7üļ”e“g„«õ¤@ünV]Ņ®Õ×A!ß®/±ąAÜŪžėyõ >ųN¼ńä|ō°@r=9æyŲ'ŸŃ8ržĖփžĮ- „ˆy„ę,ąA0˜ÅōłYō. xø×ėÓ,1+C žŚÜāņš‡[¦.ņé--®2ˆ¬ĄÕįŸÓ”Ź'Ī’•£ Z`깊4¼xŲjLęāÆĆ×^š~ä6’Bn ’ĀbÉŠ^š-¤o¼žķī‚аᬁˆ ū–,<Ą"øiĢ,®ėÅõd%Ō”‘¤’Ĉ“G{q!²ū ˆŽ-«”’Ļ5uąŽƒÆ“ŗŃē£ž•‡ėj?ŠIЧä\ÖGqÅ÷ś®ó2ēĢŃW›zõK«É4 Bž_GŸŠŸ~€†1ūjdĪ‹z>£ Ģ̌¤ †*h±Š¾šSžøż¤ąŠĪ<4uåP4•Åa=ōnœ!üžP(OŲ>};ø Ų%5˜2XZŃhĄ„öŽžŃģ7aEŚ-x^(:œØ·ÅPdGž@K7żŪÉĖ֔N³ü­Ø¾Ķ oĻ’|‘L·Ó|ūļU‘s( ¹„žB„nĻōv+PO8ŌĘā ¬2IK–“䑑źĖb¾«/D5:æČX'dĪ6z‹7,—kŸ„š3aoĖ(UĶ‹Ÿaµ²ø{PėRUŅ ‚NB'*Ø£|ä™qOå"BžTōŚ( -¾0RRĘÅt Ցł™=åbcŌ*ņ‚ēUHļęDœņU>ˆĪķģžisē_7wv£Ķ'’¶ūčBĄgÆüqóџä+ÜüĆ._%X„ƒ`˜ät»…pU>ą@łnų:Åø•® Nnt“ĖŻŚŠéU¦eŸyĢj±g|$‘ēęYµź:Åļ^Sjū¹£”L« «CķYķ.Ø4¾ćL£Õ„„D©nüč`6Z? S¦šsn ¶ĢŖØn’xSĪ'dPĪVb­“)Ÿhsæł6CĪā,|¢³€ĮdĪū@„Ņ~Õē’ĻŻ!()Ć‘͹ÓꢔAF)µ¤Ūp Ÿ·ßīżPK i5P s2ū'[9 briannesbitt-Carbon-f10e22c/src/Carbon/CarbonTimeZone.phpUT÷Hƒ^ÕX[S7~÷Æ8ńøŁ]0¶”3Ž ¤a&ŠL / 鎼+ŪŪ¬%¤’Ąļ‘öby/¶”Ķtź’Ż•Īõ;ŸĪŃĮėłtŽjõ·¶Z°×ÓHĀ8Š)ąæs"š1Ø)…"Fœį«ą3™Š®ÕĖŻĄƒ_DD\R9Š”‚ƒ‘~Ųd…xtsA'¾ ókĮuśŽČ-÷ćöΧ›pŪsoĀo{¾źō.8Żag’³¼Ź –Bi½›9ž×pUz‹UĻKžNœN ū²£y£œ“LÉQ‘>§Ģ5K1‚no6«K£`¹& ėß²ŠT†’‚DčŹG’D±,Šl©øł2‰n)CB½l[¾ūCHf³F«Gž§Öćp˜Ku=˜Q5åšJ‘§±®Ē0Ō”M᣿0šYt–ˆ/żÖÆ„?-×­˜XW(/RŪ|zœ/ŻÅbÄbīSAU?²“޶n84ŗ€tZ„•pMR !E6Töˆs,®PŖ†rIėp%ń£Ē ėŅÜ£@Č3[®Šģ|-Ó®U XĶ”SČ©9Ęs¢P*%2(ņj‡Xļąšttd ię³ŁłµÖ.õĒNŃD”óÉ5µüåKČV “ꋉ_4+óK¶īWV>¶źŸŖr’ĄNbŽųčb5+„ ’µNGęhŖĆbcyżJÓS7›C0nYӖoß/.ŚŲ&ˆüŠŽ pŽhkęhļģī “½5ēe1Žf‡˜>ܟÅ3f·**RéMGŃ,b8xIŘsa5=©L7Ż¬—³.‚,k*<čĆO»@;SœĖ-a¹ōŹŗ…Zōϟ“Š-Śj—Œd±ÓƒōÖ.ģa8ĄYäźśƒ’žųŌwöꦖXĢ}©éĢ·cf¾mś*jŒ³øIzÆ=ĢĶhÆ„aCį„~&k ijc¦ JśT„xŌ`]įP¦™~ų÷°³lĻFŹ?Guē˜Ņ6„õgš¹GŠÖöR\¬’;6C#é_sĮqNj{é}ьØ`Je-MU¢*éā¾Į×ēėžÓד‡|§pź‚÷oßz~Vņ„Ų³BĶÆÉÓB†Š0QŚ ś»™2|ÜŻüų-V˜œœL‰Še›ŒŠ¶t¼ķĀ ‹Ėģbł < õż‹>"Kowœ¦ęVK®ķ™ś}ŠīM؀ā’L‚qˆ9ÓÆe2Ÿsa."=Kė<žlļ?҇'ü–  Ī' ;+E„*Ö(ń„ÜÜfÅ{GOćH|=°üĄ‰Né¦ćęZ7„ŗi…Nµ“.”Ł[×xpĘĀ 5 Üuō½NŖ%GÅś^s#’[®Y‹ä–Ųļ{‘܃i6*˜gR]6½åōf_Jo5Ż7ĶMš„³8½'øē`C‡…ŹŽw™vÖ܍ń‚żõAį¹Vkšå7`MßWü*½8]Ū9ŚDųŸ\”4øłŌ+‹ĄXZŗ°hš>ŸāĖ×E[PK i5P+ briannesbitt-Carbon-f10e22c/src/Carbon/Cli/UT÷Hƒ^PK i5P„9-˜\½6 briannesbitt-Carbon-f10e22c/src/Carbon/Cli/Invoker.phpUT÷Hƒ^mRĖNĆ0¼ē+ö€dGj‚ą˜¢*āP©ōŅ@‘ėn‰…k?xõßqŻ@Sڽؖfvfw|Sum—$ŠmŠvŒ#ŌĢ,µzŖ„' —ĢZ˜ŖwżŠ&łN ׏:ØgÓ¦žM‹f>¹æƒHOÜ1I ī Ń¹Ć¬½āNhĘ«įŚ¢Ö”^ą"ŠĢƒ0cŲ\tĢ„§CcÓ–ZĖŲm/æ«@ARįĒ€MÓ^uW7*ižēƎćŚöżR ~°×4"ūŸtֆXņ ~ ė,µ(×Eq¼š40†Ö\+lv;ÜĒöN­ģĒeü™/ŅüńźŖ I”,C@"äʤ$PĮģ:Ā”—2…¢?«ˆmQŹ0r2>U£„ėM§-š0ћĒ…_®eJgB)‰d˜ņV™ī±8…õœ#®p•“Ó@ńųą6łPK i5P0 briannesbitt-Carbon-f10e22c/src/Carbon/Doctrine/UT÷Hƒ^PK i5P¹>C > briannesbitt-Carbon-f10e22c/src/Carbon/Doctrine/CarbonType.phpUT÷Hƒ^½VļoÓ0żžæĀ+•’”v‘(ƒ‘ŅŃ2mŅ@E+ “LČMœÖĀq‚ŒMl’;ē$MŪ4CL åKŖóŻ»wĻĻN_f‹Ģ²¼NĒB4]`ž]"•¢…R™ō=oNÕBĻvĆ4ńb†µ\P§-ØDRĻēD*šrßŌ6TDiØåċf˜yTJM¤÷l’e’IžRĀUoÆ’üÕŽ‹žŽ>ĄxĒ ‘ a1Ky0.Q–„e-^ƒķŠ)WDÄP_¬±"Sšzø ĘoĪ‚ Ć ĘJdp4“JąP-#MŁÓ›ŒČ`”ņ+"$Œ’ī:$™ŃB1U%!“gż²<™H ‰P¬yhrќØ"mİ”`jĒõ‘4}ęyMQiA”¼DõżŠ ņÕ;«€×3FĆ ģógc™›ˆƒ…Ą7ØSĀ¢µxÕFķ¬üåÖX“3ABjFĆm¤ »Z¶/Ń”_ ?&1ÖLM–«¾ģw°ĀU @fX€ņåłŚ+–«B¢1rvV4Ż5ņk2ężVķļ6ėA,•NžŌE¶c»hg8D1f’Ü ēßF!ql/p‚čiązvµœ56­nŃŚmģĶØTN{F`&čŪĘ1ŲÕUČuĘŅp‘Į+“j­]’ß$N«Xo[bµÜ ĒäŽ<ōę\g.å,8˜O:““Éūńī'֏ŽAcĢ& |B „²Źkō]˜Ÿ 5Mį3fˆ\™×Clf6”ØBCžkĘŠķ-*C”K…yHŅՎū}»×5JŽĪ’1³‚ū¬wŠt"kīŚf±uæÜĒ#oęūĖŅŖŁ ķP ±²ކ\«ØŽ$×»Ŗ…H¢†; ®*xŒ)+wX9å9‰bė¶ć•Z…DŪö×^ҋЉO}¹«ķõꁗ"™QÓ§°{x†%łf}ø’ŃXyeļ .¶±¦}³ÜpĒ)|™o٦Ešģńgk\ŲFøĘģålöe•šד ?4(ų¼ŒŠ’'”+ēļ·»ŗkuåŅ;ė7PK i5P8Ę0%:ØL briannesbitt-Carbon-f10e22c/src/Carbon/Doctrine/DateTimeDefaultPrecision.phpUT÷Hƒ^­±NĆ0†w?ÅI0@$j‰ŅRRH­ÄŹŠ 9É%±ˆĖwī‚śī8iŅR``ą&[žļ»ū|’čj'„L ljeß ø…šŁQ*e„¹Ł$o,ØÖP¶jM@”ŖX·6ķzé(ڜ½¶(‹L5R$y½øžõē1hłj6½¹›Ķ§³EÄHa•Ar*GX)Ÿµöu=P–Bä"‚µbÜhƒk,UhųÅc®)®!>Är^ocˆėĪŻų0.Óūv•Ą*:W\#{ Œ”ˆŽ“@ŁāpyÓĘVYƒp@OŚ}rŹ+Śņ—łĆ£Üo²&n7,Y›w? „|qŚu™Ā¶ÕEß“슰)ÓōÄķxYö±ŻÕgä’öōČĮŪNō/vU“‹>cśØ3`¾[";ń PK i5PŠ0f¬ŗI briannesbitt-Carbon-f10e22c/src/Carbon/Doctrine/DateTimeImmutableType.phpUT÷Hƒ^uPMKÄ0½ēW xт¬Õµ+ˆn/‚xZ<õ’¦Ó6Ų&%3EöæŪ“ė Ė:— ó>ņfĒnB&‰€¶²ģ c)—²5܅źJ»A6½ Ōhœ‡ĪPh[$6ĪęQ{BQ;ĶŽX”u„ziˆ’¼^Ż„gs?Q“|™„7÷Łmš­&)¬F„6ŹWĪ–ÅŽe-D Ćty^†!°Ŗś ŒŲ/µ,žŸ^Ėķ׈T¾+_(Ę­šĄŽČd§{E'QĄOF[ü'ߦśK“÷ŒĆŃ;FĶXC¬Ž‚y”māŸoӎē9PLŪΚÅ.–GŽĀтy>§]Ļ“Ų‰PK i5PŽEĶæĆ@ briannesbitt-Carbon-f10e22c/src/Carbon/Doctrine/DateTimeType.phpUT÷Hƒ^mMKÄ@ †ļł½t`»Õż–]{ōX<õ’¶ŁĪ`;34PÄ’nė*ˆ˜Sņņ¼OŽŃF“e€V–ü‹ “ŖQöĘōNmjnŪ0šĖ@I¬ĆK˜Š:AI}Ļ¢.ųżŅż§Ń…V'ēŁt ʉ$³ŽŽē«Æ}FFözSä›]q—ŪYcĄÓČ©e|¤© ¾.æ-€$Œ?g]žOOuõYźgšJR®ÜČK0“ķ@"ų;D~UöąŽēYŌׇWĆ|PK i5P2 briannesbitt-Carbon-f10e22c/src/Carbon/Exceptions/UT÷Hƒ^PK i5PN1N+u“F briannesbitt-Carbon-f10e22c/src/Carbon/Exceptions/BadUnitException.phpUT÷Hƒ^uQMk1½ēW EšŃžÕ¶V± /moÉf³»”»É’LŌŅśß;‰«+Bēfęå½y3³§ŗØ š^(™*%Š[s‹`2ĄBĀ’ŪÄh*‰/žĖa¼'ś°°ŠkŲH—(D˜%!kJ Ž„©英‘(óe ĀŌßVå×)”JHķHRgĘV•ŃCØKÉ©¶Sr’½®—«ĶŪ*PÅł°ą{ī U­J<Źö źŠģĪx+$ „qŲ1Ó¼’ŽĘ?[ł\„¬ƒ–›2ęIźR˜Ęt­w¼Té³Ķ}%5^u™(¹s°ąé‡Vmä„NŻæ?ŁŠøźX’:Z/ŠŲQS;·ę“}^Aš¦søDĒ“ä Fi„ėč×7˜ÖīÆčŌVī”ń®Įć[ū„ŽA7Ņ":ŚnÅyĀ^TžČįī‡ķĀZ6jś~d;Ł¼ÜŅ"&“k¾;Śݧ¢žrÄč'Š2Ż»FhŲR÷§‘īȎģPK i5PüŪgeö J briannesbitt-Carbon-f10e22c/src/Carbon/Exceptions/InvalidDateException.phpUT÷Hƒ^SMÓ0½ūWĢ”R?TZĪŻeY(]“Ś ˆŅŹu¦‰EbGö¤-‚žwĘN҆4,ųČžē7ofžoߖY)Är60ƒ/™ö°Ó9’Kéģ(CXK·µ†Ōw™ā‚±>QSxļ“4š„~«‰ąv¶÷†·–Źw ōĮŗH“«ņ”-8fŅ$k…ĘsJ³³®¤­™C™£ä³½ĘC¼÷éq½yś¼ TQe’ą =$Ś“Óۊ0ƒ¦Œ#¬ŻŪŹ)äDI»FčY~[Ź·ĶQarł!*Nu>ø‰ŪG³—¹N޹“*ŠP'*T.½o$į9x$4‰’ėmńSÆŲī°BĖCåĶ•až,šH øßK”F“6GĖų/ŽsnÅ[,ėbžV8H\č#&üńŅ5ļš[F®RdŻ#[FX8ÆZaCÓõ@Śt×( “‡¹Lņ— ę•÷ŚVžĻŖŖ-ūŒķgTŌó³jė˜Ōśę„yŽĄėłÅZ„<ÓH[3J ¾{u©ŅN„ŽBøinęRŲ&«Õµ¬ÅV0^ŌxĆę6–t';nDĻ/2§5łéj~‘ā‹zŁt©rfŠw½N¦HbŅļHCŃmĢ’jökC8`ŁkI_Ć?$ufp'ńPK i5PT» "f§I briannesbitt-Carbon-f10e22c/src/Carbon/Exceptions/NotAPeriodException.phpUT÷Hƒ^}QKk1¾ēWĢĮƒŹ¢=«mµbA(RhÉf³»”»IHfÕŅśß;‰®+B;—y|™Ł£--cćįĮŽKå!W•z-w&,%,¹K¦”ųä…Qohļ‹<9Å5l¤O"ĢŅškś S?œ[Ÿ‹@ySU ŒżrŖ(øĪ RBjO”:7®ę،NĄV’Sn§ä>ν¬—«ĶŪ*@E}Xr„=÷)N„ Ź ö KŖvo'$eQģ˜i^KOņ[+«ƒ6pł)c Q]Óų]ėÆT¶pESKWU&*ī=l .^„S&»Ō@PźĢ’9̾PÄm‡Ā’ k7:ēŚŅœĄköt—č‘OGøiSį:zĮūMOgśG‡;ō¬“;eīĒ×6)„.„E4µŻŠVdæ%ONųpwI·¹ aO¦#4w“ŽÉäȤL汑Ł/PK i5PĆf5ĒXM briannesbitt-Carbon-f10e22c/src/Carbon/Exceptions/NotLocaleAwareException.phpUT÷Hƒ^uRK‹ć0 ¾ūWˆ”‡¶”vĻŁy•.†^fŽ…ā8JćÄ6¶Ņ»óßWv’¦ ¬.Į’ņ=$=<¹Ņ ±˜NLį£Ō ]!š×IO`  a%}f §Ō§<ąœ{cūXMąÕki`‹!ÓDšÅē³į§„¹²õc×śĖśT4UŹŗ‹×‡’@š*­Š¦4…õµ$mĶ \…’sG§ōßŪfµŽ¾Æ#TŅG„$8ɹäuÖępŅTr…µŪx…L”'± adå÷Vvė³B¹Ā½ S]÷é¹1GYéüÅš ŻT…Ŗd°µōf•¬šå$=^ė€gB“‡’ˆ?8ŅÄcLaÅ"Č7ЬŸw¹¾ōĢK5ŌśĢö†Łģ7*śÖ„ ĮmŒ¢żo=ƒļæ&®bä<µmB×·H_×d¼^–QÉÓ~ÆzćŽ{ÖĀĆOų1f7ąq!L^k9iŹ›ŚqM‡}‹ÓćMą Hū4Ü!¹ŒIŗ8¼¦x=[āÉ.—·ņīZ†Übƒ|čA×|Nq Ž/uaĶeĒ3'/…݇—&Téģv7 ŻB_ă1|ŗ,¢­'P#•6Ÿßu˜ žY[”õ%¾Ä?PK i5PtéY5“YI briannesbitt-Carbon-f10e22c/src/Carbon/Exceptions/ParseErrorException.phpUT÷Hƒ^…RKk1¾ėW ʰ¶Yģžķ¤Ik”Ph ÕŽwEw%!ĶŚ.mž{GŹ>L t.zĢh¾ĒčęĪÕNˆĶj%`?kąØ^ōöT#ģ„/¬į+õKVøęŚX¾PKųźµ4š„”ŠDpSÄć½į£„µ²ķē¾ōĮśŌčŲ5 (ė~{]ÕŅ”Šh…&0¤9ZßJŅÖäą”|wŅxNļ¾=īO?±UāGµ$8Ė„äuŃ–pÖTs†¹Ūy… T&²ad‹éRž….b…C»t|4'Łčņ‹Æŗ ]e…jdš]ś€ļ­s€BS†‹?8’Ū1V°gä;EÖÆū»!uϐ-Dy¦‚1ęxqØXī’ź¤¢N6ļŖ“!øŽy“č]ĶäĶ_Ē5wOŚv”ÆŪ¤ÕuOŽjTŅžņ¢-‹‘c>ŠąMƒ[Ȳü •÷ŸņÉö †w™`Ž»ÄŁqwŪĮd„$’l«C`2Ų¬B‚¬/Ķf<·”«ä”l·×ŒŁ¼v1{Hö“ץl€}6IŹlŁėČ'ęĖ]yÆāPK i5Pܲ|M.Å2 briannesbitt-Carbon-f10e22c/src/Carbon/Factory.phpUT÷Hƒ^ķksŪ6ņ»īĘ3–:²Ż“יNҤõ9Nė»8ÉDĪ„7—"! 5IčҲŚäæßī ©‡¢d©b„ÉÄEQ»‹Å¾±ųįĒA°³sųÕW;ģ+vŽ—†ue$üp2Õei_°c®;*KĮ%ooMöw-yĀ^ ӑiŹ~čąŪŸx«Ņƒ@ÅĻÜ­/”¦u³(bŒ“ģõSʓE2‰ŸLŗJĒ<•*i±A$8\»’bHß{yz|ņŖ}‚"ųŅ>OِJ“jŁÉR²”Lūš ĄnT¦?°‡; …š=*Ovv2xžq¤L¦Å“œG¬ĖƒTéKė‰DhžęčĖĤ< „±æčÅpՈ4•IĻxŖüĄ³T…*Čæ²Īˆ}„»ŹĶ€ąšéGO™Ÿb‘öUčcžhoģŽ×ģ)ūŗÅv €ģ){ÆC>rÆś@ƒL€Vī‚°oŅßįEóӜ„cq–ĄDM‰uµŠį#3ģŹ€…t+ü`*cš—¹°żóÓ.`3Ā5BS“xˆĻµ@ī@VBŗ"#KĶ5l4Ł2b¤(Ś|BtƒÕÖcJķj!Bs&Sš#DŃM„LMy-Cƒˆ E—gQŗł4p¬ŁE6vāqōŅĀ“cš›ė6’*Ķ×mRžā;(“łTšSüõĮR4Ō ŠĻ˚ ©ZRVī­ÕWīM%m4käj¦vś-3`…f:óGjb„Ń A&šņ[ gŠāS—G`EĢK‹dē4v­½ƒČĀ.ēj“(ij Łņ0>5źN¤įu¤”q²'’=üLóÄDģ±Ŗ„¹7ʧķ×kÖ0`,2-Ų‹±H@ރ”¹’LęH4›Ė#ĶKĀyŠ:–És2I8ø Öv҃›įuO^`ŒxŅ˜W°L’Ģ♦Jn©@–¹`*Čr87Š–ÆH'Bɦ'Jfž“§ˆ–K6Q½±2łIć.&! błaÕō@ā%½\ MīC‚ęp=3«ÅöŽø¢$ˆĮŠ’vYšĄżŻłq łeywąž0hŁ“}&ĆEk±—c9Ę…åØĒ6ļĪE§-ü^aø÷¹ĪøŁĘ‚= ŁF|¶ŸMĒdńŁF|¶ŸńˆĻf˜Q•ŸŗĀ5ģfĻĶ0¼“a -–§ ½9ҽ ż“ė@ Po>Š5«Õ0YŌ „įHü’Å‹Xl4Ȑݸ&®8śåŗĄ‘fqńœV.Źćg7…!Ąį‘‹ń²Œ™•óŸHēŻsf/€U:<øtĻŹqō˜uĖ›3›„5ēźŌØ·„¬łŖp|閹XʞŌ3†Ÿ —©ÅH^‘ĀCtĄ¼æ ˆO8:kŅfyŒ*w³e!bX茭ļQj»žŠĶ%Ģ;L÷»D®nž'Ǥwvx†0‘ü.²ōé¤aVĮ Œ_r“žh­ōšpžć'™€o&ÓPŸ§EŅ\ĻBtÖ$ŠüųyĀ +Y3„\ =<‡ą l-xz5ęXsšŌ)šŁ°<{‘źŠlė+Hę%H©3‚V=J×5ĻhÅ2z˜(Xsl[ŠÖ_ü4Ē’„Gž “¾¢LÄz†Ÿ×É h|…ó± .›Øs:ĀłŠøC=jĪžšØį_7ß*Ģ‘{Ų¦§ĒCCÕ¤8X%ż÷Ń-i(ˆˆb=ū³ī“*÷fYæ<–8—šē±9Č„Ń"³ŸV+‡ ą2蹤!<ķL¾ Ģ„¢Č–ņī„oņ*J›Õ÷—½™pßĀÆ^Qr„,,¶ĄŒ‰*ųż1Œ?“GqW%£Ēøė%įž”„NžZéSt¾»ø/§„±ŅėYÖ¹ńļ(UŅG«']‚X~^ÅIšu fl6 ŗ;hAMz:Õ1k§\§kĀ-÷t¤¾µj&/¢&’pm^*¢6“0‹ZĘØ£Ō½żQ7śÜų[t•0üNoWˆŚq_—ĘĒŽF³TA‰Ŗ„TT;£.½Śė6 “­-hĪ0—€č[Q źŸb4•åź%W‡ós(Å2ˆėXq¬9“ ³‹Ź“ƒŌ–Ō-Žłŗ-Ä1Ģ1„Fv·å,č ­bDzĄŽf}T+£č£“OÖnŪ-Ś,ź“{*Yłµž•|GI0–®¢I‹9ĮE¹ZšÓ8ĪRō!×tIu&ņŒŸóß°%ĢaŁ+ÜÅ1?S”ģJ|¬?°RLbĪQv „„nsģ<õU1æX¬×W:v ܲk‚&Ó’ĄeŒōŽņf£hˆv…öiSÜģŃ?`oø6ūĀåOa_[SK`¬Ć½ŃČeŹ1ŒgXĆ\ʁ•WąRo>e-lŲ“C‹HĮŹĀ‚rį÷œ‘‘&ķ†4ę;žt²”)Ci|ĮR"§1æžÖŃÆ±ŲņęČ©kŁ£Ą.ĒTn  ź2łÓ£©įˆW‘’ņZ&]ś³&ÜĻä50=q“/”†e®ÜĘnn”»“WŌꦁIŚ›gÖĒN§[#,€õ„¬Mķ=@ µ{œ„ƒzB»c6{Pł?%µˆjnŠ™[,alk]“9Ąą¦C“xŗ r`Ž­ļ“łdĄZāE·"TŽy?¶¹w¦“oqm öšūĻŗ H^»Ėpóɝ°FŃżvŹē„,ņ¢?ZŽöŖhжŗ^O7,r„“Ž5Ąń}FOæÅžĮ<˜'9Ҽ#ƒipŠ\“TnešG”ō„n«Ī z?‰r,\X{ä«W —E\ŗØd½1"ÓIŅ‹¤é/ÜZPóįńš[M.Žgr®ŸŒß¬YnµßVūmµßCj?ŚoOe{kÜp«+³n£V6”į6l»K‹śhMl*f^_ ŻV_Į¶m”QiĢßB£>ćµ&!ˆå"ˆ“gĮ6CĖÓø…Įóõa~õ•ņ׀mŠņ߬•0'Tl'GÅłæ V ¬ŽåąOė.-€…•Łu„mDE’HĪŽ€$¹ćŒH4”Ls)bē\نŗ~‹ģƒįĘń6oØā6Ž ŒšYü– Ś@•Ž‚ż–õĄ^kŚŹ„ļx‹kdł7NĶŗ„ńVW|«4&žžĘtq+‹×-‹ó–Bļ u7\džJž­Š©4¦…%ļ‘-¼’rIWeTŚé¦­‘5 Č?ŚÆ_;"ļŻźQf‰±+©ä©qś¤˜æ·ė–6*`ōŲš—.ńŠDöwMć}}k©BžŁ¦„N)…NāŖFņē÷IĀU&Ģ|{ÆN”ɏ ¤\&>& #qĒU3Qk¼¾¤ė^)wĄ"ū;žŪøń{ēŠ ‘č¦Ley§iqĶćufļP-F_Ā]_ ³ąļbKqŪž-wŽŲ¤–ÄVQ\‡@źQ›ēčưùbA„§KŒõH²ZĖϜX‘ks[Įū0Æł6ŸĶ‡łĄŽQij˜:Ģ·Qõ+N±”Ż`KˆkMŌ/¬¼™Ż6®UiLǵ"p¢&óe¤'¹I­"Ģ[Č„}öüäÅŃ»—ēēÆ/ŚēoO_ż|ńāõŪ³£óV=“Cy`ĄŲnžr ֑ŪGėŠf [”ė«x|3Ļń0`˜Åƒ<üWŖ–©Ļ(—oöhOō„-×G­ø ʌué­Šę·Ō¾ø¢`ž¤Ę¬.½6·²„œė»“ū}c7ƒ’×Ss¼U)•Ęģœė»óū߉¶.į/š®qĨ¾Lź`Gć"Ÿ»$/ŗ> K{”0¾|8µµš\(5“Ƴ°W¾^¶K„Ņ@Ó|wXjŁķĪŽįQÉAĮ*øÓ6Öļ2xūė.Īz‹u#„“}½wͶė3`Õh•%!bęK5Hʓʨ¼ØcŚŽ_Ą øPŻ Ść3ž®Śµ“mŠ_؝ˆ+|æõńc&ŽŚ4"ĆŽõ’q‘ÕĆ v±ĻØĮjkߣÓ~u‘›wŚ_ƒŠŻŠÜJ#¹V]ŽSąĀ¢°āöVłS/JĶ+Lļ/źE§/O˜ŽzøGuiź÷@aśĄå“Sc+M+[Źā/ö‘’‹ŗ8ĆÓ žŅJ1Yb{Ÿ&yx¬Ļư5öĒąÖ‹V9AØ,Eœ!öĮ2*›ŽUʝ~šĒ©C’(šMģ™%nē\‹:†b|üų±^ł¤±m’ø' Hø×Żī^+?Ķžłó3žØę8\Ļ}*.Ś®ę“zį’¹nM±ņ+•~‰Üü—œs-ö[Īż³0/»hW<Ÿ˜ø&;8ؙE6…k¾Jk‰īį!; CöŚŲūŖŪĶOę«ĻŲ T–ąŃ”ßÕlYūøÓlöŹD ”a1ßßgĻŲ×ĶZŖ”īe¾[Œ2¾äKLœõ[īlėŃ\tqi8c3£ ŅZ€ŻKQa:"|7OŹ Ļž “J²ø#tĪIĪ®"½ųE’@,Óōż@ņ®C‹ÖÜdFL4ŠÜĒŽ„x2Ļņś6eQil›“m[EŽ>V՞¬‚6…Y+ēĻyņ Ž‡—:[±SmTļDTM;7Īܕ߮€K¶lRmlµÓ¶uęmćO¬›ņól×ēźŻźéåš!¢ˆė‡Ų,TĮ3xwøCG`±·ĀvžŲĮ“Jmq×.}üŠÓ>JמģLŽź*ł,žć¬į”>Ozq‘ļ¼o8ggģk…?Tžaן†…e|ņ›š„OpģāÖĻżgå‡7?Éoż¼3ń…09`ööϳź‰ōŲ?·1 £/˜ęÖšņ§ˆ1ł wą9’[>øł·o˜’čŅ}OķģGß8•Ų㹋ė%,ļ"y;× ·Rü^3hJ›`ÉØ=›Ię§µ¹įgļ tqŪ,:¤#s~¹@īVŲb”{¢:]č ōĘħ-Va~ŖįQ”Ÿ)Ėu/‹AęO„…ĮĶzO§ÉćĒōåĘĮĮAéė3`qOšņTu,B9?ś›Jvʾ4ö&×ē’PK i5P ęE¦9öæ; briannesbitt-Carbon-f10e22c/src/Carbon/FactoryImmutable.phpUT÷Hƒ^ķ=sŪ6²’ūSąnˆ‚=ᦧ¼]ņ8‚{ńöVŌf’0’+öBŲžĢ2öc/Rp©³£H§ż­Ļ“”źēIĀ"=š9fŒ«˜%2ŹĀ#U_›”gR«%‚Ć{WRŒé{ĻĻžœ¾čžāOŃü²!Ļؘ[K›ŁĖ3³±Ģ†š ĢŻźÜDÓd÷O……éP~ŲŪĖį÷Ÿ$ŚęFüP`ą„õy”i3a™f”„įYųĪYšęļ!v”ĶøŠ„u8SĄŽY&ÕĄōüČóLĒ:*~'f½ ūw“†ęįÓE?„"źxīa ŒČųłÖžDpƱÆ;l&3{ÄĄė˜Oü«!ą%Ü  Ķ_XiX w‘ż/,T{‘gūń„¦Ą8S°bž\šXßč>²#ɾŒXL·Ā3™ŅŻįAÅqÖh&øYh ōŃņ¹HHSˆW¤hi˜ŅćV›]ń$'BJ’ķGDO0ŲVq3–Ōķą&“f2£5BżRŹĢV׊4šŖXōyždŪOš}$cĻ.ĘĄ-:橹i믳bßŖźCŪ…°Ä_­DB=9š“*©«aå/¼ņµ¤ŃM£P7J§ßr źI¦#Ѓ‰&6Ņõ$‚Ąæõų6\|ģóÄ~#%.ž‘ĀÓŚwŠ ]%ĢõpQ‘Ōnf«ƒųĢźĻ Æń•“”š3ƕM8(fu³0ÄgŻ—jÖ² 52#F (Ž©PĄļAć<|, ŚķÕ”ę9Į<‡‡Šū¤;q8xŌn5€›įõ@^cLøäŽY-6ŗ„õÖŚųēŲpˆšō°n|ĄDŅ‘C½\ NĮĶę`=·ė…vaX‘¤ EI·-ķ=ĄžęāIų{%yŸ]1˜ŠŖū\Ę =FŃW£9¦„ÕˆĒ.ļß ^Z„;ƒĄš×…ĢX mSĪ 3Ły|vŸm‡dēńŁy|vŸiĻvXQ­Dˆaįö«ēW®dÜAåŻ™¢‹3ČŃŠ?½ŽÄå÷ö#”ܳFÕ²ŚX,-ŽśKžrõTöū/ K`ŒNæqŸJčO±Q<ķB3~„eĢ`óõei6°gc˜‹0°”4ń!F3',‘=ƍ¶†Ļ@1Į 0 ¤ĮÖOb"‹ęˆ“źų—ΐ†Ć~0$mŒĆĒ!r ģܑƲd"Ō¦©dG&õF}2Iå5 śNC\‹$č[™ «ÆU:öś¹Šīߖe]Ōģŗ(7DŽóŒnx—Šńļ’,üÄ(įLõõ:©!PB ‚Ó½ßh hé  ēhāČ„ĖłŪ€lō˜M@zRā˜Ā̳üŸ(Ł~qŠą Zўøā˜ńWȏšåÄS>Y;S؎ŸżĘ0hŒ—UČŸ’H2oĮ=RéńčŅkĒ‘ŃqaR™ń3u)uĖC¾i q r ©‘žÄ]śĖ`v„T±";b'7}Ō-½č“lHŚÖļVm–µÉ–’ŚĢNžLJ0¦®¢J‹1Įe©ZŚ;›vŗd&EÄĻŪļčöøjČ0Żå!?×±ģKü-t:9{`­8˜…œ#ļ LˆøB3/r…ζ+É}ęĄ ĄŽģrßuĮW¶ÜXŚe°čā”’Jā… +p[š˜ö1[xmœQŠa.[$¶ ¹Īō„­Æ„12޲·2»»č‡0¬±ŽĪdż…[ņ¦+ ö[§­øOÖ°ö7­·Æärö““ÕP±ĶG˜ė»Ća n0RÆČ*~pˆF걕 (=ī°‰@ķ>é°L§Ś=n7€LŗäŅŹŹ˜4X— D~뱃łńĮŖĘOÕš—åS”ŌØŒ_Ƒˆh,MID9–ę>e->ЧS5õP°ŽĻB4g»ĒBtō_ WsԃeĶ“t1ÖŪĶ•¾9¤ ¶cKŽ|Ŗ<‰éĖćL߬Ÿ3½Fźx¼iijŃŌēxÓÆ®īÆĆ( ö«gT梤cæ~1““!īŌĀĢ\$~Ū$Å©ŗˆ½’ōK !)ÅŚ•’ƒŚPX”pĀVŠ«’Š–M-MK§'V.āÕŗĶŹERKg‹cˆ÷§üR`b°Ł\źŲ9LįS^ ·'hA©\Ÿ“µ2ŹŪ=N’1ź&„M±88€Ä^qcŃ÷…ŪŸÜ¾.§–Ž€M`1÷R$)G7že-{)GŽs\I½ż8BpnmL"- ŹEØ9#%Mŗ‚4:žōņŒidciCĮJ<§)æž_Ģ£ß`²å§=§¾kä€nū¹s±: Kõ—=ŃćĻ^‡’Ėk©ZūōgC°ŸĖk z¢čB Ū\ūĀn—n”ÕÉkjó©AŚOÆlšĪ·FXźrYŚ»‡j ‚¤£Oō„(«c¶{Pś?µ°jnĖ•]4aģ#ė]T`±č5ž>°Xwg;m?0—øŃ@ÄŚļƇŽ"εBżV‰k—øpŠ>|ÜWĄy]•įö£Z±VŁżö&=Ģ+Łäe“¢ķUŁm}½ž>±Éi*•b8ÖĆ÷*=Ćū'q%0NrbxOF&²čؽlŖÜ(É O((RŻÖ v0"#ę&& øyaīQČ^±0¹<įęŲD)ƒhšNÕ ‘vøtkAĆĒO6Üjr…}&y@üjĆp'żvŅo'żīSśQ½=„ķm°ą(ÕWWŻy­œ+Ćlū·–µŃ˜ŲT̾¼¦Ÿ¬?ƒm×B£Öø{ ęŒ—†˜ ¦‹ ЁüŪ>d<ŽMc C ėćāŻ:¼dƒśPųf³°„1”²œē’å°k`wt(bŲw1(hl¬Üķ#l#*”’œµ‚I|Ē+‘ØBŁöJŲĪ…v uC‰ģ½ į“ćuŃPÅŽ YBIPe“‘`æåŠ—A۟×2į;AćZZž…K³)f¼ćĘõʎߏ‰¦g™1½¹ćśęÅEK”7–ŗ›G¾cĆ9ĻŽéŌóL‡‚÷HAHł ‡Ļær *ŻrSidņĻīĖ% “µ4# -¬½« é"Ä—5ķ\Ÿ•5gĔånė³R²¹v#³ķżB¹c µFżÖŠ5’ĀlŃÕcķ„ĘlkŹ®$1„Š%’RQZįŽnōwŠaāZڬ Ö^qkŁ y€ŽĆ²_$¶KÄP8/ĘyŒ«|žäżÅŁłéMŒ¤–vQv”Ę×말#©5ęIČ.Äž*Ts‚Žy—Žõą›QŚqä·V2$ąŸĖh;ģTBčÄ®„ P8“O®6bąŪMĀLql( ćRŸX,¬ÄŠ!ŹfšĀÖt~I ė^hĄū;žŪ°ń{ēŠ ‰čgLēE§iqĶÓufļQ.F_ĀŖ/Ź,Ų»ŲRܵ§GMĮŸ76+%±U71`zTcńŻŲrøŠ,JštC"‰©INŹ`ś™WK'rcb+iÖµ(óŁīqü·wģ y<Ė„Ćxeæā[Ŗ[_k&aķĶģv~­ZcŽÆ•€5/#9ÉmęaŃB.²§§ĻNŽ<æxńņ}÷āõŁ‹Ÿß?{łśüä¢Ó éPč0vÅS~£Ą>ņu“>i¦Ōś!‹'4óœvĘy:*Ü•l™ęŒJrłvīL_Śj~Ԛ¢ģT—Žm~+ķ‹k2ęYlÜŌ„×ÅVVs}“õæoķēš’frŽw"„Öø9ęśęāŁį÷e mÄ£Kų‹ź‡o\’ņh(UōhÜ$Ąšāļ óųE?„a©F żĖĒsØõųB„”5ž…½öż²Ū*µŖęūćJĖnv O*Ö2VĮ½“qv—ÅŪ_öqÕ;¬ŸhmÜĖHČä­o¶Żœ»Ęč\ÅYHÕ .Q!”ÕERǵ;ą½ī様ń÷Ł(\«PüB³šDTś­O“0sŌ¦ (ö¾LĖØ:y°Cˆūģ¶īöė³Ü¢Óž˜īŽåÖĖuārA† ›Ā±Ū[łO³0uWfŗ8’iž¾U…{lČÆ05 Ēą6 WBØ,0Eąœ1öĮ4*ŽÕ֟~Zų©C¢( Mܙ%¾ņ?mDC9>|ųŠ,€BŠŲµ<8ÜĖ~’ SœfĻĀł4 r¾gžO„“¶K{¾Õf?–oŗ®­öĶ‚’Ϧ4GŹ/tö%Róß ŹuŠļ(÷Æ>@½hķ£^ńtfįŚģčØa٬Å.m$øĒĒģ$ŽŁwØcź~æ8™Æ9c?ҹ£CækŲ¶±ŅģꝉBĖA~xȳÆŪ)ŲyŒÖoó„I³Ąi„Ņ]ķI¦Ī:Wø®BknÕŽMńįtdNÅĘzbČÆ$XĢ­ĻŌj/] <…źķ±īę5÷Š’­BCĻŽ 6 ½±UhŃKd„ĶB™N¦ŃīŻhĆģŪ{”ćü–Ņj“A8?¤›ß²ä]œ‚Õ‚.ÖµDuÆńxg¬-/ū£źņ5iųˆ=ųn9Ģ„”/1sÖoµ?°ĖGóŽÅ•ĮŒĶŒ–LHė„ ģ_ ō ÓįūEPĪ~žżĄ•ŹÓž0%•0ūŒōņ‰į1M3ō)ŗ-›s“[1Ó(r?ŗ†āÉ<÷H뻐E­±kN¶kyūXW{²ŅV­<œ,ēŁƒzļŸėģŲN½QæQ=é4Ż8sR½\•ģȤŽŲI§]ėĢŪĘ_X6ēŁnĪŌ»ÕŅ+ꇀ"¬?c[°XGįźxŽĄbĻ8–ĀOJČÅu&T\|°÷Ē>idtę²¾öé{/8~1ƒ¶‡éĆöžÜūPK i5P, briannesbitt-Carbon-f10e22c/src/Carbon/Lang/UT÷Hƒ^PK i5PŅ—1kńN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/aa.phpUT÷Hƒ^-ÉNĆ0†ļyй*”< ŗHEØ–s4q&ńØ®mĘc¢¾=NŹÉšńæ|öę9ŚXUĶz]Į¾,'Ų”3¢(„ŌlQŗąĖʜq¤ŗhgł¹‡Waōp¢Ō±*lŗy|ńe Z›pyś—‚,ACvLˆWįŃ* ļĮ±!ŸJ„‚\P9ųˆŽ°ģ~™¦Å÷~ÜīOŸū9jįS‹ &č9©p—•z˜Xm¹)ģ)d1TŠś¶™_8{æżŁ‡ÉCOf§ 4.u9Ń %*-v¤lйė-@H³ųbųÉ,m»;~“m½jŪŻ[]~qõXżPK i5PJBém…5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/aa_DJ.phpUT÷Hƒ^„TŪNŪ@}ĻWĢ›ŃD}ém)B\$ R[UČ{'ö(ėŻx/$įkś/ż±ī®JD‘@õĖń̜9sv½ėO_ęõ|0ķģ `nk¶0eIpŽĘž‚« ŽŠZ…T9ʆé[å6FWd v>1ĢF¤†aƒ³]ų9ˆ¢Y·D›Įēż>•Ņ)‘M&ĆĖĖįšd»©x×AÖ‹uߕ]{µD8Eƒ…ōA:;÷BG<āŖbé։q%qÉÖv\b ci1F×h&l w‘Š£ ę–T|ū†+›¦LŲ‘LÅļÜčīķ—O¬lŗĶmŲj×{n}SXG(¹Š€•H.#“h;HIIm„®"v–ÜD˜…†õ¬ŃL‹żœq‰(ŅźŽ$RÉå-JD—²cS`‹õ†Ł¦ś©oھ~ƒ…ćgāKĮ21ÉÉ„ūŃ9K+ŸĄbń\Ŗaõ_BS6ÖåA*×Ó<Ŗ&µ}µĻw¤XŃŠŠ$Öūõ"Ƃ©éXęļ¾D8ŲqRG{ģĖöŹp7Taļš"„ŃĀå°`Ā‘ߞś†7±1Ė€'Gk£å÷ÆtœūņĖ%Ģ_ī}Ü»źz[žķ^¼‹ł«µ»†:üæ6ųørü¢|żz*毖¾Ūž8ųPK i5Pߟ¦$5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/aa_ER.phpUT÷Hƒ^„’MO1†ļłs[@4QÆ-„„$ DˆÄ‡ŌVZĶīNvGńŚÉŲK~}mÆ 8Ö{>ü¾Ļx÷ģūŗY£““œĄSĆ–¬ü¾Fq`–ą‚ Ja“O•+¬ič{CūQy —ĀØaA¶`ēą¬į…ö”qĆŅ“ē©õŹHZvJAiÖ{įŗq€ŗÅ%iė-õŅH‹Ž>…µ"ō¹¦m¼7æ™Ģ³ ł\ƒ¶h”bė„‹ĪQ[vÆxvk:)ÉUv& wĒkŒŲ/įü ®)£Wø£“xĘNWŃüR¦DEö¢&z©£ŒėDŠą>Z+,Éļe'–_čHhÓ±äłōę!Ļ‡ŁˆōŠ?pv æA4ėG“|;O©˜žĒD6ŽīīFæüŹNcń¹ß²Ö#6éVvßéĀ5 ŖóŅŁōpŪU&Ä®kVßćŗBøÄ[Ū7ą+‹!ŗG‹0eī£Ź¼GsŚéxü{ķ¦ģHÅŌOnMŗÅŻ?L‡Ų¹õoīŽįr"M| +ń$DÜ“w2N®o^[¢Uå“ĻøD¬āx3§žŽš„ ŃÅģX Ü`/Ņ2ŪXæīŚMŖ?bįųƒųĮ(Ž"é'ķ¤›D“`ū(Õ²ž/”%‹u¹—ŹĶ2ŖQķsŖ¦|ßŖ!ŚŹAWKĀS›@,ā*~ā2üįĮéłųėąPK i5P1ƒH³(; briannesbitt-Carbon-f10e22c/src/Carbon/Lang/aa_ER@saaho.phpUT÷Hƒ^„’OO1Åļłs[@4QÆ-„ü D‚Tj« ­fw'»^;Ū$įÓc{GŠ“ĒīŞē™÷~vrōuŁ-G£ÉĮĮą{§,”&ˆėك]€ļĪ‘+k¢T?aKćŲ›Ś÷ź}8c…fä*å=U©<1±“~\ŪžXZ/-g£EŠj»Ü²j;hŠŖ&ćb¤YXīŃ+ka© £ö¬hēnÆĻ/fó‹d•ł|‡Öč QγŖ‚§ÖŹwń$²;ø¦ŌdŲIŗaš= ¾³ģ>„żø¢‚^ą’­ńŠ82Óä|ˆŸ¶5jr'-ŃĖŲr›m˜|`ČŒŪ’i©±¦øÖz¦=¦UPLP–Ó뇲2ćųĄÅ!ü%Óbø¢+ąĖ±HY¾ĶB1Nīī&æāWęĆĒa)śˆŲÉTqĢį +¢u1Ć#܄ʦś\µ­Ņ߄ӶA8ƍrnhĄ vpŖ¦źĀT1«”jģ{uK+"“·?pėrÜTyŅYś©z;ģnpóÓ.véā›ūwxARį,į!tɖ`I}ĖZ=5QrfX!̱Æ0ĢqøÄuČīX…ÕŚŹ·ŠÆŠ/’_X¦’Ų¹NŒ{qoq_ńü×ŖW濌Š/£UierĶnåTō”)¦jKČ;]=±jõāŸņĻ\§yJzÜ’nP˜ø†`ŠRķKåkł½aūQy ĀØį–lĮĪĮiŅsķSćF„iĻŅÖK#“ꔂŅlĀućuŠKŅÖKź•‘}EčkĻL»xny5ß>Ģ*śs :Ų”…Š­.:GģŲ5¾ć½[ÓII^؊fĒaĀpvҹƈż֟`A½Ą„ķ˜Ä{ģtõĮŹ”ØČž×D/##uĹN4 r”Ā’|,;±üLGBŪŽ… ĻgW÷y>ŹĘ¤Gž‚³ų=ЬŃfšķ,•by Łl6¾¹’ņ_v›O}ČZo±I§²»Nļ(XØĪ£³ė®2!N¹®Y9„פ®.pĻÖöp L”ŐݔE˜±÷Ye޲%ó–tXżĄƒ*3v¤bó'·¦_]ćž+ļŻęÖ_µ{óœœ&£É^r•ģ$Ńm“zŅNĀIõÆÖŽh]y‹IgR"Vqŗ¹SD:ŗ|D…čbu"n±‡“Ģ6ö]»Mż,€æÅK$~b'n‚&`‚}Dµ¬’ ä!¹Yå+ėņ@ فP"õóėpÅŌ&)‹øŽX†_7°žŽæžPK i5PJqńÓ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/af.phpUT÷Hƒ^}VķnŪ6żļ§ø?( ²döcpėti¬ ⬀‹ƒ“tes–HƒńŒyϳŲōÅv)R”Ē˜÷žĆsī?”7o×Ėõ`p~r2€ų¼äJ^!Šļš)²³DxĻŌ\ Jå+¶Ą3ā:śQ~ ļgīPϹ1šfīĀ_…Ņœå²¾Ōk©”ŅVär½U|±4ĄDĻQh²„T53\ŠSXWČ(÷ÄqÓĢ»żųžźnz多śĢ’Ų0 ×Fń¹5XĄ†›%!T»–VåHFESģ¹ėŠĶ½“f)•ŗń÷p­˜ųśÆ$ž;ŸøĆGĶØIķćO•B(,|ŖPk®-…Ę*³Š“m‘© F si…?%N=Č;ųL4ŲīŽ6U8kóµf™`5£w¶ėŲ™õčĪķÜś¹h“Ü ®Š%vq¼źŁuTēvˆ·IÕ¢QĮŅ® ¶ŲÅaĻ%ņœÉˤ"ŠKŚ dmoi:Ō)“Ūg„/ßv Ćm¹ō%Rʚ]/2ż„éMhÖęlŠž+Gc¹iæW²[g”ī¬ūSœõš6^¤š¦S‹čĻ2 †× ¬°ŪU„’õ£aÅ%ł†ē–U¶`-4G:üŲĒžhz\_^–ī“ °EMŗq›üŹ]˜0Œ¬„RķüÉ×’TWrsēųnż‰nŅ·Ÿ=÷Ƈa]n¦=dØuzh<>ŸLΧ'[&ōĄ>¼Ć¾}¤ōœĀ!ņCh/gŠ"\A½ž4«qܾ±Ł=] l²~j¼g'š/Óњw€õ%Ž®0˜ķ³*¦{Z~•^s“Nlv˘~€Cš®«J‡sū¬y© .XՀ„¹ū“ĄŃwĀÖsTĒšwŌ 7z@ĪŽZŒF#x»ō?÷#ųń‡cxKµøć=¤ž1;~ŻH’ӞgT¼ąčļÜYv?ÉNiO²¶ĪęŚ[0»aĀ2ÅŃq®q®b0”ckÜąr­xÕd»Ÿ+<ćĘV~piV«ŻxŠkƒ®Tü¶22 ļäSLQūqZŃ£¦„éź %5Ö±”“PF("ųēą £—ūnŠįmūŸJ·CĆķpĢ…Ć/ćxģ®,‚{µ £)3>ūÜ"iˆŒ‚KpźA8H½}©ö’vB^ĒĖx/ā5¼DT(¹ŅĘ}ÕeŁ}B_u_E—÷$‡ŗ(žńS`Utz‚;‰Ó ēššzš?PK i5PhŁ4·õE5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/af_NA.phpUT÷Hƒ^„RĮNÜ0½ē+ęX-^õJ)-% X*uU…Pä$“µ‰Žķ]ķß×±½[RŌS}ńĢ{/óžG¹ų<“C’,f³fšŌ čÜ=p2 0-Ā5§RIU¾Fę“£ü¤:…Æ$ø„GŌ„0.ʱż"]« «T„·Šü ĘvTjŲ“X·ø¬”Jķ,e£ØēF(9‡”Cī°­Ą’īįžśęqu3ŽņłLĖ ģø†ZhC¢“kŲ Ó:Ęe׏R…ĪØöa ”±$ń}A8t¼BwW–“Ųā į/+”(²ūļEĮŅo˜ŪL:‡—ÜI{$Q ģSųt /éÖ1©L_ēŻ!nj¾×‘])Yóõ(É9?”™:–?ėĢi‘bóLūX­ø čß…n™£ .,8°0=tįz&ę±÷£z!’kPƤi^ri9 E·Xұq;p]q5č<‚b¼–VÅŅv”ø²k«ÕŽƒ}‰46ß6FÅņQmp†:ŌÓD“¹\,f o$Ćb6 Ćb£°ƒÅ,ڳhżg m ·ÓB5Åø^ļżįĄś’:īÉC~xņHzwwŽ÷éü-±zÜk=!õӝ³Å“ö6]ž„ÆI6#WC›ņÆšÅ+`œ!°„XZdtI®Øœāä@Ųø¦e»{;ŽēćjµõS ˜¹ØšT•fXX}Ū“ī%U±Ō‚ę­ģ`„“J”ļŹB0Ž/§÷qģwŗ¾}`wožPK i5Pqē°¾e(3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/agq.phpUT÷Hƒ^„S±nŪ0Żż·)1 ]Ó4-š¤H€8C“„)‘DŖ$ĮžŅ¢KQ “€®5uš–YmžØR”G:•ƒĻwļŻŻćµ’:”É`00„KŹų,"`l‚¤ღ‘œ nB^ˆ26ܚ¾ćķĀ[ɇs¢fLk؟Õīn\”ĒžˆZź;!m!?"šD2—, Ē1peZr_Či&ų’ˆ »a$³yg§‡ĒēĒu)«OS¤!C 0SZ²YŖ †Œij£]‰TzÄ4ĀVģd ‰N%$%š»’$ņˆ±^*»!;’|L™$ąŗG§ļ]wģL›É8#ø€9NL$Ìļ:€+ƒ:×£†‘b4W-C«t•s­Ŗ¢&Z/ “ņnė“ŹÉÖÕU¾¾£r¹ ÅeŃ”ėĻńc€ćEU„U¾Ź«¼'ĀUTHŻJ1*ź¬0Aµ©ŪŚ"Un‹„1iƶ^ōÆäƌ’o­XpM7Ć©µ›ŪžžV’ņņŽ&w‚įŸėŪEyæŹ{®!¼śŗ¾ h3Ļ.üšłżŠ_Ÿ:hYز ½nژJĖ€°Hō„eåOæžÓ/e„łixa–VŽ÷X}ČӌDvį=Ō£Zåå]ˆdāŁü¬\Šg3ķīŗfX‹f3¶Ł…)҈^¤v?©åśķ;ÄM4j—6)~¶mč3©“kž„+|·~¶ė‹ jæßvĒ6dĆg—6✜ģŦšSąā ²§Tl £ÉtņĮœ“Į`:Ž ?ŧ‡~óG6žÅ57æŽ}9ų PK i5P3I1ŚńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/agr.phpUT÷Hƒ^-ŪNĆ0 †ļū¾LØ}&@Œ"MBāp]¹©ŪXĖ’ą8T{{ŅŽ«ČĪų’Żc“±Ŗšķ¶‚-|YN0²#(gDQ#Ø%Ų£ōĮ—•9įDuŃ.ņs ĻĀčįH©gUŲõĖųäĖ“6įüš/} ²Ł90!^„'«€~dž|*•~ rFåąļ :²ūešWßŪaß?Ū%jåS‹ 3&8©pŸ•˜Ym¹)ģ)d1TІ¶Y^øxæżÉ‡ŁĆ@#f§ 4­u9я%*-ö¤lйĖ5@H³ųbųÉ,]÷rųčŗzÓą$Ż{[—oÜÜWPK i5PO DĘTM6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/agr_PE.phpUT÷Hƒ^„TŪn1}ĻWųmŪŖĶņ†T ō’"E4¢©B•5ŁÄfwķŗFĖßš1üć];i@•‘{fΜsfœäķūV“£Q~t4bGl.¤eKY#£³ć˜^2']YhE©¢‚Ž ąÅ!»4»E»Ī±·‹ž+ µŗ9‹ŠŚōDK_׬ŠmgäJ8Ŗdµ,PY’TKmpR«cÖÖ”{”øīūn¦W×·wׁŖ÷ē8¶ĖJi‘ ļ°dkéUČ»ÕŽHBeo6†Ž ļ„6ö4ÜOÕh ?}f¬ĶŠŃ§–‹āźVĄłĄ±ƒ”Ų³tŽ(Ę@Ē ¶5Hgį•x`š‡—ē“égĪĒYŽjLūĶŽŁ·Q`φ mĘŽÅTŸ¾éŁd’Ļfłż}vܗ†#k“r"ödŸŠYŚ‘"Īģ£oe¼~é ]ēŠłĄU…)«fŪØ\ĀÜĆŖņßS4Y¹›¶Šl‚;!UBŻAEŗļZ䖖ė¶F£Ēč/z‹¾¢„č&‰\OŗQs#·F¬JčŅNęaœĮ/ ±™ßÓlÕÖ4ngi6«›6ŠĘė%8Ą§s%”Éę>éDd/2¤‘ļ_Ŗ†ų’‡h)uœØø^ņĄŚ³½ŠÕ˜@”¢ĮōØ×齊ČRb|‘ŪYŠ›Žģ“Š“^ÖA’‚yĪj“–¬%,jŒč—Cæ˜śÉWkƀžūYf,š=Ų7ūż Næ¼ęY…r0𗳂ž£v*æ–æ=« ö߃žįšĶčPK i5Pīō6ņńN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ak.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ Ū€Ih>Ī•›ŗÕ,)ŽCµ·'ķ8Evžædū8Ł©(ź², „/ĖzvłœPBj v(mšyeFØŹŚE~cnįY=œ(¶¬ ŪvŸ|ƒV&œž„/AÖ >9&LįĮ* ļĄ±!s„Q9ų;˜aŽż2Ķ«ļżø;œ>KŌŹ§fŒŠqTį6)u0³Ś|“ŁcHb(u+l½¼pń~ūчŁCG=&§ 4¬u)Ņ%f*7YlIŁ s—k€&ńŁš“XšfühšjSćŲ¼¾Uł7÷ÅPK i5P?`ęW™5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ak_GH.phpUT÷Hƒ^„TMoŚ@½ó+öę$ŠA½¦i@Š€P5•¢ØŠ¬±=Ę+š®»±ų=÷’'’’Ug½ *ŠČ„¾ĢĪ{3oŽģ".æÖeŻė ĪĪzģŒż(¹f_#£Xƒ2LĢ”ČnA„R”­`‰}Ŗuå'Ł)»Q»GrcŲeźŅkA©4żLVW”t"U'TŲõše²Ž(¾, ‘³5ĻPh) ©*0\ŠsVÆ{įŲt}³»ŪńżĆŲIužL †5 YεQ<µsÖpSC޵“*C”wfnC×;“¦”J_øsĢģ›AŖŁ`Ą³o·L;hMH_Ŗ%YK³Öu ×^±…Žé4«„`“(¬×!ÅĢ*Ķ_šDį/˲$Ż}O’~4@Ń§ŪŽĪŁĻ£/ņūźˆ}¹ PĻ: z¢o0ŸF£č¼#Ÿ}ˆ*)Lŗ¢ŗBˆß~×ķ¶n_‰GÓVd”Ąå +6NŪ׆V; å ā¹ą:Ti«eƆ+4!…xھRåU Ž_øŽćį¦Ż6²”•­¬Ćwy<å)tW=ā…µ4S;‹2AĪā·?4Üåä§ŻźvKNC0`ØŚmAŠń"µ©w6§I~Koęš.MÆjv7BuŻ5„8ŽĒ…Ón•xŲ9÷Ł(ŌLț7įiŠ]ÓÜń»™ ā*‡Ķī¦ jžūŁųÓ š§G»²žōœ„ņ9Vō9¼S>Ų‡ōƒvŖAŅ īōŽKU\ü—PĮ•6 I%²Hœj§ö)°÷EŽuŁATUØxĪIŌŽwńčfų‚}Gt‘I+č”Ąš«6ĒHŽ“żóÓ8`S©mµoÆ>ą ł {æłŻnŻ£ī(ɑ¾ēÓϽæPK i5PO2ańN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/am.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ £H“Š0Ī•›ŗµ4)ŽCµ·'ķ8Evžæd’<Ū¹(ź², „³å;‚|Ī( aµ”.ų¼2©ŹŚU~gīįU=œ(v¬ ūn_|ƒV&LO’Ņ÷ [Аœ꫚hŠ÷ąŲ¹ŅA&TžfG˜wæLĖęū8šÓW³Fm|jQaĮ=Gī’R «Ķ7™=†$†rQæĮÖė Wļ·æų°xčiĄä„Ę­.Eŗį±ÄLåf‹)tīz Ņ$>~ AŪ¾?Ū¶ŚÕ8µĶ¹Źæø{,žPK i5P+ŅhŸłõ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/am_ET.phpUT÷Hƒ^½UKo1¾ēWų¶mUq-„ś@•Ś€ B•ålœ¬ÕĶ:x½ŚP!ķ#‘@ØÄC QTEm¹ńcüO{ɦJrAģewf¾łę{ģ]¼Õq:•Jmn®‚ꊇłØÉ\ŠąŻ!B"ŽDŅ”h…ˆ:÷Ąeļ’­VĆgģYtG0ā”mź×™”h±®ĶeL.«6o/eŠu. Q3p]dóξ`-G"ā5ĖlźłPŅkrŃ&’qou\JĄ·Ēh×ämn¬¬mß_ÓTFŸtˆD]ā£ó„`õ@Ņź2é@“ū<6…B #¶¦;Ō¹·épį/čļkč.µčZܓŒ Šx SĮćr›øŌ_nQzPå¢eh•š‚ģcA;.±)¼ķ@ųlĪś8`‚"ŒW7īa\µjŌ«Ā[óčQE“Zi‹¾…n.e.ćŽ4kuµ¶µU{5o‚;éĖjƒD'˲TļPÅG*ł¦’P…߁ÜRżžŠŽU8ģ ß©šTEŒQż#ˆØ°Ÿß«äŌ|õžYž&¹;žŖz@u©¢Ė4įBD*ü ¢OĄœ£bØń{ŲõZE?ŹØä—N/\妰;"G[+55¶“A/hŠ ßM©•įĪJŚKŖ ½]JwdæŲ†“½TIFz¦ā¹P`²OTōY%é‡/Tų6’¼2-#z®’sčåJ¹ņ]-ŠJU’MÉ6óžKA(†y7™š%ÖÕµµO‰0ÕÆēƒBk0Ś.†J%ł`Ę'Z”hӌ‚ĀZ°įTK¤b½7&'CL<‘bh€Ė}üNs’ö„Į²»QއēśĮķNE<ØŲ‹2(zbn†,:!FšŲÜąĄu<" ß²ŒĀ™&x"E¶ÜĢƒßĄČŠž©č™Š‹-É{,€ą)4)̧6÷FÖn‹ų§¹¾ ŻžTĮÓ©2d‹§ łÉŚéū“-SSš6öx6ĪpI_ßä=8„•Ł•æPK i5PW]FŒšN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/an.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ £H“Š Ī•›ŗµ, ŽCµ·'ķ8Evžæd÷m¬Ŗf»­` _–ŒģŹQĀj ö(}šeeĪ8Q]“‹üĪÜĆ«0z8RźYvż2¾ų2­Mø<żK߃¬AcvLˆWįÉ* Ą±!ŸJ„ƒ\P9ųˆŽ°ģ~™ęÕ÷qŲ·ĒS»D­|jQaĘ'ī³Ņ3«-7…=…,†JѰĀ6Ė ļ·?ū0{hÄ섦µ.'ŗį±¤Bå¢Åž” :w½i_ ?™… ėŽŸ]Woō]{ŖĖ/n«?PK i5PĒ–ŽŸžŃ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/an_ES.phpUT÷Hƒ^„TĶNA ¾ē)|[@!Q„ž(„“@% Tz©*4ņĪzwGģĪ„łIŽØ}†¼X=»“@J u/ćńgžl'sųiROƒńŽŽöą{­”Ŗ!ąs‚Öƒ)Į×'hs£Ł%ļ±¢ĒĘš¹ _¬B ×ärå=ęńz¬łjüHšö(…~5¶#*CӀ4“¹UUķu’¤—Ō„±-zeō& !ū¦Šf]ŽåłÉŁõķY¤źōł=ĢŠA”œ·*ž ˜)_3ĀŚ V*:±ćŲaĢż|m¬;ˆö>ÜšŅ£ÅŹ°^ø0¶Pp…Mƒ²†›Å/KCøÜŻ ęaČśÅ“¦GČCµ_5*—ū‘ؐ;®t[ ¹š3åńĖK„;%–|°ŠZœ K.G|Ź`šŅŽ„‡ ,§ē߄ecŅ#ŽQ6„Ÿą/ė§ä2ųx”\ū²sd§§ć««ńž²aŽõGÖķ딕ÉZi²†I³’r›Ģķcg Ʊé=óĪ!ė WV£LrcĪwNG^QĖ<ńb¤ÉŌfśģG¶5ĒÆ ŽāŸe%IIN“¤ōõu,%¤ś©rŖšź­jĶˆī œ/Ū/L«tŸŚķR1O½„Č>„ŽęniŚ›¬ŽźŽt˜ca^‘ƵĀ%ż‹V˜:±&ĘÄöšŠõżQ©¬ó‚©„)EdķŲŽ%4łū ˆĘۜ˜;F½ś°•';&hž».~›ō³Źę›_,~ nć\ø @±)ļytk £5.Óg[0›“W[ƒ‹ÅÓ*»Ųˆ Ų×Ć5?RkØ%~Oj^åx üŖøčPüöPŠK0Š7ЧŃ+ĶĻ趀£kµŲåņß(Šm}Œ#itńפ« ‹‹Ū¢ŲJp·ūašPK i5P"żBńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/anp.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې*”ų8Wnź6Ö²$8ÕŽž“棳ü’Żs“±Ŗšķ¶‚-|YN0²#(gDQ#Ø%Ų£ōĮ—•9ćDuŃ.ņ;sÆĀčįD©gUŲõĖųāĖ“6įņō/} ²Ł90!^…'«€~dž|*•~ rAåą :²ūešWß{»?ž>KŌŹ§fL0pRį>+ 0³ŚrSŲSČbØ +l³¼pń~ū³³‡FĢNAhZėr¢K*T.ZģIŁ s×[€fńÅš“YŗīŠ~t]½iŠĒ®=Õå7ÕPK i5P‰­B:Ó6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/anp_IN.phpUT÷Hƒ^åRĻk1¾ļ_¼L[Ö]¼j­Õ¶B”ö ^Š”!;“™ MĘ$Óeož ° KA ^R-k)"(ŪKūÆäOńåĶvŗ³ÆœĆ$ļ{ļ}ł¾ä-?*²¢Õź.-µČy™qMž3kA•!2!&cdŖžE{4eØõå Ń"y¢8d›é7†,÷|ø* ”¦ÉžŹ“ō©TH””yN"Y O3C؈IĪ#&4)©śŌp)ڤČlŸ³ömm®mlæŲšTØĻdԐÕ$ęŚ(Ž+ ‹É€› 2 ]ĖRE ŠQl×;ō½K“I„ļūż]ŅĖØĪhšQµšJ™ę,U²,“׍MŠ™R B•¢ĆP±"§ƒ5*•ęūlA±×%WŒ„įśęó0ģ]&:pA›¼jų‚ʐČƕ)„šĮz÷Ywg'hcb·Z‚¾&›vĪ;{źģOg滓7@ Š74”sg/1žčģ§ :pvŒ1 #gŌ…£jwģNŽw¼…dÕżGĪNĀVŠÄŁ+œ…Ę3 ® ±ź32Ž$*Ż č 2LjōNŠ“jx󟘯½Ū‹éšęŃ+‡Wųæ¬ūAĪ4Ń@Ļ‘ļ 4ghėėmō½³×ęĘhiž¤_Ųz8½Įłœ÷6Ó1ļbī §^ę•7’Mēä5TŻÓēāK”LĀ„+mBÆĖGCFźŗw=’Lń˜³~-vŒUMuuÕø?™pļh&'ī.>hżPK i5P=ŖŸ²Ł2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar.phpUT÷Hƒ^ĶWŻNG¾÷Sœ‹J䄱ŖQä&i!P rRYļβ£ģµ;ĘuÓ\„”I_¢µZShJ­*ņ$»oÓ3?»;»Ųõ¦^%Āēg¾óĶ™³gĪ>ü¢ēöjµÅ……,Ą¶Ėbp˜G’öHÄ!t€»žØز^]z}…ūœ5+#<£q—q»Bü2@1äw­Š¬]æ # äō=¬°7ŒŲ®Ė6xĢ¢AŒ!'Œ|ĀY4 ēQ‚ŗ=FrŻĘś“µg[kJņć.į0 1Ų,ęėö9µaĄø‹ä‡żČ¢ȖdÅÅŚå>wĆ(n‰ßw`™SVhĖƒ9‚ŅŹŹ¼2­w#ā2–cwĖ ]Ā<„ßÜŲ^„{ś7ź} »EŗĢƒ9_‰±|Ŗqž“o‰Ąś»ųĻ…¹”PÜ!™b^²ūÄīĘšŚ5Ą§ž¾K’qś.¹Ø7“ęur’\Tt‡Éu—™œŒ„®=0=P>Īeü]Ó˜Dł˜\&ø—ˆ{ŠX'Eģd”¾Aݱ©CäćōuÅļ_ęŗĪēµZDy? ²­)‰źšč10æēįyĶÕæ«7 ]yļUĖ ū\~”üŠŹśĖ„W†ŠTĀ©H–Ptš„„¶±Ł“SiZŗ×Xœv±3ÆI’Y`!‹ą¦oE‰Bhja2‰QįY„  F"f€Ä€Ņ70‰’ÄÄ^e,ʊ¦”˜ĘęOåkój£ĪHĶlņ²ÉšßIÉ7üP2„¦¦A cåY!”!ŒÄüļ\l÷7½½˜Ö+ćż5Äf&N{‡„qŚ;¬ŒtĢŸx5ŽĄę<ŻĒXūŸ²¢Y(¦pB3ž%ݟĩ3ŪĢLņŠ©ö ¬Ī°(ń -X•ĶB1…Õ™ø„Ć$V˜‘­åµJJ8eąEö“8óivļ;Qčļį@yH?@œƒä'_£8œŖ×„Ž3ĀUr^ĘéRœ ©Ž³Ķļ l·™ćqŖąŅ:¤1†Čš”˜\‹ŁFzšŠ£(ł˜œ#Šū’‹āQÅҌdŲė°rkUpµG#óķш…öND­~ŃĄ¢ń”“ĘłńB3ļ³B7łt„ir׊Hł¹j>,@ö{ÄÓ;}#2ŸėŹ®1Ēo¼8- ZR.;ŅĄ6ܒŸqņü¾ģØ&ai×SqɰćüĪ'˜ÅåŒĒ¢V¶U!Œ’"Ėŗ,ĘXąGYn¤ęLiń’¹n„¹8‘ ¶Šż.n(q¶Zž 3¦Ūµ”åx\ļT˜TŪu“K‰G•C5¾ی;%&öÕ,ā‡,Z'ĆĻp¦BĖ‘<üžŹ~a„ōr³Ć¢Xœōp'tЁč~1‹½rV!å£õR†!?óōII•Tol«Ŗxś“åūŗ“a˰“āødT¦ÕÅĶÅēų”L™ 6ńėęėvøm`®IßńwįP2Āį„&S ö<8B”¾ģ©…“BAEą‹x$Y?T@x"ęSž`K9 Š ^ƒ8¢¹KF‡¶īøÓ::9=2R֟ ‰‚!I Ē%™—*ڃ!S!FŠ{"RéSlŌ³f›fBSū!U”ÉsÆCē° Ÿ"į‘ˆ}·}”E¹¢ŅLŻƒ˜*ŹżQ ¾“%ąTjH$š!žČȹ愿z?bž_„O"šōyڲoKŖRɁHIF®¤qD|ЧŸŹ„]ŅIæ„ %]·Żłģŗ §Id‰SƒÆ£īäKIx·_P–>¶„ÓnC·ŪE‹ų85>Ļg ø ‹:'»É&zžŻčGTv²+½ŠĻšµž#^™»ž™ę×¼OķĻl²…Ęk„UõJ’)4VØńk¹¾že?O×U¦ŁÕ³ų:YxŪæ›ąS[S””ŽKē„ėŅsé·ōZś,–ŽJW?CJ/zd“Ž(v£Ņ~°¹ĶõŅīg²a–9‹ļĻ 7ĆM/ōÓwŸ]Ū^k|‹<é_l}Ā +[ĖŃw¹}[““ß|-÷ö{›üRcĄų’)L&ŹE W®‘³2ƋhĮēI&jЈi³^Õ*ē»o+’PK i5P•IĆ^P~5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_BH.phpUT÷Hƒ^QMoÓ@½ēWĢĶm”qį„”&Ejz ½ TYkgÆźģšõŗQøU¤QԁrH żP•*ædżo˜];q7,Ł»ļĶĢ›7ć½·qW*ĶjµU8 Y‹(ą©@ B -"=Į‘ņ/HŸ60פļų»p(įpB){ž”P _ ö‹Ō÷BZ” "šE<’¬* ¼ó)O°%„ÅÆAQ‚Ü%£C[wÜiœ)ėO…DĮ$Šc‰’ĢKķĮ©#č=©ō)6źY³M3”©}—ŖPČ䕹הsŲ…‘šHľھТ\Qi¦n‰ALåžØŸŚp*5$ĶOHdäšńŅ~½1ĻÆGĀ'MśÅÓOeĀ.鎤_R†’®Ūī|t݆Ó$²æÄ©ĮēŠQwņ„$¼Ł/(K[Āi·”Ūķ¢E|œš Ÿē‡3\…E“Żd=Ļnō#*;Ł•^čĒgųZĻÆĢ]ĻL óĒėާöŽg6ŁBć5ĀŖßz„+Ōų‰µ‹\_ϲoˆ§kŒ*ÓģźYü¬ ¼ķßMš‡©­)Ź Jļ„óŅué¹ō[z-}–Ko„«Ÿ!„=2Zo;ŒQéN?Ų\ƒęzi÷3Ł0˜Å÷ū†›į¦śi‹»Ļ®mÆ5¾Å žō Ī}žķdk7ś.wok–ö›oåŽ~oóy’Õ0ž “‰rQƁkä¬ĢĖ"Zšy’‰4¢DڬµŹłīėŹPK i5PābĆą(5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_DJ.phpUT÷Hƒ^-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5(ułĢj _ę{ó`žPK i5Pmq” œ¦5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_DZ.phpUT÷Hƒ^ĶW_OćFϧ˜‡JDHūPåž“pPĮ čWUUE޽ƫ³½‘wsŗŽĆqĄ„“_¢EW(ŠRDū@?‰żm:ūĒö:$õ„±„ČĢovę·³ćŁń£Ļ{AÆV››™©Į <(Ÿ†šĻI0D@ą©“tYŒ*÷…³M ­4Ÿr§a)”N ›„w©šØ+Å/b™xą²č‰1ż’%Ź‘ßCpYo7”ہ'ö ¤.‰9†Œ}–DŽ ,ž…^HŌ½¤dG­[_{ŗ²¹µ"])~"pģ8<ŹEB»}A<Ų”"@¹sÖO\‚«5ņwö6½²4éIz•^ērz¬ńlß¶(ķӋl ½Ś²“ĪŽŅ_-ƒō¬®ÓÓō ½œ¦W–Å;Ō l2 æŖŻ%ś½.t퇵ZBD?‰ó-ī'©Ćć'@£^ˆĒ2U’®> ­śėł7M—õcøüPRƒśė…7–ŠŠĀ’?”Švcva”e-’ū”»@ha~v-ö[UķiCŅéL uųwų3{/óØI”BĆ£I—–Ć4`%bHģņāDz$1±79‹Ŗ¢a)ʱ¹ĘS9ÅŚ¼ÅØtg„f2yyĪīæ“Ā@ƒģĄ²„†ĘA 'Śrˆ„qa%ę§`{¾ėķÅ“ŽXļÆ%6rqÜ;¬Ąqļ°qd„c’ŲD4Ęš6—ŁĘŚ+łTR1†Āų—lo§Ņ™Żf&’'.‹½;X«+łØdUU4JÅVēśž•7ņmV„3+[Źk›)J8_ąEö4H~ļū ‹:1Ū18µTqĒDæ%u nŅĖ*Ü%8ó³x{Ž~÷Øļ—ī‘Ū~śs9Ņ(t—p ‘÷&9°”C’²,bIR8ł;½DG?TL4a_†‘ {Ū­ŚŚ°s½G#·ķ‘„2Ɠ·Ÿ$$v sĄąŖ8UKhķUźFŖ‚F7 ć©8NƇĘČž„š¾“™/tUS.šK»æ e@SÉUC{–Yś‡Ķ陼zšUø‚+@‡ćp.FĄņNĘcŃ+[ŗŽÓßd–MYœ`]ę¹Qšs­ÅæŸ Ż1ęāTõÕR÷»¼˜äŁł3fŗ“’ÕT\o1±Ø"‹K…Ē0‡įųvl;ŲN­ˆŹņCz^FŹcä¾sæ¹ĻĀcˆ_M¹§A  €}špyā»ę—óŠ|9ŠH½6’Ø”ŠÉśÓ܇ś˜3'¦TJ½ž\WĒźj3ŠLY`ĖBšœW@ -/ĻmlĢ}‹OĢQŲĄnĆ·qø¾0óšq¶y†\'Äj7[¶¶Ēńco9ļ-Y?zˆœåŪ`*J]ßmĄdXbņJXkUŸŗļŗoņCŅō[÷X:ܧÜ}ĀÉu’!œĢĢJČMsXŹg„Ä£$Ź‹ņ/Y“röSߒ’PK i5P•IĆ^P~5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_EG.phpUT÷Hƒ^QMoÓ@½ēWĢĶm”qį„”&Ejz ½ TYkgÆźģšõŗQøU¤QԁrH żP•*ædżo˜];q7,Ł»ļĶĢ›7ć½·qW*ĶjµU8 Y‹(ą©@ B -"=Į‘ņ/HŸ60פļų»p(įpB){ž”P _ ö‹Ō÷BZ” "šE<’¬* ¼ó)O°%„ÅÆAQ‚Ü%£C[wÜiœ)ėO…DĮ$Šc‰’ĢKķĮ©#č=©ō)6źY³M3”©}—ŖPČ䕹הsŲ…‘šHľھТ\Qi¦n‰ALåžØŸŚp*5$ĶOHdäšńŅ~½1ĻÆGĀ'MśÅÓOeĀ.鎤_R†’®Ūī|t݆Ó$²æÄ©ĮēŠQwņ„$¼Ł/(K[Āi·”Ūķ¢E|œš Ÿē‡3\…E“Żd=Ļnō#*;Ł•^čĒgųZĻÆĢ]ĻL óĒėާöŽg6ŁBć5ĀŖßz„+Ōų‰µ‹\_ϲoˆ§kŒ*ÓģźYü¬ ¼ķßMš‡©­)Ź Jļ„óŅué¹ō[z-}–Ko„«Ÿ!„=2Zo;ŒQéN?Ų\ƒęzi÷3Ł0˜Å÷ū†›į¦śi‹»Ļ®mÆ5¾Å žō Ī}žķdk7ś.wok–ö›oåŽ~oóy’Õ0ž “‰rQƁkä¬ĢĖ"Zšy’‰4¢DڬµŹłīėŹPK i5PābĆą(5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_EH.phpUT÷Hƒ^-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5(ułĢj _ę{ó`žPK i5PābĆą(5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_ER.phpUT÷Hƒ^-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5(ułĢj _ę{ó`žPK i5PābĆą(5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_IL.phpUT÷Hƒ^-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5(ułĢj _ę{ó`žPK i5PXķlDZ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_IN.phpUT÷Hƒ^‘ĶNŪ@Ēļ~й¢|Ø×–RJ U$ąPøD²ÖĪ:^įģŗė5‘{C…(ā-Ŗ’6|åPŃ'YæMg×ILŚ[-Ł»’Ł’üf¼ó.‰ĒiÕjŌą,b)„,¦€kB¤‚Š(“‰ōĒPpAś“‰wĶõ­`ö%#Nhź3„`Ē7r£ŖˆĮīņź!­Q˜Å1"É%ėG ļAĢŹS,ÉC!D1ĮėÄ”`ģ’Ń”Ķ;ź“ON•åSQ0$)ōXŖ$ó3E{0d*ĀdOE&Š…z¶e:4¹ļ3 ™¾6ūtöįc,|³Æ¶.“)WTš®ŪbPEy×”KKĄ©ՐH„!¾‘9ąćgżF?f~ЈE@bšīõyÖ²o KŖ2ɁHIrOŅ$&Å5ČdŹ.閤_2†–žwŠłäyM·Ed‰[‡ĻŽqwĖ”¤.¼Ż]†lųČ܃Öq«Ūuėöą¼\܁ą*ZføÅm1ŅÓāV?”§[\é™~z”oōõĀģõĜįżėÕ īĒvk1ŚP×+…YæõB’Zz,Šć'ęĪJ=)¾”Æ4ŗŒ‹«ēH²XźM~/Å_„6ŗØ:ØŲ+ņŠŗb®x+֊³"¬Ų*Ŗ5ϐҋÉWÅ ×čtÆķ]£¦znē3ZGęeßļėŲ'=Óϱ‡āĘÖZé;ģąY’Xė’óo’Łčū’ŽęĢķ·œŹƒżŽ•żžė1`ü’0Ū”2™*ĻŲ•S"­Ż«ŗs¾żĘłPK i5PŠų8@š5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_IQ.phpUT÷Hƒ^ŻQMoÓ@½ūWĢĶm”qį„”&Ejz \Ŗ¬µ³¶WuvĶzŻČ\i«Ŗ’rHhŚB$Ä?Y’f×nDØøpĒww޼yófwėy§ŽÓi4hĄ›˜e²„ī)‘ D*¦Š%Ņ”ą˜D“\Cß6aW2Āį€f>S ¶|īp …jb“]S_ i…ĀؾЄ\Qi¦īŠQJåAф·m 8”‰fˆ/$"²üüS ¶|īp …jb“]S_ i…ĀؾЄ\Qi¦īŠQJåAф·m 8”‰fˆ/$"²üüżhVĮų ¦‰8<€v š©g§Łq:ĢNÓĖzĆp^¦géåļ("ļ*§ÓŌĮµ‡¶FvZP§ŁIv,ßĪ”|§VާļŅ×…æĖYé5dƐwbóŠźÉˆÖEś¦ąt>«Õ0‚}–äÜ'«Ćƒ‡ƽÓ1S’®Ž€vżłĀ‹–Kū‰€ō —’ŽĢśóÅŃŌÄk"Éč4‹‹mk"Jü(Z\h¬%~»j±3k :ŪӀB„žļ²ļe5ˆ’hb<ˆA©9 A ¬@Lˆ=BvoA0HÆŅ3 ģuŽ¢ŹhZŒIh®0+gx†®Ē!*ĶY”™N\ž³’ļ ŌÉ>2€,¢iˆ @ĀPkŽ€0&¬Ąüļģę·^ ėµu~-²™““ΰN:ĆʐŽiB‡ Ž|· ¹ČŠ×A‰§Źh–Œ ˜PŒŽĖĘa*Łmf*qqāŅÄ»Õ9%^%Ŗ*£Y2& :—7‚T‡Ŗ4fEkJqķP g ¼Čž„–c’ßś>£ńvB÷ŒĘĖģ“*w|Aō)©ćhp^TÅ]‚³1‹°ēVå^čū„yÄv˜ž"÷dI÷ Gyo’ĆŹQ9 ) AcŹXaä=N*ĆģNJŠĘ1jĖ RnošU[5®÷(}äŗ=ĀBźm3āö#‰Kų„£ƒĖ"«Ń,Ś«äOŖoĘR‘Nƒ'LżS'2;}%#_šŖŖ\ąvAŹ:€–¢«Š$ń,µōW4Ø*ź±WÉĶ\lsŹÅ±¼“1-ze[Ā }+£lŹbˆu}œĒFqĪ5’~.xŒÅ™ź«%ļy1ÉÜś FĢtiEćUŒķŒ ± ¶ė6– ŽQ £žmß¶ß >±ęßJ½Ü‹z_j‹Ś–¶RXˆšė(_łH!d'Pˆżq™įżmź—óĻB9zH¾V’RI“ōbnC}“™ )–bÆ?ŃÕšųq+ŽMĮ–%iq^jŃŹŹüĘĘü·ųT„¹6š›ā›røé¾PóšIŗy„\'Āź6[¶¶ĒńÓn%ļmY/zhœüdõ› R×u0„„<ÖZ՗īŗī›¼LE@RöŽõ…åšJ;uG 3Ŗ)Ē xCŠ–€cé‘h†B""Ē€_ĒĶ8eAŲLEHRŖöbž·„Œ]cIu.9)ÉŲ—4KIHqs©ŲŻ’ō]ĪPŅ÷»½W¾ßņŚD¶šI¼¼­YuƼåĮÓŻ rš”¼nśż>ZÄĻkøōI¹yCĮuRÕyÅ3-.‹«āšpnę.üˆm<óŻĢĢŌüpēĻęžölófiy.3ĮØŹ˜[sŃb»..Š+s_)ĢVüāž— ģ²@¤j?ł[ā7_Z.k6§ó>§ž_gQz: ćÕ– 4öÕ©ŚhjęVŖ²čÄK’Okl‚cĢĢĻ ģĒĮŃ×ńMqŒ/ėx‰×œlÜ·¹-ÆŠÕĢŻZ^Ż[oÜŗ|Ø1düß"&•öQĆ‘oåœĢ£*[į%Éfm4¦D®X'ŪOjæPK i5Pö®uT65 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_LY.phpUT÷Hƒ^ÅWŻNÜF¾ß§8• źEs±MŅB J$Č HUµBČkń(¶g5že‹Ō›ŲҤ/ѮڄД¢mU‘'±ß¦gž¼cVØ` 1ēļūΜ™93ūäĖ~ŌoµV––Z°;Ķ ¤1üß÷ø‚ˆ<÷x„Øņ_{ūäśJ÷Ö8õRxE²žō¤ųUŠ"|–<3®_3®€ĀAƒĻś‡œīG¼4€˜ś$͐2 Oßxµ½!”T~"ņ ½ š N{AR”sĻŲ€ū‰•ģŠœ”Œ]ˆˆń¬#ǟª !¬‘Vc Jkk‹Śō²Ē½ˆ&°šEŪ‹<kżÖęĪ:9АŸ$,QO”ŪüŚÅ»b”OŠwłU{ŁhŽägłUMw’OP7µr>–>{ģz |ZŹ8.F ͱ«A”ł4’×Į"ī9bĶøóqńu§®‘O‹75æKĢxZźvæhµ8žŚ©·įé3 I?Ę*/“æo/C·ŻńŁ €±£üwŌ“k£sY#)9Ž˜Ī$?Æ)1fwŃdćķŻ+ZÖyl?Ȳ GmTgĻŖ±ĪŌī“mHČėyTc¹g°>׊ä©I;łžį†¹®«u“3ŁN šē°«Cu"!ź£#rM“C5֙źżqEŲģę¬Īµ=qóˆ(użˆ˜8g‚B›Š[ż<ŚĖā” ŁĶRƒ Čō[qTSšX÷ø>lńYĢ£æĄŻ‚w…!¼YjŠ_Ȧ(MeėĢ’”ŲgŠļHlŚAGŠ„Ų[+ä,ŁKŁP{(H?@œćüÉhPBAōŽmć w_Vqz_"Äša9®Ś†3ž:ø²’ )l÷īÉģfV‚%Œóäc~‰@ļ+.::–ÉHŃ6aÕŌźązŽ’Ćśö §,ŲćÄpNRŸd7-)¢_镛l’Šś2*eõ›Ąr 1M1Ķ/6Sz+K\źŖ®™Ą‡(¶SAf+%WI8nłÆų@ś±źØlŹnoĆ^†CqƒY^[XŁÕ+>Ī?ČršõŸąŁj(Ķ…ÖāßĻ„nŒµ8S]n¦ūS¶|¹ˆFž+f[„”Õ+®½[ĖÄIµŪvs©äQĻ”Īļr»¼·pbﳌ,›å±ųWcj“)ĘĒŗEų ¤ŠS(Ķ!å™\éĆ=Īž g—·Ōk'i•Rł0üĢbØßf„”J©7wō®xń¢“$f;ƶcédYÅØMė+[+ßāW1YlįMsÓMņŅ-Ąnóµõń½÷ø™°3¹ĢKČŗm]¹kōš­4’_ļ#u•ī–ĀI!%ß '[Dń>ŸÜ5ņ»HzŻ;„Å^ęŖv:÷?čdm6āĢ4…ĶZEģ%‰Ż”’č^WŁśÄ\wŻĻ—įń®ś1ōPK i5PŁ/—S–”5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_MA.phpUT÷Hƒ^ĶW_OÜFæO1•Š5„«U×$-ŖPA^ˆTU§ņŁklÅöžv÷rAiB€Ś/ŃžŚ£!)„¤ä“Ųߦ³lƏ»‚śŅ³„¹łĶģĢogwgĒwæź½Zmqa” š89ųaD’÷&€ś Ö„ Bīg‡ÜB[i>ēĪĆ Ž …€»])~ HÅ-—Ę÷é7”)G~?ŠĄ„½]īœÄƒ(tIĀ1dāS;"¤Izq{’·±ž`ķŃ֚t„ų‰Ą0p8x!,ģöń`Š5ȝÓ>s ņŁÅb†Ė}PĘ[ņ÷§š-ålQF|#ÆĀ:wp’\ĖĖ‚ų°BXŽB˜sPZY™×ŖM81ĘÜrŗas±¹”¾ųl^Åü$¦‰8܃v š©gĒŁa:ŹŽÓózĆ /ӓō| ;HGˆ]är:”68vß¶ČŽ é8;Ź廂ģĖwśWįåcś!}[Hų¹œ”QÓaö ±#CÆGcVgé»é|Y«1"ś,É'øKV‡{÷!Œ{ę~®žC½ķśóŪ/Z.ķ'Ņ ž;‚õēK/,”©…·2Eč4KKmk2IžØZŗŻXOüvÕcgŽPt¶g…ZśkH|Č^Ė0„,”i„)DĀH[Ž‘0.¬Äüļ,Ż×^Lė„u~-±™‹ÓΰRN;Ćʑ•ŽYb‡ ^s×°9Ėö0Ö^ɧ 4K` 'Tcąß²½IœJgv™™I^œø4ń®auŠ›ÆĪ’Uh–ĄV§ņF“X•άlĶ(ÆŖ(aoٟŠaLņ[ßg4ŽNčĄX¼ĢŽ«zĒDŸ’:¶—éYUŻ%ŲŲ3xkŽ~Uļ…¾_ŗGnūé/rN–v—p ‘×&٬” ’²4¦ŒN>b§2Ź~¬˜hć¾ #öŖ[5µqēzŽ2FnŪ#,¤Ž6#nŸ1’ø„OY` p^¬Ŗ%4‹ņ*±É‹ŖT“‹…ńT,§į&Čž©™™¾’™/°Ŗ)Ųīcõ¤ÜŠRrՐ$že–žŠę›Ŗ”n{•Ž“ĄÅ6Ē\LPĖ;—Elė0LßĖ,›m1Ā}}˜ēF!§ÅæŸ lˆ¹8QuµÄž“\[#æĆŒ™*­d¼Š1±1&ÕvŻęRį1Īa<¾ŪŽ;%&–Ó<ā{i—GQļsķQūŅ^ ~ å#©„ģ µ2.Wxw›śe’s§l=$®¤VJE'½”ūP_hf…¤ąĒz7<|؊c³ ŒbĖŅ“8Æ(µjuuqssń{|*Ź\ ›ųĄUõU=\ _˜yųĄ4Ū*’PK i5PābĆą(5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_MR.phpUT÷Hƒ^-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5(ułĢj _ę{ó`žPK i5P•IĆ^P~5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_OM.phpUT÷Hƒ^QMoÓ@½ēWĢĶm”qį„”&Ejz ½ TYkgÆźģšõŗQøU¤QԁrH żP•*ædżo˜];q7,Ł»ļĶĢ›7ć½·qW*ĶjµU8 Y‹(ą©@ B -"=Į‘ņ/HŸ60פļų»p(įpB){ž”P _ ö‹Ō÷BZ” "šE<’¬* ¼ó)O°%„ÅÆAQ‚Ü%£C[wÜiœ)ėO…DĮ$Šc‰’ĢKķĮ©#č=©ō)6źY³M3”©}—ŖPČ䕹הsŲ…‘šHľھТ\Qi¦n‰ALåžØŸŚp*5$ĶOHdäšńŅ~½1ĻÆGĀ'MśÅÓOeĀ.鎤_R†’®Ūī|t݆Ó$²æÄ©ĮēŠQwņ„$¼Ł/(K[Āi·”Ūķ¢E|œš Ÿē‡3\…E“Żd=Ļnō#*;Ł•^čĒgųZĻÆĢ]ĻL óĒėާöŽg6ŁBć5ĀŖßz„+Ōų‰µ‹\_ϲoˆ§kŒ*ÓģźYü¬ ¼ķßMš‡©­)Ź Jļ„óŅué¹ō[z-}–Ko„«Ÿ!„=2Zo;ŒQéN?Ų\ƒęzi÷3Ł0˜Å÷ū†›į¦śi‹»Ļ®mÆ5¾Å žō Ī}žķdk7ś.wok–ö›oåŽ~oóy’Õ0ž “‰rQƁkä¬ĢĖ"Zšy’‰4¢DڬµŹłīėŹPK i5PābĆą(5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_PS.phpUT÷Hƒ^-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5(ułĢj _ę{ó`žPK i5P•IĆ^P~5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_QA.phpUT÷Hƒ^QMoÓ@½ēWĢĶm”qį„”&Ejz ½ TYkgÆźģšõŗQøU¤QԁrH żP•*ædżo˜];q7,Ł»ļĶĢ›7ć½·qW*ĶjµU8 Y‹(ą©@ B -"=Į‘ņ/HŸ60פļų»p(įpB){ž”P _ ö‹Ō÷BZ” "šE<’¬* ¼ó)O°%„ÅÆAQ‚Ü%£C[wÜiœ)ėO…DĮ$Šc‰’ĢKķĮ©#č=©ō)6źY³M3”©}—ŖPČ䕹הsŲ…‘šHľھТ\Qi¦n‰ALåžØŸŚp*5$ĶOHdäšńŅ~½1ĻÆGĀ'MśÅÓOeĀ.鎤_R†’®Ūī|t݆Ó$²æÄ©ĮēŠQwņ„$¼Ł/(K[Āi·”Ūķ¢E|œš Ÿē‡3\…E“Żd=Ļnō#*;Ł•^čĒgųZĻÆĢ]ĻL óĒėާöŽg6ŁBć5ĀŖßz„+Ōų‰µ‹\_ϲoˆ§kŒ*ÓģźYü¬ ¼ķßMš‡©­)Ź Jļ„óŅué¹ō[z-}–Ko„«Ÿ!„=2Zo;ŒQéN?Ų\ƒęzi÷3Ł0˜Å÷ū†›į¦śi‹»Ļ®mÆ5¾Å žō Ī}žķdk7ś.wok–ö›oåŽ~oóy’Õ0ž “‰rQƁkä¬ĢĖ"Zšy’‰4¢DڬµŹłīėŹPK i5P›NßD“ž5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_SA.phpUT÷Hƒ^ĶW_OÜFæO1•Š5„«U×$-ŖPA^ˆTU§ÓÉgÆń*¶÷äŻ Ai @)ķ—hO-šRt­*ņIģoÓŁ?¶×Ē]A}éYāĻüfvę·³ćŁńĆĻśAæV[\XØĮ<(Ÿ†šoßI0D@ą‰“ōXŒūĀŁ&÷ŠVšĻ¹ó°’P'†g„÷Øš°'ÅĻc™øē²č±1ż‚%Ź‘?CpY7”ہ'ö ¤.‰9†Œ}–DŽ ,n@?$b/)ŁQė6֟¬=ŪZ“®?8vå"”½ ģP ¹s6H\‚„[~Gč÷}•±Óaö±cCĻĒŁŽ˜Ż%2XēÓZ-!bÄłVw‰“ŌįŃc Q?ÄS˜«So@»žśž›–˱\~”žŠ`żõŅKhjį\&Kfci©m-Bv§é¹R-Żo¬Ē~»ź±3oH:ŻY`”ŠąfßŹŌ·š9!)xć¹®†§O[QdŹĄ(¶,M‹óŠR«VW77æĘ§¢Ģµ°‰ÜTßŌĆĶš…™‡L³Ķ3ä:!V·Ł²µ=Žy«yæhĖzŃC ąä'«ßTŗ®;€É°(Ää•°ÖŖ¾t×u_凤é·ļ°,tøN5“»„“ėžC8™™µ›f°1–Ļ;†GI”å_Ŗœ+%OĢ]Ųžø:ź£ņPK i5P•IĆ^P~5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_SD.phpUT÷Hƒ^QMoÓ@½ēWĢĶm”qį„”&Ejz ½ TYkgÆźģšõŗQøU¤QԁrH żP•*ædżo˜];q7,Ł»ļĶĢ›7ć½·qW*ĶjµU8 Y‹(ą©@ B -"=Į‘ņ/HŸ60פļų»p(įpB){ž”P _ ö‹Ō÷BZ” "šE<’¬* ¼ó)O°%„ÅÆAQ‚Ü%£C[wÜiœ)ėO…DĮ$Šc‰’ĢKķĮ©#č=©ō)6źY³M3”©}—ŖPČ䕹הsŲ…‘šHľھТ\Qi¦n‰ALåžØŸŚp*5$ĶOHdäšńŅ~½1ĻÆGĀ'MśÅÓOeĀ.鎤_R†’®Ūī|t݆Ó$²æÄ©ĮēŠQwņ„$¼Ł/(K[Āi·”Ūķ¢E|œš Ÿē‡3\…E“Żd=Ļnō#*;Ł•^čĒgųZĻÆĢ]ĻL óĒėާöŽg6ŁBć5ĀŖßz„+Ōų‰µ‹\_ϲoˆ§kŒ*ÓģźYü¬ ¼ķßMš‡©­)Ź Jļ„óŅué¹ō[z-}–Ko„«Ÿ!„=2Zo;ŒQéN?Ų\ƒęzi÷3Ł0˜Å÷ū†›į¦śi‹»Ļ®mÆ5¾Å žō Ī}žķdk7ś.wok–ö›oåŽ~oóy’Õ0ž “‰rQƁkä¬ĢĖ"Zšy’‰4¢DڬµŹłīėŹPK i5PābĆą(5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_SO.phpUT÷Hƒ^-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5(ułĢj _ę{ó`žPK i5PóœĆ‚L~5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_SS.phpUT÷Hƒ^QMoÓ@½ēWĢĶm”q…RJ“‚"5=P.UÖŚYĒ«:»f½nnmõ_ H?Tå€Ź/Y’f×vÜĄ Köī{3óęĶxļMʵZ»^ÆA>†,€EšŒ‰T P!…‘žąHłēdH[˜kŅwü]8”Œp8”‰Ē”‚=ĻĄŽPؖ/FūEź;!­PFų"žH6 >€ˆł”'Ų’BŽˆb‚7 Ž(Aī‚ѱ­;īuŽNNŒ”õ§B¢`L°DI愊`ĢTˆōžˆTś ¬Ł¶™ŠŌ¾MU(dņŅܛŠ;ģĆūHx$b_m_čP®Ø4SwÄ(¦ŠrŅ€Om 8‰fˆ'$2rųxé°9Œ˜ē7#į“ˆ&Cž¶„ŚĘ’ŖTr R’‰+iŸāé§2atGŅ/)CI×ķö>ønĖiŁĀ_ā4ąsĶØ;łR^-įt»Šļ÷Ń">NƆĻņĆ ®Ā¢ĪÉn²©^d7ś•ģR/õć3|­ˆ×ę®ē&†łWeļ3{Ē3›n”«aÕo½Öæ 5jüÄŚe®ÆēŁ7ij£Ź,»|@'ėoūwüajkŠj‚Ź{å¼r]y®üV^+Ÿ•ĆŹ[åjćgL鳀LŹb‡+TŗÓ6× …^ŁżL7Ģ*gńż¾įęøé„~Śāī³kŪ«Ä·8Į“ž±Į¹ĻælķFßåīmĶŹ~ó­ÜŪļm>ļæ#Ę’O!`2Q.jø"pœ•yQD >O2Qƒ&”Č2ėl÷UķPK i5PŠų8@š5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_SY.phpUT÷Hƒ^ŻQMoÓ@½ūWĢĶm”qį„”&Ejz \Ŗ¬µ³¶WuvĶzŻČ\i«Ŗ’rHhŚB$Ä?Y’f×nDØøpĒww޼yófwėy§ŽÓi4hĄ›˜e²„ī)‘ D*¦Š%Ņ”ą˜D“\Cß6aW2Āį€f>S ¶|īp …jb“]S_ i…ĀؾЄ\Qi¦īŠQJåAф·m 8”‰fˆ/$"²üü܇ZšƒŌ‡kOŸ1$…lŚ 8D$E(†ūa78÷ƒób)F^żą<‡ķLj ’qŠ“œ»£3p¼—Žńļ°;‚ģčzł ‚’4æō{‚¾śĆŲA/|…ŲžŽ”ē½šeŽw†Š)V’¦PšØh{nœ‹ā%^ī?ę“lܶ©āOÅԊĻH6yŪ€ÓŠõAš'ŠĻg_䀬8Įļżš(ģJC½Rš­åœ ĀĢŚ‰"ĢŽ)=vĶ<ŻÖ§cłdżóÖ§Šę ypŚėš+ć ˜‡*č2‰=ŒżMÆĆC¹™£u·Z o€Č„›W(ģ”ĆĪ뇇Xö‰Źqpež¬w ö¼¾Ćgåbœę|-¹7U¹A¶&Ėʰņi8 wcĮ9 ¢E¢é)3š—Ø9Ւś‹³š wu?ĀM¹Ču¤ TŃ”É])&]Ž“RĒZo‚J‡¹xzøBåFŻ–åæ5„ćąJž 8"JQ }{œę|½”ŽPå>mr×øB÷©zŗj¾¦{\ÉĆtŸ&ļÖؘӜwÆeūFŖŽąJ0ž±ńv±’BU0‡&'3ÓćĪŗĖ;)ļ<\śŪAśoa7K'¦ Ń#]Äf~€ӑÜč,©AńųKcróūø¬5įü+<āś¶ŗųŠ 6ļÄ/ fšCRž—DTÖ-꣸¤i˳éīšōŖ‚;ÜóR'ƒ3tō6C‰“ē}…Ūø†••1nURņĪūĮEp2FĀmQqcݣͶēQ·IżKŖ œ§Å£ *é{Gb'ņz0R+Ź4¾’ÅžŅźˆõ0Õ?#v¼ŅWøĪjŠe©¾ĄK!¾MĖėC³Dź-ųw’M–Żs”=¾e ėźĪ4Ę,:ø-ŃĢZT½ą½Ģr\Ēų_ĄµÆJp·®žš?PK i5PābĆą(5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_TD.phpUT÷Hƒ^-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5(ułĢj _ę{ó`žPK i5PoŸ›śŒ†5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_TN.phpUT÷Hƒ^ĶWĶnŪF¾ė)ęP@¶”ʱŚ…š¤µcqaēāE!E.­EH®Ą]EŅāŲŽźö%Z£µk;u ·÷IČ·éģÉ„~*£—Š€f¾Ł™og‡³Ć‡Ÿw;ŻJeyi©Kš¼C9ų4 €»N,€ł :ž8q›EØr_8{äŚJówÖbźDšŒš6¶„ųE„"÷\>6¦_²X9ņ{A.ėbŗ×ąDŌ%ǐ‘ĻāŠ”E5čÄAŻKJśjŻÖ꓍g;Ņ•ā':Ž€¾ĆĮ£\Ä“Żă>D;g½Ų%ČSd—ó®öD‡Å¼!’’¾Z‡Mīą¦ø–WńaD°PXpPZ[[ŌŠ6ė8!ĘŲqŚ4€…P‹\JŸ~“Øb|²Ht8<‚fš©&—Éiz”¾I«5­‘’§o’kKs˜œ&×ÉM&''Ol‹Ā>¹L‡Ņ«-Kėō8łĶņ1LĪsé&9KĪŃĖYrmY¼EŻŠÖ!Ó!ņ+Ū]”ߛ\ל¬R‰‰čÅQ¶Åqā*yyĪąßIa azhYBŻSˆ …Sm9BĀø°óæSč`³žõöbZo­÷×ė™8ķVą“wŲ8²Ņ1OlBįÅ6ƒĶUŗ±ö >eE½PLį„0ž5ݟĩpf·™¹äʼnĖ"o« u%¬ŹŠz”˜ĀźBßæņFgU8³²5§¼ö˜¢„ó^d@CАd÷¾³p7b}cSKw|Aō[RÅŃą6¹*Ćm‚£1‹÷±ē”qś~į¹$?#B„cˆ¬7Ɂå°’”…`!‹ćÜÉßÉ:ś”d¢yŒś2ŒTŲq·jk£ĪõeŒĢ¶Kbʼݘø½8&‘Kų”Ę׳©ZB=oÆR7łP4¹YOłq>4Bö/Ąģō­Ģ|®+›r>vAŠ:€†’ˆ$ņ,³ä6æ/źĮWįf.»gn1–w2‹^ŁŌ…p’¼—Y6eqŠu}”åFi.“~Źu'˜‹3ÕW Żļņb’gkäK̘éŅJVSqµ5ĀÄ¢Š|,.%£FćŪ±ķøSbb;Ķ"¾—vYõūZ{Ō¾“—ÜC€?ŁŹA‚!‡}syƒ]ęóĻJ1zH½6’Ø”ņIść̇ś&3'¤TJ½õ\WĆÓ§04e`€ ip^5“¾¾¼½½ü >%0Ca‡ĒqŸ›yųĄ4Ū,C®`u›-[Ūćųq·žõ‹¦¬=“N~²śM©ėŗ˜ ‹BD¾ÖZ՗īŗīėģ4żę–·Ć©†v—prŻ'3³pÓ ¶FņbĒš( ³¢üK•óa©ä‰¹ ›ŸŌąAK}TžPK i5Pƒf8£F`5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_YE.phpUT÷Hƒ^‘ĶnÓ@Ēļ~й¹ņ!®PJiRP¤¦Ź”ŹZ;ėxUg×¬×Ģ­¢¢¾Ź!ōCUØ<Éśm˜]'q7,Ł»’Ł’üf¼÷&‰ĒiÕjŌącÄRYLׄH"Qhé Ž”ąœ hļšė;Į.JF8œŠŌgJĮžoäG)T3ĆżÕÕwBZ£0‹cD’K6ˆއ˜”§X’‡B‰b‚×!‰)ĮŲ£#›wÜmœ+˧"¢`DRč³TIęgŠöaÄT„'ȞŠL õ-lĖthrßf*2}iö čöą},|³Æ¶.“)WTš®Ūb˜PEy×įA,§"T#"†ųBbDꀏŸ ƒ˜łA#‰iz0ąYSȁ-,©Ź$"%É=I“˜× “)» ;’~ÉZz^§ūĮóšn‹Č&ž·Ÿćī–CI]x½æ Łš± øōz=DÄĒ­Ūć³rq‡‚«h•ē7ÅXϊżˆĪnq©ēśń™¾Ö3ŌK³×Ss†÷ÆÖ'øŸŲ=®ÅxK]­fżÖKżkå±DŸ˜;/żõ“ų†z²Öč2).Ÿ? Ér„·ł½˜Śź¢ź bÆČ+ꊹā­X+Ί°b«Ø6<#JĻū$_O+\”ӝ~°wšé…ĻxY”Q|æobSœō\?mÅī‹k[k­o±ƒ'żc£KĪæI¶f£ļJz›³°ßr*÷ö{[öūÆĒń’sĄlO„^ČdŖ) °°Ś|“ŁcHb( l½¾põ~ū³‹‡FLNAhŚźR¤KĢTn¶Ų“²Aē®·!Mā³į'±tݱłčŗjWc욶ʿø{,žPK i5P‘Ŗ†¦I 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/as_IN.phpUT÷Hƒ^ÅUĻOA¾÷ƘŪ”%^Œ$@ z1†L¦ŪiwŅv¶ĪĪŅō†å@ˆCP iŒf¶AD䠐ųWęOqföŻķ¦–ƒq»3ļ}ļ{ß{ovwę~Ėi S0ž:ÄUŅĄ@=[ˆqąVw0X@¬ģRe²ė؆K «įcö8xĄ¢` {eĀ9˜)ėķU[——l·9AŗĢUżFŲn«ĆHĶįŃ hSO„¤U—5'.­FʶIpŪÄ­,/,­=YŅTFwmä ń8#eŸć hī(Ņī¹>³±JT1b§t…:vŽēŽĖ¼i½.‚ł&įØītxģųu¤Ņ®+–GŠY]eæV¬5HŁž«Qæä²šįa˜ūŒÄź@†[ dcõ“}ę‘M<Ęš Ÿ0 \\^‡°dMaZR¶&Įó‚fµĀ= ܛLƼb ÖbquµųL]Ö¤ńm„«éRīDA–GR\IѓĮKüŠėąL[*‰ņ}•Į¶'2Ų5ÖÄi¼ß•ā 4½“ā8Š×RœĒĄ`;\i"Ńėߜ ‘’­ūRü2”ŻŠthtVńŬOĶZ); o¤Ų #d°ÓļčiĶyŸŒŗƒ¬/Ż%č©óœ^å÷ēŸö$\]ōµ¢›S{\µų–‡•źĄ¤ŗ6Ęõ źÜœahßėbŒų$ŁŽ©'eUū&ß¾Q™ņķĮ õµ—ńTõµ¦č§ ݋۔ń钶"²…d•“Ŗ"G|Jó0©9 SĀõ4 ż’j”čVa•0C-Mļ:1#ķN|Ō1#‚›‰^uŗ^Åų$ŗėĆxiÖ½äŌ›Aõ9Tސ2ÉaMŪ®O90‡Fh„īFp(Eß;šĮœ†‚bžęp7‚Ć9n†š\Ü|ŽR„ķqŽFšĢq°W}ķŖ w#8Œ!Ä8ź7—|āsōaW1W¶Y¹ G ‹&DØśįNą:~å»É,£Wź/0G¢ Į¶]šķžˆĻüµłŻlIń]Šß1æw+4‚·K±1~·šPK i5P¶Yf ė@3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/asa.phpUT÷Hƒ^„RAnŪ0¼ė{Sb6zMÓ“iœ ."Øs)‚@XI+“µHŖäʆ_Š¢\FOå…ĖńĢhąŪĻ­h“d>™$0W!Ō²!šw‹–ĮŌĄ‚ąma“_•[ÜŠĢs{śUy _­D +r…d†Ū¢~ŃžixVu©OĘ”ŗk(M{°r#PWŠČ’“ó–ŗ6V!K£§Š6„~·““æ{Y><®Ö½TČĒö蠒Ž­,:¦ ö’…G|vg:[’7ŖBŲyb‰;«­ÅCn©m°$—urGW–~wŅäłbł#ĻgéœōĢ7“Nį-REVV’T Ÿīą-•„ Aø3žŃ?Pyßō}:÷DŪ .’æu [ŁČžŪĻŒÜ³Öōw­ƒÜ}ćå¤ ōå/ąČPĘ]šäNĖ£U;ø0‡Kėį„£ī ©ĀR™K)%õ )£Y?u‡6Č?ß(ßć)°>Anœ;h±˜gŁü§?gąˆB–ep‰žĀ—īGZåĻžEößž~ż1łPK i5PajańO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ast.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ £H“Š Ī•›ŗµ, ŽCµ·'ķ8Evžæd÷m¬Ŗf»­` _–ŒģŹQĀj ö(}šeeĪ8Q]“‹üĪÜĆ«0z8RźYvż2¾ų2­Mø<żK߃¬AcvLˆWįÉ* Ą±!ŸJ„ƒ\P9ųˆŽ°ģ~™ęÕ÷qŲ·ĒS»D­|jQaĘ'ī³Ņ3«-7…=…,†JѰĀ6Ė ļ·?ū0{hÄ섦µ.'ŗį±¤Bå¢Åž” :w½i_ ?™… ėŽŸ]WoLڵ§ŗ|ć걜PK i5Pš§_n6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ast_ES.phpUT÷Hƒ^„T½rÓ@īż×)ń{˜” !’0&N4&s³–VŅéN܏mQń””<ƒß„'aO:)Anp³·ūķ÷ķĻuü²Ź«Éd1NŲ”}ȅa©(‘­@[¦Rfsdg WJR(¾ƒ ē”ėÓāCöZ ģĶJXĖŽWŽ=•ä*;UyRß(Ż„®(X¬ŖZ‹,· dĀ £4TR¦J—`…’3V[ Ü4¼«Ė³‹ė÷^ŖéĻę`Ł K„±Z¬œÅ„m„Ķ ”Žr:F*”4Ķ.ü„žūŹŁ\isäĻOŲ[„Į–Pēģ“÷N3éęJg I£uZ2Šj®±¢4$;mÄ4~vB#ćüüņēóhrNėŒfģć„Ń/j2{qBMųŖ Dēē‹årqsĶč¶5Q©¤Ķ'Jm…DķHŌ;)®ō½W‚žŅžż“ū¢ź.gėäƒ#MŌēgŹŲ2h–¤Ż”*ĪUē"]| MO„{‘Ä¶Ģ ķֆʩkŸMżzCzC-¶^ķ µÓi,SŽP#ŽPyoŖ6“źõµ6ˆw Ōż‚T)d֌Q4Ÿ ål8‰Ż«¢õ¶×ķÉ2»ļ+HÜ£ƒqØL(ń`/dƒf§÷XŒŗüO©Thc9‰q•rÆŪč= hˆ·Iõ^¤ī³žĶ&mZ‰Žbå$żwæ\x€Q=Š#>xøōĖ ą|Œwæ¼h°(ABĒßģļ”÷;ąÉīgOOFą#¼ĪéÓ3@éõÜ|>F K’¾qĆUłPEŻū7 |Ÿ@›c0V2łkc™“IÆböĄ÷ Ü>ŸüPK i5PŚl`PņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ayc.phpUT÷Hƒ^-ŪNĆ0 †ļū¾TØ}&@Œ"MBāp]¹©ŪXĖ’ā8T}{ŅŽ«ČĪų’żćd§¢ØĖ²€¾,GŲäsBQØ%8 tĮē•9ćHUÖ®ņs ĻĀčįD±cUŲwėųäó“2įņš/} ² É90aZ„G«€¾dž|Ģ•~rAåąļ`r„y÷Ė4o¾·ć”9}6kŌʧfŒŠsTį.)õ0³Ś|“ŁcHb(õl½¾põ~ū³³‡žLNAhÜźR¤+KĢTn²Ų‘²Aē–k€&ńŁš“XŚöåųѶծĘÅ“ļM•æqw_üPK i5Pē¹čÕ6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ayc_PE.phpUT÷Hƒ^„QĮnŌ0½ļWĢ-ķj›W(„Š-R„ī!U؊¼‰³™®c‡±]+’ƝčÕv&…#¹ųĶóĢ{oœóC7,ėårKųÖ”…•„x‚˜\'įJŠŽčHÕGqeģMķ'õ)|"vŅīŃ98ß§ņRĒŅø²6ż·~6”…ZÆŌf ”PXKm£„n õĀ”Ń+”‘{DņÜķĶÕõīėu’Źł\'a”Aė÷ŽÉŗ.ŽÄģÖxŖe4jrŲuŚ0Ķ~ō®3dß&|äµ°Ų怄”ÄOį¾>jčÄå$Ét™EH:O‘+’ƒµŒgķÉā£Ų߯ö‰>ģńĒ>QœeY’åž•Š!’K(ŠT¦­Z$ėŖ¤šŖQĘ餜fž’°AٳÕ÷m’Łm“Źżé»Å3PK i5P[›é5PĖ2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/az.phpUT÷Hƒ^WKoŪ8¾ēW Š.܉÷¹›6ͶMŠv·I)°(# %Ź""‘IŁQŚž_6Ē^›{oIžW;)źįØ]!ˆ)~3ß7Cz¾3‰'++÷ļÆĄ}ų3K(ąļ„H "SxMäHpģ NȘöŃÖ˜ß Vį•d„ĆU#¦5<™×?9¾ ŻDśĀ™¾² в$@LrÉʱĀCHX@¹BI ™Ķ_ƒIB öM~ļß½Ž;8Ü3TE|:&fDAȔ–l”iŒéŒ]‰L…Ā"Ų “”ń}™éXHµeŚėš—P1 I#ūžwĘIūDĪHLl×IųÕ7”ÆœĻ.¼SĒAŁ÷ņŒpŪ¼łw1%ˉ„ėļ)įbjū_$A”ņńՏ¤GRIG+€O/§Dö`ūō¶‘q ,é­YˆWąēĮד~ÖŽńčhÉ:ļ`I×q#y„PCÉ[•yŚA3£ō¤ŋy¤óJ¦²p*Ī¢%Õņ›5IūeHšÉāŠņJĖ£NŹ -ŗCŲ¤ņ"1–Q™וJ;·dźq'WŹ8VpūµŖĮN*\ĢOŁéŅ蕯5ā&k W4c\dÓ¢ÄĮfŠ5*uB%ᱤA&%åUķésüĻ[NŒ£Ä”$Öי„-ß×4U7\E¾&M°“įHōäę"!ø×‘Ó–/åa—gډŸįb»· Ų°č~’Ńz¾}»•¦ĪÖ‡5dK©h”ŻŻžž~’> °DaX†—qX–÷f!>kŠe)å®/[ČĮȖ;”‡ŻŠŁén‹uĆgU1Ü-V3ePÖŽoNĶĘ—Cū÷|åUŽCŲŁPcŚÄ›į/ _l–;Å’-Xv½ŽŖ-įÆå);oČhŚ^K悲“’L'<‡Gu –OoL<£ėkä6÷Įƒ.…·`<[~Ķš“3¬܌Ī{·.ŌҊœŻ\“× s—uGJ/'|Šūļ5t*Ķ!‡x°™_2‘Ōuäę‡åwæE7™žfŖ°T”ėœŒ qā›\”­ž˜Ö°±Ā ]ā¢p!øśN¾TwŅNÕ):¹%-R$œ:ĮO>ó7>ó}—łĖ2ó}«|żŻ„nšŅē~XĖżC•ūĻ}·™»¹ććM§œ€9·Q   ÅL‡9CäĶ$#¼KŚ©4«±…˜ÜIŅ–ķ2-oŲŽ 1ž(_DqN­9óJ}7¬žs™°¼J#e+ÉJ.Kå˜J"Ļ1©Ģ•*?Qõ-4Ø>gLæ52ØyóŸ~„U‚».¤Ē?Ą- ܼžPK i5Pha‹K®ż5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/az_AZ.phpUT÷Hƒ^„P»nŪ@ģłŪŃd©O?ā` Q‚(M`ĒZŠ’wōŽRż'Ŗ\ŗMzu² żUīŽ‚ŲeŲĢĶīģĢ.O›¢‰¢ń`Į~ŹB®*‡ ²€ÉA ‚ äŌhWŹJœÓČi½ü ;„ϬPƄlŖDą8õōL;jd”™śd/½6Œņ¶Ŗ 3MĒj^ žA„2ŅÖEźÜp¢ŒBSŗŚBŃ2Ģ}¹¹øšLƼUŲO X¢…™²Ā*m…f°TRøŽŪݚ–3rA³°ģŲ_čgĻ[) Ūž}ß1­ L‘QV8Gwžćgµ[б$kņpB˜g’–5 3v SSaF³–­ZŠÓ}«˜ I.o~$É(ćĆČżŁx·ø/®–Ā&ÖÅK ŸNą6ž…ŚõćkZxųŠģį¼įžužwzUč.ī=L)Tæ•āab‚ö’ŹųnŲ§-‰ŹvvŸ”ā2Ģ·½Żxiωe·¶Ź¶O»5æ<īÖ:Ż­W/X?’y×ń…l»©ßhś’½ ß.ņĻį.>lAÜ'ąź5)ŲõÜ»öž:}ļW+ż_nw‡£æPK i5PĢÉ50¶7 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/az_Cyrl.phpUT÷Hƒ^­“OoŚ0Ęļłļ”šÖuÓŗNŖ4õ°ķVU‘ILc5ę汄›†“ •6 ¤®R„IŪmĄ†F[hæ‚]¾ŠC–8ŽKŽ?ĻūśēĒbėIą†Q. (Ā—„P%õ ć@«Ą] ;ˆUØÆJö1:¦ŅĘņ {ž1‚|ŲĒa…p[•8}ź«”rÓ¦µķ…ōezQ5ņ<°iŠ`äČå€|s°xŗ;q³T™Š»\ž[MŻ,ņür>Ļo’Ž!„OŁW¹Sź,sJ›2¦l)Õ W’(äQ'OÕĪŪ+¾-Ł{‘±·“³÷āf7co7co'oÆøZcļ劽_—ģż¼Ī^̈Cp-¹E_+ļćžįę#ć/PK i5P—•Mš45 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/az_IR.phpUT÷Hƒ^ÕÓæOŪ@š=ÅmD“­CK)-P ‰RŪ„ŖuI.äDb§ē3ˆ­­ aČÄÄĢ@(B’¶—žēdė_Ņ³ó ż Ś y~ļŽ}ī£¬¼īµ{•Jmi©B–ČĒ6wH‹wѱG…$v‹Č6#ėTŌmK—‡ō€UuoѾŠX$o§ŁeNKIVźEŗféŌ–Õ†Ż]Eė;[”PĖķtHĆī~Š–„ZMŅį f9śH«e‹.•ܶ–IÆĆØ®qv\īŪŽZßÜż°YPå|²M%9¦irG ^w%k’c.ŪzEĻīŲ®h0}P³¶VܰŲūʕm[8/ŠēgdĒvŖæmrŅ-’īįŚA—ņN1z¹O0é ‹P!č‰)XÆCLdž+~ÄūārĮˆinl½7ĶŖQcVUæQc™|®ż1¦wr ņj„²¼]Œ½Oµ½ŚŽ†±\.ķOƒŃµ-ŁĘc|©Fy??Ÿ óvü[~®¼ĒģL”§‚āY]aå+דań4¾Ōõė¼_öÜåēł©MWōŽļ“ Ōm™ł/u«O;S7Ź++#Ż}1ž”n‹8«Óäڜļ¼×Ź,zÓŃļ\ž’·9fģ°IOfæĖdØ„0ļ«›éģź^óy~Ī—ĘżņzóMw“¾>&ĖD]©Ÿ*,NÅm—Źl¶éļiž¼Że¦.·ž‰Z\8ŅŌ3™vĖ,Ę+ĒzŽUŚ‘¦åvėL<žØ“‡ŅŃCōÄ1BŒÄ1+£σēĮóąyš<žχēĆóįšx¼^/€Ą ąšx!¼^/„Ā į…šBx!¼^/‚Į‹ąEš"x¼^/‚ƋįÅšbx1¼^ /†Ƌį%šx ¼^/—ĄKą%šx)¼^ /…—ĀKį„šRx)¼^/ƒ—ĮĖąeš2x¼ ^/ӞžSķ/¾¬üPK i5P]"„64Ū7 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/az_Latn.phpUT÷Hƒ^„SĮRŪ0½ē+öf`2fz„”˜Įt¦paƳ¶×X[2’œŌü@æ!—rģµ½÷8äÆ*)r“ŽŖƒwµo½ļ=É>üXõ`°æ·7€=ø)˜‚œ•&Ö(5ˆtA0B™nJé(4½¶}'Ż…ɐĆ©„i ‡‰Ż~āf+t˜ŠźČ·ž éåMYB*źV²‡Bņ J–W†’ēBVؙąCØKBS›2š¹÷./F§W×§v”Ó§ Ō0CSZ²¤Ń”ĮŒéĀ F»LÉeNģž@’n$”ŪXR]bJ&¦TlJ;’& āx|ń%ŽĆ`ŸBs2Įī`VP‘d£*€Gp A‚:ø®ŠŃ$ĆVy4Į'”¶Ć%@R/ēŠŁĀāĒr._Ÿ—sž,ē€__Ÿ±złµ…ŲBŗų]½éY•l¶n|« V…Śė8 mļIxźāā[xÜ%6ŒüväžÆßĆķać’9Ŗ\ݹ“ȧ«ƒÉi*±“Ye>3±–ä ­ ¬mø®ŒÓĒF¹NE\·˜ø9b²N¹č²Œ&6ėKčŒāUx ^AßÓwģžŚ³zFO·Å„Ķ—„ąä o×ĪĻÖĪ#ļüøs­˜_~zė6qĄńŚūõ†÷Ͻ_­½ūŽs&•ŽĶ]Ę"ķµ:=ļ:Ōżpžv\ɕ/o\%8??ØŖ`ø \o JõĄ4‡QޚÕ;¢(‚mt^į°ĶžÆ¶!dfõš÷ūŻ÷ƒ?PK i5PŠ®fA~/3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bas.phpUT÷Hƒ^„S=OÜ@ķļWLg@§³ŅB">"P8Š@ƒ²ÖöŽyļģ]gwĶÉBé(qGC‰¢S B„\QXŗ•ٵ™(Ū¼y3o>ÖŽxŸ'yÆēÆ­õ` ަ`ÄR ˆ9‘ÄtBa›ČPptES2¦Œµį+Ń*lIF8R2­a#“ęŽ¦ŠƒHd›mčG!ŠØHSˆD^J6N4CŹ"Ź–ä#!3¢™ą}ČSJŠwĪčĢåģoļķZ)ןNˆ†Q3„% Mc˜1 ƒ½+QȈb”Ų5ė÷$Յä@¤$e iž’ˆ"F…T윮Hś„`’Bģ삁ēS>ĄĶx}8ķ/£’ÅŒf¼Ū„SoB6­o—ćŌÜb:źėbL&u•{gż&gFé4&„jsÆĘ3s ¼®—„ĶY:&oE’ŽÓüŹ:‚łÖ±³°®¦{ZWuÕ±'恿h#P‰ŗm»p=`q E±,G-Z}‹Oŗń½Œń’WĖ×ÉrEŸźŠĒuõxe£†ę6²+N[C›ŸYø¼‹ÜŻyQÖ7ö¾g橹Ēō›Å…µ'ę.l©)iDwĢ<ĒøPÖŲ2sso²V…”¹sĀf%~›šųµ4wōvŸ­ĒānL5 hį /,$,möCĖ=^Ģ\­5‘Ä­0eõõSµ“Jøģ@Œ»wWņĶ’u’K»;ērīƒcēńööÖ3­Ku˜u„ž‘ µćż<ĻØ%Ćį°/é.?t<¼,žćÅāäĶpŠF‚ĒMĘz$ ®!3?xl¾ć–|RŖHš2¦“MyU4 ^Wālõmļ7PK i5PÉ„°B$2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/be.phpUT÷Hƒ^½Z_oGϧX$ŹŁiHā€TÉÄ1‘*”Uƒ„*ŪĪö^|ā|kŻ1.¶”`5<$%źKś†TńŠ×@ł£’<“ąöuöžīŽCc̐’łķüfgn6·,ŪĶöŌŌÜōōšF÷›Ŗ‰UĆ~¶eĆBDAV£Ū²Q#:ˆźå-< ŗL=SĻ¢[†*ėč6kŖe”ÅŽŌaH¬Ł:i-yŖwˆį)MCuŅīźVÓB²Ž@šZĒŗ Kź 1Z²„}µ5,ƒģ‘Š»ŽŻŚźķ•{+ ŹńĻjŹźŹ&jئeصŽ…Ø«ZM˜ßMŅ1źj8ĪĪMĶĶ”›lt›<ĀPXŻŅ‰7,ą8„*ĄD“Ms?43#mōZ Ń{•ŹmŅjėV„rߐuSsÜ«T¾×:†¬©?;Ć:6„l=™BšT|ėŠ˜·›ęó&¶2JGÆ3Ź\Ö;­6|<öŲź0•É”By č+”›Ļ¢+WP&—C—Dł<ųSDó(F~-Š‚k%ˆ čŗ+ä0į¬ŅœįĄ*l™,³½įø;˜AR K0ŒˆśŠŽ`Ēör¹c5‰aęŁļWŃ·Äl¢ ŠPÜń©Éå M~$»‚;Ēž$°Į·< l4!ż–ŪrÆńļ+݃)”US†T5ŻńrMn]——kµžédƒβć°Ōò!”Ā’ņuŅŃ-d’eŸŚośįčČ~C÷ı}J_H3.€¼B<É bęė}–+-¢[Mį£ż–īŠŗŪI8¤@fńÄ8<Ę쬋£·Ró³‹ńCŒ>„{˜÷ö[ū„ī÷Eé =ŒIxŅ!p>j¬ŗ©¹Ś#ŁĆįŲ,żĶ> ‰öloć¶Bk|†'Mx]GÓžČQ:³a?I-GR !݊ Tģ£$Ćd鳋4Gŗ<ZKÕ”‰‰©ń‹żTŽEH^BņR®|9P–ĖŸgX$U·M\'ŗ˜Nt’éą’“rœ4ŒŹ2ā„)Į.Ó}P>¬’ĘYÕL‹CX%›ņ™@„„°‘j9ĘBĶŌ]w“;+$ŚpüŖbņ?@ĒX JŻ}7Ńć°|ž ĒÆ 1S.ZEć¬l¦É…«$Å ­Mt'QN"ökj"$¼üOÄN­ŗb!š\‰M„ˆWÉŲi[<¾Lń͊o`Š…'qŲć'ŁÄRwßļ61ąō™™ ¶²Ō)ų='œZ;³ę 5“4łpµUĆ 1š$Š‹Gž`uM€€W Č©ÕW$8“+° šŹ 9­‹ęĪ—©±ty”‚ƒØ„¶0¢OÅG:ō»¦}F·až=r”ƒØp„ļ€Ųgö,vL|ĮsWž` ¾³ØŠ.Bwé ¼„ŪĀ|›°Lšy‡é3ū”¹#hY¤E #š÷=ū¤FŸņjīy÷ļŲrš5ZZ»ļšÜ½›oµ<]obƒ›É›¦0éN•J³ėė³?Ā#Lś³hĦ”œgE•d÷#ŠmĄ3ƒĪµØzd벆õ†÷!—ckŹ-\ņCY¶’`_®Ųw8D_T„‚[WĒ-Nõ÷0¢#”ŸĖöĖ*bŽ¢r\U“M÷„æ ØL5@ /*īŽ÷cU‡ōPä:F—ėĆĄŗÅß6°ĒģŖV½‰2žüÕ%Ȧļ†UeOŻÖäņÉņ…ņėq9{¼ÆóŒ'‚ņr^lP{‘šÜˆ7°"w4ėBØCśü\ÜA0̈)±¢™^‘®E‰ U—µČx·'3čr*iša ¢Ÿ ¢%­Kłi#QZ*•åŻDé)3’ŹIø$* hŻŤ×āWJóčLäŲD‚ü»9ņä³ŅUz(”‰ŗ@üȱŽRoʰن\yŽ<7žUȇgrą=ē½å½Œśgą-üøķ¾šē2„R‘+³ÅL„\ž©R®T«Ó•jæbfæfG‚bķÉĀĢõA_s~dēų+Ečx~r³šöX:žœ9Ń ¤c§å»ķŁŪÓw7Ų”Óå:»æ3zn5»;ÓW€± ŲłÅSOpī`\缜?Ē9æ*|ē`wŽK÷ģģxsā­īmœ‹ I°ė­įoč«8¢½”ž•2*²óԐ5’b¦˜}vƒååųÓēŁ"*V@—‚lQTĆ“Ųuź&QĀėć\xMĖä®›e£ąæ ųZšjśßႿkoŌĖēü"t~ū²æĆL*æ¤ā K/,<ęZõĘŌPK i5PįīÅ)5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/be_BY.phpUT÷Hƒ^­‘ĻN1Ęļyй-Dłso)„„TBŖ8“½!“ņnœ]‹½µ½D¹*Į”jÓSnqāšRJ„Š”W°ßØće'¢ĒFZŁ3žłę÷M6žēi^«µėõŌį}ŹtYFϜH ¢ :„°Md$8¦āC’ŠÖŗņµx^JF8ģQ1­a#rįĒPčV,z›Uék!K”n‘e‹| Y’j ¼‹)W8’w…ģĶo@žQ‚¹#FūeߛŻķ½w;NŖäÓ)ŃŠ' :LiÉ¢BÓō™NńŁ•(dLqP§„m;‡®÷E”S!ÕwoBT$Ķ$cQÜĢDL2Ŗ¶^“„LŹIu!9)É ”4ĻHLńŒ ©Ų]“ōCĮ$…0|µū6 [A;¢-\fŠ€żą/č ®SĄ³MŲģ±=±Ķłe~š™aY`īģ{b&ꇙøŲć}Šßµ»³¬™Ś”™”/ĖŁß˜+5ģ™żŒ×+ŖcsæßāmlĻ1ÖVšóĢŌEČ7“Ÿģ™«^ĢA-÷‚Óļń»YpĪP’¶ģ?h,» īWÆxöN½Gļģ_n¼ ĻļÉ=±'ōT ž>„‡2˜ļß|³£jūw•ė $™łģ‚ė«=GĒ]•¹|ŲŲÜæ¹Āé§K4v„n˧UÅ%ž×ßQ7÷ˆheG\žĒT:ĆźõŹMōÓü”Ēś=Ę’«śĮśÓŚ_PK i5P“FcKö; briannesbitt-Carbon-f10e22c/src/Carbon/Lang/be_BY@latin.phpUT÷Hƒ^„RĶnÓ@¾ē)öę6jq…RZš"U$" ”ŹŪc{jg×Ģī& Ē^ø“/ĻŠG€Sņ^ģ® ŖGö2ß÷ĶöōM[µƒĮx8ˆ”ųT‘5(œmP…0ŠKąTI—Źj(1vX?ŹŽÅ[&bŽ:%cÄiźĆséBeāL-Ļzč;ÅAذM#2Õn˜ŹŹ¹h(C©]KY(^‚!%ODŪ øÜŠpxÓėĖ«łāŹK…łLF¬A‹œ“aJ­Į\¬ÉT®āf׏r†®Q†ū =÷šJ±~鿑Hm9*J³Q£2hPŸ—ŅƊĖ@a4–„fŲ$Œm:›YÖ“Ā#Ęo–E’L®?&IQĘī˜Ń‰ų:īEŻ::ÆĻśTHOC"šLāŁ,žā^tŠ7‰–JšŖgEŚŲü;”$pŗQc TĮÓPÊźą× ś,į6Ųķņź‘Śƒæū#i÷Ų°ūÕG5øcn¶²kÜq”…¼ć9z2DOGM“»©é^ėĮSk¼Y@ķĶ{ 3ø £Ż# µA÷·$o?,č®Ģī§+īŪ­ė6ūŪĢ ümš żdīīŗž»G£øó~Ėn‹ķ=lų­‰ĄHŹBaaŻ—…g½ž,7§}Æ}‡^ż Ü«ö‚ĻՖ$’W« Ö&qj‰*/_ōÕ>߁|ÕGŽ£nŽ_ žPK i5PDšóO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bem.phpUT÷Hƒ^-KNĆ0†÷9Åģ J@ˆ¶H•  6‘ķLāQیĒD½=NŹŹšń’ųģķc“±ŖŚŗ® †OK r匊ĀbvŠušeeĪjĦhł¹…g&åį„I“lõ2>ł2iL˜ž„/× !;&Ä Óh”ļĮ‘AŸJ„OJ(ų;ˆUŁżĪ«ļõø;œ>KŌŹ'V Ģ*AOI˜tģa&±å¦°§Ł`)źWŲvyįāżņgf=*;Ęq­Ė ÆxÄ©P¹h•F!£œ»\%³/†ŸLŒŠuūć{×5›VćŌ}æ5å7÷ÕPK i5P ˇŗ6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bem_ZM.phpUT÷Hƒ^„TMoŪ0 ½ēWčę¶čģŚu]?’-š¬X ĆP“LĒZlÉÓGƒģ׏–”6I_ę‹H>ņń‘|ž„­ŚĮ`tr2`'ģ©’–•²FFg Ę1]2W!»“kE!±„)·K?ĒģŚHPl†6—αó¼s/¹Ś …n.Rź­6ØōuĶ„n×F.*Ē@¬–•„–ŖŌ¦'µ:em@±‰«P÷pw3™Ķ'UŠē*pl–Ņ:#sļ°`+é*BH»ÕޤFE;ź&ģjƼ«“±gż]Ķ“`SšS*vź4dŌZ@öJ#ØąŹ?A×P” t7Ё1°ęŪŅ)¼±ņ žöŅ ć||÷óa6B5¤Eg§ģē€Ń—ÅQmĘ>_¤P?„@6ŽĘćŃś²Ó>Ē#k“rUŖŹīAy0’H³[ĢĶʞ‚Ø‚1i źĮąß{•Ī‚ńuÖkŽ­Ć&‡]:­™~ŁĒŅsW·“M÷&'II*’†]I@jŸz§¶©gź÷Śk…ø,`½ūŲŌ×^-|—ųH—Có6zĖÉ}-·\n;Uį–cA„Ź®koiwūwƜǦ:O>°}Ē"xUht/bī=½°’"*„±Ž×%ļXŪĒ„¦xLźŠĪ[#˜¬,$6I-STX‡=Ą¬÷s_‹³fM ;Ś+—že¶> ?Xŗõ„68ŅŽ÷š xOõŪĘ#ī›ų\ö8V½(š>‚×mĒ©HĄrŸ¢č®ŽżĆb¬ Ž_ou~°4mV*ś_¦åI%ݻէGśoxA̱(“J °ø${ŸÅöĄ{ ž? žPK i5P˜‹wßóO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ber.phpUT÷Hƒ^-ÉNĆ0†ļyй*”< ŗH•P,.Ńęģŗ¶‰śö8)'kĘ’ņŁ›ēhcU5ėukų“œ``GPΈ¢PK°Eé‚/+sĘ‘ź¢åwę^…ŃƉRĒŖ°éęńŗ1hmĀåé_z² Ł90!^…G«€¾dž|*•~rAåą :²ūešßŪq»?}ģ稅O-*L˜ ē¤Ā]Vźabµå¦°§ÅP)źŲf~įģżņg&= ˜‚ŠøŌåD7<–TØ\“Ų‘²Aē®·!Ķā‹į'³“ķīų޶õŖéHŚŻw]¾qõXżPK i5Päjä’6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ber_DZ.phpUT÷Hƒ^„Q±nŪ0Żż·)1\]:“i7N€±[Ō]‚"NŅÉ"$‘ņ‘’«žLĒ®ĶŅɛݒ*IĖ.œŽåņīļŽ½#/ŽÕy=Œ‡Ć įs.4d¢$°X#P˜œą9VŅRIK m­+?KĪį= ”0' cą"vé•“©2a¢ŖĖ¾ōV±ʚ²„DÕ‹ene „HHj;RfŠ+4BÉŌ%”åZAkßww}3_Ü8)ļĻäh`R” ‹ø1”ĀZ˜ÜŽXļZ5œ”z³c·”ė4&W¬_»ų|ÄøT°@Fó—h׳łUeM1¤UęWšżL¦a Ȍ]ÄT—˜Å¤a-Z:cZ5‚ ¢hz÷)ŠĀ`L2“/ŒąĖģ ö»éŽ^ö”§ļ=L§įl>ŲŒüåć‚JI“÷]A‡²E¶šAF-cé¢Źž’C¬™z¢s ŗFöčilWö•š¤é0ö:Ŗ8†R¢” Zˆ“}8Óy@Æ}K­ƒŁŽÓ¤ę}ęēļ~v²G?Ņ®,ȳ oe®|ķ”Šć“5Q‘bwX9ĘoȰÜnävćJcĮB&Ā3~½ā$Żn¶?l˜l7G*ŻžāōÓļļ'}XšŻ“LvO{ę¹™“å­„ŽIoąļąĆ¼ĆŒ^ś_½JČ’WĖkY½He‘“ö’ÆśŪžß¹[—ud’ŹU½ Ļß žPK i5Päjä’6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ber_MA.phpUT÷Hƒ^„Q±nŪ0Żż·)1\]:“i7N€±[Ō]‚"NŅÉ"$‘ņ‘’«žLĒ®ĶŅɛݒ*IĖ.œŽåņīļŽ½#/ŽÕy=Œ‡Ć įs.4d¢$°X#P˜œą9VŅRIK m­+?KĪį= ”0' cą"vé•“©2a¢ŖĖ¾ōV±ʚ²„DÕ‹ene „HHj;RfŠ+4BÉŌ%”åZAkßww}3_Ü8)ļĻäh`R” ‹ø1”ĀZ˜ÜŽXļZ5œ”z³c·”ė4&W¬_»ų|ÄøT°@Fó—h׳łUeM1¤UęWšżL¦a Ȍ]ÄT—˜Å¤a-Z:cZ5‚ ¢hz÷)ŠĀ`L2“/ŒąĖģ ö»éŽ^ö”§ļ=L§įl>ŲŒüåć‚JI“÷]A‡²E¶šAF-cé¢Źž’C¬™z¢s ŗFöčilWö•š¤é0ö:Ŗ8†R¢” Zˆ“}8Óy@Æ}K­ƒŁŽÓ¤ę}ęēļ~v²G?Ņ®,ȳ oe®|ķ”Šć“5Q‘bwX9ĘoȰÜnävćJcĮB&Ā3~½ā$Żn¶?l˜l7G*ŻžāōÓļļ'}XšŻ“LvO{ę¹™“å­„ŽIoąļąĆ¼ĆŒ^ś_½JČ’WĖkY½He‘“ö’ÆśŪžß¹[—ud’ŹU½ Ļß žPK i5PŖ3Zż3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bez.phpUT÷Hƒ^„SĖnŚ@Żū+īĪ B nÓ4­RXT©Š"ėŚ37ĢƝżśŽĒ@mAVĶń=ēĢ}|’¹ęu’LG£F°įd”"Į `Ę®Ąqhr­UģpĖ&ĮŪŚoŠ[ųj¬˜ĶÉ9øĻŪš‹ ”v“Bˇ£õ›61Q兀B×C[īU ‚ ¦l(©*m$:Ņj µ`ø=±&Ž[­ÖOmŖŲŸćč A %Yg(÷ޕАćA ½[ķMĮB”26;M sŽ(@cšV ,XĄĀK{vcŲoO†A–ĶždŁ$25 ›IĒš’@8©d†Jb2…Oš’Ö(I zūéՁŅ×qēlŪ•x°g'H/¼ŚĶ`9ræ'į9N!¤sP¢óēĄįįŸĀQ ²&s&š¢tf¹6īŲĄŅ‹öĪOŠ0§}e®ŽĀ"Œw‘J’śÆDR+ĒūĖhXł‡`Ū„¼CqZBo|o¾·šļšŖ½·ÆoĆRư˜_a*vÉ:²W¼;/ÆtѲ! HżöĪØęķÄƝ ^qī]oł3ŒŃ¦{ŽŖ…u÷kĢ[Xuä†l ß½Œ ß:Čϵ*2Öeį©3]eķ«Ē‚Njü%Ļ©H/6‘Iēó;÷…uO¹³v vŅl6].§æĀˆ'–Ė%\Ŗ}¹Óį²śŁV†3†÷Ģaö×ŪÉ_PK i5PoژšĘš2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bg.phpUT÷Hƒ^W[OG~÷Æ8Šh ©­Ģ„MI© } RUQ„Ę»³ģ(»;Öģ8.Š‘€TÄC‘Ŗžƒ>ōÕ8 ŗ\ĀCóv’QĻģmöĘ0Ūsę;ß¹Ģģ9³óß4ķf­öx|¼暌f>XĢ”€ßM"$p ¤Mį9 ī”ČxC¶éb|ĢxĻ#¼¢~ƒI ó 5żÖĆ)—Swč .""«å8`šęŽ`Ū¶ā™ą0ƒz>šō,.\"÷& éP‚²·Œ¶#½Õ•ēĖÆÖ—U䟓‰„6ńĮd¾¬Ń’Ō„6“6® ļ>o ƒ¢!3rö±ŠPé>mI› æ®~OĀ÷Ü·a jÅó‚x’żĶQ’Y,X§ĀĘčž6ɎłłŲK“–`Å'˜ ?žætČ[öłCdFPŁlŌĒč%ba“nš–'!ų| N‚~pt;UYt"V$[ZuX{Yr¹'ķ¢ęEpīć’oŠ$čjsšĆ©ø÷0Ó¦ōMAM0†‹ Æ`ė¤¹,jõ»čµļmŃ$„]8AŌeGĻ {œ”ĮĢ” m<óEĻ?ŻpæS˜åwP+ FŚw`u™‡by§ńȅļƃÜQŌ²\BņŹĆj”ν¬łŌąžYŻé³š=&õ¤“Ó©4ēlžÉ‚3|ŗĪÕgIe0‘¶ybż*܋Ncź’¹4X‚»[ogOĄ¹B1ĒT 4(Ve:ؐÉ,«`čKM·°ŗC}4¤O|Ī)²Q’»\ˆŒ7LĢā‰ŚCœ°øĀFāÕ×1ü»ŗė&ŠD¾®ź¾_X‹W–¦ÖÖ¦~ĀQXKa T—«ėP±”Lpv3‰Ģ õ̤āēBó‰K—ŅœmāĄ Ao0źœ=ž"sĄæāÄŻü1«ŠŹ9ŲØ¢āēéžH7ėBĶ­–gØž c?Ē7†äkÅĆĶ·vä£%õä#x—qØįcļ6lK×'ń¬ü`)ę2T C]¦ė×ĖŸÜ ’²*W#éŁ*NĄ:ńO\-‚.> ]UE6”¦¹ ‰I-Ņr䝣ūįŃ@īŻl¶;Q<ĖŽŸ<’«„“Ä…É<ā”vcÄk¹ *ņ™‰ö˜m3 ¬Ć03=W„ĢFæŹ”˜•ńĆĀĀL—÷+ÉĄƒ4‰Õ”÷@ėļ™ 6‡¤»Žn‡‡‹qĶĆģ­&Tßl"I$ś;s«æ½įÉfoõlox²Æ Ó’ģė[½½(ØŻ„Ģ%i7¹Lźõ(vHlĮųHķ©†ÕżWu½¼ ­įļš śŻŚM?8OW‚#½ßćKOōė<ŃėbV?bæŲu£t…¢^/c’„Mō?ó²KœQźŠu–“m¢ŁņńBbŅŃčtĆzÆżÖ¾jµg™?źr‹E2ĶÆź ā<<ŠŠWؗɔUŌˆZ/ę#Ė$˜µ=ŒäD5ćč.xŠˆ^xØv"(ßj›qŻŽĒ«kMƒPķ¤®»žÄ”±ĄTRpTĘ[ŖZSˬŠj D湓Ąó0·y\¬vł*H łlĆ,œ™JK¢t+8 ŪųŸŻhG½Q5„… ĆģÜŁF“łš;ČYkœ:ĄJ"·¤•ą:›ĀĘVųIü…}Ö"ż–=;źÓƒGĀjƒ.”u¤€±¾ ģ$ćč+wdÄ o:AE±|üVY:C•łO§š# éø³IįÓ}¤z3ér¶=?§Óįąe,i«•māDśÄ”cŌ{Įt%]š–o˜w$äČ ONįXåŠĻŻĮPŽÅ¶D ĶWnu„;}ŗŅKä#~›„0žUķŸD1M c¼ 3ÄŃ?:G×hxõ:#+Ö_6ĻŖF¹­¾ ½Cįw¬ŌµŁ7ž‡D¼&QĪüĻ ųo‡7ūäcXo¢zŌ’Qļ_©VØ’ņ"…®‹Z±EP ]žYƒźūiņrū1yPK i5P<Ū-ńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bho.phpUT÷Hƒ^-KNĆ0†÷9Åģ J@ˆ¶H‘P<֑ķLāQ]یĒD½=NŹŹšń’ųģżs“±ŖŚŗ® †/K &r匊ĀbŠušeeĪjʦhWł¹‡W&å”ǤIöz_|ƒ4&\žž„o· );&Ä+Ól”Į‘AŸJ„Ÿ_”PšŖ²ū%\6ß{w8õŸ§5jć«•`¤$L: ްŲrSŲSČl°l»¾põ~ū³‹‡'•ć¼Õå„7<āTØ\“J£QĪ]oŒ’ŁĆO&F†c÷1 Ķ®Õ6 ]ߔoÜ=VPK i5PHv|ńĀŽ6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bho_IN.phpUT÷Hƒ^åTAO1¾ļÆh¼ ܍WTDä ^ˆ!Mw¦»Ó0ŪŽm‡ĶޔĄD=CāeŠ CH4xæ2?Å×vv˜) {óąvę}ļė×ļ½¾éƒGiœ¶Z¹¹šC/c¦P%Į3%R#ŃC:¦h™Č®ą…Ū¤OŪĄ5ō™p=‘Œp“AU—itMøÄ!ŗŠĮbI}*¤źeI‚B‘Ž$ėĒ”„…”+Ų’÷„ĶŸGiB `;ŒķŗõµåՍ«FŹśÓ1ŃhHŠ˜Ņ’u3M#4d:† xW"“!…"k¶c*4kg:R-˜÷»Ø“~LäR_ˆ~BūRd©2¾ķ"Iu&9"R’–4MHHįfR±:#éėŒIŠ0^Y{Žq;čPކvóčU Į/p©=\,! Æ[ Xé<ėlnó6±åĮ@p—+‚"?,ņq‘’(ņÓāč ōĶMč{‘_Ųųc‘rŠ»"?¶1 {E~V÷ÜŪaq“ ŚUš8VeÆZPäēV"wŠy‘_B`T zŚwßBŸ­čUĀY÷é_¬Īy=q'h֏“ž»0¤t;"£«9pµ^Ś’‹JŒ½·å4Pˆw­ļ3/qb üź”=µ’ÄO ķ—żós¦¬šß¹w‚„’†mßmƤļķ–N®0ž¶‡­±čį“JcćÅD#J¤õro2åT²ˆŃAešŲΌ›]×Ņ_ö}\›cSE-;:±.;w£,„"棙śą†«¼^‚ųVĮ· •އŪÖćķ»g¢5éż_ ß"ćhІ‚G©šz7Ž%sĮS :ruhu¢”œMäF7§ ¾Q¢vß]k:²łøĘõ–NC‚¶N”wõ”\7ē®ĖÜMŚDv8%ąéD«OÅ£ŗ;q<‘óĻÉK|“ĀÖģżÖoPK i5PķĮńN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bi.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې&”€q­ÜŌm¬eIpŖ½=iĒ)²ó’ų%›ēhcU5ėukų²œ``GPΈ¢PK°Eé‚/+sĘ‘ź¢åwę^…ŃƑRĒŖ°éęńŗ1hmĀåé_śd ²s`B¼ V}Ž łT*ż䂬Į?@t„e÷Ė4-¾÷ĆvüÜĻQ ŸZT˜0AĻI…»¬ŌĆÄjĖMaO!‹”RŌ/°ĶüĀŁ{ņg&= ˜‚ŠøŌåD7<–TØ\“Ų‘²Aē®·!Ķā‹į'³“ķīšŃ¶õŖéøż>ÕåWÕPK i5P vÅR_5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bi_VU.phpUT÷Hƒ^•TMoŪ0 ½ēWš4·Eę`׮뺄P ķaķe ¶™Xµ,y’#’~“¬~x[GRŌć{)ūāsS6³ŁāģlgšPJ©Ų6h=˜ ų’`‰63šCy…[JŪĆOņSųj%jø#—Iļį"ė·Wš·Ę§¹©/#ō›±hÓ*¹iöVnKØ P2'ķXRoŒ­ŃK£ēŠ(BŽķ$u!o}³\ŻŻÆzŖPŸ/ŃC‡ 鼕Yė©€Nś’OøvgZ› ”ŲEĆ>÷KėKcŻyᅦ{¬]«·°R”{k“Ģ,M:‡µ/Rą…UÉb®L«+7`ū;Į;ØQK]żŗ·'AŹ’o­“÷ĀR£0'¶ykÜщ„_­“B\ß|"M¤SB2‡Ÿ³^4ŚąųtC!¼¤ą××p{{ ?x%óyLRķ˘›<‘n;“ÄÜɆ2veļÖųŌj¬TaO!üŌźĮ( f+]o5žź C¬ņfš“Ł=yĮ× ·ŚæV‹šOł(µ£lԌz/ZQUąžłĘŽ_ /NŠźŒµn,Ņpąø1ģżI4*›é"٘*2Ešæ9j©f(öÄ»0čóܓڃ£]čŻbüXR3E~Åtņ7ƒ%Ōņ }=ˆb*ļkWĒU“;ÄßFqżĀį3ņ’(ŽĄ¢˜Ģ=$”üŸį+eŖƒōåt(ŠÉŌqśRó?xÜĒŚØĆÆ%~!“Ą(Ž RåF{ļۃn*ÅdāĒӏ³ßPK i5Pķ·„*Ī2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bm.phpUT÷Hƒ^•UŻnŚ0¾ē)Ī[ÕµŖ“+Öuk U·–ŽŠiZB&1Ä"±‘ķ,CėŽ‚;ž(oµćų$„„vš…ˆķļ;ßłńßł§U“źtNŽ:p‘001ü®˜¶ ę`#×Lϔĩ`Éü¹Žž&x WZ0 ÜĢ„µp>sĆĻ‡Źž*¹ źŅ…Š<cŌj­Å"²Ąd±ø4čRĪ•N˜JĆ*ę ē~ žv÷_®£“*ā³³1”0V‹Yjy™°"»Q©8: ‹`O]†Īö2µ‘Ҧēśļ``,QģZ% —¶ jnS-aÜlŻ5gŗ / k0Ė^ Ri»ĒcÓśūģ#,yĢås›ŗ~I#QŅF\²Xµ<ŌptQP¼ģ„tNóēK…łf‘o–i;“CœĀQ%BhS©.¤§ĘłVēŪ–ŌŽ€ZÄńj ؘq3¦DHÜBľ°¢½5 ś"–÷uŠ'I°éĶš@I*įKģ·ŻÕ9~{-„,ńχĶL„Ł*śByŒĮĢUŊ„coSās­’©T“Ī^ęYc§Ó{šĒ£˜¾ō&··½$!.£Ņ3fōPæ:žžĄ¶:Äc·+&Ї1–`mī?Č0öaķ+ćüŸĀ„Ź0Ü!]µŗ–š~¹ĻĒWJ,X-ÉŁm„ūčā÷Ż1uC¼“³cfj²w©L_!6em¾Mņ­ä/‰»Ō±”³pß(HqgŃ6é>1™„kī1tox–źŚxČ“0¢]fB‹øómŁ}J3 h7Škßle1Ź·–Éŗ(gÜUfóM}źAeūœ>7µ‰ż4¦ß »K†’ Ų)h –„)“2¬2Š€üVŽÜŒ·bY¶;¬KĮÄ„ųsżG¦™e…KĶf¾³D˜¢ū5MŠļH̰ˆ-ݽ<ī|äNœ„I•4IäŚZåÅ攼—ń*^Äkx‰Ja.“±īöŸŖłīĶ9Ū½%nŽ“źFÕūžX1>ųäÅńxdœ‡É‡Ī_PK i5PK)œ™ J2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bn.phpUT÷Hƒ^ŻW_kÜFæO±…K‚'„PpÜ“nģŠ'u ”`Ž=iem-iĶī^®G/ŠōhūJž\÷OĄRÉuĒä”u”Ų_E„³»:i„ÓżiKūPqœ¤ßĢüfvvvµüŽŽæÓh,^ŗŌ@—Š=Ÿ äр øļ`.óō ŗy‡E0älć-r° ~Į¹ˆ>ąGč.*%ZīØ×÷#xeņ²ĆĀėō&ćŚ× 䰝>§[¾D8rQ@ pyŒ‡XR- €`{@IOė­ßŗ±vwcM™Ņü¤%źa\*$§®$.źQéƒø ÖåG®&»Ø"Tŗ+]é3.–Ōó›č6>Ś`œxę}ĆĒŪ“ƒ>dB`™±š§]ó“QŽu]£קۘ÷3+«č–Ą‘YĮ¢„±‡fä&¦#‹ Nd—Gč~ĮÕģĢ›čŻėعä°n$Q„ńOi|Ņ\0Ü.0iü$w Ģ`’R?Ć'ÉąEŅÆ8Nć³4>-HX œELŅ m³Ą=B¶+$NÓų0M¾Mćēś{Į¦ćUä`¦Ž?SwqæB6Nćó4>(8ę<_d0Iǵ9ĶūPę ߃X“ݲ‘™3)!Ó ų6«æ¢Ņ–ęxa©(ō’¾U^Ö®Æ;˜n TŖmnUA¹cµ—|,ōæ ķYĮÖÖŠ }ƒ®×ĢcT”ėńļĮ[, CҐöė4ŽąHīq¶#Ö+ƒ”X ģI§":ŗ5™źÉ„žWxŅ3ś]éJÜ'o¹5p“sš÷j4ĶĻóiŌ{„ Źģ#zxżž±°‚ZžR+4Ż 4*ō “QB-µÄ µV[w[Ÿ”D¹ ݁ U„cā4S®āµ€ęQÜĢrįąņ—mV2ÉźØ“īėŠyŗ‰ E–߈|&+˜šŖŖÓś8ß ć2"Ą¢d·T×Us \˜ĖŠ›ØĪ®Ši-Y”¬W2B5¹”˜M×ėFŽ:M” oØö}ž›”^6ˆ–ŃŪ¶@]Łé¤©ĖüLÕܵ\ž°ÖÄÕ+“mœKs¦™w&›‰Óä‘^}Ōeé­)„ŽtēÆćŌ—3šŠ>-ek@O5č@qKöMāi.(/ōŠ?Źŗ†ˆĻ āx¤ˆĶŠ«Ļœė¦f€Ŗm ķP„įĄ~y­­drSħf76CfĒ8Ģ6hõ|¬ŸtĖSˆÆtc2āǶ¶Ź—µĻ4»ÓŖl³”„¶€·¬ÉU)?s¤bž$į×D]f)ĄjPy ź¤ [T1į'£*Ź÷ŒĢŁcCiŽŠžöō$•dGšu2>:„cęhĶ^SżŖUwGUR‘eĒ›Ńh5ŹœdᔢØ!_ā<j Ʊq>£“Ū¼l¦QĪķ>€oĒĢ-Čį‡t½÷/Qņ(j+ļ·™W|s\)¾Ōø)©zĖ?Ö®Žå]Ā/XDžėZśķ_«%˜» q ķX†yC›šŠęYšŗaż¤Ł]„ίՌձéYżøōæmÉ8ķØvĻ›YkĶÄ,£ÄDübn‡ęöĀÜL—N^š›Y”É+e|óZćOPK i5PéńS˜nG5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bn_BD.phpUT÷Hƒ^ŻRAOŌ@¾ļÆx·©Ūxš‚Š  Į åB i¦ŻŁķH;S§SÖ½iˆr0Ę!bbf "fM ü•ł)N_»JĖŽMģ”3ļū¾÷Ž÷^{ē^„­–73ӂXX]S°gJ¤ŃQX$2ÜBįéѶÕņ©pīKF8¬Ń,`JĮ ē¹ …j‡"™«¤„ÄBŻ<Ž!é@²^¤€šÄ,¤<³-yWȄ(&ø iL‰Å¶ķcŽźŹāņŚÓå¢śSQŠ'tX¦$ rE;Šg*²Œõž‰\†Ō6ź YƘ°Č]ČU$d6[ÜoĄߏ%<”"O]ˆ”Jg=Æßļ·I„÷bҲWćŹ{$f<YP°N8„ ,D ķøšˆ$,.PČĢ×õ.2Ć×F7ś†gfųŹ6±ōW3Ü5śÄ ß#:Yt:Ž­čS }0śøJŅ—FŸ…ĆŻņv€µŽ®ēX„āß½oōK–Š­”Uń~Š÷Ū¤T¼1zoLæ»JżmbĘgt7jrõ]ł™żŌ„ÕVōŸÆ¢OéV‡ žž8g(øÄ÷ş*#lwŚ@müKīćl5ī'^GwŒž9žūŲč/כżĄŌ½ńr\1ź•Œę ÆZS›b‚łšē†Õ ®jf®{H’7ŗLfŹ·|Ńõ ;hćVÅVx)*Ų"P"QuÓmmNßnżPK i5PBżŖd5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bn_IN.phpUT÷Hƒ^ŻRMoÓ@½ēWĢĶm”q…RJӂ"µ=P.Ŗ¬µ³ŽWuvĶzŻ(œ@Øō€§ŖUŖŠ&*!T=  ”öÆģOa=N _āŠ„Ž÷f޼{ķAʅBµX,@ž†,€Eģ©@ B 5"=Į-ä’­ŲÜ,}Å_…Mɇ=šxL)Xó²pƒŪP؊/ŚėćŌGB¢PFų"īJÖ Ž„ˆł”'¶%„lÅ/AQb±#F;X·SÆmļķogRčO…DA‡$Šd‰’ĢKmB‡©Š2Ö{"RéSŪØ‰f«Ł„YķĆT…B&w³{ź›»š8‰Ų ģ 5Ź•ŁŌ5ю©¢Üļ– A¬-ū"P"­ā iŁūxi«ÜŠ˜ē—#į“ˆ&-žV„lacIU*9)Iו4ŽˆOķé§2aGtEŅē)³’®»Uāŗ§źńŠż$N ž2u'_JāĄżõ1„šĪVu·Śh8%$ņĆi ®Āq…cō¹Ń7F÷Mļ•Ńߌž‰į•齓M,żÅōNŒ˜Ž;D—' '±Mś˜Cļ¾é[£Æ'‰½“üvŽZżéąUĘü£ĻŒ”ÄEŠJ®z÷!޶Ižqlōé„~;Mōžŗ“āŗĶs³»rū[Ø%›YѾЄ‡MŅżóć\aĀ-¾o~«Œ°Żpµń”<ĆŁføNÜ[D_żc2÷„џ›}ĒŅÓÉrēølŌ©ŠłAę¾źxœ™)–˜Ÿńü7«KĪ[ōÓfüß»±N\ø“‰r3kYŌ„D¢µ;„ĀĮź½Ā/PK i5P#­ß 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bo.phpUT÷Hƒ^ķWŻj$E¾Ÿ§8Āģ†q³AČĘÕu!’ģMDĀ0tŗ«ÓÅvW U5ʰаYXDpL6{”’HšÖ$=ĻRbUuWO’Ļx©Ų2Õē;ßł«sŖzķ£a0ģt–—–:°OĢĮĒ!õč0Ō xģ°=JŌ+÷™³ī)¬†ßqļĀ' ;ž ¾‡…€µ=½ü˜Ø%÷\=L”ŸRfˆüQ‚K‡‡ ļāAˆ]Dø2I|Ź"G`Jz0 ‘£Ž}‰ŃŃŪŚ|¼ńdgCS’Dą8p8x˜ †÷Fyp€E $ŹwNGĢEʐgœ]ÖjŻG#PĘWõļwį3ŹŲ” łéz6¹£bäF‡!1bv; žī!rX>|Żē+G2¾”ń­¼żVĘĒ2>‘ńµśń¢æŅŪ$žīŖKGD@‚éöõˆäō–Ó?Œžł<–Ņr ō,”Ź@ē2ĖųFʧśFN5—UšœĆœé×ĘŠé<»3˜„ TVs<Æ“AMņVēBٟCXĘg©ĮD•/G|%§ßĖųĀ`'óX `KɑK‰W,WĀt%旭Æäķw–Ę٧ižŽP<³©»“(ŸŃh@čAz™Kœ‡}pˆø@,+…ŒæÉ*ą(c–.dZĢ¬én`É5Æ·ž&Š X¢œJvņ¢UĪ ŅD¶¾¾¼½½ü…z B+…mõ@U\•÷ Ęƒ č©§Ķš~¤ė„ˆxiēå¢äN„Öm*wĶęæ6Iŗ0IzŁ•‡œe‚¾y|9©uųϳ6Ūmj°ŌäōG’„IĶ&ģ÷Jd”Ć Ęg…/›ÕČEĶNd¬6ķ/©MH2Z¤ÓYŚyŚ[[„ÜFˆa£ČHżqõč…;ļč6æ Ļ3ģ§/a ŽĻ ō“É®ńē­õs¢'߃ xT˵ræ™ģ'3"ŽmNæV?ęó}ŠĢWšy7ŗéęń½×āßŲŠÜŚ]¤—¾NU„!?Gł"ķęnå|[KgęL*āŲ™dģ¬ te¢Ÿ“€ĪMśÆ[—z 6‹Ēf—ŽŲŚh%æ³AŖ»~ÓßķłŅd1©j+ÓÉāˆŁy³øB1ūżBY\];Ä’ÅżW_Äԁ>ėŚcĶ“Īä×6Ķs€’ø`Æ*žä<›åE-NUėĻ,’ZÄSˆ ÕMq–GIˆU„ŗ÷üjŽøÓ™”rJ{¼&üšŪ¬­>œśr[]?’5N‡źk'uVa՟ŗhž¦‘¦ Ćł˜q1Pį Ø?Č>īĻ>ōū¤„z•}߬”&—PiNH Zh|Õē­ŚC-øĀkĀęXh6ʚåiÖb®0ŠZpå™Öl:7ÖZųNžØ<ÜŌ©ŌFķ¤žƒĪßPK i5P&¦ŁĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bo_CN.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆ’ŌŻXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų Ta¦ˆ ³XČ3H@8Xv9)åæģ{Õ®ņ ĻL6Į«#Ų»>%…YzŸÆ’Ņ×Ģ›ŃÜbŸĖ/Ó%Ų4A$©jdš3_­PNwP"Zå~—ķīķt8ž?Ž«ÕÖO‚Xl…‰Ŗ0¹&8ĮBt£ŻknģQƒ¦­ģ`„qĘļFŒ0Ž/§÷qģwƒĖ½~`wožPK i5PڳąSÓž 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bo_IN.phpUT÷Hƒ^ÕVOOŪ0æ÷S¼[•Ā™16 ˜„D9Œ]&„*7q‰EwŽKÅĮaډŚaü)ė¶ćҤ©égńG™ć4mbœ¬;.‡Öļż~ﯟ,?k»ķJean®sšŚ%!“ˆ‡Až·ć@[Ą] «ˆ5i Uö>ŚĆ5ɍé3ö,¼`°…Ć&į–›±ų<"å5›ś+#źKŹ”£VĒóĄ¦ķCFö\(pĄ#6B2hQę#NhP…¶‡‘ŌÜUv›«ė[Ūė±+•w‡. Į!!g¤Łį؁.į®Ddī!ķ0Ė@ŽJv”Ā0ļ°cč°ĮpŪC6–’v‡…äĻ0ü¶C†FcmćU£Q³š“&;cUa§ņ±|̈C°oĮÓŲ±DŌĆs1x/¢S1¼Ń@®%[bųCD÷:¶[Mu1ŽwŠa8vt$¢+]+ž»Ōšrģ. _‰įOµųh„/ck©I"Ēā­‘×Ć_)ļÜČøŃCbĒ’k))æ/¢ćų×Đ=ŗŃoMbé}h„.e|Ü C U—Uj®®°"sSeī“ąŹŪ§w's—KO„s<²‰†ŌĪŖ*U8É+"õUŹ—%$YČē“_fF/=]f89WćvE9U¤³rŅ­~Pgö“4b\ŚC¹§“éGj}’× ²łīē·U;F©£ĮMŽńąV“{š|§É_4¹ÆÉ_5ł›&×ä1ø~¬Ņ³¼‰Õ äņm<ą©FŲ| ÷±„—ä"^n–‹H“q.bč].7Ō%<}®‹CgF»ÄßÉ?‘ōŸŅęŃŽdo]8ÉŽ/Va1’Æ†Ń½¦TJ½łZi,wÉ÷YÕ,²=–ĀPCģ|ęėõłµµ˜A!ŽV9gņ]§¶æ^Æ‹č“ŗ|ćō5»‘į膞|!ō’QUėŹÅu e|”ŠĶ\2ŶUpä“÷ {·;ū¤ņPK i5PĮu¼ĀF 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/br.phpUT÷Hƒ^VQoŪ6~÷Æø‡j×Y¶īanÓ.Ż&[Ü( ×héd•Hƒ¤äŁIĻžū8`oŁÓ~Վ"-‰vŠa K¼ļćwwy§ÆVŁŖ×;9>īĮ1¼Ļø†”ēt_1e@¦`2„ ¦R)žĢ–8 ®„?‰ąµāLĄ;Ō n ¼XŲį/‚†Ņ bY¼ōŌ7RÕBi™ēĖÕFńef€‰r£ŠäR¤RĢp)ś°Ź‘‘­āø®ē]_]ŒßMĒVŖŽĻdĢĄšiHø6Š/Jƒ ¬¹É”Ųµ,UŒä(©ƒ=±ڹē„ɤŅCūüŽ(&Äķ STes¾b›äļÆĀĮ•f”¹®•šR ˜õ€®hƒLEpö¢ŪÓ/ĆX–ĀĄ"—l{wūc’Y’§žĻ”uö}’J¤3o«¬-ź;)vˆ•ź±B…&ŪŖą¤ōĆnTń}ĀŪ@BŠäĢ^#~vS=¦ł6+E+Žœ¶Ćļd'l³ŸH‚n³N4[gr¬ÖiW؏ÉhO‰!-ź<xwČ+ø ŗŸRUZ«Ż%Ž™öÖŁ›;Æ*T¤õ|¼šĘXŠ$Ģ‘[×]—āøĄ2Kˆ+ļ’Üs³§±”Žƒį§h+wPŖdq#äŚįģ邦AMköOӖ±PX°ūÆøAmP5Æ;ĮųŸæ²€ad!•Śi¬™² :> Ė•!]ćī˜×ęė÷nĘåå°(<×Ó2Ō:4L&'é Ą 3fOÕ&tĮ!ķŪ<8 §”'tõįæ&Ķ}Ś1£×”ų ŌÉ[³G»õœ]ņ-Æ as õčxų»iYhU?EõŖ~ƒū”©6J˜²r¦;Š#“‚ˆYھ؊z‡y€kSēŚ—ė½*į‚å5˜–"¶ž|'Źbźnß<2ŲQąģģ Nįm]Ś”0„ØB=Æē}égæ·¢·(*¤āŃ%·ĘJ¹Ń„J†Żiēµ‰”C¶U%aŸßŹUmKmjĖÅRęŅ>_zlTŚ’ßPmĖhq£©š6”6ƒ ć~\”÷ģŻzÆŽaąÆńf >Č]ŅÓ²NčŗaŖ¬÷ŒSłČœ ›‘³LY"•8 ’8öŗ^±,©JQ-m„œŽ›Ø8§ŃH¤\ic›ĢLŪwŚv1kw$‹ŚQÓģŸyVN_2Ž=‰Ó2¶„ö”ā ĒĀSĪ“AнĒŽÅ{‘šŹIÓÓĀbßiS`Ē»öv2ϟ÷žPK i5PÜ7>Ź 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/br_FR.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆ’ŌŻXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų Ta¦ˆ ³XČ3H@8Xv9)åæģ{Õ®ņ ĻL6Į«#Ų»>%…YzŸÆ’Ņ×Ģ›ŃÜbŸĖ/Ó%Ų4A$©jdš3_­PNwP"Zå~—ķīķt8ž?Ž«ÕÖO‚Xl…‰Ŗ0¹&8ĮBt£ŻknģQƒ¦­ģ`„qĘļFŒ0Ž/§÷qģwƒć^?°»7PK i5PéęLņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/brx.phpUT÷Hƒ^-KNĆ0†÷9Åģ J@ˆR¤H( ėČv&ńØ®mĘcBo“²²fü?>{’m¬Ŗ¶®+ØįÓR‚‰B9£b0X„ƒb|Y™“š±)ŚU~cnį™Iyč1i½^Ē'_Ę  ē‡éką-hŹĪ ńĀ4[åGpdЧRé§Ąg%üD‡Ŗģ~—Ķ÷ÖŽżĒqŚųÄ*E%) “Ī‚#,$¶Üö2,EćŪ®/\½_žäĆāaÄIe'Ą8ou9į8*­Ņ(d”s—k£döÅš‰†į„{†f×jžŗ¾)ßø»ÆžPK i5P‰7,G6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/brx_IN.phpUT÷Hƒ^ՓAoÓ0Ēļż¾e«ŚT\aŒĮ6Ĥ1”ĮeBSä$Nb-µ‹ķ¬źM‚ā—“©bÓTUBźm_Åū%-,Ė!zHüžļ½æĻq7ž ’A«Õk·[؍Ž$T¢ˆ¦™÷ …x„TBŠ6>gF NpL\SkĖׂuōLPĢŠ‘>U mų6Üb&äŹ x³*}ĪEYš¢€F‚ʉB˜…(„aŅlÉ".śXQĪ:hl“SJ†Š·æ·½{šz×ZŸJ°BC,QH„ŌĻ ѐŖÄd »ä™ˆŁ(ŲžŠö>ĶTĀ…|h×]thz^ŸW#Čüü,īĘ)õƒnŹœ¹³Ģå" AT&ĀBą‘'Č Å1ļ ’ž’5AŽeTäy;{‡žē:=Ā\søN½mYw§O:čńf%¼‚ó²·Ó;:r:8._NŸ3•TŽĪ':æŃłTg:’ė™.Ž›LīRc_éā3Ø ×ĖŲT,Jé ōAG~«ół²°—« M’ ęąRå?źü›1‹¢”G^Ąb9ž4›”tžÕ¦­ZIS o.æ“ECśī)yŅ|ZõWĻźū’VCBNB<ś}§fPs Ļ›•‘±ųT“Ģ‘œĆóZā f½ø§–(¾ĮżĢfŸ³ĘÜōNS¾ö©«–żłuųg^Uę>CŸ²C`v÷xäETHåY€ó`ł§ ‚†”ōWŒ—ątī®PĘĖ jļ‹kķ×µ~PK i5PwZ–õČ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bs.phpUT÷Hƒ^ĶVĶn7¾ė)x( Ēp˜E{PR·Iģ ģäąEįĀhwVĖÕ.¹ąU·Ź#ä!zź¹ĻŠō½:\rW¢åʶz)!óūq–CēłwmŁŽFOö÷GlŸ½/…a…Ø‘Ń܂¶LĢ–Č^ž)I¢lsädėĶ÷²Gģ„ Ł[43a-{>óģ÷’Xey¦šĆhśZéØpuĶ2Õ^k1/-™³Zd( -) „°BÉÖÖ$»øģüNO^æ=?öP]|¶Ė–`X.ŒÕbę,ęl)lIŠŻ(§3¤…ņ.Ų'ž ½ļ gK„ĶÄӏŁL-DŽŁBÉ ‚ä2%;W‹ĄæÖ ’śCāĖ 0%ś_Ķ)ņR<ż:HĻQ—“ /ZøĪ?ż)#Ö;1@;fŗ4Z§%»1ćk=fß²ń$SNZ6W¹°Śä0į`|]wōk”“eāŪTh0[%¤¬¼wö\".gƒyC9_%¬KŁ!źåī®9¤[•ƒ\­IŲ¤—‡:”tŠŅĮ®Ö$lŠĆ†”uh„¤ó&Ą‹V› ¤Ü†ļnŽ”B%ó»æp2_%¤ģ³ŁŁę*ų¶ZTČ&V4Ųė ­š©TńPü © ‹1čV§ŚR}éwŃ+]nZaȽ(Š5¶Ķ5BĪTå>}¤Å6-¬j”Ö€³z@•-ģI؝ųō}°żaŅ4Ń4ŹĻ׊‰1‰.hŽŽųŁ’‰F¢ģµœŃ`Ūś[ ŲÖņƒYN怿›ńeüŗ j¤|ź›Ÿg Į£~Ć.üµ1Ģ]2śźÅ$žb×FŻ®Żnōc_G '3’J°½ŸĆ»§I *€źž™Ó„}Ä~0ü0ōBd%Ūėõ)Ÿļ |ÓŌĢ?AO'[r?b9_P¬ó ėŹ“!ōg·c}u,ćO}~'Ō7÷rō )Ē\mļ†ņēąv˜÷a#_5˜¤†»²Uoõ’Éź½2Ōjõ÷ļõgwdĄŗ+E ūDįNTO—æØĒµ‰ÅńōĘõVŚ·u¬œŅ53Ō<é*baW •*x8ӑl؏ō3P=ƃ ņSå¤sŻĶąęĪt–[‹Ķ,ø«…U‘”źjSßčĖ$©”žĪ®Ćį1#į1’ČWżPK i5PB7²ņĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bs_BA.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆ’ŌŻXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų Ta¦ˆ ³XČ3H@8Xv9)åæģ{Õ®ņ ĻL6Į«#Ų»>%…YzŸÆ’Ņ×Ģ›ŃÜbŸĖ/Ó%Ų4A$©jdš3_­PNwP"Zå~—ķīķt8ž?Ž«ÕÖO‚Xl…‰Ŗ0¹&8ĮBt£ŻknģQƒ¦­ģ`„qĘļFŒ0Ž/§÷qģwƒ«½~`wožPK i5Pŗ8čR;7 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bs_Cyrl.phpUT÷Hƒ^­SĶNŪ@¾ū)ęfˆ"G½RJ«HĄ”p©²6öÆš_w×D¹ØŚWHß"”‰„ I^ażFoboÜ žŗ‡xēū¾™łfVŁ}Ÿ…™euZ- Zp2‹(ą7#\B€ )ģŽM„¼rMŌ–ņ-o>rF8£¢Ė¤„Żn~H0L„ć„ńŽJś)åŗPGxiÖēģ:”@"ęŃD`Ė$HyL$K“6d%ˆŻ2ŚÓy'Ēū‡gē‡e)ķO†DBš™œusI}č1"ƒŽEšsb#_›ķXœŹœ'@8'}—Ó,"ÅÆ—sĮné§_sĘ)øīĮńg×uģNW8ø» —ą±cŹ™ĻhlĆ»=ø“Õ¢Ø)؅š«‰š©)*mäŖ½LķQz㓾ØR‘S“bئÅO5ŖóØz.ń┸WslTÅwx*5ŲAg?PÆ‹ž®TXmj"ĢyPc¬‚Ȇ#W„)— _ʏq`z›ž¦“é²Y?fɒƧ‰ «mā6Fj†üØhķ7ģ3Ę}Ԉś]ŽV5GśįžŌKĶ uÖõ³•ƒņž²¼#’ ~”Ļ»Ź V_ ė)ęŽėsõ\N²†Ģ0züK5Įy¾ÆaĶyo±œŹĢcę0S¼6ńoÜßĘ«ńhœÕ~ʅtńżÜ4p˧ԦŽT¬ž“®ÖÆ! Ÿ\hÄ>:ډc»½NœÆ1;B4Č%uąœ:_š8 ®"‘}•6<œā-MµŅĒӆčqWŪo­?PK i5Pķ”Oą(7 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bs_Latn.phpUT÷Hƒ^-PŃjĆ0 |ĻWč­m(ɬlcm…чmocÅQj1×öd¹”?'ģIÜétwh÷m¬Ŗ¶®+ØįÓr‚‘A™E!Œ –`Ņ_(óƒjŠv–ÆĶ^„ŃƙRĻŖ°ėgųģ Ś˜p}ü—¾YŒĘģ˜ļĀ«€~dž|*‘~ rEåą·aįnLÓr÷vŚĻĒŁjé§&L0pRį>+ 0±Ś²)ŻSČbØ KٶŅ,PļPthØL“%ńÖB晅 ė§÷®kVmŸšņ™Õ¾ŖļĶCõPK i5Pr¶ńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/byn.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ £H“ŠĪU’ŗµ, ŽCÕ·'ķ8Evžæd’m¬Ŗ¶®+ØįĖR‚‘B9£b0‚X„ƒb|Y™‹š°)ŚU~gīį•Iy8aŅ${½Ž/¾ŒA®O’Ņ÷Ą[ИāĀ4YåpdЧRéĒĄW%üD‡Ŗģ~ ēĶ÷q¶Z ¤źƒ-…ÕR”’Ą?1’Ä;I65­Ov'÷ŽsĻ9÷fīüA«eĻ͵`žś<‚.č0©@tAłĖLvDH)w‡õ°MXŸqgį”ä,„-Œ:\)Xč˜p)¤Pض+ś‹tMȂØøb0’¼ē+`”w1ŒH2ģ ŁgŠ‹p2Źķr}ėĖ«[OV UįOłLĮEąńHIމz0䏧 yD,]$!Æ0k› MļƒXłBFwĢū-x„īĮš”ā(Écz…>Š—-õ÷ŚBö ‰*–!0)ŁČ‘8˜‹tŗ±Œų.ĪH|s‰ą8+ė§mٶiĮÖ<Yō«.K'ū:ŸčōB''ÄléģT§ŸtvižÓÆeźĢI^ū¹æŅŁ÷OÅc¾šĘÉ;čģ#ƒ”ü ų›>ŃəĪ>—Ų·&ČO© ~±@‰ģõ€NŽtr^'5’‘N‰#½)fĄ—:Ƒvhś“‚¹9¾Ń·SחŠŲĄŸgo ^±ėv3ac¼ĘPæ¦_Ćrmvˆøć±ŃÕךčģP§ļ‰Ģ^ņsWØņzś–dz\2ŅāĘPnLDÓäå4ٳæü¢ĢØ5W­B;•ėž®­pb×Ėų‹•*Ó..oJõyų_…ŗ\FŹ!)Gt£ZØŻ®ŖU¾™Ŗ‰FČdÕGÉ=Žż©Qŗ-łŗ| Ē/§²W9ŗod-=6¶gļ¶~PK i5P†ś¶2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ca.phpUT÷Hƒ^­WŻnŪ6¾ĻSœw©‚v½r›fkŻb’nC‹uƒk“td³•H—¤’zuŽewŻ.ņ~±Š%śķ0 DžóĆéCźŃŁ|6?88¹sēīĄėאóŽs¦ ČĢ į)S)Ȕ¾gSLkįGiž(μD=įĘĄ£‰ķ~/Ø+M’Źņ±‡>—ŖN”WE©œ/ŸĪ 0‘AĮSš†¹T%3\Šc˜ČČvÅńŗŽ;ńōŁĖWĻlŖšŸ™1×LCʵQ|RĢąš›yˆ»–•J‘Źj²'v†6ö‡ŹĢ¤ŅŪ¾ %R,–+œį¹bbõYR‚'ĪpĮT ?«Œ ŠĆy!ē\;×/ؐ\Sęŗ? į…f¤w’Z”0«[׳mu›R`øŗe:ÓļģŠ»Ö‡”©L VóTh*%`tōōČTNCoŹJX½˶©{ĒĒ.[d%v”_“Ŗ”ĀĢ" ©“l›²3hK£īĀ•_•ķń}ŌhJ&Ų2źbgō6¢ģKšė’’;c±TЌw) M(‹35ęmŠČCŪ2ÄS»;J‹µŻ ŒWmäē‚6x¼Ö“ģvŗ‹ŚĮŪUŻ„ŽzŚĘ„1•"[Ó|*ŲŪé ŚÅWB{’v“ŽÓ†$Sé9ƒį%6Ž\ÉņRHæ²·=ö”ZŻĀŠå›±vČPĻÕźŸ‚Tž°‹`Ö²Źxž·£0ŀJņ‘AUŲ5lĘUä7²”JŖX®žŠüŽĆFĖģÄÖóÕ“Ś–•*¹ÖĢ4ą9*.³K…i„Šc©^/Ū¦^‹ā‚¹b… IYFŹ[ ՆĪś×4ū+CŌ½†"ė€rN³c1ŠŽ„«•µłüµ łqP–źķÆZĒ@ėČē<ĆįÉÅÅÉōDĪĘ ōĄ(Ć1lbv€`Ä @=† :!$£¾&nģ'ž²‚Ōńµ¾3sĶJś ‘W"µ§(½uē¶½°‹’3:Ż:›>| )ģćOŸŽˆ]Uœ4ļ%G ōīc[†ą›ÓSøgŠ+ģŠ›õśIo $żĆė¦3YĶ™¹ķ»?jošSä’s«s“jÓūTĶV†=‰f™ķQ“cpʹš“'šöń¬Š¾†œÆżd}„+Öęp(Ŗr‚ź]!źrö|=$9Š&säą”xŚ»Ęr ‘éMÆoŁ3Ė=uį.k½W#Õväś~»Ńß})’ÖØu”©µ_żŻŪŲßźŁ“Ę–¶×w«yÓ½ś2oO‹) :„ė“#lj ’©ÕēŗMĒ }„ĮΧ¾ł®‹Š,ø,ųTjćtĒŅz—LMÕō„¼jõĮuĒY{ČQ….¤@Ļ;nŗkC“aŁR üŗä:ĢbZ;8ŃMŃD2&“ķ"&_Ņ0 &­~I«]Ņ —“¢%[Ém•-iTKÖEKvh–8ÅÆWāµJ¼PžĘ&…Sü8wÅāäh8’ĆńŁč­>kĻę³åł§ūĒn–EżźŸtæZčv(ÆJS·¼(*{?“M¢nš&¦õ„ݶßÉŹ·®čTf*ƒÓ®a3H¼Š^sæ^ėԽ޹—Ÿng¶!Usw·‰\—ĘeqI\—"dȹŅö ·ø”yū vÆżr²v²^Ū ß¦<Ŗ ov?:%§}Z· Be“> J` ”õ4ęuƒP懒PK i5PÄ·7qą(5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ca_AD.phpUT÷Hƒ^-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5ėņ™Õ¾Ģ÷ęĮüPK i5PWWŪŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ca_ES.phpUT÷Hƒ^-PANÄ0 ¼÷¾-TØ}+@,‹“ŚpÆÜŌŻXd“ą8Tü·ādĶx<3ņž1ūÜ4}Ū6ŠĀ§ē3›E!Ķ žą€2¦h”ūĀ u¦]å7īž…1Ā™ŹČŖ°Wų &ķ\ŗ>üK_“lFs \ŹæĀƀq‚ĄŽb±Č8'¹¢rŠw”q?LĖv÷v:ĻĒÕjė§,0qQį±*M°°zŪX÷’Ŗ8² i+Ū7BZ%‚Šwe!†—Óū0t»ŽagŲŻ7PK i5PÄ·7qą(> briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ca_ES_Valencia.phpUT÷Hƒ^-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5ėņ™Õ¾Ģ÷ęĮüPK i5PÄ·7qą(5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ca_FR.phpUT÷Hƒ^-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5ėņ™Õ¾Ģ÷ęĮüPK i5PÄ·7qą(5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ca_IT.phpUT÷Hƒ^-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5ėņ™Õ¾Ģ÷ęĮüPK i5Px‡Ø;Ŗ 3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ccp.phpUT÷Hƒ^ķVĻkŪ0¾ūÆx7·Į$÷®ėĘŚ Mk/££ŲJ-źHž$7ä8:(ƒR(…²£et½lŲž„=¹r§8v—Ė`”²¾ļÓ{zļIN–eIęyV˃ģ$LAŸ„pĢˆŌ ś  «DöG(: ū“Z#_ˆį‰d„ĆU=¦5,÷Ģō1Ē©ŠķH V¬ō©…£~ž¦‰l$Ł~¢šRQ®0$ļ 9 š @–R‚Ų!£ĆbŻęĘźśÖöŗqUģO'DƐ(ˆ™Ņ’õrMc2 ƒ{W"—Å@q±ŁŽ'©Ī%"%…’f)‰(ŽQ.;¤ ’¾Č™¤†kϰķw(oceüv=ĄĒRz“‘ņįį ģś?Ļ^}B»@{viGƒżĄE†’bł‰Įjų‰å_¢½¶ļŸ“fžķĶüw‹]ŚŲF’¶A_ņĒ–7ću©¹#—ńL®{Įt}B•©ŖTW™?U£®ód=O¦uŁĶf4`ü>ä3\'Īł=µ ćķcÕzx‡vU9?åĪźōē윘č?rüø™¹•0kÆģū©õ?vų3k¾9~ĖŖžŲøg• øū?³s÷.^TŖvd±ćʚ:ķŲbęš{īt³Y;Ż„ź-ŗķU]īy®’ršė*?P$œžæ6’RĖfÆĶĶ_ūu+ ŽÜ)?Y €ųĖl’¦–”Ŗ°7ÜZ§ŪyŽĻUrŠķv˜„]Ž  &ž­0Ę'€f9¦ø·ųĄūPK i5Płƒ²§ņB6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ccp_IN.phpUT÷Hƒ^-PĮnĀ0 ½ē+|+ Ŗå>ʦ1&!M¶ŻŖŅŌ„!ɇп_ZĶ—§g???yó† T½Z)XĮĻ@z²ƒf߃ ;Ķ­w¹e®ś‚UÖNņ…YĀ“vpÄŲ’lډ¾ŗL½TĘß¶’ŅϳQŸ¬ćƃé2hׁ%ƒ.ę“®÷|ÓBŽ•,źÜ»ŽóŽēa·?~ļ'«9Ÿ Z`Ō:ŠĀŌ&ĮF’!Oröč̇ŗ9l­%±ͬ c°Ś`F“8ŅŒæ‰”iŽ_MSµ1”ŹÆ)J8)ČUŒˆWt]Ļ[8­KXŸKu^>©?PK i5P³b’MńN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ce.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې&”;Wiź6Ö²$8ÕŽ·ćŁłü’Ķkr©Ŗšõŗ‚5|;Ź0GŠ3ˆˆCŲībŠ•½˜kÕĪņūļL&ĄsG"°éęń-č„¶ńśņ/żˆ¼ Å{°1ݘF'`Bž,†¬•aˆ|5B19Ó”5ŽßīŒR8Øį§#“ķīpjŪzÕXlOēZqõ\żPK i5Po«ęvŹ25 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ce_RU.phpUT÷Hƒ^­TMO1½ēWų¶€hPƔŅR *p ½T²œĆZ$vj{‰rƒP¤PįŠJź‡*õŠ[)% „žÆųC{½!”äŅHŃŽß¼yófāģÜ£zT/f¦¦ h ½ˆ˜BV„žu"5¤#Љ, PøM¶hø–>N¢'’ŽÖ©*1­Ń\És8 ] EmŽSŸ é„*qµŠBQoJ¶iDxUYH¹‚–¼"dh&ų4ŖW)l‡Ń†«[]Y\^¾l„œ?D”2SZ²R¬i5˜Ž Ž•ˆeH”QŁ™±ŚŚ…XGBŖYßC ė‹Ļ6\ZRKŽˆ”¤‰%­WIHįĘR±:!éė˜IŠ0^ZŁĄøĢP^„ÅÓčUĮ'H­«=œ÷ƒW¼„Oqi©ø¶L»äfśj‚ėČWę§éš3sšģ&‡ ˜ļ¦mĪ’]sj.=ņÉe[.>6!×īĻ™?.ś˜¼3]Ś8cƒśļd?Łó ß ŗ›“’#ó«×ó‹é ŸĶuīüŖ:Š+Eņ“`ėÕ~؂ylMņĘNāŖÆģ.:µž3Ģ;æ°Ī{Ń„ēk§²gż:ģŚŗtQ×ŗsѹõÕóÓ t»Lš½ŻžÜ삦Że×~‘„§ĆoA¤•‡˜ ˄Ћ~ų$9ŽųĆ]č+4lŪ†`»3Ø ķŅć ŻÜ­éĢcf*s‘µĶzeĀwkŒ’½ “JcPÄ¢‚­ø½ļ³OI6kOMJdĘJi=$˜ EĢ5²«÷’‰ 94Cš°Ā¾Ė—KĆķ܇{ÜŹj#³Tø]hžŃ¹9JļT¦Ó“'x“Ho—yŠ»7>74Cšŗ4Į1æĄ=øšÉįķ¢1y‚G‹ųM3/㼑+÷gŗīū9üĪ xœPŹS4¼0Ļ395–Ašx©ĶÉ…PK i5P"7«žö3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/cgg.phpUT÷Hƒ^„R]oŚ@|÷ÆŲ7'aõ•¦iKH•Č1‘©j£ČZŪ ¾Ś¾sļ#żõ=ī0`”>DõĖhvęnwö|ó¹-Ū ˆF£F°.™‚ « ,¶(5ˆ 蒱e&ø-ånib½{ūU~ 3ɐƂTĘ“†›lOæpK…žä¢¹=Xæ é.ژŗ†\“;ɶ„äŌ,'®lK¾²AĶC[ŚŚ£Ī{z¼»_¬ī÷W¹łt‰:TP0„%ˌ¦:¦K«ŲŁ•02'ŪØpĆF$m$”w©¤¶Ęœ,ęF*öFW’~& ŅtžøLÓIŸŲĶ„cx Ą~aGTøS!|ŗ…—pe''«†Ļ²•ɐ’ĮÅ 3&ى);«9Q~fԈ\ō“1āĆ×ń°eŖJ!ußųėĀł—±ƒxęaåĮkńŚA_^Õ0ž_5‚ė²_Ās5Ģ^ ²WĆģÕYöŖĻ~¤}ö#µł/sā|ąīˆGĘ*Ó°Ž`±£‹*sć Ó öĻ~īų„ƒ•Ū@ģ÷Æ=$±‡•‡Cń»w&޲˜{m˜T:µŠMŗךCÆŗ_’°XWrå§µ«„Ó¦ ĒēĀźL™*5½4ŸGIż°ß@ģUH’.ÕsŁėpŁżh+ģ7†™mvĻĘöži. × }^÷ÜQ5)’j†YM’»Ü˜¾ćž×ėĮ_PK i5Pźŗ8ńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/chr.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې&”;Wnź6Ö²$8ÕŽž“棳ü’Ķk“±Ŗšõŗ‚5|[N0°#(gDQØ%Ų¢tĮ—•¹ąHuŃĪņóļĀčįH©cUŲtóųęĖ“6įśņ/ż² Ł90!Ž„G«€¾dž|*•~rEåąŸ :²ūešßēa»?žösŌ§&LŠsRį.+õ0±ŚrSŲSČbØõ l3æpöžżÅ‡ÉCOf§ 4.u9я%*-v¤lйŪ=@H³ųbųÉ,m»;|µm½jŒ•ö|ŖĖ7®ž«?PK i5P0RXw6µ6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/chr_US.phpUT÷Hƒ^½UKOA¾ļÆčŪĮŻx2AD0Įõb éōĪöī“ĢLÆ=½lö( ‘D§}`5э°(Į×~K_÷WŲŻóbXĮåā^fŖź«Æ¾ŖéھZwź…Bi` Ą‡ J\ Գޓ øƒĮbeź+—=‡jøØ°Žg÷ƒėŒ Ģą L8ĆemŽśŹ¤¼hSo$†Ž ĢU® lZo1Rs8@~øÄĘ~ JśUŹ<Ä õAŻÅHłę nš¼©É±‰™ŪšŹčćā ‰P!g¤Üąøš„;*¢““Įl¬ UŒŲ’īPē^kp‡²`Hæ_cftc0cŖ‚›4ĄuL°2øo^1+_­yˆøŗCÄ0o0 ĘP 2\w‘ÕÓn°€Ģć>†4ĆĀńÉ[­ö‹jÄÖ øWźgEMø2»Œ{Ź8¬ééŅųx鮜Yƒ&8=,śÜ‰³,~”ā‘ I±"Å¢"W®mnÉš{d|Pn)¾%±#ÅBYā™ •kĶøÄkīŹšgŠ’"ÅW)–ÓEū#1ÄUCē‹ÕÄÖ|‹©­Ž^iJ±%ošbŸ5y¾ØOĮsed]d-dś3Ł™ąLj¦3S˜iĖT„zšĻUPėųtĆC)ÖM'KѰ¢“ćeĶīEĢ+f*eø‘ˆ[ŚČ»Ķ r®mĶØ¼zĀéPsuž˜N»Ōęē—ÓłWm9U9=9%‘qjQų’©¤*iV 8ŌõµÕˆ™ś“³„©ģ„¢ž΃ˆó„R¤Nž°*ņövŚļ:ķ°Ó~Ż#)~wv÷;ķķN{_׏ØlSæķåM>RN©Ń͉‡•ęM~R»šPVõ OćkÖł¬BĢö_.üPK i5PO%ėņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/cmn.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې&”`ˆcå¦nc-MŠćPķķI;N‘’Ē/Ł>Ov*Šŗ, (įl9BĻŽ ŸŠBčA-Į„ >ÆĢŖ²v‘ß™{xF'Š-«Ā¶]ĘŸĒ • ćÓæō-ČŌ'ēĄ„é*~ AÓģMSmj3śęü]åoÜ<PK i5PRŲ^ü‚I6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/cmn_TW.phpUT÷Hƒ^„TĻOA¾÷Æx·…†¶#"J!!źÅ2™īN»¶3uf–¦7Į€BŒ„ ˜^4j ‰c€Ä’†Vż/œŻi»Źöā^ö{ļū¾÷޼ģō¦ßĢåJł|ņšŠ§j4  ßM,š(ŸĄUĪtŹ]ĆuRŌŚH>ęŽĆ=A1ƒ"«T)˜®Fį,Ó!WE—7fŒt‹øP- py³-hŻW€™u “ŗ%«qŃĄŠr6Ķ€`[§¤ū–ēęWĢG„āł”“°J%h5TăU¾fōģ’‡Ā%ŗ‘[ŠNyļ†ŹēBNEøÕ°^Ø“źīā€ČŁ: ‹\Ōc‹ * °øiŲ%śķ†BŅu2&ȓ Uļ#TtJ„õ2 xœż8Éq¤·gL*N/Å ē‘~ŗ§ß–—{G›•ŹÆƒŽ3kV“—ÓąLłĘ윟<Õ2]Ś9?Ū¶čdĖ īįaŸŻ³¹ć¾īy?÷ÅęNߣÜ㓉‚¤Sz$õž”™ ŹF “\¶ąŠW-øfĮu nXpӀņ% låņäš -BÖ<ܶ[é½ķōŽ:½ż‘2 ō †‚³ķafkč Ėö†˜ćŚ„mŚ™F¦…)nʚ‚–jPö_…DP’F’b¼ģī˜Ļü*BZ—Ū‹ä¦M¹•J?¹ ršaŁż2M‹ļć°ŪæösŌ§&LŠsRį.+õ0±ŚrSŲSČbØõ l3æpöžüهÉCOf§ 4.u9Ń %*-v¤lйė-@H³ųbųÉ,mūvųlŪzÕ±ķéµ.ßøz¬žPK i5PXŃNօe6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/crh_UA.phpUT÷Hƒ^„TĮNÜ0½ļWų@tQƔR$$ *Ū Ŗ5›L6V{wģģ*żž_Pī½-üWmĒYHŪpi.3ž7ļ½±cłąÓ<›{;;¶Ć¾fB³TČlœ¦Rf2d'@S%m)Īa†CŪėŚ·āmvL$»B=ʰƒ©[I»Tf«ņ0“ž)ņBiU,VóšÄ,3 dĀ £ŌÖR¦ŠJ0BÉ]6/lm)påyē'§W“S'åē3¶Ķ” ‰ie0a+a2‹ŲٵŖ(Fk”ųa÷ÜwT™L‘Žwł;vĻ÷Vf2:>’Œ(lóTP!ņ£Y ¢pó{2”©H2 ‚šĪ ˆŃĘø"-–øEøØ!ć||~Ķł0ŚC9“Ēķ²ofæØŁ˜ŽŲĒĆPņå _ˆĘćįååšĘ~Ń®o›•Jš,°¢K «į’ pŁ„żE.Žę„”P?=j—=ż¬+Ł&-g•öķ”fż0õbŸóMz„jh²1ę.ėĪĮµ=:ó2M%ĢĘCćv€Ö?˜ßą 7n+Ä<ŗŻ÷1|oŌ}‚dP ÆÅÓ£KÖ?€žļ±œ¢[T%ĄĀž×²AŻŗü§QgcÖś!“ÖĀ‹Ą"hł€ō·V)ä’)„‚“įV‹«”;Y/÷> ”Ž49Ō­j“¢Æ»J$‘,Ć$ė»Sļ}7q.MˆķĒŖ’†Ł‹S„ūÕ½š>⫫ҁŻeXOxėåh»Xj å®zą}ÄĶIvĄ|żK¶Ü¤ŽĆkąĢ¾;T˜–›õ"Ąūˆįä„“\O`±Ųģµ½t’æAoZ4ĘJv7¹±h5ōš·č·ŪæPK i5P-Ā‹÷ą2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/cs.phpUT÷Hƒ^­WŃnŪ6}÷WpE%Aꬥž’¶Y““čš8(`£ĄŠ-Ń#‰HJž2ļöEžņĮŽ ōIÉķJ¤$Ņv{˜ ¼¼÷œ{ty)‘/ŽŅ0ķõöww{hB*єĘĮ’ …ų© ,&œĮ”į+҇Ų*|ŪßAĒ‚b†.ˆœP„Š‹IežĀĄäŖļóä• }ĖEM4Ķāł<-½ Ā,@1õ “’M¹H°¢œķ”4&ęrJf5īüד7Ć7U­O…X”–( R :É ЌŖ< ]ņLųµŲżź +ģėL…\ȃjü#śҘ¦)Aqę‡DčŁ÷8Ź&hD$e2*ōÜjAf×XO\ЈK4¢ åis©gy˜Éēč8.ļ™žÉLń$Cg™ąA«ė(Ó£ó,‚‡ę|Ņ:ų4 1aŠ’ÜHŹ0£Š£·Xa“źuD†X%³x (OįIŠ)‰c=ū±¼ó+IŹ»œD&ź2Œh²QŒSŖ‡ŒĢĢž’ōܔˆ(ĪpßHēI‚e$pf°gX aŅnū8ΉĄ;uŃ·n0z KĪüjQŃö–¢ ŁAöüQ™`ȃÆk؄öļ”Oµæśy!(ĆzłŹŒ3oÆó&`+ć­ĒŽW’(cqk£ń_īöž:ģõ¶RmóM‰µīµÕńļĖćOéć¶@[č¼ ’ĘŲ'ŪŽ~¬8Ś>śį÷ŁĪ¾·×HI(Œõ#|_«qšZėŗx­Ö!0Oć0Ųėü,}ü µ®]ĻtõGŌ+ŗ>ϘB‚GónX4ć˜(S$ÆŲ0»$OG'œ©ŠÉ<ÜŹņޟ»&Y°’i–ŠżNŠEæ)ȔVå׀°¹e±Ā±,ģŠŅŌoĄ`w,œ Xyß"6ŒĒć6ĒÓĮ!¼ś~½5ę¶U8V‹\„Y•éXצ«·q[ ŽesŪ*ĖĀ.ķÖ±˜×¦”ÄēĢ­¼Ł³sĒ,\³…/"-=6uZŽ }Š×Śfc|ÅWm5’,lŗh/l؎hcč±%ėšNæNovø§Õ[ŹSo©¹bæī.ķ6€Voæ„ŌšöėŠ ÆĀ¹ ֟ÆŖļ¾o;čS©ģ†˜8 ’’§'l®’Ō+ĬŪ6tĶęX‘móž°I6m‘Öģ’ÕČuÅFÆ×+MkÕ9C6<3®?tp5Ó¹§Šˆ…Š)RիǧŻ7ń¹Õ0ƃźZƒÕ,~¶Oś„łÉ‹ |·ŖSRł…qQ &pŗŃsA6у(øUzųš7¹3$~}Ź©ž½)ļ?W=äU’Æõl\Ÿ’qPSĮį°KGŃXĀHuŗU(£ØŃ£äFIވh%“Lz“¹MZÕ Ö‚‘ąį6®“¤šÉ€±~†ņ ¬BłµfWÕAė„* ŹæWWĢHĀ] ŽÕ‹œcśĮ GĆŽP7¼ §a\¦k>Į™ę2TšÉšĶŅ’Tė`Ąą€?—œĘŠé“ķOöĮØrDB1ŚO^5v"ąʅhnŹ{Õč;“©wwŁ8éąwļ’ľ…œ†–ē@JĒ©]§§}4ōŃošs܍ær+ü+в„6.€śfpŪČDŠ€’ÄT8ą)‡FÖ«ÄƒĘ€čĖĆŽæPK i5P#ÉåĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/cs_CZ.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦s„ÕlvęPK i5PõŹņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/csb.phpUT÷Hƒ^-ŪNĆ0 †ļū¾LØ}&@lCš4MˆĆuå¦nc-K‚ćPķķI;®";’įK6ĻŃĘŖjÖė Öše9ĮĄŽ œE!  –`‹Ņ_VęŒ#ÕE;ĖļĢ=¼ £‡„ŽUaÓĶć‹/cŠŚ„ĖÓæō-Č4dēĄ„x­śņ©Tś!Č•ƒ€čĖī—iZ|ĒĆvśÜĻQ ŸZT˜0AĻI…»¬ŌĆÄjĖMaO!‹”RŌ/°ĶüĀŁūķĻ>Lz0;”q©Ė‰nx,©P¹h±#eƒĪ]oBšÅĆOf!hŪŻį£mėUcR×¾ėņ«ĒźPK i5P8ޱīŽŗ6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/csb_PL.phpUT÷Hƒ^„TĮNÜ0½ļWĢ--ŚUźiK)-KE„]Z .U…"ĒńnL;²FģĮǬöF9rK÷æ:vœ”ŽjE²gŽĖ›7¶“ĆERŒF{{#ŲƒĖ„kXņŒĪQäLĀą„ØH Lє¬Ų>r-ż} Ÿ'Ι޸1pŁšX`(Ķ>•ł‘§~–Ź -Ė,*‹ÅW‰"bČ8eBcI±”*'†K1†"cs?9«Ü{ó/'§ē§VŹł3 1P 1×FńØ4,†Š›ō®e©(ĆB±3{`;“ļ~,M"•žŚõ؎ĀosČ$%(¹ą4!|E=Yé”CT®&«ŒGtŅ0ōńJ”ūR­œ¢b¦T~ŒGŠX×¼?ņ)—ž_ŗLpv6Ķó`Ü.zČTėŲ@ßqL‹Él6=ŗĄ³Ł,mHšŒŁ ,ēeķł?5Ä«f r)LāŪ “©·t-xJ‚1+%sžā¶ÕŪOæMģnwOõ6­81.Īɵ›éš©Šļ²z[tĮŗŽd^½©Śµ*ƉhéŚČ‚ĝ‹ś”Y‡ĻŁō|{ĒŽé³?ļĢkµfZ#ŽDė -Ü­KcrÓn”ą,^³Ģ,ź֏»ŪŌ&*S’R©7²–±ß”Š×Źø|Įß7+-£śĮuķ”|[ØÕ﵉ʭ¦W|©–sńæZK®“ Q-”ĖŠ ;Į7õł†dQŻ0¢ė­geų-{؎0õf÷]Sɰ’*Ö!•B0jd#Ń£zf§L©,…%Ó G`ΙƮhŠŪšĮp<ĀĶī.xīh€Ń’?ŲŽ–u½µ—Ų[ą’YyĄTGŠ ;ŒĶŅRŲū2ŗz7śPK i5P±˜r§92 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/cu.phpUT÷Hƒ^µTĮNŪ@½ū+ęfˆBBhK۔Ҫ„ $Ģ”p©Zmģ5^aļŗ»k¢ÜZĒžA½¢–Ro°’ØoqZÅåŠ½ß ü”¦åĖd},}/Uifq ¾L‡ŠEØ ę>KŠPŖ„.EҘQŒp6(óv¶76w÷6GVe&¢TCĄµQ¼ŸĄ€›ģ]ĖLł e³mG1“)T):$Š„1õ¢Ÿ)ĶOŲ‚bŸ2®ŅŪž@HĖm3ŃĀ“q›pą.7‘ĀDŚ…×ėpązĖdV,<±šŌĀ3 «ž[xaįe e Ö„³ā6§«Iežw­+mH€ē!C2`ģø,Ų™°å,Ę.CexgæŒø[[Ż$q›ÓÄŽÓÕŗBZź#®%Ļ[źõ*ä žēĮ ;C#V’›¬ ®Š÷n·7dTŁ„®/3a ’U|+N󻱊Īe)™g05ĖŖä%_ŠļÅYq1qJj”Ō:Yįż '*T|ĶÆņ›üŗ8Ė/'~ƒŠPRof•xŖ]łķC÷Į\–’9łVįS®*~ęwŲČu~ūŠoT« ¤Īh<.š_2sŲł%N÷P» 1Ó‹9ķĒģ>ēq 8ŅĒ•±išłRĢčā|tėŠĻ£Ä±¬VAI½Õįā+ē7PK i5Pp}Žz‘ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/cv.phpUT÷Hƒ^„VĻoŪ6¾ūÆx‡J;AÆīÆ­uŠvHzI€a0 C–©HØ%$=/Ø 8-Š(Ö!—e·,#ƒŌ‰‘Ćž*ž‡öHQ¢ä&K°) Bń}ļ{ß#õšI?čW*kkXƒŻ 䱇=ųæļ2Ōxę²qŹ{ķī‘uÄ*ųŠ· OYčĘšŠšN(<ģØ×ob|„bŻ£Ńc}N™&ņ½x“æĻ½@€w”z$ę2ö)‹\Ņø żqqīǐ µßÖĖg›Æv6•Ö'WĄŠåŠ ¹`ag H†”Š‚Ś90` ®»”2T¾ßD@Æ«q ¾£<€ʈŸ¾?gnü÷żŸ@^r“ęš„1`14+€³O\ęĄ£ĒąŌ=:ˆ\$ļå¹SMĶnŪŽÜ+/ĒÉŲ`F×zD4A‰­_GÉĖYĄXŅ 6ŗĮmHČė2ļĻÉXĪåŌņZHÖ F7xuŻż«œaą¹åĢķ–2…Œ®upĻŹ*ä4ł€ļ,§tęøŃžQc‰”å^Č39OŽ鋰‚ź9ŗŃ—ĘŻ„zS9K“,)Bó 5$œ-¹Œžhšp"Œ.¦œ$æČsü™dŸŃØӔʳƒŲS‡ Vī)‡Ux£Aź1…­ē×WśŒģµń zĮгa—ņކS本…)nŌ”ģÖōöœ¤X妆««tō·Y-…¾† Āņ²YüŖŖ-;EŒ e̤äČƗ%¬;×Ęfžž³µ›Ā_¼ØG‘ĮĆNĮRē¼dLMFm{»ö>%£±Ŗyh¦Ić:µ`hfgpq,ē-h4kņ·łpqÜ*³ügš*|MN×ŧ ’—“eVÕs{$īšfVXVīF¤‘ķVSž® ·v1F^7ŖPJIĒä'Qp3[x'·ļó6Õ¼śSža]M“ƒØtosļ¹¼5«­[£*·BTł[2ĘØs\«;EUK“Łć¦„l--,eŻ0v{ęǃØC˜ŁŒŅ„` Ś‘3ܶ±:įÉG<`ę0IĘ8w ß.±!źŃDu=ŗĄń5ŗ:Qmµ_ØŽ›×ā(µąxœö ķ{ŗ8RG 1Ÿåe:›|\ü%gz„»•ź}ź“J*Ū/WQŅjUŽUįuŚ2]·©ŹõØė ūH¾n§É'Ģż@é@5gŁÅ£:SŚTKsŸšż\c‹³ŸŃ3ĆģŽ±-ėZb4·daę׳DÖtnYeyŻ“V«Ķ*ŹTŲų6žó5;^j–Ū0[Ž2«åL |~ČøP—z›śö{į¾żPó)HYÕ[ž””zųµf“ =ž‚*$õ*NėAåPK i5Pe-)­Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/cv_RU.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm£Bķ0bŅ$“ą½JSw±Č’ĢqVń÷øO֝Ļw'ļ^²ĻĘtMc oO& :³e4x„½å!E„܏½`«ŚE¾ušĘd#œ± $»aÆQa’Ö„ėóæō=ńj4ÕĄ„üĖtń6ŽČa,§ÄW+”ā#ä€V¹;į¼Ž}œöĒó×q±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ńV‰śžpśģūvÓ¹{«Ų<™?PK i5Pž“c•š 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/cy.phpUT÷Hƒ^VŪŽŪ6}÷WĢCŁ w½Ņ pŅŻ&ėĶ®‹uŗ k”8²ˆH¤AQU…$ßÓčäĒ:)Z¾(a]8sęĢ…ŅonvŁn0˜\\ ąž3QB*rzī˜6 R0Ā-Ó±’$J>±-^ևɎiĮ$|Ą2ĘĄ›ŲN•4Uę2Qŵ‡¾Wŗ%J«<‡Dķ-¶™&9ä"AY’K™*]0#”Ć.GF²æÖ­ŻćāöīĆӝ„jć33P³ø(qeC-LFнT•Nń6Ų‰ĶŠŚ¾­L¦t9³ļ?Ā{Ķä·įß9ĮosX”Œ’,Ż|ΤĄ–J²mĘdˤŃTZĀj4¢™Žą—kˆ>OæĘyŻpŽČ/ėéx!ÓÕ,Q•4ęDĪ£±7qx§ŒóN\(i²@Uˆņˆ…$Śg(D'®?õ5P7&“*˜Õ}eŻI9k‚W.j-?ņģ„Į O¤U<š°Zq$ ūöYČIHZĆ}ž•¬Žćhe=üA:y‰‰’<š4IÖp±¹`œUG”NlūŒ”ll«¼Üˆ”‘šķß°j©VÅF*_Śk -,§uߜé¾yŒōĶc_ÆžŒ4Ä9Cź-ŅtļBö*Łj,ÉEXEĪč*”֝yCžš|Ūo.k÷=·āĒg‡}x˜]]½ā©§™•åŅ©ęóÉr9łHć@ŁiaINÕ§z8u`œĘ¾^ūō–£ä¾?{ł•¬ĄyWÆÕµ¦Øk Ä{ī$žmö°¶pßAżĻ«STĪŹלÖč •SQhH{]znÓøĖK’õ<%Æ4’å­2­db·Už «"F=‚ρĒļg^s9 ;¼®įÅÕĀŽ ¹aZ³¦#ĆźåÕ~¢ė]?Ó5½ŗZ„Hm9£– ĪĶ`ø:¶™DcŪFö.r{oģVxrOĻ<&˜R¢pHrŽn{vnņ’D{SÜZ'/Ī:YV¾Lkø”‚D1zݾ~ķ¾-£…r-ŃmV#ķ7ķū’dvó„莎Ü0ƔjLÆ÷J§)JéŹ÷¶.šųŠp­ę™%Äķ ś{ʶi££õA0›’ĪM³©‹ĒĒā9ŒĀGą]{ĻŽqēµóÜŁCŒ6³.ū9-37Z¬a^¼ÕœJ=j ęŒćA9ŗü ėPĆŃ„¦‰CłāĒ}©m§%,&@Ļō™žĀoo`zVØNZŲ?źŻhNO=ŒŻŽ@<zų¢VI[gøv’(‘ļ2įdŹļ Ūœ™ėِŁ"®³dWįn4½IrPۜ*Ŗp–ĻgÕn4qłA ĻAQ§¦õ—„¬hc”ĪNś±ŌĻA\žMlTj…¤µŸO« ķRĒfß+ßA“’”:*,”Ģ'Ąąŗ“ńć{/•N‡”ūLj84ĀäģQšU*d܁“G‡\©U{+UXŖ…G–®»d,–I»+¤#Ót¹’³\”åČ,»,ž€†ˆā²P%›ŖGXÕ*­‡įČ«’²ū³Ļ7ģ·~¾žäįWWgm°!q“dĪŒÉ’>u~>›Ļg’Ņ“%‡ģ ęōĄóü x^@Äqz`ĮgKČF,Ö …ŅqĖŠkĮ”<WI³†µx>ĢąBø= ĶB¢,ń‹Ma~"!’‰ĒņVœÆõhĆLFź>ßK”7R.IJ§\˜—°®Ÿ‹Ę„użd”ęB²&¬6ٵ+ĆžP «azĒdG³uJ«W:˜-]ĻĘl£Eć#wīu×IįßM’f]Õė,ƒ‹NĘ9jmU0„ŗaŽ…·—Y%·†īM;ÖŠ …„2ņ"B ”„ ”ƒjŒZīh§-4ōmčj¦5ąiĖ m‚©ä`Yƒ%ŻÆŽjhļ:ó){֋Ӂ=0Ś@9š='ŽČžŹ3y"Ļći;U}Ӏr݉̾ ­†Ę(“žOŚŹQ+ƒq6†®AÉÜĮąq˜[Æę‹Ķėā¼jČją(=h㙲ØįhBĶ g÷®'…|HaSAz² ‰ä© 쩐«źÉ›Ž?{CE‘­^Š"‰R-žLĆV#ŗdóÜĻ®Ō@Æ"ʲ4ĻÓwF’æÕņ<‡æņ/żb€å2iŪŪÕ§°ÕhwšļČ.»ńųPK i5Pxƒ¦Ū3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/dav.phpUT÷Hƒ^„“ßo›0Ēßł+ī6Š’÷®ė¦5Jņ°Vš¦ŖBpĮ6ó¢ü÷;LŲ é“‡Y‘Nž|ļĪēÆĆõ§¶jƒ`½X°€§Š(xƀb‹Ś‚*ĄV nQ§JŹj,يrūō‹ģ¾hŽö̤ÜZøNūķgI[eW™7ĒŌÆJūF…kČT{м¬, Ģ”ᓆޔ…Ņ-Wr mƐŲgÆŪE·wūĒ»¾•ŸĻVh”C97VóŌY–CĒmE Ķn”Ó£ƒr?ģ:ŠĢ:-µĘC¢YŪ`Ę(fNžĘ.4ūéøf$›č[’¬Ā5“+r&\Ās“BĮ4Ļ9!|¼ēpēBÓ!l)%lĘ]¾,‡üޱ:ǃ9ęGÖÕ^^č°ÆŁ:ĀÕDøčØłŒÕŲ‚sw‚$žƒrČįä3‚,]§Ī&JL„“=ĪõąD_šĄ}Ųb7„|r¦ūŅ·\žW#”¤­Fb„9”ŁČEŹGž°Ń’)=™²Į”)]™2M’¼³bQ8YbĪę“sņ€ō›S^3źpʜąļ ż•ĘG~O¤«Ķ-™=R$Ņ™ŗEķ{žJߝעš ĮĆHųņhrÖšĮż÷Č毓'įżż• ēœ åŹ˜™8H›Ķ:Ž×?hĶÄQ…8Žį\Źƒē§’NĖi-įoÉt»—ĖĮ/PK i5P±Į4 > 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/de.phpUT÷Hƒ^WŪnć6}÷WšĶmj·EŃw»mŗN6ĶĘŁ»]†ŠŅČ""‘IÅuąOéćžI~l‡I¤|IŒ"gΜ3C‘#ęŻļėb=¼9;32+˜"9+ąsM„&"'ŗņŹ„ąhJč Äųwé÷äOÉ('w –Lkņni¦pœ ¤¢zļ”WBZ¢¼.K’ŠõV²U” å)Y \”$Ļ…¬Øf‚Ÿ“u m 66īöÆ—wÓKCeóÓÕdCÉ˜Ņ’-k Ł0] sW¢–) Pf“}c*4±µ.„T#3žLXZP(ɵ(JgQH–ē•%l)Ī™B"¹”eęl3V 7śD%]żōöķ/VE‚®%'óĮßp TÉoļÉp”ŠškrC ¹ Ę0žÅ2ś/TЇKŽuĮ^ĮŪ!ļµ²1§Špķh?čd_²}倊 Õ“Åæ®žŠBü+Ņčdī_~»"?‚¤XoÕ¶ šØµĶö£Ę-*!eC4rÕćp“Oõī³ŁÓŽć|ž ²jˆ}ϰ××mܧؚog.äśzTUžŲ;¦g¤Tät®ń8™L’ń9oB&ų#ūž²Ÿ@‹ĖšwNŽ¢M‰)-gžŹŌØhćfēą7€ŌՂÜĪČüļB.BU’éėÖš$ųKū 7i’ł1lIU@ģßäQfƒī˜ē%č'Üę rZĆzY*ßŪoūėc“ßĆŹk\Ŗs2¼‚„ōĆÉóWłdkÉJk”Ģ>™&ŸGœ…OĀēąšŅ^Ö+¶b¦%ą)j Ÿ Ī5µ”Ų=ühĢš¶ŻXńξĮ6aķŁx®$0?œŅŹZū"QMSsO32‰Óp3÷;ć•L]²OÕÜO ‘ćq4ŽÅ‘8GŃ2™1NK’}įµYūöZ‘3¬Ēö=‘w7ŠƒOŚČ6S‘w÷šŸ=ŖÄ’/|j،ļ4Äč/~|PK i5P:É·žJ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/de_AT.phpUT÷Hƒ^uQĮRĀ0½÷+öV`<+¢‚8ā(åę0mŗ%ҤnžĒ?ńĒL[½ø—Ż÷²o÷ķdr[Ė:IʃAXKå Tš ęك-ĮK‚9rnM¤Ä·4нM{OōaĘ ¬ČåŹ{˜ä ¼3Z?¶šžZ-·ƒŹ 5[Ym„4h%ČøøŅ”–+ōʚ!Ԛ0r{E‡V÷²œ/Vļ‹fTėĻKōp@…ržU<pP^ʗ诣Ą‚⢢5;n.l“÷ĮKĖīŖ©/ĄIbU–²¦cG­Ue»źU ‰¤įÉJŻ1+¬l”ģ:4#6¹€†Š­ŲAļL™~»šÉ6€Ģx̘j‚bŚSé3(&Ȳ‡å[–Ņqō?%ĀG1ŅŹ/] 7ÓÓÄeÓēļ/cˆÓaĖo†™‹§śeæšM’:łPK i5P"„!™5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/de_BE.phpUT÷Hƒ^-PĮnĀ0 ½÷+|+ ¶Ü7Ę`Ą$$@ŪMØJS·‰’ĪI@üż’ _?æg?gö:ˆ!˦“IųŅB'BČ#¦'VŒ£ÄXUąFśˆį$Óp@ŪHē`ÖÄr”Ci\ÅĶež ¾Jƒ:Æp3ÜIöĀÓ-(ÉQŪ°Rw†.ĢI£ ²€]%Ž’n·]mŸ›8*łs‚9ø1 ­“Ždć¶p“N„Nšn'ŽaQ›ĢNć…Q»ōN²Oń]Āqł!ߗ½’ /•įL”]ōŚW†ś¤$tž40"vÆ Å8†Ģ=YyÅᯗ„P×ėķ±®«|V†?Ķ ųĪāōü’*›ĆĖü%x—€ü¢ÜļĖõ:/Ró\dēńsöPK i5P«Ÿ*Æ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/de_CH.phpUT÷Hƒ^-PMoĀ0 ½÷WųV@ īc|hHƒĆą†På¦.±H›ĪI©śļ—†å`?æ<Ū/Y¼5ŗI’łd’ĄNš”lBnP<Ų¼&X”ä¶”ŗį•fA;ČGj ŸĀXƁ\ĪŽĆ"Ź÷:”ÖĻ”­–’Ņ­•8Øle›^ųŖ=`]€aEµ +ėŅJ…žm=…ĘīĪŌžļŻjs8n†Qџ×č”C;/œ·ž čŲėp¼;ۊ¢°ØˆfēĆ ‡ŽÖk+īyĄOą4 —e…bØP'®ģķYi$_V›8BČ·RŠ`Ÿ 5…¬Zq|§‘ŠoĖBeėŻO–ĶŅyŲ>7Ā9pŅŽčV`ļ2<ų^—pN6Ņ}ŒkŽ8Ęud¶2Ä#¦—iræ$PK i5PZōž)ū_5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/de_DE.phpUT÷Hƒ^-PĮNĆ0 ½÷+|T“½Ćƒ±I“ŠŒ{•¦nc‘%ÅqØų{Üj¾8vžß{ööerSQ4eY@ _Ž ä4O†āāö†»“eæĶˆµbų½‡7&ąŒ©#ŲvK¹ ZF©m¼>ß ĒČ+ѐ½§?¦Ń ˜Šƒ'‹!©d"_P 0y4Śū%œ×¹Óžp¾ŖÕŸ8#0›=%aź²`3‰Óõžbf‹*ŌÆf›eĆeö5‹‹œ—wGF„Kd6Œj1‡ž& ¶.Õ詳•ÖxL»1ä:ņø’2JęŒ?™” mßOŸm[oUÕ³nžŠPK i5PÆbü3łZ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/de_IT.phpUT÷Hƒ^-AOĆ0 …ļż¾ &ÖŻĒƒmH“`@āX„©ŪXdqq\*ž=nįŪyžŽK¶÷}č‹b½\°„÷@ZŠvöNø {'5'łO×aiŚI~åÆįQČ%8c®I¶õŌī’µ¬„ēĖŻæō‰eµCŒą¹’ź‚‚K Dņ˜²Y¦–åā”8Ż@ŃŁģ›pœ÷žOūćłķ8”ę|œĀč24”UØIƒŻXö̃x4£f»ž^8ķ> XņfŖWšāŌŌ9* |øoZ+#Õ~Ł»ˆy÷G`ÉŅĶļ3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/dje.phpUT÷Hƒ^„SŃNŪ0}ļWÜ·@U5ŚkĒ؁D™“²‡ ”č&¹%WuģĪvˆ²_Ų7ńŲ’ĀqÜŅØL¢šbūžćsŽÆā“Ļ«b5ÄĆį†pW° 7ÆP[P °Į9źTIWŹ–ųHcĒméGŁ1|Ռnɤl-œ¤ķö‹t[eĒ™*OõRi/“؄€L­Ķ…”9ĪHg)J—hYɬ”«=1ÕžÜĶõłÅķü¢•ņłlj4³±šÓŹR5ŪĀ!.»Q•ĪČå>l<Šd+-µĘ&Ń“˜‘›³J~¢#Mæ+ÖI2½žž$ć(&9v‰Fp?7¢’4ēLeŸNį>šWiŠX°#Dæ5/±4zuģšh™ccūL˜{ī™e)Ć ¢Eæ®æaU`ɦcˆ?UŁU §–÷ŌS(m_=‚APĀŻTĮ ¶/U²ü/”RI[lī»~FYsC-é’Øf63ŌįnmMų’ÖĻUMėæaŁtģ¶żĪiiQ¦•n7ߖV©°¾UŖŽS"Ómś‰z=js…L!MČҲIŃĖ܃q°Üš-X›øN&j‘“MõŽ6Ø’±Cw|ɗoī|%ŗŗš”®Æ»Ą|™Ó;hĻāŸnō  ³Łlūš.>ó8ģ›oi¹š/®»yw¹†\=’©JZ(Üspż‰cd hŒ© Ą~?“wKæžĢ=:n^ŠŪõ!dLļŽŹ”ĢūG6ļ’ms“ƒ Ž?^PK i5P-'ĢńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/doi.phpUT÷Hƒ^-KNĆ0†÷9Åģ J@ˆ¶H‘P<֑cOāQ]یĒD½=NŹŹšń’ųģżs“±ŖŚŗ® †/K &r匊ĀbŠĒąĖJŸÕŒMŃ®ņ;}ÆLŹCi$ŲėųāˤŃįņō/} ¼MŁ9Š!^™f+ ¼G}*•~ |QBĮ?@tØŹī—pŁ|ļŻįŌžÖ؍O¬XTCI˜Ę,h`!±å¦°§Yc)2l»¾põ~ū³‹ƒ“ŹN€qŽźrĀq*T.Z5¢VĪ]oŒ’ŁĆO&F†c÷1 Ķ®5†®oŹ7ī«?PK i5PYm6]`V6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/doi_IN.phpUT÷Hƒ^åTAO1½ļÆčm€ĄN¼"" IōB ™tg¾efŪ±ķ°ŁšI ‘ !ā©«F7Đhö¤„?ÅÆķ²0+½xp/Ż÷ś¾÷½Æmfįn™—F<3Ó 3äiĪi³®%•šˆ6Ń9e*[‚#•īŅh¢ÖɧŅir_2ŹÉØӚ,“\ā…n¦¢³8’>ҵ«¢ ©({’ķäšPž‘‚„Ą¶äm!;T3ĮgIYEnA××­Æ-ÆnŸĪ©&]ŖHʔ–¬UiČH—éw0»•Le>lģ&tµ÷* ©ęŻ’9²‰5ŃēqŁąÆ`­tŽeN—‚A—Jh ¹ć-$čJrB„¤½DBYŠpM+©ŲLIx^1 $IVÖ6“¤ÅĄ›xøŃ,yÖpīQOEäĪāˆņōŗ'¢•ųQ¼µĶśķ°DĮu>Ŗˆ¬9³ę“5߬łjūūhŒŌźŌ¹5?<>“ę4Po­łģ1²Ö\\ ūÆ­9ąĢö_¢żupā€_YsbĶŠ[˜@ ­ł‰ĄŠx,<*ļpµrרŽaxÅÖ§N^•žßfļģf“wuēG¾Ń Ģuپ’ʏZcϽى‹~­ŃĄö_XóqB‹ģ¾?¼ūŻkĆ Ē7nŗa\éim{2üÄÕ];8Ÿ|2p-j-įĶĮnĪó{Œć’,HD;i3©tā9Ō*}¢[—O$ĖtĘ1ńI¼ĒHćw6šļŌŪ† ©ąYųf̧¢āšxį»ńUÅ1)@)"”`“UĄØīĻKhņͶ§o7~PK i5PūŚ—ńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/dsb.phpUT÷Hƒ^-ÉNĆ0†ļyй*”< Ś UB=°œ#/“xT×6ć1Qß'ådĶų_>{÷œ\jšn»m` _Ž2Œäź™ ÄÄ!ģėźŹœÕ„mÕ.ņ;sÆL*Ą ³&Ųée| uŒŅšxyś—¾E^ƒĘā=˜˜®L“PĮ‚'ƒ!׏0F¾(” yTu÷K8ƾ÷ć¾?}öKŌŹ'N Ģ*ƒ„,LŗZ˜I\½©ģ96X‹ģ Ū-/\¼ßįāĄā؊`œÖŗ’ń†Gœ+•ONi2Źūė-€Q ‡jų)ÄĆp8~ C»élÖĆ”oė7n›?PK i5P½ōēÉ86 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/dsb_DE.phpUT÷Hƒ^TĶNÜ0¾ļSų@KP„ž¶”BY v[u‘P…5qœÄŁÄNm‡hÆUß‚ĒąĘö½źŸģB ›C}łĘóĶ|3'Ž’ReÕ`°·³3@;č*c %¬ Č`R#‘ Qt 2ÜøČRšX¾E¶ŃWɀ£)UÓķGv{ČĶV萈ņ  =Ņ %uQ "Ŗ…di¦šŒP®LIžY‚f‚QUP0¾;F—wy~|2X)ןĪ@£ЙҒEµ¦1j˜Ī czW¢–„šB±kvĻžŠęÕ:R¬½‹Ī_*¢DŠMɀčZ 2+ŖÓŻ“`Ł-‚ŖĆ”×”©Ó”Tג#XŅŖB ’Z*vG·$żU3IĘćó‡Įå”™v0D7«ųź*@ŸZ—s_^9Opv6*Ė`ųš˜½bFJuHOĒįdž4«C¾°hbzš&bˆ\t“>=,ĆŪ7ĮmtlÖuT7$ŽzJĮuÖ9Č× ĮL$Hh$Wvł|/‰³ ’‹Āū w˜×œ­¬¢µ Ik„©h„iy1×¢5¹hÖī˜ow{ĀŹ|ŗķģø =„‘…‰iČāQå`¹…‹š{(פfŌ^pšm®-LEcaLÉŗXCé<†ÅjӜ.©?ć÷§ī·ŌnÆał[ ßóLę"ö–nž¤ž»„ē{oĢ„łßą]Ī‘¦y[Ćk{UÆŲjy„÷*%ć’«‘0©46*X$Ų :”-Ūś}eķnAAŗØĆ[{‚5ר0ēķ‡,6S€7¦¾ŗł_ęęŻ!+²‡ܓż2ĮÆęv—VM ø'}=æßɏ7S€7ez>3Ļg‡v’2ć°ČzYĄ}ķd7ovwxÖµY}t’f÷ ųs‚w§Ė:e+ µ™ܓ|»żišPK i5PLųĄnŗp3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/dua.phpUT÷Hƒ^­U=oŪ0Żż+nS6ŗ¦éš¤H€8C“„‚’čˆ°Hŗ$Ccnk ƒ§Œ2Żŗ äG•_r¬¤., ‚m‘wļŽ{Ls‚Mģš’™«;9Ž?<=;“TΟΰ†VR„% MR˜Q™Œń®D!b„RgvŲ“D’–—H’iŽbīI!½&[’|)Ø$€ŠĮń'„ѐšéLŌ‡‹˜+bDŅ”Į›·p™qż›tDā²ŗeEtŁ÷Ą!“—*«;M-ŒÕóĒÆŖśmĒc܏X1Y‰?Ü\Ń0¬Tæx½3¢°Q³“ē*HeBź'­'© Tś%w }IČ(’tLp5=H©ćHi(«ē<­v¢źłĆچV·öėø5ūŸĻ[ϧ¦īץ\/ euļžĮZā^†—õB׋‰o>.«;Õą4åÕ½ł8ī¼ŗµŽlŖķ½ÕŁUėKßėą·±6Ž–f‚‘ą _ŖŽ©T™-@bŒģn8éWMÖ=””.äĀ'ē.ķ2õWg+™]„ZIŸ:ކŸĶÕJ59Fš2»šöyx©½„„ę‚uX³p涒`éń»‰(ø†Å…éŠp9Q $É)Žsš]Ąu _Ł’vE)ŗ3šwÖ Q'…§ē³U1“õ³Ķ”mLķ Ģm”ćāį^KŸvĄb“1·/ČĢkžłÖāŁz¬ £ōįPnžˆŚ%6ō“޶Ā1ź$į‹IOŸ-$^æpµ9£ä—ŪÆ{PK i5Pģ+gęĮV 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/dv.phpUT÷Hƒ^•VmoŌ8ž¾æb> ķ]ÕėĀ×=^Ž—ž *|)ŅéTUU6q‹$^Ł^–ź@ŖZhٶ "ī“KƔž"’ʎć8›,ŃJĻ<žgĘ3žÉĶ;ĆdŲéō:°O* ¦)ü\‹A&ī|Ąr…Ļ‚-²„X ’%üīq乄ˆ•nōņ—L.…,»m”2n Å£4… ·9ŻJ$y) I.2ĻIY¾Ɣ({NÉŲģ[}xłÉڲ6eü“I aˆØœF’D0¦2A ś.؈‡‰"ćlÆs-c¹L܂õąÓUŸÕ…ŚUēź@Ŗ=õ„»hå‡(­®PÖŌMŌ®§ź?uīdź«śdš_Ō;O>Q_Żūgõ?r]yėsÄžāŽ©gē›z²“õѳs‚ž|2² “y…¾iŸ|žKµoōßŗ]Ō½³ļĘqŅŠmüŽé\ņ, ¶żÓ:ĄČpĒ¢Õ©³²ƒ¬o­O #ÅHōIUņ×ńŃĢz1:ŚCÜsģÄźöžÜ“]¢Ż)žO=O{¦¶īŽdĀøčė÷ßą ¬1Nb»Ę%+AFHdj9āyŚ6 xn݆n?d£\Bw©c§~`Įf…üēĘ«:źB Š^žŲ†)Ā٤ČzEäĮ,ÓÄŲjc™Ł¬S× Š^šÄU$ŅrœąŃźcß5H‚Kõ¦•³Å–Kƒö¼Ķ-k j®ÅD‚W»A„/ĪSžÓzĪ*“å«#Ū8ēŲŹhŽM¦%ySS˜}Vė2XāŚ³Ų°"HČņØĮ7“„ŠÓĒ’tFēYŻb…A{µ“WŠ—4#%$ę,ŪĢŁŲāŽŃüvÄ÷Ew«cƒX’2wZęźļ¼%h@p Ź’»Z£qŒ—Q 1WM&[ŗ9ż«.j8É2ƹóobśŲ©žw˜©#  č F¼ś“Ų²²ŅĻ2‹µŠ5OÓ¢¦,Tz{ćSS•:xŒ4ÕM=4É,Āęa7lla’<²mĖ N`7|PžŻŗ)?Ż®šŗmīę䅬!Żłµ!’rMÅøW¤šMy›5„‘•©u,“3?6ķ`ŗ-ÖuHĖ©°•³:sį4¢$+B×Į~wŃŌĆa×aĢ'‚AŲĻ…šbSą”‘-źr\Ŗr5£ōwσ`Ū(ż³óÖųčfl5_Ķ»›©Õ<µx3?ķ»™›.Ę?—,Ŗń6ńSp˜˜r!u£Ždq5&®W^Ė Öź•7Ģ`žPK i5Pgz6`{^ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/dv_MV.phpUT÷Hƒ^­VŻNŪ0¾ē)|1©źčvŪ&`7Cš¦ŖB&qšŒ$®w]µMB€(-l*Ś`o”+Š'ņ³ģŲI§?š“.ŖŌų|ßł|Ž}|œÅ—u»>7WšŸŸCóhĒvBd9.Aš_ĒCŌBĢ&h{Ō“±kdø‚žŲx‚Vl˜hÅuŠ"ž€±³×xUó°ć.Ō[NxÆi U¬†ė"ƒÖ[S³¾‰\Ē ~ół <ĢźQŻ%lŅ”~[›«ėoŽ® )³1CM"Ó YS2”é0<¤Ą 0‘)#-‰ō„ļJƒŁ4ĖāżixLyäQŸŁ!ZB•9O_ń?ä}Žę×üˆßЉ½ öc>Ū8Öį70Žų/ŽW¶6æć—’ĖæiöæSļWü7Ģ5ŌĘ}ą^ƒo¤é<šļ`ėÖM§ń\JŪ4‡›ˆIŸ’žŸHüa ;ģtŠßäŃĆŖ/`­š„웸„ÆV2?6°ĻłµR9€Y;ŚX¬d ™ˆ•ŹģǐńŁČų8"Ū.ųœk+qŲ‰Äūšķt#ų“HŸŁ"8( „eTųü쫌ä@ę5Q©+ Ž®O›9^W§¾ĪĆ#ĮßH{n2iJUWŽeķ¶HbŖ:å‹ćõ“rö<ÄB ’`~h<8fކö„bėR©-5eŚ7č]ŽģX’Æ UxČƏKD÷÷—|H$Ģ„µGä@ͦńō«œ#jĒAĒpŹŅ§ŽūµBükW>üłüķčPK i5PŽłndņN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/dz.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ŠĘ&”`œ+7ukY‡j<=iĒ)²ó’ų%›ēhcU5ėuk8YN0°#(gDQØ%Ų”tĮ—•9ćHuŃĪņ;s[aōp¤Ō±*lŗy|ńe Z›pyś—¾Y‚†ģ˜ÆĀ£U@߃cC>•J?¹ ršaŁż0M‹ļż°Ū?÷sŌ§&LŠsRį.+õ0±ŚrSŲSČbØõ l3æpö~ł³“‡žĢNAh\źr¢K*T.ZģHŁ s×[€fńÅšYŚöõšŃ¶õŖéŪķ©.æøz¬žPK i5Pu·Źę\ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/dz_BT.phpUT÷Hƒ^ÅTAOŪ0¾÷Wų@ŠjWĘ0 8Œ]Š„"'q‹Ōīl‡Ŗ×Š!M;u„vŲ °n;Ž!Mšźž’”ŁNCŪ”–ö“Ī÷Ž÷=?æ®<Ƅ•\®°° ąMˆ9(āż®@&-"°™G‰Žņa å5׊ēüyš’aHĄ.ā¬x® ©Čū“¼Ś£¾¢Ģ&*ĘQ|Z©1\ €$öįZ’)+C)Y•A½w„QÕĘmo­oīīmšT֟”UČA€¹`Ų‹ @‹PŃŽ9™“P`ĶL…&öE,BŹų²Y/½±ŲZgF*! ^\Z*EŲó×J$ĪSV²ń ‰˜ƒ5—”J}¤ß~Ģ8>Bs ½‹1CĄu7¶^»nŽ) ’×'ė,‚·9“ÕIjćx¶ŚŪ²ŪŪvĆQ²©d[u)y«:•¼V²³æÆäW½ÜŁQņ³’5ccĆY“ĮÉĖ)S"Ā^VĒŠ»æmü¹}6”<¶‹¦~j/£Œŗ’Œ¦Œ×VņNɋɼs%æ¤5Œ%]«nÓ.ĪĘ1Ŗ{kåźŹ5,ļt2©„ŗŸģé6&ēkŲJļ}?©n×·ÓT33Ҙᦻ\_e1ŅśĪÕpīN+ƒÆ3ų&ƒæep;ƒægš ž™ĮWŖs9ŗ•uyeŒ¦V: `­Æėv.ķQ Z’ešóÅĄI7,l=ČӗšOŹ;{Ń“7«•¶ęn É<ŪfŠl«Fz¬oģōžNŠśĶÅ`£ÓsxøÕI–¤Ž~żŗÜÆ"ĮY«Cö’­ž™QeLž› mĄ„E·ˆ®qdP Af=IG1`T¾·yœNŠI’öląOöÄ$Oāī9Ė>‰ś«1,›:¬Pā0ačEØ2#ŗ³‰ Ģz&Ø?cÅŹ³‡@wv­ūÖd¢LóĘ ³”;}ö$‚#Ÿ’¬ĘÉX>5ŗÓ§>˜šūPK i5PVēü™žž3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ebu.phpUT÷Hƒ^„SĶr›0¾ó{#ńxģ{š¦?qšP÷ŠÉdkŲ€$Wˆ0y$æGü^]„ķӜŖĖĒ~ßžK\~ZēkĻ›ŽFŒ`™S+*×ĀXŠ+°9µ0±VL%…Čp¾­ūYr_  ¬b².ćÖü¬ŲŌv’hyµsż¦K“ŖĖ½~5”å„J”¤UÅ%ÕJ),i5†u‰‚¹ĀĘÅŻ×7‹‡›6•ėĻęĀB#*H©²†āŚb ٜī½ŅµI „®Ł©gŠÖF0F¼FׄH1©ME/xfšwM!ŠfĮ(šųSTތ?†Gųų „„҇WščĻ–üŸK’iÜé b‘Š×jÆS-I“>‹ēš‡¶>¤šHPŗ5¾!¹{:]ģwž’šyŠŖ\»/'’RŲ‚®ĄRØ.µl!Ü„ Ća*IźæI­l¾=lxU|7 c4.žĄāmcč„jÆr»9!•čŁaQ}ŹBåv“5B=‹AĀ“”Ŗ“ĻP±ŻHśJcƒļhóv¬·ĶÉ:zĘ.x.ØہŪėmgŻvVXgNSΚ£ƒ pĻ'ƒģļs辙Żīåčū„cü»» É·v,<)UÕ;i6›†įōŸžøW! CŖĒr§Ć°śĮ-å3†÷œyŗ§óŽPK i5P„ļk’Ÿi2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ee.phpUT÷Hƒ^„UKOŪ@¾ēWĢĶ€¢D½RśPJH„CįREŃjbć•›īnĀ_ą†¢^8rź’(HžW{×%’*Ŗ•Čćł3ž]Ū'ŸĘÉøÕźµąni –ŸĒØ-ØlBpŠzØ N…)ŽØĆ܊~Ā-±€+2Ci-œ «ĖĻ_*Ū UžŃSæ*]œ,ƒPēZŽ XDÉ Ć%‹Xé­TEĘ!禒fµīņāōüźś¼²Ŗū³ Z˜”H«åpb)‚™“ #Ü»QŠźf»-Mv¢ @­q.43 ‰ĻįD9„M?&RqvńMˆNŠ„¢Ć“ ŚŠoANZF’ņ>|„~š|ĻPP>ƒ¶ĆgDi„sćń“\YžÄŠŻ) 3ōQ:ńĮg 7‚œņŒŖxŻ\˜Di»TĀŪ{ļĘŲū6žŽrÓ-—Å’zåŖ°IsÓ¬ž’·‰īźˆ—EŻÖĘå"žżĖᘻESŸÄ<+yńĀó„ĢŖ˜—‹ź_÷C™KFT>ꔎĖÅmSé«=­Ģ*ŗ›:^ä›j:ņŻųf|/¾ _ßWö…Ķėb©V ėõą ś™ÄA6I—% ·$yKń†$⣽UČCrs˜j'~y 8Õ¤°žĢ·(¶Č––Ł”åSFV®ÉóŠź×§Äį)ægŖGsĶc¶E±ĖĄqx×8Āó}JéśķG;0[µŽš Šį#|yPü[sHv¢(vųłŹ‚ßŗŽĆ±\!t»‘1 ‰·Ä0£æŠ}č(ö*įD†BUųљņ1-łóBf?:Š=‹ ß·žPK i5PĪ’ļ×5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ee_TG.phpUT÷Hƒ^uPAnĀ@ ¼ē¾Pī”ŅŖ@RŹ”p©*m6±ŗŁM½æÆI9@„ĪÅņĢŲyśŌÖmG£F°«ÉCEAj«8€« ŌsҳBé/uĄT¼ū@į…IYŲ /(˜—öŁJėBŖ]3»Z_÷‹ŖĪŠ®=3źŹ–`H£õrŅVŽČŁZƒJø#᩟ĖÖóåf»¼¬źó…Z8)%łĄTtK8QØE‘ģŽu¬Q•}ŲqÄ:¶ ˜Õ9glŅ(UwģéˆĘļŽ!Ļė÷³õ²  ?ö’”É^ćv[X>"ɤ ¼B•|6”‹ÆPUŲ.‰Õ&£ī²G£> ^ų]MAā‘rŁ@ƒ,‹MG3ÉZā’“M3ā„źMŪ%Ā$½¼ņ’ÖZXŚźRĘb8vĀ0Ƥ’š†P\Ø32/,)«źŗh&2Ž4ORU•óœVéjµŹābå;š2Ö¢EØØ.źŃˆ»Œ2ŗÖŗ•h`‡x­čšĪŌȱKj1yu’ŽB¹JĄ2Zßh   Õ#ĻDĘųmĢć5¦ß&‡ LՋVęYĄwjķFĄIĆĪģx†¼ĻŃųSõ‚ˆ>ópm2Ć ż‘ŃaŒxb­'rpøĖ Ēś;ÓŠ8ߘ9o*‡! ŸU r9¢+µT—»X5īŠ?…M9 v$…ņBl ­š{ 1qĒŽp ›odŒÓcl$³²¾ę³vŽB®S(kŁv¢méuÜ&ažirņ…/ ¢nŠzÉß÷÷JeŲS{ź<÷/Ćł%|cÄššę±Ē®ß Ū°7įƒæB?ä'+,höäHH%o£ƒāB·ņJf»!ĪUFÆ$ʶā2x!1’Dgäj8ŃņųĶ?‡#臜ōWX“¢ķĻ ;ĻÉu>–¹€G"vØGŠŌŖ%ϱ5ŗfOĪ!ŁT¢Ø9†B5«Ģl7lŸ«‚äBCŁ ©ŁŽØŁŅØ9ŠŹJķ5orRIMŃVQ£ĖsŌ0²BžµU VĘkuZk<Ø?ååĘĒņ˜ė-¬Z¾»ŃsĀĻD„”ćŽāB£4%1ķ§”¬Döc¶s²=“vKJCZvŚiyIAņ!gLŅżæ„²č>Pš>¶oč#uµäw¹€rÓ«™ŗ4ĆeV’}I^øń\ī—>ÜĄē+Ā=€E?Ÿ¾\ĄB>:KaVi6IgiQ¤A“æ÷ –“"~üDRč1vŒćĘØ1fŒ˜ą™6ćB>]—©™¾Ŗ?IŸĮR®Œ¤VĪ’’QīFVü3åšš‹€Ø¾†d”ƽ±PK i5PĢ„A..ø5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/el_CY.phpUT÷Hƒ^5PĮnĀ0 ½÷+|+ (ŚucŒ Ų„4qŲøMSå¦n’Īq@üż’²åāŲ~ļłŁ‹§¾ė³l>™d0C§=4ŚÄŲ# ø¤#X#WĪʒ:bKEÄ&ųHį…5ZŲ“Æ“,Ŗ”®lLŹ–ŠWǃPŒåś+ė¶@[ƒŃЬ#mćų„¢Bocķ¬é2šŽwėķžs›¤Ņ”Ą=ŌŚ ė*ÕpŃŅÅNōī]`EqP=˜§ ÷9HēŲß§’ ޘčŖŅ FėĶ0„'ˆÆ ķ¬5ŗR«Ö†Āq;h1I` Ȍג©7Ø(FŲė3˜~‚f‚²Üģ>ʲČēdŠxå| _YRĶĶ^Ź:²]S^¢‡—p7½u’ź7Pź¦ģJČ’ØļńCö PK i5P‚vƕ)¦5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/el_GR.phpUT÷Hƒ^-PĮnĀ0 ½÷+|+ R4i§1cŅ„&¶Ū4Eiź¶!ég椐‹óžß³_²|ī»>˳Y3ų꓇F„X{I ®ī¶’*g#„N²Å2j“|¢¦šBZZ8 Æ43,«×6BĒ„rēÕMśęhŌc@¹žBŗķ¤­Įh…ÖĒ•¶qt–¬- 7(#÷§q}ļūķīš¹K£Ę|ÜI†AzصgŅU`¬aŠÜÅNĢī] …qQ=†]¤&ļ&pēČ?¤ūŽ›ˆ§ ķ¼5ŗRsć”4č×­ „£vtr ’H^ao¤ĀXU Æ’pBų4!ńŗ? Qę 4eüÓ¼€ļ,MĻMžEŻ®ā)‡§Ü×īæŠR7” JU÷Eö3}ĢžPK i5PŒ}Šõ”› 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en.phpUT÷Hƒ^VßOŪ0~ļ_q›Ś"t{++ ›T¤= T¹‰Óx$ve;­"¶żķ;’Hā˜ī”TˆŽ}w÷Żēųāść§u¾ Žp÷9S±‚~Æ‰Ō 2Š9…ÆD.G(y"+z„¹&}”Œį‹d„ĆUK¦5|\÷3GWč£D”g>õJHK”UE‰Xג­r „§P°„r…-y&dI4üÖ%ˆmŻŚŗo×_/ļę—†ŹźÓ9Ѱ% R¦“dĖJÓ¶LēAķJT2”Ų(µbĶ Mķy„s!ÕŌŲļą–BĮœ<‰ KōƒT…-TW’ĆĆš3¬)‘C˜ĮšyņgšˆŠk0Ųļē“ŠUæ'‡×<{±į”ć ‹ Ł› ŽŌAu—Ö]])øĪcõ ŗ[?nļĄn}&ņ’2RŠ®¾Q-Mݖҧx  ŗ7nn±n=²7ĮÖպжASļ š¢Óؓ2żŠÓPRŚ 9άÉ`Æqcb‹u²z,ų–ļː‡ŚņvĒ·õŒIQ.øŲ†aƒĮšźLSŁ«·€.)Š4 {¤E–e]‡_•Ņ!·ÖT!a;ī&iQ )žÖ S\ć˜Ī”°›Õ.%ā¶ÄÖT2‘.$M*))OØjwL l”yń6Y,¢būlHįx膬¦-ŲĻUwńDh†ŚīŃŌśżDŹÓ M‹~’?uMģaxCxE$>^Ń„lģ["“ÜēkÉ ‡ŲĄMÅ©ū.¬^­p75§kMĖ„ ~O“šęŲ“šMœżŲÓ²PųÓ«;E^āeōEx ^‚ļļ;ū®¾aŪ˜×ö|t}ęOŻ­h¬ūŠ*ož¤)oūĻ.o_Ię­9Į‹€±ć½õĢXlā;xvĻė)=ßKŖęų1DŽĒŃ8Gā8EĖ dŹø¬¬ā‰¹=Įč ÆĢŒįŁf™Ļ›‚(}ĮVLĆ |ŽĀäätŠęų;Ś€łŒžž…u'pŒ’Ē0›Ķ`2†O8‚xŽO”_e+ĆŽm6ĪÓĪģ]ļm…99’W±«źƒ­’¶ŹˆŪY8~ö‘ĪŸZóņSĶę斱Ÿ½Ģ¶“1©Ģk\/DÖ];Nŗ+ƒĮ]’‰ƽN§ƒPK i5Px^“óF6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_001.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hóŃUŠž«1]šZĪ„½,ī­[K‘ØńZƒ“ż•TŪ1SƒV ’¦±t¬¬É ×(ö§pˆsūŻjóy،TŃw‚ajå˜Tåkw”¼;ėIbŖ£ŁbÜpœ}óÜYrć[B„ƒmx„Į¢7õ]~gdPłvŽjUɹ¶RhtĖÖųÜR) Ł“A$®%aƅÄ„'§žpBųėU -Ėõī«,ó“@“‡c§ü$^z[ׄš²øCŽG ]ƋāxL³X:ŻBZ1Ū”"Ēå€x³+ ŠSYrš>%’PK i5Px^“óF5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_AI.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hółÖŖ6ŠŅŁ,‚Ü+ķ Ņ5œ-²[WČkD*¶ųLsńö½b–¬ŃĄ-¹öN6CśŻHjż¼°ĶŁd½²U]]CaŪėgåM µ.Č8yŅT–ōښښP“M}Ø»Y_\ŽŽ]­Ā|^”‡”Śy֛ĪS ½öJˆĢīlĒÉCe6~8Ōžw^Yv‹į~םĮ2äŽŅ£łóŪJ‹å(døC³…%–¶žS2sYzœĄcqŶɍķc8=ƒXXxŻPœL4,Å8łę~“«EÓĄłdžČŻ;Z8÷Łj•fYś ń|„IĄGü‘Ć'¼łJ‰¾t?½~Q³óy)ė³UŽmCõįD'}4 tČv„\GIō“żPK i5Px^“óF5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_BB.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hóZņ²ŗ( ±Õžō.gP&…B'hœŒ4™„R±¶&‚Ŗ@%¹/Æ{^<ĢVėYŪŹļǹbh”ƒT;&½­Sh4ēBdwgkJP„~ŁQ{a[{WsnɍŪ÷@¶ĪՓŖY•^CČ5PDjV…JP|R“Ó_Ų#ü¬5!ÄńtńĒĆp„f(æFš€X˜‘-cc›®®!ŌʬK £Žśėœ‡‡Ÿ~Žäółø,;mÖæČŲ¹?š€¦ÓĮr9xū–bpŠO9œŽ’‘„bü'~?ž§ÉqœŹ×Ł,n?|ńyG»üAŌŅ6Ś£"Æŗˆ‚÷³ĖąPK i5Px^“óF5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_DE.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hó{²Š’ByģĄ“ąz„µąŚčÉ_Ńa““üJ^Ć+“Šp@[“sšPOå‹„q…4ǧYśf8j½R ĶpfźzB7 H¢¶a„n …#£3Š€ĒŲ·Ū®7‡Ķ4*śs½p0 YĒT{‡ ŒäśĄļÖx–5Ńģrŗpź]y×¶wÓ;‡Rh²=|ø`Cpcae­‘-Ō¾Ė;EµĢ•‘B”}é“/ wq £ó¬A0‹sÅ8(!1déŁŅ Æ’<1BU•Ū÷Ŗ*Ņ%ź"|ušĮw!Ņ˱6…ǧŠš.éWˆ|æĻĖ2Ķ"ł“ĶmÄÖUMXjŚjDüś›™ń‹hb§źŒ‚£ź6K~®ļ“PK i5Pq~mqĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_DM.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĆŲź6;óPK i5Px^“óF5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_ER.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hó^ż@Y”6‡Ž‡I|×+`l xG1™elYŽØžć†@h³oOćĀ{>ģ^^f©%ŸöØ0b‚Ę'_g„Fƽ½XöÄY™Q³„ŻĶĪÜŪ¬=Kś5ß·pøū Ok žßā {ŠJ2o½ēć@JŃMxG‹ÅšŹ­Ž(k›ČPēnŪ_»m`‡ŅMsÉŅ-¶Bš%ŠąT YuY’’¦”æŁ›`UŻžTU¹ŚQ,ķCVų(ĄĪŖ1·Uė%i5}ĶŻD(+ø¼‚³Mńyz^üPK i5P‚ŹćČ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_IE.phpUT÷Hƒ^uĖNģ0 †÷} ļ £¹‰Õī3 戲$„Ŗ2©;h“Ē„š':‹ᦁFx“ų’~;ŽNė¢Ž¢ŁhĮ ć!7%‚œµ"— EkgEŅÆjƒSńvö=½d”…[ōkĆ Gė.=³’:žjW Ö+G”QŽ”%hWoÉl e3(FėåI›;ŖgĒP—ØD{3Ų†ŗ›Õāņöž²kęćB1“ŹCf<“Y7Œ“† !2»w i”‡²0ģ¬ūaW{ŽpįČĻ»ūł”±čG©WÆHŁ÷’Nŗ\ōĀ¢ Id\šlƒ½ųw +Æd>ō'ä†,("µM ėRi”S7äĶīžk !¤éru—¦Óx†v*›ĒšDœ“«RėŚŽO –©ęl*ŒĒ ›ńöA¾yčķ××óŖ¼ø’Fꎒ€=Z.'I2y’ų?)$°‹w9ģ>’eĖ$ą7ļĖēļ yN3ٜĖÓń5Ō tŠ{SG»l‹Š‚ėp½ģ’‰>PK i5P&oqŪi|5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_IL.phpUT÷Hƒ^uĶNĀ@Ēļ}йUH„wTTDF8bH3“S»”Ż­³[OäƒųbN?4ā\¶ó’żē£s}[f„ē…ż¾}XgŹBŖryKd&—< ļŒ)Žć Ä[Ū/āŒY”†%Łr®wuz§%5n›bŌY§†›Fi•ē›ņÄź-s€:\Ť­ŒŌ©į2:€2'ķ čŲŌ=Ļ—«ĒŗU³ŸĖŠĮ-$Ź:V»ŹQGå2!²»5Ē$ƒ’fٰžĆŗö¾r™a;¬æ/acš÷…rm:eԟFŹĒ­°Ąź=Œ119¶ŅÓęå ¶iĖä*րĢxŠ˜Źc’7®ŲŖ]0½WŠ ¢h2‰¢’ČĮż^=šS6E¤Ķч›ųJĆŠ©‚ü £ĶAlŪ‚F~^·öŁlX·«_dhķŲ¢É$\,ĀÄųMa!ēųœĆłų["Ąęmąm{WŽPK i5Px^“óF5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_IM.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hó^ż@Y”6‡Ž‡I|×+`l xG1™elYŽØžć†@h³oOćĀ{>ģ^^f©%ŸöØ0b‚Ę'_g„Fƽ½XöÄY™Q³„ŻĶĪÜŪ¬=Kś5ß·pøū Ok žßā {ŠJ2o½ēć@JŃMxG‹ÅšŹ­Ž(k›ČPēnŪ_»m`‡ŅMsÉŅ-¶Bš%ŠąT YuY’’¦”æŁ›`UŻžTU¹ŚQ,ķCVų(ĄĪŖ1·Uė%i5}ĶŻD(+ø¼‚³Mńyz^üPK i5Pq~mqĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_PK.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĆŲź6;óPK i5Px^“óF5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_PN.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hóiœĄąT”„©ģ+HU4{Š={ŌCÕvi„ēŽŁŻ-c×:Š¾ēD7œ1žōÄÖ¾ķ?­-²%†B?“åp4 •ÕÄIl„Ó±¶ā%ƒ§ ¬ņ?u$0Tw|ČauŹĶižh~PK i5Px^“óF5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_SE.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hóy?PK i5Px^“óF5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_SH.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hóūÓ5]e³Y3X7ŹB­Z;dSƒ4WČ[£=T>ćŽRÆå“r —¬PĆ=Ł­³ķ˜^hŸIK³??Jo ‡Fµk[(M7°Ś5Ø+hUIŚzK]Ž£(£čZB½*źCŻāīźś~u=¶ óIƒ=ZؔV['TAƤńŒŸŻĒ%y£* ›/k’:i Ūłx’ī aejé‘ɏčtģa²fŌ¶E”Ōš.}Ć)ä=šą½ūUČ.ä“,X1‰c ȌCĮŌµX’„c«^iĀōā”·+Šüī_Q¤qF:õŸ'š?ńa 6†ßēG(Ą‹u@āŪŪł~'‰Õfnķ y ņ<[.³Ķę„:rK ĻŲl> Ž«aŌ|u^|ŪćDųtqå·aź¢Vl„艞Ēl 䊹g=ME’PK i5PŹü¤_Eš5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_ZM.phpUT÷Hƒ^5PKoĀ0 ¾÷WųV@¬Õ®c<'!‡m4”ʤ.õ(Iē¤ öė—†.ū{ų•Ńk]ÖQ” ą³d W>Ö(L®$˜£Œö”:į‘ļmķ=Շ™0jŲ’=°s0:“p¢=4.Qę<ī¬oFB£¢©*P¦¾ KØsØX‘¶~¤.ŒœŃ±ŃCØ+BĻ]˜®”n½š/·˶UŲĻ•čąŠr¶NųŠ8ŹįŹ®ōŠßݚFłAyX6m/lk§+Ų§6€évmlü¬aFśĻ>©ŒĀŠģ a…:@ž {%š\h'äр"xĖ„ź łØ±|”žŠOĆBe‹Õ{–%qJ:ńį+’āū©6†—qGzˆx±H7›t·‹‡AŚ»"ė²Ü4Ev%:÷c§vüŻŌŖ-ŗŹækߎžPK i5Pq~mqĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_ZW.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĆŲź6;óPK i5P¶{1Żq± 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/eo.phpUT÷Hƒ^…VĮŽŪ6½ū+ęęf±ė W7MŪÄlŠõ^6@PĘb$Qm‰HjŻśż’œzģ$żÆÅEyėD0ąįĢć{Cr4ŌėŸŪŖĶ^^\Ģą>VŅB)kōߢq Kp•€wh2­Č•p'„õšņšÖHTp'l&ƒ×™ž¢hØŻ"×͆¾×¦'*»ŗ†\·OFī*Ø Øe.”%IUjÓ “Z]B[ $ߣĒ~Žķ‡w×w÷מŖĻĻU蹈 i‘YēDGé*ŠPīVw&$Tōɾō+ōsķ\„]zū ~Ó¶‚{mDĘļ Ŗ/Ÿ5Ķk‰p§M!”Ó„ćI+ų`‘6ĀöÄFøĪ(ŲĢ€žł“@3‡ŸŽĄ|™ėN9Ų£Ń&ö~~ų0bĻ‚ž¦\‹ĮßhåŖIŒ<č"I%ZɄo"›ŅØxā0‰YŃą^E&’ćŒļ@§¼Q“Ąé8ÜEo'jzSL©¢HE„2 QDo'*#ö,hz,ÕxdRQN·×»Ę“čGé™%3¾ „į)o”µ"×Ŗ8ŁįC§Šä8śa"œĪ¢ēŠö”:*ÓŽ‡*‡’ž K'1K£›„łč[mŻ4ބéx?xHŒf‚:…HĆA# Y–ō~Ń ćF C˜ ÄéF3¤±Öf— B7 Æwļ¾żČ|7˦a,ī“ČŅŚI0„~§ēj½¾Z­&AŽ®6W…ŲšžKšą)ģ<ž§į=—°©q ߛ¹åµēX UpJo±«aG77ŗžh÷DHŪ’ˆ+ń‡q¼±gpŸb£š‰Āę9ŖF›°ńAž›Ēl›­¤ŗŲĀ9^æšėŚr%Żžģõ}©°ę2S]“‘n|ē„‘…”_nęøp ߷ؖƒ5ō—kˆś¼źØ½{X)23Ų ]“½­‘5»öż’¾S’:“ņ]gŽŠÖ‰& ,śą4›J?Fw!ņ`O3z°ŌµÜ˜ēÄép2œ 'Āi Ip,Ͳ¬Åü%@oą°…lP}ż«O¬ö}„õŲę`D°æžCĮ|¤JÜ3ŗ®žŃOVC"Ģ?°䑘i™ń9ŻŠQ=Yą TˆiIąˆ„4ÖłŪčA—ćųj¼Š¼?€|ŌāwĄ€Ŗé“†å‰œ~pĄ=x‰ķ³’PK i5P© k` 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es.phpUT÷Hƒ^­W_O7ēSL„Jˆ,ŠŌ§K M8Ph!µŠ(B¾ŻŁ[‡µ}µ½\.”&OQņŠ×>ö¾XĒėŁ h¤Ž éĘ3?’fóxƒ^£ŌV¦ŒūiĒNPę˜ö1/–šR+cŒ!¼M(ŃĪ˲4Qżėźkź)s“ÕWń!Ŗ&gl=Ći@Sś©nhŃFõ•Ō­IŃ VM„–äńĄ(…ŽŅz"W_n„66³Ś”²e«N–E_Y @ßh‰ĀŽ`oFćŌTšŠ¶śĖÜöd7ډHqÕa+ż0nłmtŹh_  ćm'bĻqKžĀ©ob[ ^€•Šāv0źłīš“Ÿ/ś¼dkō™ę$£‚ßö䞷Jė|–õٲF[Š©ø”³ŠĪrĻM‡ ‹z8ØOŃęYj:ĆdU[ē8ź×Æ7#š14 ūŌm¦Fgw*7«tfn‡Ćžßžœ*ˆņŠ7Ø`K43Q_j;c/6¦Üu„ WžŗĆĄ*r:ŖLō”›W«/-ó©+b!čtw…–yޱ‹PJ—SfX¢#7ķĪKņŁ·{C½Č6,ŠN!mŚ"†qH{y‡Ŗ^йp"3p‡7vū˜ĻŲjjõÉyœōz¬šŹ²ž¬3ŒŲ¢e2Ł==Ż}KߥŲXį"ĆK8„/J÷!į^@->£ožsÖ%/<%źŒeoåN(œpjóJ§į&„ĶßćŻĖ?Ē”µēa“}ŸVÖ¢ö[š±„7ļŃEa–  £d³Į>ŁĒ¾Ūۃ§š¢ŽĢc¶’Ń%PޟµDöÖ©ń½_cX¼ ÖŚoM÷ż’±…:ĀÅ:+éb^c΁]KĀB\kLŲ–—³Ęg|A†spX:nz'wNO}Ós× vJŃ5œZ•°jAŠc“Œše­xWiÉBźŪĪגĆ9õ2E,adR_±ØĶM§Ļdʃa8WŽ:Æļ‚ā8†CįH8Ž‚C`ßģ—=v¾”ŗrUžĖ÷15IÓJĶ$=eł–Š•š¢żēļž{†Zv“³ĢŠ=–•WI¤g‰ž†65e½«čA[K”Ė`·ś4„Z·a5üƒ$—„]$ģ!ių¦N˜8iX“ūœĶe#_d‹\‘(Ņ0IK‘Kė|x.]™¼{£=ķ^\AAĮFķóõF•ōß»'vśƒ%tå@+3Ś  Ä%ĻkP—Ļ6žPK i5P‡ädŖ'¦6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_419.phpUT÷Hƒ^-PĮnĀ0 ½÷+|+ R¶ėĘŒ1 iBŪmš¢4uۈt޳п_RČÅyĻļŁ/Y>÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK i5P‡ädŖ'¦5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_AR.phpUT÷Hƒ^-PĮnĀ0 ½÷+|+ R¶ėĘŒ1 iBŪmš¢4uۈt޳п_RČÅyĻļŁ/Y>÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK i5PĖĢņ &¦5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_BO.phpUT÷Hƒ^5PMOĆ0 ½÷Wų¶møĀcH“Š„7„Ŗ4u[kYRgÕž=I¹8ļł=ū%˧®ķ²l1f0…Ļ–<Ōdbķ ø¤EŲ*.”>©óØMņ±žĄ3“²p@_’,Ė×6B'¹vē՟ōÕń0ØʀvŻ•©i”­ĄFėćJ[;>+!ggŠT‘»öƒļmæŻ>viԐOZ%Š+ya*ƒ`=I;1»w5ĘEÕv‘^˜¼› ­cŸīs8nŽ!ž24óĘP©ēĘieŠÆrĒĶąd”Ą³ŗŒQcՁ=]pĢųˆŠāe,Š|“@ŸĒ?Ķą+KÓG5±—¢ŠnW=āi+ø›ŻŗüM”ŗ ]Qńæź{ņżPK i5P” ÕņF5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_BR.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tKB²ūŗ®¬ė 0zŲvĆ8ŽŅˆ¦v&+ }ū)aŗIߌ<Ż`L•ērųź(AK=‚öĮ±@lA:„½ć:]ł‹;c©Ų¾ņkxarN˜jM=» c”ŅĒėöśyjǾ‡;Ó¹p”ž<†¤–”|uB10ōčtw#œŽūq8}f©%ŸtN`r JĀT‚ L$^4{Š#{T£f [F9€cvwĖ8ōĪ£v?r¢®Gbk_֖Y…©ŌĻd|ŠŹZā$¶Qvlķ„xÉąi …łY?š?PK i5P” ÕņF5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_BZ.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tKB²ūŗ®¬ė 0zŲvĆ8ŽŅˆ¦v&+ }ū)aŗIߌ<Ż`L•ērųź(AK=‚öĮ±@lA:„½ć:]ł‹;c©Ų¾ņkxarN˜jM=» c”ŅĒėöśyjǾ‡;Ó¹p”ž<†¤–”|uB10ōčtw#œŽūq8}f©%ŸtN`r JĀT‚ L$^4{Š#{T£f [F9€cvwĖ8ōĪ£v?r¢®Gbk_֖Y…©ŌĻd|ŠŹZā$¶Qvlķ„xÉąi …łY?š?PK i5P‡ädŖ'¦5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_CL.phpUT÷Hƒ^-PĮnĀ0 ½÷+|+ R¶ėĘŒ1 iBŪmš¢4uۈt޳п_RČÅyĻļŁ/Y>÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK i5P‡ädŖ'¦5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_CO.phpUT÷Hƒ^-PĮnĀ0 ½÷+|+ R¶ėĘŒ1 iBŪmš¢4uۈt޳п_RČÅyĻļŁ/Y>÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK i5Pažźč3Į5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_CR.phpUT÷Hƒ^5PMoĀ0 ½÷Wųʇ h׍16ŅÄaģ6M•›ŗmDH:Ē”āß/),ĒĻĻļ½dłŅµ]–-¦Ó ¦šÕjµ6±vČ®i 6Č„³R'l(ÜD« ¼±F ņ„e™Śµ­“\¹óźNŻ9„ź` (×]Y7­Ś ŒVd}““µć3Švv!ŒŲES?ģ}ģ7ŪĆq›¤†|Ņ¢@*ķ…u„*赓q³{XQ4Ŗ†°‹ōĀ“ū¤uģÓ};&‚£«„G¦1Ųźnæ·*‡xŹŠĢ£K57N”!ænlČ7ƒ(“¶€Ģx-˜:ƒŠbU½¾Š˜é7č(\ļūĻ¢ČG ņyüīŃ ¾³¤>Ŗ5{)Ŗøķź¢':ąy³ŪōŽßHišŗ+!’³~&OŁPK i5P ösóF5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_CU.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hógm ®Œ2ŗ»w­ä¤ƒŠaŁE’…½wÕćÄ/ūü¼9ŠłVŠžśéŌū8'®aĖŽŒÕŚ0UppYFvB*dŃĖøŹÕ8BĒ@²š…Ų ē“óėvõpÓ 6µ×ŖvĀõ°œPhÅŠ`— 5ę¤oŽŠē ŻżhūQiŗŁŅt/ČĻõ·Å ¼D \–iFz?J;ņ¤Ą.†O÷£ „IœŒŅńĘ~ G÷ļO£Ü,ėV“xbŽ©„÷’°ūżČną„ 3|Ó³ļšN»?ŽB#’š“č|ū1ś PK i5P ösóF5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_EA.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hó÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK i5PEV?ķD5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_ES.phpUT÷Hƒ^-PMOĆ0 ½÷Wų6Øh{‡ 6ʐ&” īU’ŗ‰E–Ē”āߓVųāÆ÷ģgoŸ&7UUW×Ōšé(ĮH”ųI±@AĀA±Ž””Ģ—²Ųģæ1·šĢ¤œ1i­^Ņ](i”ÖÄėć?ō5ņ:hĢŽƒ‰Ó/“u* ąÉ`Hee#_•P w0yT„öC8Ƽ·Óįxž8.£V}ā”Ą¬ ”„IgĮfW:E{Š™ –EĆ*¶[.\øū,.rŗ_ā.ūw(¦³m¬'mņ˜v6ä6²]™Œ’9ćw&Fčū—Ó„ļŪM‡©-æŪ÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK i5P‡ädŖ'¦5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_HN.phpUT÷Hƒ^-PĮnĀ0 ½÷+|+ R¶ėĘŒ1 iBŪmš¢4uۈt޳п_RČÅyĻļŁ/Y>÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK i5P ösóF5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_IC.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tKBĀĪėŗ²®ƒĀčaŪm ć8J#šŚ™¬4ōķ§„é"$}hó÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK i5P-¶|K5Į5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_NI.phpUT÷Hƒ^-PĮnĀ0 ½÷+|+ R¶ėĘ iā0v›¦(MŻ6"$ćPń÷K ¹8~~~ļ%Ė×¾ė³l1›e0ƒļN{h“Aˆµ—Äąąa#©r6Bź$[,#7Ń'j 滑…śJ3òJķŚĘÖq©Üyu§īBM0”ėÆ¤ŪŽAŚŒVh}““£³dķl½A±‹ĘaÜūÜo¶‡ć6Iłø“ ƒōPkϤ«ĄXĆ ¹‹“˜Ż»@ £Q=†]¤¦Ż·Ą#’”īsŲ"]ƃ$Œƒ­ļö{«Jˆ§ ķ¼5ŗRsć”4č×­ „£v%ä@$‘¼ ĀŽH…±Ŗ@^_pBųtāc’%D™/Š—ń»ó~²¤ž7š<‹:n»F ˆ§^VšPܦwüFJÓŌ]QŅČz,²ßésöPK i5P‡ädŖ'¦5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_PA.phpUT÷Hƒ^-PĮnĀ0 ½÷+|+ R¶ėĘŒ1 iBŪmš¢4uۈt޳п_RČÅyĻļŁ/Y>÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK i5P‡ädŖ'¦5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_PE.phpUT÷Hƒ^-PĮnĀ0 ½÷+|+ R¶ėĘŒ1 iBŪmš¢4uۈt޳п_RČÅyĻļŁ/Y>÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK i5P[Ū;ń@85 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_PH.phpUT÷Hƒ^ĮnĀ0DļłŠ½P”ōL)­ TB" — ”Čq6Ä"±ÓµC”æÆc(”Ŗ‡īÅö¼{äÉs]ŌžFŒ`[ ¹(ģZ32 r0ŒQŖ¤•ų‘0“ŽŽ>ąCx%Į$¬Q§Ā˜¤żńEŚ£2!WÕōb}Sä.Ź›²®źŽÄ”0Ąd„ą(µ}RęŠ*f„’Ō%2«¶.·ZĪėĶ¢æŹõ33Š2 ™Š†DŚĢ ¦°Äv×Ŗ!Žö”Ģ•÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK i5P‰[É|ƒ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_SV.phpUT÷Hƒ^MQOÜ0 Ēßū)üV8Żõ“׍10 iBŪBUšŗm ;ǹÓķÓĻ)ŃX^ņ·cū’‹/¾,ÓRUūͦ‚ üš\„Įy½Ć4€L7†; š²ÆfÄFksł™=‡ÆģL€Œ‹.‡WAC’ĘŅ|YJæƃ†ä=XZNģĘIĄ„¼³¢Z†x6ā(lańh4wpx\ū¾ßßÜ=ü¼Ė£V>™ŒĄŃDč]v]ģįčdŅe”Ų¢õ+ģ>’0÷^'™ˆćǬwšxżōti܍Žuvēɏńj ©!×NFIĄ0›SĖøxcQo›8ŗž1žNŽŚööž±m›z±ŃÖ[xŖņōz¦ S¬įó%<ՐIßź;.r6ügF·ēß2§5ń’‚+Āæ 3R”UE\Äį¬SrDVR‘ļłŽŁZć1݌!7‘Ęu’30DęŌ.ŽX”×fJæ³#„¶żņšŌ¶M½ĒŌČMė-÷]Ÿe‹Ł,ƒ|uŚC£ B¬½$×w[I•³‘R'ŁbµI>QSx!--ŠWš–U‚k”ćR¹óź&}s4j‚1 \!Żv ŅÖ`“BėćJŪ8:KÖĪŠ”‘ūÓ8Œ¾÷żvwųÜ„Qc>ī$Ć =ŌŚ3é*0Ö0hīb'f÷.ĀøØĆ.Ņ “wøsäŅ}ĒĶÄS…vŽ]©¹qJōėֆŅQ;: 9I$/‚°7Ra¬*×8!ü š„xŻ…(óś2ži^Ąw–¦ē&Ļ¢Žn׈ń”ĆÓ īŠk÷Ę_E©›Š%Ŗū"ū™>f’PK i5Pānc 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/et.phpUT÷Hƒ^•–_oć6 Ąßū)ų–­čZ °”»Żvk{ø^›¢ø¶¢(›‰UĖ’§?Éuȗ®_ao}óeĖŽd[Ī‘ś‰"EJņ«ˬÜŪ;Śß߃}øĶ„…©ü_¢q §ą2‚4­X•ä8£CfžEņ%ül*ø";ĪĮ«IR,jw˜čāuDßjSšz)!Ń哳̪¤HHYžRMµ)Š ­ ”„¬› ZŌć.ĻOĪ®nĪ‚©Ś?—”ƒZH…uFL¼£ĀeÜþ[ķMB@JQW¬\Ųk³ōjuPŖŪ9®Į~ n‡bEõ j;·Y#Ū9μZĖüv°Éä0‘Ūɘ—n共ī!8Ŗ§ŻŽśŗėØ›„īų¦„ÄtŗšGU/ÕK·]ė¾'²œ¼n{ß ƒ~>¶µ1­LŰæÉķŗ™źE҆©ŗLÖ p`“¹ĀšźmN¾Z}yŪšļŽEdcĒMÆēŲŚAgÓuzz4żĘĻ ³ė=„1?° l#`ӅLł9€Ēļc ņe—ĘTõ¢“XŠi»†w®zVxzo2EŻ ©—n‘¼mVHHĆ6#æv‡ušz‹‰pG$¹ŠŁĢ4ų|&mÜŽ—k‘Ö»6fsōˆØTņgXĀzžĮ#ĀjńɈTP‰p €¬žö ėu‹÷F§āa÷ßļżPK i5P’SœĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/et_EE.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦Ciõ›łPK i5Pt¶1\Ō2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/eu.phpUT÷Hƒ^•ŪnŪ8†ļżsē6HTųÖŪs¢-’ö")ŠĀ0 JY„%ŅRė&Ų÷Łé‹uØ”N{ ˜ä|üēēłé‹Cy˜ĶžœĶą nKķ Š’y°ųį¢ŌnŹöj‡ ³”=†×¤•čRķ=XWĀ%,¤ž–”łžæåžÆ#°‚÷Nń ]+Bč2°žó;T4‡gĻaސGH•’o™ŁĘxõły¤łÅ) ¶Ę—•ŗR)Nµŗ¶ō]˜„Åź#ā^˜WnœS¹Aäų' WŃ7ī3¶ź=$Če@§€’WAKy3– õžäS@§€Z^^”ŚņDJZF¬€×.Nc3k¢,ē6hŽ7ūŽ­}aoŚÖ‘¬`½®ŚYó+KÆė~N ²õÖŲ8÷mˆs  4ŽīlPŒńł€ąذD3"r]C KJ›Ičy©_\š“«·µ%źś§ŗä޹oϦLƒ€¶łź6īĒwĖŗŽl ܌"Kē&A }åļāśśbµšGŃõŽnąšæ5”ŁĄj­6Sō÷,<“ÕwÉł;‡æéø‰S© MżhœŖqÕĶéz§ŚĄÕķ½2·æłkg÷׹—ž£'±ŠOģ ó“\ą¹5ū# Cž„pŠeåāV»śiųhj£ŖøMS§HÉä6‹»$܋¼æł›Ÿs7ļT,Öü²|³mQ4õ­šĒŠqĻ;·-5÷¾ė„R®4mQS×ČcѽW%S^%ę6K[ĒæŒ%ŃS %ŃM¬Ė?ūH¢‹$ZHbž$fObņǤĻ.b>jŻdč?v(łŹŃķjœåĢĄˆq ˆc¢-Ø؜Āѱ’čJ.IF; ßH6į«fDĀ 51³vā™łE¢©ģ Qb·ż¦“œC¢ĘͲÜ‘)p–Pi°¤)-ˆeJnĮ˜S‚¾+FK—w|“wprz0“rżŁœX(‰”«Y\XšBÉlŽ önT”Š…R×lŲÓŌZњL"Mǜ$1)“aWtCӟÓ¢h’č{ ‚ŹN&Ų‚óąŖYŹØąÓ.œ—Õ#žtõ˜aH ³éļ¬zĀNƒ‹-ŸQRz™’‰©3ĢōöåF¦ÓŪY‚š›Ż/˜_=Ļąå&žžyłµšęH߬¦åÄIŖgNŅźŽV÷ŚŻæī/2¹Ņ¶Õå²E—)b܃œKĻeßJ &’‹ PŅęó ā”o%(S=×3Gk1&oņźŽ“„‰c ÓVwMÓœUÓqMD·D©ÄŅ¢qĮ›ÕIY=‰W&é5«īŽńūnŪ‹k_fʧÅøéĮz0®=Ōõ©‡ŗu’Ö/Ŗ˜66§©Q4{P®ä‡9ė^½zŅĪåÜĒgĪn ,Ō$N̶1-ŅSūį0üW‹šs0į-Ū¤=ok/ĀR¼`U,.ÜaĀ™RPHM9#1§ŽŪ÷ ŸP¢½Ųv¢ iAÄĪ“85Z9ĮdķH­+ÜŲ ­p™UåJ}Ń!–DŌ—/r»łźĮT+K”]‚IŌAާą¶ķR!ķÖĪśź>#ĒÓ„•@Jå>ļČ;Ēh}ńz'0‰‡_‡óoóŗ u-€§ķÅęĒŽ?PK i5P³>Ąą(2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fa.phpUT÷Hƒ^՗ĻnŪFĘļ~н)1\=¤7MŪÄNĄ± 8@Q†°’V&a‘+TT=“†’ü9÷P;n…"%‘—\ś¤}ė“t–ū‰„Z9Ńe¹;ßüfwvvI=ž¶m“VŲ"{m˜.kš-ĮØmsĒc²É•?½HśEČÜ®3Ŗ­åŒ–<sh•įLĀ“8¹)Ā’|3ĮĢNŗs”–iÓq(KzéńŻez\ŚĢ ™Ž]ˆŹŃgœÉõxWŌ„=•šæhóĻHVˆ>aēū Ļ“K?Ž]&įŲŲt¤UµewR‘ōh!½ÄĻMO8eD0ŹV¾C5A—Ž˜R5Ģf³•\ݾKĻŅ‹ō¬d?.Ė«GMeŖP”Ź“–tœ1Š*ÓOzÉU¾¦ģŌiŃW@6¼łZĖ·7V·-haŲ™°¬n»%#Lk+ŪÆV¶.™r{E?6m1³ŁŠ¹ŖAæ%vv+«ó–PąōŅ\n‰µqĪv©NuŅņ¢Žc“ś‰ø¶ųÅ+Ę œ+’)æDŌTŁī}Św'ŠÅŽ WÓp]>{÷GQ+^o¹Ø¹Ķ©oŖi©~Ž£‹š2dÄ?`9Ń­ø}K£Ŗ30~ū÷B]FōŠy»É6õ³£³C#č©ų%k/{!é~yÖU—ŽŪŽē6wõś¢aœsuĖ&azFū¦£õˆ1ŁŅó~»œŗ=£-TĖ™K?Ņóū’ć{ ćy<>=‰R ’穌_ j":¼Ŗćh²¦iNNhšŽė©wtU6‹ÆƒÆŠw»×"eU½üéKØZōɈčÉ%SXzĮņ¼åUķŽUN¾oī>(µ>Ś>Śmˆv€vˆv„6Bg­žžžžžžžžž^¼>x}šśąõĮėƒ×Æ^¼>xxxxxxxxxxx!x!x!x!x!x!x!x!x!x!xšą Ą€7o޼xšą Į‚7o޼!xCš†ą Į‚7o޼x#šFąĄ7o^^^^^^^^^^^ ^ ^ ^ ^ ^ ^ ^ ^ ^L¼’ŗ§«®§žī“¤->Ē+[ąĖu÷Ń{D†½ÆžPK i5PZø1¼K 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fa_AF.phpUT÷Hƒ^}±NĆ0†÷<Åmn«(Y`Rm•šF–ŖŖ"'¹4V;\œFŻ3ÆĮ#••'ĮIZ øåä’ū}÷ŪĆė"-,Ė ,ĄS*JHD†`zĮIƒJ@§cN”’Fж|ƒŽń6ö^Ō‡[\ĀĖPh ư9ŽHsTډT>:Zļµƒ’*Ė RŞÄ&ÕĄe ™ˆP–f„Lå\ %m(2äFŪ ¬Ū{óŁxŗxœ6£Ś|:åj^B,JM"¬4ĘP b²—Ŗ¢Ķ¢ø ėZ„ŗ" œˆļĀ"ćšUTŠöŸ+AA0™=Ć܄;ęg˜ + L±IÄsW#X±ĻWƒŲჭķŽ×ˆ[”q‡Ļl8?īQeZ©•ē­Ąü„ė{®?aötbš<üåoų‹6ųšöõņ÷yžĒxtʦą»Iŗī_ZßPK i5PPĄ‘Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fa_IR.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆÜŌŁXd“ą8Tüž“ādĶx<3ņž1ūlĢŠu:ųō\Ąq h3£($ź (SŠ²_x”¾iWł½…gaŒp¦2±*ģ§>Å“ö6]ž„ÆI6#WC›ņÆšÅ+`œ!°„XZdtI®Øœāä@Ųø¦e»{;ŽēćjµõS ˜¹ØšT•fXX}Ū“ī%U±Ō‚ę­ģ`„“J”ļŹB0Ž/§÷qģwƒĆ¾}`wožPK i5Pß/’¶—2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ff.phpUT÷Hƒ^„UMOÜ0½ļƘ[m7ź•RZØ@b9”öPUȚ$³ĒNżA”ßŃæ‰UĒń.mW"j.¶ē½yo쉓³OMŁĢféÉÉ Ną{É ¬ø šcƒŚ‚Z- .PgJśP^įšžŪӏņcų¢9Jø#“qkį,ė—Ÿ„_*»ČU}©_•B+'äŖé4_—P xNŅxK¹RŗFĖ•œC#}ģ‰Sņno.®īīÆz©PŸ-ŃB‹ n¬ę™³T@Ėmé_»QNē䍊PlŚļ°Ļż!+©Z ­Š šÖĮĪŹćŚųŖDSbF–ē(D7h²NK@­±cš9ł1wŚš':ŅōŪqMĄŲåĶ7ĘIJrį6™ĆÆų'6gųxC!|ū=D’ėėÓŗN껥żrjĢ ĖĖt¹LśgnPX.—sŲ‡wńeĄaß~K+ü‡øƐŌJŚ2n.1œ åwžäJXź'u¦T×O Ń˳ `įÜ#Š~V)mšŸģŃUaģ•v‡ŗR5b@•3Õzżq Ģ”JŪ×Jb±ŠXCōęŃ:аŃ4śE·­WKTŲmv\P¤_žČbŲ ¶¢słHFlˆń•g„RšŽeœė=“Ń–¼ÕĘ) D‡Ø‚m$3¾ÆUsłJįŽ0ÆÅԊõ²Aī}Dc| õhæźČä.«&Ķ Nõ¦M.Ć*ųU¼āüå94u ns“Ó\9i!óēŲw'MA1ž Ž™ HŸĄEövńWl” ØÕī C=‹l‚śkSG|ß5¹¦ƒķ2² ņŪęų…’Ō/ŽNEöVå_śĻ’ˆŽŸløą’Ö/§‘MÆ—ž5J±ŖRĘ8åźĆ/O¼©RM¶ åJŽ;bIŅį–˜ \dSäŽ?ĢžPK i5PY›Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ff_CM.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒ÷½~`wožPK i5PY›Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ff_GN.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒ÷½~`wožPK i5PWtģU&5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ff_MR.phpUT÷Hƒ^uOoĀ0 Åļł¾ŖŖ½3ʦ“(‡ĮešP•¦.‰Ö&“‚ųö mģŸ/–ßļÅ~Źų®“cY3ˆa#•…Z5¾wœ˜œD˜r*ö’xå;L½÷dˆ!<āVhKåŒĖÓxÆżh\*L;¹X …Euß4 Lw$µ“ø® Qµõ'umØåN@× ÷Ś^į!¼[.¦óÕz~Zņ9Éø…JYGŖģVpPNzā³[ӓ@Ø a3FčzŅĄ‰ų± ģ.ŠwѓU{¾õŠŠb¶x*Š4Źź:õ?%šĀĄWtĪf#ø\¤ /7A‰äØmGÉ5Y”‘µ?č™Ķ²<{öõ }0Čó<ßųšēĆē?}•/ų×¼MŲvxĆŽPK i5Pį²Y¹ś^5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ff_SN.phpUT÷Hƒ^MMOĆ0 †ļż¾ *ÖŻa‚±I“Š„÷Źm“Ę"MŠćPńļq+œāĒÆ_gū4ŗ±(6eY@ ŽXņō‘¢qČM Zj?±7•²3~ÓŽĀ3ø˜Ōl›9ŻM£Tm’ŠSäEČfļ”ćSļ0tą©5!éŹ`#(ĆŒŽ Ö¾ÉLĖÜėłp¼\³ŌāO L˜ £$LMÓĮDā“£ŽSĢÜ]Ō-f7ó…óģ>‹‹œīēx oŁ#ÆOŁ«+#÷pn Wdģ »Q1åģ?nŃd#™°łŹÄźśåü^×Õjcm„æŗz(~PK i5P± ßv¢ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fi.phpUT÷Hƒ^•VmOćFžĪƘoDsŖŌOōz-œąŽ tA­*„¢I<‰'¶wŻ}Iš¦_ś;ņĒ:öŚkØŖZvfž}ęuwy’s™–ļŽąīS¶°äœ@ž–hč%ø”ąĶ\+Q-2\ŃX°üpq £‚[²svŽĻ+ń%¢vć….>4ŠOŚŌDKŸē°ŠåĪš*u€*œ¤¬øTKm t¬Õ ”9”č6LŪzßĶõłåķō²¢Ŗćs):Ų¢…„­3<÷ŽŲ²KÅ"±[ķĶ‚ÄQRū®Ź°Ś{ę]Ŗ=­ÖßĮ]Ź9—%ĮÆč)™ żŒJü†f’· š„Wģ0_m]ŠÜ[ļtįį‹7:Į ūŖµPM1/8(Ü:óa5Į?aB9)Ē“ Ŗ) Wˆ©cEŸ{"į¼!I©”83Ž ø^)t»vēYĘ…ŅYßŗ>OģŃ„ä”ēA{© ’į%;N°QM¹ŠŖngN®uņUĻIZżqF”ÕM0gh¤ćw虨¼å…Ī÷YøŅ‹ ®-~k"ø×\łUJ¶q“!Ÿ¤Ŗ|GŅ%ųĀĪP­Š¶tߊĄgķYq[)“i˜RY"Ef†ÉN¹ŗPpxĒ™„œ"ÆÄĒpXź-™•įņØī·!ē‚‡o“#4#ųéŒNŚ+Æ-?u‚s8:i°C`«–ŗ¹t`Ź¼ĻŠw4Aī1CxÖź·DŁŠ s–駁Y¶ChdIpi¹ęĶžłi(īŸ#~ˆŽ‰„rT&'æbRµcĄÅDYÉłŲ*•Ō"ņ“2öö¼ÜК,-“†k)ėGՈ‘ gż=…xĀ’k“zˆ\+ŻV®5Š”ÉPĢ”ŽöeUeėŗJWÓ6{Œ“–tdõH½ ³ŌĆV3ó/œ2.Zõ¦āmX3Ŗßö·‘ŅrÕ5#ōömdhźĖƽ­«ßćÅ„œŪA”åpÆ÷ĻyF]Ös’'ś(’»¹ėėfUŹz9‹§źū^)D@użDŠ7Į *—‹³V<ŒN ś5Āč±åąå²KEķāČ׆YI"D’‡I ņFhcŚķ©×…Ä0øĆD¾‡šŲ±LĘš:€`Č2Ą>öfVŠÓ$8²Ņ™äŖŹ¢ĀVp,MˌlĘį¬-ņX7–’Ģ:īČчõK_3+ﻋƒ«ą#ŠÖ@˜^s“wÓ’fØOt›ÆÜAĖA®0)åq-©Ėе/’4k§}¦›µŌa’7³Šå-Äīv-‹č0²ƒ­~­}ī«õ0ĄA‘ź0cŒ]€1ŗZŒ« Ŗ‰Ø §„ $Fх ĻuĀT4ī ßÜM–s‡­(;<ųPK i5P­K%BŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fi_FI.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒ§^?°»7PK i5Pifö)ņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fil.phpUT÷Hƒ^-ŪNĆ0 †ļū¾LØ}&@lCLBāp]„©ŪXĖ’ą8T{{܎«ČĪų’Ķcr©Ŗšõŗ‚5|9Ź0GŠ3ˆˆCŲībŠ•=™kÕĪņ{ ĻL&ĄsG"°éęń)č„¶ńüš/}‰¼ Å{°1]˜F'`Bž,†¬•aˆ|6B1ÜAņht÷K8-¾·ĆvüÜĻQ Ÿ8#0™ =eaźŠ`‰Óeϱ°E-źŲf~įģż§§=¦xĘq©+ÆxÄY©|r¦C!k¼æ\„pPĆO!FhŪŻį£mėU£8ķūk­ßøŗÆžPK i5P”³1¤Ē06 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fil_PH.phpUT÷Hƒ^„TMoŪ0 ½ēWšę¶čģŚu]?Ņ”ҬhŗC1mÓ¶[ņ$¹™’ż$Ył0:ē2_Lń‘¤ ó/MŁL&ӓ“ œĄsÉ5ä¼"°’•™ƒ) nP%RXWŗĀ‚bėĀŅcøV,H'Ü8OÜńRŲ£4q*ė‹śU*O”·U©l:Å‹ŅŠ *ž’ж¤Č„ŖŃp)N”©­ļÓŚēĶļonĖ[Gåõ™ ¬QCʵQ_—wϽ#zx˜Īfӗ—čŌCÆż/Ŗ„0eȉn)i £GJT0­`ķ+»ĖŖ÷tŽq׊QõĘU!µń֒LGµ%q‡ļ+Ós!“Ęu8 Õ0m—bvš‚¢ &h J‚ #ˆ BķP7TÜÖZ­2ģ6½Ļ¹(śĢykļk(f‚Å;R+Yõ§»vMIo^; „/1ĮL¾ćtc«„{ŻXö@(Ū{ŖŚ¦’‘%a2g9WŚ0ĒźNŁlĒśq³R<ćT‡R‹ųGģgßŎ©JČŽ7źļ֙į5A‚n~=й!µ6X¬Š`#ķØƶnt–ŹV0(ņ E%īŻ”œ“kܦ×ć²ńÜŻ"pnM€`Čʓ·ĖĄö¹Yo²³QŁH^—öå R”Žä–£²±Ä0E.ģ;Ą½kŪīꦞEvˆ Ń”J1ģ[SъlĖ¢Č„ ;ž½KŠ¢+¬x³E®dĶ„ »Õ>Ö¢ÆĒŸ&PK i5P©ŒŲ@’2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fo.phpUT÷Hƒ^UĶj1¾ū)ęę6¤6…žÜ4m'$mœ(Å#ļjweļJF?v y…>„O==÷“/ÖŃJū;”‹a5ś¾łfFĶž|\%«N§tԁ#øK˜‚ˆ„š½"Rƒˆ@'Ήœ Ž[Į’Ä“‡\K¼†3ɇ[ŖęLk8™[óGSč^ ²SO½²ŠLšB V[ÉāDį!¤, \aH ™Ķ?†UJ ī­Ż~7×ē·ć +Uä§¢aC„LiÉęFÓ6L'ˆ`īJP Éöm…Ö÷³Ń‰j`×oą«Dg›ž˜, ®•ąø”„ēæ ¹/CøV«WĪÆ©” F"‘š-U”A$ÕFr˜tŸī–Ł…§Š„öhņ¼ĀšbŁ=ö$ĒØœLp”J²|ĒIžČJfi×ü–¦‡|–æ”tŁrY³%¹Æ×¦fž-$Ū:ݐÄul4HMk©!t•ą_Y«éü!«*·FƒŲ’{˜1ŽķŅ8Pkėźx ‹5Łķó|‘­h ø/,Źw čŅš°d;«Įn)æĢ%±šlĶ2 *Č g%I‘Ķøš’É  UĪ‘¦²éŽŲā»ŸS¼{“IČwł£¤œWśÅŻt »/¶oīœÓÕÕ Ė<×ć2PŖ:h8ģFżų“Ą…>°ļć°¾¢…ųĄ°W÷ŁS__@RŹCc*’ŃaŁĻ“ü—mNX¦½)`鍀œžŌ-^&dŒĶõ õ{uēŠü&h)QmÅxCᐠeւ“¢5”6S(µŸ:Ų¢.pl9‡›'G!dČ8I}7p“ͩ쵆‘oƒī‚pcļ¶KæÄ›¦ģ›¬džŗf_ Ćż;-ŽÄÄFi»Rt„© c ±ŌĀ/¹XWŪ!Un=me2S8ŠuOĘ'āóh'įsš)ųų>²źV±ģˆÄ©VÖ­ ē¦l…²ؕ„óæŖ†p,VF’’©‘'޵_J·8õœł4l«Hå*°QĖx>T¤Ō÷²ūråL³b^ĖK9%/ätœJ%1©ō ef"šUŸŽ·õč·ūŽdQkU_Āwž•āw×'€āųƒ0}ßłPK i5PČB‹UŅ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fo_DK.phpUT÷Hƒ^uAOĆ0 …ļł¾u«Ŗģc ¶”MZw.MUšŗkD›'ŻŌ[†ÄšÅņ{_ģ§ĢļŪŖbĒbx­Œ‡ŅŌÜ[E\ ”BX*ŹeIØ#Jf|¢§šHFYŲ£ĻM0χńĮņč‚Ō®Y\Š'G㢲«kŠ®ķÉ«ŹPÖóI[:jT0Ī&ŠÖØX;<ļvŪåz’²VłB„œ•‡Āų@&ļp6”b‡³{בF>TŒag‚0tdA©>#lk„‘»īțN?;CY¶Ś>g™Œf„“ü3Qļø¢ļl>‚»ÅEåŻ(D«•LSŁ÷QņĖŗņŽø®Ż[BʐĄfsÓ4ø Xp%š?~HÄaz+¾PK i5P*BJ„Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fo_FO.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒĻ½~`wožPK i5PļiõōÅ‘ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr.phpUT÷Hƒ^„WŻnŪ6¾ĻSœ‹n‚XF±Ćܦm§H†¤ĄbA‘-YL$Ņ#)»ĘR`Ʊ»Žm}†]śMö$;)Y”ķvŲ„&Ļłų’'Ļ_Ī²ŁŽŽąą`ą]Ę5¤„Ó–ÅõŠRą×ą‹.wTkfāŽ ę”5nYl įNX²ÕāŒ0&ĆR5īV“–„5ŚĘöhø=Y“g.č„É®DĮ¬½­Öęį4ķr×*±I'ŪVŌŚšjڲŻ^ó Õ=ż× l×2ŚhŲ¦Ņ)xK`04tjkeŖd1ŅCB„źYJ'ŲóZ9°™ZżŁpOī% ōs&L³óŠ~Ja„śŽqʶÉķzĆ@j?ßśDu2ąččžĀKčŁ'k½Žž³½`q‚)+s3Übē²·MśćVéhŌõŹÉ“’į+n8K ½¦}Š®uO‘*ˆś7˜*VŲæčb„)•2ŖaŻŪmqi±ÕŃė’āØ}ēkGėE«ŃĒś%²%d{±L×ĶčÓu[iådµvÖtåßzTN³ųƒBē€ž°‡įöŁŽ?PK i5P~łłEŃ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_BE.phpUT÷Hƒ^-KNĆ0†÷9ÅģRŖ6ŻC)ŖPa‡ŖhāLƒc‡ńøUŌ3°ģŰŽ|žēńĻŲĖ›”²l1f0…÷N{h“!ˆ\Ҭ‘+gcH}aKE¬Måu÷¬Ń†|„E`Y%yk£tR(ׯžKŸFM0”ެŪNm F+²>Ž“ćE;;ƒĮĘŲ^Óaģ{y^?nޓոŸt(p@µöĀŗ B5“t1w÷.°¢8Ø—]¤¦Ž» c™īsŲŽ½B<Õe£Į €¼•d”  ĮŁZ±€)@J„™ā½Ńe_ꀱӶņ«ģ¦LJĆķžDąaßŗĻŚ¹FāĢǽtaŲ*šŖ‚ĢŌ¦C) teØ­k© ĆG%dtu…ʱįŁē­–³łf;oKłł¤Tge!'+LūF0‡3Ié"nvkĪŠ5Źż°£vĆ6wŅHiŲŽµ’!$„‚ [!}čȂ•žū5®Ā“kõCG„÷Éź£/ ,­rw°¾.£4¬A1«KŹXW*Cg³†-šŠń»!FHÓdłš¦q8*8v#ų Ą½°Ūنš8ī‘Ē+Ā÷†ėõ0IĀČwQŸFl%Ķ]SS¤gÄ/Ææé£=ļDm“õ.ØŲ«n£`w}üPK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_CD.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_CF.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_CG.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŖ°“v>Ė5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_CH.phpUT÷Hƒ^-‘ĶnĀ0 €ļ} ß Ø+÷±…‰ 8ŒišPR—Z+Iē$0žh²[šā‹ćĻ’Īč©©š( ą½"%Õ^7‚-čl…0|ŠŹ#ł%Ž˜śŲ6¼'ū0e 6hd-Œ­ł¬¼©m*õi| ]h…JW× use:V„* &‰Źų–ŖŌ|–“J ©Qxv&¼„¼Õr6ßlēm©0Ÿ­„…‹0P±Lg±€ ŁŹ{üģF;–čaŲa»a›;q¶ŅlīŪ÷d„¶–Ō±# źļWū Ó¼ćļPĄŌÉ ¹ckńC'„Éj×× –FųŪ˜Š‹Ń:V ˜Å5glj!ŃkéŲŠ{ŒßŽ!ϳå[ž§ń°äŌ’BœĄg^āī&†Ēń ¼ βt½Nw^ā$8÷I“ļ?D’PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_CI.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5P ³ Ć÷L5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_CM.phpUT÷Hƒ^-PAjĆ@ ¼ļ+tŪÄūMӒ4…@É”ķ-³^Ė±Ø½ėjå˜ü¾²©.b¤ŃĢ ķĖŠĘYf ƒļ–4Ō!h ĤE88®bŠ‘’q7Ģ•;ÓW~ {&ąŒ©"ŲV3| £ä>ö»ź{äEØ»|L·VĄ…:ņ’Z†&rļ„bŲĄŠ”ÓŁpZī>N‡ćłė8K-ł¤u“KPS¦j¬a"iu£ŁSŁ£ÕKŲĀ0ŹČ³{”ŒCēW °+ėHe­Ć:åJ&œŻš–$ņ”܇BגA$Ž)aS ‰ÜeKV°GųÖ*BHÓŁā9M‡a\А&Œą5®°Pd]šó“)ŅqĀŻn¢ õÉ­×Ī^^n¼–£ŗF×dż…FÖž g6›ÅIæp}ƒ’$ßōŸ9üq’ӗsĮæęmlū·Į;PK i5P “¢ąC@5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_DZ.phpUT÷Hƒ^uĖnĀ0E÷łŠŁP”¬Ź‚RZ؄DX6B‘ćLˆEb§c‡ˆæÆćōA_³Ķ=×óšō¾.jĻ‹F#F°+„†\”6׌ ØL0g”*i%~bG ­·³ųI0 Ō©0¦iW>H[*rUĶŽ­OŠ\£¼)KąŖ¾8˜Ģ „¶#e®ØbF(@]"³ŚY`ėŽ­Wóåf»ģZ¹żLĮ “LC&“!‘63h…),±»kÕG;(sĖF”iH#b—„°.G›yCZœq@ųŚBH’Åź9IB?Ź)“?ć°÷Ą†Ÿ Ņ&Éģk•'-āɇ»ŒƒžvŹĢiū›Ę‡wП¤{ą$'ÆwNń‹IUóƒk²żB­Šž-QG/6¾Į qĆoz{Ģ’ōe6ą_³=š0¼õŽPK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_FR.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_GA.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_GF.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_GN.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_GP.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_GQ.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_HT.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_KM.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5P³]öŌ_5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_LU.phpUT÷Hƒ^-ĻNć0ĘļyйŖ6½³,˟‚„h{A«*š8“ÄąŚŁńøÄ3pģ‹­ķąĖ/óy¾™Ļ9’5SU­‹ šg4zc 'd߃Œ7Č­wIŅļ8Pzsū‰>…k6豉BkDą¼Ķå„K„—ZūŻÅwėē2؏ւöÓ›a@ׁ5š\H+]ļy‡b¼[Ād “¶7t(¾‡ū›Ū§—Ū<Ŗä“ 3AŲ“Q؃ƒ‘1ݤģĮG֔u%ģ:æ0{Æ¢ŒžĆYž^ĮóÕoH§Ćj°¦Õ+ė5Z —ƒ‹µē”8™$²dʏ†i²Ø)QGfO'L’¢a‚¦ŁÜ?7M­Ö=×韪%ü­ņt5æ*(ųyń-ł”j³©ė×tŌ²\ng؝w2†&¤¼2{Õŗ4VõĒĻ}ę9÷¦“޾”ą č;4‰»ŽóÜĒ~»;|ķ¦Us>iĄh"4…©Iڤ¤ģ1 l1j강b”=fs׌}g,&“Gŗį‚ńg FŠśm’©u™UŽĖō™¬€£‚T™#Ž¢›4œ/iJKōښŚ%k{‡žŻr1›ÆÖóÓŖ>ŸÆ¤‡ƒtPhēIēĒŚWL8»³)äCE6„¾#’H3¶– ¹«ŽœŽć€š­Ó„eÉā)Ė¢ .)⟠BxĄœ³¹n§©——›^ ŖqӀ Āk²žBcē~Š3K’8Mćg®ošƒBš¦š›^ć3‡?īś .ų×¼ Åvx#ŽPK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_MU.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_NC.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_NE.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_PF.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_PM.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_RE.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_RW.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_SC.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_SN.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5P “¢ąC@5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_SY.phpUT÷Hƒ^uĖnĀ0E÷łŠŁP”¬Ź‚RZ؄DX6B‘ćLˆEb§c‡ˆæÆćōA_³Ķ=×óšō¾.jĻ‹F#F°+„†\”6׌ ØL0g”*i%~bG ­·³ųI0 Ō©0¦iW>H[*rUĶŽ­OŠ\£¼)KąŖ¾8˜Ģ „¶#e®ØbF(@]"³ŚY`ėŽ­Wóåf»ģZ¹żLĮ “LC&“!‘63h…),±»kÕG;(sĖF”iH#b—„°.G›yCZœq@ųŚBH’Åź9IB?Ź)“?ć°÷Ą†Ÿ Ņ&Éģk•'-āɇ»ŒƒžvŹĢiū›Ę‡wП¤{ą$'ÆwNń‹IUóƒk²żB­Šž-QG/6¾Į qĆoz{Ģ’ōe6ą_³=š0¼õŽPK i5PĄd2½& 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_TD.phpUT÷Hƒ^uOoĀ0 Åļł¾PÕŽcÓ(“(‡ĮešP•¦.Ö&“‚ųö3…mģŸ/–ßļÅ~Źä®­Z!āŃHĄ6•vPź{+Ƀ-ĮW3I¹5,©W¹Ćˆ½'ū@ ၓ4°B—kļa’ŸĘ{Ć£õ‘²Ķōb}“Ō/*»ŗeŪ#é]åAšj­Š8>iJKōښŚ%k{‡žŻr1›ÆÖóÓŖ>ŸÆ¤‡ƒtPhēIēĒŚWL8»³)äCE6„¾#’H3¶– ¹«ŽœŽć€š­Ó„eÉā)Ė¢ .)⟠BxĄœ³¹n§©——›^ ŖqӀ Āk²žBcē~Š3K’8Mćg®ošƒBš¦š›^ć3‡?īś .ų×¼ Åvx#ŽPK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_TG.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PĘźŗ5"5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_TN.phpUT÷Hƒ^uĖnĀ0E÷łŠŁP”¬Ś„“*P ‰°(ŻTEŽ3!‰Ž"ž¾CŅ}Ķfä{®g®=¹«‹Śó¢Ńȃ<ŹB®Jīµ &W Ģ„F³$b!{ĻöĀ)”a6UĪĮ$=ļ5 „©¦ļÖGCŻ ¼)K¦>‘ڄΠTµå•:7T §Œ .Q°vTŲv÷VĖŁb½YœGuł\!“ĀB¦¬#•63h•+˜pvk’Č‹².läŗ†4"qJėRHä.²źˆĀ×FB’Ģ—OIśQN!’ŒĄÖ.æE< Ī|øĀö*€ė]Ѓ>“ķA'uņź¹Süb\U üą’l¾ŠŲŚ“góyĒŃ ×7ųA!ŽcųM/qĻįżŸ¾Œ ž5ówĆļ PK i5PĄd2½& 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_VU.phpUT÷Hƒ^uOoĀ0 Åļł¾PÕŽcÓ(“(‡ĮešP•¦.Ö&“‚ųö3…mģŸ/–ßļÅ~Źä®­Z!āŃHĄ6•vPź{+Ƀ-ĮW3I¹5,©W¹Ćˆ½'ū@ ၓ4°B—kļa’ŸĘ{Ć£õ‘²Ķōb}“Ō/*»ŗeŪ#é]åAšj­Š8>iJKōښŚ%k{‡žŻr1›ÆÖóÓŖ>ŸÆ¤‡ƒtPhēIēĒŚWL8»³)äCE6„¾#’H3¶– ¹«ŽœŽć€š­Ó„eÉā)Ė¢ .)⟠BxĄœ³¹n§©——›^ ŖqӀ Āk²žBcē~Š3K’8Mćg®ošƒBš¦š›^ć3‡?īś .ų×¼ Åvx#ŽPK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_WF.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_YT.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅŌŁXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų TĮSDŠY, d–§œ”r_ö‚½jWł»…g&›ąŒu"ŲO+|J ³ō._ž„ƙ7#ßb—Ė/Ó%Ų4C$‡©jdņ™ÆV(§;(­r?„Ėv÷v:ĻĒÕjė'Į ,¶ĀLU˜¦&8ĆBt£ŻknģPƒę­ģ`„qĘļFŒ0Ž/§÷qģwƒē^?°»7PK i5P—ł÷ńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fur.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ cH•Š0ĪUš:µ,)ŽCµ·Ēķ8Evžæd÷<ł©Ŗšķ¶‚-œW”ƒ5Z(„uFd£ÖĀUŒpv«“!ģ™ŸŠŸżŌøJ;öõų†Y­aŠŻœ#ĒūKÉ” .Čź2ŒĪrQš=ž„mP›Ā‡‹Ų ķ»‡ŠIooĒR¦ĆC`z€Œ­ķ-t}=‚Éd=°CyRĘ'(°fŅ1ķ˜§!NI{±ż©]R©•«ā”é ©ķO“yzZ™XJ4Ū_¾@nż©Ū–šĖs3W~­ŃāŚ:_Xr$3 §µkb„ōŖė|BŻ1³üäÜ>LLSÄ ż}’č£k4ģ¼ÖD‹7»” -I j…”°ŃĶ”iKA&oBł¬Ex+”"j1H÷aƒ(~0ˆlY2 FµS)ÉŲ’•ĀX7c©™.g^5ؽhģ·$śŻ†XŪ³ŽEV×Hǹn”©ÓĆ'×Ćäö÷īņ§ß w„{’ž¢Ā¢ƒ+~É{ø6Ę śÖBm’ŗĮR®UqdĻ-OxzŸüPK i5P§Ž‹9’œ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fy.phpUT÷Hƒ^}VŪnŪ8}÷WĢĆN‚ĘŻ.öaįÖé- Ś"éK…a“4²h‹¤ARuõ~Ļž@Ÿŗł±^DIqĮ°f8‡ēĢšŖWÆ7åf0x~v6€3ø/¹‚WōŽ0mA`K„÷L/”¤¦lĶ–8"¬ƒŸd§šNs&į3š·^-œūF’«ģ(Sā"BƕöDE]U©ĶNóeiÉ*ž”4$) „³\Ég°©QŪ7Ž[ßļęćū«ĻwWŽŹēgKfaĖ äÜX͵Ŷܖ”܍Ŗu†$”ūdŸ» ]ß·µ-•6cgŸĆµfņį_Eųw”įž øę¦ ާKųh•l<…F[k ÓŠ3Ü!ÓC˜\Ąpœ©ZZXqŌūŽ­QŸ,›·hŽņ)č®ĻŁ4 %m٠ŤÄ}Ļėv:8Å'Ńā1ń؉l×½ą–Æ‹³;Š-–Ė'p}ŗ¤”³~å9ņ¦N+®£“®®c°¼O–dJZ½BuvGØÅ:„£Ąž“Ø$%ø¤EŁZ.~Ś}ė ;g~Ņž‚“ū˜;IĢ”ģĮ55„ ¢Ūļö” ÜŠ‚MØc½L_"鳄ŠĖBµK= ­Ä\ŖmÓ8‚‡¤ićEA{ÅXŌišWµs{«„Ņŗa”«[„„ÄĀNõĶ7÷ūįĆXˆˆ»NdlL/B——ē··ē_éé›(Ü҇įĆ8Ź'XNĆĪbu«Pęń(é”g˜ĄĖfĄ¦åJŃaØÄ ØģŽ˜Äļ¶Eła;‚ś’ö²OkzˆŖ˜ép…9ś™ƒµdӇ…~ųOā ŽńŗJ®*wĮĶ£ś•ιd•µĢÜ]'æÉZ,PŸĀ߉'žÕ12:i00™Ląģ÷Šmų«Ūp1?~?…×”‹ŪŒcž¾ōŌ’tćøČ†+w˜n™ę“vhāB·ž`t‰:ƒm4Æb Gg¬j¹ ļŹæY½¤Q¬}7ƒŚ ·ģ©čµUєź[jĪŃ{ÖKjn肳mj1'/R ‰š˜FĢ"&õ£rT‚­–sS’&ŖwcŠÖmĘĘHäžß]9tX;Órn¢¹„ÖʶJ.Q7^”sŸŠD%“nCß«ŅšQśQ ^xŚæ yTĶI:Žyé[åžļ½ż%Ųž’ŚŪJ ×Ęŗūh®Šöś{ŃŽh®=€\Ōyé;ąĻˆŖčó%Ŗ9ż€~§0{9ųPK i5PÕÕØ€ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fy_DE.phpUT÷Hƒ^„QĮnÓ@½ē+ęę6 ސ8A) I#µ4.UÖŲŪKģ]3»[“~Ā±»ŽTDō†/3ófę½7Ž‹w}ÓO&óétSųŅ •h \ģ‘ Ø LC°BĪ•tP±ĒšR7ėĒϊsxĻ%ܑ΅1p‘ūr!]©LZØī2Žn¢Ź¶-Ŗ?°Ø(KhEAR;IY)īŠ%gŠ·„{4„½ŪėÕÕŻīŹS¦Aj(…6,rk؄A˜Ęuœw­,䄬`vī/ō»KkÅśµĻ_ü­«>”ä8V ;Zw‰&ł,8ƒO˜· vČh~b°§µ“©āŚ]ą»ÅśŒ0ːSßbA.–µx 3¦V0A–­Æ?gYšĢI¦ī‰’|›€ū’ѲNąķe„|€d½N·Ūō«ū’YhŽ!é”4MÜJnŠJ;(t¬É†r>ę[…>.{¦¶  n¬Œ± qik«ĻvŌģņ°žqoԘݩį®é1¤§F2ķŽĮ<Ł‘ŃÉhāčįŌ@ŌņQ;ŹFĶØ÷¤5ķK<ĻŽ )K¬G‘c¶²ÖG”Źrųż ÷ßCGI‰±³aA1õ,j Yž#srŌ®)ǰÖc5ģC5‚›1ģ†gØ:!’‹Ø¬MęØ2Uež5°½ŒŻˆC¾ė«!‡©W³Éżł›ÉPK i5PźČĒ„õÜ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fy_NL.phpUT÷Hƒ^’]kŪ0†ļż+ĪŪ8 vµu]³¦”¦ƒ%0Ź(F¶ķCÉ;’üļ'ÉJJéŻ|s>tō¼Æ$ß|ļŪ>Ię“IŲµ¤”¦ĮÅ^°UƒiīJŗV¹ fn֏_•ךƒIHxF]1pSųņNŗR™¬T‡Ū8ŗR@µķ:(U?05­!+čØD©¤¬„!%§Šw(\ļHx ūžÖ÷ĻŪ žL+ œ„†Š“a*¬Į NdZ·ā¼ke¹D'T³sBæwaM«Xńł VŒ[U›“`t­¬¢üZ–øÆ°Ķ¬éØ(g*E‡ś®‘6SÜ(£±,A0‹!gģ;Q¢‹„eMG¼bükɁó|¹ž•ēY:ƇĢ]w:…?‰§§ću ßnc+“ŸB#].g›Ķģå%†„×1¤%M÷¤BJtöI;jŗĀ‚ßŖp/č“EĻŌÅ”O­ĘŲ…ø°Õʆm[ģ  d_üÜÓgu¼“—ØĒü½©\»Ū5oÖ¢§ }±2”h#ŗˆ&¢~TŽŖQš¢uBÜWb8_ĮV"ĢF¹ß xG¤cśŪuĻłNÉł\łēƂ¢D%?ąßfFųȉ#iÄ|dœµ’"ŌĦ䎑«:÷ø€łWcņ«¾Pp˜ś|Śņķd2;>žĄ1|åĀ@&rōæEmAe`9ƒ Ō±’“”<ą†M‰ėčļ’#ų¬Jøa&Ö‡ŲM’”4UvšØācK½RŗŹŹ<‡DmµŲp (SČE¤!—2Sŗ@+”<mΐ־ ¶«ķ–×—7ėK'UĒg9ZŲ”T«E\Z–ĀNXNÅnT©FŽŅ:ؙ˰I僫ą\¦ŗ:ĄZäßęĄ­Żšłl¶!‰2v‘ĻŠ€ąŻ5vz‘üV-Ø< UpIÖd·°,ŪŠŻdå¶ŅśŁ…k\ØŒŗ?~®Ś­t³5Ņ­åČ÷ wņ^§Qś"Õ±;?Ž…ū'į&%;VóżÓi5R­R-ä£iT‘ ”t*$ķ¬3ĻJ™øĻx÷‹,‹˜é#ųŽ_{÷·ČŌSąģģ NįS}S̓%ü §æÕŲļ£śQ5ŽŽŽ×’?|gŚXwŽ«¬»sO»ĖÓ­7$‡ŗYų¬ų£eåōķÓęOÉŃŽŻŅ@wޘ©`EĖŃS9u,įž‰s÷~ņPK i5P[D»†Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ga_IE.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm£Bķ0blŅ$“ą½rS·±Č’ą8Tü=iœuēóŻÉ‡§ä’1]ÓhąÓq†‰=A E!N Žąˆ2ÄP)ū…3µU»Ź÷ö^„1Ą•ņĄŖpVų*ŒŚŚx{ü—ž£lFSńlLæĀ³SĄ0‚gK!×Č0E¹”r ÷³„8@.џg;šÖ*¦įƒp å=¼ZPóOMć2S¾ŽŌ3cƒP^dfukÕRz`šC”2”ZźÜŲ’yeō¬ Į°ļ%ÖaÜÅ»“ÓW§$āó’yX3\9oÕ¢ņ‚ĆZy‰ĘīLe3F<{HŅŲi儱nBßūpf™®’3ČŪt¼Ē§Nr³Öa”¾²®G€ĻųV0;†ć×0žd¦Ņ…b\j6Žk즧|=śÖĀ›'č·©ŲAŪ_ķe‚•õwć˜ī}4 šf;·L…\ē²ās‚9Į2əŅbčŌÓŠØ£lžgĢ:Uķ 9K.NboŌĮč Ķ6O%:q‰ž@S6I¤g ”›ķĢ“ņU?+Jć"K«‰K•)žŲ i45 eóä䧚¼st"3:M˜+³ŗ )“āC8²6[ĒøTÆ3cKÓ i “§†‰W„h ¹5å6qvĀģƒ«<Ēą¼°ŻdNõ>Æļ†7„±¶šī—õM@&;§p 46[/t_|lFœŸOŹ2r#p5@&Ī%`Ķf‡——‡擀- —ųĄcų1ķ;Ēgž"Ļcz+„ęńœäēX)fmŻ®©pŖZJ`j9Ģ}ąØÅ?`ö|Šü©ŪÄ"\o”ĢłŌ½¾ß&G¼‡rNŠ’Įu-ē[µ)³ÓĀÅ]qń Ęr„YĄ¼Ņ]šü7]• awąk§Oćˆ“8>>†#x‡I7žĮŃļūƒ0źoH„R«ū³š"² ü/żQĄ–•ƒ~~…U\‰2rBr9”ó—£_PK i5P?J[ĪĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gd_GB.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm£Bķ0blŅ$“ą½JS·±Č’ą8Tü=nœuēóŻÉ‡§ģ³1]ÓhąÓS‰‚ĪlY M įhyHQ)÷eglU»Ź÷ī^˜l„+–Dą0¬š9*LŅŗt{ü—žoFS \ŹæL³°q„@cŃČ8%¾Y”ļ!“Źż.ŪŻŪåxŗ~œV«­Ÿx+°Ų#aŖą ‰×v/©²C ·²a”Źæ+1Bßæ^Žū¾ŻuóŲźvęPK i5P8Ö¼ņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gez.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ [‘&”œ+7ukYR‡j<=iĒ)²ó’ų%ŪēÉNEQ—e%|ZŽ0°#Čē„¢PK°Cé‚Ļ+sʑŖ¬]äwę^…ŃƑbĒŖ°ķ–ńÅē1heĀåé_śd ’s`Āt­śņ1Wś!Č•ƒ€ÉęŻÓ¼śŽ»ęųŃ,Q+ŸZT˜1BĻQ…»¤ŌĆĢjóMf!‰”\ŌÆ°õņĀÅūåĻ>Ģz09”q­K‘nx,1S¹ÉbGŹ»Ž„4‰Ļ†ļÄBжūĆ©m«M=ŅoۜŖü›ĒāPK i5Pą†»¹Ē€6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gez_ER.phpUT÷Hƒ^½TOkŪ0æēSčę¶t »v]×­F”ķaŪeŒ"ū%u¬L’ŅSw“ķZJ  2F”P ­Ē}}“I²“6ĶŲ ĪÓ{æ?~zŅņ³vŲ®Tj “€Ž„T ™w›p‰XÉŠįu›%Ÿ4”jjmłœ?^pJb“ ¢N„DĖu®Ę&d²ź³ÖJYŗÉø#j$Q„|ÖīrŚ %"q€"źC,ŒdÜ`¼E$eń"jG@ĢŚ…ŽĆmo­mģ¾Ž°TΟ ‰D"P@…䓞HP‡ŹŠdŒwĮīƒ œŁšżB‹}žČq±d’?B/ĮƒC“ÉY,)pć1‰§Ģ/b>‰@¬6«Œ7 ™šĪIshGÄóö.čĢqxŸPćõ­WW½ÄUÓ`o½«XRÆųDį”§+å’[Žv Žśzmg§öÖü¼E—Ü+^^ĖX K”§ūZhuih=]źt`Øs}¬tŚ/2}éüÜĒuÖÓé7Ž•}ē‡e;×J°†ģŹ<%G_§GĆĄRF&Ž,”ź{憱0Ż–’ĀöCxīģ¤;jsv”³:/ū5ŠŁ©ĪƇFTŖU™¹Ņé…Ī{#WŸ†™üL«ėįgłw­>Ū ˜TļÓ’Ńż]“Eć’lP.$6¢˜5°ÕwŗĖl¹^٬ŗ@ųXU 8 (“FÓōÓN³*½|ŃźGŁŁ;XœŖ%ßl‰t®¬G‡ØÕ9Ūqˆ(©GPbf¬'xF•Ū ǘŽŪ¾žŽ«Ō™±žąŁD ThnĶqLęN\zcvś^­pvĮ3K•;DcsÓO{:ūZĢį=ŪZĪłß#žUØĄ†övĪģ-eļܲbzšą©£ó2QŃ3÷ą–`zšąi EŸÅ<Ł•Vę:¾ņˆéi‚’@²7’¤ņ PK i5PŗU’EÜ6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gez_ET.phpUT÷Hƒ^½RKOA¾ļÆØŪĮŻxUD”‡!źÅ2革Żé0;½öō°YN/=3»‰Ę`āƒ„D1¾HˆĀ‘S’ÄīŽ †£ö„»¾®ś¾śŖ{įn7źÖj¹¹ĢĮ戧Šā1‚Ł»L*-PĀ2“M‘(Ųam¬›\›>ĢĀ}ÉY[˜6¹R°Š“įRbB”źč,ŽSׄtD­,Ž!ݾäķHKBˆy€Ij$“–¦øHę”#3Ų.Ēž«ŪX_^Żz“j©\*b z,…§Jņf¦0„W‘¹1½§"“”Š5Ū°mķ½LEB¦·ģł<@÷`MŠDq”¦Ē, >˜‹€Å˜.µ÷źB¶D•ɘ”¬ļKģĘ,@³™Lł.ĪH|–q‰ąū+ė}æī50©›{óš“fI½‘Åԃ;‹cČĮšVV››'fyóīr{“yÓb4®ņhš’Š}*æQ©I7ä ”‘¾ 餏)?wAń™†ū¤æ’Ž.?RyģNƒ†lrŅå.¾ŠĄPQ~6*8µł)éŹ ó$«0'T/£o)’YM,Y†)Tõå§ęQŌUw_×;ŗ°~ązC7•Ž+]Oūķ!?}‰āˆŠTŽIOØx=‘ÓĘg>•ūa]”£1ėW¤ßMnŹ7ĪŅ” ņēTž&żŽĪüŖbuF’F÷oŃOž“¤‘óEĖoq™*ßźŪØL:ż›“’‚’‡;ÓærNł'ŅcµūZ£ŁmĻŽ®żPK i5P¾ōH@œ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gl.phpUT÷Hƒ^­VOoŪ6æūS¼”®²;¹MŗµI± I1 ņĮ3 Jz²ˆJ¤AR±³„§}’œ†včuĒłŗµG‘¢$ĪĢ‚?¾÷ćļż!łČ—Æ–År4:>:Į¼/ø†œ—ōædŹ€ĢĮo˜J¤ Uś-0&¬…¤‡šZq&ąź„/;üJŠPš8•Õ©‡¾•Ŗ!Źė²„T.o_˜Č ä) M.E.UÅ —b Ėén8®šy—oĪß]Ÿ[Ŗ&>S0+¦!ćŚ(žŌ3XqS…bײV)’£¬ öŲfhē~]›B*=±ņ3x«˜Ųü& ’Ś+x†%|Ē sćoĻąB3JZ»ńĒ…„ļyÉ’*ö¦-ÕŖĘ£BS+ÓŠŻ"SœœB4Ie-lęņ®u4v86؅ŗRÅ­¾’Ā[…ś®±ē§‡%G»pÕ6[šµBü00j¬˜`wƒQĻ_‡ÆEĮGƶ‰ƒ×Œ sĻ6+÷(„·– Ł‚Ÿ‚6ŠĄDŪ&0X¹ēØĆ6™ķDW¦čV ھĆB[UXz7źÆ]o†]¼ĒŠ4ܦž5¦Rd[Å^Ō"“wĆaĻwN-t@요·éƒw¶ĪV0Ć+l-¹’Õ\H· ņZ¤¶)ĄĮS‹9„_żxŗNØ8Ū>Ƈprrbƒ‹śXūł3łD4č'/‚ńćh“A}ŌĒvĆš<”Ł‹ś¦[ŌUŲ{tČp`7²’Jµó+¶ł“¹ÉiŖ/—u ź%µ§Öž uHģѳkŸ®ŽÓOtłŽĶųfRUźõםa¢õĄę,ggĒWWĒ?Ņ70¶V˜f8ƒ+śœōųš}cų×Y3ŸxŹJ™o›½Ģ5«šĢÆD·‹~r—™’»  ŖœŃeń4­•BavlšhZČ5B“Ąg§öäĆg“ŁžĆ+ˆ6÷Tū‰żćhTųŽė%*pmö—ŪD{‹ģ‡¶Q’’Šģ:Āt•tĆī±döX>^°&,ö¢Śc¹¦r®dK¦Y&÷²¤öœ—Ś·Ė­£#UĘ+}Ou• śėĻĮ{Ā7”hĶr%£1uLT+WLżÜŒŽ~„ÓšF±®7Ÿ¼P–²Ś4’FƒUādmj/ yŌ¦Nž ¢™kŗTMSģŠ}0±Åy܆ā…2ö‘Ä>ŽŲĒūbļ<ŽķӅ:z[ˆLŅŗhb,éō~›FLŅęw•R—nkJ§nPx•ŽÜ'““øi‘‡ŲÓҲä±'Ž=oܲ>ŒwŽŽż–Ńń96Ļ嘏g 9WŚŲ7Ō\ęŻŪķy÷ ³z²V; /×/=Ŗ¤·¹÷Oģō:ta5QńŒcå,v)/ķ?af/F’PK i5PŠQ¾Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gl_ES.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm£Bķ0blŅ$“ą½JS·±Č’ą8Tü=nœuēóŻÉ‡§ģ³1]ÓhąÓS‰‚ĪlY M įhyHQ)÷eglU»Ź÷ī^˜l„+–Dą0¬š9*LŅŗt{ü—žoFS \ŹæL³°q„@cŃČ8%¾Y”ļ!“Źż.ŪŻŪåxŗ~œV«­Ÿx+°Ų#aŖą ‰×v/©²C ·²a”Źæ+1Bßæ^Žū¾Żushõ»óPK i5PÄsī ņQ3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gom.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ cH“¦ų8Wnź6ÖŅ$8ÕŽž“棳ü’Żs“±Ŗšķ¶‚-|YN0°#(gDQØ%Ų£tĮ—•¹ąHuŃ.ņ;sÆĀčįL©cUŲuĖųāĖ“6azś—¾Yƒ†ģ˜ÆĀ£U@߃cC>•J?™P9ųˆŽ°ģ~™ęÕw:īēĻƵņ©E…ōœTøĖJ=̬¶Üö²*Eż Ū,/\¼ßžāĆģ”§³S×ŗœč†Ē’ •‹;R6čÜõ ¤Y|1üd‚¶};~“m½iĘ0µ'T_—Ü”MJ }©ŖŅ(rvÖÅkG¶7)4ü{Ēkļ-$“VŪ3gΌĒc{O?,²EÆ÷śą p›qs.`æ Ś‚šƒĶ|¦z¦$Š’{zĒb|/هOšS ×ĢĢøµp:sӏ§Ź’Dågz”tI4/„€D-4æĖ,P™‚ą “]ʹŅ9µ\É‚Q”-9[•vW_>Ÿ_ߜ;Ŗ2>›Q +j åĘj>+,KaÅm†ŒŻØB' „e°Æ{šŁBK÷[ōĄØŽ Ńq¢ ia©“2ėfbhÅŪ.+i®¤Ķ:y¦øTėöŒÕč62Ļ*ńбū‡”V \y’ÕDØf[µm ]WƒJŸŅNĢ.EµŖ­H+i†ŁźXdJƛa“‹ĪŠėeä\bś»É(EėffœuŅQÉ K”L»łš¢ ŠY7J½ŲWWśż-ÅW·>€ģ8Ļa¼¤–NW@Ü“!ĒĘlEyĢpx8žĄÖQVZaƒēźēzx! Ÿb‹K›±Ūy:”ŠKóų{­¶”tś’ѤJaB“i8­ā1`ĆŖšĘž8LkĖ£dæmø@šoĆ|Æ+}ü…Y VMĄ­qo¢5-ĘÆTl“č.Ø;É\üē„ڼŚ\vyˆCįD—T2Å]°™ö£ÕĘõ¼Õ„p×]ŅwĀĻwŹX7øa–å³Ņö›-üąZ-+ِ=–ĆIū1SƒgĢ6QŁl€„HšO‚s|“ą˜Ō^Ż­ƒWDµī·“ŒīFå~0RņN?žT¤Ė0ŅĢTČā^W6ņgä›äE” <ą€rØIą 8ł<Üiuo8¾•{.Ļäy@„%ĒEū'„ÕS]TˆL9Ė7½¹K¶ķ‚ĻƒNᨭhł4>‡ŃI­zŚjżöŻ.s£ī©’Įš~CŖ$~ąåż/ŠwovAå/Ö±ßLs{™OaŪē\;ōŸŖł“~(ß6Oœ“{ÓŗYżŖ”ĄoƒP2XųĆļ ®.&'½æPK i5PŒ5Ę­ 3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gsw.phpUT÷Hƒ^TĮn1½ós£(¹Ó4-… J­MÕFQdvl±koĒvłžžI¬³¶—°IOµv1u„Iżņ7*©j©J£Ć` tNÅäµVz Ÿ6d‚xn_…sHÖ蘜&Lm*ōƒ=BēIĆmxu(Ø ļ.”;Ȍ×fFR·A–u²…Īوką=ā®…~7™ÄĶÅ”®Ä¶$¬…-3é¼ĪŗJóŪĀ1• ,f†Ė[øc<õĘlعķ.½ÖN±čĪ’ünŸJYVNy¾T{ŸÉ:{żLH©.E™ņwĻtī-ælwTKBQ$²GŽH¹^’šĮ’“"¼Ŗę“3”½\S ™‹ė`X‘*BFʙ×éY„ēŠo}}Ź €•ĆrįĖĪ™.ĢĆ1=ĘĒ·½“&ĀŽ’ĘJrŅö‘l$É@’N²IńI Iå Ė$$JøįO›ß„ż¼_ˆ“mZ åJ‹"]ķkóżęāü™&.nēšµ‚co®6›{mö±¹NZžųŽ7‹õ‘Z5Ī”†Øa(!ŻąńO)½Å éėU¬Ne™j°Žc^ü#KŗV£€’ŖÕĢÓé§ģPK i5PśR{k6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gsw_LI.phpUT÷Hƒ^uPĮNÜ@ ½ē+| ¬¢¬zm)-eA€–­Tz©Š&‰³±6™I=žą{ų~¬ĪhPÕC}yöóūĻ¾Lż”eėÕ*ƒüģÉCG‚ādXĄu =Ā„įŚY„šƒŁc©ŚE~ҜĀ7&ca‡¾&8«—ņ«ÕŅIŁøńŽc^ü#KŗV£€’ŖÕĢÓé§ģPK i5P"O'DR 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gu.phpUT÷Hƒ^•VįkŪF’īæā> ÜONĒ`fŻŗ&ƒmIæ¤0F0F–NŃKg¤óܰ–@›BeL` dcc rpMĒ6ē‹ūÆÜŸ²»w:NVŚL„X÷Žļż~ļŽ=ŻŻś'ƒpŠh“WVh= IŠŅĒHü܄! bōĄMz4&o߯ƎĄJų-ļ6ś,!nŒā“GCė=9ü4CŹF÷rčē4¢`Ųļ#²2äĘ>źĒ©ŒšD.#4n”A»Āö-Į#ˆŪśāĮęƝMIł±Šehä¦Č')KHoȰF„…Ā#rOé0ń°ņ!ٶœ”Œ½?d!MŅ5łž>ś’¦!Ś” Ōų+w˜†d_”Į÷I ¦ŻH0&1Śm ń4°›4ŃĒ÷P“g/y6F<ū›g3>łg’®yt3ĖÖlå*J!j‚Ź&>y”Ć"³°"8åŁĻŽšģB¦e.āmŁŗP˚-täćżr°Pxʳ_ ĻĻ~…€W|rijćĆ·BJœv6ģZ#ō݃ʬ’6Į<7jĘVÄŁ ``¤‘”h˜ŠÄ˜gÆ!ó±‘0¶"Š–žqA‘Xōēņŗ©‹’ēÖŗs‰`iåJ3™–g’bĘ¾{*½rU¤dƳæ¬&™óÉ LźX¬OA`KIŒ‘‚‘Fŗ{4Ē2a|WŖH$4źĘtdC§%„0œT™²Ÿłä{ča±7ą%Čč•Å|F rJæĮš[ œ ÕRgņLc!)''šŃˆ&‰į]†©ĶKOm`Žz¤Bī£p-АžNįŪ~eāsšN½–¦ļ PšöövūńXNķEŪāAĖīe Ż,Ļ"ÖO ż/†N^0ĻķćŲĻ7ŠRÅR7ĀzYvyöŒgg$źXJ ʏYc–£łu±y©tmDßM-®jT%Ž0īB#.d»B#vP†œÓf?Ķ;x«R‰'Ä'XķĪĮ0öäˆn½'7„Ū軂†¹­£Ėłä'SSž2Ÿß›w ’“ZŠ;«×sĢõņĶŽMóŃõ4—°'¼ø ĶoĻf›Ō™EÓXFŚsR>7óOS€Īt”ózlŪä˜Ą®r īŁ²{ŖźīŸ”é%Ląrß~­²ēNDņÅąH#Ļ•éGčŗ9Pœ+Ó\SžC6Sx攅Ōcķ¶rįź"Ōł;Æś:V‰ŗ©ø±k åŌȹYaœ–Å1EqjŠįŌTĄ±&ļTgģӔ÷±ē›^˜A£æ1ķž Ź¦V¬SčĮSyŠŚŽKČżOHĒrœ‚C5‘åųGŹŗ6_~žkk5łŹ*åS°2Æ&\ͳš^MVV2Ė9č; d`“°‘4bF&+xūāŸó ųS×GŃ{'Ø$IYWČwiŠ-®¤«ę–(ķ $½rT\Ńļ”&€ó Ņīj ­ ņĪŻĘPK i5PŠ{J~Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gu_IN.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm£Bķ0blŅ$“ą½JS·±Č’ą8Tü=nœuēóŻÉ‡§ģ³1]ÓhąÓS‰‚ĪlY M įhyHQ)÷eglU»Ź÷ī^˜l„+–Dą0¬š9*LŅŗt{ü—žoFS \ŹæL³°q„@cŃČ8%¾Y”ļ!“Źż.ŪŻŪåxŗ~œV«­Ÿx+°Ų#aŖą ‰×v/©²C ·²a”Źæ+1Bßæ^Žū¾Żusmõ»óPK i5P_£hžJ”3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/guz.phpUT÷Hƒ^„TMOÜ0½ļƘ[­6wJi) ‚ŠP©pAE“d–X›ŲéxĢj’}; Š"mė‹ĒóŽ›7ž|œ|ėźn2IŽ&p÷µ²°P ß;d³© Ī‘ £}Ŗ\ā3Ķ<·§”‡šƒjø%[(8)śćwķFf„iOź„įPhįšJÓ­Y=ר+hTIŚzK½0Ü¢(£§Š5„>÷¢ht7×ē·w}©ŠŸŌ(°B •²ĀŖpB¬”Ōń½[ćø$oT…fÓ “8ր̸ΙŗKņ{éŲŖ:`śćäłüśwžĻ’”ōĢO&™ĀćüJZbU)jųz I†J2“~™üPK i5P Ä©éńN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gv.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ŠĘ@“Š|œ«4ukYgÕŽ·ćŁłü’Ķsr©Ŗšõŗ‚5|;Ź0GŠ3ˆˆCŲībŠ•=™kÕĪņ;{[&ąˆ¹#ŲtóųtŒRŪx~ś—¾E^‚†ā=ؘ®L£0”OCÖŹ0D>” y4ŗ»N‹ļć°ŪæösŌĀ'ĪL&COY˜ŗ"ŲĆDāōFŁs,lQ‹ś¶™_8{Ā)Ä)@ƒ)^€q\źJĘqV*ŸœéPČﯷF)Ōš[ˆŚöõšŁ¶õŖ/ķū¶Ö_\=VPK i5P.•Ź}Ī5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gv_GB.phpUT÷Hƒ^„TMs›0½ūWčF’1x:ÓSš¦łģ4iœCšK¦“Ń,°€&²ä®„=üūJ lh‚/õEҾ·oŸ˜³oėj=›-NNfģ„=W°BHdn]Y¦ f+d×@©V®”½A‰‰ćzśQvĢ®H€bhRa-;KżńB¹£¶I¦Wēś]S+TŌR²LÆee؜I‘”2n¤*4­Ą ­ęl-\m#pŪö=Ü]ß>žŗõR­?[e[0,ʒHk‹9Ū [9Äy7ŗ¦ Ż ¼5»š7ō½—µ­4™SæŁ„cA[f?…r: sæ“.ćRŠ4‹„Ī@¢¹(Uh*[!B[“b@ '\KČŠ­YMFlšˆšO-ē7wOœ'ŃUā"Žęģ÷Ģ«GŻ%Mľž‡R[~h ŃĶĶb¹\¼¼Dózķ–h„•­BOtDŲÄ%Ö„č„£gm*.ĻŲŁźJKhHYæ»Ü éwWdŽØFP±©cÅ}į”傐 ]7‚ä}a‰Č~čZaӟTƵtö-߀æķļ—5¶ ϧŒ]OŗM6“nßrhö)ēZ«>Y”PŻvåŚDę¢ Ū|GšŌnČ= õnĀ8Ģƈ ßK÷ŗA4č½[¹¹’'U2–;1® īu[½O õŽäQjØe}žĻ:Ś®f.eĖRŁ&ŠiųdėąÕį+’X8ŸźŪē7Ćhol{~Pbވ!śž| žqW‡VīZSßYMĄ'ŚBˆB¹č.‰m°Üå޲)ųa‘Že0Ój|ń¼żœō2ęüPūėń—Ł_PK i5PÄūŁb˜ļ2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ha.phpUT÷Hƒ^…TKnŪ0Żū³Sø6ŗuÓ4n>H;šl‚" F–H—Ÿ¾Ms€^ čĪ»žŖ9r¬ŗv“įpŽ›7oHIǟÅ¢×õąī a`&J~] ¶ f` gØS%}*›ćxnC?Čį³(į–›TX Ēi³=•~«ģ SÕ Q/•B3W–©ÅR‹§ĀŹJ‘qi|K9SŗB+”ģĆ¢äčsςהnr}vq{wŃH¶@ 5ȅ±Z¤Īņja xļF9qß(f‡Ķ„MķŲŁBi3jāw~œ“T§•7”Å36vWsė“Ō—LóE‰÷kę“Ļü@óļNhŒ_el ¹ųSLśš­žIā&'” éÉ}Č$WW£ŖJś›ĄŻ22¦Fč|8>ų§µL§Ó>lƛ8`»ūš—ū§;ŁqI*%mAÓ%7(Qhē‡O.1uŗŻLQ Ó晩¢¤Ü2¬NŠø–a?9c±‰īŠŗ* į—¹U1ŗu5Rņ\˜v­0ć/Õ¾"3dƒLźOķ©;µ¦¶Ō“ś­{՜Ļs\¶ƒO°Ą<ØN„q {,12AŃņø,°ŠGqć*üó;f‡õ–vg߁äI›„I•Im[Ŗ²"(b‰Qb­ą/ĢXę5˜š±F.ȼ'”ņ‘Ō Ķnɽ-bEŚ:“˜‚ĻżiĄ(SNZz—’å>Łžņ›Œˆ@½z±«ŲjTū@dūź_²CØp®Zz'‚lWįśü: öP[›ļDķ؋pį’wtõRoŒ[ģĮķ.¦“Ņ’^#ĆĒVüs[ķ‹ö_ŁžņH1üK_“lFs \ŹæĀƀq‚ĄŽb±Č8'¹¢rŠw”q?LĖv÷v:ĻĒÕjė§,0qQį±*M°°zŪX÷’Ŗ8² i+Ū7BZ%‚Šwe!†—Óū0t»ŽcgŲŻ7PK i5PŠ‹YŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ha_NE.phpUT÷Hƒ^-PANÄ0 ¼÷¾-TØ}+@,‹“ŚpÆÜŌŻXd“ą8Tü·ādĶx<3ņž1ūÜ4}Ū6ŠĀ§ē3›E!Ķ žą€2¦h”ūĀ u¦]å7īž…1Ā™ŹČŖ°Wų &ķ\ŗ>üK_“lFs \ŹæĀƀq‚ĄŽb±Č8'¹¢rŠw”q?LĖv÷v:ĻĒÕjė§,0qQį±*M°°zŪX÷’Ŗ8² i+Ū7BZ%‚Šwe!†—Óū0t»ŽcgŲŻ7PK i5PŠ‹YŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ha_NG.phpUT÷Hƒ^-PANÄ0 ¼÷¾-TØ}+@,‹“ŚpÆÜŌŻXd“ą8Tü·ādĶx<3ņž1ūÜ4}Ū6ŠĀ§ē3›E!Ķ žą€2¦h”ūĀ u¦]å7īž…1Ā™ŹČŖ°Wų &ķ\ŗ>üK_“lFs \ŹæĀƀq‚ĄŽb±Č8'¹¢rŠw”q?LĖv÷v:ĻĒÕjė§,0qQį±*M°°zŪX÷’Ŗ8² i+Ū7BZ%‚Šwe!†—Óū0t»ŽcgŲŻ7PK i5P/{PņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/hak.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې&”`ˆcå¦nc5KŠćPķķI;N‘’Ē/Ł>Ov*Šŗ, (įl9BĻŽ ŸŠBčA-Į„ >ÆĢˆUY»ČļĢ=¼ £‡ŖUaŪ.ć‹ĻcŠŹ„ĖÓæō-ČŌ'ēĄ„é*~ AÓģMSmj‹csž®ņ7n‹?PK i5PšPש6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/hak_TW.phpUT÷Hƒ^„TĻOŌ@¾ļ_ńnĀ..žFD0!źÅ2™m§ķ„v¦ĪLŁģ cHDąFb pŌÄøčšČ•ĀÖĆi;ÓŻ¶{é÷Ž÷¾ļ½ytśI&µŚÄŲX ĘąUH%ų4" ß  ø*$0‡E‹3r×p@ŗ6+qGį™ ˜Į ‘-ŖL·²p–鐫†ĖćSśœ‹ÜČO£\žt B˜yQ—0©[2Ÿ‹+ŹŁ8$Į:·NI;×--Ī-¬¼\ȬņłTˆ“±J%h+Uă6U”fōģ’§Ā%ŗ‘—;‘0Ó>MUȅœŹpZiP"ŚrėwqDälĄŅA.D„‚w I„]¢ßn*$]'#‚¼M© €Šüā „Īa ½LgŽŌ@?NqéĄć“ŹÓKyĀy­Ÿ«ÓŸĖĖŻƒóóŻO_œń¼fµx91g*4bēņdC—ikēņlĒ¢“-ƒ®ö÷KvĻę6Źŗ÷eī»ĶŚÜī»źµÉ‚¢Óą»Ÿ ’ķ i·¢°T:S.O™PšMsN‰Q…¼ļÖ\«øŲUÖ#®"1ŖŅ÷6;P×L­G»ŠÄØB^.üßžå|ŽP£!ŗ‚õ’i€•æO\lXuXĮa4\lVJ™žTųēæX¹qsoā0..*$q9ŖżPK i5P2ĘÄe€3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/haw.phpUT÷Hƒ^}”KOć0Ēļżs  *Õ>,Ė>xH-‹¶H«BÖ4u±ĒĪśAÕ#Ÿ‹+'>Õ:Ž“6@šĆÄ3æū?Ī(GßJV£ƒƒĄ5ć–\PšļµµĖ(œ ž+éCYŽw4õ¹Uś^¶?5G —Ō̹µp4ÆÜļһʦ™*Žcź¹Ņa£„2U®5æcP.@šŒJ揔K„ “\É!”‚¢Żsŗ u“ńÉŁåģ¬Ś*č³ -¬ŠĄ‚«łÜYŗ€·ĢÆŻ(§3źZ±£¦Öi Ø5®‰¦„ĄŒśwę“į÷tOÓŽk „œŽ’&#*S3ÉnąŸ¤PŅ2“Ą×cøIĘ( īirEK*gŠó°z~üįć\`Ó;Iė·Ą&É嘇ą-żŖĄkņĖU;—jՂ “n‡ŪŗˆaJŪŗ4JK£Ŗ“єvõ¤QOĆ]µ¤Š4*ˆĄūĶÉ+Jó®›;™<=”N„^®Ōó#ęČxėųŚ%\ė°§‡M/6YJŖW'uŗœ\…ÜwĮ¾öC°ƒżģē×{\Ęfį.*s]™?ķź¼2³¶“ĖŲg…šä:DvXą…o“Łó‚Öģt4żõO5 ¦Ó)¼¦ŪøęšĘémŽĀ?CčĶöżÕ ®)źŗā0SNZ(Ā׫&9&ģ¤Hvm°5¦/R—”¤ŲĮģØŽ|ŻÆG1Ā^‚¤Æ°ę~`:PTÓQ@ņvUM™’1u S¢m”õ$}…ńśøōĄī łPŽvŚLżŪÉ® źC3%_tķZ¦ é-¼Ż’2ųPK i5Pšœ- ž 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/he.phpUT÷Hƒ^„VmoGžī_1Ŗ ‘!-UeRh§*ɐЬh}·—[qwkŻ­q#Ȱ‰-B°(Ų|õw~÷w:ūrė=ĒNiø¼xvfž™gēfg½væ¶+•Õ•• ¬Ąće°ˆ~¶I*€ B ė$mńUŽ3²Oo”ÆtæīŻ€?RFŲ”Y‹ k-¹ü-Į%·<ß3®ņT :Qo¤l?@"ęŃ$ƔIĄÓ˜ʓ“#JP÷œŃ®Āmm®oģ<ڐ”?]’Ļ2‘²VGPŗL„hAīļ¤ÅD¾"»*w(±æwDČÓ¬.囊 £¬ó&š€%>Óśæ°™Ük¦×›‚0Ų!˜SśkŻŅŚfžŠRŃIŲ­>ÕJŅ*üzŖł$?Ļ/_Ü>TŅēü޾¬{¼“P:\WkwPĢąė|˜å5ņx¦ųp—Ņg–uķ#Ć[ɘkķ0’lńßöIQ±TæU`)ĶAO”ĘröÆ ±,ב}=£ƧÄ1¼ (f v³AåŸ,q člĮf퀯ˆĢØĒßiBIr0×xŽ?Ł+!Ž`ÅŽŪr`VŹqY†}n\OóŅuĮbZ˜ƒ”Ē{ /𨯪x¤}ٌ“l×”Z¼Ęöóx>b‹ā¢—åōY89/¤Pöša¢Yö°žgČķ“ä%xĢÓŌ†:“„ģÖŌ Ō…ŅcE©·kē‡ėql|į‘c©gYÉØMĘźööźS|JĘĀ »y湍\tYģiXWŸ\hš­z$¢‰oF¦³×ŒÄ“Q”p7č y’ė—&ÖĮɚп…ć© ¹Ģļ‰X’”¤§ĻfʾÉܘö .Š+}gqeHEµ &ÅĄ4Ū0ĖņÉŻnD™é½­¹Å4e>£zVÄ“w$\æ&ĒR ®é˶x—¦7ą…ĢćkpĒ5ČĒ\\EÆćŃ5g?a'޵ž‡ ƒżōćŅhżor{Ib+pß²ü¬BŻ9™XŁų7Öćōæ“żņ-É仚„*ĘÄ%©*sŃō$ē}ćuč^ÕęHĖėGÖ»'<"> fģ¬Ļpõ’zh“YO¾—Ÿ(I¶Ų¹#Ÿ¹‡ņ+ü{Ÿ«õ{Ä#®o"÷Ō›9Ę’…ę\É3#Ü©^5KĢ÷2üę$Źü§ūéBęÓ’Å{źpž:|§Ó©Ćrj9ŹÆ"8qm}LjœČ#§¼'6ēDf”3[­Ęź°ŽĢźµŗō'Öӕūx-Ķē*W¤g˜ _Y¦śs`>‹ŖM°ß+®oOGÓ±t$GGŃ1l„æ$šņ!Ü,% ę®Ž½SƒŸŃм[łPK i5Pp…HŻĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/he_IL.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦óŲź6;óPK i5P‹œC.’ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/hi.phpUT÷Hƒ^„VQkG~ׯ˜‡‚£žå¶PPÜ“iģBŠJ1Bœīö|GīnÅŻŖŠhI µ”„¾Ōø4SŗrKk„ 4U”$eJgwO··'Ł2ō0ÖķĢ|3ßĢĪĶīęǃpŠh¬Æ­5` „QAĄß›1 °Ą]7ėÓEŽC÷€8h+Ķox7įÓ,rSøOņ~Älöåņ“—”9Mn¦ŸŃL9 †q Œ³č dą¦>đGŅC¦Ķ—E4mĮ &.ʾŠČHįvīŻŻ¾æ·-])~,tŒÜü(gYŌ2āĆ(b!j{N‡™G0ÆČ®Ė %öΐ…4Ė;ņż]pūa”øéxŲnæÆ%ŸÓ<„=š‘ XoĮ½ÜŬså%#l˜„°ß|šcāfMųč64’^šcü/Į/Ä䅱Óńč0e–¬Ł*€µ± &ß žlKhŹĀZĄ©ą’ˆÉĮ“CćĀ—xõoŠd`DČCƒ™ ž‡¢Åėąŗ¦Ä’°ļŽk¹ž ž h!(&Üe¦vACģ’ZŒQ-ų)R1Ų¹Ģ&4‘®H¢;tqļ'~jķC!«@­}»bg—¦ž<걘<ü%č}%P-Ę­īÅäPj$ż_J?Õ]¬čWĄÜŖ%ä.chžŖR• £I/„#ŪnŖ¼•iø#™mŌńē\5ĢŁÜ°Op~„–‹”ż(LhĮŸ£;K7&9Ę­4!¦÷ʲ`4”Yf\T ō$ӕÓÓB‰whć;v’D§š³aUŲģU:y~‰¶ŚŚZ߯]’K9×Ā.>°Ø^Ō·ąJV%Äǧ×v‹bxnLR昕•jänB¶ęŽü[DwkT‰›’G¬j#‹¼Ģę‹rTi~¶Eģę+½Hće_5 ~W/ußta™_™ĮvœM·SĖ;!YäGDŻ`˜zņhƒļȱs¾.ŻDA!„Mų ŖOqä4å™ Ū7o•śĒK]l“/÷1SSą\ŽŁ•n>¼ÜĶ™š4ś«ŗXéé½+½VIM-E3;÷ĒÕ±ųȚ²õäŌ§ē“fKāžü_…¶¤śōÓgģOZō|~ ”ōH}ȅį‘~ƶ~¦ŽšbńT¶…ōrTāOTyåA¦E3Õ?\ “Ŗč„­¾§Ź©Qhöus}tĶ,E×Ŗ@/ĒK ³źąXł;×ĖŪ¹N֎IŲ±u–dē˜Ä+§LA^2p̚mŌ»õVżSVa¦ZnZ“Nՙs¢6ĆRœ+²æÕ¤'Jz”²²Æ•āøØD]'łWųŌ™×Ź_š·hףZ$ėܖP²˜,˜ßTxŲD5ńL0¦x+żĘx§.ü”’p“’€ž”“¢,g=ŒŻ£AƼ&¶ĶÕMʵ‘ŌŹUy[ŽØ°'ÅeæŻ‚6:ļŽjüPK i5P?ēŠĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/hi_IN.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦óŌź6;óPK i5PŪ@¬ņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/hif.phpUT÷Hƒ^-ÉNĆ0†ļyй*”< ŗHEØ–sä8“xT×6ć1QߞIŹÉšńæ|öę9¹TUĶz]Į¾eČ#č™ ÄÄ!l w1čŹžĶˆµjgł½‡W&ą„¹#ŲtóųtŒRŪxyś—"/ACńlLW¦Ń ˜Šƒ'‹!ke"_ŒP <ŻżN‹ļżøŻŸ>÷sŌĀ'ĪL&COY˜ŗ"ŲĆDāōFŁs,lQ‹ś¶™_8{æĆ9Ä)@ƒ)^€q\źJĘqV*ŸœéPČﯷF)ŌšSˆŚvwühŪzÕ8ŚĆ[­ßøz¬žPK i5P{9ätrš6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/hif_FJ.phpUT÷Hƒ^­TMoŪ0 ½ēWšę¶Čœ{×uM“vkŃtC³Ė0-3‘[ņō‘ ’~’„$ó¶0_Dń=>>Ź²ÆŽ·¼ Fø€/\XˆšĄÆ-j j–LP—Jś[į’rĻ ō3v·Z „g2„°®Ź°½‘~«lĪTsØ÷JwB WץT»ÕbÉ- ¬ Œ¤ń-åBé­PrmMčskA›®īéar÷<æ R?ĖŃĀ TĀX-Jg©‚°Ü#Ž»QN3ņŖĪģ(LjĒĪr„ĶeˆßĄćäījbV+)˜‰Ź‡šd«üƒ+ī›žÆnL䆙:AMÖi Ø5n MmŒüʜ6bMgš¾;” ŠbśšRy6"™ū£Ī†šm¤³8¬ÉąŻuJué§.‘Užéf³|õO6ģ(ÆqÉ%-OµŁ#J‡z넳{*õ.ž”f<ćV‹:f:ąŃIŠkŻķĒnéŒ ŃœZKMI:l>1«Rų¬Öūō”XŒū^ ćÖ%7ÉH²Ń7‘<$ ©Ꜻ¦†ū^¢U…ŪŻä/øėØ>WMŠf(—X§Ķ­«x ?8ķvdīV÷”ŹÆMz#…V©Ļ”É®ĆNž ½ž]µņi6¤E%ØIzŸ^#g?öŸ/"—Č‘ĶżGo×%SNZšND8éŃü-7 ©X֔蒥ÅāļÅcŖ°Ļ7fOąQ‹c…?]Ę) °°Ś|“ŁcHb( l½¾põ~ū³‹‡FLNAhŚźR¤KĢTn¶Ų“²Aē®·!Mā³į'±tݱłčŗjW[O]ÓVłwÅPK i5PŽibµKE6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/hne_IN.phpUT÷Hƒ^½ROkŌ@æļ§x·“ĖžĮ«ÖZm+j‘ź„H “d²š‰3“.{³…²ńX©x™U©EK”°^ģW™āĢd7ŁlA<¹‡MŽoŽūży“•GY’5Żf³Mx•1I1˜g†øƒL0¬#0j šõpĒōŚö„pžp‚(ģ`)a%°å5%“õW§­OwDqž¦²lČI/‘€h) 1F’ĘŒ÷‘$Œ¶ K12Ų!Į7·½µ¾¹órÓR92AH@D„ä$Č%Ž`@dbNŒwĮrb#9³]›ŠĪ>ĪeĀøøoßŪ°kfž!Ł‚9Å`~AŽk÷R„ķ”…(Åb­Góć=ĒĮ±Ģ9Ä9śg) ±y†9ä/qü&'ƒļolķś~ĒėbŚ1ŪõZšŗaٽ"Ÿšąįźrš¶¼īóīŽž×rūÅĆė3*“é„§Õ¹Vß“ŗŃźJßb}·Eś”ÕoWæ×źchuį ‘V×e×ińv®Ēdžø,ŽL£8-‡?h5q|Ŗ€&Zݚ±\ā²ńL«ĻŽ®B ǵĘ/n|R”õ¼¾0·$k©«°ĶųŃŖ\µ8‹)*’5Ū„ŪĘV÷3r;¹)¼ĶØĒjźc·Õė…ƒKēńėŌ _9£s—`{ĻfĄ¼¦5}[”‹†<š§“nk&kĘj~j6jŅwū„ž=£å³Ų Ņ·ā¶bĝų½Łg†9‰ī—Ž _īæXŻO·ŗ£ygŸόčžņƒĘPK i5PŌ1µ>¹ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/hr.phpUT÷Hƒ^ĶWŻnŪ6¾ĻSšb€“,e²ß‹“KÖ6 š!é€%Ų0Ųžq,Qm‰HŹiZåś»Śõ^`7Kßk‡")K¶ÓøŲ.FšłżĪ'žåŁq‘[[ū»»[d—\§\“„gŒąoŹ™“2ņŌX 4E3˜0б6|;Ś!/A^3=ęʐgc«~/P•†F2?ņ”gRÕ@I™e$’Å­ā“Ō1ÉxĄʒ"‘*Ć„Ų#EĘmsĪn꼋󗧯ÆN-TĶϤ`Č hsm—†Å䆛=Č]ĖRE Å5Ł}ū…6÷yiR©ō”•Ÿ¤NɕT,qś™ń÷ó_8Ć5ĻÉשÓt (Ć|‚¬S~š³^1•ā ķf)‘VkÅCw.Ze,j[nRŗ j[ ±).ńNøS-DhÉĶd„Ÿšc× ėN±55KĮt4h%/gŅź9ä`k„čNƒf³RÄME§²®Ś†QA°™ĢųL†ØĶ0ōryZ= 7U'ŅåŠO94: ÖcĶqX,“ˆżė9@žé²›ó4Óž˜½XŚŅRŁ÷MęĻ`Qęc¦ŗ˜õ4.Śū÷ųÄźķ‘Ž÷`Ė­,?üUNgµ÷ōÜGč9{1ćE0Ŗ įÕ%ēņm-«r*| 6²€ŲŚ2fBNjæ^sAoŲ”6ŅߐIĮ:,ń%Ųb K˜–>²ō"² F$ĻŅ“Ń&¹ąČ !ZaˆļU³ G/HQO‰z>Ō“”ž õDØgįżšzŌW§Ė•›°7…ėģžöI_ž ·żžoƒž`8Ü «ŽłÜųĒÕÅ»/÷¾¾«²śggæż Äż–@8ėŠŅknNK#•“üéfE\ f®Œ³Ģ īĢjŲ†«½ 6(”ƒ5åZAlź«Pļ§ßµĆ"SJ=(]… oB čą˜ƒņ@ʁ4 Wڌd$“QóŒ’bńŲ¶vd½Vkž QvaśņŽ„[`ųtėPK i5PoĻRŠ3ō5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/hr_BA.phpUT÷Hƒ^„SMoŪ0 ½ēWšę6ČģšuŻGÓ”šÖ^†¢0›‰•8’Gɲ’Šæ“S÷æFĖt7Ųiŗˆ"ŸŸģ‹Oe^ćįpCx̵ƒ….x/y° š9Ā•¢¹5œJ×j‰1cųYz_I+÷čęŚ{ø˜7ĒφÖĒ©Ż\ ō›„@“؊R[īH/sŹdPčć–fai£¼¶feŠsµĘmøww{u}’pŻP}>W¶ŹA¦'=Æē kw¶¢¹Qϛ ›»_*Ÿ[r“&~SEk;Å [”ÆČ€"R»„°,Tм§9]ćįĻJB’Loæ'IsŠŁæhOąmיڹ>^ĀSd0[a±R ˆJŪÖͱņ–ŚČ‘^a0Æ/čkņm¾D \ÅfŖčyŌļ‘8Å:I!ęŽU…ī”k£Ķ’1m¬ńy7·ć‰^_L;xŻĢĢ7›Ųžł]­Ö!ķIՂpµžKXč²KR­makū+ÄT­Œ·„j}s¾ŹŠŲek4Y§MŖŽHėŁÅ;i,Ń$zD‹"@ŚKciyŅĶó·­ ~ōž'ʬŽįgOģ"i¾€ š}W ?”¼dH…ōŻcČD77“Ķ&Ž*ēzŶ4aĆn÷jGÅŁ ~šzSļ§öĄŒ×ž gžĻ? žPK i5PB½6«Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/hr_HR.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦óÜź6;óPK i5PīB` ńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/hsb.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ [‘&”ų8Wnź6Ö²$8ÕŽž“棳ü’Żs“±Ŗšķ¶‚-|YN0²#(gDQ#Ø%Ų£ōĮ—•9ćDuŃ.ņ;sÆĀčįD©gUŲõĖųāĖ“6įņō/} ²Ł90!^…'«€~dž|*•~ rAåą :²ūešWßūqߞ>Ū%jåS‹ 3&8©pŸ•˜Ym¹)ģ)d1TІ¶Y^øxæżŁ‡ŁĆ@#f§ 4­u9Ń %*-ö¤lйė-@H³ųbųÉ,]w8~t]½ilź»C[—oܔ‘Å(ø„‹iF c„ŚVĘ$b¤1¶mģ9qŒ#꘦œLˆmź¾w÷Ø#³¾Łsz•ŹŹņr–į™ćF`»üķ!js<2Ā. Šd¾0öI¹‚¾dÖąĒŠ5xB¢®Ė¬wÅķ÷ŽRÖ0©’PR¢aģČī{˜“wŗū#°ĄsMD2°ičĢ„Az1Šö›Kń¼ķŸm=yŗ%\Åł1Ē`00"°Üˆ…n·Ļˆ—9ˆ`īķ‡&Į@VœģŠP(꞊g £¦ßß1|°˜ÖhWÆź1Ā*l<„jÓ¤ż€ŸņćŁ?«Ö‚±—Q6\Ą=Č{āSeöiĄ=Č1’‹Ÿń›,HŽ£Ąį²ÆEAPB^ča®>ĮĻi(#ečp! ÅŗRfĖŠ¤ĀģŻģ( ‘¢Ā<,”XłÉyĄĮ§©+ų”hģe„–ņ“bóOiįÜWžųŸšk>Ź=ˆI”ĆläjJR1i`éJn1ĆKōpĮ/q4Ī"ęÉāIĆģ­ ą 8gų_‘¦ūVŅ0ūT‚Ģõ‰XS’āēŪ!õ÷:ČqųŁģu:Ūf$Ōęę#\żEč|„ɗ"X®mgpžj=ÖŠa˜tõš eb£> ĆŌ(ğüc*#ī+I’<6o?Kč7}_r%š4‡4£HØÕjģģ4~ĮK ;x€Ÿ6tJ9§óy¤\ Æ:|qFGŠ5 –ģM9µ‘į“–*b[¬~#^²`rAņ’åx²”e¬ēiĻéA[xćåK7?Å3¢¼cłĖX™c‘ēxöæ’čĄ7E2·¼H.ŗķBqhh¹įÅ ŻL±ŁĄŅ ļwIX‡;=ŗŌŖĮ«Ōa„›Šé g—)v)\ ­j³Ä>(µ>/µ¢ZÄ%÷%™bCå ° ›P½‹ÆĢø Maa>Tkkš‹ŲFßc_sœM:ŒG‡Ŗ—”jĖ%~±b¢ćękįŚŅėpæX$ŖŹßc®Wń“ĒeU-Ę,śY½·ŠQŅEn±ļNæĶՃE®pqɕ8ēØRä¦Ģ‰l°kz­Äf-»Œhe“Łģ×·ź0€±~ķ1QÆl¢Żįx*ļŽłµ@ųy†b,Üęå½ņZ“œg–Ł;¬óļ¦ńwĀŗĮČ×h”Ē“XG:õĢŪDZƢõC¬^gw4õ{Ć3įр”b¾ ł"č%Š P”_?/½\x¹ģ2Ńå’ē恒eZQ§Ō8UŚteRÕeŖ`œŽĪs*Tö×rīg‘…Ģ3‘¹ [!Ÿģ“—½¤ż­,µŚ“ÕŁ\Śm·Żmļv:Ė»įnTūNl$›ĆķW÷ź÷‡^üS[ɟqæM—ņnśG˜ż…\£ųŒ!*Ÿœ OsöStėßČ,³‹½~ŒJu+zE¶IF9)‹ Nr’³’g‘~Ä?@Wo Åm7Œ˜8/ļQ;;™ÆÖ+µŹPK i5Pa®zƒ]ų5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/hy_AM.phpUT÷Hƒ^5Q=OĆ0Żó+nK[•T¬„ś)”“B‘“\źS;œFłAˆ66ų ż?8išr~ļŽŻ»³'w…,Ģ™„‚-šˆ¬…IŌĄ{å ¶A¬ói']kn„e–A¬‹šé -•@F1*ć,UŖ9–“B‘”p܉°jė7‹Õv·jZµóY),TĀ@BĘ2E„Å*²ŅeÜģF—£3JŚaG͆Mķ¬“R³7÷+xŠFĀN3¦¼f”~޵«Ÿ_ˆ=å°&#/h‡,Ż®³BŌÉļ§źz,ac„{Óś0Ś’fQ‡ŒE&bt1.ŁŠ {ŒÆ%1B.7Oaų#Yīü!<{ąŽŸ²ĪC„+n§ą-åēóŪłūüå; ±±aātVˆĒV|Że;ž"j² ŖQšæź„ćżPK i5P śj 4 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/i18n.phpUT÷Hƒ^µPMO1½ļƘ[…šķwD4‚&$ĄA½Cš²;Ė6,ķ:ķJų÷v‡õ@ p¤ÉŒbÖfŻŅ:E’ĘiцĄ(é$1–H?ź]ž÷EJ¢ä ˜¼÷ī½ć‰&}ögS6³ŁéŃŃ Žą[É5ä¼B ļ†)2S"|`*‘‚Bé†xB\G?Hį½āLĄ-ź„g‰›ž%h*ĶI*ėwśQŖV(·U©lvŠ„&2ØxŠB“„Č„Ŗ™įRCS!£ŲwŽŪ6ļęźĆÅķŻ…“jė3%3°e2®ā‰5˜Į–›’Ŗ]K«R$£¬-öŌ­Šåž[SJ„ßøń+ø–ŗ„;©0÷ó̆ų®4£µj?æe9G 7”œsśŹvµ™ÕpMĆÅkZ ƒ}lƒ$µccÕėÅk?gƶ¼łµ-I”±JĄż č™ļ©9üńęoRi…ĆJ+ęĒežcń¤±E’[/ŽÆD~’\Ę.3eÆ„0åČ(±‹Œ"BėŌ§QJ«%Uß"nFF5Ea§Šyxā4ĪŁĘzuQtńŒ– %S|šéŃÖĘa“˜žÅB„źĀ%mؑÅ#«‡m-›8DģQóū&rA[xÜ.ÜDļ%bų~9|Ś®8‡2Fż=¢1•b“RČŠšĶą3Č-Įk˜§MLG©:V͆ś Ćk„T¬źßl®dż ä6&eōZ@ć†)b÷B¹A³č·€+Ŏu”é Į1'ĮŹÖ'ćy>ųMMZt‡š¬śĶ³Įšź#Š‘µTŖSIP˾ž,óŻš?ń6|óĶs//OźnKą.BN“Z.OW«Óč +z`ŽĒį¾±[­a挞žŃs ?KZ‡å¦¬B:’Ōt½šÕøģZxéŽ(‚u#ņųÆøļ]7_&žŻ®Š¾¶1±b:RüäßąóšŽ:Õtōy¶[ÖE„Ć&»™4£FÅ3Žž`Ģ­HŻæøcā~ō2<A8ƒÅ"FÜī‡yĆ >ŪCOϧ’öRŗęnc’4’÷óŻo)NŸM5«čxó”§ųš »~Ķ„mX˜ÄDuć#78oÆŚ¶Ąµį»jæĻ «Õnx‡Įš#7ł¼12 oå÷>¼DķĒėQ1š®~3”Ź •„:ĘU„"| &ųēą {/w©Ń™Ń-}ī/—)øšŚkĢ¾²¤…>±škļEgFĖa‰±{š£¬:µN4(Į Äö„ŗĖ„Š–äe¼Šń^bPȹŅĘŻ©2®šÅp»ø'9ŌĶś’.«¢?mĮÄéCg=m$²XæżPK i5P­‘™Ź 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/id_ID.phpUT÷Hƒ^-PANÄ0 ¼ē¾-TØ}+@,‹“ŚpÆŅÄŻXd“ą8Tü·ādĶx<3ņž±„bĢŠu:ų Ta¦ˆ ³XČ3H@8XžrRŹ}Ł öŖ]å7īž™l‚3։D`?­š))ĢŅ»|}ų—¾fތę#ø\~™.AĄ&‘¦Ŗ‘iĪ|µB9ŻA‰h•ū!\¶»·Óįxž8®V[? V`±Ī•›ŗµ, ŽCµ·'ķ8Evžæd÷m¬Ŗf»­` _–ŒģŹQĀj ö(}šeeN8Q]“‹üĘܳ0zh)õ¬ »~Ÿ|ƒÖ&œž„ÆAÖ 1;&ċšdŠąŲO„ŅAĪØüDGXvæLóź{?īķēa‰ZłŌ¢ĀŒ N*Üg„fV[n { Y •¢a…m–.Žoņaö0ЈŁ)Mk]NtÅcI…ŹE‹=)tīr Ņ,¾~2 A×½?ŗ®Ž4W£mµd 5,øĘ¦‚ Éf­6bŽ{æµB#ć|rž™óQ2F9¢-&ģė€Ń/ s˜„½?Ž!¾ōd2_]oo“Ż“ŌJŚ2Ö$(WĖ_čÕņ;ń&g˜ź­Ą@VFŚh¬|љ‹¶•ĮVSVĖ÷«åOśėĪ7ŲX¬SˆŲĢŖą_«ł:<Ę»Ūśø”żŁG•Q\”Õlk‰RžČˆ 6ĶcēŲuÓ±Cœå°XļÄP„Ģ=kżčŚö!8ŹčY7fp ķ6| —k&ßeÓ#vˆüņHYŸÖBžŗBhc9rUpĒķ9ßF4ĘC’CŻi ×Y!mI Pģ0S­“ńę%‹>xOŁ“«Š?æe;Õu?¼æöq‡ķNu×ļ)Ū¬*`ō„RZø9;ł«Ą_į i%}zāꞍ_öĄ{ŹāF…¤\€Évwćń¾żžByH1˜)7`pę_׋yž2ÅŻž»Į_PK i5P’›W”hr2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ii.phpUT÷Hƒ^­TĮNŪ@½ē+ęf@!¹SJ«•‡Ā„Bhµ±'x…½›ī®‰rk›4! 4 ˆCæAŪcæÉ_эc;ŕ+u/ž™÷fŽģģz7_µŻv„R_[«Ą¹LA‹yęŪ¦Rƒhv¶©l nBö=ŚįĪé+ö*¼‘Œr8@ÕdZĆfsī¾ęĘŗf kA}+dTØxآݕģŌÕ@¹³‘+#É[BśT3Į«ŠöšŲ9ĆN”·æ·½{pø;/õ§]Ŗ”C8LiɚF:L»1½+H5[ÆHԁä@„¤]"±ķQĶפbēø"ńCĄ$!;{ļ©Yuä53« Ē0ĖņQ2‡”oĮĖ-8¶ĀÆæĀžĢĄVųéG8¹¶NŖ1ƃxꊮJx³Ēp0 gWÕXćĻį$ėäĖ›Œ3¼Ķ8£‡ŒÓ»ūCŽ(WHMR¹T+JUR‰ēźūŒ’’ź¾ąŚGÅĶÅČEó;š\…ƒūØĀģÉŗ¼I¬įmb«w—XÓŽ:H¬‹'ŽųgĘßgœŁdī$½Ę—sq®Q( ļEĖŻš} V5‹¦Š†RKhŒ½7k½ŃXwœ˜A”ŃhĄN]‚ Ļč?Ē«‚cVžmvo±‹Tʶø†šzd†Qƃ‡¦‰£MäŅLJŹΜž>?”XPR”—Žä<8ķ¶Ü)ͤ¤lį˜o~¦%ņ·ĀŚNi&%%ėĘt×<yv’{x1JF鞣¤8yqBŒ›×8ĻųŲĒ…Ż'oKI:%’$')“_čšK”†*ͤ¤|é“Õ•ßPK i5P7ș¶ńN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ik.phpUT÷Hƒ^-Én„0 †ļ<…oÓ¢  £nt*T͔˙`ˆE&”ŽS4oߥōŁł—/Ł?Īv.Šŗ, (įĖr„A>g…0€Z‚„ >ÆĢ„#UY»ŹoĢ-¼£‡ŎUaß­ć“ĻcŠŹ„óĆæō-Č4$ēĄ„ł"؃ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ik_CA.phpUT÷Hƒ^„TMnŚ@ŽsŠŁ9‰(V·iš&MR )DMaUŃča†ų {ʞŪ܄#°j÷ƒō&&VC$«É~?ßĻ{šńŁ—"-:ųä¤CNČ(EE¦˜1bŸHMĔ蔑+cĮm*™ĮėŁ^×~”“Ɓ“;¦ĘØ59»š‚ŪPč^"ņóŠśMHO45YFQ,%>„šŸ ʕ•äS!sŠ(x—››#[xÜm’źęnx㨼?‚& Pd‚JKĶ&d:µė] #f…&Žlģ&tŲK£S!Õ©{’`Ēgā"·&$ĪĮŁõ½’i#9)aI%+2H˜}&F*œ³#ÉJƒ’JÆū?(ķE1ć=»ÅØK~vˆżEÕ*"ŸĻCʧo}"ŗ¾Žƒųį!źśŅcõˆrĮu0ŃKܬ7k¤„å~•SŅy£Uä7+a-y¹r˟.Į§Pžč;Š QVKIRØn“Č KØbDŠ”+ƒ&Uŗ¤V€:$•äekĮ7;‹ó·g>9ŖĘ?[PK6Ō&ŒÕbU[ĪČFŲ5軁Z§ ±Ęى‹Šķ}]Ū“™ŗłym ?y§©śņ7ąĘ7^pIu äW®QĮ •#J!1@Ą„( )¼ņ—97ÓcµbšSĒc…•”$F1Å/¾·ŽņöÅ~=£kĮ\ŹŠ4/Łcä(m%ūMHšŪZ+2ß!8’NuB~:%É4…Z¹Ō*øėę"9ō@ŗģ µzvó$²”-Ȓ~×Ķ{f{X“ū®|Ū†óĻ į֊’*z7šĪnS­čvlĘŽ[ £Ćōät— fÕ <¢1ģÆ!ِ3‚ņP`W0 £÷ {‘vĄZ]'£†e+bž…³4,‚EŸ›U欽 ®®_ćjLSjx Š2īDp7Xö,÷·P™ÖJ“˜G¶˜1}“Ns:l¼„h«Č4”K¾²Z„īz"{»¶Ožj@n„ĆøWiž/ńK‹½dņĒüłŃ‹Åńw»“䐄-ÆHb5MȔ$˜żćg^ń줔ŗożÉ,×}TŠś“♫cO[ilÜŲF"Ė¢ĖI„µąZeøįMÄÖ\‹ŽB Z·, š` Ž‹1¼ĘRX d‹° i‹¶‚!u…Ū€-…BššJƒK;²!ŌX¼cńŒµ=ČØ$Óf9ÄqÅzØ1Čz|ƒĢcU“‹+’~Z–Ÿzš©1„WĶf“ĖĖÉļ8ŹVK.qmõ¶žl›0†ƒ<†]„čR*1üpė÷Ā3“ä³¶tóy.•’/ĘŻ³¦ųŸ¶ƒĶš‚= ü-޲kó‡p’šį9čA:‹tŻį»öƑšwīŚ"£ųµßuķJ7 > ŅO¬Sb£~ĢēēFźžϧ[r7ĀOę?)¾!肌<ŁŚČxFkiæÅž¾ĮxW÷‡ĆžIśśbTyŠLØöMU]®øžļßĮē;4}’s„ØĄ[O_­t˜—Tß6Š÷ˆä^„ŅČrQēŖ™É:—^†w©±ĶĢ}Qy¹ŅĶ&°ĀTĮ:оžšłbąÓŅą;ĶvžƂCĮąKp$x\öƒå`5Œ¶Ü‹;¢Ķ^E\‰”z&ÅŁ—‚A熲]aÖķ|Ķރ~nčŠb ĘfA”±`§ŅŽ@Ų¶©Śo©#ņ<žĘ³xĻį)"C&“q÷åͲīIō}÷²qrrZ·ŠĘJā£;XGrüNœÅÉĪ’PK i5Pƒ4Ÿ†5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/it_CH.phpUT÷Hƒ^-PMoĀ0 ½÷WųV@]¹oŒ}“MŪ.hB•›ŗ4ZI2Ēńļ—fųāųłłł9³'×¹,›N&Lą«ÓZŻÄģl Ņ,kk"¤~šHeäō‘Ć+k4°#_k˜ÕCłlbi„Tö4æQß,'”6ō=(뮬šz­ČųøŅ“–O(ښ\O±³¦KšŪ¬«ŻējJž¤C zh“Öujࢄ‹čŻŪĄŠā¢&™³/A:Ėž~xßĮ;[‡G4Q}¢1I`Ȍ׊ÉõØ(fŲė3˜~ƒf‚ŖZ®?ŖŖĢ§ZŹųyßÄČ’Oš9<ĪoP‚7 ȗĖr»-÷1ņ"5Ev?dPK i5PHā§ÓķD5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/it_IT.phpUT÷Hƒ^-PMOĆ0 ½÷Wų6Øh{‡ 6ʐ&” īU’ŗ‰E–Ē”āߓVųāÆ÷ģgoŸ&7UUW×Ōšé(ĮH”ųI±@AĀA±Ž””Ģ—²Ųģæ1·šĢ¤œ1i­^Ņ](i”ÖÄėć?ō5ņ:hĢŽƒ‰Ó/“u* ąÉ`Hee#_•P w0yT„öC8Ƽ·Óįxž8.£V}ā”Ą¬ ”„IgĮfW:E{Š™ –EĆ*¶[.\øū,.rŗ_ā.ūw(¦³m¬'mņ˜v6ä6²]™Œ’9ćw&Fčū—Ó„ļŪMGŅ–ßmŖ?PK i5P† "zĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/it_SM.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦#iõ›łPK i5P† "zĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/it_VA.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦#iõ›łPK i5Pś'JńN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/iu.phpUT÷Hƒ^-InĆ0 E÷>wiƒĀ>@ƒNn (²č°6h™¶ˆ(’JQ5rūŹNW©?ų²2'œØ.ŚE~cnįE=)õ¬ »~Ÿ|ƒÖ&œž„oAÖ 1;&ċšdŠąŲO„ŅAĪØüDGXvæLóź{?“ūćē~‰ZłŌ¢ĀŒ N*Üg„fV[n { Y •¢a…m–.Žoņaö0ЈŁ)Mk]NtÅcI…ŹE‹=)tīr Ņ,¾~2 A×½>ŗ®Ž4œ»ö¹.æø¹ÆžPK i5P,Å Hę¦5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/iu_CA.phpUT÷Hƒ^„TKOQŽ÷WÜŻ©mÜ"" ˜1ź†29Ž27WļÜ”v+6MČ“Ó)bāĀ ÄĒ^Ėż'ž;OF„a‚ }šI›ł‚³V h›ō™0±‚Ś}7ąÅAķDlSmØzĀt¹æØ¾ļ'в\ņ 8ˆ—°øĘ+6Šāl”ü¤—Sp‡ē0Š9õ,0(¾FĄ}¶Oē8ķŒS¢ėkOu½”5©Ó@Wµ:yQ#ų§„{ł¹æœ„’ōf’ж¶škkĶ­ž”vÓG³]G˜Y&'_dōZ†oe#Æ&ćXĘĒāń©œ etžၠČč8ƄÉ×äTFƊÆyIĘļņÖč\ŽŽd|’WFŸå(ĢcT ę¦ĀTqU³ī£Ē¢¢¼Ō\Ŗ-„ĪÖYŠ,–ņJa„ŖBOŸŅn…‹Ńa²Š‘œŽääLĘ”Ņ4N§Foäų“‡rņSÕĀįæ³høœåč,Ÿ~“ÓHFß³ŹCPV‹%Ć0žZĄ‚[ĖųPFhN™óķā9šfĀž\¤jmt˜iLŸ8ӓĪĘe“SŁĢł/"$ŃŻŽŽaÜŗbUрOXļÖk)¬Čh‹†8‚$ž$VŖ3ЕЯ"ŗš¬Ąz6žūåDö¬"č³śK+<Ą³åčŽC9älżėĮ@æeįz‰÷ŌķåLķĖK _֙ÖM¼˜•2몃Wō›³Š ĻhĻlgŽč D0Įz=¼¾( i6‰E}Ÿpj1¼Ä“h¼Eč·˜öśŌpŖ•6p+č^:Ķæ ō ŲæWū PK i5P„ÕĆģ2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/iw.phpUT÷Hƒ^•U]OŪ0}ļÆš[Uå½cl0 ‰ņ0x™²ÜÄ%Ż9U’EKAP©ŪJµ±vÆŁńߣmā|˜ŅH‹ŌĘ÷žsĻ=¹vڽw=æW«ķīģŌŠ:÷Yˆ:¬KÜ{D*$:HłŁRī5¹¢ ą®č[ī6ś į蔆m¦ŚkÆĀ÷B”®ö õ£‰P'źv‘+zÉ®|…÷P—¹”‡Š’w„ ˆb‚×QÆK änķ'u'ĒG§gG+©ÄŸņ‰B}"…J²v¤Ø‡śLł€€÷PDŅ„ŠČKĢīÖ$U‘äˆHIXŅ^—øīn$CvC·$ż1IĘ‡ĒŸ1n8»”7`2N]Ō\N øņC½ŻGŽžč™¾×C½‚£ź‘^”āļżJVCĄĄžšüPO’ÕŲ³ŅzjÖCXßĀēI?&ńŌ?BŻČ(ƚߐ¹Ļ3³d]0ĘśŁD—õ²sśB*Ū\ræź<ž/ßqÉs\ņ—œĘ%—qī±OéµG„łŽėo õ–?ņ†\Z’Ų€o+¹€^=·“Št¹|-5ŅÖ̽aBš'2įČoķpl‡wv˜mȆīćYļ¬iÖķ6kzĻ„ ÅbŌ•Ģc4Č“¦°]3Øų«ŸĶ–=˜(«H_K³7I*IŸœ'ēS3œz9VĶ0“°9l“_ą²  ƒ!¶Z-“ŽŪ„”Öŗē<®:ŚČ†§Ko@‰L+š®ˆøJOŲ”9ƒ ŒąĶÅ„—Ļ&<Ą¶Œõ2Ó*Q‚+Š#ņŅÄ8óL„_‰\%rąŚ„äĢf ^FšĘŚ”ąĆoõĖęóbĘ~Fšęb3]ĘįÆĮfŒį')—ČŽŖ×Q‚«RNH]Į½õC0)dĀJ”ąj Ćŗ)Į¼±ŌT, ™HGŠsavvo¾:$9ērūMķPK i5P±_–;ę2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ja.phpUT÷Hƒ^ÕV]kÜF}ß_1Ć:Į޳ż®»M²qēŁ“øĘŒ„‘%¼Ņ,£Q·njp*\{KRh«¶ ¶éSˆA%i!/ķ?qģŃŃĢ鏎„PJ”z™¹÷ܹwĪ™/æėw‰Ó§ä4¹ī1ń‚#ŖķR! ÷ˆō¹DÅ2”ĖY„+쌊-ĀGSä¢hD®±x9’œ_.Ģ"eryĘįį4„^ęB'ņ’N‡8¼»&‚_¹¤8,ŠUÉČć"¤2ąŃévU¾ĻÖÓć®Ī^š¹6?S¤Ņó“>•¤Gcā±Įr"™Kzō¢ęóD8Lrõd' †ÅŲ ‰ō¹ˆ'‹ž8¹NW“5JęiŗŌø.Č8‰ż@A]ßeA£?p•ö¢q|Hc%ĘGT~1~Qš^d¼óLųJŠ ]ŗęžłœ'ģ `X›ĢĘTI[ņ5RSÉUI㣒®+jBzւÉDDd”AŌ×\cT4ÉŌ4iN:<‰äį³'Ķ1€†ųCIcéÆG»Ū%<ź1¶ŠŃW_żōC‰‡\Z›ĢŃĻ÷KdˆßW‹Uƒī}…ņłĆ”0ˆŌŗ×ØoĄ!HĢÕ&óņĮ÷¤K¾ŁZ?śń‘‚æ\lĶFŽĀ‰ųxXžˆ BvŲæcOšp)ā=Œ>æ]ó$ƒ”e¦ĪœŌ <ÆJśā÷ojĄ‹UÖraŽīīćU)"$¹vüŃŻoQ€9•†§Ł‰Ś}õŗ ¾re2 !€y„LĘq 4Š'ź›˜››h·k BÕ&žSŪ±]MBǐ“ÓźŖÆæLŚa‘ ‡ QiČŚV½„®Ź²H”Ø\Ä>—UŒQpPĢ {®¼$rŠ»ŽŒ~jnWhf#µVU·×ˆ“Į"9F†Fpu7ŠSäfY£ųŒd|ŗ8Ę䵩©2™qR|pŁØÉļŻWGzQˤœ«E®7ƒ ^GÄ;4®‰³?@œ"ę Īįęöæ,N±»f:1œģ«Ēö$nŃĪ1UF¢$\fbŒŒt™ø‹§«gŠńUĢIØųœā]Uwńäo{°·}܏ČĮLĪ4‹ƒZWĆeM:ņļ†"UH›fئļ̼Q ĶĆ;ŪśĀ#ŗ§®E«~ćązj¶ōFšÆCū“oBū“oCū“ļBū“­³¶c3¶tŹzŃ„XżMČ’øt±EÕ]n+Żvvõ5©nīŻķŹxy+GČ£'8læ2^m}W‡»æ€q¼\kU A Hi!įÉTömž§‰:ź§Ļ—ƒ[åÓŁ‘KfGYi6¶Š‘/žnčę·ŪĘźėt;;ʙikó”ĮRcéi¼x¶g¶Ū-h QŃ3¹“Æ=ČØŃĢśL^—–¾ÜśL• j˜^5ßŖ’Eś•Q2ø]•ŲĄ˜#9B üÓ¾-Æ{¶¼1JŃPymŲņ–!ĊŁGåÉņīģX…uϊl А~eXµ!,ChcRŒä±āg„ų?ĆāgXü ‹Ÿań3,~†ÅϰųbæłŠ²×=ĖŽĄ~eXö–!ŲƘ#9BģŚ§åŚ§xķS¼ö)^ūÆ}Š×>ÅkŸāµOńڧ˜}^²Ļ1ū³Ļ1ū³Ļ1ū³Ļ1ū³Ļūg{–½īYöĘö€ō+ò‡° !ĄʤÉ¢Ź/ž¼µ–ŗš^żz¶ĪŖĻüÓ?ŻBK-ė>¼“ÖŻŚūņŽóź7bń\ć/PK i5P £ōwĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ja_JP.phpUT÷Hƒ^-PĖNÄ0 ¼ē+|Ū„Bķ°Ä>¤•Š€{å¦īʐM‚ćPń÷¤'kĘ晑wOÉ%cŗ¦1ŠĄ‡ć {‚:ŠBœ@Įeˆ”Rö ÆŌVķ"ߌ;xĘŹ«ĀnXąsØ0jkćķń_zвMÅ{°1ż _†<[ ¹F†)Ź •cø‡ä +÷Ć4ÆwÆēżńņ~\¬Ö~źPaĘ #gŠŅ3««›Ś=Ē"–jŠø–ķŒ ō]Xśžp~ėūvÓ}b[?°y0PK i5PĄ×Yą(3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/jgo.phpUT÷Hƒ^-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5źņ™Õ¾Ģ÷ęĮüPK i5P„HžĻķB3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/jmc.phpUT÷Hƒ^„RĮnŪ0 ½ū+xs vķŗn]Ó¢ź XzŠĀm:ÖbIžD%šß‘å,A°ÓtłŽ3õąŪĻ]Ó%É|2I`ƍtPˁļNXS5ĀF3TnÅg¬=ČÆŹkųj„аBWH"ø-ķĶ­”YiŌ]”>Õ¾m”4]oå¦!ŗ‚V–Ø[źŚX%H=…®EĮŲNā>|÷²|x\­£Ā~Ō‚½pPIGVž°‚½¤†ŽŻoKd£*,;O,’·„µ¢Ļ-v­(‘ļŅ['wxeń·—!ĻĖy>KēØgœL:…·ų¤ ­¬$Ŗ>ŻĮ[źÉo ³é¶—\é^¦ļÓA¹GÜV¢wQłĶ+Ńɖ¬>4$Čū±Ń’ā:Ą÷m#”tAæüńŹøK›Ü5ĘŅhÖ 6DįŅzčtœGP™ĖQJź’¤Œ¦ęųp~°aĢv¬3Q6”øļģK†1=ĘŌöbm¼£P­±#TEćū–ĢP­ĢnčBy¾Ģyo@łÓŽ„w_ iŸ>7}·1p;Šk½ ”åņdµ:ł‡Ö^°ĀІćp׌ŹÖk8”1Ą3Zsų]Ņ:¶›²EguŌÆf .ū‰¹[śĮ€Ö ^Iˆt“%#š]Āj‹ā޽…g±ß‡ v‚ūĄšéégV3ś€EĮŸ¦uč)ķ0O§ø6/j'öz²9 *žql|4·"u¼|ᾌWšk įytĀ,ćˆ[ń`HhGH{ņf>>Mšēsš?°’CšśY?ó{³)††”¶ņ8>žā'‘\1a™āÉ’øU½½bÄąŒóVńŚ{Š®hhĀķ’Ļ «ÕμÅÖ`³uŸ($_*#£y#ŪĮ½Dģõž˜¦CŚģ$E9QIŌ±Æ"Šśś±r¬ µÜ1Kēfßś*Ø.S F-µtÖWÜśŠgløgæĀĘv¬ģµ¬{=w$Ž“‘3RFĀ^õ¼=QįA&°’Ą(v 9WŚlˆc#óĶp­,v—†ó‹ŗ§įnėQ5]°±:‘ÓčŖWbżföPK i5P@5µˆŽ2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ka.phpUT÷Hƒ^ķYėNGžĻSŒ"’µ©±EżAø4 ICkØŌ U•ŁXc{ÆŲ‹5»!1æünCš Ššņ#ā%ś$~“ĪĢĪīĢģŽ’J½ØY!ģsĪw.ū¹¬—V{ŻŽŌTmff Ģ€­®Ėv Ÿ=ˆCą[ ģ"pā–ļ‘”ö.ÜAU¢KÕKķ2ø‡mčM“ģ0K-zū•Gnż°ŚöŻ®śŠĒ Čź;hū½}lļtC½pģ6ņāҳ|ģĀŠö½ č9’±§6Ścvõõū6? P,¾° C°бƒŪ­~ˆ:`Ļ»DBbü>n#āØĆ‚­Ń ©ķŻ~Ųõq°HæĻ‚-{ö.ßĆē.ģ I½l|kļĀ5%ø ßŪq”Wfybö±S€\Ę>‚ŲĖ+ĄXlū}/ćį‡ńšp<<#£Ā•®Ō€Mōbž@V˜ó•uĻjX»¾v3>^‡ÆˆbŖR,†M ƒĄrŽ3†{ķf ß0h<<G©Žu”`SĄ± ­\(ZŒĢVūåxų^ŠøS,†Ķ…ĄÅ9ē³.i‡ š‰Šż½–Uö1i•`SĄ± ­\(Z ×öHĒę‰wžS»R‡CKčy>!š¼}€Ś¾—-ūń[YķJ Ų””X §‰ŅKÖnjäöPŠ™ÅŽń¬Õ÷Śt‚„éŠvQ¼`rzMcŌs`¹Č °Ģ§€äŖÕķaeĢPŗ•EĶFŽX˜gÜ·„Ąŗ0 ‘“·Š^cOū'k®¶ ‘õP¤ ²H ē9F|«·¦Κ«<å Ź ¾&Œ|šŗž«HbD SG“AĄšƼ#ˆ@™A@ÖÅĒ<©ˆ1ÜoZŽŻ+)D)—Æ0TµļL„Ś|„¹[±ČHLĒ7b¼N\ ūnÓó÷ž>ö&ŽKEhp!Iü$2Ž&”]—‡“®ß[!>‰Õ¢łXVėa>šÕ˜ŒÕLMe2“B„?OĀ2ŌēIųß6 _0*„ŽŸ3³q ‘#ś8śLā̆Äēģ±ņ›‰ŽmYéfĀ`*—Œdā|E5öQ@¦źō DŚ€a^ÄE5ō]cxÉčBpµųD¼ū`Ō·b“G]WŖ<–$‹A cŃŚZmc£ö#¹a"äyq^ņīSµ¹*`’²ÉÓkCy~ø—ņ  ‹Ö’ 6¤ŻĖ™Yõ­Ęģxų ¹7eßzŹ6¢˜Å6?$Ēj1'mĒ/œųĒŗGž§EئŪ}Œ *`¢†v–§3‰b„Ä~vÅ“©ėRb² ,²Š³óØ Œr•—TĪDPž@JʁR…“kAĶŅZP;¾„&54Aā›ŹvōY=p~®gž°;¶ģ¤ļõŻ–Z'ŪJ‡Įņņ2˜›PD®#„>b¾¢jĢņ%cXжH<ƒĄ_"šssąÖ-1t“(ńŠUŻ›L5‘hC2āƒł¬QÕä—ŪJńź$Ŗ6>_ģŽŲ3Œ[į”M¶|y#Ģś‰ż?M;%æMŌM‡Čż»d!KWV”±E†E ńX;z”1†¾JF…Ć3Üol(n‡4\®q’ˆO“āc&Š›ĘõF#6•J6śÖ“¾åDEŠ‹å‹鋚Æh¤­h¤­h4©¢'WV4*®hTPŃØø¢Q®¢]‡Łb*TŹ„J©R„ J”Ü•4•¤”,²1c“ƒžõā)®VZkųkęji»Ńx²ŻŲ6Ķ™ms°”æ ‹Żź žb”rū`ą°rM~Lv¢73'{ĮéS6[X ć-›čˆō ŖŸ°›ĖIāK铬æKŲ9bŽāł*ēŒĢL^ŗNɼ…ž˜_Tœ_Tœ_Tœ_Tœ_¤Ķ/Ņä§šölĢ“R²PbV"TāQ¼ē&ļ —ĀŸp&< 7‡pGWhż¤ŌxŅ1«3ƒź żRžN©kŁ8é»’¦o‰Ÿ!ęÅÆ t#@Ģ"„ęĄrįR¹©ŪXĶ$ÅqØęķI;œ";’ņ%ŪēÉNEQ—e%|ZŽŠ³#Čē„¢zPK°CiƒĻ+3ā@UÖ.ņ;sÆĀčįL±eUŲ¶Ėųāó“2įņō/=Yƒśä˜0]…«€¾dž|Ģ•¾rAåą`r„y÷Ė4ƾ·Óīpž8,Q+ŸZT˜1BĒQ…Ū¤ŌĮĢjóMf!‰”\Ō­°õņĀÅūåGfõ˜œ‚аքH7<–˜©Üd±%eƒĪ]oBšÄgĆOb!hšżé½iŖM=bŪģæ«ü›ĒāPK i5PpW)Q‚6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kab_DZ.phpUT÷Hƒ^„TĶN1¾ē)|[@4«^ŠD)%M@B©B²fד¬Ė®üC“ĻĀ‘§ąxŒ¾Iż—MيDQ÷2ć™o¾ł<¶÷č뼚łŽŽ€ģ‘›Šk2å5gē  ‘Sb*$cP….TŽĆ ‡ėį;å.ł¦8r…ŗąĘ£Ā/O„[J3,esœ gR¢©­kRŹy«ų¬2#5/Qh×RL„jĄp)öɼFp±GŽ‹Pwq>>½ŗ>õTAŸ©ĄhĀø6ŠÖ # n*—qڵ“ŖD׈±¹ß”ÆYSI„½’XßC‰ĶĮĮɬ^{Į­ŠX%(-U8ÆŹŁŅ*ĶqGįƒå „“óļ”³ÅŠĶ1Ū'?Ä}Y܉Īȗć į‹Č&“üņ2æu_¶’wŃd¦JUŁ- -*ǚŁß/OÜK|}Vؽ{‹nÜ1mkCȊ„SGēõŁ–Ę;cƒMŽĒ/nlēž€Uxb-Ao5QķęfVŹ¢ØNPR“¤$!IĘRDҐŗ§Ī©i×mxĻ ]Ī`TĘżo¢%£ X°Mr®±‰†żCõFŗ#L|‰.±%²MT ’E4åJꨨœRĻŲ>„lŠGĻśU‹īÜ=źćņ@PqĘwrv¦>ń=" «ČKi…!‚“\ćlę^”H7.k7"€n"śė‚ō` Պ«Łŗeu=Llńöę¹[iMÖŠSͶ@·lÓ^_¾Õŗ-²µY kź#¤r’“Āhx}2¼cé°Ÿŗž$īwŚG!{ą+ŖåKxtQÄi,„x;šqfŽ="½čv-īv?žPK i5PSl—®~¢3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kam.phpUT÷Hƒ^„U_o›0ϧø7Ś(JŽ»®›Övj•¦k¤iŖ*tĄ„X`;3¦ˆ}¢õ{dßk‡ ,­”hŅqæūŻ_Ūpži®G£Łx<‚1,SQĄJä,×h,čŲ”ąM¤Cq†Ļ4enC?‰Oį‹ØąžŠHX ēQ£~V¬j;µ¼h©_µqVežC¬×µĻ©T ä"&UpJµŅF¢ZM`2ö"Ør~w·—×÷×M(WŸMŃB…$¢°FD„„*aS¶pķ….MLœ(qÅĪF†li 1X‡†Ö9ĘÄ2.M!^čÄŠĻR‚0¼ŗż†Ó`FjŹ“ &š8^$#A2€šl~טU˜ÕȧU›W­ƒ§‰§WDY‚uŃŅæ#du)+Ēn” e“yĶł©·±Ś½£Eūg§)ģ”n‚jĮÄó†EŖķ²gµóČ*/r'ŗų™ņj+ŅżXRØ’‹$5ףĶbQ”ą­5ÄNßöævCŲA~}ŠG‡ōfŅCe©ÕƁ§ŖU= F*›×¬”bռɊŽ6‰¦aėƒķXDĪqNnzó¶Ō9*Æ:±L}%Ś5wļ «ÄŸ¶¬l„le¾ĶēļP;k9ųn鐹ęęL²SßšŠ³œÅĄčMWW³Åböƒ×ĄŲYa±XĄ¾µoövŲϾ„%¼&š™»sr6ƒ„ÖP*C¹Ą('Ž}ļ5”ńŃĪb]*ĖG¬lĒ^9 œ‚śp*†‡īķś€ĻG+sńny$Ć#³x7¾Ń—J¼ßwr0ĆćzzŹßē[,Üx;|z Ć#Ā·³Š’ Ē$龉×tt žk=~żPK i5PĢŠ\å53 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kde.phpUT÷Hƒ^„SĖnŪ0¼ū+ö¦Ä0l¤Æiš>ģI`¹EķŠ hienM‘*IIšß—¢lł·‡œīŽ–ŅõǜēĪ Ūķ@fœ ¤$ęL[P)XŽ0dz®¤£ā%[`ßykūY|_41 4s²®ēõö“t[eū±ŹnÖÖ;„}”“b•Æ4-ø&£4®„L•Ī˜%%{ dŽ+ +nü0¼LoėR>ŸåĢBÅ $d¬¦ya1Š,wŠĖnT”ctvŠŃh -iĶV‘Ę\°ʅ6Tā™Ęßi„(=|¢~0@Łw“ zšŌ·‚ 5%„Yną) NN †œ„ ž{©B\&leÖ¦1%EÉ@¬XNĀŪ·Œe¶ŲgdĢ1ę6)Ż£^ā@ŗ É_/ØÅŒ•]ÉŗyÓQŚČp„ķ&³xåˆ× ¼iąmļøląāøTFņæ eJZ¾™_XaB0iR;c³Æ|[æXKĢÖÓl‰Év˜[®åUOėGvJ ©Ūc!^[ųLS¬?žąėŅÖ0Qe #4mƔ“±‘»ōH„Q}’¾įÅFõæņś"=åéńĢ3ĮżżU–½]aŗ£\³'6Ņh4ĆĮO·öč a±ŗ+7:wom‰[=8evļž|ž¾óPK i5P<Õ3¦3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kea.phpUT÷Hƒ^µTĖnŪ0¼ū+ö¦$p-ōš¦iÓ<q 4¹A@PŅŹ""‘*1Üæiļ=õüc]‘ōCu‚ڇņ¢åĪīĢh%ņčC[µƒAzp0€øÆ„RŌōl¹¶ J°Ā)י’”ŹŸųGTŪ•ļåūšI .įM&¬…£¬Ū~”“Uv”«ę8–^(ķ‰JWא«v¦Å¤²ĄeµČQ’”„Ņ ·BÉ!“5rŹ= œś¾›«ÓóŪ»óŽŹū³·0å a¬™³XĄT؊ņn”Ó9’PįͦÖi \k>cۚēHĻÜi#žqOć7'4cgW_%)ŹM&ĀĆh% jQlx  '$i“Ēa@§ˆOŸ™ˆ®rāŗ#&NüM‰Ś÷XŌfµ{r4äµ­k;ƒf}Ē3^ø Ef*„ķJ7jF©Ø¹#idŪ¤"ÓK¢ĄhK ā3–¾(ƕĒ9‰łŽ(%mµż5—ؽŽf:†c®Nč’¬CFųĵ“U źœL”±>ŗC‹2 Ÿ­‹Ń­{^fĻÄ÷÷­ō¾ Šn¢“č#ŗˆ&¢…h ŖGᨗZ„ŠĘ2;S%ė¾€|»@żYŠSń)Ÿ¾¹÷™äņņ°”eø[Cé:KĒéWZ=hĮx<†Mt ?Ⱬ‡Ø«„Mˆ‚ÖžŻFÓ/’m^U1Ū—r¶łćž»ĮPK i5PłŪŻń;3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/khq.phpUT÷Hƒ^„RĖnŪ0¼ė+ö¦Ä0lōš¦iÓ8AD.Ф‡"„•“ ·–H•ž†~SŽžÆPķŚ0z*ęīĪpf“šłēNtI2ŸL˜Ą£`57žīP[P5XAp…ŗPŅŹ¾ŠĢsśIy _5£„%™‚­…óbhæHß*;+U{©7J”Ś5 ”Ŗ[k~PVŠpIŅxKY+Ż¢e%§Š5„~öŹŌ‡w÷wWסėA*ä³-ōh bc5ĪR=[įŸŻ(§KņFU;O4Y§% ÖøĪ5u –äļŅiĆÆt¢é·cMē‹»ļy>Kē$g~3éžš'mIsÅŌ¦šéžŅĖŖr=œ^6Ī5˜>OG^O“Ŗpm¶¼F`ŁgYĘ“ń­ßk¬¶Ģ&6æ\;VĘ`Q¹#õÜ„ķ_hå£ōxµQ1ŹKµ,’KØUҊķ÷nŽPö¼¦tCŌ³ŽM†~Óįé0kĀ(›7×ÓęO,×#ū‡~heQNĶ·•U*ÖK„ś° 2cs˜č`GC®˜)¦‰YƒlSdˆīŃ8ZīĢjÖĘę~“¹Ŗóa©ĮńĆ éø0 ćūĒ0IooĻZæ×}ąa9ókŽGh1Ļę?ż9€¶dY6…cxĻĒę;Zåü‹ėæüłōcņPK i5PųR3כ†2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ki.phpUT÷Hƒ^„UŪNć0}ļWĢ[uŪw–e—„ģR }€Jh…P4M¦Ilwm‡ØŸŌ’h’k];½¤„ŃęeäsĪĢńŲŽ}ń}šN[­īŁY Ī`˜2 c–Ų8Ee@ŽĮ¤רFRX(ĪpB«]ÉOāSų© 1cąb“žv(M'–ü²’ž’Źy±œĪ›¤P$³˜„¶–b,GƤhĆ4'“Ų;£Ņå=ōÆoO7«Rn~&E%jH˜6Š C ”̤–±sײP1Y£ÄM¶ŪRd %•ĀY¤hšcL6ʅŅģNż-˜"ˆ¢^’1Š:A—DĒ®LІ—Ų/ą¤Xˆšķ^‚{¦d&-ܖø˜ab1^Ū^[e ĪōF[p†+ķą­° ¢YĪ7#&h‡Nv„ŪVŲ†Ų&s¹Ā÷"JeÖvį•“‡.„Üčź±½$ Kq&ž«—¤ėÖo$ T ×oX’]ā!£}d²]•­ŖZšHČC(9HåĖł¤Dń†÷Jfd³kĖ–sĪ>€@ ŲXśķJģžį^Ūµø»q+ö|’čĀļ”ypX…ž į ƒ*Įƒż{Ļ=ÆBÆ?Üxł’¤Zc9ųa萹ööœó ½K<ķ0ēZ×HOõzŻ0ģž±_\³†!²»“ēįŠ}#Kģ׆cbŪooFØ|Āy, a€/꘭¶©Ū…œ“E9ĆQN•¾‰£åw¶¶ža;jĮh1jP}ū§ÖōŁś~łŲ¢l"ĘØAyŸbośō—sūoˆŁq“¤”£F>)µO@-Ē>Ē-ŅĻK1śtéź<0aŸ§śü ‘ĒPuNQŸ£)–¢¾ lByŌD7ŠbŌ¤üėé×Ö?PK i5PŠ 9¢– 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kk.phpUT÷Hƒ^…W[OG}ēWĢC*ē M J[Č TU…,4^ϲ«ģīX;ć8$ŽÄE‘"ńUEJ£J•xhßjŚ@ŹÅÉC’Ą¬łCżfv=³k3d…°gĪłĪł¾Ł¹łž\ĆkŒŒ\AćhÅórż€ ųlą˜#ź"īōĒ5A—óƓ2p%}ŌCbGč a5Ÿstæ&›_GФ¼ģŠp6£>¢±r›A€ŚŲˆżu#ÕQą;$b`¹41÷i4ĮŠ÷Ģ'-·ųķƅ'Ė RJåĒ=ĢQ 3T÷żZ““:jłÜrg“;Œź*Ł«²BūM“{4fÓņū$śŽ2-ӘøiūQŒ£’ž ’ ķXĮŲüĄ8¢ĻŅ.ń[²“lŠSŃ]$~äµųWœ‰#Ł!>‰æ³Hę:~±¾ĒÆRˆ oĘZAš”6ŽKhf•¦ڌ8GÉ®8-M¤0^3„—•Wā ŁK63NūˆµriĽ"ŲĒĘ(‡ēœ€Ņ¾€Z…Z„<?'Ū¢cœ „`T`µ†4t!u„F`Ė!—ŪÕ}×5v½÷0%?ʚ ųa`¦' t’ćQąpŅ8ī aężao_ׄvætdŅMBu/®¤O‡aĘĶ€å2ĶXL”łłņŅRł'x `EKš axGĆöšV‡gŁČÕ¬<$Ŗg{Z®>†C2ßøUń–č?ņåÖNĮ ä¬#ņœēB~éäB~ŌŪĢ­ŚŁfyƒ_Ķģ¾$ĄČƞ’ ÉŁÖÕū¬ÄŻŽ~}ÉZĒBĄ²I¹80ˆ4®ūč6#G–hōJŌ k$C/µćp:č kŗ®’œ04“słL)żI¹lröņ©X‘kVäŗ¹aEnZ‘[Ł@n[cīX‘»VµŹ”ŗf‡®Ū”vč¦}ĄoŁ£nŪ£īŲ”»vĮŹŌÅaÕ{#ś{vQÉfUyTO¢Õ¬«ŠęęŠP/ś Ō-ŠģŒržS’§ŃdEńJ„±{ŹõUžŖ’ķ€j«ķķ˵#7[Ų1;ŠóY®$ÕźB’ŽŚŖ?Źv²užŚ{÷ xgÉ®i¶Ü3ŕgÅizV@k;å¦:½÷2JŻŽå¹•öÉMæļ,[ĄčĄ–ŠQźGĄ;•O»„XÕB=k P•©ĒŌbŖ0˜ģMŽ&g“ÆÉŅdhrÓłČ RżVč‰:Ÿ»ņ WdåÅ>ÕźƒL7b†yāØw +Š:)2˜QaŒŅ¼L6&ćlüŒ‹ńÖļß}”z¦­•³O­šijE£ēś1ćņ¦¹F]sŸ­˜ŖģOI•-}‘ļ³ųɒåņš·õówņ…¤,Å’PK i5P‡«OńĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kk_KZ.phpUT÷Hƒ^-PŃNĆ0 |ĻWųmP”ö˜± iŚš^„©»XĶ’ą8Tü=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)7Ū+¶Ŗ]åwī^™l„ –D`?¬š%*LŅŗt{ś—¾%ތ¦ø”™®^ĄĘ9ŒE#ć”ųf…R|€Š*÷CølwļēĆéņyZ­¶~ā­Ąb ŒT„i؂#,$^7ڽ¤Ź5hÜŹv†Q*G`ü®Ä}<ō}»ėę¹ÕģĶPK i5PĄ×Yą(3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kkj.phpUT÷Hƒ^-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5źņ™Õ¾Ģ÷ęĮüPK i5PöpµńN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kl.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ Ū@“¦ų8Wiź6V³¤8ÕŽ·ćŁłü’ķó䦢ØĖ²€¾%čÉ#č9ˆ=ˆCŲncЀ•jł½‡W&ąŒ©%Ų¶ĖųtŒRŁxyś—¾E^ƒśģ=Ų8]™'`Bž,†¤•”|1B1<ĄäŃčī—p^}§ćīpž<,Q+Ÿ8#0›%aj³`3‰ÓeO1³E-źVŲzyįāżcˆs€{“½ć°Öå„7<ā¤T~r¦E!k¼æŽ%sPĆO&Fhšżń£iŖM=śężTé/n‹?PK i5Pó<‹(˜Į5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kl_GL.phpUT÷Hƒ^„TMSŪ0½ēWģĶĄ@2½RJ”„Ī0J{čtĶŚYۛȒ£2ł÷•mʼn[ÖI»oß{ZYŗų\—õh499Į |/ŁBĪ’ Œ5:WÜ Iµ ”l¶eĒšÅ0*x$›²sp‘6Ė+–Ś3]]FčWmZ¢ÜK ™®×†‹ŅŖHĪHŁ ©rm*t¬Õ)Ō’0Ä^˜VmŻżŻĶķćÓmCÕśs%:X”…[g8õŽf°bW†Lšnµ7”YkvŅģ°©½ö®Ōʞ7ó3˜¢b[Ā“ 6ŠĢ,\[«3n-@ųR_œ’ÓģLź %Ł«Bł±6EKiČy£Įµ0TKĢ(Œ™7–_čČŠŅ³!bz÷Mˆq2!5ĶNNįרaOŗķŚ>]ĘP¾oÉĆĆL§š3|Éi›}ī†¤ŅŹ•±,™£ņˆ†Ž$§ŌlW'ķ kĆ,7Qœw³¹÷ŖŸÅ,…·®›[ŖUé†N/œīJæģ¤f”mVC“†v»­Õh2ŗ‹ÖŗÕ¼3¢ŗA¶9_DQ?*GÉ^kE“˜įzÓ‹5b‹E‡hY©BEĖØ*żn fU „,[¬p7āPJ†Šä¬¶ŌZl<Šnv6„£XTˆ¬SUł?D9ėD : kĖö!fc¼5Łfµ¦ĄQ¬$ē™öʁ_°n:1™@ø IĘTR„€Eń~ņŸkPšcĮ¾†%b®r²ł ßBń¾ķ” €żĻöśŽV‡€Q@ߟްqR6‹Éż)ū*»|ŠAįŽP__¾•DńFy<VįÉ@h¹ō³³į-Ś\³×ū“¹‡W¢ųWį®ŽR¦Õ°­ķ‹²Ų«h£8Hąłųćč7PK i5P!æµ Ū3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kln.phpUT÷Hƒ^„SĖnŪ0¼ė+ö¦Ä0¬»›¦Eb1EāKĀZZK„$Rå#‚nżž^æ¤I6Œ‚ņBrf8;»n¾tUEÉlĮ vSp` Ż;”ÄtEpr/ø…ņKZXķ(æŹÆįN2ä°%µgZĆĶ~¼~åö*ō"ķm~ŅLÓ@.ŗA²²Ņ€¼€†åĕ-ÉB¶Ø™ąsčB‹½3źŻ»ĒĶżzū¼­\>]”†LiÉöFS=ӕelv%ŒĢÉ*\Ų$’¤ä€RāIźĢÉнӕ¤Ÿ†I‚,[mž²l'Äv2ń^#°+nI²‚QĆē[xkÉ-×BØ:~›{MOT8Ø ł.4S8zŒGDęOH¼üóė·æ(ъ:ąī‘ūkkŒö§F\TČT%¤žźhjųMė`ģ‚ׄUĖųµ‚ėjź95MišQ²»A= jļĆ:;ƒÖ7½ŗ ¦8µś±dĒ·Ä"‡? Ńić˜;#øīˆŌ䬌į·Ę4ēp/`śyč³1¦Sntž;Ä5„ ½†B®)r…;?½ÅüwFä ?ī?<,[ė~J<Ÿ0K„ĪHO­VIš&/v‘ išĀ%{J{.«e…]sų—ŲvēŪ„°Ģ…įZ,ķļÉÜ“R $5 ÷ …'Ōcö±"oן¢æPK i5PCHb ż· 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/km.phpUT÷Hƒ^åV[oE~÷Ƙ7CdEāɔri‚Hś’„,ĖļĪfWŻ±fĘ5VA2%TåBŌ& Ś ‘’ )jł1Ć/an;{s ¼±/öœóļ;g.gęö£pŌj­®¬“Ą Ų #‚(F@žŽ 倀‡܅tH°4yąŗ%± ž–÷6ų˜Fƒūˆ #ĪĮķ”~ˆåš[IīXč'„j¢`ĒĄ#£)öB öAy3)‰BČ#‚;`#(m#4Ńq[›w7īļl(*!Ȁ1N£į˜#L"JĢ‘1õņu²«ŖBūј‡„²®ś’ųŒŽ§ąsˆ14ćDє!NĮ.{”±~ŗ6”•3‹"#/Dģ¢‘ę¦ˆ)½_{Š mƒ÷ļ€ö£µoDz.Ņ?Ez!Ņ‘Šōg‘¾ŁĮ׿µĪ&z]Œ15o»c© ĻrPB0 ~+²Ē et‘5ś²o‚Šƒš;é™NąG•@z%²'żļ”>œ.JöXĆ÷Eö]#åĀå8jrMD(ב̹ČE¶/Į ™ĀåHj2MDa¹ń éEJODś²!TøJ45©&†!`æ$u¦²I_)¬Ŗž\GČø_Dz³Tæp µŽ„ƒ{Ä"y” ­¬²ČŻ%ɓIs"²™HEĄ‘]’üÆŁO"éBžė)¾:2"ŁP#ĀJW±~E"żM¤æŠōµ,؂˜"&“pŪQ/ļ©Žŗ²źKĶ-’Vb8I„u±ńt:™^Ėc$‹q󔛚™\Ó"“ykאܻ×M‹µŽ’§ĖXÅi\ėė«ŪŪ«_ŹÆā̽`[~ énśASŽĮ|łuĄ›Ą}[žc„}ŪņJõ1˜ õ|r{å©Ņė'{Ķ÷•#ÕrFJy`ō/ĒWęö#æpķKUzĖš1d„Åū`©¤¢hJŗ.xäŗ Ū²żå9©ŁŪˆ™Żń[µ9'Ō0Œó]Øg“”P:ż÷ZPK i5P¢ 7Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/km_KH.phpUT÷Hƒ^-PŃNĆ0 |ĻWųmP”ö˜± iŚš^„©»XK“ą8Tü=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)w³WlU»ŹļÜ=¼2Ł,‰Ą~XįKT˜¤ui~ś—¾%ތ¦ø”™®^ĄĘ9ŒE#ć”x¶B)>@h•ū!\¶»÷óįtł<­V[?ńV`±F*Ā4TĮÆķ^Re‡4ne;Ć(•#0~Wb„¾?ž?ś¾Żu·¹ÕģĶPK i5Põhčč. 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kn.phpUT÷Hƒ^ĶVĻkG¾ėÆx‡‚£Ęv)7­;4ÅrN)E±ŚõN½;#fGQMźCM{ …‚*(Zl‘ŗŠY‘Ö¹$‡ž#ū§t~ķļŻäŚ=H;ļ}ó½ļ½y3;[ŸŒ½q«µ¾¶Ö‚5øļį\ģ#’c‹q .pĮ‹(&ūČ:D7VĀÆŁ×į6Ɓ}Ž0ē°5’ĆO‰R~ƦĮ-½K™"r'¾63|čq°ˆ>¶ EHāRXSҁ±,a{€ŃTĶŪ»wgw’`WR)}ܳ8L­r†GŽ˜bī ŠŅ ³‘ä(±ė2C9w{Ā=ŹĀ®|>§””!W{_|¶½=ųRļ2‹ü{NŻmm`Ö7= >āH±2Ä'Œ@æāi#‹µįć[Š~øyG?ĒŃć8:‹W Ž^ĘŃe¼zG’|7ŲģÜ#nækÓ įW»£‰Jø×ÄōG½Qćy­„©ĀW$¬S„ŽŽ"ﵐQ§MŚ+\ŽuÜDu¦Ā/*Tʞ0xb…š(ęjpƞTX2WZ,LÄā7Q-TŌ„ś­–¾ąMCdSāäg"ZE²Šs¦W+Ž~o^„+5GĻjž L„ˆÖ!ÕQŗHLz•¬ÜY.?—Ń`Hč“](œXźĖtI°ėfø8śQÄ+ųŽQČKW.É~”²Yä"*4§e,£[ØNX兩Ż*€Žʼw_OŁÆl<yW7 ^ķŪŁYļõÖæOĮ™x”'Øŗ«žŌ(HŽx:Š ˜$mĖGÄ1ū:—ehh')e?Ž~H›n¢¹˜}ĖóȬuČÆŅMŖ¾–¹ +Xf”ųŒ±orõX£ćčÅźĀČävżŠlŖ½RI(s0±|ӏdŒ3„«Yŗ+ĆFB¹bĖc®½'·żux˜ĘĀ®1Ā|˜wČĒÆmu½–ķ.ļoŚ7SąI-×ęF3Ł…Ź}„j7W”sŁÖļ¤üؙR!ēŠé…śJÆČ;)?x‹Ź+ÕQ敕µŖČ†āœäæ&f›¶%£l›—Ś‘Ŗ‚\$ßŅ|¤ļWń«­?ÅŃó4ž<Ē2iP”L«=MĒX@~Ѧ'źT¼R\§)PŸžĻ«>C/“ ų>9†OMGÆf%„J²nź3%łŖģŹ5 Å=ŠVS«’W‰+S.HMŅōå-A|#²~łKe·PŗĢu §ĄT~Yņ-³ HŃq”xĪKÖ¹²^Vcü­L³\gę}ęüK¬åJk˜%R£æ,» ¶,²F[ARU‰ø¤t”dį³ĄYŌ,žyKųāö«bįH¾Ė˜…|(Ā©;L/}ŁĶMŚ5Hzå(½¹nę„#s źot`CÜlżPK i5Pㄯ¹Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kn_IN.phpUT÷Hƒ^-PŃNĆ0 |ĻWųmP”ö˜± iŅ“ą½JSw±–%™ćPń÷øO֝Ļw'o_³ĻĘtMc oO& :³e4x„å!E„ÜÕ^°Uķ"pšĪd#œ± $ŪaoQa’Ö„ŪĖæō#ńj4ÕĄ„üĖtń6ŽČa,§Ä7+”āä€V¹Āy½;w‡ó×a±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń^‰ś~üģūvÓ]c«Ų<›?PK i5PD ½½Ā 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ko.phpUT÷Hƒ^½VAo5¾ļÆx‡JŪFé†Z`[ M7•B³½¤RUEQäńdLfģ•ķaHK¤Ŗµ×‚]¤HA*Tzˆ"½ńo²›’Ą›Ļڳ™Š>¬ĒžŽūŽ{öó{{ż³Q8jµ–Z°÷B¦ `œGDjčĀ-"‡‚ć–·C¶ie3ń‹Ž%X–ŒpøKՐi ׇŁņsŽK”;žˆoŃŪBęDAEą‰Ń®dŪ”Ā}ˆ˜G¹B“<2&š ¾£ˆÜūŠŃ4×[[½µrw}%£ŹżÓ!ѐ>SZ²a¢©)Ó!"軉ō(ņsg—²3Ż›‰…T½ģū2ÜI8‰`@dJBRlŻFŔńmõĄ¬%į½H¹\l|AÄ¢^^–"åÅī:;_&øĻb#–šP8Ė>¬*‚§§J8„ōRKRH-ĄŃŽ„D¶įÓŠīy"įzņŻ·ķÅ"[|ŌŻ›žņĮo6»‹«<Ų8'½ŪĄ ®C;}3ž¾|a8håģ‡ńäłU+Uø™,„tĒE§Go­ Į ˆæUKąh¤sL(\B>©Dė dk†åĮLŽ~«špiHBL‹ ō||śĘ¹‹Vąsf*:a3]Ģ8¦såņN[.l’ąd> N\²&E=Į«ļ[3.Œf&Ɵ"<‘•WM<ŪĀ šÅ¦‡3óń© Ÿ½“qšŹlH±RŠ^Ÿå¾z|śē~Ū„ ©gI1żńxz8®Hh )KŠÉ“c'ŠU„[<Ų|{ķ^!|Ā^aƒ¬»PO© Z`ptƒNæß© Œ8 o½1BMRPćĶ?Hū8Ŗ*›&hD”ū¦ņ8Q+Óžģ ~<;< ǧ_ė™Dq’5÷g… ÷”*e)ŠŪŖ‘°xå“'c,PC–y¼)“ HéSµJ{ł×^Y“š0}F‹¾²‘eVžĄóĖź@y_y£2o±ŻĶŪ“ß7ófžŠĢWĢ|ÕĢ™łc3bęī{åGÉŲĶ)«F·ž‘Š’³é¬abį*#ĪZęĻ/ņrٵŚÅŁOĪbŗ`“׿Ū–FGēūC³˜7W‰Õš3†Œ Cnh įyŖ²żW¢’ļšńn^kż PK i5P—żóF5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ko_KP.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tKJĀĪėŗ²®ƒĀčaŪm ć8J#’Ś™¬4ōķ§„é"$}hū<“ƒ1ežČį«„ õŚĒ±iŽ«tå;wĮB±3|åךĀäœ1U$Ūj÷AĒ(…×Ż?ō-ņ"Ԍ}>w¦K+ąB =y I-Cłź„bŲĄŠ£ÓŻpZxļ§Ćńüyœ„–|Ņ:É%Ø) S5 Ö0‘“zŃģ)ŽģQź%lie䎣Ż-ćŠ;ŚżČ‰nøbü‰¬}=}X[de żL¶oZYCœÄÖŹŽ» žvš°1?ėGóPK i5P}„uĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ko_KR.phpUT÷Hƒ^-PŃNĆ0 |ĻWųmP”ö˜± iŅ“ą½JSw±–%™ćPń÷øO֝Ļw'o_³ĻĘtMc oO& :³e4x„å!E„ÜÕ^°Uķ"pšĪd#œ± $ŪaoQa’Ö„ŪĖæō#ńj4ÕĄ„üĖtń6ŽČa,§Ä7+”āä€V¹Āy½;w‡ó×a±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń^‰ś~üģūvÓ]S«Ų<›?PK i5PŁKŠnņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kok.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې*”ų8Wiź6V³¤8ÕŽ·ćŁłü’Ćóģ梨öūöšå(Į@AĻŁ°@@ĀŃpƒ®ģdF,U»Źļģ=¼2™ ¦ŽDąŠ­ćKŠ1Jićåé_śy ²÷`ć|e€ =x²’V†!ņÅÅš³G£»_Āeó½×Ēsóy^£6>qF`1 zJĀŌeĮ§7Źžbf‹ZŌo°ÕśĀÕū¦—=&{Ęq«Ė oxÄI©üģL‡BÖx½0J꠆ŸLŒŠ¶§ś£mĖ]5Å©­›Ræq÷XüPK i5Pn!KAõ 6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kok_IN.phpUT÷Hƒ^ķVĻOA¾÷ƘŪi·ńŠˆ(`$AbŠ 1d3ŻN»¶3uv–¦7遒ćĮ!!&S$J€`0xŃe’ß¾Ż.tˉÄ^vߏļ{ß{óc;õ°é5 …ņÄDL—HūŒĄ³I•&²F“ĒČ,U)Ąå®Ń:³!7NsĒÉcÅ© K,Øp­ÉT%6g˜RŪ®lL§©O¤B¢ZčūĕͶāuO*ŖÄē.”5©Ts)Фé3 ¾uĪZˆ[\˜_z1S”>ķQMZ4 UhÅ+”fUŅāŚƒhdØ\…Ŗ(¶wc…Ś“*˜ŒßKd0O©.’ē”`~•°^Ŗū¼ā–|éRŸ3uŚRՑC1*AØR“ķ(Öō©Ėąé†*ąėlL±×!WŒ8ĪܲćŲV™ ¦kÉ«BĢn%ży0ŗŠ½ˆk®ō¬“²b1°š<¬†ŚKVdv#ó+2QÆ™3|?‰zo ľ”÷0ź½EļĘՌ£¾ Ÿ×»Č|MęwdNū‰½nņ¶õ:P03€õ4źm%öūČ|ˆĢ9ā÷×9ŠH(÷š½k2'b§Ū¾8@ū c?Æā>£ŗóĄąˆœV’Ō_Õbl­JŪ»i32Ē‘1I³™¬ķ¬’lŌ’=T8Ä.æ\õvqvݘmż"vpˆŽnÜXʓœ[Ū;#»Įŝ ‚Ysj\ډ;ˆ­6£ ;ø×?kLń*g¬­#7qĒNõŪH&š&ŒĆšte(4ĮŻ»K‰Ą.ßl¹Ląŗ ˆb>§Ÿ„ŲQŌ±ģÅ ęĄ°~ūx¶ ½ćĖ+q½†Ö­Øs[!éŖqßĒOr‘ĄnŪæ±~’žˆ:#”K s„Øę€¦—Į’mßX5 EŃJ^śšä GøĒ—f Ķ€‰ cŹĪh.)Ł gx—lōłņķ\›DįlI¦’„r‰q:?~iŅŠ ź #Zæ_ųPK i5Pė™ńN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ks.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې*”ų8Wnź6V³¤8ÕŽž“棳ü’Ćól碨öūöše9ĀĄŽ Ÿ3ŠB@-Į„ >ÆĢ„#•Y»ŹļĢ=¼ £‡†bĒŖpčÖńÅē1hiĀåé_śd ’s`Ā|­śņ1Wś!Č•ƒ€ŁęŻ/Ó²łŽėć¹ł<ÆQŸZTX0BĻQ…»¤ŌĆĀjóMf!‰”\Ōo°ÕśĀÕūķ'= ˜œ‚ŠøÕ„H7<–˜©Ül±#eƒĪ]oBšÄgĆOb!hŪSżŃ¶å®šb[7ežÅŻcńPK i5PjĶ\ ĢĢ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ks_IN.phpUT÷Hƒ^ÕUMOA¾÷WĢm”6^Œ$H z!†L¦ŪiwĀv¦ĪĢŅōH‚µFō$Ń+¦ŲJˆµį„1żž‚rٟā»-m†ö q/3ļó¾Ļū<󱻋÷ĖN9•ŹĪĶ„Šzī0… Ģ„Ę2‘‰ŅE+DęČŽ%EšŚ°|ʞE%#mR•cZ£Å\.s…ĪŲ¢“””>2jTš\Ł¢\•¬čhDx¹Ģ¦\$/Y"š žFe—Ąö­D¼õ•µĶgka«ČŸvˆF¢Pž)-YĪÓ4*L;ļJxҦ ”ĢfƆܞv„T į|mē1ŃiōŌćĮ“óŠóE—åģyWŲÄ„j¹Č½ŒÅ؇¤Ś“)IKZv‰Ma“=©Ų‘ō„Ē$EÆ®oaœ±²”g`w­4z‘ »[ńś”…ī-%PoD€õ$»šŻŽ¶ŅQb'¬’ąŚI–fj~Ćļ\BOĖģū”č•ßō;ęØW #æiŗaĘÄ9˜}ˆš3S7Mmh~ą7/ć~³×öĻżÓh#ōlł$óbØļ#¦ŃUxI4ź+Ųoż?śÆPŗ›'ÕĮŽžkS]†ŒŽ'’VÓĻĢoĮüø÷c ióB óŌ®3P¾HŖ/|ÜÅč>^ļåōoy)1žo€ , øĄ¤Ņ8“FUJddėN’RÉņŒ–ś^ŪpāŻÜ«H­nj½n|ö}īÜ)` 7t“lįq`¹- d³¾ Iź2’siR}ūR‚oŻzče©߃F7h“‚“w7ź”&§<¹ÖÕõ_l§9źõŠ•iHO!Sų7ŒĻ/¢OŹõRĪ$ÅOŠ>9$Ęįļ5B1ūężDśļß-Ė žH"&)j ž»_‚“·æ~vp²4¾ŻØØ¦ä<­ģĪģŻŌoPK i5PĆćVĘDķ@ briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ks_IN@devanagari.phpUT÷Hƒ^å’AkAĒļłsŪ64 ^µÖj[”P{P/EŹ2Łd‡ģĪęŁĘܬŠZ‹P ^&”Ō"AP"Hż*óQ|ó6Mš5ž=ø—™÷ļżßofgõQ7éV*jµBŖäeĀ5iń”X»T"[Ä$ŒlPՔ¤ØCŪ¬µ¾|)Z&O§‚ģ2ŻäƐզׄŅŌ#™­MJŸJ…F­;ūÓĒóźgo0>uö¼Žœ½ĀŌ÷Ī~ž» 7xöÓąjŠådŚ’ŃŁ1ZŲB;ū ļāÕkšžÖž”ō Mg‰‚¾\>DŸń\bžB ’ĪüĻ÷Šc¬Óžģ-;;@—›i’¹į5 {TJ_»Į™$0W!Ō²!šw‹–ĮŌĄ‚ąma“‡Ź-nhęµ½üŖ¼†ÆV¢†¹B2ĆmŃ·_“o ĻJ£ī¢ōÉŲ0ØīšJÓ¬ÜŌ4²$ķ¼„®UČŅč)“ ”Ēv’öįŻĖņįqµ~ģG…|,a*éŲŹ¢cŖ`/YxĘgw¦³%y£*„'–ø³ŠZ<䖦KņwŁY'wteéw'-Až/–?ņ|–ĪIĻüfŅ)¼%ąOŖČŹJ’JįÓ¼„ ·d<›źƒÄčLś>„{¢m……ß:…ŲJŁkCĶČŻŲh:ĮuxßTŅ…Ė_=3J”ńšß>¹ĘņŃ­Œ˜Ć„ōŠé88ĪøĖȹ’śæ)£YŒ_ŽŗĆ&Œy¢¢9Ö–"÷m##Dq=:Ž ŠqŖ5µLŖ«ų¾e3T+³;‚ r”?ß(•NO‰õ sćÜ9P‹Å<Ėę?ż9#,dY—ģ)=špé>Ź*¦š/±’ö÷ėÉPK i5P’“.3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ksf.phpUT÷Hƒ^­S±nŪ0Żõ·)1 »NŪ“MÓ“h’"ā M–"J¢"V©’t ³f<ųüY…ĄŠźI” «r;•ƒłŽńļN>ü˜†©e {= zp2‹) ¦DjčĀ1‘®ąHy¹£Œ-Ćw¼]ų,įpI•Ė“†C·<~āxzą‰äØż"d•(˜Ä1x"Ivj ܇˜y”+“䁐 ŃLš>¤1%ČŻ3:­ī]œŸ^^–©Ŗ÷éh˜>SZ2w¢©S¦CTšķJL¤GŃČÆ;“$ÕɁHIfޤiL<ŠčM¤b÷tGŅ&)8ĪÉłWĒŲCŹŲ»7ą²*™ĻhbƇ#ø±U¾łÓ4_`„ķY‘żśÉ#aßöMų”ŅČ'3ՄØū«yÆęÜĻ—å6!¤ŁY$‹¬>}_ĶWófŸ?%®1R$)É?M ©[VOmŅ8¬s7‰ė¬Ż” ć’%a"ø›6ż\¤Åht|t4"Gä!åš,x†Ä¶(C䂘É9عv*^Ā3R[‡ćä›ā Čź97†œĪėįa‡ŅŠXęg!ōR*WhQf‰e±Qü95DB2£ŠVR,¤ŹĮp)ʤČģ܊ćŚåŻ^Ÿ_ÜĶ.źRΟIĮ5h’pmŸ—²ę&µÄzײT1Z”ę=)4„”‚ SXd£mćRi¾Ā…æK®06¹žĪŽQP»3ј<Žˆż¢O8ęłtF£R #Q·Oc³F\&°Ń!fV ‘Äi8•i7˜p!t‡Š¬e6U‡.ēķ`y ’ 2JeZYź©—ņ#ō#Ļ.õßzg9m!_Ē—ńU|_Ɨh+äR˜“Yū Ų…¬ĮVŪ¹’¾?­¶Õö„ī}-f™›Wū¦,EÓÉ\ē¾ü%«W§‚…©¶łężŅČ4ōļäŖ| ƒ¾§ŽöXg«ąØńÓ3#|“#ĪEµ-‚~¢ļŹ1mģß ™Ų)ÓFš6Ś4ˆÓ¾: ņ4čÓĘ h°@ƒ‡ī$\iĆģY2¹`õ±:ł uw,“›rÓ·n&ŗŗ:Éóh¼ f;äDėōhBɔ’ŸöėĮ:}—÷¦.€¼5ŠĘ%ö³÷1©¶Od0Ēī‚_čAł¼“X–™Ŗm °”ĝ#īᩬÆv“ŸļaĄödw×°ĒżĖą 6”č¹żzpāߔ‡°”LĻSūĪöšn'Ó!l -ģ ö5ļoŚ)Ónqx”ާĄöš1c)śĖžįņļ‘“eō^ l‰§Ć£PK i5P?č~"2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ku.phpUT÷Hƒ^}TKoÓ@¾ēWĢ”R  m$„-ŖˆJРܢ*Ś8ėŲŖ³Ł¢Ŗ ”†ŖŽ"õЇ€*m8!qįOųqć—0³ŽŸ*$±2óĶćŪŁĻʓ¾ÕÆTV——+° o-ŪÓv8ąŸ¹ ¤ Źā°Ķܶ¬ĖWŠ—Üļ÷į¹k3{ÜkŪJĮF›Ō§U©V ŁŪZø¾®Nd Ł?tķ®„€‰8¶Į…‡”Ā”n)[ŠōĪ{gó”Ž{µ»½³÷f‡Réó)‹)2:¶§\»=P¼C[YhĮ³{rą‰:ś°«T!Å>(KŗŽ:Éą%s†ÜSšš‰īĄµµćRO ey° ĶjxéŸć`Œ£šÆQ˜DÓąøZƒŖ?&ž…ī_iķ J7ųĢH#w’–Bź ۟'ž7 ½‰¦ĪR§+JŒ_“¤ /b‰<ƒ’bOīĻ”3E'Ń4¼LĻ”7[Ø$µ’øRYr~Ša‡qĶqųóų@ŃTg¾NKPˆŁØØüŠNƒ±’µ ÖU {|yy[|œ|Źåją hV?U֕UŲÜĀD#ņĀo?š"żŗ²{¼Z‹ŻLWöZBc_mмÅSlÉŽĀ„XYMÅŻŲ—Ź¦>óµ9Ž$_0cež¼h?äl“öZžxTO„F"5Öźkūė† VÆ×v…YD“ÄzÓĢĮ1u/¼¦Ü™ÜČäBž -2$xĀAmĻ(°AĮ'CM’Óy­H”ĆKT©%!ĆłJ¹Āi4ψ'‘‰Tȟ`ÅÜ1šäµšEĻ攇gŲ¦™NžÓy­H’ĆKD©%ķŠ-pĻd ’N/% ÆnzNkäµbósxiRKBēqCŠNVŻŲŸŃk«kKåF&ėJŃRU ¼0iž&Y¬¾‚”å)ÜŃĢ‘‚’ĒwŖŗĆœ,–Ų”h%c>ś_.xńw:8øüµ”I‹šū'T÷“m`»žj”{Kš­tŚeIxģDVŅŅŗ^«ąś PK i5Pžˆ~˜Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ku_TR.phpUT÷Hƒ^-PŃNĆ0 |ĻWųmP”ö˜± iŅ“ą½JSw±–%™ćPń÷øO֝Ļw'o_³ĻĘtMc oO& :³e4x„å!E„ÜÕ^°Uķ"pšĪd#œ± $ŪaoQa’Ö„ŪĖæō#ńj4ÕĄ„üĖtń6ŽČa,§Ä7+”āä€V¹Āy½;w‡ó×a±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń^‰ś~üģūvÓ]k«Ų<›?PK i5PKV--ńN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kw.phpUT÷Hƒ^-ÉNÄ0 †ļ} ß*Ō>#@³€FBs`9Wnź6V3IqŖy{ҧČĪæ|Éöy²SQŌeY@ _–#ōģņ9”(„ŌģQŚąóʌ8P•µ‹üĪÜĆN=œ)¶¬ Ūv_|ƒV&\žž„ÆAÖ >9&LWįĮ* ļĄ±!s„ļƒ\P9ų˜aŽż2Ķ«ļż“?ž?KŌŹ§fŒŠqTį6)u0³Ś|“ŁcHb(u+l½¼pń~ūчŁCG=&§ 4¬u)Ņ %f*7YlIŁ s×[€&ńŁš“XšępśhšjSsó¶«ņ/n‹?PK i5Pm0׀‘5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kw_GB.phpUT÷Hƒ^„TMOŪ@½ēWģĶ€B¢J=QJ”$M„CéUhµ¶'Ł-Ī®;»Ė’žń®ķ`!ēŅ2oŽ›8¾üVŹr2™ŸMŲū-•eU#[ tĢl˜“Ąn¦FS*{[˜QmS~’²ļ؄f`Så»L›šZShÜ,3»«¶ō‡Į “ńEĮ2SÖØ¶Ņ1”sVØ “„–zcp'œ2zŹŹåö ŖĄ{ø»]>>-©0Ÿ“±JX–+ėP„ŽAĪ*å$!4»53 FyvŽlŲpo¼“ķE㟳›BX'²uvÆ4éԌ>©ßžo •fē…ÉDöz«żĢą6!8š DQs„²ĶQ¹ x!PZCč¾V؁ń£~šŸ¤ŖLŠRJ$X-MTcˆf--£ÆšÓŽAÜU %^Č'(­”Öb,Āœ<3‡IGeS•.gµ4QĪPMY ļ°žŹ¶Īø­ó·ÅĢEZ”TÉlic!rˆŗĢb“VæĒ£ų4ى»ńGå H”€r”<J1­ tĀ!™¤c“d0s} N“¤Ķćs‚M‰æF‰u ŽyŽųH¾f×¶füļd/i—Š&¦rłÄ§¼äeņ²ÄbÄ'”ęB·aåõŽHCb L‹Jæ|1¼ü0 øĘ÷3n¬™0,)“øX[Y©żW ĢQ“„q4˜^Ņ,øĘ‘Ž\ĻŹ3 V¶Qź /ęS·æ‚õÆ*¹¼ė¦ 8ĄŪ¬šg>|/7ī­éøžÅWKRKWŅkēū`Ž>øĻw¦ø »k·ŽŅ“é.Ń;ØėšłXņĀģū\ī›EB-70<ŚQ`ņ#\ "ÓQōDźĄĀ\] #Ūv·qˆf “ĪÆ)”?‘<ļŅók:Gāć>ä²¹¢U»ŖE®iÕ®ēH²×‡ÜŠĘ|­EnJµžJ§“Šå)­‡+śØ«śØkś 殏ŗ1„/XŻŌ;œžī£~«"ļ³ö#[Uµ¹ˆÖ²”:šŸG£č+P×@s³"ó¼ųAӂW­ŽŽYŸ»l ¬&æĄNü¾‘vņ¢:[ęOše½‡ƒā0ž”ŽÄgķˆ{žĮµQĄxæwĒÉĻš¾÷9ćŌ?Ą¹š,U'H7é@ŽwyĪų3œ:å‘nü¹ōü‘Ÿ; •ŽŌK•¬‡Šs²R=Ŗ’į|‰wåZyU•;éŠ÷TpNå3æ§ź.üžńCXDü [ŌI²{ž–ń5cūĄ8éćķ ēå±WCxÆįŌ=ć-Ü’VĄś=•ę*u¦ü(*·ŹØņØ,ƒśy÷"Ō3m©—ż•Ŗ™¦R”z¶KCʛÅub«&uZ5™|<%q”?É=gyšÆKŗĮ#Ł[aźZ.öóÅgGļ ¼œ=ń’;½ƒd7éĄK£åz”ѧœ¦óļPK i5PѝŃĻĢ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ky_KG.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm£Bķ0b iŚš^„©»XĖ’ĢqØö÷øO֝Ļw'ļ^²ĻĘtMc O& :³e4x„½å!E„ÜŞ±Uķ"ßŗxc²NXŻ°Ą×Ø0IėŅõł_ś‘x5šjąR¾3½€#r‹FĘ)ńÕ „ų9 Uī—p^ļ>ūĆéū°X­żÄ[Ł©ÓPG˜I¼n“{I•jŠø–ķ £TŽĄx«Ä}’~üźūvÓ]ī­~`ódžPK i5Pw°HŒ2·3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lag.phpUT÷Hƒ^­“ænŪ0Ęw?ÅmJ ĆF×4M’Ä ¢&rŠŚ)P@K”ÅZ$U’²ąGšŠ‡Čę%S·¬šģ§ź‰²d9A¶r”ī¾ļī~$”ӏiœv:ƒn·]˜ÄLCÄ ø§D˜˜Ā9QS)0ĢɌöŃ[Ś‚cų¢0¢zʌÓi~JÓ$?ŪY/„²¢,I éR±Yl€ˆP”q¤ˆ¤āÄ0)z&”`nĮhnėnÜó‹Ńų¢lełLL äDCČ“QlšBĪLŒ ²k™©€ā ŠĀ:ŠšL J‘„Æhš€ādJ³=RōwĘßŗß}æļ ØčćĶ8=øļ.‡SÅBF¹ĪąŽ™ÜŽ¢ęxwwĪCÆrä”ĪC²Ō;Ē׌““xbŠ•Ę22Å£Éź x“%!ĖčsB8Öh[枏8*µ‹% /Ēł:–Źģ†~ĆāÄO°²šVü©&MZSāŖ?·gx£/gā’uåR˜ø¾šėķ**žÅŒ˜Ķŗōb,M0§T„öÜ×9cóŒ³ś[, ŸI#†9!†ģźųv…‚øi“Ų¬7kՄ½ŪÕ¾Ūē«#ŲomM‡ą—|ŁfķĮjw^IܖūnŽæ½¼]Ø2?— [a!‘Ö¹ņŲJ—‘…r·Ś›)PR&{Nö^x—icĒA>…_2™ĖĶįWįć M„½³ŽéĀĆot"*]"Ō©ŹK$ƒĪóŠ~Fa†šż9 DZöŹĮµF3±±k¹®µ…V.ė홆’Oõb÷·T®qī:Nu­Ž">ō īuœ=udTk×ļ^?ÕBmOD/M˜ˆu 4A\7n]§I­ĶØĪ½Ż3§•zź.ŚLz‡&[sF©čśś Ŗ¶$åŖ¢ ½²Ōz‹±VI?|čå`{9PGƒŹPqÆ2Ww[ŖoīŖ ļĘEó fĮPlžµö±µ‡\*‡É$šN£ßhōŒµ5‚) Ų·p€Æ%Óx'4Fš{õŃc‘£J˜Ē³[Qą¤fĒüš|±*I'ØĀ?\ė4%üÆ8Ż7” ŁĮ|ß+¶õóīŁĘ™;ˆ<¼Ō«84 8ś½jS<½W“9Ō¾I„Ćcų³ćģ &2MŃ Ń$8@h$j ÄŖ÷īYQų„Ży“ōLŽĖv5œBµ¶Ģ›Ź˜xjK6™V:×kIećsģEµŌ£ā ŽŹ”NĻićĒ4œäevaÄ”~7>¬µÆƒ»Óp~ƒeõŌzå~½·+ĮTųÜż?øEūҬ¾Œś,ŗĢ-æļ›—ä+»!?»įµPžx8‚į® ‹ÓŻ_hƒt±2»ē%…YzŸÆ’Ņ×Ģ›ŃÜbŸĖ/Ó%Ų4A$©jdš3_­PNwP"Zå~—ķīķt8ž?Ž«ÕÖO‚Xl…‰Ŗ0¹&8ĮBt£ŻknģQƒ¦­ģ`„qĘļFŒ0Ž/§÷qģwCt½~`wožPK i5Pœ•=ńN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lg.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ Ū@“ŠĄĪ•›ŗµ, ŽCµ·'ķ8Evžædóm¬Ŗf½®` ߖ ģŹQĀj ¶(]šeeĪ8R]“³üĪÜĆ«0z8RźX6Ż<¾ų2­Mø<żK߂,ACvLˆWįŃ* ļĮ±!ŸJ„‚\P9ųˆŽ°ģ~™¦Å÷qŲī_ū9jįS‹ &č9©p—•z˜Xm¹)ģ)d1TŠś¶™_8{OžģĆä”§³S—ŗœč†Ē’ •‹;R6čÜõ ¤Y|1üd‚¶Ż>Ū¶^5nlOļułÅÕcõPK i5PgrtŠ™Ö5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lg_UG.phpUT÷Hƒ^„TŪNŪ@}ĻWĢ›ŃX½>PJ $h Ré ŖŠjlOā­ķ]w/øęŪśżŖ®½ė¤)Jj^ęvęĢŁńf?Öy=Å{{#؃Æ9×0ē%³5*r&'8E•HįRi ;lßIwįDqpM:įĘĄaŅ…ĒĀ…ŅŒSYč¹T=Ńܖ%¤²n_äPdPņ”„v#Å\Ŗ —bź’Šåī95}ßģāōģśę¬£źõ™ 4Ø!ćŚ(žXC4Üä®ā“kiUJnP֋»v½kr©ōA翀IU-ĀĢ.œ„Oü '\aŅ ²Ŗ[kšøčóc[”\؟cA¦§Ud¬€JaĖÕ%¦älj•ę÷“£č‡åŠ€±éÅĘĘQLbģķĆ·ø_䏬#ųpR}zÖ'¢é4¾ŗŠoo£ż¾tēMTIaņŠ]¢h°ä­t¤Ń9%«ą ×¼ó&µ-¹OaŪ;—ÖŠą”Cn²°Ś²soČmŌP•`}.\:ńžµ¼ŅSҽ».‹i·a³dAAMŠ”AC˜‡™aŽrVCTdŲKøĮ„sӃO°Ä‡žyÖ`a®ų2Šhģ2+A2D•-ųhŅŚ¹Ü¼0Ėw½ņęµ7o¼yėĶ»ĒT’E4ēJ樘œ³Žµg{Ŗ!ļA]µ‹ZrĖØæ>—æg©“Ā€ųnū/ĒP’Ö Øä˜”šĻĄ"{»oY šUƒX`øśQ»„†lsójókuIø1°µŠlĮrėk€Ņ]°Ā Ł–²½»×Ģ×5¢{••J?¹ ršaŁż2Ķ«ļtÜŚĻƵņ©E… œTøĻJ̬¶Üö²*EĆ Ū,/\¼ßžģĆģa ³SšÖŗœč†Ē’ •‹{R6čÜõ ¤Y|1üd‚®{;~t]½iwķ©.æøy¬žPK i5P­5±Ļšą5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/li_NL.phpUT÷Hƒ^„TMoÓ@½ēWĢĶm!q*P m‘*Ś Q.UÖÄŪ›Ų»fvž"ĕŸŠ?ʬ½vĄ•*|ŁŁyóŽ¼żņ«7uQO&óƒƒ ĄēBYČTI cģĄdą ‚ä…Ń’JV˜ÓLj}ł^²ļX”†+² å¼Zų鱖©q³ÄTG”ō½įV(kŹSoYå…Ō)”*!m„„Ī Wč”ŃSØKBÉ­mZŽÅłÉŁÕõ™—jż¹lŠBŖ¬cµh„°Q®D¼[ÓpBŅ(mĶĪż =÷mć ĆöŠĒĻv„ŒMHk“‚EVVbI’39…ø( \#£ūŽ9ĀŖ«:Īu33œĖ |Įq%+dµFæ­&×°dĘmĢT—˜ŒIĆV­ié[£˜ ŽOĻ?Åń,š“žÉESų:ł¢Ī²ąõQHµé‹6žĪ./g_䋦-xÓ Qe“++Z¢˜Ż +Ż(S‹ń0­±óÕ|÷£lS¤–~\6ŗ«Y6e`“7Ö5ÖĒ–jG•Hł‰Y9BmÖC:%ŪÅ»¾b+ĒāīŻ[ĮN0œ#ĮF0ś‡Ī”kh8ōŚ­RÜö»p{÷K§Ŗ„Vhś0E¹!ĪāŌW‡ŁZ6+„·h\—’³ĻĪŖ|·Š*“ zń $’«”žO©L±u±ˆÅ&‹½n«÷< !ßyŌ϶„ÜV½˜N)-­»m‡‰i“ƒŹTw?µßõłJ²˜J%÷ŸŹ“ź1~Z“Ž5XķK4^A“E0#>ø »NüeééÕ8$Ė原ķ¼AIō?Š`•°\TČģ9MLåŒJdū %-”žCĖuōt“½Õ$;E“"¶“8wOZWŃ$Uõn ¾SŚ åMU±TMZ%1«DŠŅŲ’2WŗJŽŁ“B°ŲLąÜēķž~p>‰b”»Łh̾Žœ|ŌĶf"öj7@>ö@tpŸœÄ_ģ}š¬;¢ZI*CV“DŁ^XÉ(Ē™ī¬ōR9,ņ§C–²l/ é­ŹZ…čh…2ä-ƒDX'£ˆT0„š p&¾wöj;ÜŲ%ŅUS”„Š/£ƒ·ģ;éūM„ÜŃž% …CĶ”Üń<ƒE?¦j”X@Š’˜µæCQlŌégœeūĖīł3”ŠĆ’DŻ*²2•-ÕW¹6–²MŠ r·Åj!’S*Ś·b\åÜéz½ē!šŽä¢Ī[ w¬ćQGh;U$†Ōž°•ā˜¹ Ļ4V’ ūńTą–¾vuVų5Š%FżĶŗ?üžÜ«­Æ„»Ė R–Š«Ģ"@fXü Ē~XŚ}f!ŗ&üŽÜŽPŚæÖJÜ®°żŁų/÷ī·P>üI%Ā›Ņž]ol_¶—Ć\żUæ; |@Ē1˜*™ŻX}a”AŬ _+p¶łrōPK i5PŒ|į ¦Ż3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lkt.phpUT÷Hƒ^’±nŪ0†w=ÅmJ ĆŚŪ4-š¦@€"CŪ­(ˆu¢I•¤"øÆō!:všŌµ›ė%Oճ墊`Šäżß’“<^¼lL“eÅl–Į >ްdK cƒ!_B2WJļdI×xG Ńīågś^F·KN .Źżō•“©O ķW—Gé[FĖÖZоY¾3 ŠU`Y“‹é–>¬0±wsh,”¬Ż3uīŻĶÕõķ‡ė½ÕaÉ`‚#TSą²MTAĒÉHEö}4IPuŲl‘Jmp€!ąZj,j’Q·!ņ=śŅr PźĶĶ{„yAn!7“ĻįS–|łŹ»drxq ł3ķ[—Ąąī”ŪnDS`)FdKKGb’Õ¤„źˆź±ūŽõögĒ»‡“AŻTÕĘ3҃“ĀÆ(d-‡ź’'Ķ9TO =ö‹<£żūŪvS?žB‹§»Ģn*"­žՃkĀįé:tŪĶZŽv>?*ĘĖØF-zQ…C¹“fūćŸI5ZE5Ā÷’HŚ»” k¹Ńį_›8^Fõ“Ļēϳ?PK i5Pа<½Ł2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ln.phpUT÷Hƒ^„UĻOŪ0¾÷Æx·b­ŲO©c l 5€iš&d½$nc‘ŲķP…Ūī;ņpä°BN•öGͱÓ.Mh.³Ŗ¾ųū>~~ĻmvßOćiÆ7ŲŚźĮ\ĘLĮ˜%Lœ¢Ō Ę c ‡(Į ^ć„ö¶”o„›šA2äpFUĄ“†Ż œīs3ŗŠtƒ~Ņ³$PLsÉ&±ä$,¤\™-łXČ5|¦ EƒŻ0:³ėF§‡ĒgĒ„•ĶOĒØa† "¦“dA¦i3¦cƘܕČdHĶF‘MvPž°\{éXH5,ŸŸĮ— ć:ƒsŹ‹š‘£RęįÓĮčųóא”ÓŌ‚t’"KŹóX3Iu&9 ”˜I§ †ŌÄ0“ŠŻŠ IdLR äčōœ¾7 ¼oŹģmĆ÷˜į¹ƒ*ŽķU…G—ńNN†iźm׉‹3Tj…tŌŃĄ|3c…Zpąū>“Ł:ķxhļ½”EfĄ:ķ• ^*øŽ«“yŖøē·Å=äh>i LźXZü0)ڰ™é'Ԝ²6ØĶ¬„ŗx ŠūĢÕSYĢ H`Ā‚6°Ūā1mīo1ąĘe~÷ē×µłś¹V±8ķj©ˆ27RWĖ‘—ĖĒAR†TŁķpźfhgyĘ]° N“ŻOe˜ß¹ČolˆT°ÜlFéu„ł¢3#Q–sbkį “nb²]=ƒĻp­Mup٤:XµØ-äOKo5ækeµR„t§oĻū܅.¼tį• Æ]xÓo[„Œ’—Ń˜I„‰±"bLJWė¶S±īD%[ĪrŠr”r²%ā„A– CažkŖßŠ—Æ§¬]Z»5Ž_ܲU‡“‹Dҵž_%« køĢŗi$ĖBV a®\Ņ2‰:Y$ė$6ļ§0÷œOš…Ž;8$ėWEfܼrŖgš5»PŻĀ§Y$]N£h(xUE'ó;цźd‘t[\m¾ķżPK i5PƒpX]l5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ln_AO.phpUT÷Hƒ^„MNĆ0…÷9ÅģUÕ€ņ# H• `‡P4I¦Ķ؎Ę¢,¹C/Ą’+ސU%…“VBvxį'æłüüäŁiUTQ4"Į}Į–l‚V( n ZĢQRgƒ•­qE“ĄöųAvēĀhį†|ŹŖ0Kūć™ G§“Ģ•'{ōŹÉ“¬ĢU­šŖP@›ƒįŒ¬OŚ„“•Ceƒ÷ĢŌ ÷®óĖ›»Ė>jč§*4č!gÆĀi­”CĆZ„Ičī]-…‡ņ”ģ4ŅZ, ¶‰Pe0£ Y-žŸé@č©f!H’‹Åm’L⩱“š3ń"+nˆÖ9¶>†ćxˆ©%»Ā0ŽK·ŽnĢveƒŠb™ŗ_nٽ§hŗ·æ¾{՟7ŚĮ·Ż’ak÷jwxµŻ|¾ųķ&~’l˜ų‰~÷ģévß*5ƒx„ķ ŗ“Ź’Žź‘’•$œ3•ū«}i»ź÷Ś}¬ģńĒĆ£č PK i5PWöžW5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ln_CD.phpUT÷Hƒ^-PANĆ@ ¼ē¾*HļPAC)Ø¢ōP@£Māt-6ŽąõRń$ŽĮĒŲ8ŁĒc/oG;Åb>/`ƖōäR(ųŌ"¬4žŌ~˜#–‰›égķ9Ü †=††TaŁärÅ©ōZ¶~øł§>x™„śč“~ü:ZĆ8j‘CZɽ—Į(y¾€Ń”IŲįišŪmכżĖ&KMžŌ…“ ŠQP”&*vp"µ©“¼„œ؛Ģ.ņ…y¶Šj½„«œ_Ā[Y#ąŁ° !%Õnóō^ ć0ø:†\¾gŌ(œŸ‘”®ļ·‡ŗ.g ĒezēģŗųPK i5PƒpX]l5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ln_CF.phpUT÷Hƒ^„MNĆ0…÷9ÅģUÕ€ņ# H• `‡P4I¦Ķ؎Ę¢,¹C/Ą’+ސU%…“VBvxį'æłüüäŁiUTQ4"Į}Į–l‚V( n ZĢQRgƒ•­qE“ĄöųAvēĀhį†|ŹŖ0Kūć™ G§“Ģ•'{ōŹÉ“¬ĢU­šŖP@›ƒįŒ¬OŚ„“•Ceƒ÷ĢŌ ÷®óĖ›»Ė>jč§*4č!gÆĀi­”CĆZ„Ičī]-…‡ņ”ģ4ŅZ, ¶‰Pe0£ Y-žŸé@č©f!H’‹Åm’L⩱“š3ń"+nˆÖ9¶>†ćxˆ©%»Ā0ŽK·ŽnĢveƒŠb™ŗ_nٽ§hŗ·æ¾{՟7ŚĮ·Ż’ak÷jwxµŻ|¾ųķ&~’l˜ų‰~÷ģévß*5ƒx„ķ ŗ“Ź’Žź‘’•$œ3•ū«}i»ź÷Ś}¬ģńĒĆ£č PK i5PƒpX]l5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ln_CG.phpUT÷Hƒ^„MNĆ0…÷9ÅģUÕ€ņ# H• `‡P4I¦Ķ؎Ę¢,¹C/Ą’+ސU%…“VBvxį'æłüüäŁiUTQ4"Į}Į–l‚V( n ZĢQRgƒ•­qE“ĄöųAvēĀhį†|ŹŖ0Kūć™ G§“Ģ•'{ōŹÉ“¬ĢU­šŖP@›ƒįŒ¬OŚ„“•Ceƒ÷ĢŌ ÷®óĖ›»Ė>jč§*4č!gÆĀi­”CĆZ„Ičī]-…‡ņ”ģ4ŅZ, ¶‰Pe0£ Y-žŸé@č©f!H’‹Åm’L⩱“š3ń"+nˆÖ9¶>†ćxˆ©%»Ā0ŽK·ŽnĢveƒŠb™ŗ_nٽ§hŗ·æ¾{՟7ŚĮ·Ż’ak÷jwxµŻ|¾ųķ&~’l˜ų‰~÷ģévß*5ƒx„ķ ŗ“Ź’Žź‘’•$œ3•ū«}i»ź÷Ś}¬ģńĒĆ£č PK i5Pź=w‰œ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lo.phpUT÷Hƒ^åVßkG~×_±oNkį>ŖIšśGHĄĪK!aVw+ßā»]±·ŖkŚBŻ¢üęF81=ƒĮukīūģŸŅٹ½Õł¤Š¾õ”‡@ŗo¾łfęfN÷æźGżF£¹¼Ü ĖäEÄSŅć1#šŻ§JŁ#:bdƒŖ®pģÓ=¶ X æ|FÖ§‚QMhJBžjÅ»ĶBrĄuŠžŹ  QlÓfh}æčHŖ“eN+*ž:—€_/Ō!¤żś(¦JvƒĄµtČØZ"’„V B“}4ŁĶҊ3/°%Rčč®=’Ńd'&ūÓdW&;õĄÉÉ*)MŒķ׬ą91ŁČdæŅćfA£)KHė:ĒVDžĪ›#Øk ń³Ér“MvnņŸŠį­GĻBĒS- еä“Ģ馛ÅTRJY …“żŻŚ&ū`ņc+ȖxTŠ›˜ü5VüĖ5 ó}gmå©čµ={ąćŌTXÜTݓήyĀLvę¢Z"(ɤÄõ”Lv…t]Āöܘ술›oļõŖ _Ч?7ÕfYÜ!K5S¾±¾eØpRuÊĄįÆ=H”e"•šĘó WųchęųćZŌ„<Ž~QšŸŽMØmņ3äš,¢ˆi:_Į¢§fÉ"GÖĶ‘ž :[Ń­8u;a»Ö©B.h\¶p„|Ɩ$]¦ü¶`Їœ‹“]™¶XUļš®ĪU”öV vź9ʘÕ[˜Ór][oø¹EŪ'O8Ęi>-ļmL8ŗšv@ž[Ž®kްtŽ#£w‡°É¬²kŒ–ćš·† „ƒ Ė +o²ćjz·åÄŗč@4DߣāhTzŁ®×ŅßMįU©’·E°/\ŲŖÓ§ öŗµžĆ³ø¹* ō¦˜ ļÖ拱—œfq[*±„ŗĄgeŌŗńŸÉ(_Ē(Ā…÷ß8~ęҳ»Z_xĘžø9&°`Üb ƉÅt¾lü PK i5P“ČdŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lo_LA.phpUT÷Hƒ^-PANÄ0 ¼÷¾-TØ}+@,‹“ŚpÆŅŌŻXdćą8Tü·ādĶx<3ņž1‡Ü4}Ū6ŠĀg 3E›Ł‰Ļ įądäd”’rģL»Źoü-< ¹g,#©Ā~\įS2ČŚy¾>üK_Y6£¹ĘžóÆŠ%(ø4A$©XdšY®N‰ÓäˆĪøĀe»{;ŽēćjµõÓąW`¢¢BcUœ`! ¶±ī…«x“ i+Ū7‚Z%ąw%A†—Óū0t»>rgŲŻ7PK i5Pxł°¾3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lrc.phpUT÷Hƒ^•ANĆ@ E÷9…wi«*ŁC)ˆR¤JØ `‡PäLœĘb:<3­z8·”·ĮP÷õƲżģ’åŁmßõYVN&Ląµć-[Ķ=JßBģ(µwŚ2ø”BŁ>2cøFk 5dzśTŽ9-},ŒßĪ’ŃG/Ć”6Y Ę÷įM]– ¹ ’®õ²ÅČŽM”·„ŚŪ1퇽§Õb¹~YžN žb‡ö į…멁=ĒN'ź=ų$†TØĢ–™PLāEšP õ i6Iļh$ō™XŖźaõ\UE^’+ō3ł޲ 4ņ-;Éįfł•ńÉE8~æ~”)K°YĘŚŅyć«‹$ŽĒףPK i5PśŗJ~ą)6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lrc_IQ.phpUT÷Hƒ^-PŃjĆ0 |÷Wč­m(ɬlcm…чmocÅQj1×öd„”?'ģIÜétwh÷”\2¦©*|:Ī0°'(3”(ÄŌģQŗ ešBuŃĪņµŻĄ‹08SīXvŻ ŸCQkƏ’Ņ×(‹Ń0z6¦»šÅ)`čĮ³„Kd¢\Q9†-$OXøӓܽöĒóĒq¶Zś©C… 3ōœUø•z˜X]Ł”ī9Žb©õKŁĘé(Pļ­Pņh©L;Ję­…~G‚¶=œŽŪ¶^5^l]^³ŚĀ—łŽ<˜?PK i5PbǑڱ2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lt.phpUT÷Hƒ^XKoÜ6¾ūWA'¤hŠĆ&M›xęaFl¤( ĆąJÜÕX©ņ±Ī¶Ī1ǜÜšs9äžKw’W‡"õ ¤uP ¬y}Ī7¤Č}ųs‘woߎ ·ÉQŠL!c’Tj"¦D'ŒģP9UQJgģśZ÷›Ń-ņDåäSК<œXńŽ¢Šw"‘?ņ®O…,¦&ĖH$Š…„Y¢ å1É b\į|*dN5¾EŠŒQṒ—q{Ļwv_īZØ2?PMĪ©"1(-ab4‹É9č-˜»FF ŠĖdļŚŚŲĒF'BŖ‘}ß& dPŒ¼”&J˜tŚ#e“Č yi¤ˆ©Óé³Ōø·9ĶbŖīßūщ/ŒŅ˜ÅĶLXåŌūō-ŁgćŲÜ©óX‚QäåŌØŚó…”“ O©®TS!“2Õų;‰ÄyŠ“$c–eN»Ė%üa0}ˆ©WB.xÉWĘ“H%’w@µfR  ŁæŸy&¢”‘‘†œU£…mdV_Cs+‹B„¦ Ćsjõ ³‚gÓ žFŖ”§ •>µ‰éiżķ’¾ÅźSŁ(Õ§™ūH Ói“bŗ|O4¤5’Öø` Ó¬æ’sš–94xRVr”ÅY`wséā`5śPeE:€…@ČzŅ“ āSÉ"#%ćó_RDŅĶWĮJ é>8‚coł`é¼ü‘Qm šŌ-m«Ć„„`TŠ”Ǝj¼ …Ś«µø]žĒ› ę 6·l%•ī5(Ų—IŁśN9c3,Ņņ²Ōƒ\}e™3dĄ j_¤™x0ÖN’Z^ž9A“ņ¦E*Įṳ̄ž¤½ļØS…Ż$č³ó™ł¼|J>ŸG9ī¬p’ŖżØ~¼z,Ū„H]–ę“< |¶žȶH¹–-QK†ėø„H™žƒŌmĘÓ¶¼ś„ė±Vt“°äā¹!ƋL7W©:'Öł8±•g°•Øóqr+ŸM>m p-»üŠ~H?GÆAū`Õ ÖB9$äpŒCń 56M•Zš€$µÕ]ž=ƒ„ŖTļ¹Ööl”ē~qxĆaĖ2R*0:ÓļųlļļoĒŃ[÷ń!ćń±n”ƒ÷‰õ鏽7ˆ8VóŠ(^£cæ7¶&¦š^8®v¬ćÕß`'ć'gÜг·ŗq{mwĄ!—ßźūYŒOĒ!£Ŗ…ńĘn] ėŅ`P•¼Ą.?Ÿ@›ūn¦ü®“י±1^}Ż^85<²æˆ›ßq“O˜¼EžŖqŌ9č(4Ł'²æ Ü:ūų[ōę½mlöżևü° “³)5™^tƧ·MՍ&ņ]łö®Śėp·Förߎīƒ]€_O¢|Ćņœ<ŲųPK i5PÉåµ0Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lt_LT.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ Ņź6;óPK i5P\BÉ@U2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lu.phpUT÷Hƒ^„R=oŪ0Üõ+ަÄ0ltMӓ؝"AeM– J¢$Ö©ņƂ’G²yęėI§vŒNåBņݽ»ć“®?wuEÓŃ(‚<ÖLAÉ øwDj%čšĀŒČLp,å+RŃ rśE~ _%#–TeLkøĪ†ėŽW”'¹hoõ›NØ4M¹č6’UµĀ hXN¹BK^ ŁĶC×P‚µ5£½ėKīg·Ė‡ŪAŹåÓ5ŃŠSZ²ĢhZ@ĻtfWĀȜ¢QįĀN#Iµ‘ˆ”d“JŚ5$§øēF*¶¦’ž2LRHÓłż4ÄSŹ'8™x ĻąŠ[*YĮhƧxŽēŒQ<4¢ńĖŲÓzJWŁØ@KLĖxeār%ŠkYvK6vėĻ„WvļŽ?ķkļ •}]{nb2'š^?UµśÆKpš’æU^µ÷’ė w.…’KØ\ׇĻšóU®=±{¦j꣏¾6®ŗ°{ŽŽnv?¼¾ńHLiX뾓Ģn»UµżŻŌī‡ŪźŠ«ƙ˜A„Ŗ·»•Ż)»ī3†÷ķ»¬'ÓĆÄ^äÕÅ4&D ÉBŖ@©C†ąŒƒß›YɤŅ)Ī8e:ŒŪ9~8 īoss%WN]%¾»»jŃüx8B®”:=4Ÿ.¦OøN ‹ÅĪŃcŲćpīżF+pĮæøųš—ĖŃPK i5PįĮĪ‚3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/luo.phpUT÷Hƒ^„UĮrŚ0½ó{s’aąNÓ“$NI::L§“Éhd{ĮŖmɕäxøõ7ś{ż’ ÉŒcrØ/;»oß[é ‰ĖOyœ÷zƋ‹\Ą2f V,E01§RƒXŽnØ 7„0”k˜ŽmūYxגQ3TÓ.ƒmś™›TčA(²«Ŗõ‹VhU¤)„"ßH¶Ž5PAŹB䬌ä+!3Ŗ™ą}ČS¤¦öʰ“¼‡ū›ŪŁāv+e×§cŖ”¤ "¦“dA”1‚’éŲ fķJ2D3(²‹ö$źBr RŅ ‘˜§4DĆB*öŠgL"āß?2š†ČĘÆĻ=0Ÿ—”dĆ̃WšģĶ}yó„÷Ņwx‰˜Dt£*ük‘Ńœ„Ū¦ļ…H`ÉĀx›l#Œ%ۈ}a²Oųśļļ?%ņ}%ØØ³5*њGT,¤ŽM~³Ÿ––>~tĮwaęµ›,ŚRć’%” ®ć~‰Q ć0fhØ+»ķׅʁ:?4”.ī|Ø E[9`-ķ@ČFanXI³ÅüŅó5Ś–Ī+ÄhīøqžųĘņœg¾óĢwžłć;ž\˜»`ōēĻ:ļOī]6©g¹ŪQŁkK¶ü°“ļīn”e^’X #„ ƒ|8˜ÆīP˜N§ŠFa‡C{zŻ™Æ]Ķfwn{4§` 1[s£P\W]ަ¢dO5œRµ˜Cóœ4²%'Ųūū湟E ”Ż%T×`n„CyDSqĎŗ!Jŗ˜Ķóč`õʖćnˆ’Nje%ćę)®Ü¢ Kč±×Õó6JÉ)×cę ¾Ū|ažŽRļą”¼'órž”÷PK i5Pʰ:&r#3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/luy.phpUT÷Hƒ^UMoŪ0 ½ēWšę6bģėŅuŻŗ¦E»Õ°ö2…AŪL¬E–<}ŌČæŸ,ĖiŒ C=$śń‘¢%ūōs]֓I<N` %Ó°dœĄ­5*r ¦$ø@•Iį |+š;nK?Źį«b(ąŽtƌÓ¬}ü"Ü£4ó\Vgz%•O““œC.ėb«ŅŠ8ĖIh')–RUh˜3Ø9”ƞ5>īöęāņīž²Måė3%hPCĮ“Q,³† h˜)ĒÕ®„U99”ĀO« RøIÕsrkn•fĻt¤čeŠ M7?ÓtÅ$ę®3Ń 'ąFŌ­ Üč>ĮcōĶVX3ÅĮŪķm!č²µ«tõĀ÷Ž»ƒō¤6 ’šEO³”fŖK©LÆüÖsßłł½Ÿ?“ó9oē›ßy³Ÿ£bā’2TR˜r»o»m_Q¦z;Į¼ōĘy­ļ ĶaåŲ1VRoŻSmØŹ°µ¬ģ¬;łÜƒ ŅŽV2ģŠPKW† E +ł dƒfŠŪjug1lŪC¾}šHt}}RUŃl×qæć9Ńząģ\‹Eœ$ń/7ĪŽ I’Ą¾wׯła_}K+ܘĮ!²Ū_ć¤+q†§v{ߐė£Ļv’K+Œ»¢œ1H] '­amF±1#°óź!k[5¤ŁA•jÓQ /wk!¹5Xe‡ešqtLGItAī¶{k’ń.Š×S1}męŽ_ŗoš€Nk+ātP”GĒt”D8LøŰ„•…=|Ā‡ó•tLGItAšr)ŠQ·H¼sć%Üoóéųćä/PK i5Päiļ"c2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lv.phpUT÷Hƒ^„WĖNäFŻóµk‘žŒ”™LĀšĆŠ 4R‚Ŗ¶«Ū…ķ*§Ķ0™,ų€¬ų”%æeó_¹õ°]å&Ń“iµŗ|_ēžzÜŪå×ßWYµ¶örcc m ³ŒJ4£A0VX(ÄgHeķ`1å TIŽēd ¾Ę}=yŽ Š:&rJ•BƧFüČÕ8įåļŗĻ…šé¢@ Æng a–¢‚&„IHÉf\”XQĪ6QU ŗ%×6īčŻĪŽń鞁²üT†ŗĘ„T*A§Z‘]S•øK®EB Qjɾ434±ŪZe\Č-óü:ÉhA«Š X'N[QQRF„“ΤV¼Ōč½<ÅN§®rķž¶Y* Ż/õmż'MĢDR¦(Y8Õ^:ĒB¢·„ĀØ¼ß”ĘŒ*Žö±Ā^õ*¬•D§Š×ä>ßvNT%uCa'ƒlŠWĄķ’¢šY˜ æj˜M±WŅ’3»QŠz@,`7O°RDHΜņ=–•åˆYĪ2ofsL^üs/ŃOrōNāOøįJ¤Ņń/p"Ńŗó›Īü ē’ų‰Ā<%Ś›TĮø~eDā$ļü£f ’Ū½P:_CšŻ,Fč»7hō5šć”’ņóVĀĮŻH2xĖhÓǬ€/»4æ½śŻ:~y4¬°Źš”e}ĒČć}č5ø'‡.8°;f:PkĮ†eŗ&$o˜2’Öwõ_õmļ5XöąŅDTĮ0ķĄh‡50SŠŪm„ÅfA°»HolƆįĖ6P÷®«AdŠršŌP, ­ÜE6ę64ZS©‚%ķPW³rčgŠ ŪJŁćƒŖļŗccDĘ28ńń „Ń ŠĶ mІd’$į¬ŻBIr3‘.Ž)ŗųÖ”—’äĻŪģ2~üž@ZČÓyŌ9w€ę_C¢-EKŅdœ ^^2ī+¦Ŗļ’ÖīƒgŠ=ac@‹ś®Øoó`Ją‘„6KozÖeb;–›”ŸeÜķĀH×óōē/E°=)Nķ{Ml’özQČb „éo5Š“Ÿ˜Óu½Ō†ā&ÖćŌF A„Ę“Zī":n0QSźQqī+€˜ēŖWč^#‰PƒX É5‰Ž‘y²Š~³čwšž‰ńQ+ć¹~Š[œ'+žöBæ©ōWČG­‚”tX÷+Öt:¬Øć䃫ŗGä¹e³\×=VĻ.ģ˜ÖŠ•Ż#3¬“cj»Ēā9ÅŻ;:«»ržY޽XßżU\ą3*¤²ŪĻgŻ…łUp¦@ļœģ‰©}5łĘ{šźgē£Md¾H34ŗh0člÖ];†…¦xk#¢½ļ.pš”¼ļr!Q?ØöFc_ŠŻ˽žYõљs=8Ų*››˜7œ–-)#£3ķīŽ'“ńĻšGVo¶t“ĄhwŒ&š‰ż–q6Ń2“£’Œ.‚ĘĖä§;’p;S¶Ķ’››X+p%Śg% {µRbŽeĆ(’w’„pB?å„Ģøhöųt16Ž'ö÷'ū{fwœ>·Ćéx„¹·Ą°]¼™:¼°/ź[8 ĘiF¦B·R‰…ŖoĶ®@U4Zzå“W,x.šg¬ēZśHI*EŹ©Gä¹āĶ3ć‹Ī’Ä 1Éh±ŖqŽ'S3LĢŁF£ķJ8‰šį8ł±°V=·³vyr;s “K’.Ō¾ų»\•€ķ|¼Æ“ģ6nł­ aß®ż PK i5P“ārĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lv_LV.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm£Bķ0bŅ$“ą½JSw±Č’ĢqVń÷øO֝Ļw'ļ^²ĻĘtMc oO& :³e4x„½å!E„܏½`«ŚE¾ušĘd#œ± $»aÆQa’Ö„ėóæō=ńj4ÕĄ„üĖtń6ŽČa,§ÄW+”ā#ä€V¹;į¼Ž}œöĒó×q±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ńV‰śžpśģūvӅ{«Ų<™?PK i5PJ> óO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lzh.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ cH“Š0ıJS·±–%ĮqØĘÓćvœ";’_²yL.UU³^W°†££ y=“a8€8„­į.]Ł“±Vķ,æ±·šĢd0w$›nŸ‚ŽQjĻ’Ņ×ČKŠP¼Ӆit&ōąÉbČZ†Čg#Ć$Fw?„Óā{Ūow‡Żµš‰3“ÉŠS¦®ö0‘8½Qö [Ō¢~męĪŽĻp q Šć`Š`—ŗ’ńŠGœ•Ź'g:²ĘūĖ5€Q 5|b„¶}Łæ·m½jüÆk_µ~ćź¾śPK i5PąƒVńŒ6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lzh_TW.phpUT÷Hƒ^„TĻOA¾÷Ƙہ6^LHõbH3™Żv'lgźģ,Mo˜¦j‰— ?ä"ńŠ`4z9ųĒMų/œŁ}³u#Å5īeŽ|ļ{ß{óvęĶŻmĶR©25UBSčIĄ"Tc!Ezm©Ø!P“H¤+ø†¼MR§eĶ5ō oŻ—Œp“F#—)…ę\³]ąz+TŁy >2ŖÅaˆ<ŃlKV"ÜG!ó(tJ^²A|5CJ4¶Åh+‰[]Y\^{¼l¤’śT@j‘ł,R’¹±¢>j1h®=±ōØNä'ÅVĢ Mģ½XBF³ĘžAn\Ÿ©‡ĢõfBᑐF u—…¬'!’ŖXrD¤$m,i3$Õ«ˈmŃ IŸÅLR„ńŅŹ#ŒĖN…ņ²n¦36JHNzœČAwęJąÕp֟n\ž}«>ŌßśŅĘp÷øźL'¤jŗ8 ĮUŃĪÅéöšą•Öv.¾æ¶Öi¬ĖżżĢŪ·X÷$ću2l`±³C‹ķ<Y£4f“fŹ×ƒ#Ż@U!ĶG†4ŒÓ^j蚬«H÷Är:rvČĪs4ŖeTHVE‹ŅMŸ“m_®¶æčÖž¶ ĀX:Āb=°tA™·o±īÉʹ‚8(ƒ,h‚ Ø]+Õ`üæ„“5\c2RŲØš]›™ØŽ ęqÄҶåēöĖȖŽø p; õמ ‹õĄÅÄŪ·XŖ›š:6°$8’‹M -H`°X6ńö- Ɠa‹Łta1 ²›L%ómŲ_sp‡{Ÿ #„d=vf=s….?¼Ń¤Jé1!ICFܐ¹0“ą¢Āæ½¹=}ž×«7 3 .¬œz ęٟ?ŽU 3 .* 'd\Oś’źüżų†Ąó+Ā%øøxQOp?_üńŽŲQa&ĮÅ„G'Ļ~w4<8rģ<ŗĮGšųąlåŻ»ĒĆżĆÆo'­ˆ’7Į7«T'o—~PK i5PŻÕ-ņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mag.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې*”ų8Wnź6ÖҤ8ÕŽž“棳ü’Ćól碨öūöše9ĀĄŽ Ÿ3ŠB@-Į„ >ÆĢG*³v•ß™{xF ŎUįŠ­ć‹ĻcŠŅ„éé_śd ’s`Ā|­śņ1Wś!ȄŹĮ?Ąģóī—iŁ|ļõńÜ|ž×؍O-*,”ēØĀ]Rźaaµł&³ĒÄP.ź7Ųj}įźżö= ˜œ‚ŠøÕ„H7<–˜©Ül±#eƒĪ]oBšÄgĆOb!hŪSżŃ¶å®šplė¦Ģßø{,žPK i5P“śX«6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mag_IN.phpUT÷Hƒ^åRAk1¾ļÆx·i—uÆZkµ­PØ=ؗ"eČĪd&”³É˜dŗģM bAÄSJĮKV—¶ˆ…D’J~Š/™Żi·xļĮ¹$ß÷ŽūŽ÷2oåaÉŹV«×n·  /אń‚ž%Qd†QX'Ŗ/RÉ>Éis}śR² 'vØīsc`„ļįš@(M7‘ƒÕYź©‚PV$²)ž3D¤Pš„ -E&Հ.EŹ‚ä8†ŗķ­õĶē›^*ų3Œ )×Fń~eh CnFŠ»–•J(6JƒŁžŸŠ×>Ŗ “Jßó÷;ŠgD3’3¢Ör)ó‚ęJV„ö¾C‘¢¦RˆRd+Z$”x&•Ņü€.)śŖāŠBol=‹ćnŌ£¢‹Ļuąe š‹źtVgT ·mōžövw£NģÕG4Ā°YEä쩳g/żīĘÆQ©sgy¼Č~söwĄœ=©©·ĪžŒģ;g4‰GõķŌQ¾o0'Ø5õŸœ [SSg’ š*ž½@ķ&÷8PŸƒčU v3żKŠ™._ Öų£Ģ’üCJ÷S2ŗŚ…”će=ąÜĒų}3s3×a0<Ća Æsąūć;4õ˜|Ü 5 ń“ŁøńCnŁĢ€‹[¶‚6b™ÅWŚÄŽ—G#JTšuw¾ĢTń”ÓAcö,(×ūY[žī“k»ź—śZ;ī-ßożPK i5PŪžhńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mai.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې*”ų8Wnź6ÖҤ8ÕŽž“棳ü’Ćól碨öūöše9ĀĄŽ Ÿ3ŠB@-Į„ >ÆĢG*³v•ß™{xF ŎUįŠ­ć‹ĻcŠŅ„éé_śd ’s`Ā|­śņ1Wś!ȄŹĮ?Ąģóī—iŁ|ļõńÜ|ž×؍O-*,”ēØĀ]Rźaaµł&³ĒÄP.ź7Ųj}įźżö= ˜œ‚ŠøÕ„H7<–˜©Ül±#eƒĪ]oBšÄgĆOb!hŪSżŃ¶å®šŪŗ)ó7ī‹?PK i5Pw'į0 y 6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mai_IN.phpUT÷Hƒ^ŻVßOA~ļ_±o¤¶ńт ƒ¾C.Ūė¶·ōŗWw÷hś&$ÄG„]±ABBbō_¹?ÅŁ¹ėŃHŹ1±/׳ꛙovę¶øÓt›¹\ql,GĘČ#—+Rå#šlR©‰_%Śe¤DeŁ9uZcąśˆ3JīINY`ŖĢµ&ecN 0}]püĘdB½ļKLT <8~³-yĶՄŠ ńøĆ„‚’¢źĖÕÜyŅōl•³ĘĶĶ–fΘTØO»T“U¤Ā•–¼hV!-®]š€våŅaP؂b‹¦C{7Š®/Õøł~ƒĢSą'%æŃ 45²Č£ŅqI‰ Ķdž<Ė“YQį”ĄGҦÜ:]qéT›ŗ¾ošĢÓ:¤¼PŸR“(Q30–LR*%mŪ’5=ź0x:T|•Hö$ą’Ūžž]“ķ‚Ud¢#±ņäqĪ“āCQ¹=™@Ļ!`Mē‹KKVĖńĆjųB»I„…»QēužDįÆ(| ‰zu^EįĒŲx…?Šł9 ĘPL>Š:ėQŲ”ļmŪ/‘õ;õo ?Dh#M¼…§)e'ź<ƒØŲŲCžVl|Cc3ꬄäwØŚä³ū²ŒP’ݵ«WhūlnF£)øŻÆäeļeP°Ÿ”žĆŒc«~=>Gķķ‘R:O3¤c Ż@ĘĮ9_ŲˆČv‘™RŅĖ@ Yå‚/Óy¼UēÅ4øųĒR@†ķWķ*—JŪF—±Śp× ®›½ g’W8k¤bć„:ĄĢGøF§ų½›īąvŌē€Šq²4»5īųŠ$ ×Qõ‹n,E$ó8-{, ¹"ŸŚW+Ņ÷g‚öšlĶ*A3Vļ8†!Q{˜|g ‘!'ūm®Œ/0±ńŽ ÷ńTŃŃEäS<Ż‹¢uMy©}=¢ÓµĢ¤N_ó„p¹›Ś—eˆ9.üg([(Ō}čdv„’Ø=Dŗd{ø€æź ®Ęž_»wS Aķ«Z½•ūPK i5Pš’2¦óŹ3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mas.phpUT÷Hƒ^„TMoŌ0½ļÆš-P­ŗ÷ņ “Š-Øå‚PĶ&īʍcŪa•c/HU/Hģ­§åTåŅ[ÅĶ)?Šq¼)»[-PČ!cĻ›7ofbēę<É[­ĪŅR‹,‘ Ód‡qJŠę  ‘;Ä$”<՗]Q ŗŒ±.üZtÜW Ł ŗĻŒ!7ūn{WąVšåHf·'”¤Ŗķœ“Hę„bƒÄ1į,¢B£¤Ų‘*Ƥh“œS@ßF‡5o}ķĮƍ­‡.U]ŸIĄ!h3mė†ĘdČL‚Ö®e”"ŠBq]l§„Ø)”  ””¢9‡ˆ¢ „ŁzMŃ×S”„awm3 —ƒĖ8™ M^µ>AF‹Ķrė6y|'RH«CQŚ1¹}lĒ™żl·=aHiC©'„'E¹=ęöŲ…»±cS4A§Ü¢¹Ż=˜’i6ģš Ģž {^*Ō‰T¦Ģ=ϘŚįwĀgNœYŪõś™¼œ*cāæeR˜¤iž‡ųłž½š¤°ózhoq€ÕĒ{ÕØśxvPRē}Ęe,K{lO¾>ć¹HķIjOq¶eÜ~ŹĻŽDłķčŪū9ų©=ݵ§ÕHM’õ0K”ķX3įy5B=Ōģ»V¢ŖĆ Q'ö‹š{¬”^??ß׉«<­‡æaÜśģĄ½õ\³3ćļoz½hÕ-ŗ²tf[pvSÖena…ĪŽÆ‹jźqö1VRG$Ķų| ŚžŅL&]»j÷ś‹Ś¬®®dYŠž¶¦­g@u»^ÆóŸ°AIÆ×#—ŃiŲćä²śEXŒO›, Ęī|{%å +‘,ž‘8d“tē­Ó!œjMå śœNWІš*æīČ ƒŠäR 0%R YŹ ’™ įæ {~‚’ÄY¶†ś‹g“\)Ā«xަ‘ń ;Y(”’:ĀæO=u…ēĻAAsĆC.ęśü”Ī}¶“žlē_›ńp›cūśÖOPK i5P[įNĮóG6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mas_TZ.phpUT÷Hƒ^-P_kĀ@ æO‘·ŖHeĻsNęƇmocé5µĮz×åR‹ß~±,/!ÉļY?÷mļÜj±p°€Æ–34ÜXļQRŚģPŖmĪx¢Ņ°wų,ĢįE#)W¬ ėź>n£Iː.›č[’IØŗBźo§Vc ŠŁ,c“䂏).”ļmwe'Žūa·?~īļRS>mQaÄ 5g®„FÖÖ.–=§A™Q=…]9!$ŠąĶ õ²É|„™ŠļĄBążėįĆū²X]0—öšb ߬І%«Æž? xŚĄĆŅżĢŻPK i5PŸ·N)hj3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mer.phpUT÷Hƒ^„TŪnā0}ē+ü–¶BšŽķ^(ŠڤŠ]­Ŗ*š$ńŪY_Šų#śš_ėŲ”‚EH‹Ö/3žsfĪĢ8põµĢĖF£}qŃ d’SE¦“@bm R1%:GŅ™nCéfز܊~–ž“kI“UBµ&WIużĘķUčV*Ų—šz#¤+45EARQ.%åšĻHASäŹJņ© 4¼IŹĮĘŽ(.\ŽĆ ŪĘżŖ”ėOē ÉÉØŅ’&FcFTē±½+adŠV(sͶµ‘œ€”°Œ%–¤hmj¤¢ox&ń·”I÷£8nmä-»™ I^Ğ€”¤EĻ_ČK0ڬ,lV·ĮkÓ3ˆó –ŖfÜSĆ(T¤ŠH`f.*’PIƒÕĘ»źpĒL(zP;V¹z«0xvåG—Ż8ӟx93qfų–b”’W!&øĪ·Óė÷Štƒ‰‘·ŅÜM¼^•Fn|lżīĮč—į“v$ųXgJ»ąK,qĖyœėĶ»w#ń¶öģ·S¹ū=ķmiŲqßōƝr§ė{yņ#ÆWk÷ŃšŁ›‘kįÖmbüäVšxļLōųŻIö»ržƒ­wąB.ü0q‘ąīī’± ¹ ŒwK„ö@õzķ0l’“gÜ¢$ CrˆīĀ'‡ź“Ģž&9F¶Ółń–Ņ'\¦ĀpM˜}W†v ķ6)P)"± XóO!C|Bł×ż+#Ķ$Ua§Ń!>M£”Üž’ģ'Ł2āxWõOļßŲŸ"ąs¦‚g{3:G~\EB†ų$×óO?PK i5Pāł×}ņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mfe.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې&ĮĄĪUš:µ4 ŽCµ·'ķ8Evžædūm¬Ŗ¶®+ØįŪRC”œQ±@0 a§ø¾¬ōEŲķ"æÓ÷šŹ¤<œ0õ$Ū~_|ƒ4:LO’Ņ·ĄkÉ΁ńŹ4Zåp¤Ń§RéMąI ’Ń”*»_Āyõ½w‡Ó×a‰ZłÄ*Y%( SŸ˜Il¹)ģ)dÖXІ¶]^øxĻžāĆģa@£²`×ŗœš†Gœ •‹Võ(¤•s×[£döÅš“‰ŗnüģŗfÓN»sS¾qóXżPK i5PųžśEL6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mfe_MU.phpUT÷Hƒ^TĮnŪ0 ½ē+xs¤Ī½ėŗnmH{Xw)†B`l¦bSž$'Hž(ßŃ-+m½5>,R||ć‹/uQFÓńxcųYhK]H¬Ńz0KšĮ5Ś…a)e+|¦TzŪö“ģ¾Y ÷äŚ{øX“Ē+–£ńifŖĖŲśŻŲ “lŹ2So­~.< ēPźŒŲ‰%/­ŠkĆØKB©­5mo~{=»˜µRį~¾@tkē­^4žrŲh_"ww¦±‰Q.;m'l¹__ėĪŪü °r ?Ƭ¤Ģ[Ć:spmŅ Ģ}ž‚üpUˆ™+ŅՕėzŪ™‚ %ßX“·ŹR]bF³Ę:½¦Kæm ”ŗ¹ż”TšL‰SYu2_£V:é†u |¾Œ„Pž‡Brs3½»›>>&“=u!© ū"r’²ģG“%­­Ž†“BėŚˆR)C!”wš»Pvm¦ńmpT{¬BaåĶ¢MŲ¬»JN2sŅwVNÖēßü£y4޾¹ö=£a“‹fÆV¢UŽŪƘ¹®ĆL„ę\GƘ]Yźņ]Œky©5™@’æ…{Sˆ|Ō~7…čv’Q0jż«T ķ’t:”-Icxāē™iŲĆłeŸ{²Q Šß=¶^GµĮæ: :Ę{æŗ—}EĢžfD5@ļZdµ=|'ē=?Š :Āėą¢=¼GĻȞy|½W1¢ Ēmj–ÆPgšå«ųŗīų®|Œ¢čze†ū Č_ö;-ė;ČøAÕ°ÄÓé§ŃPK i5Pš³(±ńN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mg.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ Ū@“`>ĪUšŗµ4)ŽCµ·Ēķ8Evžædū8¹©(ź², „/G zņzN†bāv†ŪteĻfĄJµ‹üĘŽĀ3“ pĀŌ’lŪe| :F©lž„/‘× >{6N¦Į ˜Š'‹!ieč#F(†;˜<ŻżĪ«ļķø;œ>KŌŹ'ĪĢ&AGI˜Ś,ŲĮLāōFŁSĢlQ‹ŗ¶^^øxæĆ9Ä9@‡½É^€qXėrĀ+qR*?9Ó¢5Ž_®Œ’9Øį'#4ĶžųŃ4Õ¦‡ężµŅ_ÜÜPK i5P“éBž»5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mg_MG.phpUT÷Hƒ^„TQoŚ@ ~ēWÜ[ڊ‚öŚu]Y‰ŖŠ‰vÕTEN␗;ę»”²_?ērĄ² ¦jyą|žģϟc‡Ė«bÕéōĻĪ:āL<Ҋ\*|®€œ0¹pŠ Ähv„KX`cėš“ōT|" ZĢŠ&Ņ9q™Ō×kĶWćz©)ÆBčؐ'Ź+„DjV’‹Ā Š™P2Em¹¤Ī •ą¤Ń]±Rģ{‘øöyw“›ŃģaTSy}®'Ö`E&­#™T3±–®`„µ[SQŠ\(óbūu‡uī r…!{QŪēÜ.Š!&u_Č|ĒŌ‰Ņd2—Ģ•lÄēŁ×~’NźźULAĮģFĢ!3üS¹\BwhĪēҲ%ęƒńd4ͳLJÉ`~?»}Äń×Ŗę(=C‹nĘŹäėuNˆ½œ¼6BW‘@›˜p„ E>ӊ¬|ĮĀ•$q<œĢćøõQ÷xjQW|ė~¢ę½ŁH|ø .ļ¾óŽh8ģM§½'~¢®Ÿ›#*vEȊnA  “FcLhkOy ,ŌÖ`ER5>ōĒ­ŃŠœ ¼c`ĘJGŽū€+eŅ\ī—Īsf^vī!ŚĘn+Š-ĻČķuMANŠŅt”~ØŖ†‚»ZkÄe›m’<ą2ĻǦ³RƒŌžźź;€ ÆK°—PJėC~šŅ;-šŚ³ėĻ­ŽT‘Õ±ŠV³+/P‘ļO-ĖĄ螦*„ž/¢\’u1SÅ&kVĻö. ĮßÕh}Ū æöÅķ°ŁÆ‹ŌTšæ©Ćģū}”ŠZAØ$$ w)oЇųmEš¬Ōm†æ¦= A|0õ·Żlį/¼ų{‚ņƽĪŽĻ·…H¼ƒ:#³eY’‡ų8ÉnĀ­Ev‚ųPfƒüĒւ ķś/Hk`‹©ŃmMģŚ3Ų£(ÄĒ)žOßw~PK i5Pęqźh §3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mgh.phpUT÷Hƒ^„SKrŚ@Żė½“MQ°wēN™Ų°°ÉĀårQŌx43Ź|¬"«\Ć×ĖIŅ ƒ ²ŹlZżŽėļŒ.?•¢L’aƗ@ęB:Xɂ€m‰ÖƒY#“K£Ź6ųBÖÖņ³ģ¾Z‰fä–Ņ{ø\ÖīgĶ®ńƒĢØ«VśĶؘhŠ2Sn­|PēPȌ“ć’ze¬B/īCY2ö*©Šqw“ŃõģįŗNūó=Tč —Ī[¹ žrؤĢpļĪ›Źc³ĆĒVZ‹Ū…„²ĄŒŲfĮ:łJg–~i ‹ńä~±¤CŅŽLڇ§ų¤Š¬Ģ%©>^ĮSZÉŒėˆĄ‚Te°WüłżV¤ĻżF_mrÜŗV’€Kō¦V<#ś°ū֚ö°Ž’/*édķLÖĢąN¢ £Ē5Nė÷•¢Ųūh“n<Ż&nSFP™ÓTJź’J¤Œöb7õ“ā­Ae`S”žCŽ” qK…<ĀČ¢ ĒX&Č :Fł č®4" ßG·šćżwŗ›ŃK×Ul‚’'@“}}Ŗ¬ ž§~ņhė¹­bģĶ=ŚŚŒšéęmÓ&«M»’ĘĻ„«ĶmPd]›GŚ?øęēi7”ßĶ#’ŽÜ\(=$˜ ē:dCĒĆétųȧCīX˜N§pŹŅ §Õße9Ÿ>üKĢÓ=ŸHžPK i5Pi©Ą“ųÖ3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mgo.phpUT÷Hƒ^ŻS=OÜ@ķż+¦3 ćNäS"„|HE ‰²Öޱ=:{ף]s:*zŚ4×Q¦H•)Eq?*ė½Ć¤N“mvę½7ovvķwEZxŽhcƃ 8KICL‚Ż ¦ ČLаĒT(……¢ Kphµµ|-Z‡Š˜€Ō!;a¾6•fÉ|w%ż$•3ŠĖ,ƒH3EIj€ E(“m)b©rfHŠ2‹]N]ŻńŃŽĮÉéAmåĪgRf`Ź4pŅFQXä0%“Zʞ]ĖREhqwŲ‘§Š”JSŠĶ…EĘ"“{T*M—ø¦škI !ö>ĮДڛńpī]žqĀŁLūšvĪżŲ²ō2zÖDĻ›čE½l¢WMōŚæōJež”NbåīŒ§³sNĪÄÕ·„¹&}™ņÅ<<ÄĔI­£Üö©nĆź.¬~4@.ę÷7QZ†“Äź*‘Ló‡kÓ"±LŚ„¢”(\|ć-TŻņź®özø¾æé+'¬Ķ'e§ĘTß5żž…-rUżģh]åȟL×»ö’hŗ˜”6}ų@ĘAż ø·Y÷«­žÖA>>sˆxøēž Kœv˜m­{䒶b×ęx¼Éyģ°0aæĻ>”-wodÜ®tÄ}µžbż÷PK i5PvR`ņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mhr.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې&”;Wiź6ÖҤ8ÕŽ·ćŁłü’ķė䦢ØĖ²€¾%čÉ#č9ˆ=ˆCŲncŠ•½š+Õ.ņūļL&Ą SK"°m—ń-脲q|ł—~D^ƒśģ=Ų8ݘ'`Bž,†¤•”<”ž`ņht÷K8ƾĻćīpś:,Q+Ÿ8#0›%aj³`3‰ÓeO1³E-źVŲzyį⽄kˆs€{“½ć°Öå„w<ā¤T~r¦E!k¼æŻ%sPĆO&FhšżńÜ4Õ¦7ēK„ßøy.žPK i5Pä ķ7ö|6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mhr_RU.phpUT÷Hƒ^­TAOŪ0¾÷Wų@,hWĘ0 Š4¦Iӄ,7u‰GwŽÓ®7ĘTāĄÄiā2ʉcQ)l“ō78āķŁqB3FĖa‘¢ų½÷½ļ}~Ļńܳš_+f¦¦ h ½õYˆŹ¬B|kDHÄĖHś-Qäø¼m²E]Ąjų„7‰^F“NĆ"“͵¹€É„ėńź¼…¾äĀ•£Jy¼ÖlĖ—ˆ%Ta B(”¹ØÉx0jJĄWg“aņVW—×7–5•Ń'}"Qƒ„ØÄB)X1’“„Lśķ!„G”PɈŃ;Ō¹Ļ#ésĪźõ#ōš†žłøĮĖ­Ź’‹Ž5‰ēÓ°BźčT”u¤×dŪ¬š –~vEd•‘‚4± µ ń(|½H„¬N'ż1AĘK+o0vøŠkg}( xœd·”ƒžĪ[—qƇówmĶ]Zr¦Mp3ł8UHßf9źT āx_]©ßj zĄīØń×xGuĄ{”ķ›v|öu|`¢‡7gźÜ­9DŪń—”Į#ųždŪgĄUžЇ©]Ć·› ƞÜū#Jp!õxp§#óƒ÷õE /! }Šą‡QnN>)üPK i5Pv‹tTr2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mi.phpUT÷Hƒ^UĖnŪFŻė+īN©!EŠ•›¤iljkA"Ą( Ćø"‡šÉbUŖ @Vżˆ.ņ]¶ņõ΃/Kķ¢qęœ{ī¹—3Ɨß6¼™L''8 Q1 ’µU€å ĪPƕ¤©¬Ä {N\O–}oµ@ ļ™Y kįåŚßH*ū~™[6§ćn#Ā224ßņżƒ’… :h¬_фŠFčĄ[>~–%ü/ ™fs:"ż|ü\Ęø+ä)Ļ5§(/»˜KWĢuŁ—X Īpz;*åĪŠém„RR Évkµõ9pŁ:l]„üä„}Ša>}—Ū™“ŪF~¤b㢄 R«Ē/šńk:jŅćj’ b³?“.}°'<•¶Ā؞“£p«“Ų”†’_„ŚX¾ß©¢’T¼čæ ~>’<źGŻGīėÄŖč‹œ:ŻtžŅ>Ÿäö›É?PK i5PpÕpĄĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mi_NZ.phpUT÷Hƒ^-PŃNĆ0 |ĻWųmP”ö˜1†4iŚš^„©»X¤Ię8Tü=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)÷mÆŲŖv•ß¹{xe².Xż°Ā—Ø0IėŅüō/}O¼M5p)’2]½€#r‹FĘ)ńl…R|€Š*÷CølwēÓįxł<®V[?ńV`±F*Ā4TĮÆķ^Re‡4ne;Ć(•#0Ž*1Bßæ>ś¾Żu3µśŻ£łPK i5P{ÉõņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/miq.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ cH•P|œ«4ukiŅ9ÕŽ·ćŁłü’Ćóģ梨öūöšķ(Į@AĻŁ°@@ĀŃpƒ®ģٌXŖv•ߣ{xe2L‰Ą”[Ē— c”ŅĘéé_śy ²÷`ć|e€ =x²’V†!ņd„bx€Ł£ŃŻ/į²ł>źć©ł:­QŸ8#°˜=%aź²` ‰ÓeO1³E-ź7Ųj}įźż ē—=&{Ęq«Ė oxÄI©üģL‡BÖx½0J꠆K&FhŪ·ś³mĖ]5Ń„mźRæq÷XüPK i5Pņõ^×āŪ6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/miq_NI.phpUT÷Hƒ^Ż“ĶnŪ0 Ēļ~ ŽÜA¼Ū€­ė†5P ÉaCaŠ6]–%’j䄜}±É_u‚^ ģ6_$’żHJōÅē¶j£(Y­"XĮϊ-”¬ĀŚ¢80%øŠą %3:øņh“½ü,?‡ÆĀØaO6cēą"ėĶ/:˜ĘmrÓ\NŅoFPé•‚Ü“į‡Źźē¤mH©K# :6z ­" ¾G¦n8w{su½’qŻ£†ś\…:“P°uĀ™wT@Ē® ‘P»5^r ‰Š”Ų$r^4 R”VaNaͽX~¤3”?ž… M·7ßÓt'¤7įfā5üŽ |ńX›įÓåäÜ·ƒ#Žn“Ż.¹»‹×Cč~\āĘhWMgbĖXwuč0`ćŚŪc kl|żb«ē§ŠėŖ^4Š+h…õ‰lŽ·hŹ"·\«ÅźžŸģb ź%xĄ*;:.ŌśŃ:ķ$µ•÷?ōÓÕ^Ž& ā mü“qģķøėĀt4ųŠO»VĒØE‡ÅkīéM”žŲ3yęĪŌ™9_ćÖ’ +Y¬K.5eŚ“ā»):łGQķ­” Ŗ÷ó„Ę©™Šłµė“ģw}Ž£AйńŚĶƐ$ ČZRŒ™¢Ižv)¦ogߟŒžPK i5PµzņņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mjw.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ cH•P|œ+7u³4)ŽCµ·'ķ8Evžæäš8Ū¹(Ŗż¾€=|ZŽ0°#Č猢PKpDé‚Ļ+sƑʬ]å7ęž…ŃCC±cU8tėųäó“4azų—¾Ł‚†ä˜0_„G«€¾dž|Ģ•~2”ršw0;¼ūeZ6ß[}<5§5jćS‹ Fč9Ŗp—”zXXm¾Éģ1$1”‹ś ¶Z_øzæüهÅCO&§ 4nu)Ņ%f*7[ģHŁ s—k€&ńŁš“XŚö„~oŪrWMßK[7ežĘŻ}ńPK i5PÆHlįŃ6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mjw_IN.phpUT÷Hƒ^„QĖnŪ0¼ė+ö¦Ä𣽶iĒNI`“n J^‰¬(R]’1ü÷%)ʁ‘ŽŖƒö5;3+]\õ¼Ļ²Åd’Į¶\؅Dš±gdA×`9ŠQ©•oU-kpī±~VĆ ¦ą M)¬…‹2”׏—ŚĪ+Ż]&čWM‘ØvRB„ū‰†[`jRT،—Tµ¦ŽY”Õz‰Ģ÷^īćŽĆŻźöéūm Šž,göĢĄNK¢tw°–ū‰÷n“£ ½Š.š]„ ĆīŅY®É| ł -’?Ģ?„kfe5“ŗbĶu£Ü\S÷ ­#Œˆ Ā^² }¬ńŠg„œ „¢Xß}+Šy¾@5÷_6ŸĀÆ,°ēĆm&‡/—©Ū±‘Ə‹ēē|/CČ;­,Oł’Z-<]¾åL56¼† Crļ],ɅšSŃ“–ė½a¢g“āĀĘd3l8­S±łč’Āļ°sj„0žćŁ7CG;ÉÉčćŌEņō“x’…GŃ£ą±Ż±Ćxż ×]ėŹ4ܹv)ńŹņĶDĒTȆeĒģ=óÉ13p'ęHÖ¢L±ˆFĀŃuBż7Y-ČŲĀÓŗ.sdü¦©?€Ā4TdQ§ŁĖłēģ/PK i5P]AGāt2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mk.phpUT÷Hƒ^WKO#G¾ūWԁ¬Y^ RńJ`a"Ų@Š"‚P{¦‡iį™¶ŗŪ8(F6J®Ń*‘rČ!W–‡b-=$?`üRŻóč™±³£eķ®śź«ÆŖ{ŗŪs_6żf„ņbl¬c°é3 kPĄĻ& øʧš’ˆ:Ńäģ‘]ZC¬†:ĻaI0Āk*ėL)˜«ėįW!¹Ŗ9¾EżæFg½ćNa”×`FśO` Xˆ/jy¾qUöŽōNr«ÕŚņ +²aō‡ų’|¬†ø<‚‡šˆK}?eś‘xV;>ŒēÄ.›o=ĶYĘéĒŃ7É™ĮöOļ±Öo×OrŽb§Ń?ńn€[ŌIü××”Ł>—z¤ÕPO#ļā;yņła6:/.•†LŽĶµŅ¢āĀe!i”ęa$lu*ņ1óĖv™‚yHüš LMĪ!Ó#K Šy?ĢĻĻĆdy¾’$˜Zuōy®ŌĆ"U!é°|·Ćń- txö¬XŁL?žĆœ ęHz‰Š§W|><Ūō榎†gū:(پx\ļM)Cå^h®Q‡ł‹c²ƒW{§Ń™>’ń-вĒqĒ’Y/ˆŽQކ ń{ļÄ|?3P7ŗĪ<§&īԜ™Żģūu{†ķ½Ąsä8Ž7GÓŌu…±ēY†;@h•ū!\¶»÷óįtł<­V[?ńV`±F*Ā4TĮÆķ^Re‡4ne;Ć(•#0~Wb„¾?ž?ś¾Żuó­ÕģĶPK i5PŅ Ś-ų 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ml.phpUT÷Hƒ^•WmkÜFž~æb>.1Ł …‚ć¦McRģ|I sYڳDōrH{½š\>ų vŚrRBI .””5nØū"µ¦Iķæ²?„³#é“+éĪ®>Č'Ķ3Ļ33;š]Ƽßwś­ÖāĀB ą¾ćĘŠs=ų·oFĀp‡Įm3Ś|e=0w˜X æb]…#× ą.‹·]Īae[>~ącČ +ōoęŠĀˆˆzĻ+ģļFīŽĆĮ lš\‹1J½0ņMī†Aś3ńŻg.’ßśŪkwļ­I*Š;&‡”ƒķĘ\#‘½Ü)GÜS!Ėq܈Ź0««‹‹Ÿā„ +ląusŻŽ9Ml¼:p±[7/‚ez,°ó1§T!6}¶Z”zS«u:éI‘Ųē\—µnB~2FY°:Ā3c>C˜¹Ź(ń%ćf½ŻŗŠ$#ó[óāü³]ÆTÅg‘k»Ģ'koXrć‚+oəsNiÜ^žVąÕ Æ|Ėi÷%ŃæĻŪ7¦ĄG\o_æˆ,„©ė/${w6Ł—8ķ³™?ćC½ˆüśŅlrÜÓ0ŁSšē€2kÄ­ŗļŒ’=Rw×üÓEōó¬·©,„īHŽ_h¤½Ź9jfŚN嶝W€ę’4|SL!‰ÅZĄeģ'SŌsŚ:žQär<ĪžæÉw4S'śl—¶lŅk¶dL¾ÉOŠAüƒƒŠįˆRа/hÅNĖ·]­D[1ž‰xµPFs ­0FC5Œ’U £,†13w£!gCKרfjL“”'ÜŹN8¤¾9”šž)Iš’žå[Χ{ą+źŪ )WĶÆØ‰~.œf˜NrC“yŸFā„„ĻKØś«Ų©u[5ŁŹš)”§)7ŃZjz:éėĘĘĶ‘k”ÖcĆӐYSG)_.%s™©€‡’ dĆ Š(ĖĻ;›KXBp÷Fė?PK i5PېˆĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ml_IN.phpUT÷Hƒ^-PŃNĆ0 |ĻWųmP”ö˜1†4iŚš^„©»X¤Ię8Tü=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)÷mÆŲŖv•ß¹{xe².Xż°Ā—Ø0IėŅüō/}O¼M5p)’2]½€#r‹FĘ)ńl…R|€Š*÷CølwēÓįxł<®V[?ńV`±F*Ā4TĮÆķ^Re‡4ne;Ć(•#0Ž*1Bßæ>ś¾Żushõ»GóPK i5PėŅ…6½2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mn.phpUT÷Hƒ^ĶV[o#5~ĻÆ8o*M)wʲŪn[ŌjŪ²R+$@«Ź™q2ŽĢŲYŪӐ}ŚīŠ !„Ä ÄcŸ(mA@//üś‡8ĻL=iX‰"%±}¾sĪēĻ—ć[wFĮØÕš›™iĮ ģLAŸ…šD¤ŃPX&²'8yC2 ]ÄųKŽĖpW2Āa‹ŖÓnõLw‘cWč®'¢ŪjŠļ ™ÅźĒažM$÷!då ³ņ¾ŃLšŒBJplŃqę·±¾¼ŗµ½jBeu@4Œ‰Ÿ)-Y/ÖŌ‡1ÓZ¾±ō(&ņK¾‹Z®B¢‘É]¢#LM†¬JŸrŚĆ˜œ@9Ž„‹Ģ Eģó˜3:™8K±„T ¦= ÷²ŃˆĀ‡$ö*ķ莊µˆbøKį;¦cŪŚ$ŸĀ& )×ŒīŁ”Eų˜LHĮ†MŠP"‚µxPeūKC& †Š*."/E#L+4 ó,Ģ  įU*,ˆ­rÉÅȖł$Ēm³Hšl‘CŖ5˳‰+~ŸhM„Ün1O„ż¤`MxCXWäqNą/`rÄ2°WśfŹIŖcÉį“ą§=”D¶į½ŪŠ^šDĢ5$æ%æ'§ķNnžbC¦:ØŲÓżä0}RڧŲʔ«”O’‹äæ~†ēų=.Ń/õI•ņåArryp•ŲŸj p§VY?OƂWf›>/'Ź8īų*Ē3Tź<}–>u@."9+ Šz‚ū×µś5ł3}†S;)a•Üū8lĒÉ@äĶ"šœ›9%ē—åā ļ^”ܕÄļ•Õ¬įģŖ„_:ņÖ1å"øńŒ”uh&g%m¦]_©ßUn+TÅR¬ lŃ})¢].ņ­ƒģĢ®1ń7݇L­ŠDU‡šNØ,†@1p‡UŃ= åżŒŒĶ^-}3a›Ku›ÉZ©›ēéčŻčœ‹ÓTøīžłĻĶĮŠ  ˜IÅLbŠ"2Äź‘—,5€EziHļ;ĄŖŅa(ĘźQԁuSTųĘ“½G1‚OMŌ¬ŚąÖȊ˜a Ȇt2ŅW@BI‰?éĀŸŒÉ£gƽ0ö‘ x+ą™J‡µ6ę>UOājŻn7?p†VõČÕ岇ĪAžĖ±«!^5åčÕĮ7¾:Ļ)ĒÆ‰jÓ“ĖųwS8]§h“PM°›•jBß$Uכµj¦Ū$Vˆo‹ė@9Öļ×o°ŠuB®FYó°”}ŽdŽÆ•<ƒÄ² v–mŲc³eÓ/  }ńŁBcŸŁšĘŽuZ[[ˆ¢›¶Ė‚R£5}„ŸŁĶĶŁ••ŠŃ±Ā&~ąŗ½XēŌ³o4E©8Ļ T)ŸZ;ł!żŚ`ā[”ąČž\ģ}ćĒVœ¬’n³Žrū’Œ{ķ«ä(ė}“ɇū/9·}5ł±×óī*|„j'{‘»ČZd+²ń‹øõˆÅ{ā?ĘĖĪU”Ė|łJƒö«Nū5§żŗÓ~Ćiæé“ßrŚo;ķwœöü+nĒĶ<_¦®’¬ˆųæ„J%óršxį'§—ęŹ3gŻ^*ŗĻ¤Ņ»ęŹżŻņM<ßi=x·õPK i5PiܵŹĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mn_MN.phpUT÷Hƒ^-PŃNĆ0 |ĻWųmP”ö˜1†4iŚš^„©»X¤Ię8Tü=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)÷mÆŲŖv•ß¹{xe².Xż°Ā—Ø0IėŅüō/}O¼M5p)’2]½€#r‹FĘ)ńl…R|€Š*÷CølwēÓįxł<®V[?ńV`±F*Ā4TĮÆķ^Re‡4ne;Ć(•#0Ž*1Bßæ>ś¾Żuslõ»GóPK i5PŖaü ńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mni.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې*”ų8Wiź6ÖҤ8ÕŽ·ćŁłü’Ćóģ梨öūöšå(Į@AĻŁ°@@ĀŃpƒ®ģŌXŖv•ߣ{xe2L‰Ą”[Ē— c”ŅĘéé_śy ²÷`ć|e€ =x²’V†!ņd„bx€Ł£ŃŻ/į²łŽėć¹ł<ÆQŸ8#°˜=%aź²` ‰ÓeO1³E-ź7Ųj}įźż——=&{Ęq«Ė oxÄI©üģL‡BÖx½0J꠆ŸLŒŠ¶§ś£mĖ]5jė¦ŌoÜ=PK i5Pm'×1½ü6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mni_IN.phpUT÷Hƒ^½RMKA¾ēWĢmU4KÆÖZ[µT°Rl/Rd™l&īąfg;3kČ­-“‘~ą”H”"čn°ā¶9XOśW漿¢3ļn¢SØĶe߯ēyŸēĢ< ½°R±'&*h½ōØ@ ꤿ!ę±’Aó˜×X Kī&Ž U=kĘĒÜqō˜S "jTJ4S3é\ S&«.kĪ£O¢FäūČea›Ó O"Ō‘O]½2h0ŽÄ’²`…>Įŗ¶EI pĖKó‹+/ č“–Ø…ŖS!9­E’ŌQ‹JOw“vĮ"bmćŠ`EŅc\L›x ­jĢSĶó< Ņ?ŸÖÜ)ģ‡žĖ Z˜“*ć@Į‰Œx€0ēøķpśŲ%śėF\Š-2ĘÉėˆr‚gaiÕqŖ–M‚Ŗ>®5‰^U »•Ūz0[” ¼ kĮ~fÆ­Y“ŠXĻ?V“Ņ+–Š÷T|”ā®JŽŖäÄ?U|©7莕tT|¢’/¦:jā“ČĶÄ÷¼“£āć_Ŗø×L:y“gˆāīõ¤,E’ƒŠæ©ų7Pģē„sŠ‘³B| ń‰^’O|Uńnæżéz£ śG @ŻłpÆ|%Gč§•Ć·*§t‡ųūWĘK~‡­••\ d·٬ćöÕóvįļś ;`BCŽ Č.”}¤’Ļf‘҇øČŪ=•lē9ōށ ‚b"Łšü dnCP ĻĢKDĻÄĘRa»§¹zņ#H“нF†^ °S?BjIŪ°˜’†’€›Ū›4ųß»õ^‡5œåB:FˆÉŚsrÆ’’$œÖ)iŌķTõŗjNyœĒš1 ­i—ED į|`Į¶‘O„@œų×|R nĮĪ­Wå@A\ŌKĄ,}Ÿ„‡Yz„³4ÉŅ7Yz”„»].īĒĪE¬ßÆüPK i5PWQfuŹ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mo.phpUT÷Hƒ^-PANÄ0 ¼÷¾-TØ}+@,‹“ŚpÆŅŌŻXdćą8Tü·ādĶx<3ņž1‡Ü4}Ū6ŠĀg 3E›Ł‰Ļ įądäd”’rģL»Źoü-< ¹g,#©Ā~\įS2ČŚy¾>üK_Y6£¹ĘžóÆŠ%(ø4A$©XdšY®N‰ÓäˆĪøĀe»{;ŽēćjµõÓąW`¢¢BcUœ`! ¶±ī…«x“ i+Ū7‚Z%ąw%A†—Óū0t»^ø³ģī›?PK i5P²Šæ: } 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mr.phpUT÷Hƒ^„V]kÜF}ß_q ›˜ģ”BĮqÓ¦± ;/ -Į˜eVYƒW3Ėh¶[“?4)%„<C ø”ŚĘ“Į]\Ün^œæ¢ŸŅ;#iō±Z{!ĀŲž{Ļ=÷̽óµöł “ZĖKK-X‚‹Ąg} ųw@¤რ(Ü%²'8šÜ=²KÄjų5÷:|)įpF=¦¬õōš ŽC”W„·3čWB"Ųļƒ+ū’ķ ÷ Ļ\Ź#LÉ}!C¢˜ąō)AŪwŒŽLÜę×w7īŻßŠTFŸ ˆ‚‰Ąc‘’¬7TԃSzP{$†Ņ„˜Č3b—õ uģ” „ŒVõ’7ą¶'Ixƒņ}”ˆIŖ†’Ćv škļS"ŪšŁmhÆŗbČ$ńyO’ńó$žÆŻÉ@W"BĮUPC&ń»$~ŸÄ'I|ńC“yüŌĘ@ģˆŅ½ZųOIü›‘łŗ^2—Ā? Ö#õŅüaä!lj1W"ģd cī2ārwČ8.ŽŁ¦õĆßĒåR3¾ 2¢®ąułS$ńaąT,ņ PŠ"»"Ć)Ņ$ž3ä+é<’˜³łR„].F0Š|c—ö(ī'ŗ)ń•䉑‡„œX…óż"³izl˜tĮmC5hŸFČgūo&‹-9«€”…”ŻĻŗūé ]6]s$¤%Lw„1o>HĆī@°†é®Ć Æ*b2äż2t5Š.E§Ųõõå­­å‡ųUœ¹¶šƒY÷¬æ (“~X<|'ƒKś”{ŁaU*SDBŗž·aŪ“ģÕ`ńJé9ż^•1•>4æµGJŖ·Šč“ØB—µ¾N¤aѶYˆ;ĀEiŠMŌz6ż([Ņ›õ"„T2Ńō“ō‡ÜÕ7 \ūHŸ ×į‘åa~f„5ų¤ģŠ_v“õ.тŅ>Ń{å–>näŗ¹2ŸlšāŸ…˜>Ļ„½y¢7²&[HÖĒ—Ėŗ0>˜«Æ55§2m#ō}—mٶY³é„”ÆbŌŃTėۜźÉ,ā4#ā×ŌōĀd&BŸŹg9P}`źSīĐõ,?KĒ/õ"Óg0ʧ¦iĪwlŌhAśÜĖą‡¹ļ—²ćÄŒĻļŻlÜk#mZqģ”ßQ7Ā—ˆjؒÓ\§”NCAœ¢N„N½ NQ§¹NCœ¹ów¦īŲYė—^ Åŗ˜˜fæ·-Ļ%hŽÓšõŌTńHÆĻŖć­™Ķ›šõČX'fŽĒæĘq˜«ęĖ®łÜZW^ėX¦æ"»®¶"²®­AREɬ€üyb҉‹¬E¾"Y‘&ūĻņöńķœń”ҧÜļ˜,Čg2R]Lß~×>'WŠGž¶§ ķÕ#ūn¾YšĶ^KŪ+XAņ[­’PK i5P ų”įĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mr_IN.phpUT÷Hƒ^-PŃNĆ0 |ĻWųmP”ö˜1†4iŚš^„©»X¤Ię8Tü=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)÷mÆŲŖv•ß¹{xe².Xż°Ā—Ø0IėŅüō/}O¼M5p)’2]½€#r‹FĘ)ńl…R|€Š*÷CølwēÓįxł<®V[?ńV`±F*Ā4TĮÆķ^Re‡4ne;Ć(•#0Ž*1Bßæ>ś¾Żu3·śŻ£łPK i5P_𶀄 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ms.phpUT÷Hƒ^–QoŪ6Ēßż)īa€Ū Ką‡=¬ĶŗyuŠÄM2 )0 aœ¤“ÅY"’Ŗēułī=R-É:Į€Ä»?wG“']żZõdryv63ų\¹( ų^£¶ r°Į{Ō‰’lJ·ø” Ö:ł«ō5ü®Jx “kį*qĆß$•½HUõ.H?(ķAyS–ŖzÆÅ¦°€2ƒR¤$ ‡”¹ŅZ”ä9Ō%!Ū¾Śływ·ļÆÆŹēg “°C™0V‹¤±”ĮNŲ‚=œ»QN‰e>ŁKW”›;ol”“yćž„„2<*My;ž’«,±eš/ąÖ ×lžŸž¹śLĄ}XM¶Ńž&Ą×tOاšĖ;˜~=²X4ņæÕģüVęOoRÕH Ž6=śV|ŹU)i‹+iJ³¼-N°®Ѷ‡Ŗ„Ülš«5ĘŲŠ—į¾+xIF(gŠāØļ)ųģqžĘj„aKŌ(=gĘcX›°Ē„ Ū›1®ķą4”*™E\B i¬xŒ”Χ ˆ}nTšYQģQn ¤M'ȵŖÖRķśŖŒW mQ³<’rKŗÆ24%拆‚„Ź&.U&ņüiŒ÷Ž=’_^M,q°ŖRZw2j+ńg»]Šö8xóŻēVzssQuØąxģy.Œ8[×bqył_gē…{¾ąŲ}쇧ŗŁ6å ŽÓˆņŒÆsųޤU(7ŒdŽ{Æ^ƒ-ŗ|r ƒūž€@āÕčŖō=hÆy1_ÖżϰĖ3¦6–hzĄTV_ž†:ķźwŌi¹«ėŗ4a‡ŻV£"-2AmŹ™ŗ&Æ~p‡ü5|‘#\ĮlÖ÷ø+4Ói1}]ϧ§’ōŅtKrƒ¾Õ|—ńó‹)póęÓŃLƚöt“’ē~Ū‡`ŗDŁųŽÓ”čīłSw›×Z”~L޼tĶ߯Jōć?6Źøū#Ֆ*īDŽøµ*<>Ø/Ѽ¦}^ ņX~ŚC6!“a'Shčā‡Č!jc¹× 7®źy™“Ü)d ཆīé&»,ųjŚP•o—¬ĀÄ6GĢAó¢l`dąŲ1ŖkżŌr¼“„“?yŁ"„\hc×ĢX«|_¦³ĆūŠŁ[‘óŗQüčT%ʄč ē·yŽCbõvņ PK i5P•D4"5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ms_BN.phpUT÷Hƒ^uAoĀ0 …ļż¾PÕŽcӀIH”Ćą2MØ ©K­µI礠žū…–m0m¾Xyߋż’ÉC]ŌAFŒ`[…œJßkÉL®@˜IŽķ%õ.yļŁ>PCxb’Öh÷äLöēć£öGć"eŖéÅślø”7e ŹŌ-Ó”p u%)ŌÖÆŌ¹įJ:2:„ŗDéµ#į©»·ZĪėĶā<ŖĖē éą$-ddÓ¾q˜Į‰\į‰ĻnMĆ ż¢¬ Œ®a ’Y¶)c]J…¾«†-qĄųŃ#¤é|ł’¦‘ˆ+łŸ!¼ąKō٬€ūéEźäÕ¶SD1®*"¼&›4¶öķŁd©ÅŸ%0«=aź¢`3‰Iä=ųČÓ¢~1[ē óģ6Šńr~G œ=湏·æLpT#ŁkMPéę°h0JdŒ_‘”m÷Ķ{ŪV«z Uśāź±ųPK i5P(Y}¾5'5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ms_SG.phpUT÷Hƒ^uAoĀ0 …ļż¾PÕŽcӀIH”Ćą2MØ ©K£µI礠žū™–m0m¾Xyߋż’ÉC]ŌAFŒ`[h¹.ø×’<Ų|0““·†%õ.±÷lØ!<‘–ÖčöŚ{˜ģĻĒGĆGė#e«éÅśl©”7e ŹÖ-éCįAš J­Š8^irK•ōښź%kG§īŽj9[¬7‹óØ.Ÿ/¤‡“tiēIļœ“/˜pvgRȋ².lś† H"٦„u)rW 9}ÄįG£ !MēĖ—4D\¹ˆF„š—č³9÷ӋŌÉ«m§ˆb\U ExM6?hģÜ/ڳyœ$qŪŽ/I’Ą+×-½Ę=įķßƌ+„’ķ»¾‰ Ig«ž…‚1ˆZ0Ż ļ‚OPK i5P Ćįš_¹ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mt.phpUT÷Hƒ^­VĶn7¾ė)ę¦Ō°lČÉIÓ8±“8Żƒ …!Ü]®–6—ČŁČzč=O[ziŽ”ĒBOŅ'ÉšW+KJZ“ œŸo¾™įƞž8oęƒĮįŽŽöąŖj!9Š8gA׀ ‡—ĢZ‘©¼e3~@XT~/Œ` .ø-"<-œś\‘Ŗń Ōķ³}„'Ŗ;)”Ōó{#f SHQre)„Ŗµi ­öa.9#Ū;Į>n|öņōāņŌQłś°a f”(:ä,6䔌­īLÉ)Qå‹=tŗŲćmģ‘“Gp,¹µT‚ŃpĪLW–‚y°įŲ× oxĻ™ĀĻ`h¹bæ•ŗSV‰ķāp?†ÅĀŌ.9E¶Za¢ļXĆLĀÜ5ŻN9džøäł·į ĪoĆL“³åē\÷ņ÷ ć· ™+%ū`ŖŲ}ā¢uaŲć2LqüŗšYžކöU\WĮū]Eæ„g¢,‚¶©y©…¢]x¼œi¼&¾¦õ82ĮA²SN–—ZÅ­QPqü– «ƒšOŌL–Ž×ķA±SNal¦ćnGŃŅż!»ä©n§JĒX’żŪGš˜¼D]Æü‚.5Ļ=·ČMŽu²ܰåē5 źV“(ÜĀT™$Üc”«p‰xóų*€ß¼9jۈŽĖžēČŚ5gpœžŸžBߚ3yįœ>Ųtośa3}†UōķĆ.š$¶W2ÉU/Å^–µü$MŚõ™”]ė.ėфļ„SüW°×~ęvį~Ī÷‘+ ®·Ą$³ŲĻ:Š«µŅaRJ~õ*6ŁŹļŗ:•6“ńƒ¹Š¦ŠÉøU×ÜüõēŚM÷Įš-SŠ&m†ÆLéŃyß9įxn„ō~sć-ĖO Ņø“A8^,h§zń’#ņ¶0^ł ±‹ā…~—Ķ'bł!(“µj¦–^@\Õ ŠõÄjb-©’XG¬"VsǼ)eĪęž:B©{Z˜å4Ėw†£+ÅoT’„ąč NMįVĆ{|D+lR>…gĮ«vt) ÜH¶ÖœĖēĄ”ĖRø2ų¶ˆ:“'üHt›lézō\*0¢ČiK&©…±8%š©®§ł]ż~õ¤9{9ÆÓņ?Ē%éĻM,€Čéø“'ƒ/PK i5PŠńĪ'Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mt_MT.phpUT÷Hƒ^-PŃNĆ0 |ĻWųmP”ö˜1†4iŚš^„©»X¤Ię8Tü=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)÷mÆŲŖv•ß¹{xe².Xż°Ā—Ø0IėŅüō/}O¼M5p)’2]½€#r‹FĘ)ńl…R|€Š*÷CølwēÓįxł<®V[?ńV`±F*Ā4TĮÆķ^Re‡4ne;Ć(•#0Ž*1Bßæ>ś¾Żu³“śŻ£łPK i5Pń?-k<—3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mua.phpUT÷Hƒ^„SĮN1½ē+ę¶€¢D½RJ $Ō,• ØB­fw½ŁézķŌö² §Ž9rØzČ©§~G‹"~£_RĒŽDPOõe4ļ½™ēĖ{o§ł“Óéļģt`.rҐg`ć•™É”Š„°PRą„õ¬v)ßJ¶įP 8c:&c`/^¦ļ„M„é%²Üo¤#©\£¬ā9)šäP¤Ą)aB[K‘IU¢!)ŗ0å -vK¬vućÓ£įŁłpŁŹŻĻäh F )i£(® K”&“[ĘŽ]ĖJ%Ģ„ī²żŽb¦RP)œEŠM9&ĢʤRšnŁ–b_*R ¢hpś1ŠzAŸ‰žŻLŠ…ėŲ”LQJ¬ ąĶ>\v“’Y6ąÄ97]ÆŖ+RœéFu$Ė?_æĻ°(œÖ¦ńéQ“ŻĶˆZi!9_ äébžōĄ×ģIWÕŗ’==,ÓēΑ΄2+’:=÷įĪ·*¤œ4{ŁŖ$ń_J)L¾ŚÅč÷O‚±ō%²Hj,8>Ž Öü°N¢Ź¼:D»‰Å¼ŖĢbÓg[äŃr1¼ŸŌæ~`†yģKŪ(_A¶¼Œ[­­ÅzÆJ¤M[—ט7Oįņ«JUϦŚŲóhüĮM1>pįż©« GĪž`ąĀ”Ʊ”“ †^yéĀń'®.×^)m"ū‘Ģ¢å»8ĆW+Öż—fĮršųĀ!ĮÉÉnYŻ6qŽbvµŽ =5臿+{6ØaĀK¶M{^zÆe©=š/­üfūuē/PK i5P¤Mdūž:2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/my.phpUT÷Hƒ^µ–ĻOÜFĒļüs£E„ŌM“¦JT UZ­¼»cÖŹ®½²g»Em%ŪkÆwsB ””%T9õ’”J‚h’’'æ±æöz é„«(<ĻūńyļĶųyīÜėµ{ssĖ slķ¶ ‡éF‡3ł·§Ł‚Y:mĪhvĆ2åRó‘¶Ļ—¤mbžQócö„mh&ŪāNĆ‚Żi$_˜ņŃKM«{75żŹ²)ŽļtXÓźŲĘ~[0Ķl±ŽŃä¦#‘¦nŁ]M–¹Čz®Éµļ > æĶė[;ėI(ŹO“5ĮšĆZ†#l£Ń¼Å†hKĢݱśv“KP‹’]N*L|ļ÷EŪ²ÕDž„}m9m¶cŁ\OŸ×Ų†£Éõ¼„°MƔ^ę>E±¹čŪ&Ū›cņ7Ą5{ž}~—Ķ’°ņSģĘn»W±{»’(łĒŚŹā†©ļ­6­¾)XQ5æ˜Qn±čZ¦hWqNg٤ŠēJŗgøĮķź–vP•ĖƱėVœ®Ć»¼¤nĖm»”£ēdü¦Ŗ£© Af;Z²č¦(ž6C׋™¾$‹·”ņ±+ø#Å9'ŽŹé²Š2Vײķ ,]Źå˜J:*GW…ĢBÉū:Ū†€ŌƬō}žaeÆ2—· «U·y³oŪÜlņņńPżMh¤©¦°2U“Ž–7w•óv{u»Ėī§Ö©j§ [ŻvJźT¹¶¼żpyūŪ)tģ”ü±²vFĶŖš°kɻѸ–ŲŌ:Ül„³»P”£ułZ¶#{ōņ%Ū°Tc›»lē¹Vd›ü{Qō©>Šš ¦2Up³qGs*prvø·1·œ±7ż¾•ßųū@IŸÖ;Nś6n–ŗKŸ«ōōȳNō y6³IœœŪcgļūÕ¬ÅIöńI~GŽP^()ĀĆóō–ēĆA)ĪČߧՍ '·8Ź–^Ģz?”&GSŠéFÕy!åvåż©čĆlĀ åO•\QćTQyH;¹Aȹ•ļš!Y«ßSs(“4­’ś“ŲŁ¢Ó+µś3„ü„VŸĘīo““ļ”Ÿ‹³ģZrŻY”†k0Bõ~Ģ$_źśTĀy†yVUiLqѵ VvCųßHŗa;¢.YuKÆć†·’ßŲ’ue”h“'Ü]?;ĪQ7ūŻ·±³ž+’.‘¤!¤Ri)‚4†4Q’†††††††††††††††††††ĘŒ!C0†` Į‚1cĘŒ!!!!!!!!!!!#0F`ŒĄ1cĘŒ#0F`D`D`D`D`D`D`D`D`D`D`ŒĮƒ1c ĘŒ1c0Ę`ŒĮƒ1cĘŒ 0&`LĄ˜€1c’0š1’WŖĮ»ÅAõī2ję<ĪĒNķ³¹PK i5P[äĖ¼Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/my_MM.phpUT÷Hƒ^-PŃNĆ0 |ĻWųmP”ö˜± iŚš^„©»X¤IpŖż=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)÷mÆŲŖv•ß¹{xe².Xż°Ā—Ø0IėŅüō/}K¼M5p)ߘ®^ĄĘ9ŒE#ć”x¶B)>@h•ū%\¶»÷óįtł<­V[?ńV`±F*Ā4TĮÆķ^Re‡4ne;Ć(•#0žTb„¾?ž?ś¾Żuó­ÕģĶPK i5P„‘_ĄÆ3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mzn.phpUT÷Hƒ^ՒĻNÜ0ĘļyйVa÷D”ŅŖ@įPøTEŽÄ!‰ŽV+ŗ‡>ēʟKµŚ{ŸĆپL'NŗŻ“}ĪŞļ÷Ł3gūe™•ž7 <Ąi&4¤"ē@kÉŠ€JĮdvŽ•$)¾d|HŽĘ¾ÆĆkLĀ1×ca l›ō•¤T™a¬ŠĪśF”»(­ņbU^£øČ 0™@.b.5•”©Ā‚”deĪiW‚Oܹ£ĆŻżć“żę*ןɘ ӐmPŒ+Ć˜“”޵Ŗ0ęT(qĶŽ<ä¦B ‘]GČ˜ŜָB-®ųņ÷•@Q“wų6Іž(eCś2~gPų…’&Ó>¼Ų3qgļėŪzśćsż‰,~ż”žŚŁ2»±÷vfēĶŽ~éČĒ–“ŽÅ©_ėŪßū_g鎩}r»yżŻ>Q~cģ¬e‹GRŗ¬©ß£ßģ|™Ÿ«]G:Shž·ŽSŚD ½—J£ ē—n€gm.“vØĶ6—ĒÜOŌ½”“œ|tź’ą`«(ü`œ¬-­{°Eļ(6Āp#Izp…B†°×§`āšwõŁH(zfšī|ż¹÷PK i5P°āÕņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nan.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßź€ ې&”`ˆcå¦īb-sŠćPķķI;N‘’Ē/Y?~ØŖÕrYĮŽžōŹ9 ÄĢlPŪ(eåĪx¢ŗh'ł»‡We8PjŁ Öķ4¾H£Õ.^žž„oQē >‡.Wå“7@é °#I„RśØ4ŽņC ,»_¦qö½ļ7»ĆēnŠšłĢ£Įˆ :N¦Üf£F6_n {ŠY•¢n†]M/œ¼_r–8 tŌcJ§¹.'ŗį±¦B-; įz P²¬R ?™• i¶ū¦©+AiŽßułĘÅcõPK i5Põ–Z—™6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nan_TW.phpUT÷Hƒ^„TMOŪ@½ēWĢĶ‘¤”ߔRŹ—ŠŚ^Ŗ ­6öĘ^aļŗ»k¢Üś!¤"ą†TUP ­TUōŅ€k®żŖ’¢k{7‰UõÅoę½y3;ŁxśQÄ„R­\.AžTB“†ō;ĘBo‚ ĢcŃąL§Ü 쓪֦ņ1węŠֈlP„`ŗ‘†³L‡\U]Ķé™Q3 CpyÜŌ`ęAH]¤nɚ\DXQĪ&  Ö¹MJZYŻŹņüāŚ³ÅŌ*›OXA KšØT‚6E98C‹ ·ķV~łŽŻ9ĢV&Š'Īw™ķ~ 76(Ū`¶NžiW8“ig™ĘÜŲĆ+­"ŹžĖH› ŽDM*¤B©kµ ™kŻžXDP’Č“śsō¶ūń8÷ßI‘vĖ…½JgŹå S Æ¤¹ˆN{Ń²›R`}N~ķ¶<Įa4¢ŗæŹv¾Vāε­‘,F£ zK.ś’NĒF`tuUĪśƒT ķG7 Ģ·ĮuŒ®±1ū„L ²' +ZŁk8T€Ń56¹L—³āNęhē‡u‘CŒ†—®?(żPK i5PŌŌžĶūß< briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nan_TW@latin.phpUT÷Hƒ^Q;rŪ0ķuŠķhkD)ō7DZcŁĻŲ.’4™Œ‡‘Kr% `Š•9€Ŗ4)Żz’;¤Ó)—ČIi»°X¼]ģ¾÷¹Š»T@ Ź‚āŽ0ūuÓöĢ)ā8™Ŗ˜CĮ5üÖ Ń‘ūŠ0{véuū‡iŚ=Į”uϱV·‡ k„—E„Š ©ŸKń%ųĢ>ŸĻā•+½×*9ć’«‘ŪõÓU3Šūs œ3ß¶ņ»˜§Ė?9ĒüœS܍éņĮ;īO,V,ĘXōĀ“ŖšoC1ōŲ✠T œu JcņåcMš ¤ xķ/ƒŅę˦*µł‰Å"­ÄĖ:”øŠi.®Ńä3p :ö}p 9˜HoĶŹéĢp?e3©ė–§-øŒu9 Ä­opü”kÄ¤Ņ”ŻŽPŒĀrg\Ā+ŌŻŖĻĪåÜWĪŠŻ<'vĻźČšŚUźź±^ÆŪļwŚŃW(é÷ūä5Z‡=NŽČ’ÄKģh“µl»~æÄŚfŗˆŻX®ÉŲŲWÄT“`ö ĀõĮµlŠ;0åv»$CŪ‰ƒ(Êæ ԟo^ƒO—kõ§ļfBų^aĻ·§­YõœŠČ½zoė'±!Ü@߇Pū°7#Ź;ŗ>Ż„ įņÕ1`Üžz!Ī•Āś“S½„ļåCøY’›ķ­æPK i5P‚R›ŌÄĶ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nb.phpUT÷Hƒ^VĶnŪ8¾ū)ęęŻ u±Ąž¼Żī¶Mŗķ"é%Š…“4’X‹¤ARq ųu‚¾Bī~±žˆćø­`€Ć™o¾G#æśkÓl&“—gg8ƒŪ†Øx‹@ė†i ŖŪ ¼cz„$©Š5«qFX’„ųŽjĪ$|B³āÖĀ«•Ūž-i«ģ¬Pāu„¾WŚU]ŪB”6;ĶėĘ“%“¼@i(¤¬”Ģr%ĻaÓ"#Ż=Ē­÷»śųīņÓĶ„£ņłŁ†YŲ2%7VóUg±„-· Y(w£:] *}²/Ż ļ›Ī6J›¹“_Ą{Ķäį›"üŪ xÓāWJ 5Ü…@}x0ĮrĆėN—šÕD0)ƒņß ųhÕÄųm§%,&@Ļt‡LOįĻ×0Ŗ“z?ˆÓócĖˆöj÷LBIŪd8qxXī³Ž"%…YzŸÆ’Ņ×Ģ›ŃÜbŸĖ/Ó%Ų4A$©jdš3_­PNwP"Zå~—ķīķt8ž?Ž«ÕÖO‚Xl…‰Ŗ0¹&8ĮBt£ŻknģQƒ¦­ģ`„qĘļFŒ0Ž/§÷qģwCr½~`wožPK i5PļKˆC·5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nb_SJ.phpUT÷Hƒ^uAoĀ0 …ļł¾PUīcӀ ¤–ƶĖ4”*M]­M:Ēńļg ‡ i¾X~ļ‹ż”ŁcWwJM'xÆm€Ź6Ņ;M ¾®š ļD2_z‰°g|dĘšLV;Ųb(,3̊óųädōœßĪÆč‹§aQÕ7 ߝČīkķJh¬A䤫<µš­w1t jŃĆ»t³XmßVēUC>®5ĆQ(m`²EĻXĀŃr-Žd¾'ƒrØĀN!÷ä@éSNŲ5Ś tÓS°~÷–ņ|¹yĶó$šŗ"‘Ÿ‰bųT ]²…ęWiÓtP¢eY–Į‡T’¶’ų †õś®moø+XJĮ’ō.V»ń½śPK i5PŚ„”Ÿzu2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nd.phpUT÷Hƒ^„T]OŪ0}ﯸoŌ5ļŒĮ4`‰š°ņ2Šn·öźŲōŚ_æ›Ų)­Ź”ŠYŠüqĪ=÷\äājɗ£Qzv6‚3xāĀĀLHŌ/Ń8Š3pœĮ5šB+Z*8gā¶ō“ņ~ ™-„spQ“ÓŚMJ]_FźOm:”™—J½\1ēPU Eɔ„”j¦MNh5†„dHk+Įš.īįžśöqzŪJužG Z؄uFޱ į8!äŻjoJF‰ŖĪl:2Ģy£ĮunŲRbÉØ/½±bÅN {óĀ0Čó›ū_y>IR¦&“3É^F@-i[Tø¶ |»„—dŖ•Ó„&ŁŹĖn0…"ŒZw܇±b”ēU·”ĶßDĮ(ču¼/[®{Oå£xTŽ¢Q3źJÕDł”šźć}±Ļ¢ ƒ’LbK{äRS-ŗIVˆšNž‡½Ąmą,¦čۈjīcøóR,0"eC1ż,[RšHĖf¾žu–z‚eąī»ÜŪ·ēP`k2ś‹Ī¢­ŽO“MōŁc꘶OŗĶ.hܖn©[~xźV’»»óŗNĘ»Ąt9·v ŠĶMšeéoj{`B–epˆī‡Ćģ[ZEm ’"Su”¼5C4]”5m70:ŗ/ē„öŖ½3i ’Y †I…d1ņsa˜*åĪį‡Ų6LĶ)n#v##ļęGؽ?±ĄĆWb!õšAęCBGÆ9 Ńdgģ¹źęĆjÉé’¹õĘé¹$Ē˜ Å#Š~ąq÷k±ńæ¶“AęĆbiY©UµĖkPįGšöęG ¾ž~żPK i5PK‚}ŗńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nds.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ [‘&”ų8Wnź6Ö²$8ÕŽž“棳ü’Żs“±Ŗšķ¶‚-|YN0²#(gDQ#Ø%Ų£ōĮ—•9ćDuŃ.ņ;sÆĀčįD©gUŲõĖųāĖ“6įņō/} ²Ł90!^…'«€~dž|*•~ rAåą :²ūešWßūqߞ>Ū%jåS‹ 3&8©pŸ•˜Ym¹)ģ)d1TІ¶Y^øxæżŁ‡ŁĆ@#f§ 4­u9Ń %*-ö¤lйė-@H³ųbųÉ,]w8~t]½iüŗC[—oÜ}/ŪgI€d·ØĀönį'Ņ•I3ÕĒŌ EØ°uĶ2ÕnH”•a sV‹ „v-e”Ø#”œ²¶Fp±•ĄuØ»¾<;束{Ŗ ĻT`Ų4Ė…6$Ö`ĪÖĀTqڵ²””k”±‡~B_{jM„Hy’Õӎ¬ Õ°O(%:޳Š­›D£|18e_`Q+6óJ`Ė.뤔6UTŗ |ĀIć&$X¢VEŲGCh,ID°į„m :›YŅb…{„æ¬ dœĻ.ærž&‡(SwMɔżœ0÷%l°÷Ē1Ā×!ĢféĶMśĆ}É4€wI%M«’+ŅcM.p“އ›‡?tļÓ–D" ¼¹²2Ś:ŲS[Zm¼7ĒÖ`ć8üįóŅØčŽŖÕ6<ĆūĪŖįŚ]ˆyŌåōB¢Ž”Š("jˆbėŲ6vÜ6[#.sŲōĆĻžJ™CŁńBļĪ„,uy޾,ÖŻ.õŠ!F7Į ež¬Õ`²ł“f}§®KYö zźĄ»ŹÓēŒ’ƒÆ¤ wŒ\<ŒčI_G4Ę»$śÓŻćšYo¦“.mIŽ2e„aWŖ¢ųą’Ķ(|¬šÉ«Ąį~śņf>^ūøĒü=\oGąc…Ū… Ą™æšĄ_®źŠŹż¾ąÜųwÖW;0ąćÅq…BŗæåpM.dĶvĒń•½ŒßEŠåh̔ήqiUźš]åwūo'’PK i5PŲTrŁ  6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nds_NL.phpUT÷Hƒ^„QĮnŌ0½ļWĢ-mµ¤Bā„tév„–ī‚„Ŗh’L“Äc»aū=ü ?†ķx+*z#—™y3óŽ›ųģŻŲŽ‹ÅéÉÉNąK+4Ō¢'pqD6 j0-Į%r”¤ƒŹJݬ?*į= ”°#]cą¬šå…t„2i©†ó8ŗQˆjŪ÷PŖqĻ¢i  ¬ %Iķ$e­x@#”\ĀŲ:ģ^ŠönÆ/ÆvŁ•§ žL‹&ŌP mXÖP“0­ė8ļZY.É UĮ쩿Šļ®¬iė×>ń·"Ō¬ų@R’ćølŁŃŗK4ÉgĮ%|Ā¢W!£ł‰ B7O]4ҦŠwø܅ŒiU‡’Ģ0ː÷9ÓŲcI.––µø§#¦V0AžÆÆ?ēyšœ’LŻ3%Kų¶÷%³mĄŪóų6Ézn·éW÷%ĖŠ¼›C2(iŚø•Ü •vRčX“ |Č· |\L}>ÜXcāŹ6VŸe4аž±3jĪvj:€kzéS#¹voaķČčd6qššŌ@ŌņQ;ŹFĶØ÷Ø5uīggBŹ ›Y䐭…lō„Ŗš~’Āī{č()1v6,(¦žEM$«dž•U3åÖz®¦.T3ø™C6=C5ł_Dµ`mrG•«:÷¬ķeģF|ņ]_ķ 9L½Z.īŽß,žPK i5P¤(ē£5 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ne.phpUT÷Hƒ^VQkÜF~æ_1…KĢUNRȃć¦McRlæ8‚9“²¶9iÕ^Ʀ $…4 Gč“qŚŗ”P]k܋1¶öKóWōS:»«““+99qpŚ™o¾łvvwV«Ÿ Ća«µ¼“Ō‚%øŅ: €’C— `ˆĄm—÷YŒ&KÄJų%ļ2|Į©ĆIśTXķĖįē1™p<ŻĢ”_2®ˆ‚Ń`īqŗ pcŌ#q‚)ć€ńČ”Åˆ‹¶o(«ø;·×·¶×%•Ņ'BWĄŲMĄ§‰ą“?ć1!zP{ĀFÜ#˜ČWb—å eģ­‘OVäūĒ3&Üx7¤åD›¾bIی“@·¾†ķQŸų4wÆĮÄÅ*$Š•1ā1쓟öqy>½ ķ,ż1K÷!KgYzšM_féæW<6Š…akwņ@U ž®!"‹Šā>ÉŅó,}—„GYś_Io˜‹x+C#hLČ ‡ c„$­āłīž„÷°TšŠ‹Ör‡ø¤ć«,ż]%žĶ؀a.Ā-öFPDcÜHõ:«BMŸ!ŲØsi®Ō+]‡%Äc±?Ļ³ÆœēŁō1؁\xTW¦:S Ó¢_LVŗ÷@Ż]–ƒbŸféN!ØqŽ 8‹z1W jEÜ@ngé/Š>ĮƒLj¹^U > ‚2‹rėżų• =’`¾ŹnŅøĆl:1p‚EŒó’ń $]efŖ»č‚é«ĢwuČ-U¶ „+Q¤Oéa©%Gn×”+IrZc×֖77—ļćc8ē^ŲÄźīŗæ (,}|:°xx7/’ēHģē}¬R„čȦ|v²ōŒīÖ®’=&ߊ*¦\‚&ä½¢ŪhŗYśDśé¤ RżNĒŽø‰Į_ī„&¤Į Oó{Čå×I¾m7¬²D„SŸŻFƒQģÉ[ .}$›Ņeų® ”An„Uų¤źO~[“ew—Ē.•›óFyŌČrõŚÅ43U€sEvōa¦ė3é^«—ąL­‘]»r1Ł™„Læ4­:²V‡GÕū.?Ŗm¹Ęņ¢Ņ×āćvG†ž„ZÜLµ8“>±Ü'ŠYߢ?kÓÓł5uŖ;M|®ßĖQušV±Śņ§½%HśnG—¶¼³£+§¾³å‡&¾·åožZIÄæÕéå[>ĢG—ÕėŚu7ƒ×åć¼ž‹-'®ÅM%MÜU×÷¾wļ;2/ś<ߚ`ģā+‹nŻ‚“e¶hNØ©Ģ‹VZ4@%Č#”3QØCŲé—•=™ė¢å7öž… ĆSGŖ°éęń‰Ė“¶įüš/} ² Ł{°!^„F§`øO9•J‚œRą;ˆMŁżN‹ļõ°Ż?ösŌ§Ī(L&AOI…ŗ¬ŲĆDźŹMaO!‹ÅRŌ/°ĶüĀŁūÅ'CƒÉ^Ap\źrĀ+I*T>:Ó”’5Ž_®‚š…‹į'“ “ķīšŽ¶õŖaĒķŪw]¾qu_żPK i5P QóVP6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nhn_MX.phpUT÷Hƒ^„TKOÜ0¾ļÆš-€–z„”BJH€*Ś Ŗ5q&ĒNķ Ūå××q†}@ADŻ‹gĘó==¶1u4S®9āÖÆĪ'¢Ŗ3F(×.½ž×$Ą–Āh…6DI[9ßig§¢5±ö q‘p—§ē×ßĻ{Ŗäj ±€ JČė¢#,ÅBSw¢÷ą:Æ0 •Élޟ°ĒžtT;śx_ܜ|ńgt”öĮ“5øxœ9?OHŌy+Ą{XJ­…qUśw<žī“G!åŁÅ”³,G;‹3ͦāē¤gφS…L|:āR*_¦Bvv–_]å··Ł4mŻ KÖ8K5c2“č]$Ģ*,<‡ ųĒ@¹*ĖTųÕݘ»@) Ų’Ę&²ō™SŌqhŻĆŗ^jÅɶāšhmŠ-±6ĆVŲ ū`lµY—WZ Äū–O‡'tŚŌ¦D¢p#qĶf¶ÜL,Äp6 bŗÉSkÕĮšķ¹ųÖQ£ÖfU–„:`Ś—T¶’EI¤«d„} ٳöŁćÄ{ÖÓÉĘ ź@¹Ī’hÉōģy. † < …AFŒź9Ja=„-9 ę •ÅØncVć| ]æŖQŽź9‚ŸÆAŪų÷õ cUü Ók}åöųYĮ€/6 *g·G1¼ß …ww‚|?õ€X=ż§ī?šækŽkäš»Ż“æPK i5PSņņ%ńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/niu.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ cH“PĄĪ•›ŗµ, ŽCµ·'ķ8Evžæd÷m¬Ŗf»­` ߖŒģŹQĀj ö(}šeeĪ8Q]“‹üĪÜĆ«0zh)õ¬ »~_|ƒÖ&\žž„ļAÖ 1;&Ä«šdŠąŲO„ŅA.ØüDGXvæLóźū8īķ×a‰ZłŌ¢ĀŒ N*Üg„fV[n { Y •¢a…m–.Ž“?ū0{hÄ섦µ.'ŗį±¤Bå¢Åž” :w½i_ ?™… ėŽŽŸ]WoϹkOułĘĶcõPK i5P›œDq6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/niu_NU.phpUT÷Hƒ^­TMOŪ@½ēWĢĶ€ QƔR($U¤@%’P…VgŒW¶wÜżH”c’[X×öŚĮ*q/Ķ!;;ļĶ{3#kÆ>—i9MĪĪFp«THdNąĻµNĄ¦wØ×¬|*Īš•Ęž[ŃOāSų¢%*x$³–ÖĀÕŗŗŽ(e;޹øŌėZ(qy1—{-_S Ø6Ė˜”ń–*a] •¬Ī”Ģ }n+iW×-ęwÓĒå“’Ŗū³)ZŲ”4V˵³““©G|ļ†ŽÉmźf'ՄUķ­³)ksYÅšÄq6]Įro,¦* 3̐­ō1nńbį$P•æQŅŃX¹ZM“uZj{”©Ģ1&ĘN¹„M?ŌBÜϟ„GRcæēč~ŒĄ’¢fRĮ§ėŖÓ‹:ŻßO&ĻĻŃy ½4GT°²i؉ęØęŅKF3*ŪšM}Ž–”ĖėU’s§dsęŲ08s†«hI%łłkņ·Œ,—uųČې\‘”‚£~ĀųEŚC3”‘ŠDč”ēģƒyp¦Į0øuV;¢lƒūvęŪ”a…„«%|ü•‡ķå{-Ųv”•ĖŁr{›”Ÿ>§ĆUŗĀżåÖ­õė¼ŸÖć ’Fū˜n!Õ’SM¤6Vx]Į‰Ø,jé ł†T”ÕmOØ[VCė2ŃeĢNY°čĀWķ(Ž”½ł>zh©TŲ–ЁźĆ6{x‚žą;(»w’ĄQ ‹t+ģQ0åV`s @ń~Uƒ¦žUźžsłļ_mu:¢(›•ŹæƒżåU)Ł­>|€ļ£(†Ž”˜U|C+jĔbØüåōćčPK i5Pƒ˜¢”Ņ; 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nl.phpUT÷Hƒ^„VŻnŪ6¾ĻSlg‰³ »’&ķŚ$M»¤(šŪf-IŒ%R )»ĪÜēśy±Š”DŁqw1!ĻĻĒļ;üē‹—eVnmķmooĮ6\g\CĀsś-™2 0¦&RP(š²Ē„µša4‚׊3POø1šbbŻW‚\iʑ,Ž=ōLŖš(©ņ"Y.O3LĐó…&I‘HU0Ä؁2GF±ĒyŻīāŻ›ÓW§–Ŗ®ĻdĢĄœiˆ¹6ŠO*ƒ1̹É(CµkY©I(®‹Ż³=“m­L&•>°ö.|’ g\,3&œs¦˜xüGĖkøęœq9ļ7œqē© ¼g‘œĄ%cÖDNąf4Vśčü7ķG%K–2A#Ą|čSöĒÅ'簘&ƒ‰é/„˜āāc¶Š<ņų÷Ø$Š·¾L>½’*Ÿ+•ŒrV`›„į­’ŅĄ0›Ē˜ZsT®BS)7[@ß`L ąč‘¬„{ĘŌ2°;Čī:(¢Ųˆ[„l÷M“Ād=‚z/CE§ą­Ų÷ĄEH[ˆø‰Ļ§=EX¶ö4”ė°Vm#pņĶ›hĢz}ZĖĪ eZ¤UŁ‹C²¶7m’žJUµĆOf§Ń­ČÓØŽLTķ@rA;³?IŖĢ2šLo–‚õ4}Nno¦x›ŃIŃė6ø.ūn ¶±Ņ%-Į¶©™5tK–J7¼@H1Ē M¢dq'¤Ÿz9C5®mTaūœŁ€ĻNĪI ӈ*īņ1O’Ž]T½ų5Qµ‹&åÖ ŠÅYH„²Ó@]ß Ģöā Ø+vU– ^U.Qqß)Œ*Eį{ Sģ:č”\ĮŒå5.©Ddo>oā#ų»ĘŪī7x5³ÓI—…HṬLY{v5&tD¦TH™³‡ƒ½æ†“–ßæ‰åžč³žao°śļ”·ZžĄ°& ›,ŹÖšŻ!w欷Q5Śėń„%Ūϟ«Ļ0Ÿ6õ=;l_;Ո+ČÆżQ£»B:5š=6£Ūū vū8q€2tč÷PīŖvstӖ1øøvųó󃢚XŸø 2Z÷’.ur²{y¹ū'}½d“…Kś`=½ž‡ułÓ›°·¾wĖ©’žj ŗ§é:Ÿ Į>,—~ ĒGšÓ#xIµŲµv@ƀƒQåÖ·_jƒ{&*¦øŻ‚ NTcÓ®Œ5X©x^G°NÜWĀ’ęõ/«ŅJ›J[[ciŠ–a95Ņ›‚³&cäģŪ^5wšŽ‘¦«É×S ·…ōĖšUų"¼¾WöŖ^°Ó*Š;]% ’āfh>Dč4m…žxtßūqhLš<ķĶ9=ņ;¶×—ņĪLń{o>0ćĀ·+½®>ȱ“;‰±£wžū™©±ćÆS5¶%r<ŽĘ±8Ēį(Z†„+m­ÅLŗ§Õ~÷\²q²Yėµo˟=*§­ćՉœž€¶Q7ÖtīÅ ų<Š £Œq½V¬_Ōqm›Ünż PK i5P¾c…åŚ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nl_AW.phpUT÷Hƒ^QĖnŪ0¼ū+ö¦Ä°eōڦiŚ8 $94½E PŌJ¢M‘ź’“`}ł² ··ź²³ĆåĢ,uóeģĒŁl5ŸĻ`?za Įב‘Ż‚ķīÕZyŠļX‡„Ÿ ćWü¾‘` ^ŠŌĀZø©C{§|«mÉõp›G5E”ÖI \]o©¤ąØŒ·T­¦Y”ÕF‰Ģs{S¼÷“¹xy}R1Ÿķ™…‰h„±$jg±IŲŽŸųģF;ā荚v6 wæ:Ūk2^Ā#!Ā«nķÄ}D§šlæQ¼’Õ®[vRŌ|)5gĶ]§\©©‹¢„Ö‘FÄį(G_¹##öxEųĖ /\UėĶ÷Ŗ*‹•’„īb?gA½H ›>ßf*ŅO‘(Öėåóóņķ­XÄ£÷TŠA+Ūē;Ŗ)ĒHxɢŚNx`žēĄF22¶Nå*ce®sĘ:°ĮŃāP#…Fļ¬ĪP鿙n'|™¦2žYķŸL9O4>¹Œ‘SäŁ?;g×lxöšw ;œv?j’æŗ¼ī 6B™ 'gÜųY¤ÜģIl3<2›čæ=.6:źä’ ’vRMrIé_AØ’Sh[yJ·U‹2ņięÓP8 Ż¦ŽÆ?Ķ~PK i5PEˆkNī5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nl_BE.phpUT÷Hƒ^5QŪNĀ@}ļWĢ[ }WDåQ x1†4ÓķĄN,»uv į‹üĢm«ó2sĪÜĪĪJ]FQŅėEЃf.‚/Q<ŲxM0Aɬ ”śÄ# Bm]ŽQ] £5¹Œ½‡aVĆG õeO£æŅ¹•fŠ”* P¶¼ µ49¬Čø°Ņ¬œŠ³5}( ĀĄ™.Mßr1™­·³zT£ĻkōpA9;/œUžrø°×!“;[‰¢°(oÄ&õ ėŽ§Źk+ī¶Žo`cÆm°õTj4-˜ šŸo¦Œ[bĒ'˜³Ó-z„3x®Š[ā•Ķ`ÅyŽ’ĢĆ­\‹ßĖxD¤¢käłJ  ^S”²@EĮ«JŸ©#ōU±¤ét±IÓAœ˜b>*īĆGĮāöT.†ūŃÕŠĖ†ˆ§ÓdµJŽƒÅż&¹ļGūī]ō PK i5PŃē±Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nl_BQ.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦‹”ÕlvęPK i5PŃē±Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nl_CW.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦‹”ÕlvęPK i5PųÓ„BŪæ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nl_NL.phpUT÷Hƒ^QĖnŪ0¼ė+ö¦ÄšzjÓ4iœ’ H{ Š@ Ø•D›"Õ%iĮžśņenoõegg—3³ņÕ籋b5›0ƒ½0Š ‰ąėČȂnĮöwŒj­<Å·¬Ć„ß ėü¾` žŃŌĀZøŖC{£|«ķ’ėį:Æ~Õ…Z'%p=īIt½¦‚£2ŽRµšf…Vs%2ĻķNńŻćĆŻżó÷ū óŁžY˜˜FK¢v˜„ķżÄg7ŚGoŌİ«pax{ėlÆÉ|x/·ßĄ’j×-:)j¾š3‰ę¦Sn©©‹/ ­#Œˆķ+ĀQ2޾rGFģš‚š—„PU뇗ŖZ–+%—ž›–sųYõ2]eJųt©H?F¢\ÆOO‹××rGo©”ƒV¶ĻoŹ SŽ‘š’e‹5ńĄü?IČČ`lœŹUĘŹ\ēŒu&`ƒ£Å”F ŽZ”Ņ»Ż Oų_Kį “Ī[9«=f°”¾ iw¦¶)R¢¬ū:œ0ģżRūĀXwģWpn…Žü6„?ŽŽ/ž$Ihįvó¤ŚĶ£‹‘Ķƕó(u\}=…K'č2\CnŃ×VĆd4Ę+v >Āų(5µö°y“ėĪF˜øė€(÷””Ѿ°©Ķ£Łz°Ākoéż|‰XŲė×Ł£ķAģX&V¶LĢם)zt-2hÜ+č_šy©Ś¼d÷ ;l`Ü TRS© /4ø|ļ{pÖ_ļD;LĪt˚\-]¢Mi‘ėŻų¹a¶pp2zĖ­QwŚ,#Ą(h0m“y<® ĘJlÜW·~qq¤c9pӋ97ĘŠéir}ü 1n£ \Ӏēń˜”U2…g*ZpFvķčm™ņYSQ”Īųõōė„ĀÓmeM.C5AY™²S ‹čåÕųÓ÷‘ŹŲ95øżąļmż7B'»‘•pŚ9=å=¤Ś‘NĪ7O ŚĻž•#ņ¬r\”W]±™Ō¢ā"ҵš”MŻ„Kd|/t•Ī,›ōT\˜ÅĀŹ*:d˜īkĶsÕĢ¢ž×ĪĖįĀcȦō†MmZw†.ŚÓ;GĶŲwrX ė`C¬%p~ĪĢY9a›+t.j7Ūc;zm¢Łš!›~åŲ2zkyśP°™[d«µ ęß䃣øØ3š3933-S2ßs.ź1-EžHY"Iäh)riĶõĪä]Ė~Óµēą  «ö+ō–Q}Q9=‘ÓĢŗ­Ģ$*Fä‰JĆL˜é»ŃPK i5P¬ą8óŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nn_NO.phpUT÷Hƒ^-PANÄ0 ¼÷¾-TØ}+@,‹“ŚpÆŅŌŻXdą8Tü·ādĶx<3ņž1‡Ü4}Ū6ŠĀg 3E›Ł‰BšAĀĮɘŲ(’å.Ų™v•ßų[xr g,#©Ā~\įLŚłt}ų—¾&ٌę#ų”….AĮń‘ā»sļ.Xī†U:²e]`*Bb8eH”?ŃŅ×vqŅJ½åÕ=Ļūõ<ŗŪy›DI­ÖÜŚŖĮœELCČb ¢ ČLDa(O „üéŅęęéž&¼WŒ8”ŚcĘĄŽ—_ß ¼JÓš%ߝ§~Ŗhöć|™dŠu#D3Ÿ #E('†IQ‡$¦± FÓ¢īųhļąäō oUģg"b %¦b^ߊRf"dpw-ūʧ8((–mÖ5}%€(E2WŃ$&>Åč÷•ftCŃĻ}¦(øīžŃG×m8M*čŒS‡v š8œ*0Źx³ m‡{dśhoŠ€IŽšS{'¾ŲÜéŌˊ”Ņ^@2]TŌ½‚»:’ŹĢūÅŁd4}œŒf— ?|µ?ĒCcoóĪü"“wó³ļå,īM®f—“+°NmoĘū`2śwŃōļIE?nÆ»¤ŠW‘U‘.gbU(—ĀDkņK“"^“ń°ŗżÅó”ŃĆÉ ŗ©½`L“ UčČ>¼dśöÉŽ/n‹nUXœŪ'Ū›RV™™«x‹Č½é·Ł`iڀ렗ƒé#Röi2zieÆĒCRŠ©Ģąō<•ćįŅ"…ČgC¦“qŃIW†nnjaĶ«g¶ų„•å{,ąć³q·9ŗ°Lœ.1ŪZWȒŚßo¶ZĶ,«PĻ“Z­:|ĀS„ē|;ü!@mA:yž¼Ö·YŌxæŌ’–£;Ķ×µ?PK i5PKN õxn2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/no.phpUT÷Hƒ^]MnŪ@ …÷:wJ WŽēÆmāN E ( C F“Ex4£pFvs ž¤+õ³ˆĖ gž>¾ĒŃÕē¶n“d1›%0ƒ×šlŁhoQ"ų-Ěą„ōN%³ĒeŹöų™9‡[atšL”äįŖģÆ_œ^}̌on&ō›—ĮhŪY Ę·ļĀ»:ŗ ,rA#ŻÖKƒ‘½›Ck U;0‡¹üįīžłå¾·ö‹5F8b€ŠC.»H9ÖśEw¾CT Ė.śö³_»X{ żł,Ń1YxÉą–­e·åļŲŁńōČMƏ¾F‚w“ŖėŠÄŅ!ģ…b'Pß ”Ö¢!ķ¦“Ą:zėXŠbłš£(²tįŹL|:‡uZéųōĀõĶ$ ržēƒ”.3xŅ‚_Z°Z]4M:?Į&®ŅšĆ ½ŽŪls2³[jŠ’«PžOuō;ž$Ś–ķß?ŠŪNFłėĒd‹įŗęĶ€®œ²šø9æLžPK i5PÜ/ŁņN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nr.phpUT÷Hƒ^-¹nĆ0 †w?·“Aa?@ƒIS @‘”ĒŅŐeŚ"¢H*EÕČŪ—v: ¤žć“6É„ŖjÖė Öšé(Ć@AĻdX  agø‹AWödF¬U;Ėoģ-l™L€#ęŽD`ÓĶćSŠ1Jmćłį_śy Š÷`cŗ0NĄ„qF`2zŹĀŌĮ&§7Źžca‹ZŌ/°ĶüĀŁūN!NzLńŒćRW2^ńˆ³RłäL‡BÖx¹0Jį †ŸBŒŠ¶/‡÷¶­WMąöū¹Ö_\ŻWPK i5PZ,vc ó5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nr_ZA.phpUT÷Hƒ^„RMoŪ0 ½ēWšę¶Hģŗu]?Ņn-šXŗĆ6mӑEr))ūėGÉ^‡nĒéB>Š|ļQöɇNu“ÉüčhG𠓇V‰r×BP—Č•³RŖ7ø¦™ō¦öƒś.X£…{ņ•NŖϬ@fµŪžŽ­×Ž3QŚu=ėµ €¶£k²^$mėx‹A;;…ĪJm§iŸēīn.ÆīWW‰*ū ģŃC£}`]Å@ ģuPr#޽‹\“5Łģ2ŪæL[m’‡G8Jז­fŹDšPOșōĶtņxųnņ PK i5P-GY†óO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nso.phpUT÷Hƒ^-¹nĆ0 †w?·“Aa?@ƒIS @‘”ĒŅŐeŚ"¢H*EÕČŪ—v: ¤žć“6É„ŖjÖė Öšé(Ć@AĻdX  agø‹AWödF¬U;Ėoģ-l™L€#ęŽD`ÓĶćSŠ1Jmćłį_śy Š÷`cŗ0NĄ„qF`2zŹĀŌĮ&§7Źžca‹ZŌ/°ĶüĀŁūN!NzLńŒćRW2^ńˆ³RłäL‡BÖx¹0Jį †ŸBŒŠ¶/‡÷¶­WMȱż~®õW÷ÕPK i5P*öē—‰–6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nso_ZA.phpUT÷Hƒ^„TŻNŪ0¾ļSœ»ŌµŚ-c JAƒµD¹Ł&d$'‰ÕŌĪl‡Ø¼ Ć{Ķvܰ µ\,ŠtŽĻĻ÷}>±sś„*ŖĮ`r|<€cø/ø†Œ—ÖVØ Č LAp‰*–†’5ę4¶µ®|˜ĮTq°$scą4vĖsa—ŅŒ¹9 „×Ry ¬.KHdµUøŠļ„)pē6rłķåł3“Ęz~æļ’ు­@č÷ūšmĆ5ÆČÆyų+™ß¾~Į…®7ģ…Ŗ~Ņā·MÖ÷!AöÆ1!1L°”’WooŽŗ2wžÆ÷OßĢĮ›;_oæļüPK i5PY™ģe3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nyn.phpUT÷Hƒ^„R]o›0}ēWÜ7Ś%Śk×u[šN­(©"M[U” ˜ąlę¢ģ×ĻŲ! Šö4æ{Ž}ļ¹pū¹«» XĢfĢ`[SmXģPj蚡=Ź\p[*īČÜzūUq KI‘ĆšØœj ·ł@æpK…ž¢½;Xæ éŖLÓ@!ŗ½¤»ZņZ®lK^ Ł¢¦‚GŠ5mķ’ŽŻ{~ŗX§ĆSn>]£†”TiIs£I =ÕµUģģJYŪØtĆ.I“‘PJÜg’t Äba¤¢ļäJ’߆JY¶zŚdŁ<\>·› #x Ąž°'„•øW!|ŗƒ×0µ“«†/²ĢäČ’ą"ÜJzbŹĪjN”Ÿ5"#m CÜaųM[fŖRæ®;ˆ—R^‹·’ųņ©–ņ’zØ\×ć^Ų4;›dgÓģģ,;³阿HķEžĖœ8Ÿø{ĀĖ#£Ģ“tB€#XģÉE•ŗń¦i&ū—?‡Kńrć uˆż>ā­‡$öz8æ{gā`ķ-ėå±WE„Ņ™ż™Ø²į{ø†FÕżś‡Åŗ’+?o]%||¼iŪ0:Ņ3åF©‰č„Õj‘$‹öLÄQ…$IąR=—½—Ż¶Ņžže¶Łß®?PK i5PP-Ԛ2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/oc.phpUT÷Hƒ^•WĶn7¾ė)ę`„Ą•ź6'9NŅŚ.jĄŚŚEPH†AķĪjéģ’*ɵ£Vś½õV_rń+ģ›ōI:är’,É?„±āp¾™łHÉńė·‹dŃė^¾ģĮK8Oø†˜§ō»`Ź€ŒĮ$Lͤ ”š#›ć°Žš½āLĄ{Ō3n ¼žYń Qša(³7śƒTĪQœ§)„r±T|ž`"‚”‡(4…±T3\ŠX¤Čhģšć³;9>8zvd]9~&an˜†ˆk£ų,7Į 7 iˆ»–¹ ‘EŽģČĪŠŚ~—›D*=¶żÆąē…)¾8Ąhļ,ü@^£¢9Ļ…Txfhz<¦©¦LėKüDįt?8[f±Ėéō@f )ČĶtz®˜Š©ć?ž”ꊄü'ž’§ØƒĮžģµieŻ·m×MĒc¦ē"“CŠ!ņl†Ŗņg›B“+^ūū° oįkĆīž}ށ@†Į`Æ÷yĖ\DŌėy?g,‘©öß@0e.ģ~­źžvJ»lp¹ŲŒY>ī&“Ā$X†zÕt±°…„ˆŪpŁ“¼Ż ~ģi±3&ŲŖ+¶¢7¹`Įožć;bŻ…ŗ’Ŗ^*Ūo‘Ø”“[aŃÓ¼%t\:H©jŠŌmEmvź[`ÉS|e\Š”ķĮ„ŌŽō–…ž œÄ§ūÖJŻŪØ9 µ6ʉ-6m›2 4ŠĻņ>—%m[L„µ‚ūŽU.’ŗ›&h*ų\jćō®`6£cnÅ’žś[†¦ø«dAֈ†„Ų„lóœ6+„ųoQoó®I7Œ=݊«%źĒ6Į6¹.³-“؄3 £”§3¼Oeų0‘aÉc1ō†>žŠĒÖqķ{O·T½‡tiŠyI‘§¹½;mBW½ā6Tč…«ā.÷ŻkŹżzœRifp-FgvŃÜaĖČÜ7tß+÷½v_½ī£züžķAŖˆ ®Õ›;š¢¼Ł¶žĆ~­°­ļ ØŻw•Šj”Į€ŹŌ€TØvMK󺜄zÖ!Õf䜇ŪŃkß>ę£Õ+ge¬UPÜ[ 5ė£Ż‘FTU¼8øŅöZ^Źø)Gw›*ŅŽ— «µR]£æņؔž•ńYBI@€`įbÆ÷?PK i5P>įFŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/oc_FR.phpUT÷Hƒ^-PANÄ0 ¼÷¾-TØ}+@,‹“ŚpÆŅŌŻXdćą8Tü·ādĶx<3ņž1‡Ü4}Ū6ŠĀg 3E›Ł‰Ļ įądäd”’rģL»Źoü-< ¹g,#©Ā~\įS2ČŚy¾>üK_Y6£¹ĘžóÆŠ%(ø4A$©XdšY®N‰ÓäˆĪøĀe»{;ŽēćjµõÓąW`¢¢BcUœ`! ¶±ī…«x“ i+Ū7‚Z%ąw%A†—Óū0t»ž}gŲŻ7PK i5P8¶QsŻp2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/om.phpUT÷Hƒ^„TKrÓ@Żū½BIʱ‹móĢ'¦Š¢(JՒŚR'Ҍ33ŠcV\ƒ»pŽĮIhi&ʱ+b6óyÆ_æéiĶžĖY1ėõ†;;=؁[˜rI ć =W£I“’­ōs·”o„Ūpd¼%›°s°Ÿ4Ė%Kķ©®^ź©6­Š“.KHõla8/ Ź ä””•”jŖM…޵źĆ¬$”½[¦y÷ęāųäķ䤑jż¹ĢŃBĘÖNjGĢŁ‚ˆw«k“’$ŹZ³Ćę„Mģaķ mģ^3߅3Ščœ­“µŹŚüš&˜cI“†÷uR²-Xåp¬p”ŅČWźTXö 'ś6Š&osrµQ€Ęą"64+1%ÓŚX¾„-C75‚8]\Ęń ’Č-D}ųŅkD#_Įóa«Ż~󱯉ĪĻ÷Ŗ*ꯓdĻŚ ‡F£įx<ü,ß0 Y¶;w7į%‚”!Ąfž^–õ=uŌßdõCTIŋp¾č°Ā«+f9~tV”–(°ÄfyÄNkGdm»<)“vAÕ ¬ė?8dńWN‚l r›R«’‘XOć)ėāFµY-M«śōžČpĘT…TŸFm¦£FÅ–Ń<Ļ„]öRł‘]h¹hŃbÜ¾ŅžqÅææ’X—Ø:0Œ;¢’–ÓćNiŅ5…y†ńćĮĖ{8ÆåWXw—u`?ė …¼°·ųė§ōóšDŃ cÜ)ŠĖJ^öš¶ą ó͆Óū6| Ēø[ij,„Z…‚XŗÖ²Ųpl»aŒ’!ņuūYļPK i5P óĢjĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/om_ET.phpUT÷Hƒ^-PŃNĆ0 |ĻWųmP”ö˜1†4iŚš^„©»X¤Ię8Tü=nœuēóŻÉūēģ³1]ÓhąĖS‰‚ĪlY M į`yHQ)÷mÆŲŖv•ß¹{xe².Xż°Ā—Ø0IėŅüō/}O¼M5p)’2]½€#r‹FĘ)ńl…R|€Š*÷CølwēÓįxł<®V[?ńV`±F*Ā4TĮÆķ^Re‡4ne;Ć(•#0Ž*1Bßæ>ś¾Żuinõ»GóPK i5Pv”ÓCųN5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/om_KE.phpUT÷Hƒ^-PĖjĆ@ ¼ļWčę$§÷¦š¦(9“½•²Čk9qv]­“æÆlŖ‹i43hūŌ·½s›ÕŹĮ ¾ZĪŠpG`½GQH hK°C©R“Q8ć‰JćNōEXĀ‹0F8R®X¶ÕŸ£Į¤eH—Ēź[’YØŗBźo§Vc ŠŁ,c“䂏)®”ļmveē»÷ĆnüÜORs>mQaÄ 5g®„FÖÖ6–=§A™Q=‡Ż8!$ŠąĶ õ²É|„…ŠļĄBążėįĆū²Ų¤KiŸ)ÖšķĄŖØķ.5¾aÉźG¢ó„n„RĄĆ#Ü­ŻĻņŽżPK i5P«ĄńN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/or.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې*”ų8Wnź6Ö²¤8ÕŽž“棳ü’żól碨˲€¾,GŁäsFQ#Ø%8 ōĮē•9ćDUÖ®ņ;sÆĀ蔄س*ģūu|ńy Z™pyś—¾Ł‚Ęä˜0_…'«€~dž|Ģ•~ rAåą`v„y÷Ė“l¾÷ępj?OkŌʧŒ0pTį>) °°Ś|“ŁcHb( l½¾põ~ū³‹‡FLNAhŚźR¤KĢTn¶Ų“²Aē®·!Mā³į'±tݱłčŗjW隶ʿø{,žPK i5Pé ņ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/or_IN.phpUT÷Hƒ^ķ–MoŪ6Ēļž¼y ’»f]×4ė€I= ¹CaČ2m µEƒ¢ēł¶t9 ;݆Į^Pė…”‚ X½KņUōQF‘ņ_¶āöŗĖtE>’ēł=|(J¼’éě“Z÷vvZd‡œy~HžˆŻN.įQräš ōūĀŅ}­-åø’GÜwņ”†=_ræWvŗĖľĖĘ*éēŒ›@ƒéhD\6™sč ā}2ņ]„ ;ĀgĮ.™ŒØ£Ē¾ņéĢų?9züōōqŹä'y@Ś…”…¼*ŌO…ü³ŗĖ¬7…ŒŚ»ksj~ߙÆÜ^酑^ņvC-ؘq^3~(äRG\n¶9ŚJ‡ĘŦj†ĻlŽwŠ“ĆJ]™N×l°a®ŒŸķuNö:Ļ6L°‘}‘¦õŽ™lĆC××y§ųy5Į1 „WĶO×äµ­r”¾5õŃkšM{·,VZØórYŌ÷ ƒ]»XæŚ»5¼,dbśWĘõņsūōŚ@¢õε‰u½œoMˆK;“4‘lŌKóœ™ēņmÓÅŹüćŗ!*¤Śźń›^ķUä5Ūf}ŗ”Ž ā’*½«J3J_čmXæGWFpkī7ˆ²4ø¬1Ŗū昐z"5lŅĢxŃ}eFÆĢ}Ćš·ŗØ Ś“•Ó[K©™|c‘«)ld¾%į<›émÉj#™»9ŒżąæÉ@Ó»lŠų<Ż2²7§7é|T©œ‘čÓqr¬µzc*‹VöUU±mŪ¤¶‘¶Q¶±sQyå^B¬Ā-q  Ä] ōŃ,ĄˆĄˆź|ĮˆĄˆĄˆĄˆĄˆĄˆĄˆĄˆĮˆĮˆė²€ƒƒƒƒƒƒ‘€‘€‘€‘ŌÕ##########­ŒŒŒŒ †C‚!Į`Čś]C‚!Į`(0 †C”źW †########«w99999999y½KĘź3€ß>pŁ4dķ,övu*š7ūķõßeĆj’}KH¶˜į_~xöåź_fĻh’@ś>āpŻóØ’ļ7{ś€ÜPü\Č?,¢¦¢®‡>2 zwĘ·ęė{¹&Ū¢A”ŗ,h&jĘ«d~‡x‹‘œ!«ĢĀSbJöŻj}õ¦9ĒĮ—³q} 7j{Fтē·žPK i5Pŗ!ŪńN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/os.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې&”;Wiź6Ö²$8ÕŽ·ćŁłü’Ķkr©Ŗšõŗ‚5|;Ź0GŠ3ˆˆCŲībŠ•½˜kÕĪņūļL&ĄsG"°éęń-č„¶ńśņ/żˆ¼ Å{°1ݘF'`Bž,†¬•aˆ|5B19Ó”5ŽßīŒR8Øį§#“ķīpjŪzÕÄÜžĪµžāź¹śPK i5Pü¼ĻFĒ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/os_RU.phpUT÷Hƒ^­UĻOA¾÷Ƙہ6^LH€ƒz1†l¦ŪiwĀv¦ĪĪŅōFQ{€D<`bŒšW[„ȯ`6žC¾™n»J!÷²oŽ÷¾÷¾÷:o;õ°ę×r¹ĀŲX”ē> Q™Į»†…D¼Œ¤OŠ,EĪĄå­ā ÉC¬ńFŃcA1CĖ$,R)ŃTQg¹Ģ{¼:mCŸpa•£ @Æ5­ųaVBõ ”$+sQŒr6ŽjĮą[£¤nx‹ ³óĖĻęu*£OśX¢:Q‰†RŠb$I Õ©ōķ!„G PɈ-č5÷Q$}.ĀImO bT™Ø“čMÜĆ g*,ŹsQ1Ad$ĀBą†+H-Ą·‰®‘A^ETäŗs O]7ļĖĆ0qō2‡ąq’vB=˜¶.ć^4gn.æ“”3nĄ•äåT9“¾e9ń¶źŖՎ×ć-ČģÄoŌ‘:ˆ×U[%unŠxS«ėk«Kˆ9ŒI±ćųźŲg)ē@żˆ_ĒMȕŌjB†.œ¶U§W_]ØÓ?<]u‘9ė²%žlWnć—¶7õ]÷f8ßtWĘś¬»1Ö{ŻCϧNŒõQkO­3ŗµ«õė«Vi¬/Z±v“®TOÕnōę¬ö ó­øÕ_«t™äło’:LŖyµoõģčČøuµŸŌ½j™łg|j?ŽR—źRsĄwŽļ#9ŌŲÕ³‚ŗiĖNkŌu¬Ŗõøi•“5$•ūsŻ[£s]ž*e’?{™ŠPŗßåeW—2%īYŌś“ źSƒ`ы²×…2XédS&=1‰ąršĆ`õ_( ŲŲ P\ HŹ»; »’P.”†Ä欔!ĀĻŪU‡ö²\_0¼+»w.”ÓɦmµÕOūĮqCģ#ls>’õA/©ÅoĄ`ŚĆŁż šÅOū‹ŲĖSæ5»·%Jļd6Č.§EoĄ°;”›ųšG”Įį£ŚŽßšu·9ü[pģŽœdeō~ī7PK i5P»AÄæ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pa.phpUT÷Hƒ^åV_kTGßOq «ak¢„5Z­‰Pšˆ`h)aYfļ›;õŽ;ĖĢ\׊ *ˆ‚|Y*¶„ é½VĀZDóUīG陙ūovõ©/½²sĪļüΟ9sfVæ‡ćNgyi©K°2 ‹(ą’1 x*¤pˆOPäŻ!;ōb5üŒw¾Œ$p“ŹS VGzy5Į%Wē<_)”7ø0DAEąńń®`;”’ų1&]&1QŒ'=G” ģ.£c·ńõõõ›·×5•‰O…DĮ„Hš™T‚RE}˜0¢c—<EG¾ vYgØmÆ„*äBöõļĻįVČ"6Sų–¤^H…•nÉTń8…oRĮ}R"Óä22L‚ŖT$°Żüŗ»”ˆ.\¾Ż"{RäoŠl EvTdļ‹ģŸŸśOÕŗ=kóD…‹fEö¶ČY†šĘø%ΟTJļT o‹ģļ"ŪsŒ¬ģ7F>Ł]ōŗ_dĒČŻ˜–‚Ź(ÄZ.Z½(ņY‘żįų¬dĆ˜%ø3u•ę±E:9–²ŹTR'~e:-ņ‡Eö»-åōG\qn śŠÅQÆLjæāV“‚ ‡ ŸøŠCÆپ¬«Ē‚ Į™MĮ˜žtŌ»T**Zuž¶¶Ż °·ø K`€4*Ū`F¼±eĮ× ģDZķ·&s» źKy Ī¢Ö֖77—æĒĻQVZŲÄՋś|0ŖŚÄĒÆŸb8(‹į‘ˆ&~y¼ZՐ$¦kU·‹ģ1ZkŌņ›Š{ŖŃE> ó]}Š,Ń/ŗ3²÷°įŗ‘%Õ‡Ōéø“yuBė‘,ÉĘ\b*˜Ļhl“Ašxz@Ā™Ļō±< ?Ö4,(…° _“ś+‡¶ŪĢL¢½ī„Z’DŠó+§sé-Ėń4Ļ>Nsńtš}s~^™Yuü)d>Ó;“ځCÓYDŗøßÉåÉėź~ŌCųP£óŻž¶³ćt6'=0l33&ōś±Ī(’Ł@žš£]¢žŚ_ŲčĢp-mĒÕzŪ„G:Ą^™×žjÆu…*ČŌHµ„&\øÆĶkŃĄÉt(ń"T’‡|õM‰¹ŁŪēę®<“‰T^óg&jGz`ČģLpÆMĶIĶ%=[ Ę2"Ü\œ§ØõĶŽ¦/õ|üs;ö¼U2ü|ĢNØN„n`&Ŗł`½ćUž_ū˜jˆŽ‡<Öž•ę1£å¤µzUæĒĪ—Ø߇eÜč’Ą4”~“$-Ū+=XAÅąRē_PK i5PUæqāæ7 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pa_Arab.phpUT÷Hƒ^ĶS=oŪ0Żõ+nSb֞¦iŃ8Dš,E“DGD$R%© ÄF†żq0ŒN]ü;HūĻōD©ŽŻ5(ńīŽ»{ø’®H Ļ Z-Zpž2}–QĄ½ RƒčƒN)ŁKń5¹¢äVōx>HF8œRÕcZĆ~ÆJßsL…īÄ"?hØ…tƒśe–A,Š”dW©ĀČXL¹BIŽ2'š ކ"£k7Œ\ßÉńįŃéŁQ5ŹłÓ)Ń0 ¦“d½RÓL§ˆ w%JSJœŁĄ“T—’‘’ #I‹ŒÄ÷ø”ŠŻŠIæ”LRˆ¢īń§(źųA);x3~.<Ąå(½NČPłšö.|35Oöæs¤ųv±ŗo¢±,gö¶ŠĶ£żjfĖ…‹ŸķŲü0óŖļ%_Ŗx5²#ó„ńe{[+R©śUsĘ_C/\§ė»|¶TšÆīŻü‘™odćŹĮrā&Nķ¢Ŗ×Śˆ<4:wv²Žn‘’P÷šérf¾7npĒŽĒś ˆ|s§kņJÅ®&Ūö»ż?ž×õ{j®Ł•\łäÜUüt/ρųķMäģŚSź7“ĘŗŻ ƒĻø¶Ą_(„a¢›pĆ_ō×¼Wŗ’¤ć/wßx?PK i5P]"40-—7 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pa_Guru.phpUT÷Hƒ^•QAkŪ0½ūW|7·Į$=w];ÖvPhzX{£ÅVjQ[öd¹!·®0ŒA/„Pz›²•² ;ŒīÆč§ģ³œ:‘—@¦‹ō½÷¾OļI”9N§Õr GĖ”Ļb øgDHHū # ŪDōRŽPpJNhµ„|%X…ē‚4ļ1)a£W–Ļ8–©li²9‘¾H…Ō/ā‚4 vI <„˜”ēx%ļ§"!’„܃,¦±3F¦oo{÷ąp·eüɈHB–KĮz…¤! ˜ŒAļyZˆ€āE”1Ūq•…ą@„ C_Š,&Å=(DĪĪ芠o &(ųžĪŽKßo»Œ“ńe\^;€Ė­¼å.<ݜ@Ž?2ˆ­' כe§Ōzž7؊Ūét;Ć”E<2Šķvį.›„+ރ9—×Ā—‹åĒÕę&)—Ń$ž«Õ­VJ«ŸZ}Óćs|„¾jõ»¬mō^«ƒŽTõ;­¾čń#iõ£VŖÓ­_ąģŗx‹3bT÷_kõK«U]žōēßįČZreŠ‹YŌŲµ…ŸŹö²“śy” iåµb.‘nÉhÓ\V¢f+…åæv> ō4$Ćé/]–­å<ŌŽ±į½1e”÷ę®!‹ø+mŽækõ¹A ‹óĒߞŽ3éøZ@—žō„h¦hüĄåĢ—›MēMĆ–Ļłöŗś×LĀų’Vž×ĒÖõ”‡ÕĶk¬!q¼śÄł PK i5P­ä Püc5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pa_IN.phpUT÷Hƒ^-PĮNĆ0 ½÷+|TŠŽaĘhķĄvąV¹­ŪDėāą8Tü=iĖ)~ĻĻĻĻY?z㳬Ģó r8 ³Az=Šw †`‹R³KTsʞФäWĶ5<‹E µU…u=Į'— kŃšåį_śŹ2uq a’+¶7 čZlC.¤•®c¹ Zv7ąĀÄżXē¹żvw8ī&«9ŸT1@kƒŠ­£R £U“:){ą( „Eķ¶œ.œf7Q Kø›ź[x‹ _)o't õĪĮĄ‘…ŗo‚Y ƒā…Hχ€½¦sgc!ā@č;Z!ØŖ—żgU«Ņc‘¾vuŸżPK i5PPæ­žõ†5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pa_PK.phpUT÷Hƒ^ÕRMoÓ@½ēWĢĶm”q…R M‘*µ=„*kmOģU]³»n”#¢I£ˆ?"ØŖEĄK~‡7üf7NK¹ƒ„/3of޼·#ļ=+²¢Ńč6› hĀ›ŒkčóbĮ”Ł“!2IA„ų‚„Ų”Y7¾ļĀ Å™€3Ō7ö"Ai:±ģ×£/„ņ‹śežC,‹‘āif€‰r£Š$)śR ˜įR“ Č‘Qķ’ćŠóNŽĪ^¹Uޟɘ!ӐpmJƒ ¹ÉØC޵,UŒ$”x³]÷BĒ}^šL*żŲåmˆŹ“ę<ŠŪ¹ŒYŽś eGŖŌSšR `J±QذČYŒćRi~‰; ߗ\!„aļųUv‚.Š3hĮ»Šlž£xŗ_—|łÄ‚^Æ{zŚ}K_ŠņĶóMR˜¬fÕ­Ųiµ“3ŚŲ”Ż£q5Ɩė‰Ė«¹]¹ŗ½Śtģ矟|żÖNķä.»¢¹Łf~½Ø¾V7>§H»¾TĖzÓGĀÓ-vśæu‰U£‡~CM‡5’ė!āEĀFwwž{ö¼fÆģ¬ĪĘv²^lü±^Õ®ĘՏjéX÷Ų^{Ę5½÷†ņ?•^čč øųūj¤Ź~ŲēJ›ŠI;4B¦¼ō£ķ?‚Š'[?ßżŽonĖłī“Ę/PK i5P µJG93 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pap.phpUT÷Hƒ^TMoŪ0 ½ēWšę-HSģŚuݰ¦C$½“;EČ«‘%C’käõŗŻäę?VJ–øŻi†m‘|ß#żqłµĢĖŃč|<Įraa#$­%3ō\ŽpĶLŖ…²Ūā”r}ś‡ģ#|7‚)øC› ēą2õī7E®vÓLW1õ‡6”Ц’2]īŲę˜ā E†Ź„ŚhS0'“š@)‘QģY`öĶ^ßÜŻßųRAŸĖ™ƒšYąĀ:#ŅŹ!‡ZøœŅnue2$"ĞūżŽ_j§t­€ć†UҁĮm «,¶ņ„±¤J–9KщŒI¹o t•Qš8:’V©MąĖU …šü!D’ŪŪiQ$“Sąž¹°v¶Šlv¶Xœ-—(b :ą‘‹ĢfX.ßfõ%Ą'¾§Ÿ u5‰«vI ­\;KöL5fD2”ž15½SŠĖįWV”!€!¾oŖ3d0tµmžZG—÷lóRŗę„HŃpēt4•~>Ę9Śč e­m®‰øuEEQŠ9š(¦Sé#u$ķéjÄgūnü‰q]µÕ!ń‰ÉJ±h±figfµŠv*Š(ŒŽe©aļxńĄ"«¶-ÆĆnģ4tf’Qƒž_…šŚÆ©ĘZoÖ¾\(ó)¢1Ž&yŌ{{¤yŸfõä"ӕ¢ÆØłĶ’Ó§7@Ū€VžŁöō‹~cNŸłÓęH)ż(…šƒė,fZń!/īš?Šc—"éē'J£ų”­>^PK i5PóĆ6Äžk6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pap_AW.phpUT÷Hƒ^MPKOĆ0 ¾÷Wų6˜ ½Ćƒ1¤IhBŒ{å¶n­ƒć®šļq+œāĻļ‘Ķct1ˊõ:ƒ5|:Ÿ õ=½E[PG°C©8X«>cG¹ķĪėWõ5<‹ĒGJ•W…M5Ćm0Ț×<<ü­¾²,DķŲ÷Psüß9 ō¾¦L2“,Ŗēp±'“ŽÅӓܽvūći?S-žŌ”Ā„ ŸT|5*50yu61ļ‰G©É„šÅl1'œoŸFu,én®o’+B+<@°śB"į™ޱźN(ØßŲ”Å7¼Ģ“ŲcG¹ķĪėWõ5<‹ĒGJ•W…M5Ćm0Ț×<<ü­¾²,DķŲ÷Psüß9 ō¾¦L2“,Ŗēp±'“ŽÅӓܽvūći?S-žŌ”Ā„ ŸT|5*50yu61ļ‰G©É„šÅl1'œoŸFu,én®o’+B+<@°śB"į™ޱźN(ØßŲ”Å7¼Ģ“Ųī<ŻMĀdcc{ssm¢7!•( AšŸ`” ŚĆbĀؼž’>ųj÷®×C/Å 9”J”§-žĄ@äŖļńų™s=ąĀi!'¹ ÓP!Ģ|Q0 !YĄEŒål %Į {KIfƽŚŪ?9Ż×P†Ÿ ±B–ȧR :IńQFUą.y*<|Cv[ĻP}žŖ ¹£ū÷Šö×8C‡Ų#3«:˜żżˆVń†Ę耬ŠJ§D„0Żē Īż›?™Uc)iL#˜9‡•bVŽGŌč•İnŅÉx–NŠi‘aÆ(5ē5N#Ūóqå²Dd†ŗ1XŖļ÷œ/QD īĻL¤Q~‹ö–HgśI¹¤¼G],łćzf!Q©`hø ur‚E}’ uv<ž2…ŸĶ]7Ā 7ś-;Ÿ×ƒÖ{ēmōŹ£“ǜ©°åS"éĶ{o¾$“¶āƒ—׌(wÆ„ļ—¦ŒYĖŖræ dńŪ¼’§Üg”,É5³įŽC³„øÓŠ”Ū‹Ś†ˆF·&Rśwæ T‡pŖZ`\PVåŻŠy[¬)ŌĆļ2.\‰X­DLœū„ō Ļ›RŽ’›¦1ś³‡°Æ¢#‰ĒY{é$™„ĢÆ€­˜·ÅšQąņžÕŒF3ģœę’P.S©˜ā)w6EcøLIœ–¦@šųœq·ż ŒŒK50€k§94į„iBąś&-›(HEʧAPćņŒF7ļ[.9‘¢Ś­™Wp/Z.ŠĒ\ˆź"U‚·ģ–É2’ yœ™ÓhĀ5lQĶŪ¾LvAķÕiŌGo¬ūĖ—;qģ|į“aŁ‘²e“¦Į |Ü’ZĖXZŃ14“j^µ£Õš•›m ż›óŲMĻƁ]%–ē'qLå]|D|Œ`Ś`Œ¼SµÓ”NĒķNgå]¤ĢÓĻ<źŽlaįž^1ČD1śŹĒŠōŠe ›„÷Ż Q×ļ=ƒĢžhĢe?Ż<]=|³³¢×Ķ=į‚ūW߇ŃĶGłÉķHÖ!”)®źOĀ<\KhńQp›o×ĀHõ×'`|@±”ÖįŒ‘Ž?hxĢU%]5ņA‘Ro†3{ÜV·ƒvūn‡‚Čbq}óž³÷Åś„V_(³ŽJ±Ģļžj}9ģGŅ]łGKW >¼š‘{XOˆØn]Æ¹Ū“#UīŒāĪģ x‘įm‚Ō»žQĶ2J”3ĒųĀü{™5G4±I‰Hœ_W÷⣼ųK'S0:sC¤ā ö0©ÆĒ-jēRĮ§ Ž8#M–P89–¹ćXÆ$éQgŽõćHRk–®gh–žš§,…&Ļ&Ķ’„©ŪVxĀ猪):vŽœcÖęäč8.ŽEßÅu!—ƒ 2%ļ›Ņķī`°ĖwGżŻīh8üu4Ē›£ń|${_ėĒfw~tł`ėŃÕ<2½ķfM gµĢ~yŅlŖøń⚘5°—Ŗī™ć撟Į—©Õ&PŚ»®9uĖ0­b~įĀXpģPI9¬U ²ōvNLN^3 ņ»Ł3šÆź”WRé üœõĮżŗž×z뤭ZŖ¾±9/½\x‡¢ØĪŌ§$v¶ŗJųāZļmP›9W “×ń“PK i5P2~ÕĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pl_PL.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦Ė”ÕlvęPK i5P)²(ÆŠ3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/prg.phpUT÷Hƒ^µTĖnŪ0¼ė+ö¦Äpģ8}»iZ4I‘QM.E+i’H—¤"ų;ņł X×¢]XmT@‡ņ2ŠĪ ‡Ü„}üy‘/‚`:0‚Ū\ZČdIĄø@ć@gąr‚S4±V\J |  k×ņ½d¾‰ ®ÉĘŅ98Ž×Ÿ_j7Itu²‘~Ó¦Ż(«Ė½Xł;@•B)R–#U¦M…Nj5†EIȵGIM뻺<=æ¾9_o՞Ļåč A ©“ĪČøv”B#]Ī ŸŻźŚ$ÄAi{Ųi`ČÕFƒKahQbBŒIm¬|¤=C?ki„8»ü.Ä$œ’špgĀ1ÜĄ+¬“r¹ įÓ Ü…ŃįŒ†#Æ<¼öšĘĆ[ļ<¼÷š”…Ł”æĖģ(¼ļ¦›kćžwV&u"å~čL4DE8Ū²ķ,6nKmłź¶­„óŖ Ē»ÄĶ3·¶Czźƃ(:HÓ¹ĆBEpÖe’ ™‡æÓ_’!åÕóŻżõ–„Ęꉮ•ƒŠnDį²—AŃgܙ_—^=)Yp7`:…’¬C„Äø¤cÅ oś=Ū­Ćbƒ«g'UoN3PbXˆwńŪėXR¹ķsŚSGń¢Ē“9’č;\lźĀ­ž\ļ±óarƒ"6–Š’œ:¦rõ\Ōīo‚›6DĻÆbPˆwYJ“ź6ŗū‡lhQ Łž~’cš PK i5Paå=%Ą 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ps.phpUT÷Hƒ^ÕVĶNŪ@¾ē)ę@4¹“=¤”žPŖV" — ”hcÆńŠŲ­7Ør”"ETā-Ÿ@)\č”Ļa'/ÓŁµćx–ŖR+µ–ļĢ|ßüķĪ&KϚn³P(/,`6]€ĆšŻ$Bw@ŗVˆØsUÖ.Ł”%Ä*ųœ5/#>¬Ó Ī¤„„ŗŸū(rY²ø·œ@_s”9­F,ŽÜlĒ•@|Ģ¢~€!}‡ HĘżEh6(AŻFۚ·öveu}cU¹ŅłI—Hh“lHĮź-Imh3é¢sxKXŁ:ٲŖPq_“¤ĖEPQėPm¹Äóˆ ė$`Ž—y,6”&`ž6Ō1eāĀ\ŠdžG"ęµ?AeKų°U|Š{”ˆ"<]†bÅā-_Āč,DCŠŽŠ‹ <‹5 y¤Ē}鞣nŌįmxŽ™ŃDż”—åĢP~ÄhSŗkĀDzŃįųs''§„,:Īcm²gŃ ‡£żŽ!MS±ä³Š<ŅÅm6“¾Įŗī¦½™ČӎŻĢĮgŃóńd™!®£OQ?Gœf|’”aņ”YF@-īŪf  lć!¦M†f„Éfńd‡' É<Ŗ2ļ†WÓrĮ½šĻŪYŒ:ŽzóĆhāH* (nĀe;X§8Õō¾  œ`mß*†ĒP\„¢ÅķI7©`6£ŽōµuK §V½RŠSGOZ0Į 0~vtØ7öćHÅFömœÆ^Ń1 ϵt‰Ž%Ø+=‘ż™(µo’4ńA#Ž{żĘžbO³>&å·=č‹!­ō«Rµō5{?<Õū0‘»Ŗ²Qģs} ‡ćć¤]5¢ŗŽ^S­ĀĮų8F®ÕnźõĶų¹ēčķ4ī(ZĻt‡Y吱"3‘ĢœĶ¾ż_™Kü½" īӟ¤?>ł;üĮĘ’ŗˆ²‡‰@ÖpfjÜ©„æU3óD“ėsėį"C-折ÕZ£ĢŠō7ĒßŪå§aŸo˜#ȳžCé'dĄ ;] 5–Ī/Ś4m{QĆFJa(y»ų;…ł‹ĆGč¼F}śĘO8>VķRĆyd“½éšpo4Śū…¾ÄŲZŁ˜ć„čó£UąCH¶R7Ó·Ćž{Ś$$ŸAIėŽķ({¶1>VWČ™ £U‰üJüĶöØßė€?w'© ’ļ•t]õ|Æ]ŽĒę`[^ĖĢ]ūlóW’Š'®ir ‹ü Wķ-öGGą>C÷}V°ĶĘø»OŻ’:wœĖ8÷eī5ńåš~ż“U½ūĀ:/ž,is« K³~ŗ2‹cNWøż_tš0ŻūNzæ“ÖōØ4a#œ.u‚Ņ\Čvß e]MQž'¹ Ć\D”Õ`‡6Īéa„ 4=uÜč)Wz•hWµ,Ā ō:ьmF©ĪSO”j[‡”TóNĶé¤hʓ$ž Cw–ķ£ …XB !ŒEˆ!DÜĻĮkpŲłrOź6{®čbj§ŗūvsZp j¹ÅĒH~WÓ•Čt–E²”}‹‹»)pµā9ɓüßĮcpųmK·ŹÕ޲ćĮa“Äן?¹æoüßc’÷­’{ā’ĪwO.“q§īĶ…Źū×ŃWż[Ēé=ČYŌ½ TIļī±Ó!s&O7žPK i5P¬TAzĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_AO.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĖŅź6;óPK i5Pą²Ķq~5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_BR.phpUT÷Hƒ^RĮn1½ļWĢ-mz „Š6­Z”TUАP­&öl×Ŗ×^ĘvBƍé1»Ž qĆ{޼7ó<öه¶n‹bzrRĄ |®M€ŹXŁ[侂X\!o¼H½ą3M„ŪяŌ1\²A÷6&F8ŪtįG'”å›ózć¹/T%kAłvĻę¹Ž€Nƒ5Š\–®ņÜ`4Ž”µ„‚m ķzŻāīźśžńŗ+Õū‹5FŲamBd³I‘4ģL¬%#ރO¬HéŽģ“»a§½H±öfŻłÜ*±ėaé]D‡l2~­²ö0Gk¾RµĮœšćÖhXy-ž… .Q®žą[Źį £{żķÅĘeŲ‹Ķ—­Lr‰ßwd3ōiwe“e…mdį¢ńlšVuŠ SŪf¤"kZ²d"f$ģŠ¾ē`‘”Lg‰Š“\`²^̉‡N“Į»”—'īµÓ‚)&v€Ģø/™Z+EdW‰ƒŁŅÓ·d˜ ,ēw«²œŒ¦mœČ/į©Y£–Ųx%LNQĮūs„Ī”O.Ā–~ŒĘ’°‹Ä[“™½F˜żÅjž ¹ZīÕƋÅ"«ęš¤i KYłōU<½ž kø½5ĶPč dZÖžW¼>˜1b©eF¾*wD/}±·CvĄ3©Ėvў{ÖéøXæ+žPK i5P¬TAzĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_CH.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĖŅź6;óPK i5P¬TAzĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_CV.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĖŅź6;óPK i5P¬TAzĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_GQ.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĖŅź6;óPK i5P¬TAzĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_GW.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĖŅź6;óPK i5P¬TAzĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_LU.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ĖŅź6;óPK i5P—7Ž‚15 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_MO.phpUT÷Hƒ^PĮnĀ0 ½÷+|+ ŖģĢ›LBź8 .BUšŗ4¢M:Ē„āļg ڦi‡½Kā÷ģē—L›² ‚ńhĄ¶„ńP˜ AĪFƒ+€K„¹¢ĢY”ōQ0–ŽKū@į™Œ²°FŸf˜f—ņÉJé8Ö®žŻZ_õFE[U ]s&s(”Ķ”2­—•¶pT+6ĪFŠT؄;ģś¹d5_®7Ė‹UŸKÅŠ)¹ńL&ksč —¢HvļZŅ(‹ņ>ģ8 ä–,("uN ›Ji”S·äĶ „­!„4]¬ŽŅ4Ē Ēņ3a»į5›įav£z:ŁöLXNźTżT6ßŅÄū_j’\ÕģrÜĆ«ąz{Dš‡ß×H.ˆą?ƒūčސē4—§»"ķ½Ń]ģ‡÷Į'PK i5PK‚ČzņF5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_MZ.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tK[Bŗūŗ®¬ė 0zŲvĆ8ŽŅˆ¦¶'+ }ū)aŗIߌ<§.³^­ ¬ą«£ -õŚ“cŲ‚t{Ēu ŗņwĘJ±|į—šĀäœ0×$›zwAĒ(•×ķ?ō-ņ,Ō}>¦;Ó¹p”ž<†¬–”|uB1”ztŗ»Ž3ļżø?œ>“ŌœO:'0ŗ eaŖĮF’N/š=ǁ=ŖQ3‡]F8€cvw˘zēQ»8Ó Œæ1‚µÆĒk«b¤ŅĻ%|Š*Zā,¶Qvlķˆx)ąi „łY>š?PK i5P§¹EŽćĖ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_PT.phpUT÷Hƒ^„RMOÜ@ ½ēWųXķ‡*õŌR e©„Ø¢½ „¢Iā$ÉLšĢģvūozźįÕ3ńR!ŽĶežŸķēg+GŸĒn̲Õl–Į ~tŚA£{~GEl¾C8STZĆTõØZ\rm,?Øį ieą]©½‡£2†'†Cė—•Ž„ō«„$Ō„¾‡ŹŽ;ŅmēA™z]”q<Ņ4–åµ5s{TĢm4nSßåÅŁłõ÷ó(•üłNyŲ*µvžt<Ö°Õ¾ć {w6P…<ØNfWqĆŲ{|gÉ}ˆx7§ß€æ2“‹¶×eµčm„zt'­ KKmź$ō ("µ+Ē^UČoČé >ME±¾ø)Še¾ż’ošĻį.‹źł“•ĖįÓ±P‰¾LD¾^Æ®®V·üå󔼟ž|°ĘwŅ•?(ƒš,‹ę nöĮ čłOBŠ/ßO”NÄC0€~ŖµĪ'äŠćPN6ų ŠŲĶ ]㯠æöS8¾Ÿ’ēJ‰1"6ąx2^&ĖTų2k‹ųX«Ż~ūŚŚģ[Ū`j”GŽ=”§ĄæŖ m&äš§€ēß„ŖķķW›šQe‘MÜ˽Õb’§Ōhr¾`­Ā6E”Mrļ$+üT³1Ś!{æPK i5PљUóF5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/qu_BO.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tKJĀĪėŗ±®ƒĀčaŪm ć8J#šŚ©,7ōķ§†é"$}hż<ö£1uY(į»§ ŚGĒ±é¶Ž›tåOīˆ•bļš…_Ā+“ pĄŌ¬›ūųtŒRłxŽüCß#ĻB]šq¼1{ZČcHjŗČg'Ć Ęī®„ÓĢūŲow‡ÆŻ]jĪ'½˜\‚–’05Y°…‰¤×‹fO1³G5jē°µa”̳»YĘqpµū̉®ø`¼dbkßöŸÖVE}ɕ~¦XĮ­¢#Nb[eĒĪNˆ§ž6š°2æĖGóPK i5PљUóF5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/qu_EC.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tKJĀĪėŗ±®ƒĀčaŪm ć8J#šŚ©,7ōķ§†é"$}hż<ö£1uY(į»§ ŚGĒ±é¶Ž›tåOīˆ•bļš…_Ā+“ pĄŌ¬›ūųtŒRłxŽüCß#ĻB]šq¼1{ZČcHjŗČg'Ć Ęī®„ÓĢūŲow‡ÆŻ]jĪ'½˜\‚–’05Y°…‰¤×‹fO1³G5jē°µa”̳»YĘqpµū̉®ø`¼dbkßöŸÖVE}ɕ~¦XĮ­¢#Nb[eĒĪNˆ§ž6š°2æĖGóPK i5PĻ}Ö4óO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/quz.phpUT÷Hƒ^-ŪNĆ0 †ļū¾TØ}&@Œ"MBāp]¹©ŪXĖ’ĪqØĘӓv\EvžĆ—l';E]–”še9ĀĄŽ ŸŠB@-Į„ >ÆĢGŖ²v‘ߘ[xFЫ¶[Ę'ŸĒ • §‡ék5hH΁ ÓEx“ č{plČĒ\é‡ 'Tž&G˜w?Lóź{ŪļšĆg³D­|jQaĘ=Gī’R3«Ķ7™=†$†rQæĀÖĖ ļ·?ś0{čiĄä„ʵ.Eŗā±ÄLå&‹)tīr Ņ$>Ή… m_öm[mźsśmߛ*ćę¾ųPK i5P.z‰/{—6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/quz_PE.phpUT÷Hƒ^„TMOŪ@½ēWĢĶ€B¬^iKiJHV„T”ÕŲŁd§YļšżĄņĻź½·Žś«:¶7“25—Æ÷ęĶĪ:oŽÕŖžLņƒƒ ĄWE–¤%šY£ `—”„St…5*×ø’3®ķŹ÷Ź}ųą \I_Pš¦čÜĆ® ³ŅVĒ©ō£u=Ń2j „­[G+Ķ4•Ņxni–ÖUȚ)ŌZ"ĒīI6=n~qz~u}ŽQõś‚Ā zXŽŠä Š3¬ŻŪčJɍ½Ų¼›°Ć¾AYē:ū®ć ̱šēšižł|Ņ™Y·biEyˆŗVx206čd—é9 Ń@ē°NÖKÉg§{¹ēä]$'Aˆ³‹/B̲\šßv6…oą_6Ģė3x{œB}x޲³³üņ2æ¹É¦}źv8²Źš &#C.2aV+j\²+t¾7Czˆ“}@ECK' WчŽņTj©rŌyqb3˜&6ń@>9»Š„ē› ŗ’Ŗ$(ÉIb’–$$©HRļŌ7uÜöj¤\/°ŻĢbEfŻC5ĻęS·,źÖ…ąś½ŠŖŠF7|ĖŽXߤa¾cā–Śū‹9¶›[3ŸąZ=R’’”ξłĮ¤¶~[0‡ÆcŪVēV“Nš?IXŸ¼×ųPK i5PÜ Ķéž2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/rm.phpUT÷Hƒ^TŪnÜ6}߯˜7%Ęv¾ŗin¶»ĶAķC˜%gWģR¤2$×µįŸÉ·äĒ2¹²e÷©„Ϝ™9Ƌ^½éšn6;<8˜Į\5&ĄŚX™;ä~ ±!8F^y'Śā†Āķé/ŌKxĻ\PX™įÕŖ_¾u²ōq”|ūŗP?x­“µ |wĖfÓD@§ĮE.HI·öÜb4ŽĶ”³„‚ķ Ż qĻO/.OūTƒ¾Ų`„  MˆlV)’†ńˆöą+’Bz{ŲwŲǾK±ńŽzūųŌkŗŽą3&Õg4ž³MŁZāæ°$K.Śe菄ĪD0bČŠUHŃ· žLģ5fģŻÖ0J| i7,R}'uą„¬Ķč©có-‰£±@—¦õnŲrK1š’Yö’ĘH¼Ėą…QŽžųąĢ«-œ¼+µ­0Äž`“l‚˜dWěa'˜bbȌ·5SgQ‘Ģ*q0;zĮō-&Øė“óæźzQ’[Č©ęšu2Ŗ|J”‚ß_h€?^ HuvvŌ¶Õü±ćņ‘ē(„‰3»NNĖåā‹Œ‰sļõ°”ĻżS†šõŸ S˘Ćć„’t§ź–sܑņÉÉspīžĮÜwRɁÅfBlьŽ¢ķÄI­ĆūGöČŌx;!js?Z#©‘»=•xL×Ū²Œ“w1ÕÕC#;ÆF~ 坞šJNe9iMD—ĖPéŌ’Ū”ĖRm¬qš‚6ż¢E.…¾ć Ŗpw$Ԑۭ±ŗ~R ņnćX¦Č©sŽ’2§Ė‰žg‘†’oŽįŒ÷Õ #ī)kÜq¶¤ÉŠĻ˜ĶHÜō󱲨S p{w)Ĕ޼tjW9WŃÓłŻkRŁž*šģĢ kÆź‰¦g‚Š˜gBІRæ”~ØJl“”¶TÄŗŲŅ]9¼$?Kā¼ŽGXłļ¶Pä‚ѹ6b-‡Sūu=¾”_ē³ė—æĶ~PK i5Pcā{¦H2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/rn.phpUT÷Hƒ^­TŪNŪ@}ĻWĢ›EŽśJ)­ 8\„Z„V{bÆāŻM÷‚žųž^æ¤ė]‡\#!Չ4;{Ī܎½{ōu^ĶƒŃĮĮą®ā¦¼&švŽŚ‚š‚­NPO”ō[ł KJ=·„ļåūš]s”0&3įÖĀѤuæIļ*›ęJwŌJ‡DSWא«łB󲲀²€šē$/)§J “\É!ĢkBæ÷Ģ© qח'gćŪ³6UčĻVh”A7Vó‰³T@Ćmåß»QNēä ”ŁŃ@“uZj ¦i^cNŽęNžL{š~;® ;½¼a,MF$SÆL2„Ēų'¤yĮI$šå“_ivŸz“]<¤ÉÓ0²¢Y Ó±®4_’pY4¼%·>‚˜¦•;Ć ×kp‰­[Ē%m¢ŅmłE°Ż3•Ҷė$w”[_:X_3ŲŅŗĪ—Ń—®³Åū”˜ąņ?¤JŚj©Šų…“j)7®ņ?ķzlŌ(m{\ p3ž‚‘ePt«ŠLdĖÜ gӌ­åŹó­”!ąœ[Wŗ(lęäBł‘{v›t³æ õ2gĆēh‚} l†Ż>σ½B‘vu;?źą§ ö~ÖD[ŗĪw+]¦\˼ŠLMY«y(ži‰†³ŃɶĀöõ]ŲI..…H†ėĄķrhĢ”ÓQ6śéŸ h‰A–eš]‡#ļkæŃ ’@×g[źČē¢}cp˜+'mGK;0dżĮkÆ3PŠ ßJ ś!dż±«“ŃÕnųV|Ó!ė ’,‡āf;ŗč‡õEF¼ņćr 4XmėYķ‘ķļääŅ_Åo xg;Éņ遑ķLI†r%—*ČŅ=»7ŒFP“1 ©ę8©©‹ųه <ķüPK i5P§`(“c 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ro.phpUT÷Hƒ^„VŪnÜ6}߯˜·M —A_Ż4½ŲnėĀĪ‹ƒ…a\ŠZ±‘H—ŻŚšŪ~EЇž€ü„·@>«Ć‹DћE TX@œ93gΐ¹Ææė›~6{up0ƒx×µh9ą»§Ś‚ŖĮ6Ž©^(‰.ö.9ĮXž‚½„µ Žr³ÖĀė…7æ—h*K˜źŽ¤ŠŸ”Dµk[`ŖæÕbŁX ²‚V0. –”µŅµBÉCč[NŃ·|ņĪĻŽOß^žzŖ Ļ6Ōš؄±Z,œå¬…mAķF9Ķ8Ŗ‚ŲW¾CŸūƒ³Ņęȏæ‚_•iąRi^'ūĪ ÅM“·»Ż“BĀĻ\é%7ĢEą=m¹“č?[Ńžf^(](ł2ÓÜ:-įjųĢo9Õsųö Ģ˜rŅ7}?ŽÄd8?Œ ō&§8łŸį·%9ü’¶)°ÖÉķę>b:ĪÕ'‰źy9]Yf”°ęüC™ķ¦Ē)ķ&¬§ų’/+Ė|ź’Q­wTš+ZNčŻHt‡o:ĪŗĘõŒšŖ¤ 7øg HéÜnŅÉ0WĪIźńåvPy«‰P×żŌą„5Ł/“lÜÆĻĪD«,9ź1œ)YĪŗœ¬&+lžÄĢ¢¦ģńĮņŻ“³‡Ā<-?Ŗ£K•0+:Ÿ$8Żm7^kÕŻH•öXĻåBG‚Śr½]šŚ/Y€)s]‰V¢®3¹Ē äÖóéq? ®E[Õ)­‡tü&„©ćńūŽgWpŸæ‹ĮæuC­äæĢĄ‘1‘“rqA~ǧ.š]x‡ācT…Ļ!쉽N­1`WéPōfhĒO†Éŗ¢wZz Ųń¤”䌧lOŲoćłäUĮÕnTKĶ„Ģ/ĻØ|P¦ŗŖ•±³Ņ÷pښ“cΟtó“¦s¼›ÕWW›/ōhtx×Ēķµh§š/=ƒP·tĘś‘į½åŻ"±(†Ūk0¤©8KF©ėĘąul³:’”‘$Š$I¤ŌC’’ԐA I2HT°"©8ėś+?aF*‡§`žćÅyWZ(üłÆ8ĀbN‡ń*¼VøüŃaŗEų‹°Ć^ōUło4°'ņÄ\’Œ»\Ć9é™"Qä‰4‘%’$Ž‘¢ŚX;ŻØ:_ž_ē›ĪūcG½5žõ¢Züƒ•Ź#;žąóGyq2*\éBIę¼÷oŒ¹žfö/PK i5P˜"pĮ&5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ro_MD.phpUT÷Hƒ^uAoĀ0 …ļł¾PÕŽcӀ $Źap™&T„©K£µIē¤ žżLa„ę‹å÷½ŲO½4e#D<Ą¦Ō ]!po$y°ųa")³†%õ-w±÷dļ©>¼‘–Vč2ķ=Œ²Óųjx“>R¶_¬ļ–ŗEE[U ls$½+=H“C„Ē'Ma©–^[BS”dmÆńн[.&³ÕzvZÕåó„ōprķ<é¬õ˜ĆAū’ gw¶%…|(ļĀƂзd@ÉcJŲTR!wՒÓ{ģž“šŅtŗųHÓ(ˆÉFü3A_ø‚s6Ąóų"uņrÓ)Į|>¬ė ¼ė2tīžŃt%IōÉu’($IōŸyēƾœ+„ŻŪPlūOāPK i5PWQfuŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ro_RO.phpUT÷Hƒ^-PANÄ0 ¼÷¾-TØ}+@,‹“ŚpÆŅŌŻXdćą8Tü·ādĶx<3ņž1‡Ü4}Ū6ŠĀg 3E›Ł‰Ļ įądäd”’rģL»Źoü-< ¹g,#©Ā~\įS2ČŚy¾>üK_Y6£¹ĘžóÆŠ%(ø4A$©XdšY®N‰ÓäˆĪøĀe»{;ŽēćjµõÓąW`¢¢BcUœ`! ¶±ī…«x“ i+Ū7‚Z%ąw%A†—Óū0t»^ø³ģī›?PK i5P†Qs÷ ¬3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/rof.phpUT÷Hƒ^„SĶnŪ0 ¾ū)xsÉŅżtėŗī§iŃuk/CQ“-Ǭ-ɓäŁiƱ×ė“L–Ē^¶Ót ĶļūHŠ|ś±ĢJĻ›O&Lą.# ) ¬/Q)˜ŒĮ9ŖH Å9®ŁĢjłA|_”€¦#2N£&ü$l(Ķ,–ü¬“^Jå „UQ@,Ė¢ufEÅLhŪR¤Rq4$ÅŹ‚”ވÕ.ļzu~qs{єr÷3ØQCBŚ(Š*ĆØÉd–±wײR1³wٹ§˜©”T 7”be1³>®”¦'v Ų÷Šƒ0\®¾†į̟31³›ń§pļ=>gŠb܇gpļē(ÖĻ?!G+ński¤’0mÅ5cy‚݉WĒ’ j“.0hŖ>‚ !›ąs‘!'½ĖĄž‹K ’Ł)Ō™T¦ļW¶jÓ:ŃE¢«Ü•j߯ÅIü_%.…ɶÓµ]}+Čk?Ü;»­ ķnŠqšŻŅX¢ÉŒ£1 °Żņ®鱂ņŠÓ>b3ĖĒæh5Œē½E°p‰Gξtö•³Æ}ćģ±³o}ēģāEėŚģÅQß"%„MhŸ)”iŲ¼˜ė³Ų²īź6ļ _ß9Äæŗ:įܟ‰Ūs¢õˆl©åróoöŒČ- AĄ>;¤[ö»÷²Äž)üKlg8|ļżPK i5PbK‘Z]ą2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ru.phpUT÷Hƒ^åX[O7~ß_įJH³K—„Ii+AM²AMIUhQ[dv¼Ģˆ¹¬<³\’E P%­²)/­Ŗ¾ō©Æ\BĀę!żžŌćń\<6Kµ“ĖŽĻ÷ćcĻ±ÆŒ5µf”0Ųß_@żhZÓŌŠ ‚ą·‰©‹ģr5‚n`ŗ`[ Ŗ/įER]®^¬—ŠuŖc Ż!Ī‚īŗčŹo~iAÓv+uŪ¼؎ŪŌ7ŌhŖŪĶ5Ŗ/j.Ā–Š ½N, ­†MMģź¶UFMƒ`-ėdÅ7qėĘĶ;S7¹)ŸŸ«a­`©ŗćR}”å­č®=ĄŻ±[“NHõÉrłŲk-W³©3ĢߊuLuųOŦ£é–Ż~uL-ōź7ĆԈn Ł8ÅÖ«æl°{]¦uėŽ&ZģwÖõ°#vŹöŲ¼ öŪ…—TŌM\/ ½)B5ˆÕµ&^S’Ž š¾±MBķIgI4—kHŽoWŃ-Cȝ·¤ūo'†qĻļ0³”¬ h R1²Æń21ŠŌ՛Kŗ…ŠMgu5€¾fÕl,źŲšw†É5š2śŅD½kŃ„遅{÷ü©ķsĮ_‡ēNUo4Š(ä˜UēY„Š}ŗÕl¹%tæ€ą”ÄmA° _\t•ѬßÅĀsÄįßsoGA£W’m„kz ;ń¶ ’ķ ]YęmÉŚģ;f§Ž–·źĘ’H³V)¬ IAKY#˜Š!Ću»e¹ˆ°.;l'Zl7j?‡éŻ ,*k©‘•vĪėóJ؎ēc“ū—ÖóĪ‡kŚ–«%±_@’†·ć=lg$’•XvÄö#k9–$Ī'ŻčāŠ+„,%Ń„ igdģ8+ó:‘±K’1w£'Ž·}Ql§r÷ŸzvÜ>•}Ϣѩ±ėČ0'5z vģŽ÷v؍v¢OXŠīʓ„„FK,cŪ@3ĻīłQLŻ‚OM:%£åŻĪȼĒY™d,Ē’œÜšČīHEwHݶ’s›Ü׌9ŅŲ ,LęX“Ü‘ƒ,ˆ/ä*’MĶ…ßŗ8)¼hūŅgĮÕMRB-(0ŠÉÆGų©>I…`lEįėl—=…‡Źˆ?f=ĄkPۜ·ģ•·U óŽüOöS¤Tr)$AqĆ%ō½øłj‡ ¾Į§Ü\  LŽ ä!ė¦ĄTPˆbŖ@®K)óˆ7Yq8hobūA4wZ®mŚ”†6ż©Ü‡“V~flBX‚!y¶żéH#D‘ĢƵÆX@RM21-5lšrM11=w ;N¢OōT«•ÉÉŹ÷š$:Ć^4 āŻ¼HŖäė”Q†E¤ŖĀSF½ŌGėPÉYjPhHž:Ų$Õ0¼³ģO“Ø2ą£QFlæ† ¶EV]I’×8¤giĻ„ŸŲ8_ēÄĮ&ų¹eĮ¬50śź-J‰õį™6K؜Õüѐ÷Į؁«ü›Ž> ”… =„?œ\źš<ķncę užŌłńč“įÜ>ž„É,{‚‚¬ƒŻÓŪö~†·£6DjälŒKł~ßå}CoÄķ˜=»·O{ąÖ£ļó7įĘ’=·õB²Õ#=¢9F£#—ófZbĆŗ½ĮSPŅȳǭK+ÄĄŽ¼žž„ūZŽjāŗ’ŪÕÄ^BXŗŽOŻi%ż¼ĒŅ*’xż·W’‚Ż4œ ^ŸH}÷lŖź6Ņ“Õ2-£¾&”ŗ­Ź.DyœķŠę@™T†s¤j®“Z­*Ł9 «1Į¤¢ Ą”l$oō¹ĘDµ[rōJ.£™óŲōvRUŅĄ-Ć}ŻPi–Ť įTub¦§‚å ū¹Ę…č JG?Ģ8ta«ü wĀ#˜ŽœŒĖĮPŗzƒ÷cąTöŸ›žż{$y źJæÅ×䦿:o!:; }ļa ³įm±=ųÓõƌk)vŁ x·DƒEŚ“høc¢ É•ņš6ä—āĀFp©įc \ŽąmŠ4€‘{ūį•š°Ś-‡vC«”ĶŠbÖ^"‰ mœž"{Ņfū%žVN7ķ쉔ķżĀ§Œė—ĘęjšĆK‰(æ:u\~:o7ā;ąKń½-— %ŽĖ[Ń-}ØečNRšž"vŒø+µ‘Ā?PK i5P“|˜Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ru_BY.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ćŚź6;óPK i5P“|˜Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ru_KG.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ćŚź6;óPK i5P“|˜Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ru_KZ.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ćŚź6;óPK i5P“|˜Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ru_MD.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ćŚź6;óPK i5P“|˜Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ru_RU.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦ćŚź6;óPK i5PōĖ!k·µ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ru_UA.phpUT÷Hƒ^eŃnÓ0†ļóē.[Õ¦®€1e“&”] ī¦)r7±–ŚįŲ^Õ»uHć‰W£•ŠPĖ+8oÄqÖ¬ EŽ’ēū’dļu]ÖQ4ģõ"čĮĒRĖJ­5C z ¶0b˜iEæ`…HČģ;|Ž¢d N„ɤµ°—…큢­¶ דżõHc »Ŗ®ėŹ¢“ĄT•äBŠTcf„V}Ø+ĮH»”bŚĪ½?ž|8 ضŸ-™…)3KcQfΊ¦Ņ–tBŻvČåmŁaųĀ0ūĘŁR£yŽpz4‚§Ļž<ŗ2W ŠJf|PiĪ*a åE;ŽĀ:TĄŁ,EQWŒ Z¹C#/ÅŠON¢€4}w|š¦IūļtÆIæĻū’¶K żūŲ14ÜtZłÅ¶Ćcöā!7¤nņ(m›ó?"Õ_ōŽŻ‘;nGķ˜1šĪw_FPK i5PW¹nņN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/rw.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې&”ˆc•¦nc-K‚ćPķķq;N‘’Ē/Ł<'—ŖŖYÆ+XƧ£ y=“a8€8„­į.]ٳ±Vķ,æ³÷šŹd1w$›n_‚ŽQj/O’Ņ·ČKŠP¼ӕit&ōąÉbČZ†Č#Ć$Fwæ„Óā{?l÷Ēżµš‰3“ÉŠS¦®ö0‘8½Qö [Ō¢~męĪŽÆpq Šć`Š`—ŗ’ń†Gœ•Ź'g:²Ęūė-€Q 5üb„¶ŻNm[ÆžŚÓw­æøz¬žPK i5Pco„¦5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/rw_RW.phpUT÷Hƒ^„TMOŪ@½ēWĢĶ€ QƔRZ Ar€¢ŖŖŠjlćUģ]w?b9æ¾ėŻ%ą“ŽZÕ{ę½yóf¼öŁĒ¦l&“ŁŃŃŽąkÉ5¼"p÷•Y€) .Q„RøT¶Ā%M·§d‡šYq° rcą,ķĆ įBi¦™¬Ļ#õ‹T^ذU™l:ŗ„9T<#”]KQHU£įRCSŗÜšSėėīo/Ə׽”÷gJ4Š¢†œk£xj åŠrS:Äy×ŅŖŒ\£Ü›õöµŸ¬)„ҧżó <“®?Ā£”5ĮÜŖ¦ģ ¶Ŗø #e„ū|µ"c•T ;¦Ø©0#wϬŅ|MŠ~Z®»ŗ}`lšĢHLŻ^“cų1w%a2Ą‡ó˜ņé{ŸH®®¦ółō»»’c>‡[RKaŹX•Ģ­A…5:ÕäuŁ”p źĆo¤¬jżćM`pē…ę}p‡5 Ÿ^tøB±ÄQn±”ŹŸV-®øņɧ„uMøXŹ€ŲTn0ZcŚ­Ó¼ŒŽ¢§č'ډF¢‹h v½cŪŲoŪ«%ZåŲ½,āĪBÖŁŗuC{Ū"Ō)…Uųh…)W|.ŻNŒ}ƒ `Āügļ6Ž—!LżŒ±G˜ź&ØŽˆüw©š‹’*øŅ†9)& Ö«zµwł@źŃ>źÕ +Š4eŅiśxšI+ ¬­?%³T¤5(w*0­(ņ’žŠģÄCÉÖ_ā(„’ų5$Ż€l¤ģĶ (mųNm= «{}‹ƒĮųėiŒŒż0²½Ū—8`ų/9Bc²?W“t’Äj,w7YŽ"ČĘ ć¹p?ßAױᢒķŒ}0²½χļ'æPK i5P„HžĻķB3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/rwk.phpUT÷Hƒ^„RĮnŪ0 ½ū+xs vķŗn]Ó¢ź XzŠĀm:ÖbIžD%šß‘å,A°ÓtłŽ3õąŪĻ]Ó%É|2I`ƍtPˁļNXS5ĀF3TnÅg¬=ČÆŹkųj„аBWH"ø-ķĶ­”YiŌ]”>Õ¾m”4]oå¦!ŗ‚V–Ø[źŚX%H=…®EĮŲNā>|÷²|x\­£Ā~Ō‚½pPIGVž°‚½¤†ŽŻoKd£*,;O,’·„µ¢Ļ-v­(‘ļŅ['wxeń·—!ĻĖy>KēØgœL:…·ų¤ ­¬$Ŗ>ŻĮ[źÉo ³é¶—\é^¦ļÓA¹GÜV¢wQłĶ+Ńɖ¬>4$Čū±Ń’ā:Ą÷m#”tAæüńŹøK›Ü5ĘŅhÖ 6DįŅzčtœGP™ĖQJź’¤Œ¦ęųp~°aĢv¬3Q6”øļģK†1=ĘŌöbm¼£P­±#TEćū–ĢP­ĢnčBy¾Ģy) °°Ś|“ŁcHb( l½¾põ~ū³‹‡FLNAhŚźR¤KĢTn¶Ų“²Aē®·!Mā³į'±tݱłčŗjWG욶ʿø{,žPK i5PÖ~`Ņ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sa_IN.phpUT÷Hƒ^åUMOŌ@¾ļƘ[Ąn¼"" ˜1ź…2™¶³t¤Ū©Ó)›½”# ńH4†Äƒ³J(!A—ÄĄÅ2?Åłh»»e³|œLÜƶó¾ĻūĢóĢĒŪ™ūqW*µ‰‰ ˜Ļ’€: 1PĻ1hšƒyÄ\©·‰6pUa5|ĢAXʼnK83®ĪEjHyÕ£Ł śˆ2CTOĆx4n1²p€"„ÄĆQ¢¦Œź”5'4šqˆ‘ŠmÜ4uĖKó‹«O5•ŃĒÄA%Ą' gÄM9öA“š@e”ö„¦ĢĆj"߈­i‡ŗöAŹŹ’iż>„ģb°€]m fōö8˜˜"Ō‘Ē˜1‚pSWiĘs¾V)Ū0„ ó”E1†Zį8DVO/e ŁĀc æL ĆĀ…„'VŽŖj©Iš¼ŌϱfܛĶB&¼lĪĀŌŹŹŌښ3i2ėöį4hă¬Ä‘b_Š)N„8–mŬBߤų­ĒƒŃļRœ›ń;)>ŚŠ)ĶXEßJqRwģŪ¾ģ¼VōÅą•Ā–¢ž½]C!lØ+Ņh=RÜvĻ„>Ņ^ĀŖ/Ćæžī@bp`¢v‘’ĻėŠÄxÓG­ŽY°V/Ģ’¹©:žĪåtv£K{mäŸ IÆ_‡gŚRœå®×™„h[čOC²—-p"Okė%Ńe‹„Ķ.Œ¶ģ]²4hć éĆäH"«A¢F”iÖ K8Ō õ؅3 ļä—3āÜ(dšshļƒŻ‚3ó~Šw7“·¾„š1##‘jŗ¶[M{480Ø][”j5ā$ ‡¹!.źn^„ą-¦³„Å*ōŹNsĻæ²žź“®D xQ_ƒ*ĮlŪéęTŃiåu$Gļ– ݼ•‰lĒD$(ę(@:9{ó6EŽbŗād–źl[;ȹżŃiG1XL ¾ö%Č)>g­VŽ w‚× ³Š{4ŗ¬?»Mꊣ–⇹ŹYɍŠŽlŠõń»•æPK i5P zC’ńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sah.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې&”;Wnź6Ö²$8ÕŽž“棳ü’Ķk“±Ŗšõŗ‚5|[N0°#(gDQØ%Ų¢tĮ—•¹ąHuŃĪņóļĀčįH©cUŲtóųęĖ“6įśņ/ż² Ł90!Ž„G«€¾dž|*•~rEåąŸ :²ūešßēa»?~ķ稅O-*L˜ ē¤Ā]Vźabµå¦°§ÅP)źŲf~įģ=ū‹“‡žĢNAh\źr¢;K*T.ZģHŁ s·{€fńÅš“YŚvw8µm½jŚöt®Ė7®ž«?PK i5PK:†aõ6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sah_RU.phpUT÷Hƒ^­RMOŪ@½ēWĢĶQG½¶”Ņ*!‡UŖ*dmœu¼Ā_]Æł–!c’GrH a—_ŌŁµƒ“Šcm9»óvęĶ{³Ł’˜ųI­ÖØ×kP‡ Ÿ„ą±€® įb„OįˆšV!ä^‘µ1W§ļø»š™3Į9M[LŲoéš0Ā0¶‡eź—˜"/ pć$ē¬ć QęŅ(Ŗ‘óG{” Öe“gźNOŽŽĻæk*£OųD@¤Šf©ą¬• چ>ž ö4ĪøK±Qۈmh‡ŗöS&ü˜§ļōž |'å9\°q°œv’‰jŲ “/CŹ©Čx„s’;œ&q)®nĘSÖ„;œžŹ§ą8Ķ“ÆŽc[ žŁ8nk~Ö«0œZšį „ |jė>öŁ™ŻlZ{ęš²X¬0Ž„_VYj(—źZ ŌH.äBŻŖņ[r)ē[ČĘ5T#,›Ø¾9xÄh¤ *XåD>.š[˜Ģ{u§óÖ”„nd«¾œŖ[Ü_o ē\NžćŗŲŖCqCÉc#a€ż†rV`rVņk³UŽęPœļWlf} Õ(Ö½W†+Ÿ+{ė®*•ęJi„ļEUŅ«6ÉW—„kÕūŸē¦_įl²źŠńLNåĢģŒgłPŖŅ·†zśÕµg¦w+¦źĪÄ7øĀw¦ń?å$uvY5B\3╿һ1GĢ”Ī+5%GńW¹)bĢ+§!ļ_3†,ś|ć©pŃ‰=G“Ņ·åi‰IśTG9%|•u¹ū¾öPK i5Pž«[Šó§3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/saq.phpUT÷Hƒ^„SMo›@½ó+ęFbYö=Mӏ8U¬šXj,UU”ĘfdŲ„»Kożż{ż%v ;=u/ü÷vęń×Ŗ¼ ‚łdĄ69ŲRĄµڂڂĶn…N”d(Ż‹ĪXŪŹ/ŅKų¬IHx@“µp“ķGÉ­²³T•7G鄯 m]Ŗź i—[2ƒ‚R”†WŹ­Ņ„°¤äŖc/„»·ZŽŽ=<޵£œ?› 0‘±š’Śb ٜönT­SäE™3;4ŚZKZ‹C¬±*DŠ\ÓZzĮ ?kŅq¼X~‹ćY8G9ćdĀ)<Ą',QSFX†šžžĀ ŅB2ĻT‰šyźu ā>sŌEje‘Wc«~öµ¤1¢äīĻÆßū “D{‚'³Œ` ćé žyŠM®“=:ūäż|­Ż¶µÜµe)øōóEå$o*Iž× RI›w)­Ų>šWU‰ju]ۈch=ßeÖĆÄ:JŸWߣ!]V=mh¬7BĆŽ*6{œšõ ·<~ÉQģkė»pÖūzZłFhKC¾s6Ŗō%ń„éwłŸē˜Øƒ¼Ś8$¼ææ*łźx0WƌHO-ó(š’ą3";¢(‚svH{Ī·÷²ŒĻž%ę·{¾|üPK i5P}ŻėTńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sat.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې*”ų8Wnź6Ö²¤8ÕŽž“棳ü’żól碨˲€¾,GŁäsFQ#Ø%8 ōĮē•9ćDUÖ®ņ;sÆĀ蔄س*ģūu|ńy Z™pyś—¾Ł‚Ęä˜0_…'«€~dž|Ģ•~ rAåą`v„y÷Ė“l¾÷ępj?OkŌʧŒ0pTį>) °°Ś|“ŁcHb( l½¾põ~ū³‹‡FLNAhŚźR¤KĢTn¶Ų“²Aē®·!Mā³į'±tݱłčŗjWGŌ®i«ü»ĒāPK i5P^÷4ŅąĒ 6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sat_IN.phpUT÷Hƒ^åUĻOA¾÷ƘŪ)m¼"" IōB ™Lw§ģ„ķL™„é ŒF.žL$!„İ5 DŁ“āAěÄīāü(…­Ż†r2±—Ż÷Ž÷}ļ{ov»Ówė~½P(OLĄxźŖ$Ą@]ėˆKĄŖ@śĢ!^aT„Ü “ŽK «įcī8øĻ ¢`‹ ‘LWt8KUČdÉeµ™.ōćFØpY½ÉÉŗ/¢ˆ‹©P-i•ń’„Ń"Ø©Ü&Į Ć[Zœ[X~² „Œ?é# HÉI%”Ų "}UQŽ ¹‹U#Ϙ-ė 5÷^(}ĘŔ¾Ÿ+ŠóPé<)źŠ;‰‚ŗf­@q\b|ŻHp,CNā5!Ēõ¹X]ݐ ²‰Ē8~Ž„ó‹+–œ2¦%µ\§ž“ŗcĒø3ÓM™ō’I8óåGåÕU§h köāŌ•~—į$Ń~}L¢oItš“¶”°Jė ›śœD?Lü&‰ölźU™Xe_'Q»ܱwūIk[i_ ŚFe§ĒßM¢Ž‘ˆlŖ“D?U UtöDi÷°ļ’Øu5eM÷?…N¦ uZņ?æń†‡š—'oŪ½Š>ōvFeóĢŽXÅ·ŚP~łÄķ!ˆŽ vķ6†ƒNõ­­<ŠžÅ!lÄ`Ё)Ÿå‚ś·Ń÷8dv’Ł@’¼¦0Ėē|žķŖFčæāIł¬ «„ µA51āĘą­bįŹŪe’v¦\R ~½$ŌKææ®śKfŖE¹ ,ą8 Øą.ń&$oŅļrÉbķüŠ??ĢķÕŒąņ–ā«ļB†Ę­4žšĘqļå6ņG§ 8r«īŖ>†}Ä/i„ńA„ń§üÓķ>Č£ņ¼YSĖŲeŌĖpÕóš×K\ˆąµ…-”÷š\€)žŻŻ²ÓĢ/!˜Kķ½•}«96«‰/¼įe‡)¬ß.üPK i5P·«Æb3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sbp.phpUT÷Hƒ^„RÉnŪ0½ė+ę¦Ä0lōš¦é§ˆ +(š\Š FŅXd,.åĮ_Š¢·=•—į¼÷4ofÄėϚé,›O&Lą‰q kŽ„ØŃ8PkpŒąM„d€ź ¶4 ŚA~Q_Ā7ĆQĀي;×Ր~‘!UnV+q“¤ß•‰…Ö¾ė VzkxĖ l ć5I,åZŽ+9ŻģSæ[-oļļ†R±?ĒŠAnį•wŌ@Ļ LčŻ*oj FMlvžrŽH@cp[ŅÖbķåotačē† ,Ė_e9Ėē$ga3łž3'dxĆIäšéžóU‚wŲū Č¢e!e”æLGuO“ipk“ŗš—mŌžšaDtū»”t€„ī_;ŹY>$ĖץąN"T@ߛ”–)ćVQģ\ RŽ™ ³T2‚B—\žW!”¤c‡±5vļś8A~ŅqŽĀ[F²Iw¹åĒ Ųb— W.Ŗ=Ė5i5&Ś·Ž©Ż÷Ć Šwµa>©•lĆū"QõɆį°įÓVß-O§>c°,•ŪŌŠČJ=‚Ūy²N~{Æ57֕aĆ„Z—ò£į‡ß}ŚZ„"¼zŠH~%D>=&˜+kOȑZ,ęE1’Ī ¹c”( 8gé‘‡s÷½¬ g ’‡Ł_.?fPK i5P>™KšN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sc.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ cH•Š0ĪUšŗµ, ŽCµ·Ēķ8Evžæd÷œ\ŖŖf»­` 'GFņz&Ćqq{Ć} ŗ²g3a­ŚE~gļį•É8bīIvż2¾£Ō6^žž„ļ‘× ±x6¦+ÓäLĄ“Őµ2Œ‘/F(†Hī~ ēÕ÷Ńīǯõņ‰3³É0P¦¾0“8½Qö [Ō¢a…m–.Žļpq0ąhŠ`œÖŗ’ń†Gœ•Ź'gz²Ęūė-€Q 5üb„®{k?»®Ž4Łvķ©Ö_ÜS¦©O¢Ó£šČÕ©(żŅ—Ūķ"34ūŲKģ!ŗÖ£ļÖvt-FƒÄŖŪb+Ä[ėöŅFŖŽy 91Ų²ėN„ščb>Nv-JĮ”„Æŗ!Č:©ŪIī |ó«åņ.²³“¤?ŌP魝² €¬ƒÖĄ %wżPČI¾y „ģE›ż÷½?PK i5P]…QS÷2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sd.phpUT÷Hƒ^uUĶnÓ@¾ē)ę€dØJ#$NįZRŪK‘Ŗ¢hkÆė¶7ŚŻ*@©u¢ ^”=Pń£8 Ō>‡×¼ ³žw|H2ß÷ĶĢĪģxróNßė·Zķ••¬ĄIp™OæūD(ą.(Ā"öxˆżœģÓ5Ōłeū ÜŒ„°MåS nīónˆ&Wk6nē҇\¤ÜļƒĶū‚ķ{ Hč€ĻlJLŗ\D1®Bß§±ŒSæĶĒ6¶w6LØō|Ź# †D‚Ƥlo ØC¦ž1 x¦zų{¦vÜÓ’PK i5Pnć•Ćż”5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sd_IN.phpUT÷Hƒ^ÕPĮjŪ@½ė+ę¦ÄŲ½¶iš6Ii %ķ%” VŅJZ"ļŖ»« ŽcBĮż…ę’b ĮäXāļŠśk:»R=ŖƒfŽĢ¼yogėU™—žt:tąSΤ¬ €±$RƒHAēv‰ŒĒR|F2ŚĒY;¾oĀɇ#Ŗ"¦5lEīp„B÷c1ŲnGß é„UQ@,Ź‘dY®š S®P’§Bˆf‚w”,(ĮŚ9£CĒ;<ŲŻ?śøoW9:'†DAĀ”–,Ŗ4M`ČtŽō®D%cŠB‰3ŲZīėJēBŖē6ļĮ1rŽŻ…§€_Te½¬`QÜ+DL Ŗv2^õ…ĢÜIu%9)É(”“,HL1ʕTģœnHś„b’Bī‡aßTŅĒėś]ųģŁķ~ó>åĆĖķ¶äʇ®ąļļƒ“æė§Mš‚ė¼eųõ/31Óza®p§o¾Ö?1ĄõM½XMl^ߘ„­›qÓi&?5“u6Ęłę»Ć×«ŪśĪÜ»üyKs’ «ŠöēX™žÅÖĒCwu…œ=ö*¼¶ž’Ü)=KČh}÷ėzQĻ‘ͬU±Z„'«[3nŃo3[}[÷¦8»¬ē­ļĪNź%r.’”łųfOŖ<`ü)uQ3i˜2©thMX4¢D:ĻŗŽéę ļPK i5P$Z˜:@ briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sd_IN@devanagari.phpUT÷Hƒ^ķSAoÓ0¾÷W¼[¶ŖMÅĘlCL\&4ENā$ÖR»ŲĪŖŽX„mÄM‚I\ ŖŠ¤I=­Å?ŪI¶®üČ!öūŽ{ßū޳½öl Z­^»Ż‚6¼Ėˆ€„äĢ:@\K@f65Pt„Rģ›X¾­Ā N…=,B"%¬…ÖÜ ĘdŅX½}Éø#JŠ<‡ˆ Fœ¤™DcČI„©0%iĀxIĀh9F;&xčņvw6·÷Žn[*§OfHĀ ˆ‰œ„…Ä1 ‰ĢŒĒh¬ą6…b'¶g;“¹Ļ ™1.Ū}öMĪ+$;š¦ Ģi7ĶIus”‹”>ć©ćąXœāŽ9аY£‚ rŒW8žPŽ!¶vöƒĄ÷z"öĶt½¼oYvÆźOxšt½†¼ėo«÷ŗwpąuœć°Z¼>£2«3<­.µś©ÕµVtłŃč—Væ­}jućģĻZ}Õj^”§ZMdēZ]5±åyµ»ŌåŲU˜/ŚWŽ«9ÓźB«™cł®Ė“ 9¾Iƒšżø–UŽoó¾4īe_ÕŅZššs˼čø?–@˜Ć”’‡³4œ!ĘG1ŻŻš³¦Yåønég®ātš:Ö Ū[SnnšŃźĒbŌu­ĄņNõŻ\NÜÜ>Uö7Ggž³.ąĆÕŁ'ōįŖ4 – įBV²µFq'łQód0'1ĮżŪ>¦¾»”cæÖé»»fLĆ{øś¤õPK i5Pg9Ÿ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/se.phpUT÷Hƒ^VĮnÜ6½ļWš¶‰įn §mš6‰¤ØKÅbaP"%q%r$µ[£Ī=ä|ź_ō²öuH‰)Ē‹†w‡óę½5ÜWæl«ķlöāädFNČēJRˆ†üÜRm ÄVœ¼£:…KyMK¾@¬ƒ?˟“·ZPE>r“ kɫ̙æ*4Į.rÆ{č{ŠžØh›†ä°½Ö¢¬,”Š‘Fä\”ThI­uJ¶ §ø¶|ļć.~{wžńÓ¹£ņłŁŠZ²§†0a¬Yk9#{a+ō`īZsb>Ł®Bū¦µh³tß ļ5U‡ńo»…ß©¦’7ŃܶZ‘ÕŒą3æęTĻÉĻÆÉüļ—_–9“Ź’ ­jq3„°óÓMÆ<Ō–A_wĄąZ„u ŹVSQyøSŖ½‰¬6’MC¼ī±™(;ß ¾ē¼žjļ°„z ź¬Q;‰šŅĒšūDz7č2z=•Ķ8»aė¼µ‹÷:ńŗĒX¢œ Źš©4BŹ”‚ĪŠ”“/}4 J”ŁŲh=į:«•„7©7; ėŗ}<ķ“åbģøį9(6ĶĀšŗUŒQ{3]™DJ Œńļˆ4I.fȄ–Šy$}ø–,­<8 ņJA8?ĪEJNžćfč°( |åz8¢¶<ń[ uą•µø7AĆO¢.½nųå‹ĻųƇ„”=¶w|ŠOę™<ēšīßÅZm¬»É® oŅ—ć„čÖ;ó:kų‰ńcjš·P/‹Üų‡?3ČŲc®\ö±p7™s÷‰˜õO³’PK i5Pr®åqżv5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/se_FI.phpUT÷Hƒ^RĖnŪ0¼ė+ö¦Ä0ä{š¦Eć ēŠäR°’Ö-‰«ņ!ĆßPōOš·ŲłÆR/[®ŃKy”fg93KźśS•Už7›L<˜ĄK&4,EAąö •^‚ÉnQE,])Ī1„Ąõ6ķń%|Q%<‘Ž„1p5š³tMsyÓ·~eÕ -mQ@ĢÕF‰43€2BÄ$µ³”KV%Įr UAčjµ u{īńįöīéł®‘jó™ ¬QC"“Q"²†X “9Ęe×lULĪ(iĆĪ»ŃŽKōƒŖvš0ZĒ ³8ęŒm-JōµtlhWŒ1BžĻ_~åł$¢šų—IǰNĄÆō€ų^‰£Iįė¬Ó95¤vĪ÷ә¤V ń­°ƒ@‰4RØĄf¢p•K7ćs’ÜHĶösJ'ż©M(Ä]Y Ū•eo™IŻ.­|Ä’2j“²røń«PH¬;ĶīyĄ ĮežÓ×=CxuJFP÷ąĮ휱fh±)z‹ÖE“ŌūvŽeĻӜ½ĻóÄ(1HŒSÄ 1AœĒ©qąĒ¬žOŒWT ßVIŸŸo’ §ģ¤scĢY³oͧ‹éoæĪZ±WĮŗĀ ,‹\ź.„'JøĢóyĄÆ1üū˜æłęśKņPK i5Pč&¾ˆu3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ses.phpUT÷Hƒ^„TMOŪ@½ēWĢĶ€P¬^)„„|$B„BB«±=ĮCģŻt?°Ģ_čæé#‡ž«®ķMˆ‰LՇxwŽ›yo';Ž’8Ļē£Q¼³3‚øĪŁĄ” ’ž£¶ ¦`s‚#Ō‰’>”ĪšŽĘžŪŠ·Ņmų¬%\’IŲZŲOšķ'é·ŹŽSUź©Ņm”©+ HÕ¼Ö|—[@™AĮ)Ić%åTé-+¹ ó‚ŠĒ˜Ŗ6ļāüčäņź¤)Õś³9ZØŠ@ĘĘjNœ„ *¶¹G¼w£œNÉ e­Łx¤É:-µĘZhš˜’§N~ -M?k!ŽĻæ 1Žb’cߙhnFąŸØ$ĶSĮ‡ø‰³Ģåčįč°p®Ąčv·ćUD³ k³ą9fÜņ,KVX ڐķ;V9–Ģ&l]Ł­ '–׏ “+m_D‚B(*wÆ2 ÕÖK•,’«P©¤Ķ~~BYqM 锨b6ō­nS›XцZąłÉUōü3,ėŽżĶ6æW4³(§›Ķ—™U*¬/•Ŗ–Ą1‘é6}G½5¾‚§ą&xéYøčyźA8H.Ŧ¬¾“BMEÓŌVńŻmļtčNjĆ×m$:;Ū+}_W«dϘŲAĒń$žīŸ“Ą`2™Ą:ŗ w8¬k/i™`ˆė¾Ņę.a/UNśyö;k®KCAʀ¦‚1)($lBF±Iż.'÷sßKųż ńžå H¾Å&įĢ,żĒ©—óčgŽ 7)Œćæ±Ql"ŠåŌ„żCܳÉšļFõ0„b0õå›ņ Ö s;ԁń6ŒāĶÉĻŚ«ćā‹ĒlB1”Łį†R%ūłœ³œ”“KƒęmÅ_ŠÜnæżPK i5P¢_e“Ś2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sg.phpUT÷Hƒ^„U»nŪ0ŻżwSø6ŅĒ’¦i‘ÄöŠd)‚€ $Z"$‘*1œ­æbdźŠ,¢ŁŲ+EJ©»HœŅuļ9÷žĆ ‰ŽżX¦e§ÓߌźĄ\¤T˜ęģ^b”€A„°9³©(Ć éYnE߈6a_PĢ`DdH•‚ݰ ?1rՋx±WS¹pĘ:Ļ!āåTŠ$U€Y 9“V’¹(°¢œu”Ģ ¶¹kJ&®npzp4:?ŖZ9*Å &XBL„4ԊÄ0”*µˆõ.¹±B±3Ū`€…ĄS$H™ćˆŲ=ŅBŅk²!ČWM„O?#Ō ś„õģd‚.\vĄ®  ‚Ę”|؃Ė`th”`p\u=>!$‹ńTÖų>Ķ4~eī3^ńöĶ I²–ŹĢB-Ķ™/$xfœŠ™•ę^zĢS¼$ŒdŹ…jä³m×({ķ·7~{ė·wMצįr³‚²’lUp¦Ņf#ėyźĪ~¬sĶbs—Š*†ę–%ž˜£D‡ęg= ļ¹¹ųü±™³Ųq`®qõtfģp„' Æu†}‡ūsĻøj[’v8Ć«ķ®5³Ń£ĮĘYķŖqԘ©­4>j µZ»Ö|ŌS!²£E|ŒŖ);Ńķu/~=,—réĮ…Ė'';EtódGŹč”Ćž°’Å®Ō`0»° /āC‡Ć²ų#-¶ žÅµ'÷‡›,<'āš)ˆ³ćé÷!'R‚ 9ÅaNjņ³™=·ńßW»Å[_Łj‘ÉŚ­+äėģ«Ń*ŗ”I‚'ī‚X-ÆGĒh_“Ś[“U253ūµĪ23Ķ\ø iµZś²2Œ^$é‹%‰8‹WM¾¾†Wkʵ+0Z_jįÖi•nģ™ł¬ŗfjŅSŒžźsµł¾óPK i5P²5ņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sgs.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې&M;Ą8Wiź6Ö²$8ÕŽ·ćŁłü’Ķkr©Ŗšõŗ‚5œeČ#č™ ÄÄ!l w1čŹ^̈µjgłƒ}„w&ą„¹#ŲtóųtŒRŪx}ł—~D^‚†ā=ؘnL£0”OCÖŹ0D¾”ž y4ŗū%œßń°ŻŸ¾ösŌĀ'ĪL&COY˜ŗ"ŲĆDāōFŁs,lQ‹ś¶™_8{æĆ%Ä)@ƒ)^€q\źJĘ;qV*ŸœéPČļo÷F)ŌšSˆŚvwųlŪzÕä1·Ēs­ßøz®žPK i5P¾._»ŗ6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sgs_LT.phpUT÷Hƒ^TĶnÓ@¾ē)öę¶j!q*PśKU‘–Ŗ$„*klOģmœ]3»›(Gīō܇ȁ7č„Ī{±?NĄŖ©ųąńĪ÷33ėµß¾ÆŠŖÓéķģtŲū\pņ¼Dfc¤™2] ;J¤°©t9v-×Ń·ŅmvL»B•p­ŁŪÄ-…]JŻMåų ”~ä†¦,Y*«ń¼Š DĘJž¢P¶¤JƒęRģ²ŖD°¹ Ē©×õ/NĪ®gĪŹ÷§ Šl Še\iā‰Ń˜±)ׅElļJJŃŹ|³=7”Ó]HRūīy‘°_29įõ=7Š%&ßĖKž¤{„L”Du˜ ӕ”{BmH0 ‚YLX•¢©!Å'øEųĆpBǧ7q܍z(ŗvw£]ö½Ćģ…łTÄŽ4)ŸīūDōĶ^ŻĖĖīéi“ėĮŪ¢±ŗhT‘£źėM@…Ē‘‘p ”Rd!™c.õƒņ@ż@‹G,T>Ķ+šy’yu·˜ėW`I†jd먆“Óā·«Šī.Vv_uÓćŒc~ %>éĀ1”.œcīW¶ū¶or}Øü4}šÉsŹVÕ¦ˆ£ fĖŻ˜q7”=OsįE„$÷Å„F\ŒĀLH˜yR}z‚”ūt…ZŌóś¾Ł™€†g[^eŽy-Üż“öūiź_~qRÉs“1’i1ä¤tlMb9ŒŸ÷yÕ M>źV3ņ¬×»ę]qa?”pÜöSi„fcX¤JsąĖäÄŗ¾Ŗ ³8_¦kÅē‘&ˆ¹BSJJ•0Ä؇4FF¶%ĒUwžjxv19Ė©ŠśLÄ ¬˜†€k£ų,3ĄŠ›ˆŖ]ĖLłH‰‚¢Ųn«Ū…ē¹6”KTŌĀ«¹ '†zlń:‰™Ö7ų#±é¶7Y'”ėét(“T f:½RLčø(o:½Œ3Åbž®PæĶbŌ^§?µ€ži½ nĘ>ķ÷5šv˜ ?7Aūs‘%3T_ž(4™"ØŻƒĮ¬|½Ćsķ‡TĻ38„>µ›œ ਌rĢĒųŖ4;vŠ,› <°ē<”%OÓ£4G§E¹ļ÷ĮӑGŚū™ś™ņ—Æåif"©t?—æ„ķŸŪOŪæ·Ż’²żŪß·ŸīŽ~¼’£Ļ„āo3„ļyĄāŅ4Œ­—L#Ŗi„±µ ¹ę¾Õ˜ą·h”1W’Öa cfrÉ}h'|±ą‡G½N±MģœßxĆ!W NØ)0o恬QT[—ųmv÷#©TŸU”[]țz™½ó«Ņ÷åĖ~’X_ LH_k,”ŃØ;w Ē-:¦FūšÆĆ!wyœśÜ„°ŽćµmkL•¾}_fĀĄ\\°MSCG«'²vć*{"…‰,Až¦©0GćuØVS®$0Ąų¶f)UtÕŗŠ•Z³ÖĮ"“ó6;‘5å:Ä Ø©"ŗ¾H3³Ł‰¬!×Ķŗ3ŗū° t;ŗ£ČM›¦Ā\­ū0°ę„IKįv q‘‰`ćhčŖu½Ś¬iŁ\–HŖś†'õ™ •LvĒńsQŅa,!Įt:č éÄUCČ +™ß’†Ķ=A+hO¤wQ­9x—Ņn€E®}g¤*„‰Ā pøūĶR™Ņz‰V˜dō dŽõžMžŁe±,µå­X-”„{ĢU-Ļ’f*WÕók&2:¾äņgʊcśCęßÓTńø4ÜęŸ×™(?…ńt9ĻtɎ©ĮdV³0Ҋō ØĢ#ōKŁ-Ć c+±UŲ"ž«›ßf¶YmĀ:żŖ„Š v… āĒÄ:ä[0•(ʘJ+“óõÓÖ?PK i5PˆŲßč 3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/shi.phpUT÷Hƒ^½UĻNŪ0æ÷)¾[UķicӀ $Źap™²ÜÄm,§³Ŗ>“`ƒ L;ohŠ¤ķöy’9v’Å)­ŗEæļ÷ūžś«½ś|ąöŅR–`ß§z4  ¾Ģ%D=>uĢ»S*÷÷IKq3ś‚»/9Å v‰čR)aµ›‰/˜#Łr£p-§¾ŠøvŌ‹ƒÜh0ā“ļKĄĢƒ€ŗ„ ’õ"bI#քA@°ŅS2Ōv;Ūė›»{›™+Ÿō±„!ąQ!9ķʒx0¤ŅWˆŹ]D1w‰ äédŪ NdĢ`Īńq2°KŌ׍¹ Ēd“·1åŚŲ~PĖiÖRqšpŠõ8!įŌ£$tąŁ8ir“&'éųG:žš&·JTT­Uņų!ĖŽä‹†oœĆ¦ń2$äČĆ#QxÉŠ+ż{jÖŚK¶ŗK“³šź*‹X׎¦Éå¤ź¶¢Ź Omméqü=‹f€zžHų—õl­$-gVVV>µ*Nė9L†)ūÆĆˆIæÜÓź¼Ū*܅±»/ŗ}WÄÉwī2M>łD³.“‡‹*åNæēF•­t„ŗź}±ųd““p]NŲµ–õœeŁŻWādõŽd°NĄŠĻ4żöQśƒĘŽÕ1»!öm±ŗaõĮj‚U¾UøU²U©U¦U—U‘UB™sr!‘šõP6J:ńåŹlę™bž4a¹4Ó'O¾łZ„Õ;ūZćlm­„”Ó¬{dE 4ŠF»Ó~£ *0čt:M˜„«xGć0¼¤yźi\U›)nD07ü7Š™:ué÷Õį™ŃL£Y*£bSF£˜.ĀéFÓm’lšÓøl¹3œb4ĆÜP԰Ԋ+­½iF[ŌW·ĘüWöon·! B'ÅŻ€äģł©Ķķ:o\|Śų PK i5P*2ˆ,õ8 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/shi_Latn.phpUT÷Hƒ^­SKnŌ@ŻĻ)jē$Wd1„€H‚)“ÉE‘U¶ŪćbģnӟXęœ€e9ÜbnBŁn{f!DoüŗŽėWÆĖöÉė*Æ&“ščhGp—“Œ ü¬P[PŲ\ĄźXI.%+\Šk[łAro5”„ab²NāvūFņVŁY¢ŹS/}§tg”¹¢€DU¦ene %Bn)3„K“¤äŖB ×IŌŻ¹ė«³‹›Ū‹ÖŖĖgs“P£”ŒÕ;+RØÉęĢpv£œN7J»°įD ė“Ō›H‹ŖĄDš3qŚŠ£8Šā“#- ŠĪÆŽGŃ,MN3M0…ū š J”)%QšźīK֖éĄbŗ\žü†6x˜öŅZˆUŠńR4X¢i„ŲH hµ~ž:ĄzdĖ \’ŅšęwóČäJŪM ļļÖŽx°Żxī–$’ƒ]©¤Ķ‡«“”ŲčV·×l¼C‰ ÖĻO-&ždt_lׂĘɍūÜ¢O.醝8‹2‹; ]=S÷±Ē»yv¦Å©ĘHcŸÅ'ń9|Š!‚Oą›ūÖ¾ėŲ0#mlčTµĆķŗoM[Č“Oņb Ēć±īć÷ƒėJ]łś®«——ó’ǽMÜn1scvȞ:į^;ŌĄĮb±˜Ā>½Ķ/:ö›²”üIĖwó/$’”ż‰y¢œä_éŚa‡!ĀŠ¢ Œ 1ź’^ŒŃ?Ų?¾œüPK i5PtĶ&Ģ 8 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/shi_Tfng.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦+žZ}ĮfgžPK i5PL-xVņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/shn.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې&±ų8Wiź6Ö2'8ÕŽž“棳ü’Ķst±Ŗšõŗ‚5|9J0G(g4¢P‡°5Ņ.+{6#ÖE;Ėļģ=¼ †¦ŽTaÓĶć —1hmĆåé_śd ²÷`C¼ NĮpž,r*•<¹„Ą=š²ū%œßūa»?}ī稅OQ˜L‚ž’ uY±‡‰Ō•›ĀžB‹„Ø_`›ł…³÷›Ļ&†“½‚ąøŌå„7<’TØ|t¦C%k¼æŽ5 ĆO&AhŪŻį£mėU“·Ēc]¾qõXżPK i5PģpķĆ6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/shn_MM.phpUT÷Hƒ^ķ×MŪDš{>ÅÜŅ®¶É})„t[¤J»-¢½ TYg¶¶ź—07ŹĶ E ā²~·%–C/œJ ŅBčw‰ł$Œķäæ7‰š\«•ņÄ3Ļó›—dģÜüd  Z­īŽ^‹ģ‘ĒšīŻ`D¾(Ä>!BcäņžmÉKź3ś”udß²ū5õ:¹Ćuj‘ĢééB›½ņķmK¾µEGµĶ[ó®ŸŁ¼*tāQķĮˆėO5AØÕ'†®2Ė‘¤ubs“ ݶöÉĄ`T^{®³a•wt’šŽƒG÷ŹRÕų„FR‡ōuGp½ē Ö'C]h²EŽŻ±]®2 õ«ĮvĖ–¹ŸŗB³¹sPĘ7ˆŪs-į’ćµLŹÉ‘}h“ĒŒšDbpŠķ‡ĆNŻē†iv,&ČŪbäóeäQÉ5až+G}Ū¤ŗQNøŅ8.·圎ĪU™|U]īčĻŁ5ξvuΈ¢Ü½’…¢tŚ]fuä>“÷ÉW-"’ŚõJ8mņń­ł„źņQu”żšKr||LŽ%}ł×ŽÆ:<©_ڦm mžŁ.¼ ļUį½)ĘŽ“_^.)½×ężTŒ_nlö~YÕ0“oŠÉwkŚŹų¢*švUńŪĀ“Ķgė{xq1łvŽcrŗ²†,p^5ÆD9ņWe™õÄRĀ{Y½Ż4¦M Uė»Ā{±f%ēS®š—wMqä§Süæw’­½2ö¬OG—ß¹ó…TU— \g—Ģäūŗō•~²n7žö~(k”›ūāņŠ\4yeŃē½båÜŽl°Ž5ÖējŖœžėʦ7šĻWͽńÉÅd’XĢii‚«Ę—šrJsœ+ʶv<¦nżū£”†P,×ģ1ŽĒäLžW½ĖČG EˆbD ¢Q†(Æ#†ƇįĆšaų0|> †#€Ą`0ŒF#€Ąa„0B!ŒF#„Āa„0"ŒF#‚Įˆ`D0"ŒF #†ƈaÄ0b1ŒF #‘ĄH`$0 ŒF#‘ĄHa¤0R)ŒF #…‘ĀHa¤02Œ F#ƒ‘ĮČ`d02ŒF#‡‘ĆČaä0r9ŒF^ø©3®÷uf.¾ūõASäņø™LpąŸįö]ŠæĻcyO”µ®·UUvąźT‡©¶Õo,xżõzńąxŗvvM¤ŹĪp]`Ä(o$ĒÕCń¼yCUÖ'×=äGc³Ē³éo³éélśsµ ł¢V’ūQåƒj>¹žQėPK i5P]jw¬ńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/shs.phpUT÷Hƒ^-InĆ0 E÷>wiƒĀ>@ƒNn (²č°6h™¶ˆ(’JQ5rūŹNW©?ų²2'œØ.ŚE~cnįE=)õ¬ »~Ÿ|ƒÖ&œž„oAÖ 1;&ċšdŠąŲO„ŅAĪØüDGXvæLóź{?“ūćē~‰ZłŌ¢ĀŒ N*Üg„fV[n { Y •¢a…m–.Žoņaö0ЈŁ)Mk]NtÅcI…ŹE‹=)tīr Ņ,¾~2 A×½>ŗ®Ž4ɦ®}®Ė7nī«?PK i5P5ó.|6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/shs_CA.phpUT÷Hƒ^„TKnŪ0ŻūÜ) ]HÓ4m’A“ ­SA4=¶H‰¤Āų]ū¾B·ŚśPҊ#÷³0*ĄĶćĢ{oF„OŽ–YŁė zģ€ŻeҲ©D`KnÓSę2`ē܌µ"Hä|Ŗ å{bŸ½7’+v v,c'搞)Jµ]œ¶„“‰DÓ‘ ]ĪœeŽq5a((K’jŖMĮŌŖĻJNŲ£ū®ÆĪ/oG—*śswĢsĖ&Ņ:#ǵƒ óŅetBŽ­®šD³Ć0ač}W»L{Žƒė\»įŖdōŒėŁį åX¢ĮžĶT=Šf9 øŚ(ʍįóŌ@‰\EQ+aĻ@UK,M/®¾¤é ‚Šv“>ūŽ ģÉz>›°7§-įė$ƛ›įż}ŅGėZ¹¬ķI>bīĮ­…TDį¬,=ØÕĀĮ3†¶j–%IÅŌ"6Kß9= æfy„XuPgĖf©œĶ7@å«ÕĀ7K$ögX|³|ĀĦŻVTJ2ų‚ †FŪQ/Ā"ųY-6Rąš„#-(’ķÉSK_̵óō:ī¬ aTŬłį£·KÄõaCåC8fĆŪgˆĒßČSˆ_ÖÕą6‚ Ÿšłó²GO@+”ÉŚŁG%ø¼“v’œ†č¤ŲNę,`N‹č U/Čļ¶f&­z«Śźµ:­@Ėś'Uø(’CD$©ž¦Si¬KkČęĄMd}Õļ­Ė6Hr,t­³Ū02ZŽePņ1BŪ²c=OwéÜ¢ķ&>^•æĖ»ótžuOFNŪ Pyl~ŗŖd»•ót'‰‡ż×½_PK i5PžEt{ī| 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/si.phpUT÷Hƒ^„VOkGæėSĢ”°Ž«JäŖ¤i“؁;JQ…ķĪz‡hgÄĢØŖˆ LJJ„ ›„B.>…`jV”&§öƒ,ż$y3³’"Ÿ:yß{æ÷ļ·ļĶśžw“dŅju77[hķ'T¢˜Ž Ņ'X(Äc¤‚c1āL«Āēų€t4ÖĄ7Ā;葠˜”gDŽØRčžČˆß3-rÕ yśĄAŸpāéxŒB>™ z(„Y„Ę4$Lź”,ę"ŊrÖF“1ĮZ÷ %3šŪyśxūŁŽ¶ õ©+4ĆET*AGSE"4£*Ń]»äS(‚b»¦CćūpŖ.dĻ<ƒžĢž¾ä’Č*öˆHt7'xżsŬņ‡-ōTbݹ„H‚Ø©`ØßBśs‚E€¾}€‚wņÕq¾:ɳ›Ćā õB>e*h[xŹ™JJ|ö)_½ą_‡…Šp™ņ¼’Ac?ä«3ķ‘głjqXØ~žW}Ÿ+›Č ‡DsVńøĪWK wOĶV(Ó¤×{ęW׳€ß7š‰ĆŪlˆ’„œE•ˆ<ųŚ0 żžå«—åŚÖV‡ŌćįnƒõM‰qĻ.“s®Į žŸ4ž²Š ŚųŹųÜA/dŃĘDƒ”Ń0Łŗ%?G_wƒ6².Usܼ€± ‹ą^9jµnC^xŅ<žČæZĒEÉŌ±tĄ*bN¤"¢˜ƒ<[˜©Y]Ō@Ч\ˆ"–aW³sY°+)ĮŚ/* vö-£¤—¦ģ,{USOŹšÕŚ~ҧ»»ŪŻŚŖ+V“«j˜æ“·Ńš ÖQVŅŅt6@‘>޹¬qąŗń˜°Čmv„m‰S²åłģēŁ©ę~€vöõćå Z#æŖ Š³z+öĒbÉMaėPc,«ż»\Ń`ˈ}ł³‹Ł[{uŲž×¹š·ĒŅķõNƒ."ŹšŲm›¦#"P•Ųār ‚F”¤–Ą X:g7ŗ½//l±F}ŽŃŗŽķó z‰Ź"ō{H}l.O⬠‘gؚ¶O^v÷Õž‚Óāßćߥ¦o‹Ļ°QĪc „»ļóÕļ¾ćRž\ȧ@õ;Ū]%‰‘—6h—zį uŁŽŲ«ļ6ó­g|ėGÓ¶ĖR7ףJżT5k¼5‰ŖQōæ8iņPk¹Łc³©¢ óUŌ7[9Æģ škŸ#ū¦¾P™ž0Ū³ę£4gVØ«Ź‘xéßēµ’_XMi“õ¦ÉŲĪĮć¤in6Õx9Æ*³ė›*Ū©U¾¦ęfaµb¾L­?ėeb‡uÉ\šfŽ2AŗˆS!ÕPGņxXü+s·ŻÜkżPK i5P“Lr¤Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/si_LK.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦+Ōź6;óPK i5Pæ±^÷ńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sid.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ £H“Š0ĪUšŗµ, ŽCµ·Ēķ8Evžæd÷œ\ŖŖf»­` 'GFņz&Ćqq{Ć} ŗ²g3a­ŚE~gļį•É8bīIvż2¾£Ō6^žž„ļ‘× ±x6¦+ÓäLĄ“Őµ2Œ‘/F(†Hī~ ēÕ÷qŲ·ĒÆv‰ZłÄŁd( S_˜IœŽ({Ž…-jѰĀ6Ė ļw8‡8p4Å 0Nk]ÉxĆ#ĪJå“3= YćżõĄ(…ƒ~ 1B×½>»®Ž4™†®=Õś›ĒźPK i5Pąź2šÜ6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sid_ET.phpUT÷Hƒ^„‘MoŪ0 †ļł¼¹ ²»n]׬i¶M†5» CaŠ2 ±%’bøæ~’¬tzœ/üų¼/å«Ļ]ŻM&‹étSųYK•l|ģ-č lMp‹\hå[ā€{šū»įś…ø„/,QĮ–L!­…«"”7Ź—ŚĪ…nÆÓÕµęŖ\Ó€ŠŻĄr_[@UB#)ć%U„¹E+µšAלŽQRēļoļ¶»»€Šžlz4PJcYĪR ½“µ?ńŽv,Č •Ńģ"lf—ĪÖšĶ‡æƒÆ”Ń ¬Y++‰½G§ŹØžk“Ą†ĢĶžče®y1LÖ±dĘ!gźä£plä‘.˜ž8Éy¾ŗŹóy¶ 5÷œĶą÷$@³qE“Į§ėԊķĒŲČV«Åf³ųåælŸĒµŽb¦²TyšŠlMŸņ ²ØC²ģX6c'<8Eclb½t{glČvŌYj āP|V§t«Æķ‰1?÷’’öŸ£ä&I6ĪM$ÉBŅOŹI5 ¾jõD‡‡Óę;l “GQ zäćAšSõ¤u—ż†­31[rćY"¶ō†}¶‰WHō‘}”}B&^½EµRżČCr]å•dcó@ Õ@žAõżéĖRR›¤ŒÖe\¾Ę¾Gցö|łqņPK i5PQtF±z 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sk.phpUT÷Hƒ^•VĶnÜ6¾ū)궉į:(Š“›¦u×6ģ&k°Q ŒWY\I¤ŹŸuÖčä҇šų”œ‚&ÅļՑų#Ń>ē›™o†ä'r_žÜ–ķĪĪ‹ŻŻŲ…Ė’k(x@ļ–)²S"Ģ™ZIAPV±kܧŲ>üYö~Uœ 8G½āĘĄĖUož"Ȕf?“Ķ+z"Õ@TŲŗ†L¶[ÅÆKLäPó …¦’¢Ŗa†K±mŒ° Ē›!ļĶŁüųüāø§ś3%3pĆ4ä\ÅWÖ`7ܔ䔎µ“*C*”;čgŲēZSJ„śńwš¶ä5o[„ß™ĶJT]м¹€ »føŌÖČĘĀk«dī1³®l ¬QŽżf™ąFĀ 3L;člC«ta˜šł‡WŒr¶r^*š‹l©8Āŗö\¬A ‹ģ5·;Š’i©mž3vĮ)†}ŖŃī‹0E›ö–ƒJKį å-pbkŁ:ąœg²īī4œŹ¬‚3Ķnüe§öŗD=©§Ż?Ŗę žĶ·—Ļo- ®ģ Ēóø XĮaĪžUŻ—a?«¼Ūzf[dj?½‚™’Õ_™“Ā ·“±ÜĢö|“ ®Ss¦t.Z2βģ,LĶ‘®Ičšß VĪcŗ/_s|ų 0µ>Œœ7 § pĪ|ļS¶\šqŲŻĒŲ„"pIŹvžRę\ؐ:XŪ‰ÕŻ‹˜“P•qā”nŠÆŻgٜ¹MĶI^ŗdŠ„!Q\i³ģ'/‹eü~æŸ, į.hXg²āÉóƒŖé €w³=čĄ`v(xQŒš#…±ŪŁŌµEM`üŹ7ßž¦$‚.©ŌØŚµÜõē¾w0š›K|zzŠmzĒÅÄs uāt®££żÅb’zēč…=š4 DPĄ><-rz`J“_MdMĖāē6˜ć·Æ¬_Ž–ökYõcŗf•ѝŽłąø3eŚręGZŅ’ 6{LæŌt»›XÄń;fĒź™#zJĪ·’O1|üa’k&lw§śW*Œŗ ³~ĄZÕŻ×ŌŻ­ū÷šND’pfÆ­+ر5Ų¬p`•é>ś±›ˆē˜¹qŚN²(Ō”oČ÷ā;ł6|¾ŗ/ģkŽåPńœcćK岕µ„ŪĶﳳ肣ų«wžPK i5PīKWęĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sk_SK.phpUT÷Hƒ^-PŃNĆ0 |ĻWųmP”ö˜± iŅ“ą½JSw±–%™ćPń÷øO֝Ļw'o_³ĻĘtMc oO& :³e4x„å!E„ÜÕ^°Uķ"pšĪd#œ± $ŪaoQa’Ö„ŪĖæō#ńj4ÕĄ„üĖtń6ŽČa,§Ä7+”āä€V¹Āy½;w‡ó×a±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń^‰ś~üģūvӕk«Ų<›?PK i5PLÆ{h+2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sl.phpUT÷Hƒ^­WĶnÜ6¾ū)x(`'pœlÓ6€“¦Mm§qj§Am“(\c1+ĶZ\I¤JRėü8ē^š‡Č‹ōRē½:)J\­ćMbæłį E>ų®ŹŖµµŪ7o®±›ģ8ćšMyŒž+P†É)3²P)H”äp†[¤kÕ7’ģÅA°gØ'Üö`bŁļ±Ņl%²|čUKÕMė¢`‰¬^*~–"eOPh2)¦R•`ø›¬*H6ēxެ;Ųߣ{v“g”’L†ƒf)×FńIm0eēÜd4C¾kY«ÉPŚ8{ŪFh×>ŖM&•޶ō-ö<ćÆ*dæBd؜ōX×F–5ū©V2'3³¼vŌ!¼`‡X 0ēNō“ĮdĮ€v¢G9W@ŗF×-ÄN¦ČUY‘¶‹Eį¤{Bń?kņ€§ąEG¼”¢IyĘpŠņ’ŒA„„pĀg<‘Åæļ4{"“œķkxåmņ Ų/8A%xīD?BĮžBĪ/ß²R*r£Ö÷vŽnųŁęüņ/oK¼’Łåß Į§ä@Ī•dĒ Ź÷ļ0g ?ݹē—OjU›ŃŻ&Ó M­;Yc4Ö_"ØuöķC¶¾ČZF1ɋŽę=zōś¦_’)‹)&‹JԘ\ōˆ8Œ¹y@ZDŁjgĪóh’ ÅEĒč3ŲgdĄ?_„ų)Ä)H!€§‚/'ĆŚ’½2£ž‰×*„Q+ޑؑam“0 )䂚4Ī£u`9qq=¤E˜.Ś5)āø5ęµHƒĒņ˜Å˜mŃ`ÜĒ{=z#0‡™Wŗųt|;Jā®kĘp&Å_^QżzēÓ!šĄøę(£^įāśĶ2@k:”Œś¢Œz†GLÆ1PŌ_eWĶ8ļY–GLś<0¶eHō éJč3īŠØ+F¹PČ%, ų@*ÕīĀTÉr,äłÕ§ Ī{ \zR}f–āDŪšįÓĖē)Ģ’MXå¼ņŁ_ ¹t ®=<üéŌng„čņ³mx‰­ÉŲÖå[|ĻƔīŽ+g9h³0?Aŗ‹a_lĢŗ]ēÓiÆ`.d!…ĶģKŌd"|½ę䃂Y¤Bg‘TŖE™Õt‹ę‹H6Xöž˜ń2ZÓ¶€\ÉŪjcb˜r„ĶŲÖÆœŽĆW|Ō;]Hī”šcKژüefŌ‚TØøLĒŚŠ]™°Śļ›¤ķhøĶH © :„T%ļQsżußw}jÄĒN’ÉvŁĘźåGŻÄ¶Öќ›ŁŻŻ:<ÜśF4ŁĪn±Cl8æD ̵”Ę&»JłŌē ŗ4§>½š4”øŪnī uOn*Šŗ, (įÓQ‚ž<‚ž“aŲƒ8„į6]Ł‹°Rķ"æ³÷šŹdœ0µ$Ūv_‚ŽQ*ǧé[ä5ØĻރÓ•ip&tąÉbHZśČ£Šį&Fwæ„óź{?ī§óa‰ZłÄŁ$č( S›;˜IœŽ({Š™-jQ·ĀÖĖ ļWø„8č°7Ł 0k]NxĆ#NJå'gZ²Ęūė-€Q25üdb„¦Ł?š¦ŚŌil¾Ļ•žāę±ųPK i5P:‹Š*cö5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sm_WS.phpUT÷Hƒ^µ”ĶnŪ0 Ēļy ŽÜ™}ļŗ®Y?†i¬¹ ka06‘%O rÜ»ķĮ&ŁJ£ięCD“ņG1’/>7U3dgg8ƒiÅę,üŚ ¶ ę`+‚kŌ3%½«Xā‚RÆ ņ“ā¾hF dfl-\ĢĀė•ōÆŹ¦…Ŗ/£ōNé¶ŠÜ …j6š•”%.H”s„k“¬äAč}+¦u›7_ß><ކRm¶B k4P²±šgĪR k¶•ųŽrŗ *Ūf³°Ć;r¶RڜūØUtNÉ«ßDnü,ķk+±ŲBģ GšˆŽÜĄH{A­‰–%n¶;å’¶¶€·¾āܽ¼LvMį¶öTĶykß”FƑ§%>%ü†ÖŪŚę~āp‡· {‹©YžHG©ü%čNÓy”œ“຃‘eąµM‚q&(Ŗ—b~téx^Xś ŚK`Ė|±Ģ‘rĢ’ Ń%*”,{)¢ö~†9Z‰łń„»Œ ažĮĘ˟l1?¾sa{ŠśĻoĆņ„F}(č§{ ’õH÷+d ߖ>ĆüżäNįļJ/¼“\¾Ą|ÖóéĒĮ_PK i5P,Z¦Ō3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/smn.phpUT÷Hƒ^•UKnŪ0ŻūÜ) ݶiZ4IŃqM6E”4¶I¤Ź ”Č"G°Ń›Č½W)‰ś0‰’V™ó޼y3¤čćOyœĻf‹££:B71•hES@ę”_!:%"ąĢ„Ā„¬Į7ܚ~¢/‚†®@T)tŌĖĻĢ,¹ņCžXźW.”•NSņ¼t+DX„R“¦$[q‘E9›£<bb…M“wyqz~u}^K5žTLډ"*• V” U±AŒwɵĮг‹™„CDRbyJB0ļP I 8šSS㳋ļūŽ˜o&ćĶŃķ ™ĒĖ@ЈBę”'čÖ£¹o0ĢėnŽ26IDJi¹ńŸŠ‚ÖÄBs) ėjW/3rĮ°LøLxĢėŸJsQķ¤ŅE“VmĶĻ|ŠI«m”EdЧe±Œ¹PCq[ÕV³Ul…NŗS|.–QÖKµJ­P«ÓŹX+ņ‚!e¶—¤œ3g"ī@œy$‰3j;qR£Œ3wŪ ÷ūĒjg69«¶Õ–5®Ķ‹j7 °{ļœPØ«ķŸ_šŽBE r¼NÜ„,²q ēb=.»ąO«Ī c%Ė$$Ėҽ±›·OgßM·“:·6ī©o¦ėb°ßū;YyėM­Ø ›żĒ|…ė£Š8{×”Ķn÷¦ 5įĖ›&ā}ó³Ģ›ć׹Ké`-rę/żęq ‹-—Ktę£ēš€÷ō¬vO‹Ģ3GSdÓxŪ[līœ6į}Č5SØśM×õ< ”‚”H@JI‚„’—ąo3J .ŸĘ` {å@šDŚč¼9hVŸĒ<7ßn'‘½ü†Źp‡8œö6°ą$BšTb‹›cé€ö±ą4DšT¦ķš2óä6EėX?{¾Œüš@Ė‘ręZd:śĮŹiˆąW’ļ?ĢžPK i5Pč²t€j¬2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sn.phpUT÷Hƒ^}TKOÜ0¾ļƘ[-ĖRZ( ’=.”h’x×VÖvźG¢šė;{ŁW“(’Ēž3ž8¾śVóz2¹8;›Ą¼paa!V h¬Ń8Š pœĮ š\+Z**\²q×ō“ā~ ęĢęĀ9øŹ×ÓŚĶ -Æ#õ§6½ŃĀÆVPčŗ3bÉ *a% ¦,„T m$:”ÕźCZkk{ŻÓćĶŻüłnmÕ×ē8:hŃB)¬3"÷Ž•Š Ē ”Ś­ö¦`”Øģ‹½˜ę¼Q€Ę`—Vư`4ŽXѰĆžzadŁķćļ,›%LĶØ3ÉŽ&@O"™„`2Æ×š– !I¼OŚ2V•Ųو>7Z•zMI}ýéĆ.jaD :C…1°•Ŗ„n˜Į#’ĢrmÜ6KLōu\Tlō;¶’B}RÆ.Į$x‹­ƒŌŹńĶVē„0}żæ|…凔ń’…(o¼Ģ7›n¦1®¼Ÿ”Z’d=›w(‘ZFļzzļU‡”?÷Äß°ŅÜĒTźäAe{M¢śbu±²XVH;W…a+ˆ™c֘0fūĢklCæŌ/?½ō+ÉĆĆ„$é.š¼ƒ\Z»蕞ó4=/Ė=p…4Mįv=€ ‡ćģ’£M”¤gL» Ūėš Xiś5. ķ•‹“¤Į0ļ|§Hh}Ź9‚a6¢Žń€7tø Śa³Ai Š³Ł×‡oš@^Ž`˜ jÓ•µĮ±=”óa³Aiģ¦Pt=F‚PĀŁ£~Ē«`ĘlŌ",+čŅ Ė*­Ž¾œ15x?ż2łPK i5P·ĻdŁńN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/so.phpUT÷Hƒ^-ÉNĆ0†ļyй*”< ŗHEØ–sä8“xT×6ć1QߞIŹÉšńæ|öę9¹TUĶz]Į¾eČ#č™ ÄÄ!l w1čŹžĶˆµjgł½‡W&ą„¹#ŲtóųtŒRŪxyś—"/ACńlLW¦Ń ˜Šƒ'‹!ke"_ŒP <ŻżN‹ļżøŻŸ>÷sŌĀ'ĪL&COY˜ŗ"ŲĆDāōFŁs,lQ‹ś¶™_8{æĆ9Ä)@ƒ)^€q\źJĘqV*ŸœéPČﯷF)ŌšSˆŚvwühŪzÕäŲīŽjżÅÕcõPK i5P6> • 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/so_DJ.phpUT÷Hƒ^„TMSŪ0½ēWčf`h˜^z -%|u҇†K§ĆhÖÖ&ŽĮ–I& æ¾+Y:LÜC}Yļ¾}o?,łĖ·E¹ NŽŽāH<”äČ*l`½03įK—`s£9T<Į‡œŅŠCqa “øG—“÷āKÜsĶ®ńĆĀŌg)õĘŲ(4kŖJf±±4/½­DEjĒ%õĢŲ<},Ēž W‘w;¾¼¾Ÿ^©ŲŸ/Į‹8”ČyKyćQ‰ł’īŻ™ĘȅTlö$Lø£Ę—ĘŗÓšžA|Ē _č5ŚZī±Ń*ÖüT¦€ Żłńehģ<ŹXōÕ¬…“øØ @¶Ec=ćÅeC…”WćŸR³ŌC^pv,~‚h֎č2ńõ,…bų6²««įŻŻš?Łq[“ÕÜb™XٹÄĘ@±t ÜBן‚Røī„F3ŪM)Aw5ØKx0j§Ź”¢Ś)4ØvxyWxbV‚6ę=ŗī Ż‘„ćļåÓą“"S‚™¶2¤„^dŸĄėĀ; 5_„pęڃÜĖmJž īģŠ·īŹ ä~rŚ,ižēv2,‰–o"Ū“ŗŁ/Ņf9,Œīœ,-m•\? ņ"‡ŸPK i5P„HŒE5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/so_ET.phpUT÷Hƒ^„‘MsŚ@ †ļü ݜ0¦×6MCBŅ” —N'㑽²­‰½Kw×ņė«]›ƒįX_“z%=śšĶ÷]µfćńʰ­ŲAĮ5ŲZ¦_< ĶŒ)ƒ¦’ŅÆņkø·Œ^Čeģ=ÜdĮ½Óā?ĶMsŪ§>AE[א›ŻŃrYy@­ ęœ““–ŗ0¶AĻFO`WŠöĪ“uėåĆćĖę1 ā|¾B{t ŲyĖYėIĮž}%™Ż™Öę$Tv6 µóÖWĘŗ/įż ~PBšdöLVflµŠżA¾ŚäX“»+‰>¦Ę–cÉ·VZ‹ĒŌҮƜÄę­uüNW–ž¶l Ņt±ü•¦ÓdFz*N&šg I·¢KąŪm/Ey…d±˜=?Ļ~Ė—Lbšµ3I##V}UrĻ®BX“!*A÷‡ž•¢Ć@šv˜R”2xX°5ź¬Ė†‘:kT"Öguټ2{ࣹ „©‘įŹ©“’åūÅW& …R̦ĆČNŃ«0ĘųŒĢEī –ėVĖmĢsźµ'zSx<x~čŠK§™uGżœ‰żl†y|­*l˜]xžä¦Ó6˜y¾ą¶˜NšžÜS{dėa—ØF&ś@RS¤[ēÓ@ Ž‘ŠFźēÓõɲbjśV®Ķ𠹉;–rŒ,:Ā|½ž:śPK i5P„HŒE5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/so_KE.phpUT÷Hƒ^„‘MsŚ@ †ļü ݜ0¦×6MCBŅ” —N'㑽²­‰½Kw×ņė«]›ƒįX_“z%=śšĶ÷]µfćńʰ­ŲAĮ5ŲZ¦_< ĶŒ)ƒ¦’ŅÆņkø·Œ^Čeģ=ÜdĮ½Óā?ĶMsŪ§>AE[א›ŻŃrYy@­ ęœ““–ŗ0¶AĻFO`WŠöĪ“uėåĆćĖę1 ā|¾B{t ŲyĖYėIĮž}%™Ż™Öę$Tv6 µóÖWĘŗ/įż ~PBšdöLVflµŠżA¾ŚäX“»+‰>¦Ę–cÉ·VZ‹ĒŌҮƜÄę­uüNW–ž¶l Ņt±ü•¦ÓdFz*N&šg I·¢KąŪm/Ey…d±˜=?Ļ~Ė—Lbšµ3I##V}UrĻ®BX“!*A÷‡ž•¢Ć@šv˜R”2xX°5ź¬Ė†‘:kT"Öguټ2{ࣹ „©‘įŹ©“’åūÅW& …R̦ĆČNŃ«0ĘųŒĢEī –ėVĖmĢsźµ'zSx<x~čŠK§™uGżœ‰żl†y|­*l˜]xžä¦Ó6˜y¾ą¶˜NšžÜS{dėa—ØF&ś@RS¤[ēÓ@ Ž‘ŠFźēÓõɲbjśV®Ķ𠹉;–rŒ,:Ā|½ž:śPK i5P¶ŗL$ c5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/so_SO.phpUT÷Hƒ^„‘MSŪ@ †ļłŗšLÆ-„4Ą”É„Óa<²W¶5Ų»éīš$üśjכƒÉ±¾hõJzōį«ļŪf;™Ģ..&p›†TÜˆŻ¢õ`*š ĮŚĀh‘ŹW¬i*¹!ż¬<‡[ĖØį™\ĮŽĆUÜ-®ńÓŅt×)õĮŲŖś¶…Ņl–ėĘj-—¤“Ō•±z6ś¶-”hoL»X÷ø¼»^ßTœĻ7ča‡;o¹č=)Ų±o$"³;ÓŪ’¤‘ŠĆΆ”vŽūĘX÷%¼?ĮŹč¬ŃžÉʌ½V±?Čך[r75ŃūŌŲ:b,łŽj@kń[ڶX’Ų²·ŽßčĢŅߞ-Až/–æņ|šĶHOåĄŁ%ü™h6¬č2ųv¤(?F![,fOO³ßņe—1ų2˜¬“›T•ݲkVĘˆJŠIxıæF„h?’ę•§4ØĒ lŒśŠe͊H}hT#¶źŠ1xevĄsS"ć•s'’˧ÅW¦…RĢzĄČNŃk0ĘxŒĢE փėVĖMĢsģµ#zUx8x¾ŠK§™õ@żœ‰żle|­ģ˜]xžänŠÖXx>įŽ¶˜ļšDNŌ„Lø;Eu2Ń’€*¶Īē‚ŹM•j¤}NѤI!¼”eudY1ui×ø×ÜÅ ŌrŖ":ŅńåüėäPK i5P„Cşq§ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sq.phpUT÷Hƒ^}VŪNÜ0}߯˜·“ˆ‚*õ‰Ža©Ś P%*UBțLˆ³‰½µ'Ż"ķ’ōĻąĒ:¾äāei“ŅŚ>gĪ™±;oŽÆŖÕlvø·7ƒ=ų^I „lų% .*„aZńP¾·xĄ\G–?‡c#…‚ “ Io®ūAqWÓA®Ūw‘śI/TvM¹^Ży[U@#sT–-U©M+Hjµ«ż–øöqg_NN/.O”Ļ*A° iÉČEGXĄZRÅēnugrd£Ā'{č*t±;Ŗ“±G®ż>”žjꇁÆsųbi#Aœ Ģ…­¤—1HQp5~²;&ƒ·ļ ;Źu§ˆÓ„M߬‘²żĄ7#SÕ÷ Oö¼»Tģ oµ¢*ĮŚNŌ£ś÷ņŻģ`¶Oj¬— X‹ß÷£Ćn|³‹¼NyC…HĖ+$MŲWąĮĶ.f‘Š ņÆxi3•aÆļĄĶb:Ėz\©x‡„Óē†Fß“5™D„EłŸ{Ū⃷Å\«“l‹KÅBā>į7DōŒ'lŖ>X‹[’-BĖeš©0NWit{£t\rŰ'į%”™ ¬„ķ±ņŪŽ)h†„ Y–£0 %ä-+[¦Ø1I·Ś˜!-“÷&!ómN`[ÉW°„ĒE¤’įŲ sN?|ö=š?>jŪȍĄå9²64ŸžŸžä'{ĪłĒšcŪ“‚Ÿ}xŠ|ĖĖEƒ¼WĢv}V“8ļēīźRšø.{b¦š¤ ?oOń~ ‡ŒK ®vŠa'rówi9ҶĀR4Ųéķ 9ml܌g[åkSH%šøSU×.ЌēYH ėUömžķCv>Ļś`2Ē‘ÕBń,2ĮVĖΐkµĀX÷æ2²iĀ@ķž~”±|Q¹ę’·ž\ŗÖmg+ ń$( „±Įu©Ų,ŖŚ¦IÜ8AS‰‰Ä,bi Ń>zGēčŚ{FĆĮĢŻüFõ5#ŸŽč+CؘīĪ×fKڼ'xBś.ŖŚ]‰®¹2Ųöm¶ī\ų¶QR›9v‹…µžeeU‡:±Æå‘X³” *QÄkx…?„—ŅXrWŲ.Ē»ņåxó¹ń@rØė _Æ"«į™hĶāüƒ‚æ{œÅõėŁ?PK i5P f, Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sq_AL.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm£Bķ0bҤiĄ{•¦īb‘%™ćPń÷øO֝Ļw'ļ^²ĻĘtMc /O& :³e4x„½å!E„Ü·½b«ŚE¾ušĘd#\° $»aÆQa’Ö„Ūóæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹Āy½;ŸöĒĖēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń^‰śžpśčūvӕ{«Ų<™?PK i5P:€šŠ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sq_MK.phpUT÷Hƒ^uAoĀ0 …ļł¾PUīcӀ $ŹaŪešP•¦.Ö&ÅqAüū™Ā$“i¾X~ļ‹ż”Éc[µJG##xÆl€ŅÖŅ[M ¾®fšrļD2_z‡‰°g|`†šLV;Ų`Č-3LņóųädōœßLÆč‹§~QŁÕ5ߞČī*ķ Ø­Aä¤+=5š­w1“5jяż»õj¶Ų¼-Ī«ś|\i†£PŲĄd󎱀£åJÉ|GåPч+Bīȁ&ҧŒ°­µA馣`8 Üw–²l¾zͲ$‡}"?Åš©@*ŗd ²ZŪFBŖ”?$? U‘;śµ¤üļ?Śæt UP†’ĖśY°ĒOw²Ą˜_Ōō6»ū‹{¬sr©(īrō›’.ŁŻļŽøf„PdDbÉŅĘ ŚHNnŽŽĮ-P9 ߞ‘Į0†k2ćtݧ ¢čąŌ›ĘvIĖÆ×E$«@Aŗī4¢X0Ķęs°ˆd2(ēʑ“ĮÓÕ¦iĄĶhEFłŗ›Ņž<˜ÄŖĄÄG"Eõŗ›ŅŽ<ÄoÓŻ§nĒŗŠwòÖ}‚ĘTĻvÓ0ąāf G `axfÖ 1V›¦™Ī„“ÕČP³ ZI.E5įĀ'į=„4׹÷c•ņX:<™° Üļ$†ļWŖ9؊-Fpž?›ŪĀÜķ‚«As`…Z˜M/EšuÉņ¼sĀŌ’.[Ö®Uø…ūŹ~nī>A¤ E%¤la”Ń2pŁÄĮÜ,¶±šÜn ZĶÕ]½®°Ü„Ō°ÆŽ9ż†UåU=Ō †JE2'9?O®Æ“_pDĀVškd[¾Cl-Ō2§äsŹc]JKą™æc{į)ZĮy»{7ö~QČ FŻ[ŒĆoŗSjvm·ŅĻķõ˜žŚ6FŽuÓ.9f"§Ų˜¾Č؆äC°Ca’J rÜžaZŹ-ꦞ©ķŽ‡[|;|oܘ¶x½æĻvĆ|µFIČö€|³Äą›ąó(äŌ”zĢ˜Ų”“›]0õ±—š’Ŗ^žšó±?«ōæĖ_-Å?ącĒß9÷'ąÉA`bFjįšō~Ą/4ZČ}`ūj¬ ÕVŚž@æ>Ō/L“^J½Ļµ§o܇uXż†8ķaŲčī*¶WÕE©|¾Śøą„“ķ°ō‹›j 2~ ś«}0§ÜąExŠW>L„ŸVųŌ·_ZKV:ĘÜ~ꆻOĆÄw°Qž‚ZC5uĘb”…Ÿr± ģ R7GnL>ĄuēLā]I¼‰÷#¹ĻÄ;‘ųõæxāNĀ¢¶„ćAl£ķ[ ?ta)[Ćnf+°Qšå㸘{/¶‰£[ųQXīmŪ,‘xšÄC'-rāQŗķņ¤}BZ@ēĄ”r0$@äL*=A‰Č'įÕž¤{n[¾SjŽ<Ā>I|{lµJüaå—Gpü#ŒŲĘĻŽžPK i5PfæŸSĻ7 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_Cyrl.phpUT÷Hƒ^ĶWĶOÜFæļ_1‡JäŲHJ›ŅR=©j)Z öšzV¶Š„ŖōŲ#•*õŲėņ„"›C󌒣¾{fÖ6d!ź!Ėī¼÷ę÷¾gžŸ~Łõ»µŚäÄD M W>‘G‚໋£1%>A/p“ĪB 9›xƒŲ +ÄĒGčyDqˆ–I¼N“=]ĖÆBX²ÄvXg6}É" äõ‚9¬»Ń ?A8tQ@Ę 2ōXŌĮ e”…ŗĮ@Ū¢d[ī[\x1æ¼2/ ¤}‰“cäŅ8‰čz/!.ڦ‰°=f½Č! Č•ĘN ÅŽg½ÄgQ<#~?Fß²ŲG+,"^¶~įšßæģžbSųlm€>jeŌłąó³.Žqߟ„9ÖZˆ1Ä'ĪÖ_x‹¾?ŹĖt“żH"¼åP'#.рÅho²-Iš¬E$éE!Z­!xĘvŽĘгhģuŻjXM«^·ź «Ž“°nX¦Õ¬[Mą4­VŻj5¬VsoĘa½0AüŒų9æä7übwuŹZ½Õ*«?fåŖ2=ZĀVŒ ?7bZƒæåé|~ŻĶ,«2xæ¬Õ°.5xQė[­u›ĶŠRš̾H’ģ’ZĆŖ8;“K£ÕJ ­ŚÅ;J³UŸ¶F’9ļó›2¼$h·m`}ØĒ!\ é§ovKł-r+”ĢÉ:Œ~Aizd’GCh‹¢;VsŚj gź =*éŹĘ9€+%LČhm1qXč~H›Č?æJ!bēeŸļQÓĆŪ+‰.0uhābh¤Œ6o°ŒĶß„ūüĶ$“CӋX§²¼Vų?¼_äc/!yF%]ŌQŸ_AkŻ(‘uē)ČHEŗé æŪE=wdIwlzųq{čY Ģұł,ĒA%PÕęצ|ģ¹ Ō 9ž’kp©ē XE=ōł)Ȧ§IAt‡ÄPeśHJ”!LI™„uXiĢѳµ ”•b/+GčšŪpe—ŠÕ>ØźÉīī¬į² L’_e[æ™étrќ¾b3q\ąeœ¹9{iÉžžSqm“Ŗņo@õZĢ…ĒBw ÆåŽ98 ”›ßĒCīÅøCęTümsėĮѾ…{æŽ(#oµ»Āq{‡ˆ£r>ˆóh±tĄ²Č„!ņi)ģuÖIT| ÉÆøÅ! 6ōÓż1 ®¼_ 5'BMĮ“/B*÷„ń—üZsŽå®c1+ź_×¹ģ)?ƒ":ČöŹyńšöhōܘPfC”X–¤Ī廎”­|iĒšš<²3¶ńĀ6NŲ÷õĄ6ĘŪĘbۘj mm˜ą$Qa.Ī/āī/ō.ĢŗR‹ź8µV"÷ź;—Č«ŅČ«bźW,)Iæ§)Sl£ß6Ŗm£×6źl£«źp[½ŲdJ”ư°BUĻ£Qœ“±Ķ¼¶~…6/–‚ž ÉQ“‰/)”T@cå0ĄĆā—ČŌ‰ØKIGYū;’SZó|ƒĢŚ“ŚPK i5Pė©·ąØ: briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_Cyrl_BA.phpUT÷Hƒ^}PMOŪ@½ūWĢm!Š6w Ø@"€KU!kcOš Ēkf×D¾ńqč_h’­ˆ„ aż:¶LØŌ9xwŽ{3ļy7?ēIƒ^/€œ%ŚĀD§|ęŠ˜ øaØhl2†¢Ku’µµ|-Z‡]Ņ*ƒc“cķlŽėv'ćÖ8™éöBśÅP³hR¤)D&/I_$TCŖ#Ģ,[fCSå“Éś§Ø»Ö8kꎇūǧūõŖ&ŸK”ƒ™²kėH ‡1Ģ“K˜įģÖ!ÅMŲA@č Ź@©2$ĢS!ŸQAV_ćįU” ! ÷OĀPЁ„pXR*łyD¾Ą%Ś€VĄÖöjࣳÓ©čæ'Nß1Ö®-µ'G²,å ³¤˜ÉÆ\莇4ųמMsõį?śóö3ÄĖX•‹_žÅĻżcõĆĻ«ŸžBų?žµE[Ģ?×hu_Żł×źę­æåūS=Ēŗf®śĪś;’»ŗįļBÅ»ę]Ē3÷žoaD|ĢŚÄ[I%»8r™A.Ķeē);+ŁłČŚā|żSšPK i5P{탿…: briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_Cyrl_ME.phpUT÷Hƒ^ĶW[OÜF~ēWĢC%Hä8awéĆ&„—@S$HˆTU­¼ö˜µ°=Ȟ…¢€ŁŖō±TŖŌæ`n*‚²yé’£žĻÅöīf”UÕZ ą9g¾ļ\gŽ_|ŗÓŪ™™yśųń zŒŽō‚łAˆüŽqŠˆh£—NŅ%1,¹ŪζA—«Ļ¹ŠIąÄč5N»„čE—æ~Ć+”¶K¢E©ś%IßC䒝ż$ŲźQäÄ Ē)PĘ>I"‡$¶ŠNˆXŪ šžŲ·ŗņrłõś2‡öўCў“"/Hitū{h/ =€ķ)é'."Oū”{Č÷~ާ=’¤mž÷ō*tvƒ?OŠ—µ $)Zw¶ÉnąŠ= ¦ż$F3žŁ}ģ$³č“E4ū¶a5­–ÕhX¦ÕhYMxoZĶ–ÕjX-“¬…†µŠ“Z‡m—ōcŠŲ²KvĶīŲÕĮĘ3k%ö7FE٬%© ­a+ADbŚ“FĢkš?ņSv•Ć’ ŪʉXVg. Æ5E•t4ūĘŪ#äą»@æC¾,q¼²SsT酎6ĄsöæÕ˜·šĘŠK–±»:X4Š^ŚĄö XJø "“åļjŁ®JG‚*—u8{ŅüĤ2ˆ”f«īX­yk””W^łlØ'N ŒsWK×Ńl)vIģ}ˆ×»É±ĖŗĻ÷Øšņö‘TW„:4i54BGģl‘BĢŽēGģš— jÓ ĀJĮOHŌ‰‰¬ö;ĖŖrǧXfU¬óZŹŲ 4ŪRéb8ppEG“ŽiūN•lBŗt#烿Ą‡Ü,¤’Ų"s<ŒDjÜQ ­ł'ē'+ł’/šČS#š}ćŌ0/‘Œ³”ču~Č膫īć OŸTł)ō鉨'£CID’DcóV樄¢:ėx‚ž7Ó8\Qó5tµ ē“ĪTÜøE'÷œX^}SlžŖERU®ÆA;M+²B²“dÆ­ŁßĀS*©ÖąA£ņ1 h„^«yšXh’ņ¦ōĪuB{ņŚ.¹—:^RŻP÷D~ŒņĮ&ßK”1žžU“Ŗ ŖßØ+ŅļĒ.ŸdŠÜwÅģ$­Ä"߁Łä#Ļ”ųz«ų“ĀćöМ>Y„“ķsĢŗ\> =k¬óGŽ.`ń@vŃŹģēćњÓŃ G¢Q¦a}|/¬;ƒŹ|÷!4ūN?¤Sį6Æ “1čPæ–R:i9»²§Ęä–+žļr+Z{˜’ÄnĮf“e桄ĢĢßwČ.ąR䗦Fæ1Å?æń0|1Č ai:ņ“ś¬DDUźŌx“h/”X|žĮĻé6/<8ŚWÓpļ×õ`ČV›ŽńĀŹå0•SŅjķ€%‰ÄN(GØøuqRżX‘W ܃ü²ühւKļHĶ„PÆĄÄšńŠæ³bc·Zr*vņ!R’u+uĻŁŃq±W ’ļ¹Ÿ°ļL£įĪ„2+­ÜĮŪyMėR| ™µĶŠ/>iÅ#Ū8c/lć„}_lc¼m,¶©¶±ŠÖ†ń9NęRŸfB½Ś»0 Õqź]uŠŲS©o©!«Ņč«bŹF,©IĄ)SlĆojŪšŚ†Ī6\£wŌOA¢¼ĀVĄ UAjažŠł Ņr-ĀĒB‚ļ_Oī|ßs{šüцRxåń¹]˜9ĄĖ-—‘ŲhĪ0sķ—=Ų{Ø^ģ+C®ż¶Ē’žż¬Żj_ķģ±Śžź'¾×LSS=3»³ļՖ÷Į9‡?Åü޾q;ī¼ėĢŪgĪPK i5Pīa£…Ė 7 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_Latn.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦+Üź6;óPK i5PJ–¦ū{Ć: briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_Latn_BA.phpUT÷Hƒ^}RĖNĆ0¼ē+öfØ*÷Ī£ (¤–ō‚P¹É¶q›Śa½i•ąÆų06-{YļĢxfcåāŖČŠ(ōzō`šŁ ›#H/ 1ųp†pkhī@ÉŚ,Q‹¶–Ÿ$§pCÖ8xĀ0·Ģp1ÆĒk'£gųͰ“Ž{jŒežCā‹Šģ2c0.…Ü&č‚Dŗ…§aė]Š`[‹»ęŽųńöīéå®¶jöćĢ0ģL€Ō&;/SŲYĪ„‘Żƒ/)A J›e!—䥙*&,r“ ō¤¤`·xBų^ZBˆćŃćsk5 ;-Ļ£śš”j .‡ŌĄćiƒØ‡‡³ĶFõ/昳Ȗ鉮*}Ąģ)į&śUźˆžįa"žĘ+S©>ü£ŸµMķש©ŗOTÓę+#O  /S=¬ė©dOķ)]aŚH>?·Ä-^`w„ü FGÄ!óÄ?Aŗ Ń­½n½õŽWwžŗ³Ōµįģō<śPK i5P~[犲x: briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_Latn_ME.phpUT÷Hƒ^Ķ•KsÓ0€ļł{`Ęi§uyŅRma2SŹ ķ ‡ń(ņ:VbKF„@{ęÄąæ”’…dŁnܖ&ŠÅ^i÷Ū§å½ēEZt:;››Ų„³”)HX†`Ÿ‘D:E8 r$øŻ¢S2ĘŠź:õ.Ż€W’'ØFLkŲ9ń·¢Š!ł~„śZČ”˜,*Š…dćTį1dŒ"WÖ%O„̉f‚oA‘!±{3†óŅīøptrzäPe|:%ęDAĢ”–ld4Ę0g:µ'6v%Œ¤hÅe°;.CgūŅčTHÕsļŪšvłĶ oY&œ’©˜1ZŚHŌFr R’E$±ČEū¤F*6Ć®ÄO†I„(:ģæ¢0ŲQ2“Õ ¶`Š»‚\pšl‚†kČ'ؐž·$ŅY°å­ēˆÓ–1Ēx‚٤ѯd¼&“`a‚Ē-„Ā©įńyK¶Ųų'cįm É&=Ķr¬Ļ)ņˆ‹¹WųBڧ$Ń(+ænø­*ÆOGhūŒĖĒ„ƒå“£6束Y7’’Ōdń‡˜%I¤E.¤¬ĆQ£e£@I†<&>_ßųrŸćg}HŽdąmĄ įų¬²l“>ŌN §nü”ūŃpÕ£Ļm=;}p/&7ąkpKٹ§)tĖĆķż˜,Ž%Žy]Ļ-ź¾Ŗū½ūnUó LS„*ąŻŪ9Vr”ėl¼ót5ĘŲėä÷”b2½ 3„Ų.܆¹h¤‹„īdDżŻ)¤ųłĆ^õäŽ]Ü’”öp-šƒŃBNÉߍOš¢‘=^7²ĖļØgRÆ īÉŗ¼ļb­7šM¦nĪoOōʀ—n9;TŹß?ĮÕże/nQKS'ŗžų7_ŃR§*‡ß·¹T .\÷)ū÷ŌWžĀŹKXįĆ Öä°¢†4tČįĘnēPK i5P±L¤–: briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_Latn_XK.phpUT÷Hƒ^-PAnĀ@ ¼ē¾ („J%$Ä”ķ ”ČŁuȖ°»õz‰xDՇušÅžńŲyžāŸe³É$ƒ |5&@mZ‚”=²€«A‚5rål¢ŌOT$m/©1¬Ų …=…ŹˆĄ¼źį«MŠI”Üeń¾;Õ±mA9csjŠjh"ŅI[;¾ g§ą[ĀÄ] uĆÜn»Žģ?7żŖĮŸ4(Šam‚°©¢†ĪH“:É{p‘„Cz0;˘$²dĘ[Éä[T”²ŠĢ•FL?Ń0AY¾m?ʲČgĖŠ-WĖ"}(ŸĀ!ƒyGtÖx 9—ō—2Xgm‘ßč[xfRĪ;mWŅĻiZ‡ĖĆæō%š ’s Ćxe2V@łiō1ÆōCą‹ ~£C•k?„Ó<÷zŚĻͱ fb•Ą¤"ō…©K‚=L$6w²÷kĢ‹śŁģ¦\XfŸ’ŲĄń®¼×¹żüX•°oĄ­2ų <¹ š|V—ĢŚ8źōśÆwʧ:°™™Œ’Ųćw"FhŪĆé­mėŦÆģźüµ‹ūźPK i5Pīa£…Ė ; briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_RS@latin.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦+Üź6;óPK i5PuC€®< 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ss.phpUT÷Hƒ^UŪnŪF}×WĢC J†kGEūŁJĒDöK…+Kr).øa/V”Ųł~H,³RŌÅ@6µ³ēĢ™™ŻåšņĶŖ^ ē''8Ļ53P1NWD[PؚĀ;¢s%q©hȒž!×ӇÅ®4#īØÉ™µp™{óO‰¦²g…Æõ½ŅAØrœC”VĶ–µ"KଠŅ`HY)-ˆeJžĀŠS‚kŒ®ƒßģĆ»›»O7^*ägkbaM ”ĢXĶrgi kfkD0w£œ.(*C²ē¾BļūÖŁZi3ńó_į½&ņæņÆāĀ+' ® 6ĮQSė“„ūąČ6”č ¦Æ!ū>~rBnHC'…rŅ,ŲŁiä %mŻ‘=&—Ł&»%Æ)m:nāpöĄÖzPA¼Ł:”dÓń9ć}mdņ¾v›Ńćāō©ŽģRf7²Wą7÷Ķm¹Ģ›-׊BɲćFtM$®DA$mżDZoÉREÆ5•–60U˜X&hĖØ“ ©Ö‘v—¬Ŗj,ÕŻ.|°Š«‚UBi݊|t†˜.…xŃL€āɆåŁēH®'BĄŪDNȧ-41fŲõõłķķłß8vĄ…[pāp$ŽWā8…gŁóTbA8•eŗ­½ ōŗŻµū;"\ĶĆĢĖļE”ō«Żćž=Ēū«»½>;ø?BćÄōäĀqSó“}5N9[Õųąt~TŪ×tĆMŗø³½Pŗd’šVN¾ĮĄš…t"§zß;!G¶d¦pųĘ//'µƒ„ž ;ĄįþßK8Ēē¦Ó)ŒGš2Lq»NĮ±Ś“įńöÖ~ Ä  ĢŽÄسFaśŌ¾ĻT³’Q±_»ļżŹY•įĘć>Ņ«9£3T²ģ¢CŸŽ+üń¬6˜’į’źYiń¬s"ȎȾéd4wĘ5.ŪŪ ßÓKŸ]ÕLä¬|ĄĪ„ˆ,¹zmŖ5žÉšjjĒ_»%yč mź5õ’–E_”<@kÅ·ŠĖ"į%ćL¬jģĶ~:Ūz/•’cŁ|'Ļ…ĮĪl·ŁFnJ Ķ(„“²HkY¤Š)nŠ1ÕÅņßl¢ķ®Ģ˜ĮąUų"Œ9VßsF ĖgķOĀV®µbÉ~†{Óū"°žœņĆ`;„aČČÅĢLž„¢ƙ: Jįź„):F½Ć3Jl*¦] ĘBU‹īó;Ž~^żz$yŌ[Ż×’÷ÓĮübšPK i5Ppa IĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ss_ZA.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦+„ÕlvęPK i5P ŪmņN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/st.phpUT÷Hƒ^-¹nĆ0 †w?·“Aa?@ƒIS @‘”ĒŅŐeŚ"¢H*EÕČŪ—v: ¤žć“6É„ŖjÖė Öšé(Ć@AĻdX  agø‹AWödF¬U;Ėoģ-l™L€#ęŽD`ÓĶćSŠ1Jmćłį_śy Š÷`cŗ0NĄ„qF`2zŹĀŌĮ&§7Źžca‹ZŌ/°ĶüĀŁūN!NzLńŒćRW2^ńˆ³RłäL‡BÖx¹0Jį †ŸBŒŠ¶/‡÷¶­WM–öū¹Ö_\ŻWPK i5P}ć"¤5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/st_ZA.phpUT÷Hƒ^„”ĶRŪ0Ēļy Ż LšLƔR ”„a€ŚćYŪ›H"}ą1oӇé{ue9 . SO}ŃJŚ’žvגŽ>”¼ ĘvĄīø°l.$2K0Žé9sŁ˜L+ZŹ—°Ął÷½|ŸŠ]”Ķ„sģ( ÓESķF¹^·®Ÿ“iͽ”,×emĂ;Ŗ`RäØ,!Õ\›8”Ր•ÖVnzyv~u{B5ł9ŽU`Y!¬3"ó V Ēi‡r·Ś› T4ɎC…AūŃ;®= ööĶ?»ÕsWAJŃ«¢Į³½;ŹJp8Ņf1z‚}6© VČNč5+šŁ‰ūĆ­AtŽ(Ę@,%äHcīøgšĮ Ā„éäņ&MGÉՈ~B2dߌ¾$¶Į&ģżq»Ō,O›…d2ĻfćÆō%Ćfó>ÉJ+Ē[UrĶŃąr”Ղā&–ZB0ļ$‡„ĻPb˜ĶVh£”åŖ\s_ž…kŪGœĘÉ;ŹJrķē ÆØČ±\ø “nv©„ö»mŽmr1±‹6£6Ÿ0|†/›Z|Ėn±-oĆŖ—Ōė^Ü¢ts ™Ī°kŪ€Ńk;,NÕEš~@źš~é”DØXDƒ8Å&µ0aøz^-…{i%Ō’Ä”©ž§sa¬KCŠ0«‘T!čŪį`‹‹Gé0§#ļŲ¶?ć1“h-3(d[A/oHū6™w„ vBŠ~īö!D §'¤#±ųė§/éx/õNļ­€“/ؽOBћ×Ń­PÕń.žµ>^’źi?HTY̵źžǽŻ}`l_Hū„šĶ ŲöWāJ·ÆgRæ²énń³g­ć°\TĶ«Ņīæ²GżŻ­¾ß7ų PK i5P=«ƒ_ķ¬ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sv.phpUT÷Hƒ^}VļnŪ6’ī§ølłÓ ūäŌķŚ&EŅ%Į€Ćhé$1–Hƒ¤āóś6ĮŽ /ąŪQ¤dŅ^,ŃŻż~÷»;‰"żīĆ¢XōzgGG=8‚oאńī ¦ Č Lš™©™Ję,ĒSāZś Ā'ř€{Ō3n ¼›Y÷WA®4§‰¬Ž{ź©”¬.KHäb„x^`"…’'(4•™T3\ŠcX”Č(öĢqŁäŻŽ|¾ŗø²RM¦`–LCʵQ|VLaÉMAõ®e­¤BiÓģ™Šę~¬M!•Yū¾(&6’Jārß©É,C‚Ķf.śõn4£Ńµ÷©]øFUā³Fįb÷vœč܏"E„į~•+0(¹Į ĖT=7Ʀ!…¦V&= «æB¦ś0~żQ"ka`ó¢śĒc[M­÷Y«×Ņ+)LÕęE°ty” 2ØłĆģjO¹E–ˆó|FZ<ėĄ‘AĶ-›J`.cÉ6œ²xž”åė­É‚B“ź¼ĘJc­¼ ZVfxUį:pĀR[6Õ:Ą,v%»‡Ė­ėų ŪŠ:t¢7$ŲWw€Lī®p iL¤ˆŸĘy-ŗEą¼°p˜"6/¹béµ$č“ré€lóCĮˆžRjŹŗī2%«G!żB•ćt陝Ń)7¹˜Cϐ¶ a[„KNy–m„EÅWØI©[>ņą#kFVR©6y¹ÜöŻlnnj÷Õ7įŪoŽ~}=ŖŚiś“®“»»“ĖĖōč%ÜŃ–Ćū8Lęåéö›čČ)]p8cź'MX‰"õ[V0Ŗf^¶Ļorcæ¹)ŠüA=™āį’±žč6ŒÉļ›—)4żÅ“’éH̾°])Ė ¤nœŠDļņlļW„ökēvgb©R.XŁ€Y-{†ĮąØ«Ŗ!üŻé¼izā970ĆOpžö¢×qüÉąŃÓAŲkšżū Ģ{ gōćń·š¾ū>Œ NjĆŅ– ė5ģÄ~n˜ ™HbŲyƋĘü'<^üŖī?1Q3ÅūĒ“Üq¦Z›ö:mļl”xéOööT īīesgu^kӘtdĪģ§Kwn¤7…|īĀ)&ĪžF½^ŽŽ]z©PŸ«ŠĮ-Ā:#²ĪQ;į*Føv«;“”Ų×¾C?÷¼s•6öĢĒÆ ”}Ómc|„mwŚPĒfŖāx¦rQpæ¾Ö{B³†_?ĄZī°F8Ėu§Ü7)ĘĮś4RńqN–Roń(w’BM©•«z.ż+Fī8żģ¾€%Y¾PtGTGźNŌKĒżŽ0w‰“™å L+aEŻ-Ō§hģ0‹ž5—Æxo$ ĒuĘq0zM©čŻŌźE‚R(ާ‘Z`-Žģ–#”`z”ĪäĜ÷h)×Ŗ_Ŗ;UŠĀźS‰g­§};N·½ÖÜ Ÿt„œ®‰ tBR•FĖG„Ósdˆü –ŽĢļьųH CøĘ¬ąB”åØoyÅĮ72÷dŁaŲ4[TÓéNKmLÆQ“­ōP~8Žbēń—Ņ×_#÷óē3)7wșµ0B›››Ķß|MĄ…¾` /qXŚ“‚ÆSųł!µ—cCŖH‡ÓA%]ōėuߐŽÉĄm˜)śĒ¤°lߣż5÷į[ÜėšEĀ=ĻqóI Śm’Ď1²ŲėV8ü?ißŪecӖŗž­H8*Óó^_”źŠšf‚õ'ŹLß`^…ą¼5lRnWJ÷#ćI[¢;jÉ }ügķtŒnõsŸ¼ Āi%¼ŖĘõ¤ZR©ˆi©€dŸ¼“mņL~ƒ—?®ł÷1ōŻIlSg>včŗ>VŠĘ“ ņēM…RŲ@’²e{†Ōœ›L[jC”Wlī½¼‹­²tT•!ĖzK¹žd±·õSųž9|’U¢HȼJa¬ó/“G]Žo¬7ć+Čē#É£~4¼É{VĆ’=’;‹ó‚wxx·śPK i5Pėć±}5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sw_CD.phpUT÷Hƒ^MĮnƒ0 †ļy ßh‚X×M+T©ō°ķ2M Įk4aŽ)źŪ/°NŖ/–撏ż+«§¾ķ•ŹāXA -yhØC½×,ąa£¹r6 ó­O˜ļd_˜%¼0i ō‰ĄŖšĘgF'©qēõĶśźx^Ō ]ĘõW¦S+ m “>œ“ć³r6¾CŲ…pœßķw›ķį};­šóI«Fķ”&/LÕ XĆHŅ%d÷n`ƒįP=‡Ķ£ lA3ėkÉŲwŚ`čf`O\0ž Äe™ļŽŹ22?¦įg¢¾„Šž²ł×74ćż ¢<ϊ"ū %wāæ EQĄzLŌqł ~PK i5PØ?щōŻ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sw_KE.phpUT÷Hƒ^RĖnŪ0¼ū+ö¦ÄHm¤Kš¦qāp»EÓKQĀJZ[“)R].mųļKQt··ź —3³”.?·u;Œ‡Ć įG­,•&µE°Kšą¹°&PåW4 ½]ūIy 7¬ŠĄ‚\”Dą²č–×&,­ŒJŪ\„Ö{ĖQh鵆Ҷ{V«ZMZ•d\°4KĖ Š²ę ZMø­¢]<÷8»½[<ŻuR1ŸŌ(°C•rĀŖšBģ”Ōa'dwÖsIĮ؊aĒŻ„ŻŁ‰—ڲ»čšų‚w ¾±]S)0+7dÖŲ m‰šÜõ&¶,Æ¢“x6€ĢøĻ™Z%…ZzvjK'Læ½b‚<ŸĪ¾ēł(»Ż(\rv枬Óešé*Q‘~ŒD6ŽēóńĻšdgqó¹/YcŌéTö€Ę#« šŻSĮ<DzŽ`ҲŅ=E±ŹĘn7 9;ƒ_O֏é2ųt•ØH?F"›NĒółųgx²³øłÜ—¬±Fźt*{@ć‘U0Ķī©ąžcYG0iY鞢X¼IUcÆXY'=Q+ŌŲᯱ=ZŲ큜’‹š8Iī§”×<)KŠ‘B'HRūŌ;µM=Sæ—^;¢M…ū—¹}ƒmš¬Ć‚āŲz„M“Ÿč:üJå³uŲĄƒ¢±ż»ÉńHo£ö]|æļɳ·‹Ōłæ&įīü§ÅR±“<˜äv™w~Ńē<ķ&¾u»ŻjOČGŖ†XUŠš/|'P£S§~>ż8ųPK i5Pėć±}5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sw_UG.phpUT÷Hƒ^MĮnƒ0 †ļy ßh‚X×M+T©ō°ķ2M Įk4aŽ)źŪ/°NŖ/–撏ż+«§¾ķ•ŹāXA -yhØC½×,ąa£¹r6 ó­O˜ļd_˜%¼0i ō‰ĄŖšĘgF'©qēõĶśźx^Ō ]ĘõW¦S+ m “>œ“ć³r6¾CŲ…pœßķw›ķį};­šóI«Fķ”&/LÕ XĆHŅ%d÷n`ƒįP=‡Ķ£ lA3ėkÉŲwŚ`čf`O\0ž Äe™ļŽŹ22?¦įg¢¾„Šž²ł×74ćż ¢<ϊ"ū %wāæ EQĄzLŌqł ~PK i5PVBóO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/szl.phpUT÷Hƒ^-ŪNĆ0 †ļū¾LØ}&@Œ!Mš&ÄįŗrS·±–%ĮqØĘӓv\EvžĆ—l£Uլ׬įÓr‚A9#ŠB@-Į„ ¾¬Ģ GŖ‹v–ߘ[xFGJ«Ā¦›Ē'_Ę µ ē‡ék%hČ΁ ń"µØ0a‚ž“ wY©‡‰Õ–›ĀžBC„Ø_`›ł…³÷˟|˜<ō4`v BćR—]ńXR”rŃbGŹ»\„4‹/†ļĢBж/ū÷¶­WMśuķŪ”.ßøŗÆžPK i5PUĮ}l™­6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/szl_PL.phpUT÷Hƒ^„TMOÜ0½ļÆš-€–E•z¢”R>*!B…KU!kÖńn¼IģtģeϽ¢żż½sĻ’ź8q–F”\šĖŲó޼yžX>śT$Ådr°·7a{ģ>Q–-T&ÅŠ1³`.‘ģ pn4„D K9#®§ļˆ]vŠ 4»‘v®œcGsæ=Ń“5n&L~Ø_ ¶B‹2˘0Ej™8:f™R[j©spŹč)+2 ”{T²jė®.Ļ.nī.¼TėĻ%ąX–ÅŹ:TóŅɘUŹ%„wkJ’Å­ŁB_ū¹t‰A{č×ūĢ®3~{Å2#€$oq-óŚfP±ÓR¬SSŁT‘»¹Ų‡¬HभåĢą²•EéJŌ ”ę(‹ „¤(J“źQī üQ*”ŒóóĖÆœĻ¢©g4šhʾO}Qwd±Ē!Õ¦ÆŚDt~>»¾ž}£/š¶ąC¢Üh—„ŖČŗZ¬ėę'©FYéjs‰ĀĒ“ZI”˜›•DĘjÕØ¢_ZUćvSŃ4l_X@óƕD­Ņ®Č:S@ģ×K, ņÄ”9niŅīÅbpĢoCWĮOš\ōżCߊrŪ¬’2”īg”UķfŠ–‘+Ś5Łŗ®\³ĮnIwfŻlā–e×®"§P¬š'ÖÖĢ›ƒW­'ÓŃ¢õ ‚vÆ_«åJ’ÆÖB”uœŌøYp/Ü ¾ hČw$ś]-[Öū餣m3Ń”0„v M®]Tæ£ģÆ«0@ó•l~5æµčņqųøĘĖ0”ū:nžŪ9Ā( |L`;Åa؏`Ąß¬ķ =,|ičŚjč’1ųHy±Ņō>(×>µÕčÆąæQącĒJaōpw2„oeģ( |\āa÷ĆäPK i5Pįg£?2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ta.phpUT÷Hƒ^ķWMk7¾ļÆŠ”°‰Łś#”7m;$ÅĪŁRŒ1ŚwČĪČHŚnŻ&jJ[(ųPźC u|˜õG =eż#óS*½ŅH3Ś™u\÷Ų9ģŽō>zŽē}õźc>Żźn53SS 4…žu#ŽĀØGüßĀL "Ń%č!fmšČ®Īs¼I¦%VĮoun£,Ā zJx;-“Uó³D6©˜īŠų¾>¢ ˆĀ~Ƈ:tk›E›]p ^Ō! —.“²‹ˆ&-“Õ#Xö}‘Œ[~ņpé鼒¢}¢‹`Ž‚ˆ µū‚h‰®“HķœöY‡HGˆQŖ±Ÿ÷E—2>ÆŽ?D_PŽE«”‘P·1œüż'•ćĄ"z± šėö*–ZČ·ĄČˆč³­5|šŪ³&śä>jĪwh?(K/³ō4īdéa–¦ŁšēÖ²›„Æe‡²(ū~–^Čf³„©š†#ĖŅß4Ė ų¶kuMQLēƒbšˆ®70ĶŅwYzä{·Żæƒ†±h TÅpž[\-ÉŹņ|<ÜwŹ©ēĒvרvLŽ\ŸlP­Čа?EĒ€ø(łŠ}‡Õj-EQģ5Y‚k‰°ź»r©ĻŹė,~øW‘Æ€‹Ē‘z%s#ފ‚VpWōQ"÷‘ń4Œ:ŖXyž±nx½ ŗµ$®Uk£ā¤Crw®«qä&V½ļū³^ q!Cüożšń•dŲhń&5 Å&Yķuo ,!£ńFBeœ,—óØMäiD®¢Ā” ¬ :MEP…”óžN`6åļOjÆī” Ū„KÖĀ’ÖÅ|cĪ|“ 1e̱Ūeū£ŽU;}\A÷ņ3=äńćł86XcX-Xę9/µiqqfeeę+ł”Œ¹­Č›Ēķ-4īßāł“P-zŻŲĮ=’ęĢ,DČqLó4®AāßŲ$®#™€‚ׄ|#Š`—Ē*ä—öxŠˈęWy}F…wŒkP÷‡0L8ņĻuTåS»Ōć¦d—½QD ī™RMśq›0 -V_LXDD²a?騻ŗõŚo£ļ¬Æ(4hŻ)ŌcīEM©zŖS³ ß³°—•LO`ŗ”ÓY9Su}ÓÜģŖ}už^<Mą9Ī/]'Ąyž>!ĪŻ@ųK^!'ł!»s%įIéO«#mT@«fźeń*hv¹æ¼R‹H_"ÓQ³„¶½åé=ķŌ³„¦r•ķ6EÕūk~n{„ó=żö*~Ÿo¢® ”@{ržW~é5(Éæ›Ā{š'ōŌ‚~PC bĕĢĒ æbœ>|Ūz)K\~^ˆ’s59Wźn-7WS÷F¹]2w¾żoĶÄt]öNtX‡ÓQ^‚łŅ8©ž€Ē£üˆØ@čŪ†^*o'ˆ»§`¾0טZ}Ŗ@j~ŗ¼āņ’¶S™™ oĀżTTÄ^lŃPޮȸęüŠš+v*,'ĀłvĪ ĪR‡ćB}ńlŠŠ}¦Ķŗ)ÕÆAŹŖZöƒzĪ zĻ)Ł[łvY¬=UŗØ1ܵŁš•†õ{PK i5P†ŽĄ)|t5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ta_IN.phpUT÷Hƒ^­RĻOŌ@¾ļ_ńn²ĢĘ«"" ą ^ˆ!Ķ“;ŻNčvźtŹf½a"˜ā‰ƒ„ČŃz袸‰'łWś§ųęuwk‹'cyæ¾÷½oŽŹ£$LZ­ĪŅR –ąy(Sd$Ļ„k* črķ©]ž!ļ †¹6}Į_„u-y »"õ¤1°āYs-FSę«Įź4õ‰ŅdQ¾JFZöC<īA$}§Ų2”p#U܆$}GR ©n{«»¹»·i”ˆŸ ¹!O”'S£„—у”4!F{Ŗ2ķ lŌ#²;”­}œ™Péō¾½/ĆÖś<”Ē#łŠśBWÄFh;uW aDģŚ°Ļ‘–‚=˜!×H†{J£G?/ė/÷#éłĖ‘ņy$ҵ~œ1„ūŌX “éøÖ|äj‘DÜxś™Nå‘XŠāe&Ņu7¶ž¹.s:†3|§ /ZŻ)EIxø:u‘{›ĪFg§³æļ“)pPĪ@Å&œV8E~Yä_Š|Rä×E~‹ĄčśŠ7ūŸ‘·Ė‹ü—µmģ’„÷żéßēŽ¼Ÿ–·ĖbüŚö™EJ3ߖöI‘ŸłO‚øšg!žÉ ųŠąĪˆÜõ<捭›½kÄ>óæ]ŃxĶX]7ÅU05•XS֔„ÕŌ`’¢kŽĪj“²j6V›†Ķł…8ģńQõĀ‰ß˜ņ¾ćć²īŁHŌž¦”ś„“ié,†„Ž©“bB8cJüQXœ¹™ļĻ­Ūķ¶ ½-ēŠgE¬¢QuÆŚMóī‚düŸ”ÖUH×ö±ÖHpM}īĶvIhŁ“b0o~N:UOžW6",>hżPK i5P’˜[ÕbZ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ta_LK.phpUT÷Hƒ^­RMoÓ@½ēWĢĶmŌ8”Æ(„Š©Øō\"TY{/µ½a½n”c‘(HØāŌQE.€ƒ]‘8ŃæāŸĀīŲ‰±Ė ჽ3ļĶ›7ć]»7šF»Łl@žy,—łŌw@„ī‚ō(lŃć”J٤OMÅÕō%{FBŲ£QI k=n„*äŅ“y°^PrBnģū`óĮH°¾'„ų̦a¤Z†.‘Œ‡+0š)Q¹CF‡X·»³¹½÷t[K”?é CĆ")X/–ԁ!“žB”÷ˆĒ¦Ŗ‘ƒfŪzB]{?–Ńm}nĮ#³ĖūDpėz«Óé“®­Žøzå&Œņ¬÷āPĘż€0_ƒJ‚ŹX„@„ #KЁOlŖ¾v,"vH—}3AĮ²¶vžX–i“%1ՎxŽõł”‘w׋¦w1alµ·»]cżüc<”^QadÉY–|ɒY–œgɅV©Æź¤ßé f+X’%æt¬±±zēŁ÷Šæ/²I–¾ÉOgYśJ÷™#y¬˜oóų8KN³ä'JL,„<ž Ü š;_0^ėŗ¢č] ūŒĪ’R4ĮńĘu¬ŗ+R’VV¶T_N}!•UüĖźSWf,‡ŖL±°=¤ōĄ!£ņĒ~Dc)ҾeéQ^ö ć8¹Zł“¶ģ³¢tŽ)3GXZśŸ”NŠÄU@ėLQgŗø6c¼e—ÜÖÖ¬=—>Kc„²{Ł®ą]XųŸ„]&"i)q‹»–īƒś«Zäs’Fu4¢DTXĢa4XX;Å-–w!)cÕwłNć7PK i5P«f”_cĢ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ta_MY.phpUT÷Hƒ^RMoÓ@½ūWĢĶmmĵ”‚h‹T©éö‚Pemģu½ŖæŲ]7Ź1H$Tqā@T‘ ą`B$NōÆų§0^;vl*šĮė™÷ęĶ›ńn?Œ½Ų0½ž=8ńø—ū šŒ©P¹ <»TŒ¢Sö9=c¹}ĆŽ„Ē‚ÓŽ˜q„`{T„B #Eģ(Ų©ØO"”…ÜÄ÷ĮŽā‰ągž:ąs›…[†n$Ŗxö!öÅÜgc]wx°»t¼_HiŹ£ ĘT‚Ć„|”(꥘+ō.£DŲ 9ŚģĄL%"*X‚Å>µžv"$æ`‚½Hø``Y{O-‹˜E nĘģĆsš1KoŅ„;UJ§OtʤąmŁ_GŽ×”-)[h‰ķ †ƒÉ¤¬‡}x†O^Ē+Bīh_3|śšžiy˜A*ƚŠĢÓė<ż’§Ė<½ÉÓ[\¦¾āWńĪ®t¶…„yś«ˆ l†ļ2ūnž½Ī¦yöŗüŗĪ³—EŸRĘČ|Sʗyś>Oj‰yĶBżĖ•š\Ė]is75ćUQW½ķ`Ÿµó;Šęz¼YkļĒ’^$TkK¤»Ņ] imƒüĻHwtҚ”4³‘Ö4¤ö?fģÜ”“ęŌž2Ķū–gÓ²ī“Ž?čąī­/5°¬JWšźŅfˆ„ÖÉ4ńG(tZgQߟ™¾n·øķģ»ńLŗvI×&iy#][¤k‡üĆIĄĆ–Ę@Ó¹iŁ“kśT¼ZŚåB* ŭȵŠ>Z’ŽźĀ1ĮĪ‚ŗ)ޘ)Aõę¾éÕN7ļæPK i5PīēĶSR®5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ta_SG.phpUT÷Hƒ^RMoÓ@½ūWĢĶmdmī„D[¤JM“„*kcoźUżÅzŻ(Ē QPÕ¢Š\8»"q¢Å?…ńڱ³¦ ¼žyofŽ<ļö£Ų‹ £ßėЃ'0ā> ÕgŃܟ™ŗnwØķųŻj&]¹¤+“hŚHWéŹ!’PšPÓŃ h'·#Ūq휚×^)&øĖYŠ“Å;1%Xߎ(!’tóńPK i5P½7ńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tcy.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې*”ų8Wnź6Ö²¤8Uߞ“棳ü’Ćód§¢Øöūöše9ĀĄŽ ŸŠB@-Į„ >ÆĢG*³v•ß™{xF ŎUįŠ­ć‹ĻcŠŅ„ėÓæō-Č4$ēĄ„i­śņ1Wś!Č•ƒ€ÉęŻ/Ó¼łŽėć¹ł<ÆQŸZT˜1BĻQ…»¤ŌĆĢjóMf!‰”\Ōo°ÕśĀÕūķ/>Ģz09”q«K‘nx,1S¹ÉbGŹ[nBšÄgĆOb!hŪSżŃ¶å®R³“uSęoÜ=PK i5PøüdĢĒ6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tcy_IN.phpUT÷Hƒ^­TĻKA¾ēÆ˜ŪŖ¤»ōj­µU Bź”ö"E–Éī$;ø;“ĪĢӓ ōŲR/(Bé”T¬ØLhÉ©ž+C’’ĪĢnv4•B¤!dgß{ßū¾÷½! :I§V ęęj`f= ‘½‹wˆ%l„ł ū&ŗĒ|”‡$īłœ£•ž\~‰%å–MĆ;¹éŹČM‚Ł“æĒü#9(šmÅ"däRbīÓØƒśĮBöµOą·žŁżµ‡›k ųqs4Ą1rü˜3æ—p⠁Ļ=”Ücš0›ˆ@]”Jß» ÷(‹—åūūč‹$ĀŚĄl€=¬DŸÓŲC›”W­0ż{Jä=%Ųµž°mµxŚ{³6śųj/Ū4‰8ŹŅI–>ĶŅĖ,ećCX¦B2|³žŸ,}Ÿ“; o—ĄYśC–żOĄ{ d­B҈{†ĮoŁx_@ MÉ·ā« ĻēĪQÓ²kų\B¢õrhŁTmKMõ:ƒęąV“§&ķ`³ōi6>Čҟš°AfrÖžšņuükÅÖ¤=±™ Ļch²“”)0ł–®šš|®f×:ŌÄ~Ÿj˜ō*KĻįļ_µ/hh¦” WéŚwƒ`3‰ébbÓČühš#čō'ĆFń”I½ $Ę/ ;čhž¢™Ī7“Óąš[p?$:P ¹ŽD½ C—Ńp;¢ƒŗµu »ŅwŻŅ"K_HxAW!ĮaÄœ°Ź~PeĪ“Æ™rRĘŹ¢ÅŸA­:xTĪj¤ƒxż‘r¹‹¼å0ĢsĶfUµĒ5­Ņ­®.nl,~%žš²Š¢ ń iõ“¾ƒhCG<4Ū¼›'ić€DN~žT²ŒqHV‹:nA Ey^Šņt‘Ø@%fD¾įU˲M–_źłŖÖ-ózŌŹē3į¤q ·ć`ŌEMø2›µ Ī·óŗQŹ_œły3FIŲ#L j½y óŸØ³ČM"[^FŠ÷仉¾ÕQ|7¢ōaU!ŸüjŠ.‘ŽķŪŚšq#Ö­„Ł`ϳō×,½ūą­0͆sč]¹æ‹ańvŌŽ@n`0Éu¾uȖé…fčqõ&’ļʶ<”$ŃĖÜ“#ćž]sVŌtēłń+u?ié÷•sƒč°0?Soāš{ŖZ±ŗ~-'ąųG%ڇTꉪ‚’Æ é>”ćLqP߃ņŽŁšNåfz¼š­[+Ńv,nµ¼V(«”@Ö܅±Ž±&–Y«!o«Ģ×2““tfņz&Ę{łł÷a\Uoi:Śde*Ī”dāCż1­;ƒcåtZq Šžšŗ?AzTi7C±ŠĀLĒųTyRµDLņ5Ā&Éb52ÓŠ „/—QĖxe°2Lž¦qńLĶS”(ĪSŸÅ\^V·©[޳—ŹK°”+#©•+żKēV…/Éļ6[K“$vo·žPK i5P4¼—Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/te_IN.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦lõ›łPK i5P¶ią§[3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/teo.phpUT÷Hƒ^„RInŪ0Żė§Ä0lt›¦i›ŲEĖbgQš%Q#‘T9Dš.×čõz’rR»FW% üį½?=čüs[µQ4"Į¦¢ Jڰ¶E©A” +W(3Įm*ÆqK&–ėč'ł)\JŠ–DeTk8Ļ\ų…ŪPčI.ŲEOż&¤oTš¦\“;I·•ä44'\Ł‘¼’”¦‚”mŚÜ+%Æ[Ü\Ķ—ė¹kå÷ÓjčPAA•–43šŠQ]YÄ‘9±ƒ æģ4’DÉ„Ä]*IŪ`N¬ĶTō•œHņĆPI Mg7i:‰§'V™x OŲ3"iA ‹įÓ<Å“ņ`^ˈēV›-ŸĒŚRøS=u‰5’ĆŠQ}ŁRõ¢$ƒk8żćn½ż|ˆkä»ĮWhÅ>ž—ŖJHŻO½5ĢŃ/Q:ó5˜ĒŠ’‘o¹Cß}Łq+Fł5b‚ėjP`%ķĮޱb¦ö¶ī¹ū|P„[I(({…Ø-PÓ EĄ_Dzµ¤čK”Ø…ū‚Ä+M³°åŖĮLÆāÆŻŌzI˜|׳F3ćĻJzLĪ܆5ī‰ÖĀlhę̽¹ß›UR©tj%ME™:użĄźų^&ŸņéÅĘgāėė3fÅßÖ{șR`€f³i’LæŪw($IĒč>p8žžN+ģĆæČööēӏŃoPK i5P›HĻóG6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/teo_KE.phpUT÷Hƒ^-PĶjĆ0 ¾ū)tKB²ūŗ®¬ė 0zŲvĆ8ŽŅˆ¦v&+ }ū)aŗIߌ<Ż`L•ērųź(AK=‚öĮ±@lA:„½ć:]ł‹;c©Ų¾ņkxarN˜jM=» c”ŅĒėöśyjǾ‡;Ó¹p”ž<†¤–”|uB10ōčtw#œŽūq8}f©%ŸtN`r JĀT‚ L$^4{Š#{T£f [F9€cvwĖ8ōĪ£v?r¢®Gbk_֖Y%K}MVĄ·­¬%Nb„ĒÖNˆ— ž¶šP˜Ÿõ£łPK i5Pżӓ ś3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tet.phpUT÷Hƒ^u•KOŪ@Ēļł{K‹R"¤žRJ D)CŖ EŃŚĒ«Ų;Ń>H”ōóōÜkå‹uöa'ĮʗŒwžū›‡w6‡ŸVÅŖ×īķõŲ»-„f¹(ŃļŠ+Ć0g¦vŹU‚’–Ņ%_Ą>iüMś–(Į%»cŲaā^?KzE³Ÿbu„ēØ<(·eÉR\=(±( ć2c„HAj )sT7倭Ją“v/`ķ÷]}9=»žž9”ĻĻܰ5×,Ś(‘X[ S‡r×hU (óÉ]…nļ±5*=rö;v‰ŗ°œJ@\ź°t®ø|ž„8ńū«$»ė1zśĄUŸ}’‰FYÉĀjć­)ؒ@ø””Šę5Ž7Ėcx öl'¹¦k×l’Š ÅTb"1\ĘBĆĒČ1j ŲÄr· O]üiö1s7®Ü™· “7¾Zśƒ –Į˜Ņüƒ'<³-šN„č©5²&F`›Fé5¬TN¤HĆȅŅĘ]ÅsĢ7·ūĮęwėAä¼ī­łsz?čĶ>ōžPK i5PĘÅUģcÅ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tg.phpUT÷Hƒ^V[OG~÷Æ8ŠR- Ą8$$8ŚŖ“śHUeYÖzwÆāݵfĒuhŠDh$Pš—>TźCBm.Ā /ł³ōõĢģŻfpF\fĪ÷Ėœ9{fVÖŚĶv”Pœ™)Ą ¼nŚ>Xv‹žo딁gkx”ӆē¢Čx£ļyä ś”1 _S[wa›ų ›1Xiˆå—..=6oxĪjDżĘ£ŅÕiµĄšŚ»ŌŽi2Š]Z¶A\]ŗ–GŁž; ķŃQö“MŗRoóŪŪÆ6„)kź ŗŗ¦ķ3j7:Œ˜ŠµYŒŻ÷:Ō čȔĮÅ…īWÖōØ_ó9ųžŚlĻĆwTr(aźBµ8“]¢S *« ½+ķłļł5æü„lx—E+m6d;žĖšy:æā×·'1=\Åō.!oņģŪŽ >¼k¤’XĖŌwG"Ś’ļ~žD$W1¹‰)ø#ž^pŪ®“=Ų.¦qd§¼wūąoXVėśÄš\3§ņņÓŠĻ‚9ĻRėė;^Ø\f¶C€ßš³ą(-ź9u×ė† ŽĒ Ć  É KV/IįJńęėPķå˲ćDÜx•AʾŸCh}½øµUüGŒQŲĀćš8ćīš‰cTäZ“=Co׌j2³?_wČz\Už'æ ė 9^>Ø&!ćŚ%oYFåo<§QT~HŠVD\¤jZ¤xüĻ}(ŹćK-ŻĻ:’«`R¼Be²ó“ąW~Ž‚#!øĒšHŲFĖ }s$Ķ5mWoIŠźø†hG0õŠķ8 B§į]b[G,†J„ B±~›¶ŽMNō/¬Ių™P/Ń#ź3"ķ¹O}×ųŌšĘ†øÆĶ"’Ś=öQėR¬ńq‚ˆx ą¼Ēo9KžÆœ °ä‡Éģ2⋾‹¹’ŗŲtĻų08@ożŠ6į‹Üz(/‰xuŠü ;®k¹øė>>ŌX.ś4ņ4ę4āĻ63/,*‰G¼Õšå•Éä…Ģ÷PœNČĒ ä$Āžˆä­ļč݈Õķy^Škü8ńÓ“z)6ĻH†Ł¢‰fx*ńģ0AoāYč'ņĘķć{0c=¶[ŽķĘVC›‰ÅŌžeSŸÕŃbݳźÉĆ·”¾i…<$ T¬’·wĢjį+?ŠĶćˆbį{×’PK i5Ph3™ÕĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tg_TJ.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm£Bķ0blŅ$“ą½JS·±Č’ą8Tü=nœuēóŻÉ‡§ģ³1]ÓhąÓS‰‚ĪlY M įhyHQ)÷eglU»Ź÷ī^˜l„+–Dą0¬š9*LŅŗt{ü—žoFS \ŹæL³°q„@cŃČ8%¾Y”ļ!“Źż.ŪŻŪåxŗ~œV«­Ÿx+°Ų#aŖą ‰×v/©²C ·²a”Źæ+1Bßæ^Žū¾Żu2·śŻƒłPK i5Pšqq‹$ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/th.phpUT÷Hƒ^µVQOćF~ĻÆŲ·“ˆŻ+½^›U)„“ŹI§*ŠŠĘŽą-ön“»¢¶RSD®ŖśŅ^Z):BOPҁźü‡ž’”īŽ×Ū”U: {ꛙoæŁūį‡Ż [©,ĢĶUŠzP‰:4$H’v±Pˆw Z¢͙6y;x›Ō4ÖĄßńŽE ŠŚ ²M•BŪęń#¦¹Ŗyžx­¾ŗY_[{¼‘Ŗ%KłBÆ5ų?ƒ0ĢJ3jøcą+ˆźézĶ ŅWuŸ`QEŃežgQm¢')„õażł­éÓN'__÷ńē$~3• pūDj"nÓĮn?6»Żf=&Å܊G\ˆIaŸ$q !SeŅY–źœžb0Æ?IĆ?]Œ" µö͉cQŹ‚/õ,//4 _č«ąĢ¼Ø”/4ķžö§‡ū„æBSL\ˆ;d¾¾\ļŃ,™ZV‡„łvxåd8"Ė™śMWČ©XHÜBZµCF¾RłąŪqoЧn–™õ5a+Įž¾ŗ36Ä2_ž?¶Īl£ėJ(ķYY/u#"‚ś”¤“¾Y͟"HšU‹G0ĶČĻi„ĖkŽ1Ņe=†3|:˜™•fź›ß+p ³ŽĀ[„q7ŁrqVŽ?Į:‚3iß`}U*s “ģW(vT JYé’?•‚Ī!č–[&²•R½€ÆKš”ÕL²kˆ.fŁN'qE ·¤ž”ī y4ŗū%œWßŪqh?KŌŹ'ĪĢ&Ć@Y˜ś"8ĄLāōFŁs,lQ‹†¶Y^øxæĆ)Ä9Ą€£)^€qZėJĘ+qV*ŸœéQČļ/×F)ŌšSˆŗīåųŃuõ¦Q[×¾×ś›ūźPK i5Pā„EDć6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/the_NP.phpUT÷Hƒ^åRĮjA½ļWŌm’%nšŖ1F³ŁʋHzgz3Mf»Ēžž]÷¦M@<A^z5Ä ˆl@ōWśS¬®Łl2ļģĆL׫ŖWÆŖké~–dĘb³Ł€&J ɔ턔°¬åµµDŅŗ«UŒ{ź„E²HSIĮŠRBƒĮ$ųķ?éģź#QBä^Za$ĶĪÓ{ofVņņ³®Ó­Õ 5“€Ž8,@męR×.ń6’EkD4¹Kö>éŠ:`5|ĪžG/#>Ś„A“I‰–›:\õ!ä²nso%ƒnraˆŚ”ė"›wū‚u‰ˆßB.³©€¤ßęĀ#’qu]J`ķ€Ńžyn{kmc÷õ†¦2ž¤C$ꑵX k†’¶PI2ą=ą”°)µŒŁ†®P?ū<”Į’¾„^R‹~@›‚ū’QCæeō.·‰KƒÕ„ź\t  2>"B>“ė›ĀÕEĄ蜠ļC&(Āx}ėĘu«Aż:4ŲZDļjšŌJK ,ōt%[2ĖŪfĮZ_oģģ4ŽĀa-šä^z±<°čdOYjx®¢ßĄi©(RƒK_©xšĘ§j˜ØųgSÉ„JFp6ńšP NTü«ČOŌą(½ūŖ¢š™`pdāIĪMÕąBEš„4ē*ž¤ńńU 9QɵŠĘ&ˆÆuĮyj•żćš/KU R„J”ÜßXGé½äśaĖ…ß„ū-Ņ/:®Å@łūķ¾}QÉ8¢XWk‚ ’PÉIaģ,Ļ$ŒóŗāF~tO±Ü£\÷_‹zĢ’O’m&‰Aó6ÖśF÷q–ĶÖSĪźØO‰(”<*X‹Q/· ~‡`ģ3ŅA>N‡ŸLĶTĒÅ²Ł)EĮi-ŁšŚKdlŸšłfˆź4Į•·¶}ŠQI¤Ū£óxÕi‚«9nęX¶¢guÉyzÕi‚+)ŠįÜAœš’Ķ››af"žĮ“Āų‚ßó“1#rŖÓWRdŻg>üsܙāDÅĒ*.z“æžA“Ājs’n&śĆ ū7)|3ϦڛRūPK i5PąĶb‡Gš5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ti_ET.phpUT÷Hƒ^½ROoÓ0æ÷S¼[¶i“ā c öMŚv.M‘›¼6ÖŅø8ĪŖīBBNÓŠ4$H€ D„ Ö#Ę߄g·éÄŽą‹ż~~žż±½r»ukµĘŅR –ąaÄShńę.“ D T„°ĪdS$¬uźµķ Į"ܕœ%°‡i“++M[®%T UDguÖŗ%¤#jeq čö%oG XBĢLR’LZBv˜ā"Y†nŒŒ°CŽ=wng{}sļĮ¦„ržTÄōX !O•äĶLa=®"Ś!ļ©Čd€$:³ ›Šž½“©HČō†]_ƒ{čįlI‘(Ž’A+.O’Ņ· kPŸœ¦«š`ŠwąŲ¹Ņ÷A.ØüLŽ0ļ~™ęÕ÷~ÜN_‡%jåS‹ 3Fč8Ŗp›”:˜Ym¾Éģ1$1”‹ŗ¶^^øxæżčĆ씣“SÖŗé†Ē3•›,¶¤lйė-@H“ųlųI,M³?~6Mµ©ulĪUžÅĶcńPK i5PtßÄż,ń5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tk_TM.phpUT÷Hƒ^µUMoŌ0½ļƘ"»UI…ąDłhałØŌ-傲&ÉdcmÖ¶Ó° Īš'€Į‰žVż_Ų‰“ŻŅ[sńŲoę½gĒ™<|RdÅh“·³3‚x›q )Ļ ģX 2 S0Į3T‘v)^ąœB›ėŅĒńž*ŽNHGÜx¹é°SiĀX.ūŌRÕDi™ēĖb„ų<3€"œĒ$“•©TK4\Š](rB»vĪ©ŖėŽž=?9{īØj&CjHø6ŠG„”*n2‹XļZ–*&+”Ōf÷ŗ–&“J?pńxićČŚŸ…šĻq!óœb”K8C…ęĪn’7«pYęR„RĶmÖ|iīŻ½°ĀLJ·óFį¬,HĶPœ¾:mføŠÖśŒ%²‚1ט,qR›¼e ķNaŹÓŁÓ±;ßā¢(;ŒĄ>ŠL©Ųå”]x_Cī 4-Jaxōø‹w7hFEB Ų„ öa²?śŗ?yrT WLQ‘cLvŒK„ł9},¹"`lzō†±0Ų#ŚK“‚ę5źZaĖŌq#9†³YųĪ>­n3K)Lę«‚õ*K¼ Ja½‘n<,ł…õ…Ö„hƒ9¬ę„®“ĻH˜õF5×ėÅ&>‘]8„…‹śN˜¶ļŻlłńf¼o䊍ÖEkĀ;šŚ­¬×ģ+¢E‚«vóÓņņ‰ˆźb¾‰×ßPmf§$6“C!Š—?»ä“šųU™ŽĪœX+ԊxzOÜņ¶¬’ņ-¹čŲ.ĻŌ5<žĘ³t$)WŚ0KĆdŹcĶt×£~½Ir؛­ČZōYMZ·<ˆ„½ī°¾Xåž~«AŁPįÖEčĮõ›öą€lØnsl=pū+ ŖaŁ`iwZ=t¾ž#ŚādA6Pץ™ķ„=TŪ¶Ų6” † –śäĀöķ^B½Ō°æV’‘]S>ņm0–¢æļ^7 ō5²ėŹ}Ī\ÖšVŸ6|I(ķækÜoēmļŽźßż_ ?Ū~·_gmæ%—LČź&䓼ü®šŠ ¦†ŌM©]ъȦŃMˆ­o‹¹?Ü_PK i5P³ ČQ52 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tl.phpUT÷Hƒ^m•]kŪ0†ļó+Ī]¶ »źŗnm“‘AŅ R£„pl˱ˆ-I^–ż÷Y'žŖM ’ŽWĻ9ś¾ū|Č£ŃōźjWš’I ©ĢŠ’‚Ė<”‰“¢¦x;qM^oæ‡G#QĮ³°‘tī"_ż¢ØŖŻu¬‹{¶~Õ¦„ežC¬'#w™T ä2ŹRH•jS “ZMą ¤¶ßR«~ĖoOóēõÜ£Ŗü\†Žh!‘Ö•N$p”.#…r·ŗ4± @I•ģt42Ā•FĮėčŸš1|ŗ‡ńm¬KåĄ”VćIqŪČožI‹jWĪęB+—uPQyÄ«eØa•å<ä? ±ļŠr©v;ŻąCM –ó`‡O<6°Z­Y^?x3šŠH“ ؑk’7œĢ…T“XVÕŌcŪRó‚é<Ų…j}ąõE³"Ö*éČVģJ•“¶=>`ī²ė<ÜÉö‰u@¤Łš“…RøĒ\šIH.¶JƒŃ"äZG@ĪŖO½x2M—Śį©Łw•vÖ SÆā3<ō,Nژ #*÷­$ŖćĪEÕ¼| ŽÅā¶(ŲĖĀŗ„ÜZŪƒ“ZMgÓ_ōu“Z\­`6·ś€ŽĘÆ} }ī!ū†Gc.TĀg¹5D‹…˜]fmłÆanĆöß“c*ńĒÕĪ×G?}“L Iź¹~ÖÓiImiK„Zü ų„Ūr“®“/ݦoźR•Ö¼› ¢O£Ļõ›ē–Ļβ7ÕUÄė=ž+ah7Ćų‡ˆ WhlUx {<-§ŖaQŖK!…‡¶®*­…;‰‚ ¾ņ}ļJ.>ėØiŸIĖ•n6[›i㚜8#ΆsįL8Nƒ“ą 86Ēåˆu,kŅ1¹Œ}Éw$MQIos\’'aöej‹ņ(¢P|ōŪ×!]}~g4…C“FCtĘ2’ioQ—K̓'`%@£H„±Ī_ī[6ĘMó$ųö`ņŖÆÕ/Žvåō®rx¢ÓčĮõ6G’PK i5PīSå÷S5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tl_PH.phpUT÷Hƒ^-PKNĆ0Żē³+Tģ”āÓ¤•‚PĄ>rœImįŚa<&‚ q.Ę8eeĻó›÷ńę~2SQTėukx36Āh‚œ“"†0„ZQ¼@ś]±n¦_čKŲ’U{Ė ›>^ĘĄ„§»ź>Š"4&ē@‡é‹ģŃ0(?€³}K?:)¶Į_ĮäP öiq^öžŪzwxŻe©%Å0«ƒL¶OŒĢ–¼Höi£a [å†y÷1± oņżö¤üļOžö “R„35„ļ3öŌ@•‹!'ņ@ų‘,!t]Ó¾t]¹ŖŲ•ņ•«ŪāPK i5PZģŒ*=Ę 3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tlh.phpUT÷Hƒ^µVļjŪ0’ž§8FĮmÉR ū”ž[Ū“$І c”[ޕʒ+ÉĶBWŲkģ öyϰ=ɞd'[vl§Ł‡±ŠBO÷ūłī~w¶”Ć“4N;½ŻŻģĀmĢ4DŒSĄ’)Qd&¦pNŌT t÷dF{ȵōķ`Ī#n؞2cąpj·ļn„é29vŌK©ņ@QĘ92]*6‹ gSŠHŖ„&ERN ś]äĻ]Ī/nü *ÆĻÄÄĄ‚h™6ŠM3CCX0#‚µk™©€b¢0/vĻ*“Ļžf&–J÷­ż.?æK䟟Ŗ՜¦džś! ē@&L°{’ĒQŌdJĄ]pyKJ”GĒą=ķ?/ČļÆß`0ņæō™ cMÆ[)LÜbΉ*™h–Ģ„÷-b,gqÉ“vI Ér-ä|r^ņblF‹ØhZѬŖdūآ𬢢YR5 ¤+jšłĄWD¾"’™ĢYQ&;ZŲŽ2,”;š”ćvmÉ̤™#ĄQUŗ®Ēåņ¬ <Ż0ò\ųź$.Øhcv96m`权Nµqs­J9:‚¼ 87…Œ7Š/ł“ĻNd¤d2rńŸ•rźoÖI>lŌ)hņļ:ÓŃĆF!‹¢É’jCUõņåoI}&ĖČD*åZRVr¼āK×9øRļ]ŻŗūI]~ ékŻ h0č]_÷>įj€% ×ø`^Ēa=}E quayģä„SŗQÕōi’ŠAŁø»āØĒ€Ŗk¹żlVœ²q/±>VG…-Ær¢Ū!ņµƒXŽĘ ¶Ö ®ŻqpÕR(UČįŲY2„Ŗ×8ķÜp=|WŹćņR¼.4œAü’wAēm—~ŪõHģqŲōĶÉcŪåĖ`ąE°žš03k•X+!ĆMž—UUؓ7nōf¢1»qjt¦Ł‘Z'jØ+Æ)®+m*¬)k+zYÉßŲ æžr¾\Ī“‘ÉÆüŠˆļ¬T>:k Ż†ćżåĢiö°bk¶34ŗōšyšā{½,SŚL0ĻDF“źzß_]āÖ_,jwÕļŠwŽÅńWŽ«3ąąDčl’ńAēPK i5PM|UņN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tn.phpUT÷Hƒ^-¹nĆ0 †w?·“Aa?@ƒIS @‘”ĒŅŐeŚ"¢H*EÕČŪ—v: ¤žć“6É„ŖjÖė Öšé(Ć@AĻdX  agø‹AWödF¬U;Ėoģ-l™L€#ęŽD`ÓĶćSŠ1Jmćłį_śy Š÷`cŗ0NĄ„qF`2zŹĀŌĮ&§7Źžca‹ZŌ/°ĶüĀŁūN!NzLńŒćRW2^ńˆ³RłäL‡BÖx¹0Jį †ŸBŒŠ¶/‡÷¶­W„öū¹Ö_\ŻWPK i5På7h»#5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tn_ZA.phpUT÷Hƒ^„TMoŪ0 ½ēWčę“ČģŚu]צ $ĮŠä² …@ی%đ<‰®‘žśQ¶’~eM€ł"’z||-«TÕėNO{āT,”öb©K¼VąHŲ„ …ā\j ‡²8dl€÷³qå41CŸj"qž÷Ұki˜ŁõE„ŽZ×-ė²™­6NŠ˜\”:C㹤YZ·ŅÖ DU"pģQcÓęMī®ofó›@Õź#$š"מœNkĀ\4šļ°vok—!Ź[±£ŠaČż^“²ĪŸū“ųU?˜Ū%5ą%Ö&oĖ‹žĀń%­+†Op"Ę l Š+ąź‘·Ž%½µ„RķŒē`#V%dČkV;ƱļšO­¹œ”ć»{)‡É͐‡ Äļžą/éŽĮ'āėE µįIHĘćŃt:śÉ_2h7ŗ%Y[C*f%·čōŖ°¦`ŚdQ*XŁƒ=µ•¦²‰6ė‡3µä`bĪ‘0µ^6ø?T½jtgué“É·ÖXW J0­3+f坮ąsŻJ ^k•ž‡Aϊ£Ö(3*Œā¢¦Ø% ‰*¢„X<ŻÕjW9l¶'SĀĀ+]éŽ×ו-m×ćR›²Ś­ķĄķā]kĮ">Lć<&öČŪwÅ^µĘcµ°\±6^ī”mm†/»zĻ“Öęx˜CŚ„\jēIŅąm³éēAƃķ"I® O°¾Z‚oŚYĘ÷‚āæ–lŽĄ€9Ó”5Ž_oŒR8Øį§#“ķīšŁ¶õŖ‘Ųž>jżÅÕcõPK i5PÅļćœP5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/to_TO.phpUT÷Hƒ^„TKnŪ0ŻūÜ) R{Ÿ¦iŅ|€qZŌī¢(a,MĀÉņĆĖ «#GČÖŁäTQ”j5q£ZˆŌšĶ{£!?j®{½ĮŽ^ķ±1–MEŒF Ę15eŽ#;3Q’BŁfŲ'lßÉvŁ'#@²k“į;œTŸĒ’>•ėgŖ<ŠŠ eŃŌĖ”^1掁ĢY!2”–$åT™œPrŸéb·!ļźņōüzt^QŽƒc °,Ö1ńs¶ŽÓ y·Ź› I(fÕ«Üļø2ö šæc—Ņ”‘A vŖJ­$JG% ·ß¤ØŅ=0ē¤iy~l”“^ĪŖ­^ƒĪÉĄX¦uҘycÅ-īüé…A–¦g—_Ó“Ÿ Pö©āÉ>ūŃ«Ø“zĻ6aŽb(„ÆB Ééaggl8²ļō$ūrSI©¤ć17­~I… īäbõ[{¬ēCxz¦Oē‹&¾ś] #/1ŒĀQ'j®źŒjį°„:žyNéšqżxwććÕ½­¦]W©„J»5oÆÖSėØė&šiD­ƒF½‘nuˆó–kõŠąjņĒ;)źéųńŽĘéO„šEP{2¤×@Ո)T sńLčß-źF«Š*­@$Ž¤ĻłJ!’Ÿ­D#redā(g"¼* NLĆNjšĮŌ­v)/.Wķ0`Ōń–j˜Ńo‡Bśfźµ®éąKąBĀF…r0¤Ūš’ż-„ĆzYc± Ņ-čėj‘žZ€«łXHßĢ]'pŗ_;x @¼œ¾qŅM‰ń— Iy÷' :¹¢!hČĖ«¾FPc,fJvkc‘ĪwKb_Yƒōµō›Ż÷½?PK i5P{kÄņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tpi.phpUT÷Hƒ^-ŪNĆ0 †ļū¾LØ}&@lMBāp]„©ŪXĖ’ą8T{{܎«ČĪų’Ķcr©Ŗšõŗ‚5|9Ź0GŠ3ˆˆCŲībŠ•=™kÕĪņ{ ĻL&ĄsG"°éęń)č„¶ńüš/}‰¼ Å{°1]˜F'`Bž,†¬•aˆ|6B1ÜAņht÷K8-¾·ĆvüÜĻQ Ÿ8#0™ =eaźŠ`‰Óeϱ°E-źŲf~įģż§§=¦xĘq©+ÆxÄY©|r¦C!k¼æ\„pPĆO!FhŪŻį£mėU#‰Ś÷×Zæqu_żPK i5PóQJžb?6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tpi_PG.phpUT÷Hƒ^„TĮnŪ0 ½ē+xs[dvķ¶®[“-šXr†B m&&lKž$7ČßO²ätFė^ęƒEń‘ļ‘”ģĻ_Ū²Ķ3ø€mÉv\øµEmAķĄ–7Ø3%+ÆpO©‹õįgł9|׌Édl-|ĪüöZŗ­²i®š«z«tO“ėźrÕ5ļK ( Ø9'iœ¤Ü)Ż e%ēŠÖ„Ī÷ĢtčóīnV›•§źė³%Z8 ‚Õœu– 8°-āj7ŖÓ99”¢/vį;ō¹ß:[*m.½ż6ؘNīaUSnµ’œøQél‘‚{°*˜)ÓźŚ„XßSOØÉvZjG”©­1'·ę6üLgšžt¬ „XŽż"M$S7źdægž: ͚¾\EWļ~čÉr¹XÆæÜ“Ģ{š),I£¤-cVr²#ĶŽ4¹„Lö_V­ęŗß“ßw2,5öQ?ö!lC­„&ĆŽWY¬Gõ<8—dzs\‚0n’ö„XÄX’-õØ„£j”Œr'©QUąqčwćī …hl»ĮŠ­[59XŌ¤é먅Mha–m(w‡«d$ŒlÆ©–’EäH„ډkc…gõ»#¹Ļśq½;į‚©‰RW¹¶,”£ ‘§ŌäČ—¹ź¤W)9N(&Ņž9ų€ß]§Sy/#®†ÜĆ€b"ķ4ĶęÆAD&ü(ŽĢ `é~'# ;Ė)ÅDZœ—;/Kć©°äÓY źMÅ;é!ÄPī>„Q€D÷ƒķó.Šā}ЧóO³æPK i5P +l2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tr.phpUT÷Hƒ^WKO9¾ó+J«Dx$›ģ. ay%°²H ­¢Y„<Żīikŗķ‘ķ† YĪūr GĪ\8q›įmłŃÆyd°FćīŖÆ¾ÆŹķ¶Żo·zIonnuii–ą4a b–RĄ¾G¤ƒN(ģŁMa—tč b |!\„ɇOTµ™Öš¶mnēx+ōJ(²wś^HKēi ”čõ%ė$ e!å %y,dF4|z)%h»`ōŅĘ}<ÜŻ’t²oØl~:!.‰‚ˆ)-Y;×4‚K¦ō`īJä2¤(ŁdWM…&v;׉jĆ\?‡?„JąDH»ūķKŁī°\¹ū}™ įCĪ#Ń!ÜŁŽKĀ·5v<É*‚惎r‰©}­ė§Ų%ƒ[«±«UV¤#¼C³ŒĀąž‡eH,EvĪÅe —ÕĚʩŽ6ÅŅNeXWģ7,‹XĆ×§ éĖÕē…ńk‘ ) ‚>‘Ć»&Ą%0ŹC/.hŖXsžø­f„upß<ČÖ­˜n8ŻaĶO]ÄĮĮF–y¬wœŌ<J5œĪµ··rt“ņ[ĆYxįŒ»Ēż0._Ā"lĖ0 |ęĖ IJyäדZ}ŠdtÆĆV;7Cb_£3ĄŅk‚œ~ŃŠ=–©ĄæĖU§Õ”) i÷ LžŠš‘U£6b¢Į9ø„üG”¦¬żTłiśqd0„Œ'©uĘ9ĶF ó<ĻŚT.Ć|J&¢EųZ*ÜĆ1ć.ÓB³Ćā²¶1Įŗ7Ł*&›GѦłĖē÷¦įhLņT±ø¬677a sX]Õ£!ī’Ng=\Q)ĘĀkŗĻ'Iö™"ł™°ÆH…[Äu¦v.q¹%įjÆįTķÅN÷ÜĄL |~(ņ,zׄ‡’ĆEļ$«Ōę'É·r1mJāĻcDūU®ķö”§Ÿęž óAY‚ō’VfGiąÜ‰ŚjwQG/R“oā8†’źo¹ÕįĢų³¾LźÆYŽ·č\_PK i5P' ĀįĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tr_TR.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm¬BķlÄŅ$“‡Į{•¦īb‘%ĮqVń÷øO֝Ļw'ĻĘtMc /O& :³e4x„ƒå!E„Ü·½b«ŚEžą¶šŹd#œ± $ūa/Qa’Ö„ŪÓæō=ńj4ÕĄ„üĖtõ6ŽČa,§Ä7+”ā#ä€V¹;į¼Ž}œĒóēq±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń§#ōżŪéŅ÷ķ¦nõ›łPK i5Põx0ņN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ts.phpUT÷Hƒ^-¹nĆ0 †w?·“Aa?@ƒIS @‘”ĒŅŐeŚ"¢H*EÕČŪ—v: ¤žć“6É„ŖjÖė Öšé(Ć@AĻdX  agø‹AWödF¬U;Ėoģ-l™L€#ęŽD`ÓĶćSŠ1Jmćłį_śy Š÷`cŗ0NĄ„qF`2zŹĀŌĮ&§7Źžca‹ZŌ/°ĶüĀŁūN!NzLńŒćRW2^ńˆ³RłäL‡BÖx¹0Jį †ŸBŒŠ¶/‡÷¶­Wäöū¹Ö_\ŻWPK i5Pē߬Æ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ts_ZA.phpUT÷Hƒ^„TĖnŪ0¼ū+xSø6zMÓ4Mœ¢Abš\Ņ6ÖŅŚ$$‘VäS£æ×/钢ģ¼jØ`€ZīģĢpWęѧ_ōzƃƒ;`7\6%2Z -S3f9²3ŠS%i++`ŽĀzų^¶ĻNµÉ&h¦ĀZv4õቤPŁA¦Ŗćż¢t š¹²d™Z4Z̹e sVŠ „!I9Sŗ+”ģ³E‰@{KuØ»ŗ8;Ÿ\Ÿ{ŖąĻr°¬Ćra¬Sg1gµ°œ2äŻ(§3$”<˜śśŚĻĪr„Ķ”Ǿ»°k5³5h$‹NęAžķŻh¦‹„ēƒģ³Q Dv ¤Ž°=Ÿ’QŌ/§B»–Ią½)yä{ÉT ł?<đŖY:ŚŲŌ“śØAŖņ¤ļū½¶ŽI*(±š"k€fōļ°ń‹KšyH·“<š ²Bžłõ›×h³ĻŁŖ7` }Ū¦µ%…xéæŽ‘‡t;ÉŗßĈĀ=ćČ·ä żgm ątæugŗ½ąeGųŽ<¤ŪIbļ…¤«µCQ„_™Pü0·@ ŻIÕ fJęĢ`”ä+ó6»ī$ŗŪ’Šū PK i5PĖ}jZńN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tt.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې&”;Wiź6Ö²$8ÕŽ·ćŁłü’Ķkr©Ŗšõŗ‚5|;Ź0GŠ3ˆˆCŲībŠ•½˜kÕĪņūļL&ĄsG"°éęń-č„¶ńśņ/żˆ¼ Å{°1ݘF'`Bž,†¬•aˆ|5B19Ó”5ŽßīŒR8Øį§#“ķīpjŪzՈ“§s­æøz®žPK i5PÓr9Ŕ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tt_RU.phpUT÷Hƒ^µTMo1½ēWĢm” ©ø†R mQ‘Ś Ń^Ŗ"gćķZÉŚ‘×!ōF[$*čõ'pK?"•Šm’‚MžćŻ$^'gö’÷žē½±&»ņ¢w+•å„„ ,Į~ĢRˆX‡žv‰T "P1…u"›‚#¶É!­”ÖŹ…į•d„Ć.M›L)XiŚrc)T-ÉźDśZȼQŌėt Ż#Éc„· ĆBŹS“䑐 QLš*t;” ö‘Ń~~nūĶśęīŽ¦m•ēS1QŠ')“XŖ$kömAŸ©ĢžŠž )µņ°ĖvB{öeOÅB¦uūžŽ1Ž]v…l3oI³#`H¢>‘CRõŁ®e×Ģ+I›¦"ʧ«‚“¢5EXT“½ÜIRՓ>TŸ ) ąłźŹįķż ¶¶źITĖÄ^‰©§©GŌĘFmg§öœ²°ƒ,ҳÓVP…Eė9IŃĆ?A"øŠ'Sę\gśJĢgsT!0_ōP_™Ļz ’ˆ¾ĖŁ=Č«~@vč±ÅŪ­ł”³ŅūT1Ąž×ęŌO{˜c<Ÿ™ō¾œśź{=šC2}ļÕ7xj„Ż ğ¦‘āj(o&7›ĀM0Åōo—Ż%w¹]^—Ņ„s¹fyś”¶[äØtæ#s6¾@ÆK=,ōꛏ`’Ū9äėų§DĢ;ł€Uö÷§š3‡b}ÕõänĻō­åĘ ‰ęļs¹<.GŁæģź¼œĻ¢GĀų’qˆ˜LU="jX»Üę鄝ą…Ȳ¶:¢DzŖŌCŃć ģåEņŁ|;܀s$®sf/}–ĄēGć_vi 6ĘošG›cœłŚ61ßg ĒO”ßå/!Ć?ĻÉT”ŅPšÖ\/»ęćÜ ģąYåPK i5PVŪÜ = briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tt_RU@iqtelif.phpUT÷Hƒ^„Q±nŪ0Żżܔ®ŒlE›¦qķEÜÅh’NÖĮ)©ž‚žA¦"ł‚ Ż³ÉłÆ’4ķ*Š„\īīŻń½wäéē*Æz½aæßc}ö-GÅ2,€™XqŅLfLēĄĘœb) ”¬ųB3kĒ’cö… 6£Öģ4¶å¹0„Ōa"Ė3?z)ÉeuQ°DVĀe®)+0”Œ¤Č$•\£VĄ v‡Šø{×W拣üĀR9:ēš5\±•&Œk )kPē¦c¼+YSF(uf‡vC{wTė\’ś`ów씄™ó×LsĶ)ĵ†³OŽ‹óeɱ°[8 ]“`œˆo"‚Ŗą ˜˜Ō¤šŽÖ5°(š\ŻDQ A„ęqƒūŽcę»õTĄ>yČĮ×&“p: ę׼݅ ”BēžV°}Ųž 'Ć\bC¼ųŲ|j>ĖĘQEXģ€ ‹öYųčąQ³¬•›œ£Š·OŽŖżµś[ĢäęOpµĖ_»‰”yFŻõä y/ŽŹæx{}/ķU‚ Ą*å›ż,`õņ„ńäŪēN5ĒNŃžź”_A$ķSĖrūČmöņ€e o_ķhdz{©½Š§÷¤{Ę·|„ŁõæŁ2$„#ĆÉ,²ŌŽņÄw=¾²][mĄ|HwŖĀ”ōnŚū‘æŸ[•Ūć½?PK i5Pż!-Q’W3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/twq.phpUT÷Hƒ^-PĮnĀ0 ½ē+| T>`ŒMcLBš8Œ†På¤.±h“ĪI@żū…j¾<=ūłłÉė—Į J­  ųv”åŽ ą€’ “ĮÅ_ZöŠŖŠö!ŸŁ9¼ £‡EĆ)ĮŚ<č«/4¤Ź†~ó/ż2µ¹ėĄ†a¾øččŲ’å¤oƒō˜8ų% a鯘īÓŽē~»;w«)_r˜ąŽŽIŲäD Ü9¹2)ŁcČb©j¦°+%”²x@k””CKm–Č7š żf‚ŗ~ßÕu„W‘bU^£—pRPJ÷$Ü0õž7pŅĒl ¢ć"Š?ˆĀWĮčóRēOźPK i5P\öŗzq3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tzl.phpUT÷Hƒ^UĻOŪ0¾÷ÆxāŅ UaH;1ĘĘ(Œ”–Šö«Š*7y!‰]ŁN S’&”¦ŻŚ%’ŲģÄqSR6˜/~öūŽ÷>?Ē/ŪÆ&ń¤ÕŚX_oĮ:œÄTBD=OˆPĄ#P1ĀcĪōVpFNŃÓX<…7‚Ē(ĒT)Ų›åk¦—\yOw,ō€‹‚(Ź’>¹ō4V@X I’E\¤DQĪ:0Ič½)ÅY×{··<Ų7T…>3"!¤R :Ά0£*Ö­]ņLØ……ŲVK Źƒa ōh_ mx¹ķį³Ī¦æšŒi5bī,ŁīXčq)g*nbS”ó…‰ĢĮ!ž5Ńi„źĶȼ±ćDĶž3.$+Ž]YF?ė›iĀóß\8|±X< R¦?…µĶfj^_ŌC…—pfģ*d,\ īq–^rŹK’W[ЦX…E‚§#Ęķq9HĀVšFŃč„Bᮈ"Ō]…(žr!*¢ÓüŅ1”o¬TX>†b»wR‚½4µdÖ1Øy<)—œ„«Ūõś}ļ³KĪŹėA_†$Iˆō” üš’\@ØG† õįß±~U‚€$ČBŪj5$Å®ūšłyL!æōA—¦–œį¹Z€ŠŚŽƒśčž­‘ Ć&Jė¬q÷ø‚Ė \C™ß ĄÄ‡’Õx1[fN³ŸHūzw‹¢ !Ų ×ŗķŻµč鿚_ohöCi–éŠu }€SAN“ŲŲ}"ņkcģNEž++·Ø™Žę·ĢĢGYBI±‘É VĘ ĀtZ’õt÷ę“ü»y]Š>ęĪńƒŅ^V3’1j”É ²Z¬’Õ2¬«Ą&·YmF—Ģt\ż¾ŖĆņ›„„a/æa˜_S›CwĶĀŹÆD‰Āžē7üę? äWŹ`ī&Y:“IU婝Ć$ØČ+抳IXu“‚β•d–«¤*‰,cį"¤Œ$¶…±,£š\‹¢BŖ‘N2āŃČż—6 ³_‚Œ×¬ÜÆöy§åæhżPK i5PjĮö‡ 3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tzm.phpUT÷Hƒ^ķVĶNŪ@¾ē)ę–Q"åRśCØ . UU„¢½Ę¶7ņnš¢Ņ[{ ä@ؔ‚TA_T[ؕx?IgģŲł‘z­T+Jvęūfvfvfåg·S©Ōęę*0»®ĒĮń| ųŪ!‘ę€p)¬’ØĶBTYdŸ. WŅXįeä‘¶)o{BĄr[ŠĻC™X°X°bØÆX¤9]ß‹u#oß@B|Ļ¢!Ē-C‡E ē”ćS‚ŗwķ)»ĶÕµķ5éJÅ'\" G8Ų‘×ī jCĻ.";gŻČ¢ø‘­‚­É „ķ‹®pYÄėrż^3īĀ‹Øcälp‚9reQэBhVŸź!%Qž®@õĆāĒ4¾I“a’Ō‹£ŗÅŗ”€49.ŖÓ¤_×Ö …[6æfir–&ƒ’ńµśąbP0īQz m‹ŌSåå$Ūj˜±mr8ē(B¦E„Ļż»X­‘‰A?į÷(“Ėܓe£ģ¼ ąāTć2Įų÷ČKIsj±Š.b|TĪWé23²Ļ“¬˜JźĀ h†; Z!ėR|'Ių|FwC˜e„Z+#}šJ½¹«Ż¬Æ×ƒĄp °S@źœ—@ 5µ­­Ś[|J`†Ā>0 Oā0¹}N³ńYÜ=“E|ڦ éqŠFÖ6ͬ¹u­āx0żĀ¦!}/&Ł÷ø˜Å~“7° ³9…ę>īō›> l¾i~„Į_ų•©­łÜ4ēęXAŌXšÓ®fĶŁ×ć‰3X—s›&ē™ź\©ĢģcŒZ>V¬žÜ"EĻó™V]«ļOŖN²Å­żŖ„ Ģ\ĖJ¾4õ[åū`Ż“ļj nóčŌ€%WSéw ūRŹÕhq¼"Å’šŒī^¼Qó1Ż~“%3Ō.tZż1ÕŠ”Ƥ•Ń &UWSmOgńÆģN„Z>Ą!`|üį:^ÄE n1§•æ“—FÆ]©×$‰J)’Ó°XH™š·]óń<,”ó½'•?PK i5PĶõJāg8 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tzm_Latn.phpUT÷Hƒ^ĶUĶNÜ0¾ļSĢm[“eÅ„‡mKX*؀ HU‹Šj’87±½²½uCé“OŠ*Į p@<oŅqž6»zBŖ/™ń÷Ķē;cæ|=Kf½Žpm­kp”p1ĻŠw†Ś‚ŠĮ& ¶PJŅT˜ā”­×ӟ„Oįę(မ€[ /ムä*»*±YQß+]Åó,ƒPĶrͧ‰”do‰.Å6MRätÜ!Qß, łćéJyÖ?„|āŪ™©žÓ½•r‹¶ÆĪ²Ļ„Ä\÷ŠōĶ™7ŽH†)mN7±.'óÜy#w²6²Üzėś»:·Žŗ:weP†¤öęĀ•Øt®"÷„0—“šŗSķ–šæŽØmźCŚ]4žˆ¹¬ Ćk+ÕµįL,LŗrrV„—ź~”čjzyĮ48•ōēˆžR<Å̳o/²8ęŚO4äėoś‰ŠļĘóÅsįēK’G½×<~ƒŽÉ‹Ž_PK i5P1#`.H 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ug.phpUT÷Hƒ^ŻVŻnŪ6¾÷Sš"€Ś,Nć (67ķ~źš¬Ć %*"*‰†DĶ ŗ\lI\;Ż…oü mlŒöjyÉz™R”EÉŹŅ »8āłłųńššn9pĘõõZGū ‘M]‚ą’1q‡ ‡8č3Dę |H6ĮV˜ß2o£oŠ}ō”„}Ź9Śī‹éW>Lß4™÷@™>b²#×E&ōŠįūr©Iü–ōmx˜Sęo K0Č~¤d(żvæ}øóōŁŽ€’üøƒ9āY4äķGœXhH¹ą²(0 ,dI²wÄ…ļ×wX¶Åw}ēP—}#Ó!A&Ż#μ=‰fįLv„Cźū) < |tŠ@0Œ#‚Ż€Œ—­ccӈß%“xŽ’ód’œĀüē¶É"Ÿ#ųT²ĢŃc>wj<ć7ńŪä¼ģ©dŹsHȋĒÅU:K®ā‹tVvÖä ĄĀGu”OŅq2ŖPĪdŹĻ Ö1~æß¤³ų¢Āŗē{¦>œSŻŚgšQśŖ ”ÉDHLę[:čg‹Ń~I:MN ¼ŹEÓ((|Č2œ6§Ań;Xgž¾*ökĢėłlØ[AD¦ņ +™“”4Ź’BŠw÷3·ĒŪž§l•♦i‡aI™©~€ŃÜŪkv:%„®Ķ²)™ģ5³ģHFÉdńG§™Y2);žĻų7“Jz aĮ‹ƒŌU3±K|KŻ-d!öH'ĻĶ8ńāRiÖEW—O~āš‹“‘‰šwĻ—č@ē)Ī!;&]$v‡®wwqØÆw‘Ž żĶ:[m)¢ÓųRäNņėĒ,&ā±ć†źĀģV¢Č‹śŲ•J;ņMQ7Ń­5?ņś$Ų@kPfŻF/—€!ŌGÓ›U•¦(ø†e“k¤zi§*CHÅdÓ(Rņ^ ʰłłĒąj•­ŒlG.æ ¢p:–_Ēy™‚šX”xÕŠŠśĶŖ˜½5Yī#iż¢µµ…>É ‹UØ ŅtŻŻŚŖĘ_‘ƒ>‘N!'ə¬6¢²UŖUø/®‡ƒŅ7‘Šē7¢“ZŸ] 4Ęń‡ųB¤Æ^+oÄüō&Ģ›!>æ~w%ZZqÖ1U'°ƒ–”lŽõ†¬Ź8œ\ÖQś®ęÜŲ_Ņ)Ģęā Ėł™Šˆ^‚²ī|į˜:Ń­…øœg-E›ę^€ų'ņ½Ā=j$Ņ9ėŠ™T˜“² ®ŅXšÓ¬.Ew[Jŗ„õBxńš’ӾĎ0ÅYA8‰?Ąļs¦<Ē \@/É#¹Ū’,¹Zµ‹‡v¦¾ M•O%Ņ“|ż|Ķ|;Ē]E„ņ_ąŁ4y{Ģī-ߏ­ā=(ä™‘ŠŠŁņa›[¹šŠV\žPśZ­X£{ÆńPK i5PĒl3·źA5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ug_CN.phpUT÷Hƒ^-PĮNĆ0 ½÷+|LŠŽa¶1¤ ŲøWnź6iŅ9Õžž“p²żüžżģĶćhĒ¢ØÖėÖše9BĒŽ ĒE!t –`ŅŸ!ó=•™;ÓÆĢ5ģ„ŃƉbĆŖ°ięņÉē2hiĀššO} ² ź’s`Āxī­śņ1Æō]•ƒæŃfģ‡iZtoĒżįōy˜G-žŌ¢Ā„ZŽ*Ü$„&V›;Ł{ I åEķb¶š/œµŪ¤6H¼›ó[xM¼£LhńŚ:`.x^dBšÄƒŠ9±Ōõóń£®ĖU•ś2?nu_üPK i5P˜)ó— :$2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/uk.phpUT÷Hƒ^ĶZŻNɾē)ź©g¼Āī&‘cĀzŒ Æ%­hf‚Šīŗ2=]“ž& cķZ‘V¶“X‘r³Ś‹ÜĘk–5p±y€žWȓäTwuWÕtńŲMĖS§Nē;?õŪ¾3Ó±;##·n [hŦ>jR‡ ųŪĮ^€X6A÷°·Ę\™-¼NĘA—«—Ģ2śĀ£ŲE‰æFƒŻYćĶ?øŠdĮøÉŚw…źób fč8Čd®G×ķa×B5‰ėƒI·É¼6(sĒPĒ!d”lĘļ-.Ü»’pł>‡Šł6Š&ö‘EżĄ£ka@,“Iz€»ĻBĻ$`ȊÉNŒŒvĘV·ȆO %‰°JÜ®žAĄ„„…u(‰ŲļbדCanÅÖ¹"³„ļĮ_Z”āöA†ū„C„ϤƒŪŌe®% ±K†ęp€…ÅĒ4Ą„聜3ķ–00Ū¢šĄS›÷lźŠuĄO ī8‰ō¾ėŃæ†ja!Z¦męĘćĆ!A@ ö ¢įjČg"ü³®åŃ.ZéBĮŠüR“9?ē£yf¶x*ž&,lāV“VK čsY„;ÄōšŒ¾¤½Ńõ…+S<됭'Ųiõq!hox]‡†-TŠ®U–q®B88*Yā×ķvÜ?1"о£K°g é»Čؘ,tŌŪķķG§ŪY+:N£½ GʘPßīķ¦b¼*‘ŸNīō£g’ŲĖč}oæ÷¬÷Ŗ÷uļ›ķ¼læH¦ą©XŃ{ÉY1¤/1rƛ„“ōhļE'ŃŃqō6:“€Bz&į¤DÓ"æ'½Vxä?dįJv-ÜÕsчm!i)ok±?–¬3Xł<ä&ųŌ­3|u žœEŪyŁI^–AilßH¶Ņ§ūaü!mĀ<ė”^&_EG ņ“§IOФ ¤V,_É`AŃ+öxĮ\nė |bĀä®;õ ’zŚ{Æ+Ŗō¤HšAj.Å Ņ)ÕĻŸO~ź}ó́Vhv82²čVń:Px½ēĆARaP«²"°a $YĻ1Vs'!?>Ļi9iĢ/½Š©$Åy”ģ(°]Viķ豦~†“ŖŌOÓcķU—m^oéØ7UI…ÜÆ­œr>ÜhMūr]…•ĻĒ/S]ø ;ŚkžŸ$äĶP9Ö×7Giģov–Ź{qm󔞃_¦–ÖšÉõ“ŠySÕTĄūŚŹ©’ÖS‘×UPżyøńŠ’Kx@Ū„:Īįüō<%¦Ļ—Ń; +fĕ±Düšœ_„*Zøćč<;“ŠfSčżĢ’õž.£¹—R¢£Ž‹čĪŖšVĄŚĢóT® ø—SKųä0/ĄrņJvģgæ…ĢÕ"[āQf­zÄ =ø&{ętpš³öAōN9yCK;‰C[=Z @Źļ×6°#ŠN/>$¢JÖ£æąŲ VłĶZT‰[ŗźS” EŗZrQ—8‘\`ÄāÅ•ä…łłJ»-tEDzŅSń}­3éŖVĒ—–Ę’Ö™ö¢%xP¾;ß?†ņö3= ž14P»!4±1'Ї>n“Ŗ(“¼ō,£Š'ØTxuš^€¦OzZ¤[WØF-ś&s1µņlå© fGqŪ%[ĮÆĻöµdś$½.łõØ~ß@¼@PmOū’ż6–ʓó¼Éxś›40m”^ŅĆĢłe“Ūė×ćÉ?Aü¦R,’l€ü·äæĖˇÜ?“ÕVņóŽė¢\§Eš8t‚ė2ĘĒź s;… äĶ}Ē3šbßōÄ<‹ŗbŚ—ŁuĆöńʀY<«ÉČ–ļŹbk,•©U(­V«…ņĶBé#Ź4Œ ėqćvō£1Ud风…÷½=0‡śĖʊķ¤U”EI»?Č|‹¬†6…ŻAŸŠßÅō^ōö~kż“Ÿ‚ˆ7g|Ļv9Čļņą Ę+ `$§s½Ķö=SzLų½¼XöŽ3Ųņ¼ˆń Žaėó2Ž0ņDšö! ģĀ&ó]¦q ĖĄ>čˆv²$€µ“ż"~ćH"ĀŗČzŸÅ½Y;f ų O%?€õ#‰ĻߎœÓŲ9ęŪ1¾éķĀ LāŠŠüā»#XōęŻÅųĪ[qņ*UwQj¤Nf’ĢM)IUpcW„Fź¬ŌīJYź°†£ŗ¬9œhõ»l3/м•~J„gŅ#é‰ō@r—œ%SÉPņźēć‘u²ÕIf½‰RµĘŖ™R½Vūs½Vo4nÕŪuæü ß½Ķl/>żtģóm'žSžP?īĄ‚ä³ö„Ÿįu-²„Ķ؉F7aŚõŃ“²Œķ¹ Ī ±‘V ŒŅ·pŪO>ā8‘ÉųGµ$:|CĻs•|hSņž6-Ö8¾{J/ž³ūŽ+^ćĘÆÓ‘é=˜=x©1¦“ƦśȽ¼*9~$¼œÜKœĢuFnø“˜Ś~µS1€UjB¦Äķ¤ŸLHEōöūbw¢ŅkLÉyqŌ…CŲ=¾M£Ōē*”‰i— <ėµRōķvt“}æŻ{^®7Źu’¾ŹC-f’ĒAsyFˈÖUA„ÜJ„™«×fJ3•č½ŗ‡Łę_ųˆĮE¼Č¼.ĻŌ}'—1Qei(TØh®©”§r«G2HjY̵d<5ŠĢ rCĒŃ”t¬jóPr'ē’Ld|O$k7É®˜›.Ryt˜Ķ#bś­ķÄkRĻē'ęī*kŹ/ŗ“ņ,—'J¼—·²/ī©–CżŌ7€‡ˆ"nŖģæPK i5Pd2M•Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/uk_UA.phpUT÷Hƒ^-PŃNĆ0 |ĻWųmP”ö˜± iŅ“ą½JSw±–%™ćPń÷øO֝Ļw'o_³ĻĘtMc oO& :³e4x„å!E„ÜÕ^°Uķ"pšĪd#œ± $ŪaoQa’Ö„ŪĖæō#ńj4ÕĄ„üĖtń6ŽČa,§Ä7+”āä€V¹Āy½;w‡ó×a±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ń^‰ś~üģūvÓÕk«Ų<›?PK i5PņkžņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/unm.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې&”;Wnź6ÖҤ8ÕŽž“棳ü’ķėd§¢ØĖ²€¾-GčŁäsBQ=Ø%Ų”“Į畹ā@UÖ.ņóļĀčįD±eUŲ¶Ėųęó“2a|ł—~Yƒśä˜0Ż„«€¾dž|Ģ•¾2¢ršO09¼ūešWßēqw8KŌŹ§fŒŠqTį6)u0³Ś|“ŁcHb(u+l½¼pń^üՇŁCG=&§ 4¬u)Ņ%f*7YlIŁ s·{€&ńŁš“XšfüjšjS'?6—s•æqó\üPK i5PY#NŽ›6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/unm_US.phpUT÷Hƒ^„UĮN1½ē+|[@!QƔRZ ph{A²&›I<ņĘŽŚc6ł›ŽūüX½^'°-A„ęā™7ļ=×›ćµŖƒńĮĮ@ˆļм˜Q…"®58v&X”87±&¦J sEl ß+÷ÅgG`Ä ś 1‹ćIžšZ•vq’”_¬KD³PU¢“õŹŃ\±3•h|”43ėĄdĶPŌBĢŻ6©ļźņģāęŪEK•ü± x1%ĻŽ&q*b+Ń»·Į•…¦ÉģøŻaŪū)°²ĪµĻ‡bę‡óŠ&åaeKØŠŸĪMY7O-98#Ą9XI‡u%ʵ ĪÓ=ī9üČ”ņüņ«”£bŒf‡Y ŏˆæ¢ŪŽ/擜J體(ĪĻĒ××ćŪŪb˜JwŻR,¬a•{ 4¤O‘²(•n JKXX­āf±tƒ +»LŖŃ¤•ź1ŖžT2° £qcPŚź6¬ƒöÄ•äa©-}‹ŅĒIņ£Ńl2Ģβ§v‰źŁG&ļj*‹¦†`²ąF«AŌSX­¢Ńph°ó†±Ūæ~¬0+0lru›[Óóß½ énRQ#ógī̜Y3ßæTqŗ’EI¤É9ϲem£‚K¬ļ†ƒÅwkE0+‚I…]ö ćŲĄ‹£ŅĆBƒ~Ģo\±z± ņ%‚'oBR“×ŲD M^œ¶6ćŻņ¢ē²X¼±äUØæ©Ų ĆV¹f0Čč7'ż,>W_ØÜŚŪTüöźKīŁóŽÕė” _MĻšLü@÷xIń&?üŚ®²¾CÆļ¹«P×籓¦?jG […üX»ŅĒ’ž»ż÷ƒ?PK i5P÷ōé~•t2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ur.phpUT÷Hƒ^}UĶn7¾ė)ę@­įD(Š“›Ÿ¦± ·µƒ6¤† P»\/ė]R ¹V\ōā@|Š)Cä)T„éĮ?Wz™—ū+GŁĖī|ßĒĪp8ūšÉ “ZlĄaČ,¢€ļ‘D:¤šŒČ¾ąy'ä˜>@­•å} ?HF8<§ŖĻ“†‡}k~ĻŃś'āǹōG!3GAEą‰Į™dĒ”Ā}ˆ˜G¹Ā<2&š ¾ ƒˆÄNfėö~z¶óü`ĒŗŹö§C¢aHųLiÉś‰¦> ™‘Į½+‘Hb ?Ūl§u/\‡ ĮQ ši›é8½4ó夽éōÜĢW 35óÅø°Ķ4½µ|:Ŗ)ŽUzōy™ŽÖ=ŌÓÅĢük®KæŃĒ•™×ﻬcv§+*ōR"ŻļZ­{CJO|rVĻpšł™ÖüÜ.'5ė"/fU.čm¶ø­ķžĀܘ¹õŅÄ–ē…½<ǚ]g¶ŻC';駉…T[öū>”><Hģ€}Ŗpgü²ˆ ~#‰RéŠC•h'šK"…O¦’8IÜ×ļ„”æY:$ÆŠiD¹fōŌA! čŸ>;Åī"’9lW(E‡ŸIæ_‚œÅ$YƒHŖÉ‹ŚQ"Ūšč±­ār²xxPÓtōז'®s«(CÖZ µmœåy”vV”¶åÄ9WńM!ĄSl†ž„ć2š¬źÆ{¼!\ąńa«ÜT‘K¤t3ŽWee³VRmÖZ…\QOpßÉćtlf˜»]…­sYU£@ŠeäXä)jSH_›«Ŗ\q‹a]½wcfåņ@S¹žīS“ą‹8Ŗ•A[ųŖĮœQ…Ź:ć•üh>ŁFLcԐb# )KOoĶ;[„„›[*ÓøŹą½C·jww+ŽsmNԘ-„¤£¶·;ūū—ų4Ȃ…}|ą.}—‡»įK™™Ą:u7ĻĻ#x½üüFŌT$¦ŪE°8š¤pT½6×]Ąģk19}„+©-Ž„/ŹKb·Gė“Qu·3óO~Ł(’ø6†]WÅØ-ģĀ—Ś”w"•wߎJ”b*™Ļhģ Õ6’a枯ŽÄĘł„ć¢Ż­O ×/ł©AōNPżŗņŽ*¬²¾zĒĄg“J÷艠WNŖoŖÉdq'²¬µŹQłm®Šš\`6{ĄäńĒ 6üQüPK i5Pqhķ}5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ur_IN.phpUT÷Hƒ^ÕPMoÓ@½ūWĢĶm”q…R m•J… — UÖŚYŪ«:»f?åX©±rČļ €"‹—üŽuņg˜Żø„•8Wb/3of޼·³÷ŖĢĖ t:tąSΤ¬ €±$RƒHAē‰ŒĒRrE2ŚĒY7¾“ģĀɇ3Ŗb¦5ģÅp„B÷1ŚoGß é„¦( åD²,×@ų –P®P’§BŽˆf‚w”,(ĮŚ5£cĻ;=9<>ūxģVy:'ĘDĮ)-Yl4˜é;č] #ŠBCovą~čøÆĪ…TĻ]ރsä¼#ŗ  §€/6Y/+Xœō ‘‚ŖƒŒ›¾™ß!©6’‘’L"IĖ‚$cb¤b×tGŅ/†I QttrEżp`dÆvįsඇے©^ī·%_>õ…šhš~pqv}ćrĀ‘ą:o”żŁTĶĢ֛9ī ›[?@S»°õŗr¹]4+WonŪĪ×ķ ņgMuŸŻ"㮳X/ķ/ūĆē‘óĶÖmē;āŁvt‘Õ¢ĒŽ#…wÖ’“ļ1„WC2¹æõ³-{µ™·Ł“©ÖĖ­Cä/׫Ö×Ōž¶µcżÅ››­Æ¦ŚĢ×Õ?“_éIGŒ?…jE"R&•ŽœøCJ¤Ö .w_PK i5PX÷`ųńŠ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ur_PK.phpUT÷Hƒ^ÕRMoÓ@½ēWĢĶm”q…R M‘*µ=„*kmÆķU]3»n”#R“FˆßA BŠ"ąĄ%æcž ³§“ÜAĀ—™73oŽŪ‘÷ž”yŁjõŪķ“įU.4¤¢ą@±dh@„`r‡ #%©_°Œ÷h֍ļÄ»š “pĘu$Œ½ČĮIP™^¬†ūĶčs…~QZÄŖ£ČrL&Pˆ˜KM’2U8dF(ف²ąŒj—‚<ļäųščģå‘[åż™œ1 ‰ŠETžĄH˜œ:ä]« cNB‰7Ūw/tܧ•Éź‡.ļBTeݬQÜ-TĢ ®2Yõfž‚ÜT(!²qˆ¼,XĢ)ĘjqÉwæ­rĆĮń‹0ģż {tĢ oZ@_°yŽąń~Sņå_ƒžéi’5}AĒ7Ļ7!*iņ†Ų/õ“žŁåĻ“7ØßŁå4±s»\O]nēõŹÕ뫦óq3CüY=½Ķ®ˆ±ķĢ× ūÕŽųœ"q>ŁeÓłLx¶ÅĪĮ.±tßqØé“ęņ=āü"aćŪ[Ļ={ްWõū&›ŌÓõbćų‹õŖń5±?ģұ~朌3®éÅ7”’©t’F’@o(äßW#„P„a*P›ŠI;4ę ½ōƒķ_ĀQ$‚·~¾ū½ßܖóŻG­_PK i5PˆU2">f 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/uz.phpUT÷Hƒ^•VßoÜD~Ļ_1oQhŌ×P ”IÕ@RUJ”čķ×ē%¶÷“»NrpHiØT^ āyF\óŽK/żÖż‹˜õz½¶“”ā$Šw꛳¾ĻŽ}ļća4\XX^\\€EŲ‰˜„Åš’<Qx@D§hźļ“½ƒXÆ’>|*Iį1•=¦Üė™å').¹ŗÓēÉżś‹"Q˜Å1ōłp$Ų R@ŅbÖ§©DŹ4ä"!Šńt †1%h;`ō°ˆŪÜx°žx{ݤ*ō©ˆ(8$&•`½LŃ™ŠŠƒŚ%ĻDŸ"QPˆ]6;4±«™Šø+ęžXKʎ`;"=’ņkżl 6$ĮJ»ŽHłˆ(ŌĶ£@±Ą.ūŗą'‹ŁpHįK’õ#*¬5¤1;Ām$d²ŠģWYĒŽĢO2ų<< Ö¦¾ŁĻģŻ9‚-#šQ'.#)SEJ}«1“Č_ÄŁ G÷’u1 h?€Õ€}‹ö¢ ‚ŖL¤°»xuF”ˆ|t:+}ž„ ō?zŖ/;KÖMö<ą»»ßė—zš—˜ń£V6gOxŖ¢¦ļŹ{É^Ķ_#BČųxŅJä쇔ī7\oĪō$–Ÿč‰gņ Oäqć[#[™= ­=ĻņōÜóUžŚ¾ Čųʀ •ĢŁ#ģē†+Š%™ä'žÉC<•Co‰ŠZ9«³TS˹ž¼łMOńÆVĪ:°¶Ćvü–xŒnq8¤}ž×w<Ēü/<}†ō2¾5H޲e2ą„G±„‚žčSü™ųŽOöR^6‚žSϰóēP§łs\ž×j**jįuQœ™ź‘÷(Ž=Śą¾Ņ—Æa†ž»óJ’m*ŻšØDŹŖįōÆśEM6\ˆjäǦÉõ™‡Łl«dĒDaŽÜ±!­$I‰-Ū5ϊ” §u­­-om-WĆé¼°…\w_÷Ćuś›`KąÕwĖķõ ŽÓ œjµżI’Š5Wŗ]ż Ź3s0«#ӅĶŲ5O±[ēO鑪ÅÕ ś–€ÆŖ!Tčܵ3@O’‹,&²NV>ąw‰ņŒ»śwTxfš± ’ŽŌh=–eÆn¶*[Ģš²o:ł LˆĒĒ“(tņgŲō§ł±=NŲwÆŒĒŒ!¼Ÿč×č¹š3éńnš’l@ywYbOĶcɟŚXŌ{”ēł ²½“LØÖXĻõUmuŽųf1ė¦ī=‰ßŖ”Ž+÷š½āwUėuz}^™WUé1o(<ĵJĪņĶćĀį:±x¬@Ćbņ·,Ļ1ūq+īµQŪ²ż…žUć=m-ķź "ÆÄ+šĢžĻ³xŽėłŻ›Ąfw¹]f—×eu9]Ę*_ȄTę»ĒC’ŖæėßÕĘnAĘkVÕ'ŽC%T°€ŃÄéł©<Ņ—¦o ę™=wØlZ1ć7˜«BšLūƒńw?\ųPK i5P**"–7 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/uz_Arab.phpUT÷Hƒ^„“ĶNŪ@Ēļ~й"ć\Ś(„U $Ā”pAY{Wų«»k¢ÜZ ’ņ EįŅKžcn}’Ž?Ū„ź„{Ł’föēYyēcģŚÖnµ4hĮ™ĒøĢ§€{Lø„ČéQŲ#¼…(Ł×䊚˜›„oŲ›š™3Ā ]&%ģt³šSˆa$M; vĖŌ/Ϲ‰ļƒÅ}Ī®< $tĄg6 ^ŗˆdQh@ģS‚Ś £½¼īųhļąäō k•óIHč’³n"©=&=t]D ·)^ää°mS™šē¤oqūĦøŪ ģ†npś-aœ‚eķ}µ,So»ÄÄÉč\h€KļQz퐾ŠįĆ.\č/ćåƒzNź>b’®žŅQ#ž§Ć_ßĒui9H‡j¢fu-]ąyŚ(œ¦wźgy^é—FĀ^ÄåÅ,Šmn—™E’BœŪ³łŗUĄĀ’jD”ōVcAśbö2Ī‹~Ø{5«ÅwŁ÷/y‹IŗČōō¶pŠ ¬„ƒõéVMJ}²|RsõXŽv”±ö.½ŒG«8#عXWFMāĘ īŠ¹¢­X’ÅY1V„[EU­i\ʅ“š)¬Čµ²WɑŽÕž‰†NłĘ€·ė²ü_)ēžK¹||–+śįįvčFŻ8­9ŪB4ĢĀ:ǵÕél9NƬ¹Šét`æéža£Æo’[š®F2~Żåę{ķ7PK i5P$’E°9ö7 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/uz_Cyrl.phpUT÷Hƒ^uANĆ0E÷9ÅģÜVQ²‡RMQ+5]„ŖČu&Eb‡‰Ó*… Nđ˜¤A*HĢf䒟g¾=½®ņŹóĀÉă <ęŗ†LÜ+Il.G˜KŚYƒz‘{ ˜ķš‘Ć-ii`ƒõN;Ó]w¼1|“.P¶œ č„~PÖ([µ¤÷¹iR(“BSóJ“Y*„ÓÖųP(Y;h<ö÷Ö«łbó°čFõł\.e ©®é]ć0…£v9;œ½¶ )äEi6ō]C$‘lĀŖ ¹«†j}Ąįk£ !I¢Õ}’"lŽžįó\ā”­p5¤^^÷‚ˆ¢0ŽĆ¶ž™õćAĒ>ēśŻÓ÷Ėl9Œpӌ)HYAæK"5ˆtFį‚ČHp Å9YŠcäśAü>JF8ÜQ1­į42Ķ›BĒ¢<óŌOBZ”“* ˆÅ²–l‘i <‚Å”+“䩐%ŃLš#X”`lÅčŚö»¹ŗø¼›\)›ŸĪˆ†5Q0„%‹*MX3!‚¹+Qɘ¢Qb“™š¾ē•Ī„T'¦ž¾•ĮDHšŗö7¢Ŗ"¢¹k]µP?qŌפEĀøXĮóĮWo^X]Iu%9Ģ€eXS"‡šī †'±Øø†šĆ#‡‘Ē€žyż7bŅ ›]bŻWhĀ„ą:ėA¢ŚŌ‹‹z³Ć+ūż›ššŅ¼‡d$Õ$ˆÜk[|³¼īė4į„ōG•W<Č· WGp³ĖKśM8ƕī!J“ģÅ ¼ŁCĶž)ĒŻÕƒņ‹żźLP—ā}e³·Ņūr  h,x²• guĒŖKA+oö’Õ¶Šq+³Ó¬¤@V+ŅnæTŠņ‘ 搘8GcqʒJŖ©ģØ$x ä“fķ‚EĻ3ķśŲSŌ®'KS< UŚ pMćŒōZ”BŹ&›K©É¢%øėĀŅ@¾™:ņēĻ'e鹘t„z ƒĘćŃķķčKlPøÅ»š.»öūhG`é‘ē~x1)(Oü•ŃŸ"%736ūX-*n÷ėn¦0KȼkŹéoČnžž$~oϹMj†§=-]Ց¶K÷<9ČĻī õ‚š9ü‘še”üVŗŁš&{ółM€Ū•Æpʎ`ų‰®¤ŁŌ0¼ÅwĢ|Ļ—’ś@m>Wµ¹\ģ׆ĻW‹JYę„rM"+sŸ7µ;Qūژę¦ÖOąQįĆ¢C>Ÿ€÷ŽŻ[{[ļé [7sćy ĪUFxD,Æ õ õ óęµ­ÆŲ»m|©JGw‘m—­QåKćŠØ{]ÆŲīŹ57ŸsZNÉė8§āEZ”I„Ķ[ń(Ņš"½Œ‰;’AM«}pV¼?ŖćVĀBRÉFKϘŽĘōŚąó·ƒPK i5P“Q_L #5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/uz_UZ.phpUT÷Hƒ^RĮnŪ0 ½ē+xs¤ vŻŗ.mÓŁ’®Xv †Ā m:lK%9sæ~’¬6hw›/$ŸČ÷%_~éŖn2YL§˜ĀĻJh(ECąb‡l@•`*‚[äLIå5hīz}ūY~7,PĀéL—™/—Ņ•ŹĢsÕ^ÅÖ{ŁؓM¹ź‡ŹŹ‘“ŌNR–Š[4BÉt ”ĆzAĒ0·Yߎ=ģī briannesbitt-Carbon-f10e22c/src/Carbon/Lang/uz_UZ@cyrillic.phpUT÷Hƒ^­‘=o1Ē÷|Šg»6J±B)¶HM…(K…Ŗ“ļāĖY¹;Ū—¦“]˜€!^„„iPR_Į÷xģqnńóņž’ϾĶ[½øW©4ŖÕ TįaĢ$D,”€g<SŲ&"ą–Ā.éŠ:j|-\‡;‚‘ Ø ˜R°˜“™aŹU=äéV)½Ė…]åI!ļ ėÄ Hֆ„…4“h™E\¤D1žÕ —P‚µ>£;·æ·½{pøkVY>"”ͤ,Čmƀ©;Č.y.BŠFm Ū074³·ss!ƛxZDʂp/ļÅū«y ī“ įpHQOH‡@7+šyĘ6ASšÕŪi®™āméRÉ#{wk,ØŹED2ōķ%$¤x†¹¬O×}œ3AĮ÷wöų~ŻkäOėųK¼<Ŗ~ŽüQ¤7·Ź’-ļŪ‚·³ÓhµGG^ͶŽē‡—ņLÅåŒ§æź™žčq1Ā­žž¤/ō¤é±¾“ł[Ó)NmüR’ĀĪ…ėčļ6zS<׳EtYj'ś[qVœ”³qnVœ/ōyéō^O—ņwśē•ģź§č`ņen_āORKōŽÜ1;ā„uœŽĻ‘9ŖĻ€Ņn› Ƽä“x†>3}®Ēs=¾Ąr÷ÆT>ćöŃJ탔]©½.Īō2ž²č¬²¬¾9GąœŸsqļOYö’·GLHåć~ŸG¾±²׏nYŸ‹L×dCJÄÕńśŹoPK i5P©ö‡^3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/vai.phpUT÷Hƒ^ÅSMKA½ļÆØŪØ,;äjŒ Q‚ė!z "CļLÆÓ8;½éīuŁ›˜$2=+†Їņ˜@H ł?õ+RŪ½«nb@sHśŅ]õ^Õ{Õ=3s·¶+•pjŖS°š M‘q ½Ķ”Ł“r˜cŖ!sJślƒ×ˆ; Oēp_ –Ć2× a Ģ4὜Bij±lĶ©¤rš,ƒX¶{Jl¤Xž@&bžk’Ģ›Rµ˜2ÆB;ćŒr[‚w]ŻŅāÜĀņŹĀ •ógRf Ė4$B%Ćč “B޵쨘“Pā̆ÅMGåĄ”b½HńvĘbN{ÜQZlń Åw„āE󋣨„<ÆŃĶUX«­ ĖłfĀz:€;³° =Dū‹Ļ݆ż#Üßq=pąv\°7 Š“OŃ_Ž·Ń~pqń ‹wXœėÕqŃH§R™’#Żł?nÉܤē×\¾ĮŅŚ·h?‡X *Ń>óĶöŠałš8>žŽåWw*G¹ņ%ŚS:Åżē£9,Nü ư–Ó|žōĖ'Žß!”-Šž _(ż]ßdĢZ—¤‡ÖĘGZB ×Ā•ä=œ–!ż 95~V™īlOżdllŌ JAeśµ„…ō€ŗE•ŠŽ%ucl‡žŒžBÆrmIbŸ»ŗ<æø¾¹­¢?/ŃĆ Ō伄rš¢†yÉ{wf°•`”:šĶ+ü`5 µø.¬čV‚Ļj°Ž–āȊoYE1æü\³4zʓI§p—Æt%D[挄šī īR…kb8õćĆų Ć3Tč1D”»€:rūč+u1r4nČSz?=ģ^8i¬aŽōĖ(tF{ł4”ahŃ@+ŗßyÜšećøB²·ć6ü=ÄĀ˜p¼Ū›°µćV×"Ŗ ŹHA9­Š}‹ŽĄø1ŹØ]Ÿ½glķŠĻįL’櫆¬óßDaš"\J“öź’Ą~ˆ±ĖW·±’Ź“®žsäętāÜoč›Ļ³<Ͼš:QČóžDŸĆ;ž¢’Ä«yMįŸl~’ūć·ÉOPK i5Pk°˜lĢ 8 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/vai_Vaii.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm£Bķ0bŅ$“ą½rSw±Č’ĢqVń÷¤O֝Ļw'ļ^’KĘtMc oĒ&öu&…8:‚=ŹC„ģ^Ø­ŚE¾µš&ŒĪ”V…ݰĄ×PaŌÖĘėóæō=Źj4ļĮĘō+|q Fšl)ä¦(WTŽį’'¬Üi^ļ>NūćłėøX­żŌ”ŒFĪ*<„fVW7µ{ŽE,Õ q-Ū!-@čVXśžpśģūvÓŻ‘Ūś‚Ķ“łPK i5P–ešņN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ve.phpUT÷Hƒ^-¹nĆ0 †w?·“Aa?@ƒ^i (2ōXŗ²L[DI„ØyūŅN'Ō|Ņę1¹TUĶz]Į¾eČ#č™ ÄÄ!l w1čŹ͈µjgł½…&ą€¹#ŲtóųtŒRŪxzų—¾E^‚†ā=ؘ.L£0”OCÖŹ0D>”ī y4ŗ;N‹ļ}æŻ>wsŌĀ'ĪL&COY˜ŗ"ŲĆDāōFŁs,lQ‹ś¶™_8{æĆ1Ä)@ƒ)^€q\źJĘ+qV*ŸœéPČļ/×F)Ōš[ˆŚöu’ѶõŖ9cūó\ė/®ī«?PK i5PšM¹‹˜Õ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ve_ZA.phpUT÷Hƒ^„TŪNŪ0¾ļSüwŖkµ[Ęƒ‚„Ö¢i­&mŠž$NlįŲĀ+ģeŲŻö2¼Éž8i”¦VĖż¾ƒO9|·ą‹^oŌļ÷ s.,äB2 qĘĪĮq§h­(•^cĮ†ŌŪ“ļ„ūpb*ød6ĪĮaŅ„ĒŠB톩.ŗÖsmQī„„T/j# īUR¤LY’T¹6%:”Õ’!喂U7¹8=»œ5TĮŸćč B ™°ĪˆÄ;–A%§ y·Ś›”‘PĢŽš6Ų÷ŽqmģA3_ż ĀLē®BĆČ¢WY‡½¹Ae%:6Ō¦Žą>Œ+¬ƒ$õ²»æŚ‚”aĪh Ö±a ‰)£1õƊ%Ū3ģ»$Ēć‹Oq<ŒFL é¢|ė}Q» 6‚·G]*¤'!Ē£étō…¾hŠWķ•Z9Ž”¢œ¶Vg4ńÜsŃĢīļn9ęXz^±PĮ2ĮCmĘińž¼ µs/+±š Ā5^]Ēī“„/Yvśę–‹up’ė7š€¹¬mź’{+®}“i5¶tīĮpē6ØbŁ9ģĢ…Øu4©ZęĀw6:łµp§»V«»Ī°^mͬŅd©•›zėĖÄK_霼.¹āQlŠųGįżŻÜ¢ņ-[!–œI|"½±ŌY+FŚĶš¹=œO­ļ5÷Ż-ŖŽó)[)Ō’rO¬ó8Ęŗø!n¢š²!~=č…¶ŃęZƒW†I‰dm¶æęhļäAJoĒ­½hī”$³6@Q¶C/Ę[s·N~£æ¢vćy¾K3Ę;Šw7\(ś%ķ"²:Ó­=ķ$т,Kéīo@¦žE »m#Ę[?\äēN·«¾\ĀųŸPśū^ķæéżPK i5PˆyO› 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/vi.phpUT÷Hƒ^•VQoŪ6~÷Æø7wēŌiŚ“Y×ĶMR$m H€a0Œ€–(‹ˆDŗ$UĻčöŌ_1 Śķ!†}Ų“żØ”’Ć’dG‘’(;Ī0ĮĄy߯ww¢Ž~śĶ$ž“ZŪ[[-Ų‚Ė˜)ˆXBå„H "S8 r$8n×dL»ˆ5š{Įš\2ĀᜪÓžŽĢņ[ŽK”»HŸ9č !‹@Q–$ˆÉL²q¬šP®’GB¦D3Į;0I(Į½7ŒN æÓ“ƒ£ó‹#ŖČOĒDƔ(™Ņ’2MC˜2£sW"“E¢°HvŪTh|ū™Ž…TūF’^HĀóųēv£ĻCIį;‘Ģ® gœBæūŖŪļĀå4Į¼ą(ĮTóy’’i^‰"ŲU°HŖ3ÉaŠ|Ś3Jd¾~ķż@d\’ē]ŚīX#¹ŖĶo{?§ĖÅ/šÓ°× nqšm — ®ć†UĒłG>®é ci…3|``†ĆÖQa°žL…ńéĄų ]ĶĮ!ŗŁę­HJĖfŠnr2ƒ$ŸCĄŽx̜žØkhÕՍŲļ«1c2…öĄÜꔄWrĮ7»ŗ)¾;U·ś™råŽįéJ“R*YČØ®ƒöEæŻöĮq»²›iķĪMŪ]čŒÓw<ż§ļzśCOäé{žžŲӟxz﾿š™{;+I^)¼RµKõ2¾_€Qī8łĄÉ]':łČÉ=';łÄJ›JĻć5· ~–e{‚x¹ø/ēi›črńÄę+,#Rėśó§zaļŠr„ņ™ē“œ’>[#m”{p^$gKµ…Ś2m‘¶Ä½õå4žß"&•6—Ü•ˆźŪµWߍf߂ŒÕ¬Ŗ’»•ą_&ĒŽĮń8ĪĮP æjż PK i5PÜ åīĖ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/vi_VN.phpUT÷Hƒ^-PŃNĆ0 |ĻWųm£Bķ0bŅ$“ą½JSw±Č’ĢqVń÷øO֝Ļw'ļ^²ĻĘtMc oO& :³e4x„½å!E„܏½`«ŚE¾ušĘd#œ± $»aÆQa’Ö„ėóæō=ńj4ÕĄ„üĖtń6ŽČa,§ÄW+”ā#ä€V¹;į¼Ž}œöĒó×q±Zū‰·³-0R¦” Ž0“xŻh÷’*;Ō q-ŪF©ńV‰śžpśģūvÓŻ©ÕlžĢPK i5PNąė[2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/vo.phpUT÷Hƒ^µ“ĮnŌ0†ļyй„]„»Ż–RmQ+5=Š^PUYŽd²±6±ƒķl”wćʋu6Ž, ŌÜšå—ē›ßćĖgŸŖ¼ ‚ŁdĄra iŵ•Ķ.ø^*I”dĶW8„ÜmśAr_“ąīŠ,…µp¶Ün?KŚ*;MTy¾KżŖtwPV$ŖjµXåøL” JC%e¦tÉ­P2‚Ŗ@N±Ą¦óŻŽ\\ŻŻ_mźīgsn”įRa¬ĖŚb °9ŗ»QµN „ŻegF[k \kŽ2UĮ$MjmÄ4žØ…F`ģņęcÓp†rJ“ #x €VX*isĀĒsx ćć9’'Ɯ¼vņĘÉ©“·NŽ9yßÉüŲ‰;e~>EĆ*ĢäJŪ’]+ŚX–ŅJÓPˆć.ĒōLž®žRZ)­Q2õīŚk‘kgX$Ŗ–Z,v9aėœylƒĒѲŽ{KąĢēs|’2=܈Uļm|€3ĶazōK÷˜śg/»ĶéĆįÆŸUoͽ„3Ÿq75!égg³ ķ§*¤Ņdżv—b0QrܲĮu-ū#ŒqöóÓį‡ąPK i5P„HžĻķB3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/vun.phpUT÷Hƒ^„RĮnŪ0 ½ū+xs vķŗn]Ó¢ź XzŠĀm:ÖbIžD%šß‘å,A°ÓtłŽ3õąŪĻ]Ó%É|2I`ƍtPˁļNXS5ĀF3TnÅg¬=ČÆŹkųj„аBWH"ø-ķĶ­”YiŌ]”>Õ¾m”4]oå¦!ŗ‚V–Ø[źŚX%H=…®EĮŲNā>|÷²|x\­£Ā~Ō‚½pPIGVž°‚½¤†ŽŻoKd£*,;O,’·„µ¢Ļ-v­(‘ļŅ['wxeń·—!ĻĖy>KēØgœL:…·ų¤ ­¬$Ŗ>ŻĮ[źÉo ³é¶—\é^¦ļÓA¹GÜV¢wQłĶ+Ńɖ¬>4$Čū±Ń’ā:Ą÷m#”tAæüńŹøK›Ü5ĘŅhÖ 6DįŅzčtœGP™ĖQJź’¤Œ¦ęųp~°aĢv¬3Q6”øļģK†1=ĘŌöbm¼£P­±#TEćū–ĢP­ĢnčBy¾Ģy•J?¹ ršaŁż2Ķ«ļżxhOŸķµņ©E… œTøĻJ̬¶Üö²*EĆ Ū,/\¼ßžģĆģa ³SšÖŗœč†Ē’ •‹{R6čÜõ ¤Y|1üd‚®{=~t]½ifģöm]~qóXżPK i5PśóĪ”˜5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/wa_BE.phpUT÷Hƒ^„T=oŪ0Żż+ø) \:„iš4NIPÄ]Š" NŅÉ¢-‘.IYõÖæ‘­K‡vč”-[õOśKz¤h%ja/ÕrļŻććAŅŃėe¾ ĘvĄŽē°LČ(.A[¦2fsdg c%©•,`†#ā:ś^²ĻŽh’]£‰…µģ(v剤RŁQ¢Źć@}«“ŹŖ¢`‰Z®µ˜å–LY!”†Ž”™Ņ%X”ä- ź­Ö~īņāģüzz?›ƒe5– cµˆ+‹)«…Ķ !ļFU:A:(õfĒī†nö“²¹ŅęŠåĻŲdNÖ§§g7ēģąbSŠ`?Ć č¦TŸ”äOƍŹüm¼”F[iÉ@kXsĖ¤˜TڈīiüT ŒóÉÅ ē£hŒrDKކģć€Ńµ×4{uZ¾}éŃd2¾ŗ 'zš¶ Q©¤ĶĆT” –’ūUó“t]•įJwEŁ|3ĘēææÜżś +-6¬C–Ī+ł˜hńÉ@­*c0Ą­(ć'°Jlso`ŁÜÆ:œÄ0ńUß67“w»1?G&Ė.8³.’K_‡óÖŻ¼šX­\ '.Šł.øƒ=“ī“q‘ĀśqM%Τ·V(™Špž™@½mN;h“Uó]Ü`IÉßŅż«ˆ2ˆo¤ƒpŠÜ(¹ÅJ!’S*ŚXNb\eÜéz½ē ż–äPW­“g½ZZ׉UI÷e6?Ö^Įh½¾}ųÉ+Š#”Ų<˜@¹¾}öq‘=Ų@Y );{õNų.n…=B:WĶĆF Żß6Łā9ż¤z0Vŗ3–oE€o ė’ž†ż•U¾5ģ;Pą»ZŽĮ„¾¦c*fŌźTĢ.ųNŪż—ƒ?PK i5Pł/kØńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/wae.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ eˆIh>Ī•›ŗµ, ŽCµ·'ķ8Evžæd÷m¬Ŗf»­` _–ŒģŹQĀj Z”>ų²2'œØ.ŚE~cnįY=)õ¬ »~Ÿ|ƒÖ&œž„ÆAÖ 1;&ċšdŠąŲO„ŅAĪØüDGXvæLóź{?“ūćē~‰ZłŌ¢ĀŒ N*Üg„fV[n { Y •¢a…m–.Žoņaö0ЈŁ)Mk]NtÅcI…ŹE‹=)tīr Ņ,¾~2 A×½>ŗ®Ž43R×¾Õå7÷ÕPK i5Pv—!…6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/wae_CH.phpUT÷Hƒ^„RMo1½ēWĢmŪ(BāTJi›4¢ØéDŖU+Æ3›5õŚĖŲŪUśørÄ•_ų_Ų^/iįT±æ™y~ļŁŽć7UQõzć~æ}XĀ@.$‚[+Ft¶@˜0Ź“r-~ĒÖ8r\O?ą‡pN‚)øF“ kį8óå©r„¶#®Ė“Hi By-%p]mH¬ L­@ ŽŹ8K•k*™Z  ’Č\ļ^`ö]]N.®^*ä³³Š0+a,‰¬¶ø‚FŲĀM\v£kāčŒV!ģ؟Šļ=«m”Éy<„& ,‰)#ƒ1,‘•PŹS{8lŽxDmM Ū¤„•dŻŹk2āæŌ‚Ņtzł>MGÉÕČ]o2€O=p_ŅŠ$šś$¶Bū*4’īĪēĆé4„įm»$„V¶ˆ»’wØ’ÓLŽjRbķŃ|÷Š£3÷R8Gń9€sŚm~Eö hZ“ū&Öæ¶Ū.e—»­j‡7» ”,Ҿž$öģ§!Sćī×ī£Ęœ]Č1ĘėĀÅ`]Ŗ˜ØĖ#Dē?~ āŻŠmŗkYŌŹ²ī2:ųQ^tm÷65/<ž‘ī(3-XŁ[<9”3ź\¢ETĀQ4*ž«Uŗ£ü—R.ČŲŌi„:O½l{§±ß’üŌWdX/½GÆÕžvG\»»ƒ9cŹ[ŽĒ Ń ”‚e#’\–>CżöšUļ7PK i5P’L(‹ńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/wal.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ £H“Š0Ī•›ŗµ, ŽCµ·'ķ8Evžæd÷m¬Ŗf»­` 'Ė FvåŒ( aµ{”>ų²2gœØ.ŚE~gīįU=)õ¬ »~_|ƒÖ&\žž„ļAÖ 1;&Ä«šdŠąŲO„ŅA.ØüDGXvæLóźū8ģŪćW»D­|jQaĘ'ī³Ņ3«-7…=…,†JѰĀ6Ė ļ·?ū0{hÄ섦µ.'ŗį±¤Bå¢Åž” :w½i_ ?™… ėŽŸ]Woš]מźņ›ĒźPK i5P¬ŗ]ÉAĖ6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/wal_ET.phpUT÷Hƒ^½RKoÓ@¾ēWĢĶmTq…R M‹*µ=„*kcOāUoXÆ„7T„ģ89 ¤J<Ä«‚–?f’ ³ė8­©rą‚/»óķĢ÷ŲõźŻ~Я՚õz źš8ą1txˆ@kŸI¢*@Ų`²-"‚¼ÖÅõšö%oīKĪ"ŲĆøĶ•‚Õ¶)×#*…jx¢·6kŻŅu’0Oō‡’w,ņ!äF1IF!{Lq­@?DFŲ!ǁŪŁŽŲÜ{“iج?0ƒĻc%y;Qčƀ«€NČ{,é! łÖlÓ$4³÷ß2ūš<‚-)"ÅQ’Ē$ņ­>Š …ÆwBv-D•Č˜”lčJģ‡ĢCZ½DĘü—$>KøDpŻÖöC×m8MŒtĮĪ <­R§ˆ;pgmYxĒN«ÕÜŻm>”ĻY±‡ūÅāōČb0›rōųXNtžYē©Næ¹£'c}ŠéU(źōLgæm1zÆ'':ż¤ÓIqųFēgv7~Ndå.ĶKxōQ‰źBgÅĄ¹!ČĪuśVg§Ä\vHć»Ī'WŃW:ūVm̆9TĶåĘō(źļt•\‹]ʁĖ<°8P%M%DÅ{ÅõÜļńĄgĆłKŠmó‚ń' Ńti4{i Ń“ =µO3ė<Öék:œŸö;[d/tśõšVõv¬",–üg=ø.Ųćѐ#)WtÜ—±r¶©†Č¤Õ¾Yž!(¹Ļ±W2’@Ŗó_#iM įžņķŚPK i5PŠÕ‰–ńN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/wo.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ cH“P Ī•›ŗµ, ŽCµ·'ķ8Evžæd÷m¬Ŗf»­` _–ŒģŹQĀj ö(}šeeĪ8Q]“‹üĪÜĆ«0zh)õ¬ »~_|ƒÖ&\žž„ļAÖ 1;&Ä«šdŠąŲO„ŅA.ØüDGXvæLóźū8īķé°D­|jQaĘ'ī³Ņ3«-7…=…,†JѰĀ6Ė ļ·?ū0{hÄ섦µ.'ŗį±¤Bå¢Åž” :w½i_ ?™… ėŽŽŸ]Woš9t§¶.æøy¬žPK i5PšÅc0"5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/wo_SN.phpUT÷Hƒ^„TĮnŪ0 ½ū+xód)vĶŗ®[Ņ”’b@{¶"m:VbK†DĶĶmßŃ+%+©ģ6]D¾G=>ʐ/?µU›$“Ixؤ…RÖ¼·ĀčØBX“iÅP¾[œq­/“æ…/F wh3I—™OƧšf¹n®béWm‚PéźrŻŒÜVBP˕喪Ԧ$µšB[£`ģ·Ä.œ[}[ÜÜŻßx©ą*AŠ …“ddę č$Ṵw«É‘Įģ…ŸŠŸżģØŅĘĪ}üŽĒEXbęųnōs‚EeX0 hŒD™ĖŲ3^”p¦Ķ6$güL€WŚ;·)|¼ŠP€WIooēM“N‡Äż€™[;"{j¹œ­×³¼Fdd×¼`¹œĀyĮé<ųšóŽ«jŒ ū-m“¢*Ž•Z”:yų•b:å‰ł[³FėwŃY ĄÖuØś Fņsa³Ų’M&ŒĻōž“Ž±ŅŻ+Q ÉŲŠĘņW¤W[ŃPtō6 śˆ.ĘbóŲ7v<õź÷…8Ē/dĘÓb/_“T”‰Z=Xó3‰į“h°æ’ŻĪ5Ü Ń¹3õŃ,Ü#ŹGķØ5£^;—j¤ś/”RK–ŚčrćUƒŚūČF¼/ņ¬ĻČ>¬:é<×Nń§tųńF\÷üǤƒ)Ę.{ž{|¾żˆræ÷±°x"wź+’F¼•¬å±Ąb®U1.ąk™&’PK i5Pū„øóN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/xh.phpUT÷Hƒ^-ÉNĆ0†ļyй*”<[)R%ŌĖ…K4q&ńØ®mĘcBß'ådĶų_>{sm¬Ŗf½®` – ģŹQĀj ¶(]šeeŽ8R]“³üŹ\Ɠ0z8PźX6Ż<>ų2­M8ŻżK_‚,ACvLˆgįŃ* ļĮ±!ŸJ„‚œP9ųˆŽ°ģ~˜¦Å÷ŗßīļ»9jįS‹ &č9©p—•z˜Xm¹)ģ)d1TŠś¶™_8{?żŃ‡ÉCOf§ 4.u9я%*-v¤lйó%@H³ųbųĪ,mū¼kŪzÕüŚöė±.æøŗ­žPK i5P4rĖ(Ŗn5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/xh_ZA.phpUT÷Hƒ^„TKoŪ0 ¾ēWčę¶čģŚm]פC‹6=,¹lCaŠ6c‘„DĪÆ%;ŁŅ!łłB‘ü”lłćēUµ Fq!ęY± ‰‚ć Œz!\…b &ӊKłJ26ĄĻņsqk”xF›‘sācŅÅ©vĆ\××=ō«6Qhᄹ^µ†ŹŹ P…”£²l©ŚŌąH«K±’\Ū6‘÷ō0¾{žŻ©8Ÿ«Ą‰¬(Č:C™wXˆ†\ÅžŻjord£"; ; Ü/ŽUŚŲ«°~'~ų-ˆ™^ø ņˆ^Ń^œĶ (+ĮįP›rø…s1i U(nŻ[QÄģƽ‚E+ƒĪ%ĄhSƒ+ 9r̽±“Į3ƒkOl—¦“‡oi:LF؆ü’Kńs ųIŗc°‰ųtŻ—bł)’Éd4Ž¾ó“\ĘęK’Z+Wõ¬[=]{Uz–Iįė śä±!UȘł¹­`KõŹo)ęcP[ʰCāŒ$Õ({">V°_Ļ+æŚ N-)g©ļšQ™j{^‚*÷ø°<œ7µüB\?5r;7>AįĆł]ėĶ%Š’‹PJa²e*ĢķĢŲ™Ū‘w@ŚĒĀĪĄĪ!ÆébLxgźŅŲ54ščiźRbgįŅ‹‰Šv^“bŻÄøoŽō˜k|ŗ[ć§"“—^nzŠz†å įiZ[”®ĒvīŽHƒŗ„Ŗ&Ć7›ĪzŲ¦ä’åōÜ1R…„HܛxѧµYÉnßYĖīn€×Žxą]€÷>ų ’ŖĮ&N÷9]ŠJ›ˆFÉ4rSö9ūKÖ’ŒĶԼʫĻ.½¦}r²WŅĖ_%.V˜=’*Ø£Ž ÷“Öµä`0Ą&»J6s?›%“ą_¶tńėķO­æPK i5P§‘©ńN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yi.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ ې&”;Wnź6Ö²¤8Uߞ“棳ü’ķėhĒ¢ØĖ²€¾-GčŁäsDQ=Ø%Ų”“Į畹ā@UÖ.ņóļĀčįD±eUŲ¶Ėųęó“2įöņ/ż²õÉ90aœ…«€¾dž|Ģ•¾rCåąŸ`t„y÷Ė4­¾Ļćīp:–Ø•O-*L”ćØĀmRź`bµł&³ĒÄP.źVŲzyįā½ų«“‡ŽzLNAhXėR¤;KĢTn“Ų’²Aēę{€&ńŁš“XšfüjšjSĻÜ\ĪUžÅĶsńPK i5PÓ;iÜ¢5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yi_US.phpUT÷Hƒ^½TĮN1½ē+|[@iV½RJiJH€ŖŅ j‘ålœ¬Åf½õzIóihڤB( Z’žh/pØŌ戧cĒŁģR±pj±gęĶ›7³¶WžE~T*¹KK%“„Žų,FuPkD„D¼Ž¤OŃ:U‚Ė;$ Z¬†/x‹č…`$D»4®2)ŃJU›k!˜\V<Ž\µŠ—\¢zČćQ[°†/ k(` c(Ö¹hÉxXFQ@ ųŽm™¼ķ­õĶŻ½MMeōIŸHŌ"1Ŗ±X VM$­”“>D@{ĢįQ(T3b]Ż”Ī}žHŸ‹xYļ!_ŹhŁu[­V%i³ØĀEĆEÆH5ąh"?žĮ^k‚RAiĢė¦/C*ØLDˆˆ¤āQX½DÄģˆ.ś>a‚"Œ7¶^c\q\V`ÜN½-!ų9ӆc=]µ.ćŽ6gcĆŻŁq÷÷² L§ÉCéŪG Tgr­†ŖgÖp;źbņG«j”óž‚o¤¾™½ö^L~ƒ=P'6:P³@Ö0³?±ūģŖ ’gŖoVćG³0Jp!Ć|“yDĻÜdsP,äž8ĮÅ$éDó¾tg,µĀ(ĮłSˆļp1†ćżiĘąÄ¾;ŁNš…šģē§ęžõō NA÷ ¾hŠ‹©ĒĆ[ŃOĒ„¹üš@Ģć`~ŻĮā“Ņ_PK i5PŻ''“l% 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yo.phpUT÷Hƒ^}UKnŪ0Żū³s¤ tå~&$ķ"Š"5 J¢,ĘiT]£) ļŪCdÕ+ō³ĢV—ČM:üˆ–#¹d‹œ7ogČįóW‹l1ģķ `.2¦ e9ü_©A¤ 3 oˆŒĒ©xNfō1b üAü%#ŽQ1­įyd†Æ9…~‹ā„‡¾Ņ„ežC,+Éf™ĀČYL¹Ā<² 𠾋œœūĢčŅśž¼9~w~lج> K¢ aJK•š&°d:C jW¢”1Å@‰{`Vh|DŽ΄T#óżŽJĀo Äŗ‰±9™EĘSbE­«¤ŗ”.€ĻpE‰Ā‹—0¼ūū#)ė5‡Q,J®‡ū@¦Č×'ßjNųõ—Bp9”Źŗź0¶Hé0†Æ½¤tŖ»?æ;l„ÓgA^^CBVļ ßzŻa GčQž²×'Ć9—%©×s¬z‡tAր2¤;\ Ęq8VWf)WeŚ6©ŪPþŪUŃXšÄ dEzČۘ{äŽ#aōŗßy&œßH³‚ĀÜäQ9•¢˜r±tΌæ†:±4ާ4•”ćŗād  E!¤lXīž~Æ«< ÜTÖęö»>½pčlT0ö`o9ߘFJݳ:ŪŃŃĮŁŁĮG|¶ŒĪš®¹k‡—ą³;ŃæÄ˜ä”'ž€¶ÖØHAš“]¾Ē¼a逳 ąź[9ż¢78Ÿæøį q`Šf3 ÆŲ> #,ń.»Ž9Q­(¶Š=1 ź’1r{özC˜ēŹŸƒÓ{i2aœäƒĻĖ"¢r«qłķ2<7a×Ņž÷ax\W’bvš5Ć»?æ¬ —ā&Nź [mĄF,bęS?Ē®–”f0ž”K!üüĢōNū½¤KjIMž±TŅ“"a^:Rk\ؘhœliž*¼ō¶ņFtŽČåAfŠŲRōµŌyq[Ņ‚¬ŻšLGĘ3ŪdėĶl Ė7¾ņI:q½¤^ĻJī¹\YäfĮnĀģ+æͼRTĶ¤°štBo%Ä čŽD’ĶGŌŖļVĒߐ{ŗ†6°6”/eRisēLEŗ¹Ģžl®+3ļ@ĘjFįJ~Śģ*6āĀė¹­no¤I]Фnoø 9y6ųPK i5P×-^7?M5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yo_BJ.phpUT÷Hƒ^µSAOŪ0½ēW|·@UµŚ•16 L QV.B‘“8‰ibg¶CŌ[¹ 8 ‰z‰?0®–*Uźš“4‹CµI;̇D~ļ}ß÷žlL£Ō²śŽ8‹ˆ€€Äō;E\ @FöwՐ7F!īim!ßš6aDį —H Ūn±żDõ–ÉžĒ’•ō3će£ ‹cšX:į$Œ$ źCLB h+÷K8Æw§żńüu\¬Ö~ź­Āl3Œ”Uh(Š#̤¾nj÷ĢEÖ q-ŪA-AšVHśžpśģūvÓŻ¹­Ų<™?PK i5PōlIQņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yue.phpUT÷Hƒ^-ĶNĆ0 Ēļ} ßj€ Ūh>ĪUšŗµ,)ŽCÕ·Ēķ8Evžædū8ŗ±(ź², „/G zņzކbāv†ŪteĻfĄJµ‹üĘŽĀ3“ pĀŌ’lŪe| :F©l¼<üK_"ÆA}ölg¦Į ˜Š'‹!ieč#_ŒP w0z4ŗū%œVßūqw8}–Ø•Oœ˜L‚Ž’0µY°ƒ‰Ä鍲§˜Ł¢u+l½¼pń~‡sˆS€{“½ć°Öå„W<ā¤T~t¦E!k¼ŸÆŒ’9Øį'#4ĶžųŃ4Õ¦ž36Æo•~ćę¾ųPK i5Pw¦}©ė6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yue_HK.phpUT÷Hƒ^½QMoŌ0½ļƘ[ŚÕn¶ĖGł*„ŠmEEŪpA؊œd’XMģ0vŗZN\*•ÆH­ŌGn æ§»æŪńŠ­ą†„/Ļ3óę½{ķA]ŌĪ Ūķ@ž\AĘKƒ5# 2] l2Š„0©äå®„/%Ėšˆ8°*ęZĆZlĆ aB©ĆDVėžŗ-É eMYB"ė ń¼ŠĄD %OP(c)2IÓ\ŠŌ%2“;ā8v}»;›[ū϶¬”›OLƘ)H¹ŅÄćFc c® S1³+ŁP‚Ę(uĆ솶÷a£ Iꮽ÷!nņ~^ņ8é—2a%Ŗ\4”¤Üµź†0"6‰ė’%h0iHń#\"|ÕpBˆ¢ŃĪÓ( ƒĮė"zü$4ļōąeĢ ŚT÷×}Ź„w]"xaĪōĒ÷½½ŁŁÉh4ūüRs‚ž#“TRčĀ+CĆ4źĮ5×=ŽšxÓćŖĒ[o{¼ćqø2æĢ‡NņŖi¤Ģcé’l=FߒlÕFdäXĆł"ń”cå¹¼x7żxŅŗæ·7ću°|Æó PK i5PŃā·Ļ8 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yue_Hans.phpUT÷Hƒ^-PŃNĆ0 |ļWųm£Bķ0blbŚš„©»XdIp*ųz܊'ėĪ结wŁē¦éŪ¶><˜( čĢ–Ņāö–‡•rŸö‚jłÖŻĄ“pĘ2ģ†>F…I:—®÷’ŅcāÕhŖ!€Kł‡éāl!ĆX42N‰ÆV(Å[Č­r߄óz÷zŚĪļ‡Åjķ'Ž Ģ¶ĄHE˜†*8ĀLāu£ŻKŖģPƒĘµlß0JåŒ_•Į˜ēӛ1ݦ’õęÅĘŅé6wĶPK i5PŲ'½Ļ8 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yue_Hant.phpUT÷Hƒ^-PŃNĆ0 |ļWųm£Bķ0blbŚš„©»XdIp*ųz܊'ėĪ结wŁē¦éŪ¶><˜( čĢ–Ņāö–‡•rŸö‚jłÖŻĄ“pĘ2ģ†>F…I:—®÷’ŅcāÕhŖ!€Kł‡éāl!ĆX42N‰ÆV(Å[Č­r߄óz÷zŚĪļ‡Åjķ'Ž Ģ¶ĄHE˜†*8ĀLāu£ŻKŖģPƒĘµlß0JåŒ_•Į˜ēӛ1ݦ’õęÅFéō ›»ęPK i5PŲädēņO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yuw.phpUT÷Hƒ^-ŪNĆ0 †ļū¾TØ}&@lMBāp]„©ŪXĖ’ā8T}{܎«ČĪų’ķćčĘ¢ØĖ²€¾%čÉ#č9ˆ=ˆCŲncŠ•=›+Õ.ņ{ ĻL&Ą SK"°m—ń)脲ńņš/}‰¼õŁ{°qœ™'`Bž,†¤•”|1B1ÜĮčŃčī—pZ}oĒŻįōyX¢V>qF`2 :JĀŌfĮ&§7Źžbf‹ZŌ­°õņĀÅūĪ!N:ģMöŒĆZ—^ńˆ“RłŃ™…¬ń~¾0J꠆ŸLŒŠ4ūćGÓT›zĪSóžZé7nī‹?PK i5PĖ>”ģŚ6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yuw_PG.phpUT÷Hƒ^„RĮn›@½ós#±\[½¶iš6NUKIM/Q”˜xŁ„³‹ż0’€¬Ė‰¬ōV.3ļķĢ{o‹ĻMÕDŃz±ˆ`?+¶P°"šµAq` pĮ5Jj“§²–“ņ³ĆųYv_…QĆ=Ł”ƒ‹t€WŚCćV™©/§ŃoF‚PŃ*™izį²r€:Åiė-ua¤FĒF/”Q„žŪ3uaļv{}s’p3H…|®BZČŁ:į“u”CĒ®ņ'>»5­däņv=ÜpŲżŅŗŹˆż0ōļ`ūź…˜“ļ÷¶!ܑXųŽZc({“=čV—FƔÉPńŸ°wUÖČjøi°r­h@ģ”FaF¾f­X/|&ō»e!H’ĶöG’¬ā5é•’ń~EąŸx dcųt9Q¾ D¼Ł¬ļī֏ń2=%®vÕ“?“nQŲKĘ„s[£ 5Ā*` ōs«Ē¢0ąć”lĆ „ĘQāHīœ[}žBʐ3Nń`ÄQ ʘ§Ā"“32¢b%¶#3”¾F<%”uåļūąń£ŸO{§=p‚32ŠŽ">¢8kń“'Ņ6ųī!hw#2*8ØŹYU¾«ÖŸä[žQ­WbųʧŽQWķ{š ö·dwg™üGjrRš4ąZ*’õ ųÜłÓUy¹ĶÉį‘ń֛Ŗ|}'ŖÜ³7FčE [¤łV9¼Ńk½¶| {]•‹G9ž²ŗCƒaų=—;āĶźŅā(·ĪĶĀ’’8l$cHÅŹ l E0—²•Æ\ĖŌ7N=[2·ŗwå va›bż7Uė¦ß˜ł£/Üe ¤ß•TPīVh E¤拮•äŁ](eqw—„ZÖ„Üįńe.¶ÆÜš‚˜Ź| t9Ī‘1&”äż‚Œ‚MŽL‹Éy½ŚuēĪ h€Äa€|ŌFA¬Œ'‰i„J¾¬[9õpÄDŌķšqV®Īŗ*?xœä„R—]~ŁĻź]yH-µįV¤£6€õ_{£ØZ„±4r}k÷÷ źQLā>EшRTDØń„TŌŚK#pąśfN“Ģ@×Īś`ĘÅ5@l6v5ČĻ©†>±‹*§>JķZØ>\Õōń©Ę?}ŚĶó[ž;–.cžQ›ŽŽ:''_Åćœˆ4ĶM;h†·°X<`ö¼Ī.‚™Čæ>ŽōĢёéˆ3Ūt²ć;ŗaÅĻOē@”Į ^ ßxĆĖ|Ī}æŲƒL)>ŪĖ kņśK`»tk²ÆŌ¹¦.jįŹŚį,+ŠĖXŻĒAŻrŃ;1Fśš?k›Ī½­w¹ÖšÕ‹Ū»č,Ś–E^B˜å˜: ŻØ-EvķŸUye¦®4­>—ÆŖņ½Oj®ę.¤¾‰č)}'¹lN½1?>źŁßÕąŚfq­Ę }«P6Ž\‚¤YÉŌšK_ī„o”ķuhó ŅgāŖĖòxÕšźąĮKßKÜKŁĖŌKÓĖĖĖČKĮj–1±yn?ćĢÜY“ˆwšĆŽ,/ŻŁ™{~łX)įŹĒŹ©åN÷·{ ræ© ”ą Ģö¢ķØõČI¶Wēo¶×Y9ÆAŅ*GöæƒŹÄ?lµhF¼ņd2Äł·­æPK i5Pp‹R}„2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh.phpUT÷Hƒ^mQ½NĆ0Žó·„­J#Ń­üCA­Ōv H!9‰Mģp¶)ed@¼ +oĄĀƁ“0“Ø·ų¾Ÿū±½{PˆĀó‚V˃\Ō0̃; FŌ ŒąpĀ(RŅQńœ„¼ć¼„½7ᘐI˜p”1°•šP:ØL'VłžŸõLQÕhf³ bU, Sa€É2Œ¹Ōn¤œ)Ź™A%ŪPdœ9īł¢Ŗ ON'ÓÓ²UµŸĢĄ‚iHPĀČžĄpŠŪ]+K1wƒ’jŁ ¼aY{dP¤{e¾–°Īō2¶ĢØDjŽ ēJ޲šY”i.1ːåpÅd E–lw»ĶjqcI#bĖ0ē”ņń;‹Ä! ūĆó0ģųĮ£LźŽūæ ×øšė'Š>ģķ’Q=ŗØ0čå¹ß^¦+JOė5±–®\ćqŠļƉ+ź×ēĒųūķ„’żś¾nŁģ#?OŸyžõņüĻæ¹ q±”č¦ķŻ4w¼_PK i5PDɳ¤½5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_CN.phpUT÷Hƒ^mQ½nŪ0Žõ·)1 čč¦im+ķĘź,i“t ‹¤z¤j8c†"oŠ„kŃ9@—Ģķ«$}ž$°ŪÜ źū¹?ņųu)Ė ˆ::p)•ƒ„*ų,y°Kša$ha SéJäŲcom?HaHJø@·PŽĆń¢†o Cė{©Õ'[뙄¦Š²* Hm¹!•KĀdP؍ć–fiI ƬéBY `ī“Āu“w>^ĢOėRĶ|^ kį SĪ“ZT3X+/YįŁ­(En”5ĆFõ†uī ņŅ’ė×’G ­Yį&µ¦…g$ĢĻļ–Ó‡-1Ž—~+üĶѐģzk›#I^yPŠMöė~KĪo?µŅøæÕ¦1Lœą s-~Ę֟¼…#IÜhŒŗl±ćš+tłźE3/”ÆČ€ ›D#åx@ų±R„$ńä]’ōĀčFöųõĀ.|€#lļĻ…šźdK5ōłeƄćq_ė°»+Ģw”¾s{b+]qD³YĒ{āŽśųšcöōõ.~śņmßņ¼g ß>hżx÷ł÷óöŒćæ”ėnp}ų2ųPK i5Pz±ēļŅ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_HK.phpUT÷Hƒ^-PŃNĆ0 |ĻWųmP”ö˜1†6ö¼Gnź.]‡ ¾ž“āÉŗółīäķ}ņɘ®i 4šį9ĆČA E!Ž ž`‡ŅĒP)÷‰gj«v‘_¹kxĘ'Ź=«Ā¶_ąCØ0jėāåī_śe5Ė4‹éGųģ0 0±£kd£\P9†Ha徙ęõīõøŪŸŽ÷‹ÕŚO=*̘aą¬Ā}Q`fõuS»ēXÄQ Ö²1BZ$€ŠWa!°öéųfm»é~½=`P{xiė+6·ęPK i5PJ×d`Ā 7 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_Hans.phpUT÷Hƒ^V_OG÷§Ų$åŸIš&I0)4&/DŠ*dYė»=nÅŻ®µ»ĘuS¤VUH¶¤”¢­BZ!„RU‘ō±ż(ŲQæEgļöĪwę0¾—Ż™łĶoföĻÜĪ|Xwė¹Üäčh¢.•Č”A0Ö±Pˆ;H¹ĶaQć TÖ^%€ÕšakĶ ŠŗOd*…fjZüˆČÕ„ÅżŪz—‹€Čix²x½%čŖ«f6ņØE˜„ĢįĀNJr6†źĮ [§¤ų•ēęļ/ĻkŖ ?åb…šX"›J%h­”ˆšT¹`Ü%o‹@ ;HvRWØ}ļ4”Ė…,źł8ņ9[#-‹³P¼+0ūē%÷ŁPń –Pō=¬>Ÿ¼i`÷8“ 3E™ž’õP;ē p,c?—‰pa]īŌqĖž÷ćł1-T憼„%†•I‚ā×CY‚’‘«kÓ”\Œ`¤ĮVѰŁ:õG‚āQ ĮŠJĮ—o,ņčÖm”/Z¼ĮT‘×õšbo\Āž‘ö›?óc9 –I¹} g§æu7cōĄČ&!kż2ųį8F³qߊ~yƒ¹pŠś!_ף’+Œō)ƒćھłĶĻŽš±’ĄiīWŻ»—Ļ",®&я ķ'?ƒł‹Jal‘9+—¹Ė£¬rTŌ'ķ­ČąīWo&­ßļĘnŽ""ŪT#Š'H6©M§Kśn÷uūš8ek ÄńAé'…F(īs!"ŠĪĮn6ذņš¶źņƒ¼°Pō}ƒ5†å„„(eŹš>…orii²TJVøŠKpmJż_Ӑl :ŸĘEP¾¼b µ°G˜mśH¢R‰}RŠoåģļ§°8(?Œ‘ĻT®_äa|łWĪNæ­čLŅ ĖĻńy Iń<ĶąŃ)Ļ{Ņ˜rO”\ŲŽm`tĢҧ ±†_#b Չ ÜAbB ĖĢy“ž,żŪ‚SĢŠ–²µ„^½žLO7™LäõęßĢš^Äzn–o33Ÿ‡0ꦛf“‰ƒžŗĢµė“Ģ6¢&‹iSā÷n„nĮ° aĖL®õ¾łč šƒ,LM”÷"`7 u€$€Ī kSS½»e’Ė·Ÿlwž'KŚČdøq1Cg’œæK …+R€{górŠé~'Q\æøø½¹^LēłŻbć-ŌĻӁåĖąO|o·£Łé–™µ_¼ˆ­{‘īńIŒū:ÖżéŽüév¾źĪŗa“FŖ¤ņ©Jxš)“UĮ€§ĶxŌWĶų¾ƙń3^7ć 3¦¢IÄX˜N†Ö/ųĒD‹Ń98źķOo·“–­® •„ķ%,OĪ…KÕ WŌD„™ §ga¬@·ef&J`Ż‹tYüŃSd%oØ Æ!Cŗˆ+AäP!UØŖÜ©ĘĻæB÷ł¦õ!H[µæfÆ”ž°—C+ÆÜĢżPK i5PŃā·Ļ: briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_Hans_HK.phpUT÷Hƒ^-PŃNĆ0 |ļWųm£Bķ0blbŚš„©»XdIp*ųz܊'ėĪ结wŁē¦éŪ¶><˜( čĢ–Ņāö–‡•rŸö‚jłÖŻĄ“pĘ2ģ†>F…I:—®÷’ŅcāÕhŖ!€Kł‡éāl!ĆX42N‰ÆV(Å[Č­r߄óz÷zŚĪļ‡Åjķ'Ž Ģ¶ĄHE˜†*8ĀLāu£ŻKŖģPƒĘµlß0JåŒ_•Į˜ēӛ1ݦ’õęÅĘŅé6wĶPK i5PŃā·Ļ: briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_Hans_MO.phpUT÷Hƒ^-PŃNĆ0 |ļWųm£Bķ0blbŚš„©»XdIp*ųz܊'ėĪ结wŁē¦éŪ¶><˜( čĢ–Ņāö–‡•rŸö‚jłÖŻĄ“pĘ2ģ†>F…I:—®÷’ŅcāÕhŖ!€Kł‡éāl!ĆX42N‰ÆV(Å[Č­r߄óz÷zŚĪļ‡Åjķ'Ž Ģ¶ĄHE˜†*8ĀLāu£ŻKŖģPƒĘµlß0JåŒ_•Į˜ēӛ1ݦ’õęÅĘŅé6wĶPK i5PŃā·Ļ: briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_Hans_SG.phpUT÷Hƒ^-PŃNĆ0 |ļWųm£Bķ0blbŚš„©»XdIp*ųz܊'ėĪ结wŁē¦éŪ¶><˜( čĢ–Ņāö–‡•rŸö‚jłÖŻĄ“pĘ2ģ†>F…I:—®÷’ŅcāÕhŖ!€Kł‡éāl!ĆX42N‰ÆV(Å[Č­r߄óz÷zŚĪļ‡Åjķ'Ž Ģ¶ĄHE˜†*8ĀLāu£ŻKŖģPƒĘµlß0JåŒ_•Į˜ēӛ1ݦ’õęÅĘŅé6wĶPK i5Pģ$$gĢ 7 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_Hant.phpUT÷Hƒ^–ĻoŪ6Ēļž+xą$Ķ;ķŗÖM»%qŗdMzIb0 ƒ–(‹ˆD$]Ļėdŗ%m²nC€&k†^64Å`vh: —ķO©]ōæŲ£Dɲ£8օä{~E=qö“ŗ[Ļd¦ĒĒ3hŻs©Dõ‚¶Ž…BÜAŹ%h‹*g`²ÖqL«ńQk Ķ ŠŗKd•*…f«zų)ƒ!WS÷oō6ÓšĒŅæƒÕW“ó‚7 ¶ą @V"‘5"\Ų‹¹:nŁ’½6ĢgX“Š 72E“,1l¢L ,æŽm›’°{g¹v$h®Y[Ÿ ĒEĢ(ń`*i°µ1{@ż± IATC0TŹ x²-‚Eݼ…²‹7˜*šŗŽ[ģMJx¤}ņwvĆa°IŹ„n>énÅō25 Y@~Ų|“Ća6˜ĪļÆbp8Ģ…£4ˆüėiēąŪšō)ƒ3;ßśžĆOū |hV8ȃ²{’ņ—ˆÅ•$ż0æŃ>9÷×åüÄ2sJM—CF©q*ź“öönäp÷+Œ7“ŽÓxš£ˆHwU  ’.jSĒ銾zŚ><źńµˆįų tö’ĒBŠū\ˆH¢³’c«T˜yų©ę•{!¼“Tš}ĆĒZĀS²Ēŗ¾€gzuuŗXģq&¼š®ĀgSģ<ū£IgŠŁeœ‡Śšōąe“Ø…=ĀlSD™Jģ“b“y„w’<†Ķ)#Č?‘/U— 70¹ž„wož”ƒµōR–=JG)JšéQzœ¦¤×½čIsjVś²å¦pv§Ó`–>Źht„5ü*h¤Nåöz JųßX.0g]ś±ō ŖL!ÅZL·ūķś1Uݬd*«OĄ”Ł«ĆĢ…Ā›6·™ŗžūC(¶>źS“‰ƒžŗhjwŅFŠŪˆ*l&üżž”ė0¼†°n&÷zDžč& ųEęs9t)»QØ":‹®ęrżoĖ,.Ūža§sLi#Uįśł gÆą^ؐĻ_>Wę·w·.–˜$q<”ĵó²_"ÓĻt~ķ&æB}Q0T6ƒß=č½Ż‰zo¶MÆżüyģŻ‹lŽcī»Ųögd;ł-²ķ~ÓķuĆčA©Ü³žŠ„«Ÿ2«ŹxĘ“—M{Å“™öŖi?6ķ5Ó^7m>u"ÅüL2“¾ŽĄ&ŚŒĪž‹Īį‹ †#3€…'ow’žķī6*‰ķ%<ŽĻ„ėÉ.G&"ōL8Ż c¶mÓ3Qļ^dKӏī#„¬‘6ŗFŌ(9£•rؐŖRīTā;`¾{‡ÓöŅ^=Šļ³W åĮÕ?¬åPŹĖ72’PK i5PŲ'½Ļ: briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_Hant_HK.phpUT÷Hƒ^-PŃNĆ0 |ļWųm£Bķ0blbŚš„©»XdIp*ųz܊'ėĪ结wŁē¦éŪ¶><˜( čĢ–Ņāö–‡•rŸö‚jłÖŻĄ“pĘ2ģ†>F…I:—®÷’ŅcāÕhŖ!€Kł‡éāl!ĆX42N‰ÆV(Å[Č­r߄óz÷zŚĪļ‡Åjķ'Ž Ģ¶ĄHE˜†*8ĀLāu£ŻKŖģPƒĘµlß0JåŒ_•Į˜ēӛ1ݦ’õęÅFéō ›»ęPK i5PŲ'½Ļ: briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_Hant_MO.phpUT÷Hƒ^-PŃNĆ0 |ļWųm£Bķ0blbŚš„©»XdIp*ųz܊'ėĪ结wŁē¦éŪ¶><˜( čĢ–Ņāö–‡•rŸö‚jłÖŻĄ“pĘ2ģ†>F…I:—®÷’ŅcāÕhŖ!€Kł‡éāl!ĆX42N‰ÆV(Å[Č­r߄óz÷zŚĪļ‡Åjķ'Ž Ģ¶ĄHE˜†*8ĀLāu£ŻKŖģPƒĘµlß0JåŒ_•Į˜ēӛ1ݦ’õęÅFéō ›»ęPK i5PŲ'½Ļ: briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_Hant_TW.phpUT÷Hƒ^-PŃNĆ0 |ļWųm£Bķ0blbŚš„©»XdIp*ųz܊'ėĪ结wŁē¦éŪ¶><˜( čĢ–Ņāö–‡•rŸö‚jłÖŻĄ“pĘ2ģ†>F…I:—®÷’ŅcāÕhŖ!€Kł‡éāl!ĆX42N‰ÆV(Å[Č­r߄óz÷zŚĪļ‡Åjķ'Ž Ģ¶ĄHE˜†*8ĀLāu£ŻKŖģPƒĘµlß0JåŒ_•Į˜ēӛ1ݦ’õęÅFéō ›»ęPK i5P”^dL$5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_MO.phpUT÷Hƒ^-PĖNĆ0¼ē+ö–¶*©Ä±”ņh‹Ø@=7„¢³©­ŗvXÆ[•@ü$’“āĖάggĒžŻ“ŗĶ²Éh”ĮŽ“ ŠKj‹,ąM°@®¼K-µĆ-IŪÉj÷lŠĮ†BeD`VuōÖ%ź„P~?’—>xīšh-(ߞŲlµŗ¬QäBZéĻ{ćŻZK˜zCĒ~īy½Xm^WUŸO4 1@m‚°©¢P G#:ݤģĮGV”Õ}ŲI÷Ānö.Šö¦¾AŽī@֚3_Õµ”3|Z/Ļ ht; ŪŻeļĆ$‘ 3žJ¦Ö¢¢TUä`4`śŒ† Źr¹~)Ė"Ÿ|éņé›ó1¼gNŽēp=‡|*fOæ?ßł8ū^ePK i5PĆū%Ū.5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_SG.phpUT÷Hƒ^ĶQ=O1ķ÷WL·pŗ„M!ܑč$Ž"¤AZy}Ž]‹={3örZŖDRH‡DT©"ŗĄļū™õł>PŅ„‰ϼ™yļy¼öŖČŠ č44ą}& $2@wĮŠ‚NĄfŗ c­ā,mź­ŪWų*l¢d v„‰„µ°×醢TŪ6×£ußśF£#JŹ<®‹ ešY`j¹äB’T‰Ę³R«&¹`„J1vsŪżīÖĪīVMåüٌY3Ci,Źø“bci3Ŗw£K䂄†Īl§~a=ūŗ“™Fó¼Ž[ŠßĄŪ\Ē,—GNŗBYõ«»zT+ƚ°ĒȖ†]Ų1C2Ćb„`tā2m„¹Œy+לåĀl¤ŖlkL0 [¢†ČŖE‘3.čę%y(VP|,%QFQÆ’.ŠŚaē(kӗ„MųŌģįt)&„—ėrš¶Ā=:wæƒÉÕ×^orž#lŗžżéŽ“²™n?QQ‡÷§³čöÄG——óźŁ ;¾™÷}™c?gŲŻ÷öķó"ZČŌÉTé©ŸČŠ/Ų’ĒÕXˆƒ!«f{š\\O®®Ż2Į'4½”ÜŸ.WN ¹]n;[Ŗßü!÷d ^Ī y Oīi=į_©FRż‘D:‰‰ĘF5kU‚”c}Ö öW_æPK i5P{$ŽÓ5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_TW.phpUT÷Hƒ^-PŃNĆ0 |ĻWųmP”ö˜1†˜„ö“xŒÜŌ],ŗ$8|=iœuēóŻÉŪūä“1]Óhąä9ĆČA E!Ž ž`‡ŅĒP)÷‰gj«v‘_¹kxĘGŹ=«Ā¶_ąCØ0jėāåī_śe5Ė4‹éGųģ0 0±£kd£\P9†Ha徙ęõīõ°Ūß÷‹ÕŚO=*̘aą¬Ā}Q`fõuS»ēXÄQ Ö²1BZ$€ŠWa!°öéšfm»é~½}Į öōŃÖWlnĶPK i5PŌ>ž1IŲ6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_YUE.phpUT÷Hƒ^-QĻOó0 ½÷Æš­0µŻß IŒpAUnę¶YŅĻq˜Ę_ČÅń³żŽsr~5SQ,‹š:ڽu'dŠƒŒ+ä.x…Ģ'ŌhļÜ~bNį–-zx¢ŲY8ļęōŚk¤1ał×z8õÉ90a:²Fō;p֐*éūĄ{|“#TģĖŅ!Ļ=nVwO/w3Uö'# 0ĀĪFaŪ%”¬ŒZQļ1$6¤B»lv9o8ĻŽ$dzł^Ćęv .tčģwօy!ž·^…żDBŽ+xCµą%ōr@V3ŲV„ §KC=8Ū™ŚƒŽāõąSxČĀL’Ų2ć±ešŅhGūE'L’“Uʶ]ožŪ¶)—ßc£_RVš^Ģģåļ£Ä..’  ?f |ÓSo·õz]V¹ųQ§’ŠPK i5PÜģü1óN2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zu.phpUT÷Hƒ^-ÉNĆ0†ļyй*”<[)R%ŌĖ…K4q&ńØ®mĘc¢ņō8)'kĘ’ņŁ›ūhcU5ėukų°œ``GPΈ¢PK°Eé‚/+sÄ‘ź¢åWęž„ŃƁRĒŖ°éęńĮ—1hmĀéī_śd ²s`B< V}Ž łT*ż䄬Įß@t„e÷Ć4-¾×żvwxßĶQ ŸZT˜0AĻI…»¬ŌĆÄjĖMaO!‹”RŌ/°ĶüĀŁūé>Lz0;”q©Ė‰.x,©P¹h±#eƒĪ/BšÅĆwf!hŪēż[ŪÖ«ę7·_ułÅÕmõPK i5PŲ§4lœ45 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zu_ZA.phpUT÷Hƒ^„TMOŪ@½ēWģĶ€B¢^)„|T”RĆ„­ŠjlOģUģ]³XĪÆg¼»$„A„ś²3ć·ļ½ŁūōkS6£ŃōčhĎŲc) [Š ­ hĖŌ’ŁŁčTI*e+(pBŲ~²K-@²4©°–¦}z.)Uv’©ś,Bo”öDKWU,SM§EQZ2g•ČP’”K„k°BÉ1k*Ŗ½lż¾ūŪ«ė‡ÅuOåżŁ,kĮ°\«Eź,ꬶ¤7äŻ(§3$”ܛöö{/œ-•6'}|Ģ~¹5°…ZŚ4’E's/Ļ5HSÅ‰ŅÅd ‡lÖB'‘]©w,÷ٹż ę„4Z§%­”ć› 2¤5sڈ<ŠųģÉq>»żĮł$™¢œŠ%$cö{ÄčIĀ1˜„}9‹%_¾÷…d6›Īēӟō$c’ņ),I­¤-ć®ä¤£®±&7˜źM2Sśąŗ)5V”†_k”rQ€±>Z`C÷P§Š'ßWtŒ!|P/oՙ0>|oˆ:q»µE/ŃItMDŃ@TŗQ3źm“ZÄUŻ[ūbAŚŖ¹¹Quź*· é}‹F¤"4²~–J·Ķ%nć²¢ƒ <ųH±R;’ļ$]ߋńj—Ā7ńX†&„÷­ņńķRÕł""įjɗBĖ{Ö>ė“gż4Ų¦’¬Z$ĶVĄPīų$£ÆĄĘÉJŗ! ą螘ˆ€ė' R“CZBÄø=䀬ZØĮōB? ŅvųŗĶœ·)°]ŗ|/ųž+éĒPä‰ę>2_īEßGÆIHśóœ,čī×nķ>’·Įž7 ųĀ€5˜)ĻMx\ ņĆ5C@Ą>~½PK i5PxKž54b3 briannesbitt-Carbon-f10e22c/src/Carbon/Language.phpUT÷Hƒ^ÕYmoāFžĪÆŲFH6)Ž}L.įŚä®ā„RRõCE‹Y°{fķ¦włļ}±½¶±1$—R…`fĒĻ<óģ̬ónūq§3<>ī cō«p“ B‚ą=ĘL h‰„OŠ%fóˆĀ%ļ3^‘ŲJs×딟X€)ŗ!|ŽĶåĒ÷>FbąEė cś1bŹŃ2 CäEń# V¾@˜.Px„rø%]FlEŃ>ŠC‚įŚ}@Ōŗėń凛»Ņ•Ā'|,ŠęhpĮ‚y"Č=‡o;ęøŃBv(^šÓPĪ:üā½#€9 žĮóĄe/Ĝ£kLW „Š‚5@Y*xÅøó„ƒą„ø“Æcōž3„ƏęŹP½Ē,ē¹€ų<Ō {~#qĮ]÷uÄČ ųjt#ł”«?Ż`±×2ÉlćĀÆ2]·Ģ@&b:ģ=xėŅż™ā‘¤yƵ²uO¬åq2ŻĆv ž<šĶ„Uō3(ŹöžĄŲf:bD$ŒnŅÆV‹Łō™hpŗe‰ØhĆÓÓR)\ca3ņW0²¼ßĪfgx q sčŠ5œ3‹„ģOCė³Ł2īŁ\?[ų²Ėi-[¶Q=W)šÖLKy=OŠY}dŠ‘j yqAб!egĘ2ŖVD(nļŌ².Qf6 ŻÄ”żŖT:B%׉UiŌ–Tö c‚sŠł…]˜śUĖ<ōfćiSløuÄß*S®„ĮģP¢0ņ0Ģ"ć«:®75…*Łć…dڲżRƒPöźķšT 7{Č <"ōhx“dGĻz)[H;Øz>Ų6-÷ 4O<_JŲ{d!ŌA›įn˜Ŗ˜Ó7°G-pg“I{č)źK˜iCøżšDł‚Š„ŗėį«ŽVjēēČŌ)oLƒĮQ7W„:]Xė/ ½±ŠķΰéĀöAD śȽU¾ŪŹ"7[c–Å-Ķ”ĒKƒDÖł_ ~³46…€FČMėqÖ'U• WzčԚ¬šć#]ĒwædĮ**žWw>½Ǻ'Ō–»)™žQӖŅÖyž^ČūŻ$k=mFv ŲĢŹ™i¶“Ēk”żŚm#)0†§„”–I~Hø,±S ½xš)לéü$ÆdžnĶģČLõ!¼ÜŪ$’&kó­ņŸOµ“I61mT5V“›ņÓ]³ö㫨ünŪ$bŃV]Ü(”"A•Óėnrхū”ń® ŪŖ‚:īr\Ø%ÕpĄÉZ’?®Z ēź>œ]įdbj½mēģ+ģŽ;c3öĀoBN«žŹåŁ×ŽL7 Tw‡ŽčgŲÄ8Ž!Fłx­ŸMXMVĻÖĻį b”¦2ułs€Œ<»óZĻO¬ē™ia€«Ł:Ź0äĄķf}ŚA®30Nρ&ģ8Ņ"½Ujb>ē6»¦EļļĆŹŒÖē!$ĒŽ)ƝŸlš:ØÜ˜zÉ)”ó’$;‡øyņ(9z½MōĶžŌĢf"ŗSf&«}įžĻ›ćŸÖ?»H‹€Kå ž©ó/PK i5P/ briannesbitt-Carbon-f10e22c/src/Carbon/Laravel/UT÷Hƒ^PK i5PžoµŚ– B briannesbitt-Carbon-f10e22c/src/Carbon/Laravel/ServiceProvider.phpUT÷Hƒ^U]kŪ0}÷ÆøƒPŪŠ“c/i—²e”u{ZĘPä›DąHF’³–5’}גæķ†n~ˆbŻ£{Ž®ŽÆo²]’ķŃdŒ#,˜^+¹ŗgš0½ ‚ÜŌ“~øN-÷ūܲuŠc1iQX:z@-TāĖ4Ķ÷B2‹«…’V3nĶźö€’†Ļ‚øY¾C Ģ@óVė^Cøįģ1Ļ2„mÉ·ØŽŪjŒ,¹cœ%H$h҃¾ķ“śķU xʌGRFp|Šź Ś>Y”‰ÕH¾6ų=Y¾N‡M.¹Äp­”bņ€ā™Ų0Óyž%”š^q–b‰*.6½+A,˦óµŹe…čD ćø•«x4Ś\ÓĪ«÷c“jbž» ’Y§š›-čĒˆ†Ė"Y§Xq¹aś„Ś9bń,³=i9nśÜ±¤h1 ߕ8+GæėļėŻ=˜Ś-Ø¢ėóMź“2õHŽ{¾Ė3Ļr¤Ģ}ĪĄµ{NąfŹEū֎.ó×&’¹ƒĄo½½Y_j?łē_žĖ›’“õÅ[ŃūNšŁIžõ7[ččī9ƒ“Ą¢Æw¾É›“ wŗ3ŃBŲpé%ÖÕgæžnŒ6Ę볤>×8Uæß8ńĶÅśl‚lˆ>mü>±%—ār‡Ø‹‰ē鐏9¤įtyžRŪƉŪA’;sēń&ŠßfōŽāŒV†Śš†O™GyQ½ŠN[0©Ė³kóäDóÄĶwš'æPÉ]œÜ„œ{}zćƒõėsė76N®ßTŁm»įĄ€c˜j7ÕēgV4ܦkķoG¾½ņķŅ·×’>ņķõoæTÆŻĆł=ŽńK§Ž…SĖįŌŻpz$œŗN= §©bJø˜’īįÖgėóõŁĘ©?„·æIDGõ…oFÄ×0ˆWå)U6ÓČfž·  *­ęÉT šLQV Ō Tā*N\en†ņae({õÆWɂņĻq‹+B2ųpė”…Œęņ3“@mjw*ˆ ®"{Øgę9Ŗ%ėsš O|}„žžģiŒÕ—ź«õ%E trŽhĒe—‡›LqĄ\õgš~ÓĆ,xvžĪĘĢE×uŃĘh}Žž :ź#ѝUøéa¶A-ō”‡S·aģ…ScįŌ|ē ̘8?*–XŌ6š!PsNŽ ÆŸ '/…“3įõŃpr6¼®Ž» ׈ó,čB˜”vˆäÅUVćé4bĘńĄRę9fUžWéq[Ń~Šƒ³»¬j‚Ā7Tb',ƒŗŚīŌ8 Żi!źP¢;-č_÷ėĖõEZWO=«ÓėĶ‘ Ķ‘‹Ķ‘ŪĶ‘cšŖšgńQŽK} =)AS‹ŁYĶmeŗ6‘ „MtmB•†wŻ^“×u0›UŁfńAŽk²¬ÉšG²jźXć8<ƒõµhl7Ęcн&9eŠE½›oƒj£ƒ#krĄ>[0Śqü¶ŠŖ®ÕøĪ-łļå;?}vüÉÄkļ™ĻĪŲF¹vÓ~=ńdā§¹~¾wG<¼śóĢeµMqcßk%°˜ŲĘńoĪEöžĆ õÕʱś²"%_Ę„8®Ķq)IꌬĢTutÄĻjś3`‚NB•ńI}4Y\Ėōŗ ›ēGšg§šgĒ›¼Ó<{¦yöͳ×T×Q'ĀRü>L·Dż¤(³øī­ĀŠĮȟžaĻ®ų܆ ‡^¾¶F†iµ¢ŠÉįŠfÕ=ꜩõ*)ŽEwÉd—¹u0@­/iZė‡S?ÜųįÄ·łį†:ü-\^ągĶŁc±‚ęfY޹ XsØV‹Ņ‚0äpļqWÕ± ˆQć¾v5|t+\{®}><®ŖžīØģ¶ Ksķɋ¼Ż^¼4ŪGÕ¼ ’ܾ†¬ŗęł2ˆ /Do$Ϙ„ŠĄmÉī2:¤w’ķ32LįĀ›du Ŗ-»NÅĖū*ó0Ī̇5ĶQ/ Ģ{ž–øÆ†Cøļ·‡ŪŗQėN[¼1›ä9ėa†pż¶ĒO1ż¤6M¹:„†š|ĢžĄ¢(/†+Ēä@©»łī*R \%ģW_ē6†jGĻćśr/s\CĆŪæŽ?ŪŸhŽ_hŽ_kŽŽ’“ŖgšĪ¾—¹\Č.ų^¶ChZģbܑ‚jŠ~ć’jé«Uų’žWk_=ųjå+Õ5p¶7 ¢wÜA“c%Z›cæŪŁ\YSÉńŠto0 ģ>ŹĶ\o†3—Ā™ŁpęQ83ŽR#,×iū(>A¶xŽ…*‹¤Ė*µy‹Š ÷*LģM¼kķ£‡–×"ÄėdćųĘĒ'6ž°¾°ń±*ļVūDWåWėĻÆ>?÷üĘó‹ĻgTø‰ÜĒ\†‡ūżanĘQ’W{ūøĆśäƒpņq8y#¼~&œœ‚˜:A¶æŪüB•ˆŪ‡}"śĒ0©*Hrć½x_`ėÖ5*ŖćżØĻöĮlj|gŒŗ&łsžœČĒj®¼‡š œ«2šŽŚŗ8t¼ķw¹°eUH^YīÉÄžl–ē˜ ńÆÄĊMbT„Į19r¤ÆOÕ8š&u5ęv/eÜ2Tļƒć)‹>#ƒŽ“·½ęźuńÄ’Ÿ™č³ƒ"§GŃP›‹0 ²uäŖĘāųščĖ”×ß:-łš˜§/Ė„oާ²kg<‹AHŅŃ£pmŽ=BÓe· ché¼ĻżĄĒØEØyžƒę'ćĶs7Ļmž›R„ ćšZ¤ŗdĆO®’téöĻ3—Aæ’8zėĒŃÕĒĪ’8śĒ×UQxšö-iE½œš~95÷rźĀĖ©» Ņ#ś;“¬>‘<īŒ$)xwÄ1Ÿ Ā3±õ?’ĶöŸ8G)õøźįęq%Im›ęšPnžÓpžFøpF¼Ī_QłqųµWmɊ‘$õĢĒyĆÉOĆÉ/##xlŽfz9ńdbc|}qćŲĘÉõ¹“/FTß!k”$­Ņ<Ŗ枢>[æ_Ÿżś Ņk|V_m|¦ŠĄ§MzAo»Ō"I³ĄŠŽęåŃęŸ?i^žSóĻcĶ˟'HōÅØųāņēĶĖš—æl^ž3¼Š3­OŹĻԋý$Ļ•zjōŽƒ§7óĻnVž©.žrKŠ,¤[†1€Ūķ|NŽž%Mr×0y5A’רTѬģēS‘śB4­<šŌ}#¦”–ė«9E\³$!$E…®ŌÕŠœü H™WÉqcštlµFšübɊ[ø¤ć2Ühüļ§—^.ŻłŸĻUbÜj$7§ĖƤv†ķw77N¬Ļ­ßūžt—A‹§!’…ĪR šĢĖ›GøÄ6̶ ·MżĄ‚6‘%Lęs£2š‚”žą}VČ8ÄŽž™ żĢƲ |bž£čÆŻŠ¬ *…ā]jÆn(öF—Qhįz¤Ÿĕ‹Ąr됹ņPÓ%¶PjĘÅĀ ]?3Ÿų¤vÅźø|tōStą+—Ć•łpe&z½½N«pÆ­Ÿūf -ˆ±8óƒ¶ \‚LĒMą#±?ČŠ7“Ō§ŠHøž°‚Nn\ćĮŠŠe½-aĻ®bņĪéčL.`€ŚļkāĖ›E¹•U“ųÜŽŠ,Ėi“ŗQÉJ}©¾ŗ{mkNµń§Čč2«Šøč„õ*h֑ūĢ®B;T Ą'!eߊZ [’dbżĘĘńõéõnÓėÓ'7NtźąīēFBį_+‹wĆÅłpń^øų(\\ÕŠ>P@ˆÆqŚDu6 ø® īiśŒøĢ!OGG¶€»Ē"‡gjüŲ»Āw|NNtęn ųō,š{¦H ą­’¤ĆÜ&’5M‡ŁÓ‡Ŗ\±‡BUÖ/‰‘Q_€×UŅ8Ö8S_U¤Ųø}¤‹ś›»ĄIqį&©Ó™S³q2ŃŽ°“ āŻDµł.n×n’ ÆRšSeą £AĒõM2˜c†§O¹ĒŪQRž-dE]eČ Õ6¢3Ķwv&×Lƒ  qó°æL I÷j aŹLĢ&'_Ø]·0öņ PŹĮūiKĪ`Å4z9ķ@)÷¤-æšbĮÕPŠg…@ŽåŠQĒCGĆĖO¼<=ńņ“Ē›Pó}G­•µqŔr‚’gwu²Ø‘¢Ō”L:›š™EÕÉżngm>«JĮ]’żĆ_ŸŁ8”ņćĪä0؁h<§-TmF Gā ć?&Ō9F}0°)IqQĮŻß‘Yvń}Š)P€ˆ t²×åšÖ1õįā&®Ÿ‹ģĖs7†‘“ø®<ŅŽ•£%y蔹N ?¬]µŸŽ«āšGq0št£a³ņz3°«?Pč=|°„Dé˜Ėљ‘pr9šœ]ŽŅ՟†×ĒĆÉÉ(o}F†[Õus\®zRēi=Ü{Mq;§ S–cÓĪӛ¹öõ…æ;½qrż4‡ė÷¾{Ō-ēi<[į:3×&)ŠēNwŃR‰{µ+šæ˜Õ‘ČńšģŽpDŪ0&‡čļvRĮU ø ]OĻV ūµ«ÄÆŻ%^mŽÕµ6žĘmcnFחGĮ>n%)ŗ—~x)ὤ²ŽļƒĀ'›_ Y˜ŚĻ™WKŚ=\ǤLĒFÕdÖäqŒ¤ÕyÓ6ÄÅī :Š-Oŗ?Ž’$ür,¼’Aų„Z©ćį9¤”z 6‚ŁOĻDu¬›¢RÖwŗ”²zøżŻü5z3Ū8yGTänK|v%ŗU®ŖS Ŗq/%å0Ü"ŪU1ø-Ž¢‘H8> §˜ƒČŠ0ܕH£`pŪ©ēs].c·W¤µ9G ?=ÜŹ¤Ąj§”£Iä©’ć³f©259ž’ÜkIfMӔ55f)‡HV<į’*3ŻÄOŖŌ­¾ĮĒmm š?ļN†wļ†w‡wĆ{Ŗqõq;”føz(żģd8÷a8;Ī†³ąU•€ˆ4樦hŒÕ}éėo®}õŚ4Ļ?½%Lķ 8ģ·æ?żŻĶnÖĒӄi“āĘżĮįņ…płŖJ‹+Ł47\1O‹Ęß-5OŸéŗā6ƒėž4Ļ0M!\ū,*A?• _ ×ęĆ55§ģćŚ;øł¾z']{a¤~õė{`]WźĮ¬ŖfĀĒ5wœ Ė10AGx<ŅŽ”ōøMĆšĒ iŠłqŒäÕ<‘“ŸL¼>/ZX€Uī”yJұ\¢…;7āQh“Fō(jÓj.ŹĒ•\ŚÓ%6Ė}ÆŪćf+M}|)? ēŁč߈\ *Fµųń;Sj>nŅet·NK>¼T" öB·ŗē sČ&NįpMwˆfą&Č”ŠxĒ$ŖüåZążėÅy1rk}źūćO¬||}ī;5UąCłPŽ„ŚąØ~­¾ŅėĮ/ˆ™¼Ęi±ÜVƒwÓC­čŖ«„(±rÆ#ąŇŖ†š†ż[č?õĮ„k†W„]øM5æ~ćū³ćv”„[¼ĆL3łŸöÄź&»¹|^%Ü4ęĢ·©nłhš7WƒĘ;Ģ›«ĒÕÅ'%\1v,Z¬=DŪLĮl3—q/ćµ,_æ GM¦dńŃv„Yønė­\ڱ"øŒ·ĀĒr†Š+u¬Bęu—źłĀßćr]ęd[é˜čxwF~k:ųĒlÓVš÷.Ļé|ĪēŸ_üūāóóš®–­Ušf~×q[u]¹Q{©©å“U¼«½'¦|Œh>ŽQėM’zdöģŌ_ŽAHGĖāƒmØÕ>UZ¦\ÓiŒ¤ęš=ų0'ŚåÕ(IÆ©Ļģ5M*ęJ źā3鯀RˆFć*_Mćvn 64Ž0Vpēø !i xĄ0@³¦ų€š¶C¶‰óš\“4SŃlYG“h5jZ!¤š=/h““¦āIĢp3 ·”˜›ƒĒšž.8)Āăō¤Sq£qĶńm%»ą¤ŻR.øwüźó‹Ū4 ƒ’b»øa<‚P0’ŚŃ¬Ż“x[Ä!’X3ĢS¦čZøŪ£`ZŌøģ”C\Muld÷4޾c9†.󮂶É-ŠĒTżą¢mHRŽw“~nh# FRē5˹ āQCBŅŗøś”URżšČ½P 4‹ŻtųµN·ńTrPĮ»[ I5›ösŸ¹Ō­¼Š3ņ°Ū¢ šĪ7@ Š›ó6D‹V·ęˆūŗĢŽ‚iQė–yųd I™fĆWēÄĪKŹ!%tÜųžAŻiŪ1’ŚŠ­ŠŹ›A™¾9Ą˜—wE¶Äąƒe€łōońf‰!$­&ݳ›nξ P|œwĮI·äµ;^žkš¦#©‡5 ü©‹—ĶĒ’ŌÖ ›ė– FRkŅ QŻ:õŅ‘ÄUĶŗ9Z„ąĘ¹”¶-ĄÖģ?­†³_E v‡¶į½eP³¢~°s5½Ć•TæS~…ø%éMMZskAjŌG+ĘŗC„ ;8ƒ<ŠlŠ†“š5ĀÉ2õ8īĒ’ÖĘõā ĮÅųŌ¶ ’äšRŃV·®†³+RŠ šž3໦ÄĪKJĶƒŲG9ÆŁōNĮlS)>Ķp€9|ŠģGځ’ō.ŽOøśµ f›śØ&…ŌxY‡¼Ā2–nĄm!.ŽšƒtŒ˜©Q‘(Iļą±ĪA§€o>HŅ2ōÄ×ģXĒćQ|T¦ØfÆŻ8 EŠėģ›h >[;¤E¬)Õ¦bŪ9¼dø "‰3ųP‹'4×ŪHRĶŁb½„C^eė®H)†i”fā7Õ9ńėijÖ£$JĘq?~…|KT 24ą“ąŚ:Ą”¤×ģg™¦Y“Y&¾>JµČu‹GtDØĖõjšĆ ¼2-ā¬qˆ$Öģ(™ā9Š/ĮmCHZĶ nŸ-ž ‡nåTJŅW5ėMø„ŻSĮČźSMA\ZS‹”ī(DŚékv’N3mįŲł„¦Ę—łZ™HR͵ą‡ūe±’¤MŠkéīP)H³ū¦ØŠ×T`¶’Ōµ]Rģq…;‘@Ń'źĘɾŽu4¾fYtŚÉ“Üƶ*ØUA›Å4õhß1“"‰5ć$M-Ēóšq¢`ZŌųz±ō|£Č l\ī![£TāY“«I|ĘsS‡;2S„ׇ{óq@«ŸGØåįaF¢E‹w’#ŽE+>žV0²¦ÖŃ,=ušŗ£ŲyYņŖ)~yü­ žŸk‡Hā@£żÄŸ^Š–) 9žz—äµp†2Œp·³x! öYU«I8¦|±Ež›#‚'+žœš“čCŃž .ą÷æŚńPK i5PMœ J Ä7 briannesbitt-Carbon-f10e22c/src/Carbon/List/regions.phpUT÷Hƒ^mYĶr"9¾÷SčÖīwOģnÄ\vfvM†Løķ=ˆB5U%ZU‚Į÷}–¹ļō‹mŖH„m Hże~łåä_ž±ßīß½ūéćĒwģ#˶²f/² ¾÷\7L½°f+XÄõJU Źw|#>Ć\;ż&’Ą:ZņŠMD½’MĆ~Yٟ’¬ą§j>ēŖü §ö•n7z1EĮrµ?i¹Ł6ŒWkVČ\T5Y½(]ņFŖź–ķ ĮAvāŲ®£Ž$ķŁ­Zżš-oŲ‘×l-ėFĖ•iĚe³…нVFēZ·Źžd-“k‡é”żķ/?’ü鯭T‹Ę芿ėƒæ÷wŻ÷ģ×ßą»Z+­łū[÷ĪāE%ķ!wšÆXƔš7¢¦9}\ś²Łņ Tā Ån×Fn oMīœfķOŗ)#‹ĀĖĒ(/V°©'(Ö„ÅSŚE{<Šń\ēĢżČÜm³ [åR(…†łKy©üh†£Ęļŋ@Ģ‹`ąŃcV^ųå,üžŸĀā1¬ķ—Gó—¼ ½āņ«³swéØ,o±ż*6źŠéą,€™ÆķŪé:yµ)ųZŌ[AwD±‘¦$1ŗµcōög}^+‹ŻX±į;d«¹ōši+S­%‰ļŻĮU0żžĀśĘ’„Ł~’³å‰&$n•.u&(†#„d]®M]ó‚{{¦¾Bæ›Ya4fcŽ,m€Óņhžƒ›_q©Å-K­B=p1,1u‹ʽ[;s§•ISB„—Ü{‰Ōٚ \:Kw¤9ˆ™Aƒn°©ČZ=ŒŃTUµ÷Ēö‘}}Y…ų÷ļų+įÖGÜś¼Ų…ÉžŻ$¼°Y»¦tÓG,™k=„ĶP}±¶Ō®ĻŁ©ÓSź¶ÖJ\³¼fö5ÆrbVŒĮēČŹøsQįGųkUŚ@Ž Ęö8 €Ņ¦»‰‚llAjšcb€aZ‰‰dJo<~qß)'Ŗ|Ėb#ƒl£OcēŌ‚˜£[ćm8=ˤØń40&…Ä…“āÄA†nß ŠØ© æ  ‘gChRŪ”dŚ/‡Hƒa­¹ ’3”A¬œ*üÉę$«ŲÅ«¼,šÕC¤Č0æ4A6¼ “īŃč{”ƒ@¹Gėī”ŻRņ=qÆōŚŪ{?s“÷^8Ā}G¢:ŃśĘåč¤7§×°Ē Øx®TŪƒs$įŠĀ½oG®ŲŖRiߟŽ&aß7‚ չڈƒō“Pߑ‚ÜÄn‚d&\›~_æ ėh¬» §Š ™‘9Iźj*?A™¼fś‹ŲˆæņŻ6ÄdŒ™vĢU Ł -Ą,<pŪńÉy… ŒMīį#¼c …½Kd#|éc4§Z²1Æv~ÕÜ­Z…uwœŗćkÕl©ågnv³5į-lŒń96šŗŃ”.ĘKgysę?ѱžR ‚” ņœM"'®x ķ:i±V‡·}˜ōh%"6ŚÆī‡8&p©€ŠvƒČŽõ‰) ņ<:¶įuīkJ2p#ŗŽrøÉ_±!¹ń\¬m›r{¾ōý^höd6 ęŽŌ{ģV%‰k I—2.ŗądJ‡ūŽ1Įh”²Ų»\å®5 ĖłĶPÅJęnÄŲ6 `@’z¬kȁœb&ÉȚĘO_„Iߟ&Kš½–’ؐ<’œ=*Ų'āpćÉĻ=U!yv:¾ŚrŲ5AźM }Ą©7GńāģFDvM$“¬$ģÄ/ŖŲ]µä“8Xģ4tb ß?0vē[]ųh2„ƒŽœ’żÄyXģ9Õ·ÉÜ×m.ܙ ĻŽÜgĮCͧHæi铦 A›…JŅy†°Ģ„?lvŁįĶTqŗ(׳Ųķ“7œŁć/Ū§†Ś .iræ‡!Āa6rKw/M3„Π̘%aÜĻ$Uœ›ˆĀ'ŚĘÕL69Üö½±œA;Ś({«#ÖĶR§IW Šń–ŽhJę”ŅŁxĶi©ļĖfONŲr‚|ü€°?š Į#źóļšJz;ęH“¹*Ćh»ĪSč€īsäÄÜŌµķhšŗn‡ŠĪ­KļŖf-Ū7AægŚq=.܎Õ%3uMœņ­( ļŲ|j‚ž$E3Ó#Øę„HŸī*|ÆüÅ?„īˆ®#·ģ®¶o¬`UėłL·¼akĪ"Sm½ā”i”įĖbŠ×ŗōĄ‹•mķ&÷Ü&ÓS ŅČÆfśÕī5ĖR³±€¾•ĘˆœēĢ\µR× Ł*ęi“N¶eųȘĪrö9«ōū_\7.qĶÜъeŖ<ĒÄ –ēŅßrRLͽn%Å!¼§_ȶœBŻPO»¦¹.§)’:=µOåķūńuļ“bźÕGnė“gȕĢčŻ¹Œ £Uõ5§2÷,µåųŁej!°еėŅ/C6eŹæ=eH¤lĖe˜O2$CĘæŹĖü“Ü.;u†žĻ$4»ŸĘöM‚†ož}˾ŲmāĘ@ī=MŻ!@|Īż>ž”‡ī•\ó3m3µā‘K·Øķ5~t&Jś[`…}^ĪŪ›ŅÅ;Xöģ&VƼmwš įgc±³ĻĀĮ”_lĀō²@`p;|śH >4›š¦8AŲ_s`‘¾µTĘw|š‡|\hęŲڲx]‰Kæ.QóŌ0– R}yљ/-BUCwłóCHX·–˜É–ŅÆPząöŅ>D·Ł›w–%‚³”z#+’r„×P?oųö¼Åēō³Ÿ4q“DĆ&ž„`‰%`É+Ć"Į#†Ļ#ō¹ņ{}ÓļüG—[Ā’Ž<”O¢ō™ń‰ŚĮ“j<ūŸ] i“Óła˜ĘĻ4ĻHĢgY®ųźhwś÷ßßżPK i5P. briannesbitt-Carbon-f10e22c/src/Carbon/Traits/UT÷Hƒ^PK i5PCųmĪ,< briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Boundaries.phpUT÷Hƒ^ķZkoŚHżĪÆø²Ād†¤ŁŻ’&- T‰Ō- ZEŖŌNģ!Œjʬ=A«ž÷½ó0ph„EH0Æ{gĪ=ēzģń»÷żn?—{½·—ƒ=øé²:̧€æ} : ŗĪHxp¬r{Zƾ²»ćącȇ&ī˜šīN?p,¢ģ½SÓõS*CŲ÷Į śĆŻwīĻ\Ź#tÉ;AŲ#‚¼}Ÿ¬{`t Ę}¾8k4ÆŅ”šŸčĒ"²»XPLt±ēqčRtä©É¾ĪqŅ£N?YŹ×›0ēr1ŗ¹ąÄg^-¼{”‹Ę£KūrĒcddwųÄÜ#!£QA$„«N(÷®:j= ŁΦGE7š”ø]ˆ9ɰ:ķć€S…JąūĮ€ń{č‡AŸ†=TMצjˆ ŲRfT÷.ŗõFüņ‰Öæcœ= _š”^ÉxFfe»j*nX:Ź`q/š1ŽA1…ˆŗBsū£V7 tm$« ™†ėDĆrŁÅŌR‹£åeŒ$ž§Vé±ۘ¢“JAQAL…2÷Oš£-?{Š¢č;R \ˆö÷«ź«.e®M’dŲśHzHܤüżū÷ä/u»a^µŠĀŠØ“?ŲÆüQŚ’½tp•ƒź›£jå·|”tjU'C§pk]„;é’²Ó1XÅ6mqUdM)u-ŹŠļņl6W±­šł‹öm™Ń#«SČėk^Ź““„ˤ w#:w\5oĪuÖųŅ®µn-ų*ǹ…BhU1Ś“0,iŅęó☊gét¼7y&X%…ś¬Ø—׈ŒéVr‹Ž-«C›\<)Ul‘y ꦙlĶ”Į%°<(ĀaÅj÷ØK<ŗ’Ö•kŪūmct:‡+öœ@ NŌ{ŗōĖ(ß6jÉę²qV«7^Īą–™žŽÉ¦¹n7(&-†/¬O6•ę¹ę®MO.åčpøAiߖ5²:WüœÉ"n²¢xÖhŽ“[·WÖDt6--Ėᙓ9Wp*‹(Sg‹ϾČzĢ÷)ē,īmēvzäŽö=uʰEµ]^|žÜh6/Ś—Üt¤6~wn=T3f-+o¬Lń-K»śPśv§0ō*k®%S¢š(lEį œ”aē+ß9^ĀŽøÄĒfŚ“š¶“Œøn7ėµŪ«”DŪ¤§ø§†@’ß<'ņ¼†A,ĮŽśŌe”‰ą8^Ų$O\d5H¶Ė†•3–ZŪäüN€Ē¾?# E(#‹ćQõ +ϕժžUi“šźD>n™°ūž}BpÅGŁ É\(¤œL8Ņ&£ų.żøzLū“nLו²]¶.Ü«bÓÉϲ,ģŲ[I¢†Ū‰åD”į]QŌd¬Õ1^Wzf–Å`¬Ž„ą“¹•@Ō‘‘"~rāx‡æ(µ^ ĪŃ»å]™69Āģó)SŌ¼tš7ĘŠ¤¹µ.änśåm“|‡ßCź³+6Ջ„!¾Ć-·$č#õNaW5D+KŠQīŠP.—É™rģvŚŲw±ųOŽöp#œzģ“P6kC…ŌÖv×¼šv;ĘYbjg܉uĄy„;~£,‘&X1>³„Żļ,8<łņ¢³Óę?x0Ё¼šY~ēł]·f®qź¤ąX8•üOO ōŌóŽ9•«’45ęžPK i5P7FƒŠV6 briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Cast.phpUT÷Hƒ^uRMoĀ0 ½ēWx‰ńq/Ó>“ĖNģ0i ­”™Z§J\@›ųļKC eŻ|ić¼÷ülēś¶H !Hęh #¹ œ&÷=sųĢ ¦æ†; ;wOgP!„ģ9ŌfÄ«r~ęQÓēG{{®É·gŽĻ¼%$=JŽ;½ŌŁećē©ń«cśŃ™ī™óZ¦ńČ[6s’w#ķb‘ä‰kƒfMī:”ć+$šM‹ ­ųŒƒ|LĀ„ę\Ėr/LgElęÆ]ƒłē…낲ŽpÄq/^^BuĻžTų'lĆHų¹@s•ī{łdŌ@ŌĖcܵ>0yWėŌgƒ ٰ±µ* S¢§sph”oe¼:2č•ÖóM›żé:Œ(V%·ļڮ繹™'{~¦µöžŚC)E[ā õ P¶ d'¦4Ӂ²]˜ū# Šr.“¦ ÷<•+Ģü=»¤6°<üžŪoæ…„ ó9Ģ™ÖŸķOļöæĶÉt6æs8ŸŽķFŲ·ŽČdB|/`µńŖ$lŸsė[%ī’Zv½šZ‡ęX§&‹‹ž,¹–W‘›ź!KKhĮƊ%Üī.3Ė£ }g«y‹qN“[ŗ»Ł®Ó*ćtpł€-zĢ|ĄO;½€ķŃ®£“jńQimœÖ'¤P(nĒD*mC§ŲŪ7—”Ānæs’óp;&,Jé˜3e°­‚öbŲĻĶEuł;ŻŃ'ž¬ņ@½QGŌq¤^ų÷0Ŗƒ(ŻŖ„o—ūyŃkKü›éżn(,Æ{»ĆśńųżVńų‚łŒ9Äæp‰ n IUįl;gLĻ TmS!7ƒ+7@ņ ÓĶå‚/Ü÷ŒPĖŠ­Ą­cq-HCU“Å1Ų’–š"Y>n“‹5H2§é¬&ģR} mzE6žk »a.—ĢCi<Ęj'ņ{„n6 Z¹'(,å‚A2ݵA|…ĘĶ7Ø v‰iM?Ś3z 4ņLU@F]>½Œ.£5²śjb€H\U@|yz§?$źüMė˜D €HĪökŁp®ˆp¹Ks‡R¼BOŪdže2£©’ ƞōįĻy* “:±g×ćĶ]|ķ–fJ ×iģ]B=Ė*•ōĆPcŃbł¾Ff$ŖwĖŁŃ5U][”|Vš|É£ōPs’3ƒ: ’ąėMŗo” 7QeÄ­·±,3ňŹf«Ī°M䫯vtń³Anį;ę‰s‘Ó€ķ½ś0ō””cīŲmE~±k÷•īĪm‹\ĮŻ"ÆÓŌ D=[Ś–Ŗ„¶E~DøĪ©Ź.’M՚T½­=dS®FļŽ«*žčˆ¬Qē.:’¶ ; cŽ˜UˆŲ3ō0·Ųßś0Ösƒ(°ši©«™mQ¤±÷½jåīæS¦#ˆõJj•()sęåÜA¹ź-Įę«7Ü2'ĀPUk„Kėv®O)ÕnO“„Ī8ć®NŖž>n¾>Mēõ,©ųźIE )„ņx”ĶĘšŻ3²ųk<ś-‡æ=²¹X>^×@1”ZxŌO,\ęÅ­žB NĪ‹ž М٪”&Ō =>½žGö-_¤2§Bϼ#žyyZõÄ”ŹĒōÉŹüĄœ¶ÄŸ¦č‰ĻfŠśhĘÅÜĒéŖjspŹPšwJ’žP‡¤žG~Yk3>AõŪOt”rQłr¢‹$W£K‚žņ½N”"1Zź¾lLrü€ō_÷‡õ²bG ³ŗ£Wu3ƒ&U±#½i½ÜkˆŁÉuĄLŸ„ ęf]Īt×12 s^_Żs·PĘA#œ™Rho3ĖÖ_˜œ3Å2žF¼½ŻZ°Ę„*t—"ŻV2|„®“ܝ~V$;Ja%VžC ĀČŻMąČT÷Ÿ»;učĀ‚ŠāįĆ(¬%eok¹Ā ó%» Ł'ŪH… JeRU®®Ā’yÜy%u­,ūt,N8ŃńD¢I‡/¬­śpzVŠP«WÜĮ[āxc|2P” †|.¶?=;éĄ'ė ÉP^ü՗ķŪśŅōx˜écńģɓ5ÓßGĶ Ćt4†•½SŌøPÉõpā„ņ4Āė>9 ż9Ā9ŒĢt\Ģāž’æeI9Ļ€¤b`Ty|Z÷Nw÷ŹGUą{io8µį«£µ¾¼`_gėV±LŻ%?łź¹KT… #ļĄJMsÖv ÉāÜy‘z1QØüd<4L‰£V³1’J_ŅyīŠČŽĆ§Óė¾ś ŗŠdé××i/†įæG •šq’ś'—7ŗ5łē™o˜Óę_‚:ka•E°÷ŅĀv{¦ŽŹĘ“B44ōæĶĀ„ĘėŚwQ¬•ČųPDÅ}2‡p¹æ+īJŚ$T¦œ„”ÅAj¼¢ę±p0ŌĮśō·’u'įśnÄŗW§'?¾ļ!³ļ›ģ®B€­‘H|`BÄ»ŹvÜ‚ģ£Ō×RvKƒ–ę¼0=QAzęMd"­¼»©ŪxĢ€f.=VTZ»‹3Ā—“p½5±›ŽwGūįī­0ėV:tó2]å)揠łŻź¦ćh60«ØŗÕ'ećiuŪØę’…Gv•;F&‚¹łIg,ŗ–Īx6šŻSė<€žb)»¤ŠķP’y7%Fū­rO ~§¤čĪ6„ K¹mš˜9‚Æü™#2ī&Hfš>É':#ę„Ų¦įąC˜ŪöŁH²æ?*dĒ^,OJżX1Čų;ńźkZ²›Di‰öÅk ,+kE¼(ĄĪĆ«ę EŪӱşĒsŸœˆ+ŸkLØOģ䭍”o7+ œSö± dh=">`-”?†Yž|Te%łæ…œ ꬮ‡ó¼j=Ūx©üó¢üŁÜ… õ…v†{5„•ubZ³ƒłįwš—²ŠSĒØoŅtvpēšnHķ!ī•U«¢•–kØ®–k©ĄBk«źó°ōHÜŪlēŁęÆgēQūÜāžō¹‚nߛ¶AšęBt·*Ž-'{óŗ­ĶŌ•gžNsüĪs_ρMg™Ö.KR gŗ«*mŪ9otmDZe×’™°ėčP“7å‘?īWéĻ£łgM Ā„_U+qr šŹ•Eµń؍֔‡ņÄC,š„ŌZŹ^ŲVÉlłŁvµŠĖ`]篨ē@…øöó???ŸŚ’ź õõõcĖÕßo=X%½™x0Fö–TIM^Øēˆč×S5 a³lń½«Ģhą .ā _l胦 §ˆ»ųéž˜œÉeRźž\K“žą¹L|čE‚Łā —q§½.*/±ĒOšÄ¹"‘ŸQƐ”ĄŁ'Bʧžk§÷VÅĆ’liz6Ē)łŽq/¬ōš:†Å3VŒč”3čŸL jfed¤ÓńjL¾œ~÷ķįčp4ż’hÆGĪč÷¹0- dÄ’ \ńpFw=ˆ#F>ÖćK±„āKŃ’ųtHB“·J;s!"ęNŗ°¾‡ļ  į26҆®(ŗg‚ū07= U±±½Øa˜Ų>Ō€»$¢łÄ“AĘ[Ŗś’?łƒ%ń˜ķ~Żpn~AĮŠ-Ź×BIŲ/€dPi$“3CaJ} ×ń‡x¢}ü²…%!Ņuķ‰ Ł:b.Ō{ē±NLėŸĆ Vü3\½©ćfļOpl«*Ó2DɲŚ9LģÉ;Ėō3łńa,ZĻ„[ūGŽļcv Oū%EļńĶ7=3ok *‹üß’üÆÄa—~¬aā¹0PWp/ā”2rŃĪwßcø‹‡‹&`]”LłGźAūlœWč+ĮĆqčQ!$Y3OLäA³A«babśĖu7ųDšŁ6šŲ3“¬ī›žłV†~Šy•:ÅśįBi*'Jšö(?ƒl„ńq˜U€ė-¢ķ1Å;™& _”:¶Ń?ngˆ ĆÉuo»~‰Cq"©¼Ć+ķäŃŠU$G…gÓś“ˆiü˜ĶIe|“ ĘżŽ$3w)Š_„ĪQ+ō·=–lƒķ¹żÄĘ¢ķ>ū‘†‹3ōÜÉU?éšÕ4¾ģøS–[„憘äŲ›üÅŚ»9aŲƈ;jĀ[ŽŹ›)ou/w~¼”X‰éö–’‰«ŻÕRŻźšeąˆuµNĄž+pXGPā{—Xā{‡p8é†mÓŁŗ©d‡i¤ƒŻµķĶīɟć#}ü)Į”Zō—ŸqoߐČp•łś¢ŌĪģƒ$-]ņÖF%n0m-L•ŁÖšöįēĘ7ŅG«ÄåOŗ ·˜Ž®;QDŽÆĪ+쯃įǼM‡³5ŹMn;1ٰQžź"`ŁeĄł…¬‘jĘżQ\.QĻv siŠV’Åݧvn Ö½‰‰ŻhoŠF‹–hĆĀ!±M/“#āžĒØœÄś»2…Cx‰9āq‰ūš7>/“!ߕə|öWŲ‹F+OņwvĖ&¦’’N^É åŸjĶPńć¤ØŻŠ-TcŹ1W|˜×įE$ —sO/ÅT%Ö"–­® ~.¶ķ7+X[_Sūzc•Œ[›ė—›‚£Ō~§N@½«ė%[xāƒM=Ūx¦ŸÆ®‡ŽžYW×4XÜæę)2{Į¼kW÷]|w`4'.LēüįŽ²'T%£kÕõ,×fÕĶŽ*0śüS(}Ń_ˆC o¦CučämZÖčDˆH!3d“DĒ>Žģe†lŠÄ¹‘FäČ&Jœ‘‰T¦m¬ōy ‘V}›šOUS ų•" +TĒ {Ź1ķĄņ ]ž*ĪYä³P-utBåͱ%½U¶!µøØģš_ ÷}vXښtĢńIįąä排PK i5P©~|(¦ U<; briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Converter.phpUT÷Hƒ^Õ[érŪ8žļ§Ąŗ\‘4%Ɏ½ÉĢŠ‰‰wć8e)›ŹU˜„$Ę$”A;žuk_`Ÿl»qP¼tYte–•ŠL°ŃĒ׍4Ÿ½Ękk›?ż“F~"ż‘“0æc*$į"GŒPqÉ#hrÆčuɛn‹ü&|‘7,¾ō„$Ļ.ńöe·\v]īŅc.£AÄåć[įG’ŠČ#ļ²(‘Ń€‹JŸGm2…¶kŸŻØ~ÆOŽŽōސ•ŅOŽØ$74&žKį_&’yäʗ#xŗĒ<.AžRvs-¢!‹A}kŹē¾ ¾Œw×֒8mÓ?»å¦“0L$½ XÕ³H21ĪӞ]Ó āŃ[&|ī™aRÉś~Xø+hpWßŪĆ$d‘<śę²1·;q%ŚGxtĶ(a]v0¢ŃŲą’~ƒĄƒ ŽŃh'ÄŹ5ņvĢŌ_Ųzz yfI]KĖųYäÅ¢Dł™æA¢É÷bĒŠ½Ō÷Œ»¾*4š-å2™·`ķßk.e^*¦@SF $ 7¹ø¼§u3bnF,RfÆÉpąīŗ‰ˆ»†‹eöņš cםńĒ]ĮjžoŖß±ą’¹j±„@uɆ•gtyN°x” ź9‹™4Ą(BŠŲCͱÉcš²JWjGžÄĀśP£gŃĮd""rĶ}/Æur cĢŖtĀŽ×X~0 F=µŽ®Œc;I>*•Ģ…ē”|m“KćƒyxUPšel,ņI=‰|łVÄ~ ÖÆ[F|ž)ä¦FĢ`ķ5…Ńg˜ä­nżķ6eYpÆ©_#kĄŻ¾’@ģ *¬Œæå¤Ń­Ķz‰ yĄĢļ ÆgJųqānBØėrį©Éš“” ÆȝŒ-ūŅ:wœd=ō£D²õ6Y×Öć_”¾¹Å•44ø‚›†„=P|SX„ā{¼Ü¹#’F=®W’€ŠwŠ©paIéā^TC›ŚpJӜ1”7v+:šø˜ŁŃ‰+»†…^V“ąy\»×•|’ūŸ)ŒSGĶeœ4*×Ņr$ų ¼ŠŽLݤj6&ń£B}ė]ņhč 4¼’+EŚ$c®Ź'-»KO¹¬Dś˜a|§Ū‡WžäQm)ė5.KyKõY’­ļ.Ļņ¢^%ć†.Œc@ŃÜNFņ=šüqY5k_M©õsæĘÜZN*b\:Ļ£ÆŸlÕĘO¶"Œ'\ļĘO¶īČ歝§5 ‚l’,Ūū`‚żļŹćķ:@6J†ķ½@ž÷e»ž)`ūaę€ķ'ķY³ĄtPvvv~­dó dŁŽģæ4(½ŽŹ€Äqķ`LX.DÆ·,ļwVįżŽ[7–KƒŻcxü¼½³ņbāŁ<ĄšČ²]`“>Ä«³ė„ īĒ4柧²0–ø 4é±Vę+’Øź*O1Õ+æ3™Ö[P!č-5ĘҚHŖR¶ŅnźtĒ\Sq Ķņk/2NĻ gzEé0Ē)†]µ3>åšmÜ2*䳞uŽ·ó$!ä(K£ D½Ķ’ą¦I‰ąlšž±«™n¬"žPP-m,x’£Ćū¢ z?-kƒŽ3Ė“™ux†Ģl©¹¹‚ē™AC7Š Ćq–0m,§õ*Yā‘?żhwcÜeŽl[VįX-…mŅ/‹Œ&SŖõĆéLq^lĄE^½rĀŠ‰cņ ¦‚/g¼œš£0œ-Ozg|ŶļīMöĶ!żłēĪÖß;ŪŪż­§ĪÖüūŲĘ2¤+ĘĘgƒ*Ų‰ݶ ×·7~`łÉKĒ Ź2z¬u¶žĄ’­U|ŅŲ™š]ŗŁē²)o苎™Å•tēĢć¶±—©Ū—œ9hŽRšņĄ}lו‡‘­.9 tY®«KuŽõJˆ˜pĄ:Ā»ÅvKRż³Ź<' ŠĮ¦ėŌtØłńæš0ŖY:ŪĖØPyžµ3ޤĘp2 ’gd‹ÜŻåšöČÆpAŽm|PWr©ś3sV¶!’œ°Ė>*śOædɦER%tR”Ūū©(7Bفµž±ŖszŚ9<üŌ’bW·§®TĻõZYKŸšąÖžź(’č½Y(—-yšåĢt– s0‹`:»žŌ÷“·ÆŽŚ wG¶šĪM„*‘¶KžZ&@+u±)ŠRĻhĀ“$<Ni¦CŲ£åVŪ‚:̼̭|0ØN”™|YšCNÅ/‡tŚmAČ3bęc?!®Ū /!Ćb™/DĢ_-ōkū¹ya26¦Ąņ‰kn°Łļ„,>Ŗ Ēā¢&U²ÆĖxXdŹŁ›xfĀU­ š3õRy=¢§öĻi`Ųåž]õĒ9wĄÉ”ü£(uµz©h.Ąv­ Ŗ×å :p€JÄ"3%Ś~$eҰ–PymXS¬XūŖ¶ƒų( /™°®idŌ±FAž\iņUµ ^`‘®¶š™×Īč&±ś8…FJ§!S‚+ėÜ9¦‰š sż}QVbŚ¢tÓwUė õ¼T*Ÿa“’bĶqBzÅ`R¬§§Gć 4˜ŌM„£‰äNĘIĻIÓOÖb€jgŻĄJ2­ŹrńN?ģI*…)~.|€jV2JĖMX“2=f}‚D ė®ķ2Ÿ$ئGˆ‹Ń\xžŠ7t³äŸOʂ&ĪH& –¬ŹÅz:“£ČÓ0”—ycóQaęń’YŠ™^VK!?2}üˆŌ!šSĻUņFqĖd¢ +Ć#Ł¾ÆżPK i5P籿%n9 briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Creator.phpUT÷Hƒ^ķ=łwŪ6ҿ節óԐŹÓįm^•Ćqm'ń·VģµmSĒÕ£DHb#‘Z‚ņUåūŪw ’ąa;G·[>'¢ČĮ`0fpéŁĘbŗøs§{’žrŸO=FĘŽŒų\8aD‚1‰¦”l9į0šįŃč£3”€Ep{Ō$?…žć“·” ½("φųõ„_ƒØ3 ę/$č« äˆĘĖŁŒŒ‚ÅečM¦q|—̼õT鏃pīD^ą·ČbFxvęŃs^nowkēķŃ¢āōES'"ē#®Ē¢Š.#ź’s/šĀ ĖpD”"—Ū½ć;sŹ€|ՔĒ”ćEģé;K?Oóvēóeä gŌōĪh8Ģ©w;#ŗĄ¦°»ž™3óÜm'¢ńÓ,ā³™”|< Ų2”ų°Ų±7§™jŌć__>Éą–µn†“åœś‘ö66r€l…kV"=Š@#2O™z¼MŌwąR f³ąÜó'dN£ią²ž„{)¾&Ј®2L$S½ Īķ&—N¤“rē;.lÄžšw:Šv}/ņ 1Ģ‘ Ą×¼x”ÖRBĆČj1… F£%6ŠC(Ą—gNHœ0t.å“.’\„AÕŠ˜ģĘĢaŃĒ˜ÆSI‰C|PMiž%żĶVx “˜QŹŁA£‘iެdP%4‡ŲlAGŽŲ9³Ł„¤ ×c‹š Ų™!UbXŒyCoęE—ĀPAóG rQø#IH£ečóyŻ…t¾[wę-ɟ¬|“ŃŌՈ@Õ2Ąŗ®ō’č*ĶŽåL,ß  bmŽ˜<'X°…%å½h²P¼¼1‘°Ŗ ŠŽœi4µ1Ł€±œi戫ÅBW@ö«0˜+$=§”Ł~!<‘m½oĻŪ.yÓóz¬³“šOcōŸī¤hóŲĄóesšEdÜ}Éļī±t»dWųŚh#SšmRj~pŚ"œå9h(@^¢X£@X*WGaM :Å)D q&ā¹É@/ž½ōBźĘŠ ¦‰t¾ˆ.e3Čj„HžœX€ßzšnµ0ö½Ģl„ŗœž± R…­&¹w/Œņ’‰ȗT° v;cĖö@4šC >Ö;£’ —ēAč2%­øhVnŖģ<}ÜJĢźÕŸ‚Ź1]gŠ„śs~l;a°į”ż¼9 Ćå„L£hĮzŻ.ܳōĮŸFųļ7<÷łO<|’ā6ŌoŪĀ֚¤óXÕ”xĘΌåõ€WAÕõ÷öŽÖąķ»žĪįī”^×Uš7Ł ·U śą  oéõņ&½ŃÓJ<š3¦ĀwźžĆFŽ!4·zMæ²6K]ŁøŲœÅlšÆģŌęĄĶ§Y›„ÖŲ’9£4·TA[«łę½øƒ°&©§M‰āS®’x –IDĘąĄv]ąHŹ»8čœĒ‹¹…®ļ ć¢§ČćĻō“ŽśšŲ“—;Ō<±œŹ¹‡27:ų+²ö\vYUFõ9Ę>iŠćå³hń’mēĵ_`Ē+[JŪȧ4v½øQmDÆ&ŃO4ō:y,yĶy·Ą·Äd(Œąt;i‰å»ŽÆ9Ćż›™Č8<Ź„FJՕ°€äśZ®«wVg…>˜š-£¹øõŠ›£3j g°bY­‘5s^–^i*½€/J ^»īźb=ēA„(gK)EZFŹśĄ\ƒ29 ļć³0ū"qɛ 0|e)m>’m“Õ­I8Š›=t¬I¦cē2^KŸ»lUщ%ܱuZn‚1¹ł rb$f_®ģM•¬Tē‘Y…_Ķ*2Ļ£įČ[ āĖōWĪy®ā`"ÅČˆ„!Ļ–Š—véGĪ…BŽš2XbŌēR’½Ų £¶Õ|×¹ż¹€¼˜ŅF±>ÄF”‡ T )G’ŗ˜ Ź’_)Iø¹=‡Īłoü—Ķ"Rtõz‰įį£Q» <7#ŃĶŪ;‚žE£)±ć|4ØŗĶ–ÆÅ@.¦"§č'y²‹Ŗõ&>¤š®ÉL£iŃuBXÖ8ÓwÕ“Q-®eQø\˜58ŠWņE¦CZ‹KT˜YŚøKr,™~ >Ųś{÷ŹÓĢ4×Ói­:)*uZŚÆ((»ÓéążŗŹNŹ2ƒ*³ą”wÅĒ©°±ŠnŸ¼‚ģc4m‘’sŽOpj3t†ŽØEh4ź”ėÉ_&}+ŻóWWOL3öDņ¦“CPR¦ŖEś„D26į“ImŹ`·ØĻ#ÆXĶé!ųU®jb¶Č>>žƒT„Į_„²[(ē•Ö[Ŏą?¶=wų-ŚÉ+®niN+,^ŠŗU“ēAżä·iµØūf eoÓöKŹ ēżF"+æIėćĀ·=Xś„0ˆ;–‹Eāģ}Ž!×nŽÜ¹ų—!M.‰ēc„t6†ųąĶ„³GŠWšĮĮĒŁ®Ū%’”•õĄbd}-Š žĪ6 ģ¾=ō7i>E4/qŠm — Żå!£©[ȧ*4Vf’W‹×LÓ²Źģ̃Ž>ŸĻQ°śŒkvˆ!õ"1ū\P9BŪY ʇXŖŅz s©q2(§GĖc¦Ż1¼ā³ KꄨiM xfb8i†shęńŽ\ƒŠ93Ā%Ģȹ7›)t K–Œ¦jµ4¦Į2Ä4”£żĮb/±{ÓŃ ‚Į¹tģ,g‘Ā$ėD/… ·”Mk0 ٬#Ķ“YJRÅ­óõZ+ŖSøT­ėݶēG†µ y^˜K¦6“ĻÖWĆ"#ź“ĮłP<ĶŖ2Ü%1ņ”Č!ŻŗO’Ī› l=6‚ēčŹ¹ˆ;®/@(ƒų"•O|)EÓn¬»č5xčC“BÜāO+˜jö õmōR˜9ńbZ“Ć0j‡Œ' @N#øDi L¶+j€{ܖ–ņ<į§čš|% ś9œ¹R8²Mƒķq³X¼2é™yŒ`ī 2#éYāł –Į(˜=ŸŚ'9X¼,äŖÕ2æćĢ*zÉc_ó+Ō›Bœ\‘ŠŽ Ķ2¼=mz±˜Awo[mŒ¹;ķæŠ§=üöļķ×mÆĶ§=š5'ć$·Nøõ”}ŽEŠü”2CmJōĮŒl‚jq0Mi”m©›‚ņ‚ŁæÕ0‹„Q¼,Üh%„ĖĻ‚²\\¼0Žé”+£ļŠhBÄó{ Kģ-ģń,pĄNģųQ:©ø×U]XD:ˆTŖ*yĒ£ŃŌtĄXH¦ošQ³€PlĮ§šE”¾+ĘŌ,¦ A1 )–0vģ]¼š)ÜT:\揜 bņÜ e\,£©ŗ®Æės tĘh‚óĮģ« -is03öōŻ÷&Ź¢nŸ‘ė  Öŗź`YĶōCä|g̟4–Bč(ńeVʆŚLŖģ)yŻŚōŖ–šoʼn•r5kÜא×rе”'tDŃŲ¶¾cmžG¾c½ļÖŠ’Pˆz¬©4NjQ¬JÕՀBZœŠ½… 4źµyNĒu±‹|¦iN>äēŒéßŃųŸ7‡J0ź‘K³±„”¬”‡—-œ'«Š5µ–Alź’öēĮ?[Ų_oaųźféĮŠÆ’«Ÿ$‰Ē‰‚ŪWńŒü*‚łEĘ RÅņ{ģÜ«§ =:sYz`ā§„ŁO—ļ RKN€}Pg„U1‡I äł Ņ±œ1—@Ź„ņń£5µDW¼i…|&‘¬ŸźU'N«U*®L…šŹ N„T@6·„čČD¼x}Ź'RøĻĒ—vŠzžX³SĖõi±ĢD’Ņ3Ź“:>tuÕ>’„?\0`ź¦-˜ČŸ™é䚯cjévärļ§Õ0ó!}Fõp›‡XüE\/¤£hvI %|w¾:!%+””ĢhdAlüŃ[ˆ3°Œ8½DŽ½Ė6dx© ÓČ~ąļ°‘³ ˜"X‰ÄźoeÖ `‰]‰8£įw»æuī’””ü“ÖeŠĆX)CÉÉEI|Ą—{h&~·›ĀwB÷ŽO»w[:Ęq5į?åFJEn‡¬@“ņœ{£0 CK»¢aĄ‡'ų–¦!:gHLÓC‡ŪĢc¦Õ1įćG¦Ł.5Z¶ŗ±!Ö×H“׳̅ŹB~¾ŠPĘx3xąƒ²ycyā ÷ˆn@Å Š×ńū„JĶXśŽ”‹ZRLĘĘ3gŅÉ ²Lpk+!6©F‘iA©0ŪžžÖ?Ū›Ē;Ē»żĮ«żĆžęqĒ‚U‚ęGB•ē•Ö¬oø?&Öó ’’u euɵX`\ŗ)hCŖŌėNØĮs$“]ī1PŒź†łŽ|ŅoϹ3KĀ1¼”Ž‹Ŗ˜Œ­*–|&GžŁu}/išČģœ~j.=AėS²:oČ6Š­‘ś‹~½¹Xl„‰ŲĪž^KļųN,qАuZ¾¢U ė’ŽÅæN,^œ UāĘ-ŠY|Ÿa·b\įfc•ņļķ+×i3Hņ‰ NPwųjĮšo’퉽¤PAÓĢbƐBV¾¢„±‡O©‹öm„-!ŃįA3Cž‡£Ėł8š/?ló“ĪāÓš¼ŌÉxŚY Qü0įŽŠŽ“WŠ$\·ĖLÓéžÖžk7VėbÖŅNnĀ-§­T£‹Üœ)gą©rCgō15:Œ €¤W{Ē«“½ŁéZ?ńģ\[Ķ£Dµ:Łc“õ;' q<å0Ķtū’- „C¹Žx‰eq ¢l%uŠ)ś·IT‡ē•vr²SQD‹ä,¦Ž;¶p½‚¾›&ŃҾČŪ†\Ńֈ€„Jāķ@q}ń“7Ÿ“M«Y°VdrĖŚŽrÕõ+«ńvõ„jė÷»ŪŪŻ÷pWwĖś²öūd»E*Ŗ¼mÅ•’*y~†ŹÓµ»pµHMNK“œø·u)ūŻŲ(p#9ōVéXĮßöö ėVłkń­°‘Ä̇¶BĻ& OÖOqhß°ž&_QÜ(ĖłJ$MŽ&ĖJ•ŠĆ1ćŲĒ͜ŖÕɜ²ŌėA¼#ÓĻĮįĪė_:Öźd³ż«Ó¾:-š¹7r¬©0ŖŲ»¦ĮŹ\laÜßę n™vx€¾č¼ļ Ž€×…S0)˜ Æ€ VPÕŹķJ€ Ąļ× ßWHˆķˆ*mՐ«ˆ A­hĢNÅū*•x#ŽnhŖP™©(Ü,õ±‚‚UÓ¹ŌŹI”Zc ØP7ß(DÆ ½I½.FTe%ó*G¼wŠŽoV¼Æ²BV Ā'ė~įūj€u@jĮH e9‚ŖĄU®Pŗģyįūj€*ÆßÆTŌņĻ 'ńĻ ąuÕūj€u@Ŗ`&Uļ«j@Ō©‚ł¹ź}%@•ŌĪ«ŽWTÕp!ŽæŪŲŲ(łE‚½Æ jŽK€Ā·<©©ĀQ¦ čJ¼/ÜĆ{UškÕū€ņ,%‰ĆS©–­XŁPmA`¾fŸeX~Pˆ°!¼6>ū–œ&ƒćK|p;wĖē+Ó¹VUīq«ę[ĻKš iź$F¼sä,ųĢń'Kń ±q<Ņ$ž” o7qaZŠī3'ōųļā@—%~Ņe–ÓōĶŁ¹sÉ‘bŸvüc„^'֋mbܔųƒhJįŻĢūHń ŸčĮI|Fl¾&ÉCž€R©‰^0¤ā ŹeM\ė]¤ć“ųĄ_ŽķyB‰bŹp‘×K{|%„8B£ĄjēŽt ³x/Pö"Š:Ź;Fć1a”ńŲg\¬öYN}>+ŚkÆVpmŠfwĻ ēāpāž€˜+ü¹P&ƒ"»ŽÆµŌ¢ĖßNÖŪ?Ÿņõ–5‹b‘ņ©'NūŠ—šT‘¼qDQ­sI”ęŖą¬Ēu~&ׄį¢ł›PŚĒ÷§ź«? ”š,šÜ“ölMHÆ}É”Ļ*e¼!µš2õĖSęężńŅóĮČ¼Č FŸźŲEfgy„` ąÓ’PK i5P¢ģZ6GŌp6 briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Date.phpUT÷Hƒ^ķ}mwŪ6²š÷ž Ōש¤F~Kš¶ėÖM]ŪI|6¶³¶¼¹i’ė„%ŹęF"µ$Ē©óßĢ A¤ų2’•=NOc‰ą`Ž ƒ_ŸN®'ß|³ńż÷ß°ļYļŚ ŲŠٌ’;±üyC^ŪlĻņ/=—’Ō’`]Łė¼-4o÷;ģß±\vl—N²_/įėļ.’ź…ė}oü›lśĢóŠp:±¾7¹õ«ėYī€œ¾ķ¼Kwčłc+t<·Ė&#Ūāæ}tģ|ļåįŽĮńŁ€BüĀk+d7VĄNśĪå4“ģĘ ÆłŽ{ąMż¾Ķ; ²ßøÖŲ8śŠ”w=ßrĀą—o¾™ņnž°Gvxķ ö¬ŃčąSߞæą3Ł^üs膶?ä` Ļ^پć zĪŲžÓs“ļD½ļxļ箦ūyĮŌ—/ķ[”}“Fń/zš:J~Kį«~ޱ9t9Dg°ė_MǶ›ĘįŌŽģ>|O?˜ŗ!‡£żŖTh—ΘKķ¾:dö§‹–?g\“QļJ}~µ¦”7šśģŹvmß ^޲q­™xķ3®™üéæ” ż>ń½‰ķ‡· ?Ž2ż³zk[~Łv‡W¦éŲsĆė2 Öm™f×\-Kõėø\”Ė“ ģ¾ēŹĮģū分†åį‚”5ž0²čœ[±ćöm4nŸŲĮÄ뛤Ą½ŅP²Ż«‘\ļ[·'Ć×¶ż%@‚ üį @t\v z)ƒPpķłį)V€uyéŪ“œśČIn®7Ć)ŚN>į“ęS“F^ߣ”źdҧžŌ÷¹ f¢7örļ¢wxtPšm/I‘œ”^õqoP*[RŪHøH…^®ņ•ĘŅąG\m…ƒ¬Ų¾tó2 oˆ Aūlq~łŽōźš=y\'šØĢ±. Ą…7|>AˆLO˜Õļ{žō3ō„щ¹q¶P¢•Åéšģ¤*^pM“̊ÅõųĒĖąĄ/t½‹ĻĄ³fńuČpxčyA»#V"{hMG!,¤ųźƒOÄK¬7vhčØžÜLÓ>ói?“š¹RÓ¬”ļŁyoÆCX5"²ęŪÖ Ē%ŠśšMֆµęŁŌåĄ;‘ųQžl…STĀŽÆ‰°ŪhšłE»ŸH—Į |/±7å.}ķē7·„_w§ćK¾ēēßÅłŠ,“ü†¾¤D”ddpč’Īłbō8X$ƕóŃvYvÕ.šŹĪE-NĖ‘ķ;ĒÓąµbW6V&ćÖŽuC>/Uйx_yA’€ó ąķ÷!Ō5¶ü&ћ±>Ÿš&dØÆģq¬_•Åz ½WĆZ¹…Żx:|ĢGÅ&X›Ü_bŗ AæRø}¬š¢“ųdżaŠš2xqÕ&EŠFļų¢Vs°° }Ė FȲÄ$OF}Å"„ F&cĢ2×‹ŽƒŸõŃrFÖ%_Ģ€'‹Ö7–{5哮2ŌāśkŸ”d¹¤äņł -±Œ}“żŪå¦<3­J'Z¬Æ—ƒV”Ć)ĮIŃ.±cŅA?ŚČ؀Ć`S`1V̓Ü)éč‹mH½or3ó7×ūÓö=XVŃŠŹ? XG‰eŌPõ臲“ß@,¶©šy’łÉĮAFY(ŃØŒƒXĪ«5ŹbpŒSq²ł}E †Ž„ >˜6ļ?›ńŖ± #‹ŖˆõébšńO`ņŸ«å šŸ)_Ś”QPœÜ+°˜„ąĄ*Æ?Ż>ww[l•r»o hc~øu#Ą¦+ƒQŸ»½©O¦* #¶Jō·]×™Ņßø'ƒ-Õ„ēX Ś((’pCaŽI`}äćh€ĖFŽŌĄé[”ēwłø9µaŻ?ėuŁŠńįŲć¤ų7NP gŽiqī_Ūż •Erfbg1Īņk ¬§aŸē"¬Ļ{{1Īųe6ƹѵ„1šP>‚@½P7Dʆ ä¦"åG‚”Ł`ŠMš5#^cĢ”Rļ¤ÕĢ ĪĆ~»CŠ×Ø™Ņ²4ZģŚBu‹Ä¹ĪŚx° ˜`ī’‹?‡iwĄ,ßf˜ µŽ)E n“Ņ3›×sוĀōŸ@Õ1u`C YÉ=nXIīrŖ8ĮĘ]rL@֖ĆX„ė)‘ŽKxĶUą@R#öW7œ_ncÆ-ófšNöW»g¾³P­b%­Unż-ŠsģÆ,vcpķw‰Ōį»w™LŽ;1Žß¹I½ ž•ķ0ųŅ)ĀNģŒak'Ś. `Ī"r;‚ ėģpˆ0ŁÄ {Še” dčń1膵eŖµ„”†£N9b÷„/Fzi¤‘#ŠRÕx0ö ļ¹ŽĒö'J¤ šf.G Ÿ—£ą„,>©@ D[o(ø-~/†‚ō.ŅPtRė !Ņx Cēå eÉ(@C)OŹ>īČ줓”Ąx/v²O7ŗ—“–Fi]3!Ĺ9ŚĀJJOZĄH– “‘J“.ŲÕZüX‚Ū^÷b#Hļ"ĒŌŗFBˆ4ŽĀJąyy3Y2 ŠNŹS†"r~©L„¬”ˆ,ąū1I1…ŌŹ ,Il]c!D›sa.¢EyƒY:*ŠdŖPFs†)ö‹6‘Ų?F#)^œŃ$‰­k4„h“`.ŒF“(o4KGM*ÄHÓ÷=²9Ył‘&:ö|_Ć M"»²ī.Cqż1‡ w:ōÕĄ5«2ś,#=rŖHOdRÕ`ōu™T@āļǤhp§Cæ©I-=õLJ©d<.ŌccŠeSŢÚq©RŠ ‚2- BŹÓ č"Į‘‚r4ØŒŹ†*Dˆ7 źB‰d“ņj“|t "U¢ćü˜Žŗče¦L‚½ŸPæ xqĖĢ$±µ£żth“`.žŲ¢BĢŁØa’ T€Ńģ‰Œi"«)k4*Oū^¬F‘¼°ń&Em]³!ěua7²IyĆY>:Šr*Ń!–“*³ŸĀzŹ/'£ó÷“šŒØn*Ą²Ė—4Įõ“dؓaÆÖ’ŖU•„äR#W’EŌ¤jˆbÖSІć8«­ŃŌ¦p gv˜ĶuĘō+n ±}aeq$F‘ĒĄßP³rN8’²’G\Ą+¤Gyt½>’‹0š&HB,jfΠɹ›M$įlėBüVÉØ‹"5†Ō(rQļS3r.(.ĄłŌG‹¾-Āõ`ęN}b/ pT5śęīxšć8‹i€£,‘8ebL,1«h‚e\ՒÓ9b9÷yE3,±°čüõRnķ5ĮrzŁK™Õ3o½¤ĮrŽzŁKQ {!ž(*ŗŻՅ¬r£Š>‰˜±sFuž+ v¤óG•Œ±óÖUBĘ.UĘĪM f!~5Īēi€źbüjSTQˆ;gTąWI`1~•ÕyūU2]æ_„Eu®~µ)ŖÖ`Ž×`;l«‘ģb߉µ# µļMŻPnžr : መö4€ā8b[V^DgÜ=Ķ”““ŠÕ¹ō­Žę˜ÓKrnŸM/ŹmI)·zn+Ż~ķ„×'ł#ļ¦)ē)u[\įāI̘żi2rśN8ŗeÖJ3…sˆLŠŲT4ՕŸ„e”ņ¢“J"IåUŻ|(UååMC‘-ƾ†žé ¶[ŃĀt*‘T«DŒncT2[ŒÕ!“Tf”VVGQfĒg\n;ÓØlę—ĀĪØd¶ÜvF&³{·3*yĮgyķŒL^ŠĢ{µ3J™-Ɲ‘Źģ>ķ,“¹Öt (r t =!Čb+J$³‘¬ŲÉł ʳP~+"(ł­,€˜ß‘~.dIõ›jõ‡TR®dkÕ¢œ\b¤BJ%„Äj˜©öQ.ddcµĘJŹ•,©•UĘKmAvV‹NJ©‘ZZ½łįbvŁmj¦½$¶F$µe·5*©-­.h—ŁÖ(W“K`k„R[f[£”ڽŚZźÄRćĶxŌA¼.~aQŚźŲ,6#ķÉņœ× 9 äµ –×JłIyĶ•"}ö‰$§Ϧ-N±iėY³X±õćP$jAĪmP‹Er[Ņ0—œZnü!s†Ŗ!æq~$€.0xLZ|ši³ŸÄ±*šĄ+5Ēqn³PŽGTr<š¹sœkGö<ŽĖĢŁÅé8m­hėx2å•D;Č9ڱXŽGTĢAĒ©9Ž0u¢‹dP;z³Hg'¾ę±˜=8Cä ‰y/<śĀyÆH™Ė®ąuҌĘßĒG‚©÷”µū™®÷™=DŹBĢ{”÷ ē½"e>ž~¼ōžÜßߛŽĻĒßĻSļÉżż½éż|üż¼ō^Ŗ“ØÜŽšē ŠÅNrčJ²ä$GÖū¤žņ]ĶqÉw2¾ėj¾ėśN•DF­ļd‰W’ˆ2ÉźYVµäØ-†šP2ÉÕ5)jU“ØŹgs•Ó%²#Č*£·ŗŹ¹ŌŅ[œŻÕ%•Lzō–WW!-Ŗ³ÆÅö²_–Ģö(¤÷µŲō–Čö(Ļ/”ō¶G”u¶D¶Gy2x „—°="éŻæķ‰vŗ|PȾŗøøķMA,6,ue0€œé G‹fzD!ӕ=3]×tʈ%Ó©–‘R*tćj™Õ*Ÿ\lŌ¶BK(”Ųj­J±QÅ2#¶zCč-Żń8b{«:Ė!Żā,®©„¢#¶¹Ś³9Ź(ĘŠ.iu4“ńe²:ŖĘŠ.iu4¢[«£Œ_,”čb«£;2·,VG¼XBŃÅVG'ŗ{¶:q©6ń©q'ö"<’^ Ī“āžoŅƒŌĒ3 åxDÅNPs<ÖqŗB>“:NµXdVņ©cTėxr™ŃZ -™„2«cF“ HXČgQvVoŠ$¬äCkiUē4är[”­Õ#”Pn“ÖVsīFWĢgłķxæ÷ŽķFnĖooÄ;½÷jot}–ŪŽ+ś,…½ŃÉm¹ķPn÷ko’˜Z>’J·T5üŗøą„$ƒ>©B’Bŗ®'ē9ØŠ‚y“AŸSAĪsMĻÉ»ÄzNµ>”tҧTT ÕŅ\jĖBL'}FÅā„–²5’ÅīĀl­ęčIŸPA$·Ŗ“rÉ-ĢŽjRJŸOq’KŁÉ$ük°9ŚtŠ%°9É} 6G›MqĻ6G¶č]v›£O¦øg›#“ܲŪ}.Å=ŁÜkŪž@^a÷€..X4Ģ„Ā.ŠAŗÄ'ē6hĻ"¹-i˜K…]ZnK½PVėVŗ½ŲŹč’ śXœ$…\;Hy®4|±ŅÉy®+9u•ōSŪ‘VF#©Ģ:c›’2žT&ƒŠėŖrUC–+9ĻI*rÕ'ƒŠēŖq•Aö•ķ;ā7šÜ Q{Õvū`);ĢŽF]†"ą4…ž_E§v8õ]f¹Ģį<±.G6›ˆ‡¾7fż©ļŪ2%'āŹłh»Œ÷ĶŚAčsŗ °čq:ļX`‘ف¹³­žu‚šŸ·Ż²’MŠŪ2‹Iœ@ōUŁž‰*ÄŻ³żSU‡[ŒżńüžķŸŠēs¶Į*/š_e’„•°I*1דĀ*ŲŖ0×4Bž“T`®OżųOĀsŻžą×:žĒĢHŲæ&nū'’ļĶžéĒ’yŚ?éųoöO?žĻÅžæÖńīöOzļKÓ[vj™>é/ånŲ©e.¤œnz»N ˆ«SŚ:±™ćgQ¶ž5s²žšö²Ż†wÅÕÜ o.‹÷¢[Ėjˆ„œ>kxG\ Čė7å“>š#G¾J —|H äB¾ -œōžĶŻF7Ö²oŅ»7•}Ż»YĖ6H¹|Öč†ÓŚų“qYŁvS.Ē–Ü ]¦/̲‘ š] É6“jŅū¢w›ÜĖ]ĖØIļŠŽĪTåļ€Ö² RŸ5¹».śō;Ķ y[4š‚Ų fŃĄĶ Q¬ ķ™4‡§Y¶T-ƒ&Ķß)“)UĖ$H¹Ü,KŖ6žä£tS.Ē6ÜųJGiä‚fŌB²MWמ^“īŸ!Ą.®”?ņ3J»2„ä3®­Ågņݲ¦|ÖVÖȏÆtŸ Ł /¬…pŚ6éłąĘg jY7飹’‡j™)ÆŸhBķ피Žm\ń„ŅŹe抚•G"nhēol‹6~v gä€?łĢh 5R.ƒy,ŠĖžä3ó¦\Žm¹ń•ĪĢ‘ ša É6ŸQÖmZ½Ø^²īh¹²DõĀP”œnZoØÄū^Ķ9­ÅŅG¾Ź}/É=œ&åŪŠĀI/Ej^A½–“^ˆT²4z-!evóšē h bvÉbęÕģīCnzQ‘±x*Š óe1ƒĢ'¤¾tŠ>O|Į,‰Ł[`–DøśyįŠvŁUt"ėƒl£łxLp[Č,j.4 =ęÉ”ęYlydTĮ–rœ¶`Ä¬-°GL)Ł:'LŃ~0Ńz!6‡yĒóq"Ū}Øł¶˜+‰yŲb.•Š]ŲŹ„ŗ`‘ÄĢ-°HT³ri„Ŗ˜ó‹#X‹˜ó‹óHsZŗČ³pDtÜb-/9¬ņ)©ˆ0™²Ļa\Š2øhE@…,'™²hKņøö<‰<»<O¢ĪĶĻߓ̋ 4ĢiŠ{’J*"¼ OŅa0Nb'²‹š$ ‘•ƒy““Fa……ƒy“„4Æy‰ŚŲ$ń'÷DŠź „RUf õ…ŌTFŚĢ’ŹŖ?w¤Å°OŹčĀaŸa"&Ļa“.•™3’A^e©ĢǽÄYRóv/s£Ķ“Häƒ)1Īć<±ciŠ1)1‹ Œ”[2öĪ[±ļ!z°ö‘Ł­sھ‘™Õów‹ó"Cģ‰äKƒ~ķS@IE„“öiˆ0īŽŠ2øhw„ ŁE¬}"‹¶¤NõĶßÕ ·łø’č€% !÷Ašf‘<ČM³ˆ”ŖS)ü|1%fqbKęOę‡m€PUs LqFĀ™kh6QČø91÷EK˜(’KEMš˜("§Ö0¬Ux‚Õ3ĀÄ“ų™łb,m3¾cŽ~&¾„b^~F»0eĪ~fŽ“H‹-– ±Ÿ)&§֋š3ͱVKŹźB«%Ēxī~¦:ĘŅĘ¢Opķłįīeą¦”½ļ ‡Ļ<’Åtl¹Aū:AÓ·źqDüäĮ¦ ŸP ŗžŪ!"<ąąlŽ2±żĄ±£±vYKõŲbco`w8$f±k藳¶5ĄóN¢1<Ņ©y}kdƳ¶ÄÅāÄKų’-N-Tés@—6 n¬ÉĬwJpbä¹WČ0rśYjF ØNķ‘ruZœJØ—ˆ *bF”P‰%dDB%zޱwӜT{\"včzAč z±lÜH)Ē @oʐJʁ=.C’źAĀJź±h~K~ݰ¦”7šśæńo߄¾å„xł›æ¾žL›żsv 6 ~‰~ŪóĘøx®ž›ūц(öĒ=ō“ö#>ÄæY|>¤}õ8³޳öÓ4“.‘ŽĘæ\žŪ®:_¶Y°ŠžNą»\Üń/g¶o~N½Ł³ƒPū¦N”Ē?ó.5ĄP5ö—ošėĘ÷ß㿜ÆĒœļó†¢|1’$UO×e Õš÷™ļ[·ņ— üwā{!'Ļp-åöŁ*ŚaoæQźŗ±Į~ē’1'Ų·nO†€Hō05ĆŻŽ>;?Žß}Ćv~c­3ēm«[ŅŃIéČk©w~p¦@õ¦vŠÖėƒżćŚk{ą6ƒ×{q~#w=õA{vzØ`=ó&Īv{ē§‘$­pźĒŠŽgõšµĆŸ÷žżĢøĶy`ą¦Pó!ōø–9ʁ8Ÿķ–%Ų€" ģ©IM/=o4CK§įšg®„CkŲYl^:AĘ0å&„~jl]ń·„[˜^ß±ž0ī”ÖśŽxĢ}\PŪj §³ ģL9ūĄ Zp&Ś$°ņšHd39JSœhHfF7ƒ!Ö½Mń4øšĮ‹Dƒ!ćHʇ+*ņ'ŌDĮŖ"KĮgPśƒ;Ž+ØÜ9r|2V„óƒÄKwŅń¦4|‚ƒć,¾įłĪ•ćZ#&*Č@ż>½.*‰‘õU„“żéxĀš?9`ʾ±ź‰ļó’óA5°®ģ¬?Æ}ļ&`ļ]Ž›3ŲõƦą8>õmœ ¤Ūū¢NK÷;t[Å% rÖŠBŃIkKRŗ šÄō°ƒ’ŠoÄa{[ʼnŒ :bāń%£j¢ÉAs¦d‚‡©z2¬ĶŻl²ūN†³F,ӍFŽū]‡įd{ccr=YwķpƒO]§ÖhĆv7`XQe« üū™CXēĶ’œž^Žtžņ¶=ٶ]•s\åøš··0rY§F%īŽœńt,¦OšwW܁‘$9%F"®SĖå:üĒ-ø<Śā+į<0®žpčBp„‚)ĮŪ­.ū’¼ļVz_ŒO €@gz½gÆN/ŽģžV„ –‚ųx«āĖ8XįŪ›1>/Nųœ с Š« TŽ_i°G‡Ēē½ŗØYzļ4䳃=>YE/)Ųļ‹ĢŁb}or«|”Rī<}š€ĖÓ·žœĘjxķy8żĪ=+w%…Ć|°˜~ tE).1'¾$"šršE‹R}L]ļę5w±g\ļsĘJ'xć6ā½ö[9÷ŌC_æŪj4ƒņ^ń>˜%€#jtdĻæ;ćÉȆ1‘e¢9ó‚±óɎ‚%«ąÄS ä0ŽŽOFBjŽĖ³œ¦żi D¼ČtćąĖŪ÷i¦ÆŹ™Ų:Ą—9ŌÖ/ŃsīÖŃ«·Ūˆ}GĮāś½*:ėhŠ×w؊lÓe+1H)9ųpń“æE$#ćvÉå»ļXžÓH*i•̵oX3Ū‰ö:Ņė-½¬\¦«.k­gŽm;Į…P-Įļ{ ƒ×Eħź§mų)¼H™t:ė-”•­¼ŽĪ&³šĖŹy¦iŠ,R ˜^]w¹Šs#*¶f•Kg˜ŅR|‰¶tQ“i dPÕČ3™Ā;’üē.TSZ1Õl„Œ;‰Ō>Ņwī°¼ŃG[t'X›3‰ŒU-­/²CékR>*Wm¹Š)J fØŹ›!;#{Ģwk©žŌėf»~ŪJ[\+*­÷_āw]i ģѐ«Øų};ź"žN#=Å£ÅW¢~‰Æ¢ eźGTLī%„Ŗ&æ©h•8=z#Īg{¦ö=”ĀøX©Å„fķ7¾¤Nˆ× ×Ę^d-Š»»¬6é¼Ķ ’"üõż,“|TćĖJ¢m°ī”^6’ĆaĻz½ƒÓ3¶{¼ĻĪäß5ąTĄĒ<ƅ} 5g”v'Ƴ!ØT#—[ĪT#op¼;µ‡#•sVT@ O@Čó.»5.Ōü‹ ®mD1g*ūI٬xš_Č£\©ø­ŲźJFn…&r2}obūį-D·’˰hÜzÓŹ.ąŠß; <ńŖWåU-xCkŃŹŗåVĀI-Ÿ[’®ōZ“pn=Æōž¶6n9•ŽŌÖ¾­ bŸ;ŧÕ_Ōū-z} öOqgv“µ!œ#öæ:j@g?ʟåfJ'#±'#zŗ)ÕӖ)öĒāž~J ÓO¤ˆĒ„ŗ:<;YūłĒĶ-qĒ¢;_b¼ ¹våE‹ Oąøé œ’}C«“į›Čz^—ź9īKÜŃźjkRTū Į”{ŪC8Cę²~G߁yēöõ‰L¼~ vTų[@>Ÿ‰æt’+Öxece2^aķ]>ć`c>Ž‹jæņ‚0ž6é]6ņnlæoń)ÜŲņ?¤$ˆMŽä «4"»G‘WGe™N&39‡Ilv‹.Įd ć8ØP¼Æ÷jä)ŽŪāĒż¤uŒJö`]^śöG.ÓꐻÜ/Ł„ØJ:ƒM;ŸÕ „ø­££zRI¦°—{½Ć£ƒ”"ą³Ć”Uƒ!•éÉ}iÄ Č,Œ2+O¬ĘŲ4aEõ~/ĖZżŖZ/īĘć:RĖļQmhʓ;…K(RÆķÖ“Õalkss3=§É,Ü·¢ˆĒ“Ē…Į5 ‰ 4mÓõģŽėņĖÖ³ūĒėsֆK&1œÉ ŒĄ”g‡ø¹:J‡g'„ђ”WĄL{£¹ŲžŸTŅ—ąŠ­Č'ł96’Ņj%_*‰“†ŅLžœ ÅZt:pęUY9Ģ7¢ÓżŻ7"eéõĮĮßéń;ʰ”Š–ĮRGóazļc›’fų®ĒQ!۪ӌ²Ķ8L\HŁŠńƒŗå3֙ć ½jŖĆGV¾ģĖNų|$²7Śś'ķĀ^ Óäkŧl³£mtóW”܊ vƒšU–¾‘Õˆ¼Śō=4 OHöAĪĆ Sų<ƒ%)=~üc1?P͊Ķ~‹#ρņ¼a4żÜź”ŠćŸ@ø>3żPä^ŚÖDx.™3Œw3‹9˜JfįQ6ŃSĄßĒÜā=“¦£P;oVˆ+łL$½”bÄĢT™ Ü-u‚hCæĖ…±Ę~Č@)ŚŗKc-aWń«bū-”öē»§½ƒÓņ¤©«¼S”5"IĄ¬BN&b‚ -Xfäģķī”''ŗ±˜’ Ō@v«!„‡TE<ų–m„I$ŲšWšKečÖVĶ@’جpł’.Āh«×æ—rɕȮĮqļüōMI7ƒįvķRYJ±Äp’ædD*ųĖ—ĒLJēG…‰äķˆc<°bW[£øś=ļķņ_¼V&ür‚-g“9X‰$‚JXÉ{=Ŗ §ń4›`_sXńWĀļ5"ĆZ#R§fZ/¤ßĄžÜȹŗY`}䫼iä„ œ>LĮŗ J`)ūg½®8žÉ0ćłĘ fÄļƒŁš£Ķk[r7e«U󞵯’،öH4Ü÷ą42Ę\~­‚;¾RIHšZz”„³BŖŽ…œķ\(\1ß«Ó)k@„hēJSŽ_ŖŠ= ū•©Ž,²œŌæhCŠøQYĢgĆ&c!eŖQ “6µß?ēœĄĪœÆ\.ź᛿a›Ł¤-ŚvĶŁrĶģ³ęqDl¼¦¹R:ī1æŖ{٘;n‘ĖÅt½«ŁZigĄóņ{=i–†Ę Lij A`݉v‹m­Oūø•I‰¦M[œe ¤¼)Feū“Żē#ŪŸ'A’ļ÷ųrĄž*0„¦%N}xŒŲ^9w?øŽ fWĀ"Øõ h­tYDR܋֗~ļŠi¹Ģ ¹h/į,ū“„dŽÅ'råźÅ‰§’7Ł ™äY¹ūoJ łz!•‰-x­§ÜjtrmĆLƒ<α;fHxe«yG)dUƒ“dpŲy¹¼g ry3Ē©ÓX‘›8.RŅšé2?zĪ`†L#‰v%6ĘsjŲå~ßĀyYāe€®"˜Œäq¤‹k+øĶ3ĒS$l‡)‹øe©ņ8„“Š20Č„*ĻĶ-©T‘ …bĶšøčŒ‡Š<ŽĒPĖÜwžł¶Ó© £ZÖĆe¼#wq Ļ£ĮœÉQ°×SŁNšQÓklxšsDI†B!©a!…qtˆPč œü`ßBņ“ŹēÉŗ‚ņƚ~ź­¾˜“U?īšj¤rŖž¦¤Ŗ¢ķČLƒüē9OāŅ™³ä?7L@*aKhŚf—=é蛙¹ė}”’ßļąŽe©”öęŚį³™‹UK2œ^Ź‹ļ C¹†ĆĆmq·wz¢/’Äß5Šūm&ŠŲ[ƒA)ģ×h°"¢gxkˆ‡æŲv¶ƒõVg ūbb Śmįł:āȽʐė²»¬µŁź²³ŽéÅ«Żż‹—ĻzĘ Ū%7Ω߅ŗŻf£äR [RāÉ ³ķ!~æĪ¦(•Ęó¦GFC€ĻŪU‘“æŠxt±ę’?ō?"Dž‡x’=w·čœ.ĘÖ¤Ż œ/ö§ÉČŲķÖZ«kXŸæYsמ½ö|ĶY ZŽAō«¦Ļ IīĮās›š®&Ŗœ='Ą<ĄƒĶßżOmų×^°“ŸŽ¼o€{qś&|Nж·b²oŻŹ!­E;7źÕ‚ŌW9’:ŽOrd;Ve]dD›µõ„Łj4ę†Ec –ÅŹęUż<Øā«č¾fN Š'Į0/DZæŠHD”"“6ʋ ˆUÓ«ŗ!ˆ€*Q6ö·,J—žŁ0®k³{ŒåœńQ»ń衅¾°Å2³ėõ©łŠ#t¬śRod'ćņ””ŽC"£†ą?nOķ«ƒO“öź%×Ćæć€/Ī¦Ć”ó‰’Żb‚Ńrz)K„ś§iŻ,ÖL[aÅØÆBn`AĮœæcė•Õæx³/ńļZ„„h$t֐ŗ=źZ„ś†”Ÿ«yĮŌĻ-V‘zSؖ/HĻL°&wgŠ˜iYI²j]öµŅaß}—€ŅžV!×öŖ2Å*Īw)§/ü >Q[ét°Ģ„åÓ8¾„S°b’;ńį¾L°CJ?u‰śyč}ŠhīŹŠĘIõ›U}NON…ƒ1į2øŠĀژ7¢˜ŁÅ*«8)%cާ3‘EƒlYŗDtD¬PŠšssķÅ“E3ć»1'…ŻĄ·NżŹ&ÆÆ@īĶŹŸĆ®u­3)ʆƒ*līh\;A撎ŗ$ĶÆ‹—9'Ń® Qkń„r+%Ēā‚„¦lü„ļjÉs%A+×{iSA˜‡¦ūć•CUźPg' §hł:ÖT®‰@)įVZ_: µŽ—†Ę“µM„ ŸRüo…v‰VܧĢQ "õģkń·ĀĖ »Œ~6>‡“`O‹bœég…°×ą2®~ iīcØ]sv²¹’­ ²,ŒŽv¦6uo„8wńµ¦ÅE”…Ą‚IürŠŽ WØY\(×¼¼‹Žåp3Šō“ 7€V£vń 9ś)[Ų EFŚ™h Ąv~ōI;Ķf¬:‹)_›¬…ń LT ¦Ólr†KĄeŲ ćoŠNĻÄŲCöēV2/½jV>dŽ’T^rŲļ,ÉĶš"É©ÓK‘ō¶X;*“ćA)Ė咝ŒČV`ŁÉL„łÆÕ8`Ź0Ÿ·Ėå?ns»·āāĪdKć8xo2ļ£ķGŽ 0M¢Ø*¾UTßPeŽ @H'†§ų/¼C±o”•$rLą!?Iqʕ§Q–r¦[…9öœč ēŖ§…ā/½¼ ąŲ;‘ Ś1„*×M¢Q"õ%ŖĘŸŹXLYż^Ž–ß#Ś QMēB½„E„]’L4·](„aēJņ'Ćv’’Ō»x^Ėü¶<ŹUų~\ĖńW ĖøĖž¬ŠØķU=ć£-_Lķ¹3{Ų1üߐĪ:ŠmÜåJĄ6ļēĆū†|„?¬Įīģl%õg‚ĮQąµ¾ §›]ųģü±ŻĮąkqÖŲ›ŗÉŽ„³~BŽ ŅÄO$g©3OŚŚįp„±“Üaazɗ żÆflˆÅ(Ģ—Eö”ū•żZEŁ«ņśāą8÷!ĻSp¦œ÷öd= K:@ÖQej6%Kk7į*pĮµ3 åk3's¢ļ@³B˜†}™łIrņÓŚąEØįtĮ‰„ƐæĀ”Ō¢‚ʼn­Ū‘ś*{¤ŪāMÜ;ŽV›”„o_ńŚreI±ąĒ `яGø³·š¶·ĄÅץp4įoķ ƒńbN‰éw­“dņATÖ²ę ė7RYrģLĖFĄ7e"‚x_~‘Pä7€UœHŠHŌjP+,ń)6zü7V±8å=•X„̷е†×\|ĮÄī;CN)€n"1¾~i “›čR;Z™qÖ$Äv#7¬[¼€s¦äŌū&į X%e™_ĮÉŠćKėkĆŚ‘FĻ?Cŗ•zÓ‘e~'ĪčllS•SÄøč6»I$ą§™ć]®GŽTÉYō«ŒTö.抵§1ƒ!^ś žĘ—oˆ«Zp–¤®„MX&ž[l–K©B/(T •6/)Ÿ)' 6õp@†»[,På°5Ŗ€Q,Y>żµm,‘R—ZŽē‰d¼äū³Ü¦`ā­ųWĢ·g¬ ecZa­’žÉėNØi’Ē;xxŽe­myĄeŸ ė;¼Łf«Äü.J‡v n÷nisA3w W,ę)Ļ+5=W Y.8›87[öŸåe•¾¶¢Hœ”ĢYI”æĪ² īJl…Ÿ‹c·µÖāfÅÅ@IöŖÄ«Vs4qe(š] J“Ü,c€³õ*åcŖ„Š’q=½5lÄAƒėØv@|±ū" ć,ŒWƉµ§–é— śg½źKÜE8µ­Ń‘6h¶£čšj%¾w8i³NŖŌ–24øµ/öóīź3°¤Å;kĶDT[,wå²,TZ5±°³¢3ƒņ†©ÜKK^B&EŠ·S‰‹§ĻŻE@»ą§”™Æ6š5eś"'īāK<}‡oeV_b¶§¦yr‰w¹ź“ČÆTńęĀüd_Į&* Ę²Pssµß!¦ĪŃӈ½Wȋ•Ec[˜» ŌlPš5qhk¼6`āˆÜ“•?ø=³FÅC-ņ’&Żpm± Üpg1īĻøŚÖŚ©ėX .+€Ć°ŚßŁ«ƒ½ĆŻ— ję÷H†OÓ1[Bæ(#‡ė9‰ž'Ė9ĪążÖ8w%1°'¾ŻĒÜĢŸPĆŃ}HŪrBvi‡ˆ«&®°§ŪoŁČ¹ō-ß±u½±L‹€0½7 päŅfSmfĪōĻ9Tžø‰Š12÷­Q\5 źŠÜ\s4D„w”1DÜ«°ĪŽxSև£ĄƒŽ€ł¦ž é+ŖR ®ÆE|µ —q‹CyŒÓVQŲäe ¦Ž{$Ī~€wƒ»v¾Žn0l—K°ivVVy’ń?¢@8?„šW™!­jAJÕLAo£žq?7¶>µ7»¬żlbĪöÓLÕDÉMEł,a(¢ér›IÄär†"“'D¶=ÖšB-ŗ×Zō]’Ą¢NWĻ“ÆŹĘd4‘²öÕԘfiW©ż‡ŠĘ#•o¦éHēWĒpąu[lõä^«ŒčÆøRūMÜv)tV6•›_PFĘŲ"”o ŲĘē™ÖčfFĢīDõ 0YP¬ÖųLż–Cŗ¶>rōĘĢBolź1‹s-®Ā\õpla‹y,Ÿ‹§Ü˜D²ƒ(Ā_źcą‚YLœ •™jćķ”XõĻæžõ/ÓĻbf¹½='IO [ŻXÖź®īæLļkŅ–óN'ł“ķNt1.ü(R,£ō²$”/ęŸ3Č{a}ü¾p0Ŗį‚‰] Ōż[_7*Uęū‚—ų¤ņ ž€Ź®yĆ”n­‰†«}ĢEŁaOŒčŖj&ŒÅ”C|mż† ¹¹ĢÓ ˆäĻ<¶+īc‹‘𭢓Ńj§Ŗč^•£B…V¶éyłījĘQ¾°Å಄ļ=°g4‚üƒiLŌ·!-ś£X¼ÖߘĄ‚Ŗ¢#v‡>ÓØB€Õ%_;B 6|ĢąÓń,ýk+8•Š’nߎš7ČßčųVģ^påā„^ˆįlœæį1³2Śģ,–ķ›(Śn=ŚÜÜ\ŪÜā’õ67·ńæ?[ZŽ”xĶøA=~d‚ŗµ¶õhķѓ؏2PÓƞij[™įłh”KڳŽéįńsöģäōh·×ƒ?kĮ©„Ļ’å0 =ļ=[ū9:VÄ§Āżx¼ˆ+¹7Ÿń1ꚛ³iNˆ%TŸż, [v-N)©[žŠō6ŒūšĀĄŃzW§įšē’Nėœ7mć ¹Ž ‚›‚óܔˆ%‚ą"AKO5³ęuMŻUrl €Éٵ\/ŲįHŅÄ-imG:z4ĆŪé×Ēāj3·ÓRW-FW&¦ʍB”¦‘½vÜ”øć3¬”#¼¾=Yņ†ą¶ČupČÉļó…ĆzĀĻ”wĆū©Tq±W/^]œœaĘóćŽ,/öśš8S\,¾qOģĖ~Ū­’i?żõŪvūéöƒļ;ģ’įœÖ»­’3€`ź*HQ9ŻŲ{bÉõ÷šŹõüøBŖī7Å;`P€Ė w¬®­Ō=“ŲEō””ūŁŽĮ³%uļ)ƒ.lPjĒ=Ā­"ń·Y  #'ĄUŌ.us; ×$œY›ś2‹SI­Ń`‹Ćč¹+}ÉsxĀ ų((Aö{›~ėeo6qhJt°Īw=\®·Ēc¶ŪźtÓ Ļ*Į<ĖŻÜ*P0Ž6ö÷7ŽšOh%Øi°GGlæĖrWƒœšåń¹rÉ>üÓe3zz_ÖT($r.µ±ģI$›XL`ĮŚć¶ēKÖÕ+:÷ßö<\®‡ļ7«“l]ūSX±õJŖ“10¼›¢~¢K¬+t„洛‰½Ķé‚W©QÆ$Øyc|ÖUĄ6u£S՞2ä¼}É}Ļ ©©š5BUMĄwōĪ^Ö28e®SĪŲj„ÓųŲē%²±4ušNt.¬']0I>Ū‘¶•žvØW“Ö…Œ=ŁG–¾…2滣P\®Ę9öKV¾Ÿ­„Ū:9Ź{EŌæ4æō&ļ%¬¦i~ēEŽ;X6ÓüĪuī;9/Œs©%8ĶoyoÉźœĘ·Ƒ³¦§Jńuį(‡XžlQp,Ż)dօ~ŒÆ ¢īEœß„Ä@4Šƒk"—Ś ļĘĒ/Ÿ©)­IóŌ'!Ģ­’„i*¼fÄxŃ('«ėŌEzŃX7Cx_Ó¬ģin„ł“WÖ``ć‘D„œźMöŲ¬ÓūyZ½ˆˆ_¶å›ņ>¼ilw²īxM¤¼0ćssß/Ģ­_˜[__å46·Īńfb4Öļ*65ś+#ķE36ć±y'·}ä¼äš2§‹ē9]¼Čķāy^¢åąM Ģ(ä``Ipź¶jC“]Ń$y«µ” D "¦A®ģŠFž³2Īf†SįkØł֖=kY\ņ~ēĶMcŃLZDx%+~ē#Öé²G¦śße±],ŗŪĒ°](ŗŪša»Ht9¶Ob{–k‰ā>‚.ūŃl‹g‹$ö{AģOM‰](Ā€ńĻĶ1^(Ź€óßźć|$\B™ž‡¤±ŁßÉęÄÓKq*2.]RXmę<!Ŗö]¤¾ŖĒ¢i+’ŲnоūN”śķNy¬PĖ£N£p}GafīĢP>jś@JŹ}N¢*ZrU‘eÓ$]*.(²Q#’!ō[Ż‚ljaµĻü\ÖÆ50µzžė­õ7Ķ=”|9oYó¼<€r”…šÄįJ0馀CWW¹=ܲēŖĢ›y¼¹*ł¶™1We_7såuBuLLyżzŪĶqͧ”ş1ĆDa±9œ«¼ŠŹ ń¾šŠ*­gč-QKIžU‰R&ČA‘é° gĆU­_ĻĒZS"Rę!š‰ƒ¬r’{&Xe,Leż(•šWrJ½ ŹGl÷ŠćĄ?/Å_SoBĮØö# ¹NN§œĮE&’ E^5ģC”šS{es„”B‡7ļŻN žÕ™3°ŪV¼ä?²¶>c5ŠąUŖ•«)2²®1dÖįe;bŽ!ø“œBc™ĶB•» Ä"ķi Źt˜u$ŽčDččØÄHĢ(]÷6Ŗ‹‰QŃ`EśŲb5Ād6>–›³°ć ź³_bŅVZ„—F*…ĄÕ r[‡§Eeš“ŗŽōė!V};“Š«ŖĻ|¶® 5 ‹om ˜bOüŚéŪø‰āomĆΘ“‚a©¼c]ö…L%Ū įYbłd2D—®^-oE7eO™%.ņ¾œą„wcū¢Ę8”HS„ Fš3Ž(ōтjY˜kf}“¼w§dOåuB‘ÕN¢„r3óōvŪb1Ć7M w`ćņ [żŹ¶q¦orvo„7)ew9·DįÓõÖz[B}Č„Ėę+]ś&™Ø_ł ®”aŒVcŽhšģņ‹i’HÆDH ŒWJ™‡ÄŌ„äN’EĘĒM¼ŪøWŖm›ćŃ\C; ×ZŹs»†¶R”¢±ü’Ū‹D!īßTh D©čS…„\AėćĻēzt=Wˆq™Ö<…Œx=¾¼ĄD94ÓvŅؙY‹®AÅE­Ÿ:ŗ"s[ś(Ń-YÄĻGL ·œD€¾&@6Ų£-o}xÉó©r%Jqc|6Į~c[±ØēHĀŚqęė‚#Ģ26’f‘Źū¹«½!“/” ŸA†±›-og¶I«Ę‘;¦į ’Č'[Ńõx^ =u?@z=»„ThyPļ`Ŗ/G„'FRŃŅ=ERc)ĻļGvŠŅjÅ38a(¼a:|”ķ)żĖÓ(G41˜}k‚I«©3«*×MeĄDrcĄ˜øCŁÆ_8dØ÷,P‡of¬¾ UņŹ`ŽU§Ė¶ŒžL¼ŽģŻ;£S<\7~ųŠ> -ÜżŚi7V„ĆŪŽsш‘ĪcqįŚA?č§(z/}„&*xƒ"¬ĢōŠ!Š‚t*Ś“lŃ=ŅŁjeŽ2Ż…Ģu0WuųģVó Ś":2`²‰*øÉd;4)å³£ÖJć į 2©ų­õTˆl{›»ā`ŅÅéĮóƒ’}µŽ*i Ķ4Lq&dNź@C"³œ­č†€ą43€ӌ_ōÖģ;-=©æ£›-gļąD^'øĄŒŌ‹üĖS3÷Eäb$ÜĶ_Ńo\8_Śėė±V¾ŻzŸg{źĘÓÅw¹×šG9W¬ļķihėSšJÅü d±Ē™ 4°(ž‰kźJ9E«äšøŽN÷+Ō•\ÖŲÆČV¶xÜĶŒß††åV]/e·6åD±>Xµ;źv°ŠÓ¦ŠŁėj$uĖį·ēqērŖõž›ä@ќėl’—ņd ˆĘ£²U²ēĄ˜„öļ¢WGŃ«Ęw‹ŽM'lnŖČ*ŻŁrW’nåŻK­åtØĆw+f„+ÆŽ“'å•@–uŁ\¶›"Ā>=|]ōš™`'¦ ä¦2ę¼{½kzÕ-z5,zų²č”WōšMŃĆŪ¢‡2ÉŅ*Č®Ü5=ū£čUŃĆēEƋ¾(zč= ŠN‹~,zxPōš°čįIŃĆWE’,zŲ/zč=<ĻyX¼™Ø»Ć”#+`kæ å Ąk‹ FĻnU…ÄX’:-Ėrż åĪÖÕżŃīÜ%ŸfGń0†å°$œHg/÷µÅ%žŻč¾Lž§ö×;2šU9ŲōÜu˜øl4n*ˆ'%Ę$mī?Njqžų~ĶD<*ņ֕UQ³e ÅŃČ\ąé͐ł0SŅą˜Ś>|Ų$ąņ­ĄŻ6 9¾EāŽ›mIŖ’ĖĆ·»kZkŸßÆā €Ąµƒ+ļŽįß+ųMNūjQ¬t&Ó²f0(I‘‰ęmķ­v31LĶ%Ö§…“ĮDĘ7f-‚ĶŻd§Šź£ĪM§Q#yŹlæØQ(µłw‰6b6Ł2%ÆDmnJ“q%eEmÄÄF¤ 4{S®Ł­jVŌH¦ķ™‚£62’ńEQ›k §Š Ø’#ӔM§W¢FźKÓČW4-|†ŽzŪZĻl 汎zoXĶ'lß źŅ^1\ĆLńšņhݾĖÅuRމÓ~ѝ<ĀīÓ–ģ;æ_ąäa¼śŠ;‹ļ,/uŸœ¬$ ¢‚7ld«Ū*1ģįƚ(Ķ/w\¦I!ĢV¶ŁTQ!Ž ³?Y㠜%w†ńõ#XRŽ Ų߰Ӏ=ŽT·Šu”$`k4‚p[yøł·ķĒ›|¹‰¬üžū Ģ7±8¦źC]SŃÅÖæ’®5§Zń6ėģŲ¾»É’|,W¤fu”ēŒ'vlä|°ŁŹŚÖ£ķMžnń|1fL% ‰Š9Ŗ”“ :fuaażŁf*•°­”³ƒ×©¤§™Ń @ńNˆ¼•OŸM·ćKo$ĀQŲ>‘?öPŸHJõŁd²T¹vQž~#ø4O{Y&Ļä#‘° nŻ›yd-Ę/ÓI’A ųiū\‘q)ÖZ6^ÕĀēŚU")ˆÉėœć ¦!ś#šŃīnĪNRŹ\ń‘Hs/ŗåKĒæ ˆ7Y~ ]rō\ÕļQĒAāÓvX„'™KźøŹ»Kd" 0ß§Ć%Œ.ĘÖ¤­mĘøxv‡Ō œāB?ńŖHnEāŸ*Eé}xJ»“øU:®m$Šuć²q&Od§%ÉØ|®ģČęX¶:õ([ŹQą’żżM-~¤€eÆŽqī©?RŚl/¹ņVOźž¦2l*?ŻT—[žŠMŻJŒ…T•1Ą~m“0“æmLFSßi×§sō؁{ÅEwŻÆĶś’Ź‹LaVŻTuȹ1o)@Ÿ?·SłÄņJ+HģW¦Ō£ĻySß±3ŗ!‘— nĶŹaPsŪu+šj1kĄ¬$X)»„«@ ¦PkJōv†@;Ø$R.0ƒć*'l«PÖ+«Š/AŽ/½¶«øŖ«“ņJ­ŗÄ{kæĮ¢«ē©¤Øäz VMé†%Öedk²,G+®ÅJ3üµ^«µ0͊Z2“Ž’:92•TŽÜåg~H!».JQ™YIɹmā-\KĮ"2w†O±¢nšöÜ:öh Ÿ§§źÉæž[Õwļ É|UWŚ©%v©Åõ*Ō“?ćcMv Źf!š<óüÓ±å‰&­Ŗ—ää”yä¹b·óڵ#‹æ¤0¼uCė¬KĶx½EżģŹ[°ÆL†ķžį³g»œ¼<ļd‰˜\]öPüōąånļšŸ»ē½“ś=ō¼cļ¦L7½“‹ć“×M::ĆŽ%»:é½885 /ąŖõJd|pĮĮ­RPõ¼uĒ—b¦żĮĘ F”v’ŃfzŁ×cé¤ēŚ&śŹĘ’µŸž hż¦#ׁĀoÉn;ū:·V7V“ NNź5.æ@OŠCάµ5#L\Ćż\t¢/y ™ģ3Wn¦|gśØ8æoÜ&įÕ6"y0»ęEāų&’æjeŲ:SČܚü–‚9\3f'™#N]§˜£6r˜LØt[ ŃĶøŽ·2¾%$ „4?åßšYž «-„-!Ȧ’O”vlvŁ™ ­lż­˜Ņ:£ģāµŽ3Éų…µ#šš9XČć¶ ü]fóN’ĢüK‚Xoa„/ķ4&*/H4ėtJr*±ˆ€¦żŖ?±ŌŽ„19w‚,æ Lć–xē‘)£(f¼OdÅõFEę§öX÷UłS¢XCƒŗ¢©z䐝@޵į$ĪG•9ąČćyo/ŗ‡{µ’š xBpöÅ%j<‡Cń|JęĆÉų‘3XļdśÄcó-žVk;ļYoĻš,ĖiŲĻu5’\Ļ]K•ƒ^VR )Ģäk‚ÜW'˜§ß<•Į蟩¢FXµĢ}³!ZŌĪąš:r®®CXqO9¾<'ƒćžYƆƒģ!„ųÆ?YēćÄ֏|,ā ūœ<|¬9°ĆÜŲHö÷8'¤iŠįĘƔ‹ćźĮč2-C‘5Š™ÓĖ|2S“¼V†Ż?Hgxj[Łį#ÉCCØ< ī‡NŗĖ,cžZYżKŠóŗ(+_f²)Å*EMź˜'Õ»ū‡(WweĒīöķ¾5°ļöD¼GžėŲwGQČ&śÓźOŪĒŽ¬ąńŽ4ď½Ī‰ŌC‘))ƒ¶Gå$Ļä`ĖtˆSSmŁģŃ{ymļ³UH{„ķ‹”ŠÅŪsGxÉ“÷f ę±ō’’ÓÄövŗ¶ŗ19Cxą|z™4/åķbo ŻZå³R‘r²–)l’%xøÖ"k.Ł~į^KūS˜āzÜįV¾ÅęōŒą2=£:Ÿį”~̘Q±Ü" %f}orŪīą=’©—»Š\y}aÆå2Ķ“›a„]deŽ3OO "ģŠX9 _m§`•Ż#ē£m# —Ć”£?£Ś‹¦”{b€®Éłv1#žÖÉģ[ē^p“s.Qs÷µ'’#ēnhX˘¹QjxŅ=¼“Łƒ”w`·³>MųÕlEĪ.åv<Ī=F[Š„Ź f3µA$Y2Ø(”,÷ōœ>œJ'3h žėŪüXm×}«O¹“1į§Ūģķūxś•4æĻ gŗ‰ĆĒE;źS|[ćx^x½NźN$×Ę)<ź“ŸŹõe|b8‡sōA“]&ēĢ£rJ|f¦­ČĢqO„ž¬”+"`LŲ1“%ŪIłņĶ’PK i5P UH˜óĆ< briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Difference.phpUT÷Hƒ^ķiwÓHņ{~EĆĖl’Ą0¼1$!“˜%osĢ„°,x‰bµm-:²’LČ.ü÷­źK­Ė‘m90Lū1»:ŗŽ®.µŗŸo]Ž.—–Vļß_"÷ÉÉȍɡõ(æ—v”p@’%;vtPŌ’héCh‹Ķ­~‹ü¹v@i|į& y~?_š3LöCS4}F Š`ģy¤^^Gīp”;pˆēöiŹ`F¾øaŠ&—µ”ģ“KÆXæż½Žįė‚bō%#;!WvL7N"÷bœP‡\¹Éj€ö8G} ˆFģźR`ū4ņ%+ļO"ŪMāgKKćX•ń?ϊE{¾?Nģ –Õ ¹Ŗī“ķ•TżN#7t2@R{vF¢Ų ćq$ąīŚ Ķ‚Ć’×§JŽČŁuŃ Æ¶K/iąÄDɄz^xåCāÓd:qW“{Į“‹0ōˆGćųddÖ²[z½NHb0°ŽØ"¬[›ĆZ¶/āŠa‘ 2°½8 .N@ś}¦VYED”ó'ʇ‹“pP©²Öép’D}epW—’Ü-żo‰Ą‡ ~źĪNų‰F š{Ć ŒØØR-Ą@lŸd% ÜPŃd•ż½ŒĀ„öQ?aƒqŠG-Mž|H‡Pö‰øż(Œi?ńXe [ '?ī€X¬¢³“;d|łBD‰[(JœB‰_(¹ę%- /~DķߊĀqąXŖä>Y_cŸy~]•_Ÿ•Į‰;P]½"ĆÜó"zgņ`ƒü’¬Õ»ą9nH­ĶØQŁh2"|ōs9B­S‰4‡Ų¹ ±‘?®ą6×֟H@Žæ:p$dżŃdB“ö×H̤v_+kĖkЄْÆYÖ#šŒ£ %A«N dƒt֟åĖŻMbµx…č§{#īk2žV÷4²s² ¶t¶yĒÅéĢy®ś> ݦģeIj§ˆóN‹Õƒ×ČbīvŻŠ€ęŠŅŅ4ju•¼ £›ł˜±"2J’Ėø»ŗz1Ę!zyŠą÷-ףxśtżē':€Wž:ą¦Ģ—Č&xĄ{÷Rø±ӊ|V“®9dĢõ©V2b=֊\VōäW­(E“r—éWÖ8•5£Ź·²&®¬aĪ_xuŅ!•ÓĄMĪ?«łųłJ(™”ø ®—ŻnÕ*5IA½A#z³”UŖh"dÄVH«„“¢09Ö“ŹČ’F–9*,!ąŚY«—¦ņPö:ę#ź±A€¢„ˆqvŹC—÷åģ—b÷ƒģ`ųc-ŠMr<õ?é KęUXy¤ƒQįÅōŃÉś°ń…§{.ŸźAc»4%ŗĆ8€G$Ż.+ŒĪfI0Śj ¢„yĄi…‹żŖÄ­OÅm{Wö5,ŪĀŲE©·Č8ĄŠ\‡c`¾0I2¼ÜNˆ Ē>šöš֐Ió\‰ŽlĒŁt&‰ĘU*£ł§Ģ|)“ēfMJUØ=›:¹¹¦v’Ą’åæQœ{Į;…٤h°ęée³KfX+?E?]ÆL)·’Œ!<”Q̧UˆĀœš*ų‘M“ž ’Ć2,uÜ Ā  xŗų h‘|ptxņźõŁļ½ć³?ŽlŸōާ¦ĻpQfD©|mAŹÖlšY1äŅå­¹‚Œøļ—‰ū]oū˜<(ółžk÷§µö+J?żČźĒ[“ęģ|"£‰V¾»żŽ żmÆ÷÷)åē`Ųeħ‹/ļo3ćŚÓŚ “į8Ę\øO@¤ĻóļuD+RõSĖ£o{Ž…Ż’ų×֔—l¼©cÉaTćŅ&3)‘¦>)ģ\Ī $n”åPĶlĀqdtH§ģ¶tčŽü7Q"”yƒZtqĶJ†°|Ņ•}¹JUiQ6P_‹\ńm[̹‚Čž!7Ņfōµ}­P&A›Ģ­¼Ė1¦¶e¬=h sS謌²Tf¬²bZPĶ2£ź¹ĄTH†*üŠ*—ńÕHČÕ¤‘§ņ'(į%a¬š'čŻnļŸ;ūov{g½ĆݳŻķ“ł¢‚?7>ąĻķ­Ł"k¤›ėŗwpšędū·żžĪ¼xFāčl&!ojq¶ŚŒ‡¶¢ƒ&MKÉ ŠśąėYøąQ$›÷ī‘;© ·H‡#ķN«–. œ™£ŠĀāA­Bc呏RŽTŽźPY™§sGØh[eA¬ŃмVĄHĶ¾æ«­|} MĒH¬µMKßK»EtRŗź—žų g®`»ŪļZäA‘ŠĪę(ó¼*7…”wqõ.%SRi§ød«„ŒŻÉl|Böųta=˾MėÓķ[Ę(r›Łš²Œ¢¶2Č·ļY~ÕM÷ >PjÜŹ"Ż9>ŅĮšļeٚ…źŗē¹f6(WüthÜčQ0§Ŗķyż8ŲŪßßSJ2„|MWÅĶ6ėĆ “Ÿģˆ”&Y$VĘLĶ"Ŗ±t‡"3¤É‰”—Õ" %[>ÉglįŲYn =ęœ3¢Ń¢ŠµĄĢÓä¢UÉŗ¤D–Ŗ‘*Ŗ13fE”©F ż\¼:VLZF7+ts3Y¹ÖߎlfĒdą…vB,Ķ=u.#Śwcąæõ#Ėž1>Qś¬ÅīĖŚ²ē ³‹›Ÿ-e]SŠs壄 «ō¦v&j–§FĀ5%<dzƒ¢|3źRiČŁ„ń ›pk w†‡ĮĖĢ~v3i–ruɦ ó»č9YƝ ėœ­cXX±ß«ųø#EumW„`VĖ+fz}ĮØSMušķ͆&vmŁqšc$Ž‹ń9߈„7‹Ża€0õō–Öw‹  źļØcżNŚ"Ÿ>?Õ÷F}ȧb“+žPö ī2W*i@¬až•œ,Õ¹ÅŚ—ܹ,d$F=-}ݦ S$üp‘Φķ8SJLįс°)ʱbÓū:_„Ļnä‚y4`”mĄ2^–±UŻj#å¹Č*~×»Zv«oÖa_JĢæ¦¤Ü-¶Ŗ7ĮIKHņ+ŌÓ#«d«š„XŁm?“œ•i^Ų4®¶®«åÅĪæš§eƗ:Z1z‹÷³‘¢dn/« Ķåd‘¬}l±Q•‹Å–š‡å?+ljM’šJs6÷Šˆkz×ŗØŖXŖÄƹÖB§zžUć¢éģÕ_*•9•³ż™MYJk¾,ę"ÓZF&i@ù®Łw^-"ßeD?Iō&Į ŗda߅›O†åTē/“3Īdā¾,¬>A˜²³HĢǽżķ“½ōĪNŽĪŽBKI{®2}ÅĄDŅq[d¼ź32.(Ų,]µqÉŲ(»Ā+1Ńvoʉ³e6ŁĆĒ/=|ŲĒ ÄJ½Ä®°°s“8‡õ»6>ˆ‡>»žŲ×֎¼C9N±œ,ļė]\(=NEk*äˆ|YĒ^ņEKÕĢä4į@JµŠ‘¼JŠ@2żĶFWœ Ł–ć²AÖŪśńŒāB>’}ٲā]Kv]£–1ĀüŽŸ±™OŠÓ*ŲĮŠOe(‰)<Öžģ#½>£ŸĮķĒ–¬l‹Öxd”_W²˜;ŽRńĶ{<+ĮĪrt¬Ł©pÅČÖć½üxõk ö^m–m^[ä["Ō/–ØØDŸv*Ķyź]䛈ZŁ—4Œ«:D=ćj¶ßœį«.ŁFSŲ9  įMLbōoĀ.ü­Ž_Ė"*Ķ…č×zŚFƶ@‰Åį㬲5ł.ā-1Œ°¶~üt6cšģcX’ŽIi„o”ēkZłŽƒŌ@¹ĄŅ{†˜EJKŌ¬”@ `įėŽiĄ£“^ŽPÆžkza{.»vUó9÷ó'HG™$‡Ir˜$G%x“䘛Šs“äØEœIr˜$GÅĒ$9J?&Éa’&É1M’µp¹’ūbr…®]¹bū1\[$\v×÷ŸT öL#‹"ɋ)æ¼};‚ībéĒī‚ąG’ R.1tAc6 8Ō¼“ĪŽ”!ŅmĖā'rÓ{®¢ĀĮ8Į+m&£„Ł¢€--›Ž3;ąŖÅ½SNETZé“\MDǧŸ¾L±IK˜“„IKÜ Ž¤%ę¦āܤ%jgŅ&-Qń1i‰ŅIK˜“„IKL“–HĀ®ł;P»oRlƒ(ŻR .Õ¼Į†&¾ļRśĪĒZX…cŪ²"I~ųż/ĪĶ"Ļ,ņĢ"ƼYäĶMŹYäÕ"Ī,ņĢ"Æācy„³Č3‹<³Č›f‘Ē^*æµgjIł]<ąe…%Hģ²ba”āß,Ģž/ˆž+Dž+ž3¼½ąõ|1”i ŲŪ <‹Øo)¬<Ē’-"h,pt{!auCßüńÖōŃŌ¢b„[‰„n%Īi&Ši$F¹da{ŪĆ+«Į"¬Ž^āhä\ćSČ`ĻŪŖ’¤oņ]ŚŽ…<žĒ>³£aŒē™ÓČ]”‘głĄØĒ4•ŠD[GžåÆIžfš„篓į_¶NsP;ŁĒäś©`Ŗ¬ćįŃŁæzĒGg ×/=‘¹³žV}ØŌ“cĘnLØĖ7¢AŠBł&Į»/#×·³ždōxķn›€j°č†Ž‰&ėk«kæ®>Z[zgĶ0¢ųŹįķ)æmJγnūä>Õ6El“Qo—ā2·˜9|ždŽŹR£”Z,¼FįCńŌ·ŖcߤµźwČ2u}DŁ™ī•w,hĄ¹Uč Õ‘m„{”3üµ4¼49¤ׄŠZ•¤-;⦆7{g•ąR¦u>nCtN:æ-°+X„õ é é+kž²Ż:¶ĆŲó-„‹ķō¶k²)PSŽRo½. ˜ŲZļń{°N¼±‡Žė©ģ%H¹®ģß*­)–fKŅ_„CĻēFŸFC]ä;Ā^r]Ē™Rź}ėT|ÓĪŠć·qČK¹ó¾D*8ńTīü›¦#źģBž•N܍CN£ĪN„ć Óóܾ.żPK i5P Nß‘b> briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Localization.phpUT÷Hƒ^ķ=msŪøŃßż+p®.¤RZJ®éœĒI_Ļó8ĪMģNƕżčh’ŲP¤†¤¬č9»æ½»x#”äŲ¹ė=ՇXÅbß±X0/ŽęÓłĪN’éÓņ”\L悌ć„ų;ó’dcRN)yę×Y M£į„ö /v÷G]ņē<SrF‹ėø,ɋküł*…ŸYŁe³—¢ėwYĪIBFŁ|•Ē“iIĀ4"I<¢iS¦ć,Ÿ…eœ„™'4„¶›˜.ŁøÓ“7ĒgēĒŠįWNƒ,ƂDqQęńõ¢¤YĘåžīE¶ČG&вż4œŃŠ—K¹¼ČĆø,vv…jćNŅ’ęcčz ?;ž4¢sÄ­ø<ĖŹÓl&ōõ2Ģ©zPė~¦“ŖÖs¦E–Y.š“¬Xä¢ĻIz&qō:Ÿ,f4- °ē«Ł8KW—o²Ł£$,Š!<,|ր¦Ä=ĢĄ:~sœŲšīĮĪ]„ˆ(„Q9ž?6RźÜńģ$=¢ćp‘ża¼ „\°ę²š•\£.Ķh9Ķ¢‚ėC٘`‡“…!€Ÿ§ä­˜¤‚܏dW7aN.·–01¼ĻžĪó¬¤#Tߢ„#Ņ)551q:ŸÓQ<†^U'i£F‹<‡ÉĮŽ tDŁ#ūE Ŗļ¹¹ `ÕĄJĒ`æ_Ģ æßµ¢¾†0Sž@IЇÄ0Yūūg8žš~ųöä»ļš8½Šč<§£”^d$¼Éā¬d:#\’kZ.)M¶”ŃŒiķ”'X¾ĪĆ<¦E *h 󂵝f‹$"i† XH.čŸæg Ł5c9ve¬Ū{‰ āt“rŖ ¼*(%ņ±I7Ą,œ!åšÄ©Órq Āļń"1½°ßĆü .ƒš³ŅqdßʎFŪv÷’˜›š¦įuB V48± #䳉…Ć]rŪĄņæ|Ś„Ol}YF=!’Ś”Sh¹ČSåÕ(€’‰ŁüĶ'ĄČqN Œ;0¦˜Š¼is¬a’ķd±ānŠ@@t’µ¬“4.ctҜńQĆ'+G LJéˆE˜Æ\+zhg­hP!ŌX:†ojŻ⇇‡$…ż@Wė[½/©PcĀāwŌ A5™õXĀNąæŠr=eSԼǢ©SØ.Ü45Ö©SßµŠó Zfօr«±ż:õXĪA<4Øŗjkęr šDm ĀØ”ł‚©—-Ģ$S4$eA²eŚ*‹õ^gYb[ÆZ(€;­‡–.ęĒÅļą†wļ„Ž:„@Šūśų™ˆ-»”4/ĄuäÄćj‚®’ĀNr“/ Ńh3DX»¹xDa‹k%TŃ$Ō–ā ą”e7f’½]w ]–µĶč =Ō„2҆dß@õ‘6=ÖCPŌd'·oĘ˜@J'd›O–ßń+ĄĒid|‹>ncĄb7)s¢ ĆD¦„ī&’j łõ&L„ÓŲ• 6"%a©ålé׹ē;. ‹Ė©Æń-LABW?%xŲP5KüE8a ?¾Ņ+%ĆgϜ‘'OČŚŖw× `Źiž-![:“z~­?~z}1ŖWĻ«Ķj µ$”Żd°%M2TģҀ코V:BøNN ĪMsŲ›° “l² ¾ŻeĶ> I×b$ ˆ3™ĀU¢²/Ÿ>®õśÆiŁŽ“<åS±ļ §Ų܊µ›/’žÖ* õ ŌfĮŒ`# бpź¶0*ø $…–38’£QZp:#ÅŅ`V–\‡£$¼ ć“)}¦šPĀ<Wk†™PŲHŠIŲ6 #„‹Ł5uE›{XI&.k(ixZNmY ’ƒ«@ā&t_GG‹"„u<ÜNX„4 …ąę\E¤k.Hœž™^GKØdWįä÷z=¶ŗ!³E…Æ-²ėö…rį_9’”÷õ([¤å׎:/>P¬Ć›7ėčF@Qė¶Ļŗń9¬Ć­ké÷É+<}“ŻŠČq2I³œž—a^VģM³xd8ģÉ[ĪéjÕ}7ūī ‹£‘½6fß2ę CHŽä­ƒ8X³Ācp¦!­dƒ/ų ™¼ß¢•zŌļīXŁ:’f,°Eó°¬ é„IyĘĘ#øq˜ŌiuQ9l$!īķ­«©µčÆĶ`± ¾ĀÜa.aĆœĪ“µMéĒHaĶAČēŻ ¶ĢÖ|¬Žq]ÄŃ ąKóŗßP"Ö£Ü"oėUJ‡IZ=SƇ*²{ŗŪ¦ģ ŗh@׏żķÉ.,tȇ=1v·"d§XĶ®Aņ¬šk2 Ę” Ō;ڹ/śÆu‚/É·ßņM”§ÆćŪo½.›ŗŁjøµŻ¬Īój€×4M‰?xž >y.’½Āc›ż47a1xDγeūļ4ŗ×VvČ ²Å‰¦¼å)L‹Ķą«aSoć†+|Įģ«1†Ü"q­ć$Ė”‘>_L96DtŚ;£Ÿ²ŽŽĪœ˜½CĄ”u~Iž3?l [9ģ¹ŪßėyŻ®° ünĒż«Ś«›,\N±LKŁ ·FÓEś±Š”Č×Čąęüz> u- Ž.,CߣŪčŁdLlš@ÓüEŁåT3ģn¢0č‹U]šŚņŠ“ž„H½„›Ne·n0Ūⷐ”ńŒŹlœgG©Ā©Œå š|}ƒĄ­ƒ€Īyƒ (bµ¤P:ln!(é|”R0āFƜ=ńāu>l;%“g?‘ė•ĢÆtŪ¦Ōä'[”Ķ9Ó9Ui³ķŅt· üzz4õĢ،Cc‘YęŠĒŖåŲS䣄†éß²– m„‰j˜£Ą ^įl%tK!Ÿ½¬÷ö¶ ž£¢œŸpˆĀ;s{¼f’ĖŁv±t6/Į”™„²&±õķ1ˆĪwõ1M –øJ³½õĪĢōÖۜQ¶Ēm,ÕѾ×)!¶óUlX‡dߊ»H£f4 Ō‚OsW,ŠŽŅČ0į±T¤ėÕēķgÅ-Eåņś‚4šÜ9|ļS ,«Ż8ŖŽ¬ V?Æ·¹ŗo8—ĀŖzĮ-ĒxżP^?o6~ų}xu’(ˆ.`·€B]r`83J²‚ąd:«įBOß /NŽ·ŸŸ&Oü”Ÿz„¦ø.¾X.śH;$ĢĘż¹Š„ÅŒ V×±Ej‡‹xĖrZ–óbæß/xń ¾š¢e£¾ e$‹aо–”čMĖYņ; /±;#”7¤_Ż0ŗčX·Ł–z=~U¦ęPųUSł†ZŸ×“Č^³m \{bę)×Uä[Źc ģˆN7ÆFw”[™UŖÜ8Ė=JNAŠųʒojĄ­9E–›“l;ńćņÆ÷åDÅ\b3‘ŠmäÖæ¹­÷/­[5Ÿp«U½Æs †f=¶J5f“ؔYa%ųhjVwšLĖWŒ2Ķjõ|½ĒŖ\ ¶²Ņ¬œČ~Éo+ĻĮį}kAĮ·=õʂœŻÄŁ¢ ĄĶ@N]RuTķ—äUE^śK| 3 ’ćz;¾/–6/v;½6&;c¾„Č;ø‡(ĶāOt£{¬‚µ&HÆ1ńØ£;P”Ÿ}2p\­c£d”| 8É®’IG%sālŸb2“Ē_½.ŗϳ%Ye vóB$LOĪß,ø æ+ēäm9 åQ,dVJäJŪE%†²(kkʞ¤ć¬É\y¼hå«}šĘš&xTó&ƒ‚:€§X^…ÆX’+šqDė¹²^c_õJKū«UQ„.Æā%GÖK¾ø CXx]nęģ­ø÷zÖ^5Ńr’Ū~ d; Ŗæ·)SSU“tpŪłĄ{ļU˜ A»-„\Ēü­V~Ź/9<±­«¬°2ō¼)Ś®±uIw¾ŃtJ¶¼rģą~W”Įz3Gńä q¾įĢFL®9wāünĖĖĶ’Ā…ŖŸ”Ø»PK i5P;B Ž 7 briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Macro.phpUT÷Hƒ^½VŪrŪ6}×Wlg4éaāśUMl7Ž“ńLdwl÷IŃĹQ“€ €R”Ų’Ž^¤Č’R§Å `ÆgĻ.łśd–Ī:ĆƒƒĄmŹ5Lx†@ĻSäLŠpĘŌX :ŠļŁ_‘¬āŽ*Ī\¢scąõŲnOm„yĖüŲ‹¾—ŹšY±œ-Ÿ¦˜H ć1 M.ÅDŖœ.E³ Ķ9.œŽĒ‹³óĖ›skŹÅgRf`Į4$\ÅĒ…ĮܤtC±kYØÉQā‚=ģ–£¦š«T>Ż*ʍž­IŻīį­,DĀG]åØ Įp5‰Er5q'ØųœÜåhR™E Čā ĮM„ög¤ @siĖ,“ .¦0Sr†Ź‡¾=õGKBĄ@w‰Lm8Ī„0é†ó„-õ…Aųņø uUmX%0"óuż²NĮ^[9;,‚°Ž÷±yÅ8•uüK“ˆ—­_ŪB:8:¢×&”–‘éŗ4ŠYvŠQ³Ö«k‡ŚšŒ’EÄx Ų26¦9ŁuŠ­Ūó€Ģ%OVyUŒiW¤Ŗ.įwī"o1tņcZ„JææŅC§2"Š”JeŠ(™Ė9ÅģŪĄŁĶ±5P…4SJßĮ^śyBfS;=•Į~MµG‘*!;ŁŚ«;S\*N“=g*–åĒ.„Æ(y­Æh6Ih.LøŅę™eŸ¶ŅŹ£VåP_Į˜O ų…k*B° Źamd†-õ]%hé­Ī®{„„Śī8‚›«ėŪĻ—ĪÆ/ĪĀFßWōī¦õYŠń½¶ 81[œöąwę³åńĶŽīńõ:Ž„Ģö©cŹō éąõšyc«¶ŅĘįSy~@ćž'[@Ķé2å łŗ’%Sś…` ’{*g‚ž*÷c“ŁÄÖQvrÖŁóJ„€ūĪüÕo—ż£u²;ćĄ³Z\ƋžßßU|įį”Fkd?‰+ P’'mŚ|y„Ä•į(l1§Āj†VPK i5P®xóı57 briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Mixin.phpUT÷Hƒ^­WmoŪ6žī_AA-¶›dĄ°9mŚÅIK;“ާ6piés•I—¤œ’ūŽÆ¢e¹Ķ^ōÅy¼{īīįŻéłĖÕbÕé<;<ģC2Y0Eꬂæ+*5s¢@ĘTĪĒ„ü ½!Źń,ļ‘sÉ('oA͘ÖäłĢ¼¾āų*ō0Ė3/śZH«h^•%ÉÅź^²›…&”¤d9p…&ł\Č%ÕLš>Y•@qmĶąÖžūżĶųņķ‡K£ŹāÓ ŖÉ-U¤`JK6«4ä–éī v%*™*,ŲgN— ~påÓDR¦Õi§S”™q)T%įŌ¾¼‡y ¹1.©RĶÅĖ»VęOsć ōBnu²ā–ĪJTck ’sQń‚J*QiŒó»yŸ/ŽĶmD lž,­F‚a!@ó©8ÓįŲ¬š€"˜WQ–ā–ń²’bR£…‘}å—ī1ĚÜ•-ĖKĮõ¢e½ ÷ź æŚ³ūµBō ŹyR#ņžødž°%dVį3×÷ˆĒ“ś¹ĄŠ¼ Gq7—Ā­*³ÜkU|AµWlÜī'®ö£{-'iQX•;»¦ehäøgɤm*ÆŲćo‚Ķ±yɍ—Äܛ%E€hĢ-¹†;mņnƒü«5•„JIļżŹ3ū‹aÖČ+dž×,GŌFßŲiqF^×H°ą,˜IÄģ/Tb<6#¹aōø£K¼pįżóēĻ᯻,£ŃŅųšq¼ŒVłh5ĆŒ›Ū[ąB'xÖK…‘ +Ék±ę~”° œ”š d^öÓQļ4•Ū$o›ż(T5ū?P šĒ£ŲŌ2¦Ī˜£Ć\‚!c÷äčų—Įńɱ䤛ą˜Õ×õ”ØĄF¹R ĻJL’~õ掎G?§źWÖLTź<9Y«±Ž6Œ@¾äÉ®OüIs{Go*S)R › ]zZ>˜ŹÅįĄ²«)©M Um…·)éS¶¬Ų¾BŽžžÄœ;.;£=+č)€SS*ģ“§O‰½īSøĆN£¶Ī…ē„·1•‚¶.Ųjß*<ڶ}&»čmv®µŻ‹YØ-l\ىL; Fˆ|-GŁ‚Šh—įTopvŚõD•mE Ł2G£7¦üyŽ=ž<ģŁ}’nr9ž\^DE=_ų̃ ŅöĒ,bĆĮĄ’ļ%Šm†ēQlpĘÖSŒh•k!±<<dļź­¦󘊎- N·v6­×Ø›ŃoyJ1 2T © ę ¼°…¾iF—~‚‹ÆÅˆa®oGĖęFOf{r‡3œÓlę‘ĮƒÜ NQĘ÷>”l„Y×ßŲŲO0ōømG‡ī°Ö8ģ’ofšĀ5k{Ų=ݜv{©b#ö„Ŗ‘nS§-ŲkåH›z²Ōā–6&Üm¤qұ D}äß3$wÓē¹x_„Yt4šK±Ó²4cdö1€ōę®@Gš“Ļ™@f©­~¾6šI֘Böf¶'ö°Śłę˜S„³TĒČf“^ɚ Ķ£å}‹±4¦5%8g3ʋ‰HÓŚ<ŗ!9Õ&»qš&­N}ĒN‹Ö]ōa<šē²įph‚<5¬¢ņ™Ü@·yÄ uÓ _Y!ī†f~dnHe¦Jå|42 ĄœšøƒĒd<~ƒ 8ٌļĢx”–K5 `4; briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Modifiers.phpUT÷Hƒ^ķ[ūoŪ¶ž=ļĄRēGżę4I{ūŲ pÓli†!Xŗ”–(‹Ø¾$•–žļ÷>$Y¶ģÄńŅ.›Ą¶tx^ßĒsH™yq0§[[ƒg϶Č3rsI"ž0ļS*É#¢bF^S1Ī3ø|¦ÖY÷Ÿü[pš‘÷L޹RäÅæ¾Ģąk®śAžī[Ńw¹ŠŠ¢"IHOoŸÄŠŠ,$ X&Įdå"„ŠēY—LFįŚ%gWzÜ_æ}’į-ŖŅž©˜*rE% ¹T‚ ÅBrÅU wĄw™"``(Ōζ2š2 ī»PĪOåJīnm²¼fŽ3ÅD¢»U^P˜å!8ŅÅĀT!2š*&‰` 8 ¾å$(„`™ŅwH!y6!©Mdœ Ջ!t㚚U¾õǁ—¶ŒÆg䈇!½d9 C`}{ĆŻyIdOŁļż>¹bfE*p+ Ū)ߊ›WŠģ‘įÄÖ°2aФ KMCBŖ·Wꦔā&ĘPź2{VŖ&”'`M‹„Cän)iŸ§Nmg¼• K§ļqya‚ÆüšÉAĶ䨚6`TžVŽłč—[©÷cN >]Qb ĆJB®Sįīį]üĄ2]Y[Pē9@ƒr ³šž5vŌæDĶĄv,~ģ’ē…Äyé Bņ•(X·“b/41…šMwn¬,ȶTlź k\õJĮbZiäö*;d0ō†»ĀaŽäˆÓeŠ5 ±:HOėņk$!W1.„ŖØÜ.5x>X›¹byņwē †BwĄ¾‰÷"ˆļ7³JƖĶy0—1µIĻ©·—ŖuŻ6ċh"Ł]ęZ3ß*ŁLĪAÓź^5ļ’JĻ—ęžįī×ó’Va0ŪjĖ 6ŌnĖ¢æ¬ß.0ś·é¹.öoøļ&T>Bߝåaąl[ó5Hąšl†*iž©ų>4tzŒéš‘†ĘGę\E¶rōślÓ±GG‰W)l”ÜL³‡õ¼‚mźqd{Ņ,1kŖZ˜Yᅳ”ŽŠ_ŹH#h ņ:•NæĮ°ŅīĒ~ńźōķ8AÆŽŁm껎7Ė;7ŒŠ;²P3’«P[~šÄо Våa¦]ŗ'ma|TJöm†“ś*M‚"ŃĻ«jJ y”šŃ‘aYOŪZ²Vg$Ł4é‡~fZnøż¼Ö ‚‘”ź§F[;‘7Ķ`² Ž.ŗ¼ŠÓ)æf ŸęTKM—ŒÖŁØt® 4>böüŽžLa®qp;ˆYš¹Ś$Õ8tÖK;uÉŁŻ”ćč÷@2Ä»³ŒØmū¤y{znY§\ÖÖwzĢwøÓ x¬N’æŠķõ„ĪÆ_i›Y(č”܃—?›@WWā¹g{o ^Ļ~ÅÖu÷līĄZȧ’łpńÓŪ“‹Ÿyurśö„ōČN— ›ĢÆĶ›GźŠ O[~śÜ1-ü+QĒŠfń*āњh6i£Vį?“Ę«õZ©ŁZ`WŅÜø;±źĶé„ÉUļØšµ&‚Ä­īā·ÖfÜØµžĆŪ³WóšÅŒ‡äöÖśöƽļpÆn5jiÜÕ°Ń›vk£šÉ–[KŸ3ˆņ¾ÅÖL‚o Ļ®‹y[“}␛ö¶>ā ŖÜŁŪW'_æq–<ŲH×4‹‡Z¦!ʃ¶žZÅ:SmYg6‹UzšŽ±†<×HĢ1“^2A'3„,E¼rNęW¾ęĘ"MΘ'š ģį9.!Å~ ®ē3DZnĻqU‹ʟOĖZ”Ųś•Ąę9ōVW†'Œ&G<¹‰Ez°Ķ'n5„ē³9!{W0™'—Ģ„eģśīW$2 ;~ūÆbL™Ō& SŚce‘ČS}µĀcsÖóƤxųĮ;ėdƒ5‰v­¾åµ Uųø¢[-·ć»‡īĒļUĄD°’6Čøh7 ĶžŸMŹ3ži……;,øf9Ūpė§¢YZ±½hQÉim-‰ŌwżÄåų)¤X2ķ§×<§xæÜc˜÷č%Z++{JÆæłŽ#SōśOcédm–žR¬Y É{KM˜÷a©C«•„Æi’HR†2Ł-%HZ(:NžŚ«BMķÕRĮg._l¬ŌTŽƒi<ķgL Rš4°l€)PÖ7*śų Kć6K_s6ā¦%b€ tnyž9wį7Ŗ-xŹŖONgęæÕą“”©8q}ģĀ'ćBĮ,#xĘ?AQŲ M€)Õ’;0›vMÓiR®’?}śä>² ĪķÉĮŃ؈»{ÄœŁÜ™VæTÕG–ŗž}^+Å N›4māXŽõæ:貜™&ɰjš\6M`ö\ĄŽ6Į#b^gš»‡iøuG}nq īŸĖļ½óšawē‹ßŅōvšŽŽÜ÷Į?šżķļt+ĻĄ'Ŗ‚xžą^żmē#L%HƒsĆėÄ0ø3zžŽJ™Ś“N=VįŸŪ–Lmeµēō?ź ŸĘ¼UƓĄŪˆt&ŖÓYŹŪ½}«ĢlAĢ©"+PŲojE*ĒOµŠ[G¢&;Wēsķ×ü.v¤5H«}Ģ—­’PK i5P Č×yÕ4< briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Mutability.phpUT÷Hƒ^„SĮN1½ļWL%ID“{B!* 8“ō֋×ėe§xķ•=N„*ž½c{w‰"|±<žy~ļĶųä¬kŗ¢XĢfĢą®A5j¼wĀŲØQp.\i ‡äƒøWsĪé9…[åK$‚“2׆–ęҶ§}ź„u ØZƒ“Ż£Ćū†@˜ 4JeÜ„=įcāG‹žÓЧāPK i5PĒ‚ĀM¬F briannesbitt-Carbon-f10e22c/src/Carbon/Traits/ObjectInitialisation.phpUT÷Hƒ^=MK1†ļłsš EŚ{[µX*¤ģQ(Łdv3š&K2ŪEÄ’ī$lĖd¾Ÿ¼ė§ŽõJ-f338:ŹŠ’GßėÄ[`‡°Õ©‰ARęKw8—ŽŅ~kīą9‘pĄÜ3¬›n‚„‘ē&ž§Ö—˜ź¢všLģæuŽA ž †,'CÓY3Åp½G-¹ įXē^÷ŪŻį}WVU>všaŌ,eNŌ ŒFb'aĻqH吭° ō³ą_æņqLš8Ɣāņ€·ę ļ1iO¹RØbU›b¢OF‡E‰„—ĖÓÉÄ ƒap‚Ó öķ|šŗo.:A Ż”ZTß§Čr[ųožw”€,<@ĶVźWżPK i5PĒ@“2 ž09 briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Options.phpUT÷Hƒ^ķZ[s;~÷ÆPŖ\dĮ6ńqvCNūų’p6¾T uŹĮ%f(™ +iģÅĮ’}[ŅÜ4#<8öīVŖĀ ĢØū닺[-”ßßĶgóķēĻ7ŠsԟQŽ&Ō#¾ē˜ N˜tˆŁ8 ą•ó OÉŠJņŗÓ@0ŠtFų˜ ~ĖĒżC±å„žŪ˜ō$d hyrĀł‚ŃéL øČ£ 8ˆ &!ó± aŠDs`xwMɍāūŲ=<>ėK(„Ÿ˜an0G.å‚Ńq$ˆ‹nؘĮčĪƈ9¹JŁķū„ƒś‰)W}†©ąÆ76"ž¾Ó_Ż@6Ņ×jģ ҧ>ɽNŻ%1Šł\ŖĢ§ūcPe,µ÷‰˜….G"DĪ S‚8‚S.żūŌń0ē$e?"sŒ(…žŽK։éöõ3ŗ2t_š]ߏƒæųŒN„4ć6 H}SÄæØG„”¼QŽyĆ6¾o ųH_| ģŃ[5GąłZ¹B~ž£Ćˆ‹Š‡a)šāĆÅØ{Öõŗ_ŽQxM£j.i±Ģ»ˆŸ·Õ÷<CH .@Œƒ6\ߣ·½1PĖ œPĘrńBŗ÷†oėÉc” ŽŒŸD¤dķ ~ @h!,:Ó󳣃˲üųÉÄC Ų…÷>Ū…įOCYecĘšb éĄÆąŽ ¦†OY‘ƒžēO Jó„«&ZęKå;bdJž µEŸŹ£S\ĮhHSóš[CoŽ¢Z}w°Ó.ķĆĮNėÕp¹3hĆW£–YP;ŠIøu{Šś2ü¾{gŒMĘŪ/vc”2ˆWyŃ4QĪR”ÖßMÖ^‰Õä¼IĘwZ/MĪŪÄȗ0¶7\īŖÆDÅŲd€Óś¾SĄ_1Ąxé…2ė·•žTYčĒm fńōi…§” b‚ƒ¼Rę¶Ķńńųβm¼3翊½²ÓüĶ~™§Ń¾ś^ Yd3ńŖ4M8Äžrī#ńČĮéņāŌłĆ,xcZå÷©7vZ»ĆeŪ2Į³Ź9ł`‚H—–ah¦ēže˜ß?V¶›/M;Æ Ć7bŠ“›{weśüüj;żi0vWĆyxõ·«Ö0sŅveģ™&\ÜĒÓYĮŌ·jž§ųS“ŽĮÄģ%Q×.†ę缇”‘éŲö6tp²gŠ5pL u€Ņ)ū Lµló¤„ĆcX•Ś­ ߉ń‹±Õ*¼XQPūåźäćĮx°{±žs#Ų(M»lł-·’”C;ü"S—„źęźH• 42(PŃ<ō‘Ui‹ĪGMō¢K¤ŌFē«VĀnąRMŽčła fŠĆĪĀȃN¦{Näį“ŕķŌę6Y*Ń{/c/é.­+č8 ½ŠTĖ=Įa ,"ŗ.f’U•Ų‡i*c^nvÕ‡²«}bÕ“ŒSqČNŲ]©ŽI82%ÕžĆ¾ˆ\ģŹ ÕyiÕA ¦KÉ!ń—l©*tŅh©¼7Hņ…č÷©Bƒ’žš¢µY³Xļ»dΈ£ J?Dų:¤.t£Įē9<&←@å a$'Q”¹-yņø@3Ģ(įͤ$˜&Y½ B !,=ķ@łĻe%¤ Cé`*e i½Māź8+S„}N²sŗ‚Æt!(•”ŗŹ{®ĘTٜcĪe¶M°ĒI£äq°ū*ć-ķ‚évć,l’øģČŖS}eĖŃPßÓfYĆt:V†ņĖ׊ń®4©ŸˆˆŌ)bEUžŖVŹ[Ä幩=ˆ—+Õõ®€ äĘēƒ.Ä0¤ÉCćtā[¢ ™ŅĮŅŁFy©š×‹Ž‰!W;i•?~Ā ĻĪZˆœŠ(=“FP(ļ ģŗŗµų B;YÆ·Ó·gaņLĄ>I9m²äf_cŖŖŒZ/’ĄŽ¦īEšČOŗ1ø*Ņžń©ē‘  ÕeZAƒĀŌŹ:÷" »¬k¼±V?®[³&°¹kZ§2$ÖLl³«Ūwe+3»D]xó+†śžDxüŸšŚ4JĮÅ3|MCV ×!“ aø~Ąé½®=ŹŽŪ׫EŖ?ŖÆ¹,”WÖ. :čåµÉ•ėĀÆ„Ņ „öoÅ|R/ŖtzŌ~Ųŗ"‡S_Œ}rŻzōµ2;‹Äę‹_±ū“Ēī’f)0pķXūyepå:°V*É멾azS$„Ź6å°„Ś(å÷ߒJ¹)u”ŌiŗYį©#Æ%‰„qŌÓI ½G¬)Ā?y¬G«ŽHĒrŚ£ā«(t•\¾łĖ˜Ś¢©>]锏Räą4pb”)Ōp5»a{Ę%µ)Æ-u,Ų,‹¬¤dp‹Ń„[oWž<¦ŒƒZ3µ!z÷.>z±•Ž„s(FLUĻjs8ł«‚±_搊AY…V:ŠĢa™±[…dœ&(YLWś:9˜ĖūX½«ā,žģåŒŲ­Ā)Éå€Ģ€ņH)“?uʁ„žćәZ6¹XU‚õHA߄<›@?£|¤r ž°–0 øƒä÷šµAvg‚ē]@ź[[[)~ĘvWafRr,†ę:óĮ*6Su°ęDLõUŹŽ“‚¬Zć,w£ 5hJD/휊u'½’Ļ9zÓĒsć•üŌģåI’Ÿ+KM —Y‹4‹Yƒl\FįŃLFĮ±ń«Œf+U«YR4c””ŲŲ²ś‘°äź†Õ:”µōo™Q4µYlLń™ųwBܞASk™„¬ Å,&š”PD2¶\Ü ĮĪ ÕUaŽ6ē,œ¹5ˆĶodQŖ$×Ų‹äåĪ8Å2†Rµ“™æ1˳7śkISSŹJxÅT,%ŁÆRŖ&+{»¬…Šc‰ŁÅ:C/’ģ‚=Ćȍüy}ecZ“£‘KĘŃ“LĀrŅŹ»Ņ2cĢhB=ŲsŌ!ĶGįų+qÄčZ6°ŹŸf)żĘVÕ7Ź®F®‚§S:ØI£.RSkMTƒm!$~$’:W²».¬.ły/ Ģ`eĘ „,_ł‰;ķ3¹½öåšC¹ĄSŅ`‹ŗŚk.ŹUé~"½œ^eEĖ%*єn†Ū,}f˜ZsĒ²Čd“šdł ³®n¹…|ųĻŃŃA’øß==œ:=藜R„Ļ= _^§Œ,ÓK—’ž…ćĄ-§œ—äŪŻĘPK i5P&%C”¬Ģ: briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Rounding.phpUT÷Hƒ^ŻX[SŪ8~ĻÆ8ķdj;Ė%BvŹl”»¦Ó YFŲJ¢©-ge™4»šß÷Hņ=v ”}`ż’Ų::śĪw.:Ņž`>›·Z½N§øœ±&̧€æs"$„3 ĒD܆?¹ßȔn”¬·]Ž F8œÓč–I ū·źõćk(·Ü0č'¢æ†B+šÄ¾n8_ 6I ÜŸ¹”Gø$Ÿ„" ’…¼ sŸüvĒčBĻūxz<<’9#$ER°ŪXRLĪp±Ga,\Š ylÆÅI@#„Ÿšr})“Ń^«GŁ7ósŹ%Żk»#¾:!’–æœrü˼#1Źåš»KēŹ ½œbµ.\„1÷Ÿ¦Lź÷.ø”ł]˜ų!²sėŽŸŠ9å^čĶbčūįēC@å,ō¢ŻDīŠ¼CÅĶøķ¬“ˆ$ŗūÓä „ß“`Æ%KH[’“m…zĢŽ Ö¢Q Gečõ}Źī(׆ט÷¹ .‹`ˆęų2ač<’(3B“˜»Šø­dµtŃCŒJ€ņ9ZO[©ÆŒ"DŽ3DŌĪkV.U]IP ^%*īéßy|‹Ń›”(¹B@¶†Õ-¬°ÓĶĆWKK[ŽÖdŲÕxŠADéˆPf”}Öä÷ąŠ%˜@Ł:„a+`¾O9gq`ĮAFč ÉÜŻŻÆĆ£‹Ļ7æ/nĪN?~žŸŸ^uĮZR"¬q÷IK`Ŗ"+Ė&ż˜¤—W_Ÿ©Ü£.ńh“ī“įńŃÉš™Ŗ’Š1¼©(ė>ūt~łĮ(’ćźčārxŚƒĖŁSÕ+ęYDŻŖ—ŲŁŽŽVʘ+Āä{Aåx/w7WEĻgS­}ž¢‹0@cŸˆ<žœĀ4Aų”Ŗ!BåM@ŔŚéŌ)•züżRĻvŗOޤ·¶łE?E+Šx07$V-Œr¬uéWLp{ÅĄ ż–Ė)D}=–G–Ö^Y(ĻØNĪÕÉŃWćĒ/Ćįoł„‡2E©ĢlTYqģT!»ŗUpcD·FQ-„2ōDs…­7 F掔3.€ć.Ł“õŲoÆų7.’BléH²@†fŸyėŌcčź~āG“čgAҶ]ųL’eUDrÜćė"£­¶ę;J_Ų‡mĄęģŖ€ÉdŻYÖ£ql (qgņøńk;tl¶ĘY褀|W’ĘUššѤUExÅ Q‚<-źÉzć½Õiz īŽ4\Ūł'§nnB¹1-Ÿ>˜Œ’ń˜–g>“V Պj­ņØ/‰]ClĄ¢K-Ŗe¼×;H&Ƴ¹³F(ćs“=†,Œ;y6¬LLBb¤%UŚé’e§Ń;G0(¢Uįn°-7jŪµ³Ķ·‹SŠĖē8ŠĖ58œŪŽSć ,ŸĒ„óP‚jś‚Š‹żPÅ$źņ±l‚bc@”Ņ|žÅL5±vÕø~J`óźŲŲlfüavĪ ĪK"23¶V5zFm,11-d€ „̳¹ģįšÓ¼Śe¶b_¦ż“•|ŹC¢œ§¶ŗĪ—UՋyŖ©šŹsq#sjKLZƒŠ5Ę,±²aåŠĶæ$ Dõ•5i+“F$.4חķĆćŋõ×/ŻH’L›¬=ŚÜ&W;ā”1kzllø“jĖi¢õX’KJÕÉńæaTin&tĶ!Š“Ļ¦1#źŽz]*#ū׋ ’‡,¢że«ć Ś=«mm­m„ĖU(A`›ń‘„•Xc ĄĀsÄu¦X9OØēż±•^qØKƐūK˜‡QÄŌ®cWĆšævKŒ¶¬• spšųlH€żoES©øī×ėOOČć,_K*’ōc?¹Ś/³•¼6¶T…’Y²ž½K؛€"ō&©Ę?«»ÉčHBØ3–ųę¶ˆŗ…e«Ó¬”u©WńČRŻ\«¹jH5éJBORćją„Ŗ¾¾1-Ć4Gąõŗź Éō b.h7ū:čVU:]Ø*Ākä]°¾”|Ķ^h ģQ^(Žz—‰|zŚæf룩BݘžXtK‚[„½²g· Üꇻ4|×_R“ś«ØķM¢«GÜłu³O<“³x¼ÆŸ^!VkĪ£Ģx‚ E™f¤%.Ó@}hż PK i5Pü|½‘? briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Serialization.phpUT÷Hƒ^„WmoŪ6žī_q+ŒZ.Ņä{Ņ6ŁśdčŚbĪ> maŠŅ9R+“IÅu—ü÷ŻQ¤Ž•˜¾$OäsĻŻ=w|q^¤ÅlvņģŁ žĮUšŲf9ż-„¶ ¶`S„×Bo”¤WńwqĒdĖęQ¼„ßt&$|@³É¬…žy!駲DZڽņ¦ļ”vmĖ<‡X]§„L Ļb”†Ž”[„wĀfJA‘£ w7īŻwļ/_æż°zĖ[9|6öĀ@’«³Mi1}fSZ!ģF•:F:(q`OfRģŠüąŹ—+-2kĪf³’޹”7"Ļ’_õu¹Cißžˆ±`g 3l+$÷ņģ§Xč¼tż¾śųŒ-·Ū`ó ”‰2p,ؓ pZŽ1ą¶&‚Į®j¤Q…¢Ļɼöķ%\”²įęIe’déĆČO¶…č—ꋚÅ®:{ŁŚŲU;»’D|ŹÉhįWڜŗƒ>0­ą“‚X£˜Š ĆzmŠ®BJҜČA;R·BkqØRłÓß:_§tņœļ‚RĻšņį(ō:ŹZj.tßJU™' oĮSp]Ć’Ve0ՂR†ī„¬f|ļ Ć»O"?—rZŻ›FŻYˆĮ°Q膹š Ę[]g7äó¼”›ģÄ$®0†©ĖŌ=fØįże\քmū9<’›œĖĮ|rJ­*¶ŻÓ„µ"N)ĀŌÜŲļŒ.ŽČķ/Œ°O‘§ńŖVø č ­ńŸmE’#BŪBÕo.ßó5ÕČ]Xo`ūŽh!ķ-”¶½Vkƍdcŗ«ć20”O=*ØcŻÕA7ć~•äø±ģ›ņĆżkÄ“+ÄwÕmˆķŻģ?PK i5PÅ=cLĘ6 briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Test.phpUT÷Hƒ^­WkO9żž_q[UA$łZ(Ė£µŠdµŚrf<‰ÅŒŁž¤°šß÷ŽńxN`a·#$ęq_¾÷œcēćŃr±ģõF{{=؃éBHEĘ’/™¶ R° 'LĻ”ÄWń›ó!Ś’y?Žą-˜„KnfĀZų8£ĒĻ•Ę*?¬LĻ•.„E–A¬–÷ZĢ˜L 1—SŹTéœY”ä>,3ĪšŻJšué÷mrrvy}F”Źśģ‚YX3‰0V‹Yaykaųk7ŖŠ1ĒDIYģØ'YĪ –ļ—r3ÕLXsŠė˜ę$S¦Šü |8e–OEĪ'y^X6ĖšuĻ’5L¹±½æ{€×č’_/ǁéŁõtrłŽ'§×/¦ūiõø@„ŗöą,.ŲĻ^Hc™ÄZ3šŪBKjś‚Kj]`[Æ9ö1VĮ|ĢĻ+¦ķ¬ˆ«W®ž„V–Ē4D÷>PīKµ>Ų(ėš#n6Ŗźc¾ e¹Šļ¢­E2xu¾÷qjWċƐœŠY‰Żj“µ@Ų¶śfÉc‘Š˜eŁ=2įŹU–©µsD LAڌ½Ą[K.T%™WKĘāśäÜ.T²üǰZäx\~iū’įÖ#‰M}\ō,cņˆ r9ņƒ Ø`ų­ˆ-šā2Ūš~ärHd˜ĖÓ§p›i\…Łõļ?‡ßEļŻmĖØ¢cĖ„¤[Ššp#4%A.vsś¶T‰BŒ]"”Źäł $§Š’§C’‘ń…­ØÅ’`9ź āv¦Vœ4ÉGZ µTĄŅ± ų@ę0X±¬Ų„ŽĢ™N0–”ą(0Ī0¬pŖ Fs`)IV#Ķį‚4Ģ Ó4$eEf}fQ˜ŠFf½»ß ļDC‰Eœ¢–QV,Rf÷-{M|tą|t3z,ē¹ mĪ…ŒģŅ»˜”Ģ{ §…Œ‰`øŗPż:ę'h`č“–.ē9·Ģ„¹uEÕ¾ՆĶ—qKQ(ąÓ†®|A]iķu?YYĀ&»A—› ­¹lA¢ ŲÓąhøŽ×tvŽt6le•9ģčsm9%ˆåY$JŗčrYŒ€-’¼8Ļ!jŪ–OukŠUŽ#"KLć.ˆav+~}fJ!%tVŠI°Š>­>e™yžßÆģR»Ÿšī“és-»r¾4̹X‘„z!¢ó6 ˆ€j ūqa7`āŲ½O3ķŹZŖU¾%%©ŹövWt¾ń‡æ(^ģC`yS˜Üæ‰D4¤tŽ*q3éŽ7œÜ¶,/oū­ŃHŌŃ ¤Ü“Z.’łav:yĆ©Ff!ҦMĄāXé¤D› u5xaē)A=[ŲŁ’ÜēF“¢Į!aĆ×E­j\C[å¢juž‡¦åKŃŖćN€BürPæź… bvźł7µĖĖA‚ņ;¬čsTāIŠn¶K¬«‹vwć±ūk‚%š?}?vߗ;Š+1“u^bZŹ6®·ęįRY{²įÖ[5dcš“mTž6~UTĒ”ƒM“8'ŪļīhóvžĮ”ūłŌßżsųu,ĘfXģFū›.ˆė£q˳ƒ˜ŽyµēļFÕAž #k–¶7Śąpz~®„Ł“ęĢł›?™>Ŗ®£T‰I#ųßRuĄÜ lõZ”Ž3ö‹"т5æĮŚs2×U¹…³¹āŽÆųW~æF”3ż²oU”\%"½Æ|·*Mł)tl³Ąš,ÅćWX³õ¹C„ÆłāūÉ×ŪÓćéŁtrqv{žżźāxZŸĪĒō^-O½PK i5P,g(ŗ ; briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Timestamp.phpUT÷Hƒ^ĶVMoŪ8½ėWĢ!…©ĄŽÄqN›Ķ®›¶iŃ:Ą¢č…–(›]‰H*N³ķļś¢?”:FÕÅ0É÷ę½!9Ɨf‹Ģ󶇇ĀtĮD½ –TAȕ–|–kĀ’ėĪ v•ę2`(“būž  S(æ²ņy*)ןĀór óšj6å »h2a¦ĮŒ)M“¬ Ń«ƒŽ’ągę;„‰dȓʸP`ŠH¦ k‡Ļ"*ą&›&ø^Ćöļ †®A>WŚ?„‚}3¹óoĀdł@?®G‘LēRņh”£}ū›å3܇rwIf °†nP}ķš4Rŗ&¼Ī·4EF¬ąŠdēp+‰¤sÕ9"]śŽ!ßæhP–ÆP1+±"„®IšˆĆ#°CNšZ@ļR1m€ °Zš½”(óBŒŲ"8)įő$UüńųÆé»·¾ļ÷.õ£ĆWrķspĒ\± ”j9QœŅķ‡ć÷9oՎ‡c%Ųx,érR³ŻļÜå.Ø Uėˆt^ÜtŗŽUčĆń`0šż•=oŪīgo€»éd§ėŗ‘ż_šQTᤓ%Ī©5ĢYßęž#Ó¶ŖV®;j7Æ÷4ĪŁ³}ÖuSC,S‹ŸSĀė­,eŃ(`m¶>X¼Z¹]2ĶEŲōs~ϰ“IpeD‘̾BČ"šĒŚßpϐΜé÷ĆQ>.9>;=üq> ‡§ēĆó!„2-.3$ō'yŅ„ów"ł›Ä;Ļ6äøoīŹ`„ŖgŖ®“žACŗ'ēé:§Į§>—šd•ph1…Č=%Æ2BĆø'į`…°<ód?®Ŗ«¹ŖūCö–Ö;©éĪĄ”kēŪVźE-%Āö°'+Ä6m -v“QKͰל”•ūIŻEņŽ½"K—č¦ #č92żŸVS0ÜęÜųp &©˜+|'ćJi ‰é¹š…ŽSHžįÄģ ōfWß9%¶ä½‹ČÓÅrūk³wEcŽoē¹Sa×ō¹ ø»}óÆSQ£ņ)äR2ÜvóPj³‡ĒāIs¹ą?węTÜŹŃwļPK i5P¢Zj)7 briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Units.phpUT÷Hƒ^åkoŪ¶ö»dµŌśŃŻ®ą4Ms Ö$]lÆ(ŗĄ %Ś&"KžH9ĶŚü÷>ō D9v×{—nśāHzŌ@ŠpNšŅ€ ų]☣hŠųœ #O¢>yWxF:+ĄĻE’)ŃaŹ9z1ÆÆBxxĒ‹/5čė(–„¦I /ZŽÄt6ē‡> ØGB,Ći/0§QŲBĖ€`ų¶¢äZā½99źŸ ś‚””Ļ1Gט!Ÿ2ÓI‰®)ŸĆ ČĪ¢$ö0ņ„°ŻFˆ„ų©*æ cL9Ūk4–}S?'!'ń@÷jÖV8PKǘóĖIR’0ž% ņžG,…B{¹‰_4 yjĘCßo!–LxŒ=eF8JRnƒē8O $&‰ š^ś ńH‹†ŒćtM gˆSŠć؃ŽFŒrŗ"häLĄŒ1^‘€„“`®q †œ ‡d†-Ą@^óYbĘ;7%ń Ü/Ų`½+“(-ŗxWDĖŲ1įI:pöō×®ü]&šp ŠEŲ÷/„Uɦ•ʹ¾w%в•xø†7G Š-,HcvŃ+ƒ_HžpÅę‚zqŌģ5¾WķP@„§ ŠÆpŒJž‡v„/kż‹Ļ®O§SŠS“_Ø£ĒŚ {U$į9ҌšaźŽkOj9°e.šQ;ŠuWļPÆwzrtq>čŸĘoūcõ· ä’x?£l‘ÄŪ9øÄŒ,D¤9“²ą‡ć%öIz§…ž·PóI³…ƋńŪĆćń›žė”UŲ?rSń?öķ©ˆÓ š.ģF¬nœWRįN.ĪŽ+ဓ»÷…^“ä?Ū Ö: ©K1² ĻĶ"lĶ®œž¼ys’ł@…Ó$&ųźĖ“ƕž/Š\Š*‡…fŖč~¦©©äŁhŲ’ŗźĶ”dm$ˆb®łé|tQŲ’µŒ>¾ŁHD!–’āųš½į-›čׄ\m$;H¬¤x×ļ’\š꓈B>_«ŌÓ'÷[ƒßh2Ɇ~~6üI‰ņĖčšbŲ‚Žwo^ÆŻÓēĻī·>ń°æYŠ|ß?L„ļ÷ÅžÜwõ`ö€Ś·YZĖõƒad8ŗx’-((*? Cš,¶ŌQTņžŁŁÉčōoUÓ'Sœ¼*;B?Æ:– C `äšų)Œ|żO˜2ö”U–·<¤ŸĒŃ5Œ?׵󜳣Wä˜&ę&č”pZbSŗ0ÓõPSĪĶK“y»¾«Ģ €Ļ fONJݾźēė  ®Xó._ ŪęćW}©Qۚ§Į²0ä^H0ąĘĄ6£e-IĢoĄĖC4QŽĆģłŠb1>ƒY6ŸLĖÓē$ŠŪ쩜)·e§¢×§Ārm*³§ĀŚ]°b®śPĻ•X.†qk “4½mƒ£3ž6(ißGvdŪ"ˆ4ǹ,ä ½w4ć8Ę7™S–Ģī¢ĻŸ+@i–Æ¬Ö ÅQˌ®HØgD=ÕĒ?éы—Ä1˜<;‚©8!ła@¼ś˜ Žjż[č©»źūg-Ł€³ęZ0óœŖ×Ī®».>²ÖŁq€“ŠŠłŠC¾`“‚$D×é°§šeZ9exLĖ”'Jec„ezų󚔤;“xĮŒAĪŪßI«T $8.[tÆˆ¦eĶŠ².IÜŌ ¢©qTXf¤ĶĻéõ2]ėɃN =‚¦!Ė$?(+µ”—"×껓’®¤éjv/Ų|ć0Ł44Œüœn@­#Žį~_ĒéģåķnĒ“™ ķ™›÷ ø{Ŗģ‰œōČaļéĒ7ѱµ'į"«ūh~½tQ°;v÷Ł]ŽķØXcŠžKōa]OŲҳ̈́™Į³‚SC@7ĪuŲŗōŌ «©¢7­Aruhl„s󄽎Øų‚ĀÉM„‚ēŅfŠ{ń(.ÄYÉlūņ†[£Ž‘BDfŹ _%C‰śĒćQŽĀCC÷._pŹĒp’xóšČ 68„ż®>/ŠƒŃ¼_ښå]Ņ6µč–ųŁŽ1EĆļd§š&žw%ü=u¬­Śķŗ©2ØjķӆQĘ“åō_Ŗ&˜¬ņ˽–&¶ ,u«ćäĶĀĻ:Ÿ ‡i!Ór5rnĄŽ†r»Éų“åX½E”ÓX¶PgÕEšė%ŗņ~ ŖJ&1†ŁW#S"0"C‹ó<Ė—[Ę‘tZiUdŗ2æ_Ź>Ä)ŌĀ)Ž¢8U} @Yį>¬@pŽH&ń¦4féHŅiBŪhĆxNŸšrˆnv4‰N3U¾y[¤?5“«Ÿ­¦·NŚdźĒ­xŲž&ßx±WØŌԘš^gÕ%Gu)"¬VžØ/ źś:ćj£.KorĻaŸÓ»č]_µq 9Ą— c’ĢМó%ėu»š7ė,ēĖNHøxP’ĒgĻųO½Ŗā²¢j®EEÕĀ"+ŻÖÜź›·ņ­ŸAhŪŪ?ū»5VµŻéI#^ 'Öjd=Ž’ĶmŁU‹ ®H٦¬jź\ėü*»ß,zNg}›ØQ%ż׎Æä‰īŽęQŸ½Ž£E! ń׌’U!9¶d\Ė|fäLń.^“yČ[r‚EŻf€Gf§eLV4JR Ö.[QĮŗĮdžÅ?a:aÉäK§“µs^{óAĻjĻÆp(Ŗmp(" 68`’ĢC”ŁæåP$Óõ~Š“ĖCū’5l!Ņ ¾}?–öųfœ¹tµRC›Ü6žPK i5PŁWž06 briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Week.phpUT÷Hƒ^ķXmoŪ6žī_qƂÖNćø† ˆc§X_† [ó!ŠY¢c!2eT=cĖ߯‘¢(Evœ%`śb‰ä=÷ĀēŽGŸ,f‹Ng°»Ū]ų2K5LÓLž."e Ÿ‚™ x©I.q(¾Ž®Ä>®„åŻø?«4’šYčIj OčóÄĻÜģĒł|ģ–~ŹM‹,ƒ8_¬Tz53ɲ4R£J9ĶÕ<2i.÷`‘‰Ǿ„bÉr松’ųłü#A±}fXF’T•N #X¦f†3h»Ī  T”°±ƒŽŒęB£ł„+~QQjō°r¾į«ׄwK|gOĻĻģ‡,ę”ö`%"Å3q^Hƒ†óH)÷A,„L4`¼Ųć<Ėņe*Æ`”ņ…P&śČ-}ē†Vˆa`'‰VśT^ Vū䣔ģ[7·Fne‡7Z6f–'•Yö“Į݈!JŅ«»ŒG‘Š0‚ƒ^ĖRŚŁnŪ„·°[7ø±V‘5WĀąnH1~Z#ēŗnrēZ¬öŹ•;YGȆnM–UƉ˜FEfüųŽqxČB;Öf£o^ŪüQĘn‚_·.ŗ˜l“• «2pŠ1ž•æ;€³•ž]8f€”ā­ čI)Ė8…ę`¦ß„ÄœQŚŠ&Ь'6–pn’ESgE‚•:¦°8ÉķĆ! N ›ÆNAꠅ1ØP—x¬xß}•ƒļ°ØDs"ę?ä¤ó˜Bį͊b¬ "⁔tc|Sn±óŲē ¦PāB)ĮɈQ•±Ų_«Ņ'’Š>,S•Ļį-tĻ I$“Ć!~EØĆ’b(ŗźÖh²¢ļš”qަ%†›šļ¢˜`”Äś)cŹ ,Š9łĄ)ņf/t°>tQc>–Rō8Ż;T<ūće ģēéa-{õ”JÕÉ “M²RœüŃĻõ†üzÓy^„žć| >—Ä€üŠĒŽaļ‚?Į—ĒīšL³ŽńķGĪkvõ.óé%ōŗGBo‡ h§»ĪųĶŠŌj hś"O­ŠƒaĒė@zø |7rĪłŌDčéĀ®$±½ĘC5’¼×0 =”J ÕŠIO½lŲĆX[uS×Ļ!EŖ²a³žį­’RI{‰[‹ŒØV­<‡`ŪÅx†ń õ[Ē£æ>1u¬G·ĘkFYe¾;ųį°¹Eå3Q"jxę•ō·Óā·{iinŁL»•}Ā·9t=t;h ŖU­$µØAāŽl~m¢!Élō%\ŲsæĒ˜•P P&UĄ£zŽ7˜xŃ\²ŠęF°²Df›ĄA±v•y Æ^YkŽ! ŚE IK÷Y¬O5¦ĶķvĆqߣģ§õa<ŗŸoÖ8.Z×nüāڪ˰]ŗ»ņ–ē- ö_NCżü’mŚZw xō^¶D{ĀŽõ™‘鉚ŁN®å™õ2ūHÆbćyĘÕūįēUļƒ=$ł½õ”äĮMū·µĮŖū5D·Ÿį)ąEfŃcd!°s ßÖ;ʓwøå Ž„½D‹OĶźvśŻ¤_E©‡IżÓ¦j5Š-7ķY”–üŸč¦āņõĪöæÓŗžū_W»åõęAWÕŖūj–‡—VyźŁĄ±Ywƒ­węž’į®²$ŹWÆmƍk:z_䬚9W`źhwŠUEƌŃ^ė‚Ź^’»¹Aet<µUÄWą$NO%Vݵfa ”;ģįĖb„±+€ķkżāŒŒ€#+÷¼ŹŅ#5ŽĻ£ ¹žł*Ńķ6ŗŃ?ÓŠcž|ÓłPK i5PĶMh )5 briannesbitt-Carbon-f10e22c/src/Carbon/Translator.phpUT÷Hƒ^½Z[sŪ6~ׯ@=jIڲd·ūäD¹¬cw<ć¤;qö”#«ˆ„$N(€%@Ūj’’¾7^AYvŚÕƒ-’Ą9¾sõņu¶ĪƒÉįį¢Oė„£e’’3œ ĖH¬ :Ēł‚Qø}Ę+2†±røčßy‚)ś@ų"½\ČĖ7.™GlóŹ ½d¹“,ŅE,ŪęÉj-¦1J“ˆP*é’å,FG(K †{w ¹Wó®ÆĪ/>Ü\HQŹ>±ĘŻcŽā„‹kx¶sVäE±2v2 xC8˜o—ņb0(@žyŹx‘“źā#Y¦$’ś/"’É/ķ—Ŗū7ŪĶ’Ńķķ9ŪdŒ*n?å˜ņė!ƒ(Ŝ#{ ‚ŠøŗĆn«Ēƒ/µņsXŸŹŗJ‰`6HJĀŃ„˜® ½j¼öęēē9ޚ;õ?Ė™€eP\€ī kB§h6“[\ŗ’QĮŪ ”E8Mž €&ĶüÉŖ‡vę~ć$‡y,O`‚ŚóˆQŠD”b„ŪÉ ŗšĶūŒ©‹wŪsC ŌŻÆ%õĄ[菩tĮXڧ0”‰H$†04.qŹI? o0 &€7†įŲ›\Ctōęń8ŽÆŽIī{*Ny#…r}‘śłķ[łŲŒ jx!֟9ĮŖ_[µ]nбĘj;Ōń8®ņaj"D#>¶C"b‚8Į9XƒOu<ŃŠÅÆ[¼'yWiņƒ³Śœ/möu7¦oE2øž=+Ń1EՌźroė×R] Źī0š& ]u=Ė‘t$l2± É­fšł—› *«U]SH¶Bóž=ķȵ>¹”ęūV!ä/ÆS%é¶ųū½Ü,K¾i/[[Zj\„lįTć'ĘśCIé­YŚģ¤„ZŒ®Œå׿‰”ĆyA“?e¢Vbö*Ø,OŁŽS Įį;œ¤xō(ϧ JāÖo‘Œ•°×õĆźä łWŻ'’J*Ła¢:茷o`³„yĀÖ9įłæSķ­]ÆįÜnŗYL4įvšĶÅąžŻ·rÕŽóbĮe-Ž$yĘø½T5ō:”ćķĢæ Jč‹ ÉWeĒM ~&[ī·bXŠ__A¢¬²¤=¤n¦ĖēäÉ'§Čņ“ÜMI*›$/Į ~Y¶:²¤>Ńė ߝӼĒ2b³ér¦ģ^TośJé|&Ņe’ƒĆ‚ķ™OÅSmwBVݳ[ZĒśF•Ųž#€{ä:Īsä[«¢];Ö&ŗR{Ż šUĆn ×żRĻdĻÖtå&®H•ÉNŽģĖØ£"—åōw±ĀtœǾ×ĪSaļū¶¼s QŃ„'åC%¦˜_{œd¤‹Jty3*C d"ĻN·±Ŗū¦å©õś^‰eĻr݂Ԫػ¤®õŃp“źģ©%ā‘'ŠęŖJŽ6ÆWĶÅ0ņ…B‡1®`c§‘‡1"“æGū^£'|W˜ēWaN²G$„{éGŸ}o2;ēž ’5’ņóč[0ńGZ*SÕŗĒįĻĒ)ź@`śżæņm9†mZ©W×į/GåsõąĖ—āĶSŠa‘eźżˆ< cź¢T9;;»3¶ß„śśÕļ]Żü¦īÄ”P3<@/Ń/®JŅą|źqķJҕ׼Š‘Š%-cĖy#½ ”ŻĖ™©ÆF:w +ųułR­ćéķ3¢ö”ił&ī© ø ½očšJę#jŽēįB0ÆS”El“4R® téYžõyųéźżg'^ėÉĶS ēžģp|Ė:hZqÓHqRF‰m6Ŗ„³µxżžBåĘŅąĄpZZśĖҲ×č2žńi ĄŽ¶¾Ąg'sgtģt<ę·#ż OM¶{†S䊫„lb^!Ÿ<œAžæ L™ŖN[e™±ĮQĪģ€@öōk¬Žé-MoXLV]°­ų [Õ!śé§¦å»š „ųzW\īDe›źŖš¾•=ķ®.55īF]‘j®H•Żģa‚;ģŁĒīC > ß(briannesbitt-Carbon-f10e22c/src/Carbon/Doctrine/CarbonType.phpUT÷Hƒ^PK i5P8Ę0%:ØL L,briannesbitt-Carbon-f10e22c/src/Carbon/Doctrine/DateTimeDefaultPrecision.phpUT÷Hƒ^PK i5PŠ0f¬ŗI ł-briannesbitt-Carbon-f10e22c/src/Carbon/Doctrine/DateTimeImmutableType.phpUT÷Hƒ^PK i5PŽEĶæĆ@ j/briannesbitt-Carbon-f10e22c/src/Carbon/Doctrine/DateTimeType.phpUT÷Hƒ^PK i5P2 ”0briannesbitt-Carbon-f10e22c/src/Carbon/Exceptions/UT÷Hƒ^PK i5PN1N+u“F ķ0briannesbitt-Carbon-f10e22c/src/Carbon/Exceptions/BadUnitException.phpUT÷Hƒ^PK i5PüŪgeö J Ļ2briannesbitt-Carbon-f10e22c/src/Carbon/Exceptions/InvalidDateException.phpUT÷Hƒ^PK i5PT» "f§I 65briannesbitt-Carbon-f10e22c/src/Carbon/Exceptions/NotAPeriodException.phpUT÷Hƒ^PK i5PĆf5ĒXM  7briannesbitt-Carbon-f10e22c/src/Carbon/Exceptions/NotLocaleAwareException.phpUT÷Hƒ^PK i5PtéY5“YI G9briannesbitt-Carbon-f10e22c/src/Carbon/Exceptions/ParseErrorException.phpUT÷Hƒ^PK i5Pܲ|M.Å2 k;briannesbitt-Carbon-f10e22c/src/Carbon/Factory.phpUT÷Hƒ^PK i5P ęE¦9öæ; ņObriannesbitt-Carbon-f10e22c/src/Carbon/FactoryImmutable.phpUT÷Hƒ^PK i5P, cbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/UT÷Hƒ^PK i5PŅ—1kńN2 ącbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/aa.phpUT÷Hƒ^PK i5PJBém…5 *ebriannesbitt-Carbon-f10e22c/src/Carbon/Lang/aa_DJ.phpUT÷Hƒ^PK i5Pߟ¦$5  hbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/aa_ER.phpUT÷Hƒ^PK i5P1ƒH³(; vjbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/aa_ER@saaho.phpUT÷Hƒ^PK i5PĖÜż5 élbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/aa_ET.phpUT÷Hƒ^PK i5PJqńÓ 2 Lobriannesbitt-Carbon-f10e22c/src/Carbon/Lang/af.phpUT÷Hƒ^PK i5PhŁ4·õE5 Bsbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/af_NA.phpUT÷Hƒ^PK i5PČ4d’Ė 5 “ubriannesbitt-Carbon-f10e22c/src/Carbon/Lang/af_ZA.phpUT÷Hƒ^PK i5Pqē°¾e(3 ŗvbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/agq.phpUT÷Hƒ^PK i5P3I1ŚńO3 yybriannesbitt-Carbon-f10e22c/src/Carbon/Lang/agr.phpUT÷Hƒ^PK i5PO DĘTM6 Äzbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/agr_PE.phpUT÷Hƒ^PK i5Pīō6ņńN2 u}briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ak.phpUT÷Hƒ^PK i5P?`ęW™5 æ~briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ak_GH.phpUT÷Hƒ^PK i5PO2ańN2 “briannesbitt-Carbon-f10e22c/src/Carbon/Lang/am.phpUT÷Hƒ^PK i5P+ŅhŸłõ5 ž‚briannesbitt-Carbon-f10e22c/src/Carbon/Lang/am_ET.phpUT÷Hƒ^PK i5PW]FŒšN2 S†briannesbitt-Carbon-f10e22c/src/Carbon/Lang/an.phpUT÷Hƒ^PK i5PĒ–ŽŸžŃ5 œ‡briannesbitt-Carbon-f10e22c/src/Carbon/Lang/an_ES.phpUT÷Hƒ^PK i5P"żBńO3 –Šbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/anp.phpUT÷Hƒ^PK i5P‰­B:Ó6 į‹briannesbitt-Carbon-f10e22c/src/Carbon/Lang/anp_IN.phpUT÷Hƒ^PK i5P=ŖŸ²Ł2 xŽbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar.phpUT÷Hƒ^PK i5P/ß& Q5 ƒ“briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_AE.phpUT÷Hƒ^PK i5P•IĆ^P~5 0–briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_BH.phpUT÷Hƒ^PK i5PābĆą(5 ܘbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_DJ.phpUT÷Hƒ^PK i5Pmq” œ¦5 šbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_DZ.phpUT÷Hƒ^PK i5P•IĆ^P~5 Ÿbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_EG.phpUT÷Hƒ^PK i5PābĆą(5 ¼”briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_EH.phpUT÷Hƒ^PK i5PābĆą(5 ų¢briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_ER.phpUT÷Hƒ^PK i5PābĆą(5 4¤briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_IL.phpUT÷Hƒ^PK i5PXķlDZ5 p„briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_IN.phpUT÷Hƒ^PK i5PŠų8@š5 Øbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_IQ.phpUT÷Hƒ^PK i5PŠų8@š5 ¬Ŗbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_JO.phpUT÷Hƒ^PK i5PābĆą(5 H­briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_KM.phpUT÷Hƒ^PK i5Pl/””§5 „®briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_KW.phpUT÷Hƒ^PK i5PģÉųä<š5 ³briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_LB.phpUT÷Hƒ^PK i5Pö®uT65 ¶briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_LY.phpUT÷Hƒ^PK i5PŁ/—S–”5 Éŗbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_MA.phpUT÷Hƒ^PK i5PābĆą(5 »æbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_MR.phpUT÷Hƒ^PK i5P•IĆ^P~5 ÷Ąbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_OM.phpUT÷Hƒ^PK i5PābĆą(5 £Ćbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_PS.phpUT÷Hƒ^PK i5P•IĆ^P~5 ßÄbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_QA.phpUT÷Hƒ^PK i5P›NßD“ž5 ‹Ēbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_SA.phpUT÷Hƒ^PK i5P•IĆ^P~5 zĢbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_SD.phpUT÷Hƒ^PK i5PābĆą(5 &Ļbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_SO.phpUT÷Hƒ^PK i5PóœĆ‚L~5 bŠbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_SS.phpUT÷Hƒ^PK i5PŠų8@š5  Óbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_SY.phpUT÷Hƒ^PK i5PKIģĮĀ8 ¦Õbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_Shakl.phpUT÷Hƒ^PK i5PābĆą(5 Ūbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_TD.phpUT÷Hƒ^PK i5PoŸ›śŒ†5 UÜbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_TN.phpUT÷Hƒ^PK i5Pƒf8£F`5 =įbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ar_YE.phpUT÷Hƒ^PK i5Pu®čńN2 ßćbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/as.phpUT÷Hƒ^PK i5P‘Ŗ†¦I 5 )åbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/as_IN.phpUT÷Hƒ^PK i5P¶Yf ė@3 —čbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/asa.phpUT÷Hƒ^PK i5PajańO3 Üźbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ast.phpUT÷Hƒ^PK i5Pš§_n6 'ģbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ast_ES.phpUT÷Hƒ^PK i5PŚl`PņO3 ļbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ayc.phpUT÷Hƒ^PK i5Pē¹čÕ6 Ošbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ayc_PE.phpUT÷Hƒ^PK i5P[›é5PĖ2 ”ņbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/az.phpUT÷Hƒ^PK i5Pha‹K®ż5 =ųbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/az_AZ.phpUT÷Hƒ^PK i5PĢÉ50¶7 Gśbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/az_Cyrl.phpUT÷Hƒ^PK i5P—•Mš45 Õübriannesbitt-Carbon-f10e22c/src/Carbon/Lang/az_IR.phpUT÷Hƒ^PK i5P]"„64Ū7 !briannesbitt-Carbon-f10e22c/src/Carbon/Lang/az_Latn.phpUT÷Hƒ^PK i5PŠ®fA~/3 ³briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bas.phpUT÷Hƒ^PK i5PÉ„°B$2 ‹briannesbitt-Carbon-f10e22c/src/Carbon/Lang/be.phpUT÷Hƒ^PK i5PįīÅ)5 ” briannesbitt-Carbon-f10e22c/src/Carbon/Lang/be_BY.phpUT÷Hƒ^PK i5P“FcKö; briannesbitt-Carbon-f10e22c/src/Carbon/Lang/be_BY@latin.phpUT÷Hƒ^PK i5PDšóO3 zbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/bem.phpUT÷Hƒ^PK i5P ˇŗ6 Ēbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/bem_ZM.phpUT÷Hƒ^PK i5P˜‹wßóO3 «briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ber.phpUT÷Hƒ^PK i5Päjä’6 ųbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ber_DZ.phpUT÷Hƒ^PK i5Päjä’6 cbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ber_MA.phpUT÷Hƒ^PK i5PŖ3Zż3 Ībriannesbitt-Carbon-f10e22c/src/Carbon/Lang/bez.phpUT÷Hƒ^PK i5PoژšĘš2 6briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bg.phpUT÷Hƒ^PK i5P“C Ė 5 U$briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bg_BG.phpUT÷Hƒ^PK i5P;–ęńO3 |%briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bhb.phpUT÷Hƒ^PK i5PC›×åĒ6 Ē&briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bhb_IN.phpUT÷Hƒ^PK i5P<Ū-ńO3  )briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bho.phpUT÷Hƒ^PK i5PHv|ńĀŽ6 T*briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bho_IN.phpUT÷Hƒ^PK i5PķĮńN2 s-briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bi.phpUT÷Hƒ^PK i5P vÅR_5 ½.briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bi_VU.phpUT÷Hƒ^PK i5Pķ·„*Ī2 k1briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bm.phpUT÷Hƒ^PK i5PK)œ™ J2 ī4briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bn.phpUT÷Hƒ^PK i5PéńS˜nG5 S:briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bn_BD.phpUT÷Hƒ^PK i5PBżŖd5 =briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bn_IN.phpUT÷Hƒ^PK i5P#­ß 2 Ż?briannesbitt-Carbon-f10e22c/src/Carbon/Lang/bo.phpUT÷Hƒ^PK i5P&¦ŁĖ 5 BDbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/bo_CN.phpUT÷Hƒ^PK i5PڳąSÓž 5 iEbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/bo_IN.phpUT÷Hƒ^PK i5PĮu¼ĀF 2 ˜Hbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/br.phpUT÷Hƒ^PK i5PÜ7>Ź 5 ³Lbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/br_FR.phpUT÷Hƒ^PK i5PéęLņO3 ŁMbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/brx.phpUT÷Hƒ^PK i5P‰7,G6 %Obriannesbitt-Carbon-f10e22c/src/Carbon/Lang/brx_IN.phpUT÷Hƒ^PK i5PwZ–õČ 2 ÉQbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/bs.phpUT÷Hƒ^PK i5PB7²ņĖ 5 Vbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/bs_BA.phpUT÷Hƒ^PK i5Pŗ8čR;7 >Wbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/bs_Cyrl.phpUT÷Hƒ^PK i5Pķ”Oą(7 ×Ybriannesbitt-Carbon-f10e22c/src/Carbon/Lang/bs_Latn.phpUT÷Hƒ^PK i5Pr¶ńO3 [briannesbitt-Carbon-f10e22c/src/Carbon/Lang/byn.phpUT÷Hƒ^PK i5PU³Ó]€=6 `\briannesbitt-Carbon-f10e22c/src/Carbon/Lang/byn_ER.phpUT÷Hƒ^PK i5P†ś¶2 =_briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ca.phpUT÷Hƒ^PK i5PÄ·7qą(5 „dbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ca_AD.phpUT÷Hƒ^PK i5PWWŪŹ 5 įebriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ca_ES.phpUT÷Hƒ^PK i5PÄ·7qą(> gbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ca_ES_Valencia.phpUT÷Hƒ^PK i5PÄ·7qą(5 Lhbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ca_FR.phpUT÷Hƒ^PK i5PÄ·7qą(5 ˆibriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ca_IT.phpUT÷Hƒ^PK i5Px‡Ø;Ŗ 3 Äjbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ccp.phpUT÷Hƒ^PK i5Płƒ²§ņB6 Ymbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ccp_IN.phpUT÷Hƒ^PK i5P³b’MńN2 Ønbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ce.phpUT÷Hƒ^PK i5Po«ęvŹ25 ņobriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ce_RU.phpUT÷Hƒ^PK i5P"7«žö3 sbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/cgg.phpUT÷Hƒ^PK i5Pźŗ8ńO3 €ubriannesbitt-Carbon-f10e22c/src/Carbon/Lang/chr.phpUT÷Hƒ^PK i5P0RXw6µ6 Ėvbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/chr_US.phpUT÷Hƒ^PK i5PO%ėņO3 ^zbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/cmn.phpUT÷Hƒ^PK i5PRŲ^ü‚I6 Ŗ{briannesbitt-Carbon-f10e22c/src/Carbon/Lang/cmn_TW.phpUT÷Hƒ^PK i5Pn±R¬ņO3 ‰~briannesbitt-Carbon-f10e22c/src/Carbon/Lang/crh.phpUT÷Hƒ^PK i5PXŃNօe6 Õbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/crh_UA.phpUT÷Hƒ^PK i5P-Ā‹÷ą2 ·‚briannesbitt-Carbon-f10e22c/src/Carbon/Lang/cs.phpUT÷Hƒ^PK i5P#ÉåĖ 5 ˆbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/cs_CZ.phpUT÷Hƒ^PK i5PõŹņO3 .‰briannesbitt-Carbon-f10e22c/src/Carbon/Lang/csb.phpUT÷Hƒ^PK i5P8ޱīŽŗ6 zŠbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/csb_PL.phpUT÷Hƒ^PK i5P±˜r§92 ebriannesbitt-Carbon-f10e22c/src/Carbon/Lang/cu.phpUT÷Hƒ^PK i5Pp}Žz‘ 2 ÷briannesbitt-Carbon-f10e22c/src/Carbon/Lang/cv.phpUT÷Hƒ^PK i5Pe-)­Ė 5 R”briannesbitt-Carbon-f10e22c/src/Carbon/Lang/cv_RU.phpUT÷Hƒ^PK i5Pž“c•š 2 y•briannesbitt-Carbon-f10e22c/src/Carbon/Lang/cy.phpUT÷Hƒ^PK i5PÉ? tĖ 5 Ā™briannesbitt-Carbon-f10e22c/src/Carbon/Lang/cy_GB.phpUT÷Hƒ^PK i5Pˆm†Ż 2 éšbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/da.phpUT÷Hƒ^PK i5Pžx6æĖ 5 Ȟbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/da_DK.phpUT÷Hƒ^PK i5Pcj1ßŲ5 ļŸbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/da_GL.phpUT÷Hƒ^PK i5Pxƒ¦Ū3 j”briannesbitt-Carbon-f10e22c/src/Carbon/Lang/dav.phpUT÷Hƒ^PK i5P±Į4 > 2 Ē£briannesbitt-Carbon-f10e22c/src/Carbon/Lang/de.phpUT÷Hƒ^PK i5P:É·žJ5 )Øbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/de_AT.phpUT÷Hƒ^PK i5P"„!™5 Ļ©briannesbitt-Carbon-f10e22c/src/Carbon/Lang/de_BE.phpUT÷Hƒ^PK i5P«Ÿ*Æ5 L«briannesbitt-Carbon-f10e22c/src/Carbon/Lang/de_CH.phpUT÷Hƒ^PK i5PZōž)ū_5 Ҭbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/de_DE.phpUT÷Hƒ^PK i5PÆbü3łZ5 )®briannesbitt-Carbon-f10e22c/src/Carbon/Lang/de_IT.phpUT÷Hƒ^PK i5Pdv|;Ź 5 ~Æbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/de_LI.phpUT÷Hƒ^PK i5P"„!™5 ¤°briannesbitt-Carbon-f10e22c/src/Carbon/Lang/de_LU.phpUT÷Hƒ^PK i5Pе„®>ļ3 !²briannesbitt-Carbon-f10e22c/src/Carbon/Lang/dje.phpUT÷Hƒ^PK i5P-'ĢńO3 ¹“briannesbitt-Carbon-f10e22c/src/Carbon/Lang/doi.phpUT÷Hƒ^PK i5PYm6]`V6 ¶briannesbitt-Carbon-f10e22c/src/Carbon/Lang/doi_IN.phpUT÷Hƒ^PK i5PūŚ—ńO3 Įøbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/dsb.phpUT÷Hƒ^PK i5P½ōēÉ86  ŗbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/dsb_DE.phpUT÷Hƒ^PK i5PLųĄnŗp3 2½briannesbitt-Carbon-f10e22c/src/Carbon/Lang/dua.phpUT÷Hƒ^PK i5Pģ+gęĮV 2 FĄbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/dv.phpUT÷Hƒ^PK i5Pgz6`{^ 5 `Äbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/dv_MV.phpUT÷Hƒ^PK i5Pšc ÷ćż3 7Čbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/dyo.phpUT÷Hƒ^PK i5PŽłndņN2 tŹbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/dz.phpUT÷Hƒ^PK i5Pu·Źę\ 5 æĖbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/dz_BT.phpUT÷Hƒ^PK i5PVēü™žž3 Ļbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ebu.phpUT÷Hƒ^PK i5P„ļk’Ÿi2 YŃbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ee.phpUT÷Hƒ^PK i5PĪ’ļ×5 QŌbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ee_TG.phpUT÷Hƒ^PK i5P‹8mé7®2 ÉÕbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/el.phpUT÷Hƒ^PK i5PĢ„A..ø5 YŪbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/el_CY.phpUT÷Hƒ^PK i5P‚vƕ)¦5 ćÜbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/el_GR.phpUT÷Hƒ^PK i5PŒ}Šõ”› 2 hŽbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en.phpUT÷Hƒ^PK i5Px^“óF6 bābriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_001.phpUT÷Hƒ^PK i5Px^“óF6 ²ćbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_150.phpUT÷Hƒ^PK i5Pi?#CÖ5 åbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_AG.phpUT÷Hƒ^PK i5Px^“óF5 ”ębriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_AI.phpUT÷Hƒ^PK i5Pq~mqĖ 5 šēbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_AS.phpUT÷Hƒ^PK i5Px^“óF5 ébriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_AT.phpUT÷Hƒ^PK i5P&ļŁ$Č5 fźbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_AU.phpUT÷Hƒ^PK i5Px^“óF5 Oģbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_BB.phpUT÷Hƒ^PK i5Px^“óF5 žķbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_BE.phpUT÷Hƒ^PK i5Px^“óF5 ķībriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_BI.phpUT÷Hƒ^PK i5Px^“óF5 <šbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_BM.phpUT÷Hƒ^PK i5Pq~mqĖ 5 ‹ńbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_BS.phpUT÷Hƒ^PK i5Pq~mqĖ 5 ²ņbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_BW.phpUT÷Hƒ^PK i5Pq~mqĖ 5 Łóbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_BZ.phpUT÷Hƒ^PK i5P„‚Ŗåo‰5 õbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_CA.phpUT÷Hƒ^PK i5Px^“óF5 Ėöbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_CC.phpUT÷Hƒ^PK i5Px^“óF5 ųbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_CH.phpUT÷Hƒ^PK i5Px^“óF5 iłbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_CK.phpUT÷Hƒ^PK i5Px^“óF5 øśbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_CM.phpUT÷Hƒ^PK i5Px^“óF5 übriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_CX.phpUT÷Hƒ^PK i5Pźśķf5 Vżbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_CY.phpUT÷Hƒ^PK i5Px^“óF5 ’briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_DE.phpUT÷Hƒ^PK i5Px^“óF5 gbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_DG.phpUT÷Hƒ^PK i5P FLō5 ¶briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_DK.phpUT÷Hƒ^PK i5Pq~mqĖ 5 ^briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_DM.phpUT÷Hƒ^PK i5Px^“óF5 …briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_ER.phpUT÷Hƒ^PK i5Px^“óF5 Ōbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_FI.phpUT÷Hƒ^PK i5Px^“óF5 #briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_FJ.phpUT÷Hƒ^PK i5Px^“óF5 rbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_FK.phpUT÷Hƒ^PK i5Px^“óF5 Į briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_FM.phpUT÷Hƒ^PK i5PŽFIŸ~±5  briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_GB.phpUT÷Hƒ^PK i5Px^“óF5 ź briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_GD.phpUT÷Hƒ^PK i5Px^“óF5 9briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_GG.phpUT÷Hƒ^PK i5Px^“óF5 ˆbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_GH.phpUT÷Hƒ^PK i5Px^“óF5 ×briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_GI.phpUT÷Hƒ^PK i5Px^“óF5 &briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_GM.phpUT÷Hƒ^PK i5Pq~mqĖ 5 ubriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_GU.phpUT÷Hƒ^PK i5Px^“óF5 œbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_GY.phpUT÷Hƒ^PK i5PČDh‚CÅ5 ėbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_HK.phpUT÷Hƒ^PK i5P‚ŹćČ5 Šbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_IE.phpUT÷Hƒ^PK i5P&oqŪi|5 sbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_IL.phpUT÷Hƒ^PK i5Px^“óF5 8briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_IM.phpUT÷Hƒ^PK i5P„4E‹›5 ‡briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_IN.phpUT÷Hƒ^PK i5Px^“óF5 nbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_IO.phpUT÷Hƒ^PK i5P‘°l'6 ½briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_ISO.phpUT÷Hƒ^PK i5Px^“óF5 A!briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_JE.phpUT÷Hƒ^PK i5Pq~mqĖ 5 "briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_JM.phpUT÷Hƒ^PK i5Pq~mqĖ 5 ·#briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_KE.phpUT÷Hƒ^PK i5Px^“óF5 Ž$briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_KI.phpUT÷Hƒ^PK i5Px^“óF5 -&briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_KN.phpUT÷Hƒ^PK i5Px^“óF5 |'briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_KY.phpUT÷Hƒ^PK i5Px^“óF5 Ė(briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_LC.phpUT÷Hƒ^PK i5Px^“óF5 *briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_LR.phpUT÷Hƒ^PK i5Px^“óF5 i+briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_LS.phpUT÷Hƒ^PK i5Px^“óF5 ø,briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_MG.phpUT÷Hƒ^PK i5Pq~mqĖ 5 .briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_MH.phpUT÷Hƒ^PK i5Pq~mqĖ 5 ./briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_MO.phpUT÷Hƒ^PK i5Px^“óF5 U0briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_MP.phpUT÷Hƒ^PK i5Px^“óF5 ¤1briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_MS.phpUT÷Hƒ^PK i5Pq~mqĖ 5 ó2briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_MT.phpUT÷Hƒ^PK i5Px^“óF5 4briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_MU.phpUT÷Hƒ^PK i5Px^“óF5 i5briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_MW.phpUT÷Hƒ^PK i5Px^“óF5 ø6briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_MY.phpUT÷Hƒ^PK i5Px^“óF5 8briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_NA.phpUT÷Hƒ^PK i5Px^“óF5 V9briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_NF.phpUT÷Hƒ^PK i5P«įņ”5 „:briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_NG.phpUT÷Hƒ^PK i5Px^“óF5 <briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_NL.phpUT÷Hƒ^PK i5Px^“óF5 g=briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_NR.phpUT÷Hƒ^PK i5Px^“óF5 ¶>briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_NU.phpUT÷Hƒ^PK i5PĀ5NoŽČ5 @briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_NZ.phpUT÷Hƒ^PK i5Px^“óF5 ļAbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_PG.phpUT÷Hƒ^PK i5PČDh‚CÅ5 >Cbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_PH.phpUT÷Hƒ^PK i5Pq~mqĖ 5 ŻDbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_PK.phpUT÷Hƒ^PK i5Px^“óF5 Fbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_PN.phpUT÷Hƒ^PK i5Pq~mqĖ 5 SGbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_PR.phpUT÷Hƒ^PK i5Px^“óF5 zHbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_PW.phpUT÷Hƒ^PK i5Px^“óF5 ÉIbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_RW.phpUT÷Hƒ^PK i5Px^“óF5 Kbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_SB.phpUT÷Hƒ^PK i5Px^“óF5 gLbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_SC.phpUT÷Hƒ^PK i5P'Ą._5 ¶Mbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_SD.phpUT÷Hƒ^PK i5Px^“óF5 Obriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_SE.phpUT÷Hƒ^PK i5Pķ„Q®Qi5 cPbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_SG.phpUT÷Hƒ^PK i5Px^“óF5 Rbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_SH.phpUT÷Hƒ^PK i5Px^“óF5 _Sbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_SI.phpUT÷Hƒ^PK i5Px^“óF5 ®Tbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_SL.phpUT÷Hƒ^PK i5Px^“óF5 żUbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_SS.phpUT÷Hƒ^PK i5Px^“óF5 LWbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_SX.phpUT÷Hƒ^PK i5Px^“óF5 ›Xbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_SZ.phpUT÷Hƒ^PK i5Px^“óF5 źYbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_TC.phpUT÷Hƒ^PK i5Px^“óF5 9[briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_TK.phpUT÷Hƒ^PK i5Px^“óF5 ˆ\briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_TO.phpUT÷Hƒ^PK i5Pq~mqĖ 5 ×]briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_TT.phpUT÷Hƒ^PK i5Px^“óF5 ž^briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_TV.phpUT÷Hƒ^PK i5Px^“óF5 M`briannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_TZ.phpUT÷Hƒ^PK i5Px^“óF5 œabriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_UG.phpUT÷Hƒ^PK i5Pq~mqĖ 5 ėbbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_UM.phpUT÷Hƒ^PK i5Pq~mqĖ 5 dbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_US.phpUT÷Hƒ^PK i5Pq~mqĖ ; 9ebriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_US_Posix.phpUT÷Hƒ^PK i5Px^“óF5 ffbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_VC.phpUT÷Hƒ^PK i5Px^“óF5 µgbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_VG.phpUT÷Hƒ^PK i5Pq~mqĖ 5 ibriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_VI.phpUT÷Hƒ^PK i5Px^“óF5 +jbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_VU.phpUT÷Hƒ^PK i5Pq~mqĖ 5 zkbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_WS.phpUT÷Hƒ^PK i5P7‚æ$z5 ”lbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_ZA.phpUT÷Hƒ^PK i5PŹü¤_Eš5 wnbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_ZM.phpUT÷Hƒ^PK i5Pq~mqĖ 5 pbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/en_ZW.phpUT÷Hƒ^PK i5P¶{1Żq± 2 ?qbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/eo.phpUT÷Hƒ^PK i5P© k` 2  ubriannesbitt-Carbon-f10e22c/src/Carbon/Lang/es.phpUT÷Hƒ^PK i5P‡ädŖ'¦6 Ķybriannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_419.phpUT÷Hƒ^PK i5P‡ädŖ'¦5 Q{briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_AR.phpUT÷Hƒ^PK i5PĖĢņ &¦5 Ō|briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_BO.phpUT÷Hƒ^PK i5P” ÕņF5 V~briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_BR.phpUT÷Hƒ^PK i5P” ÕņF5 ¤briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_BZ.phpUT÷Hƒ^PK i5P‡ädŖ'¦5 ņ€briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_CL.phpUT÷Hƒ^PK i5P‡ädŖ'¦5 u‚briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_CO.phpUT÷Hƒ^PK i5Pažźč3Į5 ųƒbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_CR.phpUT÷Hƒ^PK i5P ösóF5 ‡…briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_CU.phpUT÷Hƒ^PK i5PYÓb1‘«5 ֆbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_DO.phpUT÷Hƒ^PK i5P ösóF5 ƈbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_EA.phpUT÷Hƒ^PK i5P‡ädŖ'¦5 Šbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_EC.phpUT÷Hƒ^PK i5PEV?ķD5 •‹briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_ES.phpUT÷Hƒ^PK i5P ösóF5 ތbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_GQ.phpUT÷Hƒ^PK i5P‡ädŖ'¦5 -Žbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_GT.phpUT÷Hƒ^PK i5P‡ädŖ'¦5 °briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_HN.phpUT÷Hƒ^PK i5P ösóF5 3‘briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_IC.phpUT÷Hƒ^PK i5P‡ädŖ'¦5 ‚’briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_MX.phpUT÷Hƒ^PK i5P-¶|K5Į5 ”briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_NI.phpUT÷Hƒ^PK i5P‡ädŖ'¦5 –•briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_PA.phpUT÷Hƒ^PK i5P‡ädŖ'¦5 —briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_PE.phpUT÷Hƒ^PK i5P[Ū;ń@85 œ˜briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_PH.phpUT÷Hƒ^PK i5P-¶|K5Į5 8šbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_PR.phpUT÷Hƒ^PK i5P‡ädŖ'¦5 ɛbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_PY.phpUT÷Hƒ^PK i5P‰[É|ƒ5 Lbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_SV.phpUT÷Hƒ^PK i5P»(RHŻk5 $Ÿbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_US.phpUT÷Hƒ^PK i5P4ŠĶ 5 ]”briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_UY.phpUT÷Hƒ^PK i5P‡ädŖ'¦5 :£briannesbitt-Carbon-f10e22c/src/Carbon/Lang/es_VE.phpUT÷Hƒ^PK i5Pānc 2 ½¤briannesbitt-Carbon-f10e22c/src/Carbon/Lang/et.phpUT÷Hƒ^PK i5P’SœĖ 5 ©briannesbitt-Carbon-f10e22c/src/Carbon/Lang/et_EE.phpUT÷Hƒ^PK i5Pt¶1\Ō2 AŖbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/eu.phpUT÷Hƒ^PK i5P S¼PĖ 5 ö­briannesbitt-Carbon-f10e22c/src/Carbon/Lang/eu_ES.phpUT÷Hƒ^PK i5Pš¶čż­Z3 Æbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ewo.phpUT÷Hƒ^PK i5P³>Ąą(2 $²briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fa.phpUT÷Hƒ^PK i5PZø1¼K 5 ]·briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fa_AF.phpUT÷Hƒ^PK i5PPĄ‘Ė 5 ¹briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fa_IR.phpUT÷Hƒ^PK i5Pß/’¶—2 +ŗbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ff.phpUT÷Hƒ^PK i5PY›Ė 5 :½briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ff_CM.phpUT÷Hƒ^PK i5PY›Ė 5 a¾briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ff_GN.phpUT÷Hƒ^PK i5PWtģU&5 ˆæbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ff_MR.phpUT÷Hƒ^PK i5Pį²Y¹ś^5  Įbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ff_SN.phpUT÷Hƒ^PK i5P± ßv¢ 2 `Ābriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fi.phpUT÷Hƒ^PK i5P­K%BŹ 5 ŠĘbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fi_FI.phpUT÷Hƒ^PK i5Pifö)ņO3 öĒbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fil.phpUT÷Hƒ^PK i5P”³1¤Ē06 BÉbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fil_PH.phpUT÷Hƒ^PK i5P©ŒŲ@’2 fĢbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fo.phpUT÷Hƒ^PK i5PČB‹UŅ5 ’Ļbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fo_DK.phpUT÷Hƒ^PK i5P*BJ„Ė 5 yŃbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fo_FO.phpUT÷Hƒ^PK i5PļiõōÅ‘ 2  Ņbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr.phpUT÷Hƒ^PK i5P~łłEŃ5 ¾×briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_BE.phpUT÷Hƒ^PK i5PŠfōcŹ 5 _Łbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_BF.phpUT÷Hƒ^PK i5PŠfōcŹ 5 …Śbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_BI.phpUT÷Hƒ^PK i5PŠfōcŹ 5 «Ūbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_BJ.phpUT÷Hƒ^PK i5PŠfōcŹ 5 ŃÜbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_BL.phpUT÷Hƒ^PK i5Pß6¾Rū5 ÷Żbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_CA.phpUT÷Hƒ^PK i5PŠfōcŹ 5 „ßbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_CD.phpUT÷Hƒ^PK i5PŠfōcŹ 5 Ėąbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_CF.phpUT÷Hƒ^PK i5PŠfōcŹ 5 ńįbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_CG.phpUT÷Hƒ^PK i5PŖ°“v>Ė5 ćbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_CH.phpUT÷Hƒ^PK i5PŠfōcŹ 5 ±äbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_CI.phpUT÷Hƒ^PK i5P ³ Ć÷L5 ×åbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_CM.phpUT÷Hƒ^PK i5P.J«‡7'5 *ēbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_DJ.phpUT÷Hƒ^PK i5P “¢ąC@5 ½čbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_DZ.phpUT÷Hƒ^PK i5PŠfōcŹ 5 \źbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_FR.phpUT÷Hƒ^PK i5PŠfōcŹ 5 ‚ėbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_GA.phpUT÷Hƒ^PK i5PŠfōcŹ 5 Øģbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_GF.phpUT÷Hƒ^PK i5PŠfōcŹ 5 Īķbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_GN.phpUT÷Hƒ^PK i5PŠfōcŹ 5 ōībriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_GP.phpUT÷Hƒ^PK i5PŠfōcŹ 5 šbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_GQ.phpUT÷Hƒ^PK i5PŠfōcŹ 5 @ńbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_HT.phpUT÷Hƒ^PK i5PŠfōcŹ 5 fņbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_KM.phpUT÷Hƒ^PK i5P³]öŌ_5 Œóbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_LU.phpUT÷Hƒ^PK i5PpŠ:_5 Gõbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_MA.phpUT÷Hƒ^PK i5PŠfōcŹ 5 „öbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_MC.phpUT÷Hƒ^PK i5PŠfōcŹ 5 Ė÷briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_MF.phpUT÷Hƒ^PK i5PŠfōcŹ 5 ńųbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_MG.phpUT÷Hƒ^PK i5PŠfōcŹ 5 śbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_ML.phpUT÷Hƒ^PK i5PŠfōcŹ 5 =ūbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_MQ.phpUT÷Hƒ^PK i5PĄd2½& 5 cübriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_MR.phpUT÷Hƒ^PK i5PŠfōcŹ 5 åżbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_MU.phpUT÷Hƒ^PK i5PŠfōcŹ 5  ’briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_NC.phpUT÷Hƒ^PK i5PŠfōcŹ 5 1briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_NE.phpUT÷Hƒ^PK i5PŠfōcŹ 5 Wbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_PF.phpUT÷Hƒ^PK i5PŠfōcŹ 5 }briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_PM.phpUT÷Hƒ^PK i5PŠfōcŹ 5 £briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_RE.phpUT÷Hƒ^PK i5PŠfōcŹ 5 Ébriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_RW.phpUT÷Hƒ^PK i5PŠfōcŹ 5 ļbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_SC.phpUT÷Hƒ^PK i5PŠfōcŹ 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_SN.phpUT÷Hƒ^PK i5P “¢ąC@5 ;briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_SY.phpUT÷Hƒ^PK i5PĄd2½& 5 Ś briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_TD.phpUT÷Hƒ^PK i5PŠfōcŹ 5 \ briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_TG.phpUT÷Hƒ^PK i5PĘźŗ5"5 ‚ briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_TN.phpUT÷Hƒ^PK i5PĄd2½& 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_VU.phpUT÷Hƒ^PK i5PŠfōcŹ 5 •briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_WF.phpUT÷Hƒ^PK i5PŠfōcŹ 5 »briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fr_YT.phpUT÷Hƒ^PK i5P—ł÷ńO3 įbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/fur.phpUT÷Hƒ^PK i5Pyć•č.6 ,briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fur_IT.phpUT÷Hƒ^PK i5P§Ž‹9’œ 2 ·briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fy.phpUT÷Hƒ^PK i5PÕÕØ€ 5 ¢briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fy_DE.phpUT÷Hƒ^PK i5PźČĒ„õÜ5  briannesbitt-Carbon-f10e22c/src/Carbon/Lang/fy_NL.phpUT÷Hƒ^PK i5P(¼ŒŻ’ 2 Zbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ga.phpUT÷Hƒ^PK i5P[D»†Ė 5 "briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ga_IE.phpUT÷Hƒ^PK i5P˜Ē_ÉÉ 2 ·#briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gd.phpUT÷Hƒ^PK i5P?J[ĪĖ 5 Ł'briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gd_GB.phpUT÷Hƒ^PK i5P8Ö¼ņO3 )briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gez.phpUT÷Hƒ^PK i5Pą†»¹Ē€6 L*briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gez_ER.phpUT÷Hƒ^PK i5PŗU’EÜ6 p-briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gez_ET.phpUT÷Hƒ^PK i5P¾ōH@œ 2 0briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gl.phpUT÷Hƒ^PK i5PŠQ¾Ė 5 Š4briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gl_ES.phpUT÷Hƒ^PK i5PÄsī ņQ3 ±5briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gom.phpUT÷Hƒ^PK i5PMŅĻ6Qś8 ż6briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gom_Latn.phpUT÷Hƒ^PK i5PŒ5Ę­ 3 ­:briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gsw.phpUT÷Hƒ^PK i5PSóOĢ 6 ¤=briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gsw_CH.phpUT÷Hƒ^PK i5PśR{k6 Ķ>briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gsw_FR.phpUT÷Hƒ^PK i5PśR{k6 „@briannesbitt-Carbon-f10e22c/src/Carbon/Lang/gsw_LI.phpUT÷Hƒ^PK i5P"O'DR 2 }Bbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/gu.phpUT÷Hƒ^PK i5PŠ{J~Ė 5 (Gbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/gu_IN.phpUT÷Hƒ^PK i5P_£hžJ”3 OHbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/guz.phpUT÷Hƒ^PK i5P Ä©éńN2 óJbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/gv.phpUT÷Hƒ^PK i5P.•Ź}Ī5 =Lbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/gv_GB.phpUT÷Hƒ^PK i5PÄūŁb˜ļ2 Obriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ha.phpUT÷Hƒ^PK i5PŠ‹YŹ 5 Rbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ha_GH.phpUT÷Hƒ^PK i5PŠ‹YŹ 5 -Sbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ha_NE.phpUT÷Hƒ^PK i5PŠ‹YŹ 5 STbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ha_NG.phpUT÷Hƒ^PK i5P/{PņO3 yUbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/hak.phpUT÷Hƒ^PK i5PšPש6 ÅVbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/hak_TW.phpUT÷Hƒ^PK i5P2ĘÄe€3 ²Ybriannesbitt-Carbon-f10e22c/src/Carbon/Lang/haw.phpUT÷Hƒ^PK i5Pšœ- ž 2 q\briannesbitt-Carbon-f10e22c/src/Carbon/Lang/he.phpUT÷Hƒ^PK i5Pp…HŻĖ 5 Ō`briannesbitt-Carbon-f10e22c/src/Carbon/Lang/he_IL.phpUT÷Hƒ^PK i5P‹œC.’ 2 ūabriannesbitt-Carbon-f10e22c/src/Carbon/Lang/hi.phpUT÷Hƒ^PK i5P?ēŠĖ 5 ‚fbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/hi_IN.phpUT÷Hƒ^PK i5PŪ@¬ņO3 ©gbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/hif.phpUT÷Hƒ^PK i5P{9ätrš6 õhbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/hif_FJ.phpUT÷Hƒ^PK i5P~@ÉńO3 Äkbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/hne.phpUT÷Hƒ^PK i5PŽibµKE6 mbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/hne_IN.phpUT÷Hƒ^PK i5PŌ1µ>¹ 2 ·obriannesbitt-Carbon-f10e22c/src/Carbon/Lang/hr.phpUT÷Hƒ^PK i5PoĻRŠ3ō5 Étbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/hr_BA.phpUT÷Hƒ^PK i5PB½6«Ė 5 Xwbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/hr_HR.phpUT÷Hƒ^PK i5PīB` ńO3 xbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/hsb.phpUT÷Hƒ^PK i5P’ķ ÕK6 Źybriannesbitt-Carbon-f10e22c/src/Carbon/Lang/hsb_DE.phpUT÷Hƒ^PK i5PĒ<¦ńN2 ü|briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ht.phpUT÷Hƒ^PK i5P臬O^?5 F~briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ht_HT.phpUT÷Hƒ^PK i5På”vLJĀ2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/hu.phpUT÷Hƒ^PK i5P[“ó”Ė 5 ą…briannesbitt-Carbon-f10e22c/src/Carbon/Lang/hu_HU.phpUT÷Hƒ^PK i5PrZĶĶØ± 2 ‡briannesbitt-Carbon-f10e22c/src/Carbon/Lang/hy.phpUT÷Hƒ^PK i5Pa®zƒ]ų5 Œbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/hy_AM.phpUT÷Hƒ^PK i5P śj 4 Įbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/i18n.phpUT÷Hƒ^PK i5P4ć•ģšN2 †briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ia.phpUT÷Hƒ^PK i5P%šŽÖju5 ϐbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ia_FR.phpUT÷Hƒ^PK i5PRÄóŁ“ 2 •“briannesbitt-Carbon-f10e22c/src/Carbon/Lang/id.phpUT÷Hƒ^PK i5P­‘™Ź 5 Ē—briannesbitt-Carbon-f10e22c/src/Carbon/Lang/id_ID.phpUT÷Hƒ^PK i5P “£‹ńN2 ķ˜briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ig.phpUT÷Hƒ^PK i5P+Ügk5 7šbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ig_NG.phpUT÷Hƒ^PK i5P’›W”hr2 śœbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ii.phpUT÷Hƒ^PK i5P7ș¶ńN2 »Ÿbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ik.phpUT÷Hƒ^PK i5P2o>؃ 5 ”briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ik_CA.phpUT÷Hƒ^PK i5P­‘™Ź 2 ä£briannesbitt-Carbon-f10e22c/src/Carbon/Lang/in.phpUT÷Hƒ^PK i5PŹG“åŲ2 „briannesbitt-Carbon-f10e22c/src/Carbon/Lang/is.phpUT÷Hƒ^PK i5PŸ©ēpĖ 5 EØbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/is_IS.phpUT÷Hƒ^PK i5P¤(į/qQ 2 l©briannesbitt-Carbon-f10e22c/src/Carbon/Lang/it.phpUT÷Hƒ^PK i5Pƒ4Ÿ†5 6®briannesbitt-Carbon-f10e22c/src/Carbon/Lang/it_CH.phpUT÷Hƒ^PK i5PHā§ÓķD5 „Æbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/it_IT.phpUT÷Hƒ^PK i5P† "zĖ 5 ī°briannesbitt-Carbon-f10e22c/src/Carbon/Lang/it_SM.phpUT÷Hƒ^PK i5P† "zĖ 5 ²briannesbitt-Carbon-f10e22c/src/Carbon/Lang/it_VA.phpUT÷Hƒ^PK i5Pś'JńN2 <³briannesbitt-Carbon-f10e22c/src/Carbon/Lang/iu.phpUT÷Hƒ^PK i5P,Å Hę¦5 †“briannesbitt-Carbon-f10e22c/src/Carbon/Lang/iu_CA.phpUT÷Hƒ^PK i5P„ÕĆģ2 Č·briannesbitt-Carbon-f10e22c/src/Carbon/Lang/iw.phpUT÷Hƒ^PK i5P±_–;ę2 äŗbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ja.phpUT÷Hƒ^PK i5P £ōwĖ 5 XĄbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ja_JP.phpUT÷Hƒ^PK i5PĄ×Yą(3 Įbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/jgo.phpUT÷Hƒ^PK i5P„HžĻķB3 ¹Ābriannesbitt-Carbon-f10e22c/src/Carbon/Lang/jmc.phpUT÷Hƒ^PK i5P¼/kc;?2 Åbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/jv.phpUT÷Hƒ^PK i5P@5µˆŽ2 ”Čbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ka.phpUT÷Hƒ^PK i5PO·`Ė 5 uĻbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ka_GE.phpUT÷Hƒ^PK i5PÄ~õóO3 œŠbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/kab.phpUT÷Hƒ^PK i5PpW)Q‚6 éŃbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/kab_DZ.phpUT÷Hƒ^PK i5PSl—®~¢3 ČŌbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/kam.phpUT÷Hƒ^PK i5PĢŠ\å53  ×briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kde.phpUT÷Hƒ^PK i5P<Õ3¦3 Śbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/kea.phpUT÷Hƒ^PK i5PłŪŻń;3 īÜbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/khq.phpUT÷Hƒ^PK i5PųR3כ†2 9ßbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ki.phpUT÷Hƒ^PK i5PŠ 9¢– 2 -ābriannesbitt-Carbon-f10e22c/src/Carbon/Lang/kk.phpUT÷Hƒ^PK i5P‡«OńĖ 5 (ēbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/kk_KZ.phpUT÷Hƒ^PK i5PĄ×Yą(3 Očbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/kkj.phpUT÷Hƒ^PK i5PöpµńN2 ‰ébriannesbitt-Carbon-f10e22c/src/Carbon/Lang/kl.phpUT÷Hƒ^PK i5Pó<‹(˜Į5 Óźbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/kl_GL.phpUT÷Hƒ^PK i5P!æµ Ū3 Ēķbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/kln.phpUT÷Hƒ^PK i5PCHb ż· 2 9šbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/km.phpUT÷Hƒ^PK i5P¢ 7Ė 5 ōbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/km_KH.phpUT÷Hƒ^PK i5Põhčč. 2 ¶õbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/kn.phpUT÷Hƒ^PK i5Pㄯ¹Ė 5 ,śbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/kn_IN.phpUT÷Hƒ^PK i5PD ½½Ā 2 Sūbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ko.phpUT÷Hƒ^PK i5P—żóF5 i’briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ko_KP.phpUT÷Hƒ^PK i5P}„uĖ 5 øbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ko_KR.phpUT÷Hƒ^PK i5PŁKŠnņO3 ßbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/kok.phpUT÷Hƒ^PK i5Pn!KAõ 6 +briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kok_IN.phpUT÷Hƒ^PK i5Pė™ńN2 }briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ks.phpUT÷Hƒ^PK i5PjĶ\ ĢĢ5 Ēbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ks_IN.phpUT÷Hƒ^PK i5PĆćVĘDķ@ ļ briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ks_IN@devanagari.phpUT÷Hƒ^PK i5P§åé?3 š briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ksb.phpUT÷Hƒ^PK i5P’“.3 Żbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ksf.phpUT÷Hƒ^PK i5P^Tʱ[3 ebriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ksh.phpUT÷Hƒ^PK i5P?č~"2 pbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ku.phpUT÷Hƒ^PK i5Pžˆ~˜Ė 5 Źbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ku_TR.phpUT÷Hƒ^PK i5PKV--ńN2 ńbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/kw.phpUT÷Hƒ^PK i5Pm0׀‘5 ;briannesbitt-Carbon-f10e22c/src/Carbon/Lang/kw_GB.phpUT÷Hƒ^PK i5Pˆ¹ÅSŖĪ 2 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ky.phpUT÷Hƒ^PK i5PѝŃĻĢ 5 #briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ky_KG.phpUT÷Hƒ^PK i5Pw°HŒ2·3 B$briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lag.phpUT÷Hƒ^PK i5P^†ēaćż 2 Ī&briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lb.phpUT÷Hƒ^PK i5PeŻaŠĖ 5  +briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lb_LU.phpUT÷Hƒ^PK i5Pœ•=ńN2 1,briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lg.phpUT÷Hƒ^PK i5PgrtŠ™Ö5 {-briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lg_UG.phpUT÷Hƒ^PK i5P`ōńN2 p0briannesbitt-Carbon-f10e22c/src/Carbon/Lang/li.phpUT÷Hƒ^PK i5P­5±Ļšą5 ŗ1briannesbitt-Carbon-f10e22c/src/Carbon/Lang/li_NL.phpUT÷Hƒ^PK i5PBkŠņO3 °4briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lij.phpUT÷Hƒ^PK i5Pœn‹č6 ü5briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lij_IT.phpUT÷Hƒ^PK i5PŒ|į ¦Ż3 ä8briannesbitt-Carbon-f10e22c/src/Carbon/Lang/lkt.phpUT÷Hƒ^PK i5Pа<½Ł2 ä:briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ln.phpUT÷Hƒ^PK i5PƒpX]l5 >briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ln_AO.phpUT÷Hƒ^PK i5PWöžW5 Ž?briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ln_CD.phpUT÷Hƒ^PK i5PƒpX]l5 8Abriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ln_CF.phpUT÷Hƒ^PK i5PƒpX]l5 Cbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ln_CG.phpUT÷Hƒ^PK i5Pź=w‰œ 2 ČDbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/lo.phpUT÷Hƒ^PK i5P“ČdŹ 5 ŖHbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/lo_LA.phpUT÷Hƒ^PK i5Pxł°¾3 ŠIbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/lrc.phpUT÷Hƒ^PK i5PśŗJ~ą)6  óO3 ‰bbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/lzh.phpUT÷Hƒ^PK i5PąƒVńŒ6 Öcbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/lzh_TW.phpUT÷Hƒ^PK i5PŻÕ-ņO3 $gbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/mag.phpUT÷Hƒ^PK i5P“śX«6 phbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/mag_IN.phpUT÷Hƒ^PK i5PŪžhńO3 ėjbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/mai.phpUT÷Hƒ^PK i5Pw'į0 y 6 6lbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/mai_IN.phpUT÷Hƒ^PK i5Pš’2¦óŹ3 obriannesbitt-Carbon-f10e22c/src/Carbon/Lang/mas.phpUT÷Hƒ^PK i5P[įNĮóG6 źrbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/mas_TZ.phpUT÷Hƒ^PK i5PŸ·N)hj3 :tbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/mer.phpUT÷Hƒ^PK i5Pāł×}ņO3 üvbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/mfe.phpUT÷Hƒ^PK i5PųžśEL6 Hxbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/mfe_MU.phpUT÷Hƒ^PK i5Pš³(±ńN2 ńzbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/mg.phpUT÷Hƒ^PK i5P“éBž»5 ;|briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mg_MG.phpUT÷Hƒ^PK i5Pęqźh §3 Rbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/mgh.phpUT÷Hƒ^PK i5Pi©Ą“ųÖ3 ·briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mgo.phpUT÷Hƒ^PK i5PvR`ņO3  „briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mhr.phpUT÷Hƒ^PK i5Pä ķ7ö|6 U…briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mhr_RU.phpUT÷Hƒ^PK i5Pv‹tTr2 ؈briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mi.phpUT÷Hƒ^PK i5PpÕpĄĖ 5 UŒbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/mi_NZ.phpUT÷Hƒ^PK i5P{ÉõņO3 |briannesbitt-Carbon-f10e22c/src/Carbon/Lang/miq.phpUT÷Hƒ^PK i5Pņõ^×āŪ6 Ȏbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/miq_NI.phpUT÷Hƒ^PK i5PµzņņO3 ‘briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mjw.phpUT÷Hƒ^PK i5PÆHlįŃ6 S’briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mjw_IN.phpUT÷Hƒ^PK i5P]AGāt2 ‘”briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mk.phpUT÷Hƒ^PK i5P ŅU‚Ė 5 Ģ™briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mk_MK.phpUT÷Hƒ^PK i5PŅ Ś-ų 2 óšbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ml.phpUT÷Hƒ^PK i5PېˆĖ 5 yŸbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ml_IN.phpUT÷Hƒ^PK i5PėŅ…6½2   briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mn.phpUT÷Hƒ^PK i5PiܵŹĖ 5 ¶„briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mn_MN.phpUT÷Hƒ^PK i5PŖaü ńO3 ݦbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/mni.phpUT÷Hƒ^PK i5Pm'×1½ü6 (Øbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/mni_IN.phpUT÷Hƒ^PK i5PWQfuŹ 2 B«briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mo.phpUT÷Hƒ^PK i5P²Šæ: } 2 e¬briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mr.phpUT÷Hƒ^PK i5P ų”įĖ 5 ǰbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/mr_IN.phpUT÷Hƒ^PK i5P_𶀄 2 ī±briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ms.phpUT÷Hƒ^PK i5P•D4"5 ǵbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ms_BN.phpUT÷Hƒ^PK i5Pk¶zšN5 W·briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ms_MY.phpUT÷Hƒ^PK i5P(Y}¾5'5 £øbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ms_SG.phpUT÷Hƒ^PK i5P Ćįš_¹ 2 4ŗbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/mt.phpUT÷Hƒ^PK i5PŠńĪ'Ė 5 ģ½briannesbitt-Carbon-f10e22c/src/Carbon/Lang/mt_MT.phpUT÷Hƒ^PK i5Pń?-k<—3 æbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/mua.phpUT÷Hƒ^PK i5P¤Mdūž:2 ©Įbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/my.phpUT÷Hƒ^PK i5P[äĖ¼Ė 5 Ēbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/my_MM.phpUT÷Hƒ^PK i5P„‘_ĄÆ3 'Čbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/mzn.phpUT÷Hƒ^PK i5P°āÕņO3 AŹbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nan.phpUT÷Hƒ^PK i5Põ–Z—™6 Ėbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nan_TW.phpUT÷Hƒ^PK i5PŌŌžĶūß< Ībriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nan_TW@latin.phpUT÷Hƒ^PK i5PÓĘŁ»×3 ߊbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/naq.phpUT÷Hƒ^PK i5P‚R›ŌÄĶ 2 ōÓbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nb.phpUT÷Hƒ^PK i5Pćõ—¤Ė 5 Ųbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nb_NO.phpUT÷Hƒ^PK i5PļKˆC·5 8Łbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nb_SJ.phpUT÷Hƒ^PK i5PŚ„”Ÿzu2 ©Śbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nd.phpUT÷Hƒ^PK i5PK‚}ŗńO3 |Żbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nds.phpUT÷Hƒ^PK i5P·PĆ6 ĒŽbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nds_DE.phpUT÷Hƒ^PK i5PŲTrŁ  6 “įbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nds_NL.phpUT÷Hƒ^PK i5P¤(ē£5 2 äbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ne.phpUT÷Hƒ^PK i5PŃ/é­5 ¬čbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ne_IN.phpUT÷Hƒ^PK i5PśüR®Ė 5 ńźbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ne_NP.phpUT÷Hƒ^PK i5P§Ō‘óO3 ģbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nhn.phpUT÷Hƒ^PK i5P QóVP6 eķbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nhn_MX.phpUT÷Hƒ^PK i5PSņņ%ńO3 šbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/niu.phpUT÷Hƒ^PK i5P›œDq6 ]ńbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/niu_NU.phpUT÷Hƒ^PK i5Pƒ˜¢”Ņ; 2 +ōbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nl.phpUT÷Hƒ^PK i5P¾c…åŚ5 Vłbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nl_AW.phpUT÷Hƒ^PK i5PEˆkNī5 —ūbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nl_BE.phpUT÷Hƒ^PK i5PŃē±Ė 5 Ażbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nl_BQ.phpUT÷Hƒ^PK i5PŃē±Ė 5 hžbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nl_CW.phpUT÷Hƒ^PK i5PųÓ„BŪæ5 ’briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nl_NL.phpUT÷Hƒ^PK i5PŃē±Ė 5 Ębriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nl_SR.phpUT÷Hƒ^PK i5PŃē±Ė 5 ķbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nl_SX.phpUT÷Hƒ^PK i5Pžœ+o,Š3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nmg.phpUT÷Hƒ^PK i5PŽŚ°DS2 šbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nn.phpUT÷Hƒ^PK i5P¬ą8óŹ 5  briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nn_NO.phpUT÷Hƒ^PK i5PAÓ§FQ„3 6 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nnh.phpUT÷Hƒ^PK i5PKN õxn2 į briannesbitt-Carbon-f10e22c/src/Carbon/Lang/no.phpUT÷Hƒ^PK i5PÜ/ŁņN2 ²briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nr.phpUT÷Hƒ^PK i5PZ,vc ó5 żbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nr_ZA.phpUT÷Hƒ^PK i5P-GY†óO3 ebriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nso.phpUT÷Hƒ^PK i5P*öē—‰–6 ²briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nso_ZA.phpUT÷Hƒ^PK i5P֘e_¼3 ˜briannesbitt-Carbon-f10e22c/src/Carbon/Lang/nus.phpUT÷Hƒ^PK i5PY™ģe3 Qbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/nyn.phpUT÷Hƒ^PK i5PP-Ԛ2 —briannesbitt-Carbon-f10e22c/src/Carbon/Lang/oc.phpUT÷Hƒ^PK i5P>įFŹ 5 Š!briannesbitt-Carbon-f10e22c/src/Carbon/Lang/oc_FR.phpUT÷Hƒ^PK i5P8¶QsŻp2 °"briannesbitt-Carbon-f10e22c/src/Carbon/Lang/om.phpUT÷Hƒ^PK i5P óĢjĖ 5 ę%briannesbitt-Carbon-f10e22c/src/Carbon/Lang/om_ET.phpUT÷Hƒ^PK i5Pv”ÓCųN5  'briannesbitt-Carbon-f10e22c/src/Carbon/Lang/om_KE.phpUT÷Hƒ^PK i5P«ĄńN2 a(briannesbitt-Carbon-f10e22c/src/Carbon/Lang/or.phpUT÷Hƒ^PK i5Pé ņ 5 «)briannesbitt-Carbon-f10e22c/src/Carbon/Lang/or_IN.phpUT÷Hƒ^PK i5Pŗ!ŪńN2 .briannesbitt-Carbon-f10e22c/src/Carbon/Lang/os.phpUT÷Hƒ^PK i5Pü¼ĻFĒ5 _/briannesbitt-Carbon-f10e22c/src/Carbon/Lang/os_RU.phpUT÷Hƒ^PK i5P»AÄæ 2 Ą2briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pa.phpUT÷Hƒ^PK i5PUæqāæ7 Ų6briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pa_Arab.phpUT÷Hƒ^PK i5P]"40-—7 9briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pa_Guru.phpUT÷Hƒ^PK i5P­ä Püc5 £;briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pa_IN.phpUT÷Hƒ^PK i5PPæ­žõ†5 ū<briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pa_PK.phpUT÷Hƒ^PK i5P µJG93 L?briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pap.phpUT÷Hƒ^PK i5PóĆ6Äžk6 ķAbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/pap_AW.phpUT÷Hƒ^PK i5PóĆ6Äžk6 HCbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/pap_CW.phpUT÷Hƒ^PK i5P³9}.ü2 £Dbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/pl.phpUT÷Hƒ^PK i5P2~ÕĖ 5 *Jbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/pl_PL.phpUT÷Hƒ^PK i5P)²(ÆŠ3 QKbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/prg.phpUT÷Hƒ^PK i5Paå=%Ą 2 »Mbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ps.phpUT÷Hƒ^PK i5Pµ]„pĖ 5 9Qbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ps_AF.phpUT÷Hƒ^PK i5Pį6fT 2 `Rbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt.phpUT÷Hƒ^PK i5P¬TAzĖ 5 :Wbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_AO.phpUT÷Hƒ^PK i5Pą²Ķq~5 aXbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_BR.phpUT÷Hƒ^PK i5P¬TAzĖ 5 ĮZbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_CH.phpUT÷Hƒ^PK i5P¬TAzĖ 5 č[briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_CV.phpUT÷Hƒ^PK i5P¬TAzĖ 5 ]briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_GQ.phpUT÷Hƒ^PK i5P¬TAzĖ 5 6^briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_GW.phpUT÷Hƒ^PK i5P¬TAzĖ 5 ]_briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_LU.phpUT÷Hƒ^PK i5P—7Ž‚15 „`briannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_MO.phpUT÷Hƒ^PK i5PK‚ČzņF5 bbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_MZ.phpUT÷Hƒ^PK i5P§¹EŽćĖ5 _cbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_PT.phpUT÷Hƒ^PK i5P¬TAzĖ 5 žebriannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_ST.phpUT÷Hƒ^PK i5P¬TAzĖ 5 Åfbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/pt_TL.phpUT÷Hƒ^PK i5PP!Ų;(2 ģgbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/qu.phpUT÷Hƒ^PK i5PљUóF5 €ibriannesbitt-Carbon-f10e22c/src/Carbon/Lang/qu_BO.phpUT÷Hƒ^PK i5PљUóF5 Ļjbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/qu_EC.phpUT÷Hƒ^PK i5PĻ}Ö4óO3 lbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/quz.phpUT÷Hƒ^PK i5P.z‰/{—6 kmbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/quz_PE.phpUT÷Hƒ^PK i5P5ėżuńO3 Cpbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/raj.phpUT÷Hƒ^PK i5P%‚lżĒß6 Žqbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/raj_IN.phpUT÷Hƒ^PK i5PÜ Ķéž2 ²tbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/rm.phpUT÷Hƒ^PK i5Pcā{¦H2 ōwbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/rn.phpUT÷Hƒ^PK i5P§`(“c 2 ózbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ro.phpUT÷Hƒ^PK i5P˜"pĮ&5 ß~briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ro_MD.phpUT÷Hƒ^PK i5PWQfuŹ 5 a€briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ro_RO.phpUT÷Hƒ^PK i5P†Qs÷ ¬3 ‡briannesbitt-Carbon-f10e22c/src/Carbon/Lang/rof.phpUT÷Hƒ^PK i5PbK‘Z]ą2 ķƒbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ru.phpUT÷Hƒ^PK i5P“|˜Ė 5 £‹briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ru_BY.phpUT÷Hƒ^PK i5P“|˜Ė 5 ʌbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ru_KG.phpUT÷Hƒ^PK i5P“|˜Ė 5 ńbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ru_KZ.phpUT÷Hƒ^PK i5P“|˜Ė 5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ru_MD.phpUT÷Hƒ^PK i5P“|˜Ė 5 ?briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ru_RU.phpUT÷Hƒ^PK i5PōĖ!k·µ5 f‘briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ru_UA.phpUT÷Hƒ^PK i5PW¹nņN2 y“briannesbitt-Carbon-f10e22c/src/Carbon/Lang/rw.phpUT÷Hƒ^PK i5Pco„¦5 Ĕbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/rw_RW.phpUT÷Hƒ^PK i5P„HžĻķB3 ¤—briannesbitt-Carbon-f10e22c/src/Carbon/Lang/rwk.phpUT÷Hƒ^PK i5P žńN2 ė™briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sa.phpUT÷Hƒ^PK i5PÖ~`Ņ 5 5›briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sa_IN.phpUT÷Hƒ^PK i5P zC’ńO3 —žbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sah.phpUT÷Hƒ^PK i5PK:†aõ6 āŸbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sah_RU.phpUT÷Hƒ^PK i5Pž«[Šó§3  ¢briannesbitt-Carbon-f10e22c/src/Carbon/Lang/saq.phpUT÷Hƒ^PK i5P}ŻėTńO3 ķ¤briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sat.phpUT÷Hƒ^PK i5P^÷4ŅąĒ 6 8¦briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sat_IN.phpUT÷Hƒ^PK i5P·«Æb3 u©briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sbp.phpUT÷Hƒ^PK i5P>™KšN2 Ń«briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sc.phpUT÷Hƒ^PK i5P˜NJ¶Ž5 ­briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sc_IT.phpUT÷Hƒ^PK i5P]…QS÷2 ,°briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sd.phpUT÷Hƒ^PK i5Pnć•Ćż”5 Ų³briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sd_IN.phpUT÷Hƒ^PK i5P$Z˜:@ 1¶briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sd_IN@devanagari.phpUT÷Hƒ^PK i5Pg9Ÿ 2 Ņøbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/se.phpUT÷Hƒ^PK i5Pr®åqżv5 ʼbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/se_FI.phpUT÷Hƒ^PK i5PÜYŻóĖ 5 #æbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/se_NO.phpUT÷Hƒ^PK i5PÜYŻóĖ 5 JĄbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/se_SE.phpUT÷Hƒ^PK i5P¤woŃ3 qĮbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/seh.phpUT÷Hƒ^PK i5Pč&¾ˆu3 œĆbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ses.phpUT÷Hƒ^PK i5P¢_e“Ś2 ~Ębriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sg.phpUT÷Hƒ^PK i5P²5ņO3 ‹Ébriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sgs.phpUT÷Hƒ^PK i5P¾._»ŗ6 ׏briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sgs_LT.phpUT÷Hƒ^PK i5Pų›(}Š: 2 ļĶbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sh.phpUT÷Hƒ^PK i5PˆŲßč 3 Ņbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/shi.phpUT÷Hƒ^PK i5P*2ˆ,õ8 ZÕbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/shi_Latn.phpUT÷Hƒ^PK i5PtĶ&Ģ 8 å×briannesbitt-Carbon-f10e22c/src/Carbon/Lang/shi_Tfng.phpUT÷Hƒ^PK i5PL-xVņO3 Łbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/shn.phpUT÷Hƒ^PK i5PģpķĆ6 \Śbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/shn_MM.phpUT÷Hƒ^PK i5P]jw¬ńO3 ÓŽbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/shs.phpUT÷Hƒ^PK i5P5ó.|6 ąbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/shs_CA.phpUT÷Hƒ^PK i5PžEt{ī| 2 ÷ābriannesbitt-Carbon-f10e22c/src/Carbon/Lang/si.phpUT÷Hƒ^PK i5P“Lr¤Ė 5 >ēbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/si_LK.phpUT÷Hƒ^PK i5Pæ±^÷ńO3 ečbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sid.phpUT÷Hƒ^PK i5Pąź2šÜ6 °ébriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sid_ET.phpUT÷Hƒ^PK i5PQtF±z 2 żėbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sk.phpUT÷Hƒ^PK i5PīKWęĖ 5 tšbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sk_SK.phpUT÷Hƒ^PK i5PLÆ{h+2 ›ńbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sl.phpUT÷Hƒ^PK i5P÷B’ģĖ 5 \÷briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sl_SI.phpUT÷Hƒ^PK i5PĀ"±wņN2 ƒųbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sm.phpUT÷Hƒ^PK i5P:‹Š*cö5 Īłbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sm_WS.phpUT÷Hƒ^PK i5P,Z¦Ō3 übriannesbitt-Carbon-f10e22c/src/Carbon/Lang/smn.phpUT÷Hƒ^PK i5Pč²t€j¬2 »’briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sn.phpUT÷Hƒ^PK i5P·ĻdŁńN2 ~briannesbitt-Carbon-f10e22c/src/Carbon/Lang/so.phpUT÷Hƒ^PK i5P6> • 5 Čbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/so_DJ.phpUT÷Hƒ^PK i5P„HŒE5 ¹briannesbitt-Carbon-f10e22c/src/Carbon/Lang/so_ET.phpUT÷Hƒ^PK i5P„HŒE5  briannesbitt-Carbon-f10e22c/src/Carbon/Lang/so_KE.phpUT÷Hƒ^PK i5P¶ŗL$ c5 w briannesbitt-Carbon-f10e22c/src/Carbon/Lang/so_SO.phpUT÷Hƒ^PK i5P„Cşq§ 2 Ż briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sq.phpUT÷Hƒ^PK i5P f, Ė 5 §briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sq_AL.phpUT÷Hƒ^PK i5P:€šŠ5 Ībriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sq_MK.phpUT÷Hƒ^PK i5P:€šŠ5 Dbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sq_XK.phpUT÷Hƒ^PK i5P‹Ó]ŌJ52 ŗbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr.phpUT÷Hƒ^PK i5PfæŸSĻ7 ]briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_Cyrl.phpUT÷Hƒ^PK i5Pė©·ąØ:  briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_Cyrl_BA.phpUT÷Hƒ^PK i5P{탿…: "briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_Cyrl_ME.phpUT÷Hƒ^PK i5Pł”cEŗ: “'briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_Cyrl_XK.phpUT÷Hƒ^PK i5Pīa£…Ė 7 9)briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_Latn.phpUT÷Hƒ^PK i5PJ–¦ū{Ć: b*briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_Latn_BA.phpUT÷Hƒ^PK i5P~[犲x: >,briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_Latn_ME.phpUT÷Hƒ^PK i5P±L¤–: Q/briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_Latn_XK.phpUT÷Hƒ^PK i5P÷²›Š5 Ī0briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_ME.phpUT÷Hƒ^PK i5På&*Bc5 ś1briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_RS.phpUT÷Hƒ^PK i5Pīa£…Ė ; W3briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sr_RS@latin.phpUT÷Hƒ^PK i5PuC€®< 2 „4briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ss.phpUT÷Hƒ^PK i5Ppa IĖ 5 ‹8briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ss_ZA.phpUT÷Hƒ^PK i5P ŪmņN2 ²9briannesbitt-Carbon-f10e22c/src/Carbon/Lang/st.phpUT÷Hƒ^PK i5P}ć"¤5 ż:briannesbitt-Carbon-f10e22c/src/Carbon/Lang/st_ZA.phpUT÷Hƒ^PK i5P=«ƒ_ķ¬ 2 ż=briannesbitt-Carbon-f10e22c/src/Carbon/Lang/sv.phpUT÷Hƒ^PK i5Põ}Š„Ļ5 CBbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sv_AX.phpUT÷Hƒ^PK i5PoéĖ 5 »Cbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sv_FI.phpUT÷Hƒ^PK i5PoéĖ 5 āDbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sv_SE.phpUT÷Hƒ^PK i5Pµy7CY 2  Fbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sw.phpUT÷Hƒ^PK i5Pėć±}5 „Ibriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sw_CD.phpUT÷Hƒ^PK i5PØ?щōŻ5  Kbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sw_KE.phpUT÷Hƒ^PK i5P“v˜ūū5 YMbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sw_TZ.phpUT÷Hƒ^PK i5Pėć±}5 °Obriannesbitt-Carbon-f10e22c/src/Carbon/Lang/sw_UG.phpUT÷Hƒ^PK i5PVBóO3 Qbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/szl.phpUT÷Hƒ^PK i5PUĮ}l™­6 aRbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/szl_PL.phpUT÷Hƒ^PK i5Pįg£?2 WUbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ta.phpUT÷Hƒ^PK i5P†ŽĄ)|t5 SZbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ta_IN.phpUT÷Hƒ^PK i5P’˜[ÕbZ5 +]briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ta_LK.phpUT÷Hƒ^PK i5P«f”_cĢ5 é_briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ta_MY.phpUT÷Hƒ^PK i5PīēĶSR®5 Øbbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ta_SG.phpUT÷Hƒ^PK i5P½7ńO3 Vebriannesbitt-Carbon-f10e22c/src/Carbon/Lang/tcy.phpUT÷Hƒ^PK i5PøüdĢĒ6 ”fbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/tcy_IN.phpUT÷Hƒ^PK i5PäŻraq±2 Åibriannesbitt-Carbon-f10e22c/src/Carbon/Lang/te.phpUT÷Hƒ^PK i5P4¼—Ė 5 nbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/te_IN.phpUT÷Hƒ^PK i5P¶ią§[3 ¶obriannesbitt-Carbon-f10e22c/src/Carbon/Lang/teo.phpUT÷Hƒ^PK i5P›HĻóG6 $rbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/teo_KE.phpUT÷Hƒ^PK i5Pżӓ ś3 tsbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/tet.phpUT÷Hƒ^PK i5PĘÅUģcÅ 2 Ųvbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/tg.phpUT÷Hƒ^PK i5Ph3™ÕĖ 5 ”{briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tg_TJ.phpUT÷Hƒ^PK i5Pšqq‹$ 2 »|briannesbitt-Carbon-f10e22c/src/Carbon/Lang/th.phpUT÷Hƒ^PK i5PÄ!¹ Ė 5 8briannesbitt-Carbon-f10e22c/src/Carbon/Lang/th_TH.phpUT÷Hƒ^PK i5Po“ÖńO3 _‚briannesbitt-Carbon-f10e22c/src/Carbon/Lang/the.phpUT÷Hƒ^PK i5Pā„EDć6 Ŗƒbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/the_NP.phpUT÷Hƒ^PK i5P¦ŅlżšN2 K†briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ti.phpUT÷Hƒ^PK i5PęŲÜ5 ”‡briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ti_ER.phpUT÷Hƒ^PK i5PąĶb‡Gš5 Ȋbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ti_ET.phpUT÷Hƒ^PK i5PaŲ ÕńO3 kbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/tig.phpUT÷Hƒ^PK i5P/;Į) ( 6 ¶Žbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/tig_ER.phpUT÷Hƒ^PK i5PŅ »ńN2 ’briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tk.phpUT÷Hƒ^PK i5PtßÄż,ń5 g“briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tk_TM.phpUT÷Hƒ^PK i5P³ ČQ52 ļ–briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tl.phpUT÷Hƒ^PK i5PīSå÷S5 Ošbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/tl_PH.phpUT÷Hƒ^PK i5PZģŒ*=Ę 3 ¢›briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tlh.phpUT÷Hƒ^PK i5PM|UņN2 9Ÿbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/tn.phpUT÷Hƒ^PK i5På7h»#5 „ briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tn_ZA.phpUT÷Hƒ^PK i5P-jÜIńN2 }£briannesbitt-Carbon-f10e22c/src/Carbon/Lang/to.phpUT÷Hƒ^PK i5PÅļćœP5 Ǥbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/to_TO.phpUT÷Hƒ^PK i5P{kÄņO3 æ§briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tpi.phpUT÷Hƒ^PK i5PóQJžb?6  ©briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tpi_PG.phpUT÷Hƒ^PK i5P +l2 Ź«briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tr.phpUT÷Hƒ^PK i5PÉB²Ea—5 1±briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tr_CY.phpUT÷Hƒ^PK i5P' ĀįĖ 5 ī²briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tr_TR.phpUT÷Hƒ^PK i5Põx0ņN2 “briannesbitt-Carbon-f10e22c/src/Carbon/Lang/ts.phpUT÷Hƒ^PK i5Pē߬Æ5 `µbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ts_ZA.phpUT÷Hƒ^PK i5PĖ}jZńN2 købriannesbitt-Carbon-f10e22c/src/Carbon/Lang/tt.phpUT÷Hƒ^PK i5PÓr9Ŕ5 µ¹briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tt_RU.phpUT÷Hƒ^PK i5PVŪÜ = „¼briannesbitt-Carbon-f10e22c/src/Carbon/Lang/tt_RU@iqtelif.phpUT÷Hƒ^PK i5Pż!-Q’W3 æbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/twq.phpUT÷Hƒ^PK i5P\öŗzq3 mĄbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/tzl.phpUT÷Hƒ^PK i5PjĮö‡ 3 ŪĆbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/tzm.phpUT÷Hƒ^PK i5PĶõJāg8 +Ēbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/tzm_Latn.phpUT÷Hƒ^PK i5P1#`.H 2 lŹbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ug.phpUT÷Hƒ^PK i5PĒl3·źA5 óĪbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ug_CN.phpUT÷Hƒ^PK i5P˜)ó— :$2 9Šbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/uk.phpUT÷Hƒ^PK i5Pd2M•Ė 5 «Łbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/uk_UA.phpUT÷Hƒ^PK i5PņkžņO3 ŅŚbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/unm.phpUT÷Hƒ^PK i5PY#NŽ›6 Übriannesbitt-Carbon-f10e22c/src/Carbon/Lang/unm_US.phpUT÷Hƒ^PK i5P÷ōé~•t2  ßbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ur.phpUT÷Hƒ^PK i5Pqhķ}5 ÷ābriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ur_IN.phpUT÷Hƒ^PK i5PX÷`ųńŠ5 @åbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ur_PK.phpUT÷Hƒ^PK i5PˆU2">f 2 ēbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/uz.phpUT÷Hƒ^PK i5P**"–7 $ģbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/uz_Arab.phpUT÷Hƒ^PK i5P$’E°9ö7 ¤ībriannesbitt-Carbon-f10e22c/src/Carbon/Lang/uz_Cyrl.phpUT÷Hƒ^PK i5PĢ}&ÖK* 7 ;šbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/uz_Latn.phpUT÷Hƒ^PK i5P“Q_L #5 äóbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/uz_UZ.phpUT÷Hƒ^PK i5P®Ä²j;¬> Iöbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/uz_UZ@cyrillic.phpUT÷Hƒ^PK i5P©ö‡^3 éųbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/vai.phpUT÷Hƒ^PK i5PmGT5Ór8 ”ūbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/vai_Latn.phpUT÷Hƒ^PK i5Pk°˜lĢ 8 Óżbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/vai_Vaii.phpUT÷Hƒ^PK i5P–ešņN2 žžbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ve.phpUT÷Hƒ^PK i5PšM¹‹˜Õ5 Ibriannesbitt-Carbon-f10e22c/src/Carbon/Lang/ve_ZA.phpUT÷Hƒ^PK i5PˆyO› 2 =briannesbitt-Carbon-f10e22c/src/Carbon/Lang/vi.phpUT÷Hƒ^PK i5PÜ åīĖ 5 1briannesbitt-Carbon-f10e22c/src/Carbon/Lang/vi_VN.phpUT÷Hƒ^PK i5PNąė[2 Xbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/vo.phpUT÷Hƒ^PK i5P„HžĻķB3 œ briannesbitt-Carbon-f10e22c/src/Carbon/Lang/vun.phpUT÷Hƒ^PK i5Pč“."ńN2 ć briannesbitt-Carbon-f10e22c/src/Carbon/Lang/wa.phpUT÷Hƒ^PK i5PśóĪ”˜5 -briannesbitt-Carbon-f10e22c/src/Carbon/Lang/wa_BE.phpUT÷Hƒ^PK i5Pł/kØńO3 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/wae.phpUT÷Hƒ^PK i5Pv—!…6 hbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/wae_CH.phpUT÷Hƒ^PK i5P’L(‹ńO3 ębriannesbitt-Carbon-f10e22c/src/Carbon/Lang/wal.phpUT÷Hƒ^PK i5P¬ŗ]ÉAĖ6 1briannesbitt-Carbon-f10e22c/src/Carbon/Lang/wal_ET.phpUT÷Hƒ^PK i5PŠÕ‰–ńN2 Ļbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/wo.phpUT÷Hƒ^PK i5PšÅc0"5 briannesbitt-Carbon-f10e22c/src/Carbon/Lang/wo_SN.phpUT÷Hƒ^PK i5Pū„øóN2 „briannesbitt-Carbon-f10e22c/src/Carbon/Lang/xh.phpUT÷Hƒ^PK i5P4rĖ(Ŗn5 ńbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/xh_ZA.phpUT÷Hƒ^PK i5PŅŃ`Ŗū[3 ÷ briannesbitt-Carbon-f10e22c/src/Carbon/Lang/xog.phpUT÷Hƒ^PK i5P¹‚ jō3 L#briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yav.phpUT÷Hƒ^PK i5P§‘©ńN2 &briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yi.phpUT÷Hƒ^PK i5PÓ;iÜ¢5 Z'briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yi_US.phpUT÷Hƒ^PK i5PŻ''“l% 2 ’*briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yo.phpUT÷Hƒ^PK i5P×-^7?M5 W.briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yo_BJ.phpUT÷Hƒ^PK i5PŠĻ3÷Ė 5 ņ0briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yo_NG.phpUT÷Hƒ^PK i5PōlIQņO3 2briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yue.phpUT÷Hƒ^PK i5Pw¦}©ė6 e3briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yue_HK.phpUT÷Hƒ^PK i5PŃā·Ļ8 ­5briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yue_Hans.phpUT÷Hƒ^PK i5PŲ'½Ļ8 Ū6briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yue_Hant.phpUT÷Hƒ^PK i5PŲädēņO3  8briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yuw.phpUT÷Hƒ^PK i5PĖ>”ģŚ6 U9briannesbitt-Carbon-f10e22c/src/Carbon/Lang/yuw_PG.phpUT÷Hƒ^PK i5PžG¦ā13 ž;briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zgh.phpUT÷Hƒ^PK i5Pp‹R}„2 )@briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh.phpUT÷Hƒ^PK i5PDɳ¤½5 ’Abriannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_CN.phpUT÷Hƒ^PK i5Pz±ēļŅ5 ’Cbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_HK.phpUT÷Hƒ^PK i5PJ×d`Ā 7 -Ebriannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_Hans.phpUT÷Hƒ^PK i5PŃā·Ļ: ėIbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_Hans_HK.phpUT÷Hƒ^PK i5PŃā·Ļ: Kbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_Hans_MO.phpUT÷Hƒ^PK i5PŃā·Ļ: KLbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_Hans_SG.phpUT÷Hƒ^PK i5Pģ$$gĢ 7 {Mbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_Hant.phpUT÷Hƒ^PK i5PŲ'½Ļ: @Rbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_Hant_HK.phpUT÷Hƒ^PK i5PŲ'½Ļ: pSbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_Hant_MO.phpUT÷Hƒ^PK i5PŲ'½Ļ:  Tbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_Hant_TW.phpUT÷Hƒ^PK i5P”^dL$5 ŠUbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_MO.phpUT÷Hƒ^PK i5PĆū%Ū.5 PWbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_SG.phpUT÷Hƒ^PK i5P{$ŽÓ5 ¬Ybriannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_TW.phpUT÷Hƒ^PK i5PŌ>ž1IŲ6 ŪZbriannesbitt-Carbon-f10e22c/src/Carbon/Lang/zh_YUE.phpUT÷Hƒ^PK i5PÜģü1óN2 \briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zu.phpUT÷Hƒ^PK i5PŲ§4lœ45 Ķ]briannesbitt-Carbon-f10e22c/src/Carbon/Lang/zu_ZA.phpUT÷Hƒ^PK i5PxKž54b3 Å`briannesbitt-Carbon-f10e22c/src/Carbon/Language.phpUT÷Hƒ^PK i5P/ Sfbriannesbitt-Carbon-f10e22c/src/Carbon/Laravel/UT÷Hƒ^PK i5PžoµŚ– B ©fbriannesbitt-Carbon-f10e22c/src/Carbon/Laravel/ServiceProvider.phpUT÷Hƒ^PK i5P, Øibriannesbitt-Carbon-f10e22c/src/Carbon/List/UT÷Hƒ^PK i5PŌ '~ąs9 ūibriannesbitt-Carbon-f10e22c/src/Carbon/List/languages.phpUT÷Hƒ^PK i5PMœ J Ä7 Ł‚briannesbitt-Carbon-f10e22c/src/Carbon/List/regions.phpUT÷Hƒ^PK i5P. briannesbitt-Carbon-f10e22c/src/Carbon/Traits/UT÷Hƒ^PK i5PCųmĪ,< ֍briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Boundaries.phpUT÷Hƒ^PK i5P7FƒŠV6 ¦”briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Cast.phpUT÷Hƒ^PK i5Pśł8sGNy< –briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Comparison.phpUT÷Hƒ^PK i5P©~|(¦ U<; 7©briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Converter.phpUT÷Hƒ^PK i5P籿%n9 ?µbriannesbitt-Carbon-f10e22c/src/Carbon/Traits/Creator.phpUT÷Hƒ^PK i5P¢ģZ6GŌp6 ^Ėbriannesbitt-Carbon-f10e22c/src/Carbon/Traits/Date.phpUT÷Hƒ^PK i5P UH˜óĆ< ń briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Difference.phpUT÷Hƒ^PK i5P Nß‘b> ģ% briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Localization.phpUT÷Hƒ^PK i5P;B Ž 7 09 briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Macro.phpUT÷Hƒ^PK i5P®xóı57  = briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Mixin.phpUT÷Hƒ^PK i5P>K5 `4; ÆC briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Modifiers.phpUT÷Hƒ^PK i5P Č×yÕ4< FM briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Mutability.phpUT÷Hƒ^PK i5PĒ‚ĀM¬F ~O briannesbitt-Carbon-f10e22c/src/Carbon/Traits/ObjectInitialisation.phpUT÷Hƒ^PK i5PĒ@“2 ž09 Q briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Options.phpUT÷Hƒ^PK i5P&%C”¬Ģ: —[ briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Rounding.phpUT÷Hƒ^PK i5Pü|½‘? ¤b briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Serialization.phpUT÷Hƒ^PK i5PÅ=cLĘ6 §h briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Test.phpUT÷Hƒ^PK i5P,g(ŗ ; Pn briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Timestamp.phpUT÷Hƒ^PK i5P¢Zj)7 Br briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Units.phpUT÷Hƒ^PK i5PŁWž06 /{ briannesbitt-Carbon-f10e22c/src/Carbon/Traits/Week.phpUT÷Hƒ^PK i5PĶMh )5 ¼€ briannesbitt-Carbon-f10e22c/src/Carbon/Translator.phpUT÷Hƒ^PKww¤t™‹ (f10e22cf546704fab1db4ad4b9dedbc5c797a0dcPK!zķˆˆcarbon/extension.neonnuÕIw¶“PK!A_£ŅŅĶcarbon/readme.mdnuÕIw¶“PK!^¬ Tßcarbon/LICENSEnuÕIw¶“PK!óT>Õ9carbon/phpmd.xmlnuÕIw¶“PK!ÖÉ$Ī˜$carbon/contributing.mdnuÕIw¶“PK!ČqlŹ Ź ä>carbon/composer.jsonnuÕIw¶“PK!{mu0]]ņHcarbon/bin/carbon.batnuÕIw¶“PK!#ėŖ²zz”Icarbon/bin/carbonnu™½Ģ—żPK!Ž6©”  .OKcarbon/src/Carbon/CarbonConverterInterface.phpnuÕIw¶“PK!ŸqWņ`ņ`$MMcarbon/src/Carbon/CarbonInterval.phpnuÕIw¶“PK!Ÿ4Ž]  8“®carbon/src/Carbon/Exceptions/NotLocaleAwareException.phpnuÕIw¶“PK!…_ęBµµ;›²carbon/src/Carbon/Exceptions/UnitNotConfiguredException.phpnuÕIw¶“PK!®ź²zĶĶ5»µcarbon/src/Carbon/Exceptions/UnreachableException.phpnuÕIw¶“PK!|ŠŠĶńń3ķøcarbon/src/Carbon/Exceptions/ImmutableException.phpnuÕIw¶“PK!h‹Zäńń9A¼carbon/src/Carbon/Exceptions/InvalidTimeZoneException.phpnuÕIw¶“PK!·žN=ģģ4›æcarbon/src/Carbon/Exceptions/NotAPeriodException.phpnuÕIw¶“PK!H1¼/  7ėĀcarbon/src/Carbon/Exceptions/UnknownGetterException.phpnuÕIw¶“PK!wĒŅ ńń9[Ęcarbon/src/Carbon/Exceptions/InvalidIntervalException.phpnuÕIw¶“PK!ø Z4µÉcarbon/src/Carbon/Exceptions/ParseErrorException.phpnuÕIw¶“PK!|;©ūcarbon/src/Carbon/Exceptions/BadFluentConstructorException.phpnuÕIw¶“PK!6„öķķ5/’carbon/src/Carbon/Exceptions/InvalidTypeException.phpnuÕIw¶“PK!š’’;carbon/src/Carbon/Exceptions/BadComparisonUnitException.phpnuÕIw¶“PK!;Ėaģ……5~carbon/src/Carbon/Exceptions/UnknownUnitException.phpnuÕIw¶“PK!b…??9hcarbon/src/Carbon/Exceptions/InvalidArgumentException.phpnuÕIw¶“PK!źƒłĢ7 carbon/src/Carbon/Exceptions/UnknownSetterException.phpnuÕIw¶“PK!~›a'¬Ó¬Ó~ carbon/src/Carbon/Factory.phpnuÕIw¶“PK!@•<“&­&­%wįcarbon/src/Carbon/CarbonInterface.phpnuÕIw¶“PK!/F¢—ŚŚ-ņŽcarbon/src/Carbon/Laravel/ServiceProvider.phpnuÕIw¶“PK!ŖeL¦6Ģ6Ģ&)—carbon/src/Carbon/FactoryImmutable.phpnuÕIw¶“PK!J™h¦”(”( µccarbon/src/Carbon/Translator.phpnuÕIw¶“PK!=Š)“ “ $™Œcarbon/src/Carbon/CarbonTimeZone.phpnuÕIw¶“PK!xKž5bb”­carbon/src/Carbon/Language.phpnuÕIw¶“PK!ˆ‰ p‚p‚%QŹcarbon/src/Carbon/CarbonImmutable.phpnuÕIw¶“PK!Ō 'ąsąs$M carbon/src/Carbon/List/languages.phpnuÕIw¶“PK!Mœ ÄÄ"JĮ carbon/src/Carbon/List/regions.phpnuÕIw¶“PK!{Ŗ½6ÄÄ!`Ż carbon/src/Carbon/Cli/Invoker.phpnuÕIw¶“PK!:qĶģ ģ 2uą carbon/src/Carbon/Doctrine/CarbonTypeConverter.phpnuÕIw¶“PK!8Ę0%ØØ7Ćź carbon/src/Carbon/Doctrine/DateTimeDefaultPrecision.phpnuÕIw¶“PK!”D\k)Ņķ carbon/src/Carbon/Doctrine/CarbonType.phpnuÕIw¶“PK!˜‚Ceįį4Fš carbon/src/Carbon/Doctrine/DateTimeImmutableType.phpnuÕIw¶“PK!Łźšą÷÷1‹ņ carbon/src/Carbon/Doctrine/CarbonDoctrineType.phpnuÕIw¶“PK!ó&’²772ćō carbon/src/Carbon/Doctrine/CarbonImmutableType.phpnuÕIw¶“PK!Q :’BB+|÷ carbon/src/Carbon/Doctrine/DateTimeType.phpnuÕIw¶“PK!W.śqśqł carbon/src/Carbon/Carbon.phpnuÕIw¶“PK!P¦cÄŠ2Š2$_k carbon/src/Carbon/Traits/Options.phpnuÕIw¶“PK!h*@½'ƒž carbon/src/Carbon/Traits/Comparison.phpnuÕIw¶“PK!©Drm.=.=&i carbon/src/Carbon/Traits/Converter.phpnuÕIw¶“PK!3R[;¦¦%ķ[ carbon/src/Carbon/Traits/Rounding.phpnuÕIw¶“PK!°)ņ55&čv carbon/src/Carbon/Traits/Modifiers.phpnuÕIw¶“PK!ö° >>!Y¬ carbon/src/Carbon/Traits/Test.phpnuÕIw¶“PK!Ē‚ĀM¬¬1čæ carbon/src/Carbon/Traits/ObjectInitialisation.phpnuÕIw¶“PK!Č{$ł"r"r$õĮ carbon/src/Carbon/Traits/Creator.phpnuÕIw¶“PK!Į†:®®&k4 carbon/src/Carbon/Traits/Timestamp.phpnuÕIw¶“PK! {ŖTŌlŌl)oM carbon/src/Carbon/Traits/Localization.phpnuÕIw¶“PK!—źÜsÜs!œŗ carbon/src/Carbon/Traits/Date.phpnuÕIw¶“PK!Ž#™²²*É.carbon/src/Carbon/Traits/Serialization.phpnuÕIw¶“PK!) Vi.i."Õ@carbon/src/Carbon/Traits/Units.phpnuÕIw¶“PK!—§^##"ocarbon/src/Carbon/Traits/Mixin.phpnuÕIw¶“PK!øm·1ŗČŗČ'ƒcarbon/src/Carbon/Traits/Difference.phpnuÕIw¶“PK!§>Ŗ››!Lcarbon/src/Carbon/Traits/Week.phpnuÕIw¶“PK!ˆGÄ  "icarbon/src/Carbon/Traits/Macro.phpnuÕIw¶“PK! L©t )hucarbon/src/Carbon/Traits/IntervalStep.phpnuÕIw¶“PK!m.8Ķ$,$,'į~carbon/src/Carbon/Traits/Boundaries.phpnuÕIw¶“PK!ĘŪX``!\«carbon/src/Carbon/Traits/Cast.phpnuÕIw¶“PK! Č×y44' Æcarbon/src/Carbon/Traits/Mutability.phpnuÕIw¶“PK!ó¼Ļ–((-˜“carbon/src/Carbon/Traits/IntervalRounding.phpnuÕIw¶“PK!]Ćģ¹»$»$"»carbon/src/Carbon/CarbonPeriod.phpnuÕIw¶“PK!Ŗaü OO*ącarbon/src/Carbon/Lang/mni.phpnuÕIw¶“PK!x^“FF Ēįcarbon/src/Carbon/Lang/en_GM.phpnuÕIw¶“PK! Fōō ]ćcarbon/src/Carbon/Lang/en_DK.phpnuÕIw¶“PK!}ć" ”åcarbon/src/Carbon/Lang/st_ZA.phpnuÕIw¶“PK!ß6¾ūū Žķcarbon/src/Carbon/Lang/fr_CA.phpnuÕIw¶“PK!ėŅ…6Łļcarbon/src/Carbon/Lang/mn.phpnuÕIw¶“PK!Ņ£ˆźqq6žcarbon/src/Carbon/Lang/kk.phpnuÕIw¶“PK!ābĆ(( ō carbon/src/Carbon/Lang/ar_MR.phpnuÕIw¶“PK!"ŅĻž ž lcarbon/src/Carbon/Lang/fo.phpnuÕIw¶“PK!ęqźh§§Wcarbon/src/Carbon/Lang/mgh.phpnuÕIw¶“PK!‡ädŖ¦¦ Lcarbon/src/Carbon/Lang/es_AR.phpnuÕIw¶“PK!X÷`ųŠŠ Bcarbon/src/Carbon/Lang/ur_PK.phpnuÕIw¶“PK!…-Šˆź ź "$carbon/src/Carbon/Lang/zh_Hant.phpnuÕIw¶“PK!Äsī QQX1carbon/src/Carbon/Lang/gom.phpnuÕIw¶“PK!‚Œ†³ä ä ÷2carbon/src/Carbon/Lang/tlh.phpnuÕIw¶“PK!’ĆlÕÕ)=carbon/src/Carbon/Lang/te.phpnuÕIw¶“PK! ösFF KLcarbon/src/Carbon/Lang/es_CU.phpnuÕIw¶“PK!¤woįMcarbon/src/Carbon/Lang/seh.phpnuÕIw¶“PK!˜‹wßOO?Rcarbon/src/Carbon/Lang/ber.phpnuÕIw¶“PK!Ā"±wNNÜScarbon/src/Carbon/Lang/sm.phpnuÕIw¶“PK!‡«Oń   wUcarbon/src/Carbon/Lang/kk_KZ.phpnuÕIw¶“PK!qē°¾((ŃVcarbon/src/Carbon/Lang/agq.phpnuÕIw¶“PK!ćõ—¤   G\carbon/src/Carbon/Lang/nb_NO.phpnuÕIw¶“PK! µJ99”]carbon/src/Carbon/Lang/pap.phpnuÕIw¶“PK!+ŅhŸõõ (ccarbon/src/Carbon/Lang/am_ET.phpnuÕIw¶“PK!Ė}jZNNmkcarbon/src/Carbon/Lang/tt.phpnuÕIw¶“PK!Œ5Ę­  mcarbon/src/Carbon/Lang/gsw.phpnuÕIw¶“PK!!”/¾] ] ascarbon/src/Carbon/Lang/jv.phpnuÕIw¶“PK!ŗ8čR" }carbon/src/Carbon/Lang/bs_Cyrl.phpnuÕIw¶“PK!q~mq   r‚carbon/src/Carbon/Lang/en_MO.phpnuÕIw¶“PK!×Q²> ̃carbon/src/Carbon/Lang/kl_GL.phpnuÕIw¶“PK!qh}} (Žcarbon/src/Carbon/Lang/ur_IN.phpnuÕIw¶“PK!Šfōc   õ’carbon/src/Carbon/Lang/fr_PM.phpnuÕIw¶“PK!“éBž O”carbon/src/Carbon/Lang/mg_MG.phpnuÕIw¶“PK!x^“FF ¢›carbon/src/Carbon/Lang/en_SX.phpnuÕIw¶“PK!“Čd   8carbon/src/Carbon/Lang/lo_LA.phpnuÕIw¶“PK!dv|;   ’žcarbon/src/Carbon/Lang/de_LI.phpnuÕIw¶“PK!WöWW ģŸcarbon/src/Carbon/Lang/ln_CD.phpnuÕIw¶“PK!ˆĢ3   #“”carbon/src/Carbon/Lang/tzm_Latn.phpnuÕIw¶“PK!x^“FF ūŖcarbon/src/Carbon/Lang/en_FJ.phpnuÕIw¶“PK!v”ÓCNN ‘¬carbon/src/Carbon/Lang/om_KE.phpnuÕIw¶“PK!m0ב‘ /®carbon/src/Carbon/Lang/kw_GB.phpnuÕIw¶“PK!"7«žööµcarbon/src/Carbon/Lang/cgg.phpnuÕIw¶“PK!ŁKŠnOOTŗcarbon/src/Carbon/Lang/kok.phpnuÕIw¶“PK!įĮĪń»carbon/src/Carbon/Lang/luo.phpnuÕIw¶“PK!ČDh‚ÅÅ ]Ćcarbon/src/Carbon/Lang/en_HK.phpnuÕIw¶“PK!ģpķĆĆ!rÅcarbon/src/Carbon/Lang/shn_MM.phpnuÕIw¶“PK!Šų8šš †Õcarbon/src/Carbon/Lang/ar_JO.phpnuÕIw¶“PK!a®zƒųų ĘŚcarbon/src/Carbon/Lang/hy_AM.phpnuÕIw¶“PK!Šfōc   Żcarbon/src/Carbon/Lang/fr_GA.phpnuÕIw¶“PK!x^“FF hŽcarbon/src/Carbon/Lang/en_TZ.phpnuÕIw¶“PK!'Ą.__ žßcarbon/src/Carbon/Lang/en_SD.phpnuÕIw¶“PK!J|¼`ÆÆ ­įcarbon/src/Carbon/Lang/ar_KW.phpnuÕIw¶“PK!—7Ž‚ ¬ócarbon/src/Carbon/Lang/pt_MO.phpnuÕIw¶“PK!x^“FF ’õcarbon/src/Carbon/Lang/en_TK.phpnuÕIw¶“PK!{kÄOO•÷carbon/src/Carbon/Lang/tpi.phpnuÕIw¶“PK!љUFF 2łcarbon/src/Carbon/Lang/qu_EC.phpnuÕIw¶“PK!Ųꑅw w Čścarbon/src/Carbon/Lang/bs.phpnuÕIw¶“PK!‡ädŖ¦¦ Œcarbon/src/Carbon/Lang/es_EC.phpnuÕIw¶“PK!ābĆ(( ‚ carbon/src/Carbon/Lang/ar_SO.phpnuÕIw¶“PK!<š™ é é ś carbon/src/Carbon/Lang/vi.phpnuÕIw¶“PK!Ź „õ õ 0carbon/src/Carbon/Lang/ss.phpnuÕIw¶“PK!љUFF r!carbon/src/Carbon/Lang/qu_BO.phpnuÕIw¶“PK!³]öŌ #carbon/src/Carbon/Lang/fr_LU.phpnuÕIw¶“PK!-Ā‹ąą`%carbon/src/Carbon/Lang/cs.phpnuÕIw¶“PK!”^dL 6carbon/src/Carbon/Lang/zh_MO.phpnuÕIw¶“PK!k_Ų¾4 4 m8carbon/src/Carbon/Lang/mi.phpnuÕIw¶“PK!tĶ&  #īAcarbon/src/Carbon/Lang/shi_Tfng.phpnuÕIw¶“PK!ČDh‚ÅÅ LCcarbon/src/Carbon/Lang/en_PH.phpnuÕIw¶“PK! —ŒĖ==aEcarbon/src/Carbon/Lang/mk.phpnuÕIw¶“PK! + ļ  !ėUcarbon/src/Carbon/Lang/ast_ES.phpnuÕIw¶“PK!‰7,!HWcarbon/src/Carbon/Lang/brx_IN.phpnuÕIw¶“PK!*BJ„   «]carbon/src/Carbon/Lang/fo_FO.phpnuÕIw¶“PK!Ä·7q(( _carbon/src/Carbon/Lang/ca_AD.phpnuÕIw¶“PK!Hā§ÓDD }`carbon/src/Carbon/Lang/it_IT.phpnuÕIw¶“PK!† "z   bcarbon/src/Carbon/Lang/it_SM.phpnuÕIw¶“PK!Ńå­' ' kccarbon/src/Carbon/Lang/gu.phpnuÕIw¶“PK!‚vƕ¦¦ ßpcarbon/src/Carbon/Lang/el_GR.phpnuÕIw¶“PK!㼦t..Õrcarbon/src/Carbon/Lang/lt.phpnuÕIw¶“PK!j–dʦ¦ P‡carbon/src/Carbon/Lang/ar_SA.phpnuÕIw¶“PK!Šfōc   F™carbon/src/Carbon/Lang/fr_FR.phpnuÕIw¶“PK!‰>> šcarbon/src/Carbon/Lang/pt.phpnuÕIw¶“PK!Ś‘“QQ +©carbon/src/Carbon/Lang/so_KE.phpnuÕIw¶“PK!mGT5rr#ĢŖcarbon/src/Carbon/Lang/vai_Latn.phpnuÕIw¶“PK!%½ž  ‘Æcarbon/src/Carbon/Lang/so.phpnuÕIw¶“PK!§¹EŽĖĖ kŗcarbon/src/Carbon/Lang/pt_PT.phpnuÕIw¶“PK!šPש!†¾carbon/src/Carbon/Lang/hak_TW.phpnuÕIw¶“PK!$Z˜+dÅcarbon/src/Carbon/Lang/sd_IN@devanagari.phpnuÕIw¶“PK! “¢ą@@ ŚĖcarbon/src/Carbon/Lang/fr_SY.phpnuÕIw¶“PK!š¶čżZZjĪcarbon/src/Carbon/Lang/ewo.phpnuÕIw¶“PK!yć•č!×carbon/src/Carbon/Lang/fur_IT.phpnuÕIw¶“PK!Š®fA//{Ücarbon/src/Carbon/Lang/bas.phpnuÕIw¶“PK!x^“FF ųįcarbon/src/Carbon/Lang/en_GI.phpnuÕIw¶“PK!oĻRŠōō Žćcarbon/src/Carbon/Lang/hr_BA.phpnuÕIw¶“PK!Ä·7q(( Ņčcarbon/src/Carbon/Lang/ca_FR.phpnuÕIw¶“PK!x^“FF Jźcarbon/src/Carbon/Lang/en_RW.phpnuÕIw¶“PK!ž°åĶV V ąėcarbon/src/Carbon/Lang/sq.phpnuÕIw¶“PK!Ü7>   ƒöcarbon/src/Carbon/Lang/br_FR.phpnuÕIw¶“PK!¶Yf @@Ż÷carbon/src/Carbon/Lang/asa.phpnuÕIw¶“PK!Šfōc   kücarbon/src/Carbon/Lang/fr_BF.phpnuÕIw¶“PK!Ņ—1kNNÅżcarbon/src/Carbon/Lang/aa.phpnuÕIw¶“PK!®SWN N `’carbon/src/Carbon/Lang/fy.phpnuÕIw¶“PK!Պ.ććū carbon/src/Carbon/Lang/ar.phpnuÕIw¶“PK!o“ÖOO+carbon/src/Carbon/Lang/the.phpnuÕIw¶“PK!]"„6ŪŪ"Čcarbon/src/Carbon/Lang/az_Latn.phpnuÕIw¶“PK!ķ”O(("õ"carbon/src/Carbon/Lang/bs_Latn.phpnuÕIw¶“PK!īSåSS o$carbon/src/Carbon/Lang/tl_PH.phpnuÕIw¶“PK!Šfōc   &carbon/src/Carbon/Lang/fr_MG.phpnuÕIw¶“PK!!æµ ŪŪl'carbon/src/Carbon/Lang/kln.phpnuÕIw¶“PK!v—……!•,carbon/src/Carbon/Lang/wae_CH.phpnuÕIw¶“PK![D»†   k1carbon/src/Carbon/Lang/ga_IE.phpnuÕIw¶“PK!oP§­ ­ "Å2carbon/src/Carbon/Lang/uz_Latn.phpnuÕIw¶“PK!ŪžhOOÄ<carbon/src/Carbon/Lang/mai.phpnuÕIw¶“PK!`ōNNa>carbon/src/Carbon/Lang/li.phpnuÕIw¶“PK!ŌśŒŒü?carbon/src/Carbon/Lang/tr.phpnuÕIw¶“PK!ŠÕ‰–NNÕOcarbon/src/Carbon/Lang/wo.phpnuÕIw¶“PK!•IĆ^~~ pQcarbon/src/Carbon/Lang/ar_BH.phpnuÕIw¶“PK!pW)Q!>Vcarbon/src/Carbon/Lang/kab_DZ.phpnuÕIw¶“PK!q~mq   §]carbon/src/Carbon/Lang/en_AS.phpnuÕIw¶“PK!-GY†OO_carbon/src/Carbon/Lang/nso.phpnuÕIw¶“PK!łƒ²§BB!ž`carbon/src/Carbon/Lang/ccp_IN.phpnuÕIw¶“PK!Ų§4l44 1bcarbon/src/Carbon/Lang/zu_ZA.phpnuÕIw¶“PK!q~mq   µicarbon/src/Carbon/Lang/en_BW.phpnuÕIw¶“PK!/;Į)( ( !kcarbon/src/Carbon/Lang/tig_ER.phpnuÕIw¶“PK!:É·ž ˆtcarbon/src/Carbon/Lang/de_AT.phpnuÕIw¶“PK!x^“FF ąvcarbon/src/Carbon/Lang/en_FK.phpnuÕIw¶“PK!iÜµŹ   vxcarbon/src/Carbon/Lang/mn_MN.phpnuÕIw¶“PK!]"40——"Šycarbon/src/Carbon/Lang/pa_Guru.phpnuÕIw¶“PK!„HžĻBB¹carbon/src/Carbon/Lang/vun.phpnuÕIw¶“PK!ifö)OOI„carbon/src/Carbon/Lang/fil.phpnuÕIw¶“PK!XķlZZ ę…carbon/src/Carbon/Lang/ar_IN.phpnuÕIw¶“PK!grtŠÖÖ Šcarbon/src/Carbon/Lang/lg_UG.phpnuÕIw¶“PK!„HžĻBB¶‘carbon/src/Carbon/Lang/jmc.phpnuÕIw¶“PK! žNNF–carbon/src/Carbon/Lang/sa.phpnuÕIw¶“PK!)²(ƊŠį—carbon/src/Carbon/Lang/prg.phpnuÕIw¶“PK!ß/’——¹žcarbon/src/Carbon/Lang/ff.phpnuÕIw¶“PK!Sl—®¢¢§carbon/src/Carbon/Lang/kam.phpnuÕIw¶“PK!† "z   Æcarbon/src/Carbon/Lang/it_VA.phpnuÕIw¶“PK!šÅc"" ē°carbon/src/Carbon/Lang/wo_SN.phpnuÕIw¶“PK!ŽFIŸ±± Y¶carbon/src/Carbon/Lang/en_GB.phpnuÕIw¶“PK!co¦¦ Z¹carbon/src/Carbon/Lang/rw_RW.phpnuÕIw¶“PK!ą†»¹€€!PĄcarbon/src/Carbon/Lang/gez_ER.phpnuÕIw¶“PK!«f”_ĢĢ !Écarbon/src/Carbon/Lang/ta_MY.phpnuÕIw¶“PK!īa£…  "=Ļcarbon/src/Carbon/Lang/sr_Latn.phpnuÕIw¶“PK!ž«[Ч§™Šcarbon/src/Carbon/Lang/saq.phpnuÕIw¶“PK!¶ią§[[ŽÕcarbon/src/Carbon/Lang/teo.phpnuÕIw¶“PK!4rĖ(nn 7Ścarbon/src/Carbon/Lang/xh_ZA.phpnuÕIw¶“PK!§‘©NNõįcarbon/src/Carbon/Lang/yi.phpnuÕIw¶“PK!Vēü™žžćcarbon/src/Carbon/Lang/ebu.phpnuÕIw¶“PK!ƒpX] |čcarbon/src/Carbon/Lang/ln_CF.phpnuÕIw¶“PK!¼ģņ««Yėcarbon/src/Carbon/Lang/en.phpnuÕIw¶“PK!x^“FF Qścarbon/src/Carbon/Lang/en_SE.phpnuÕIw¶“PK!īō6ņNNēūcarbon/src/Carbon/Lang/ak.phpnuÕIw¶“PK!½7OO‚żcarbon/src/Carbon/Lang/tcy.phpnuÕIw¶“PK!ōĖ!kµµ ’carbon/src/Carbon/Lang/ru_UA.phpnuÕIw¶“PK!Šfōc   $carbon/src/Carbon/Lang/fr_GF.phpnuÕIw¶“PK!ŲX…Ń  ~carbon/src/Carbon/Lang/th.phpnuÕIw¶“PK!Ą×Y((ćcarbon/src/Carbon/Lang/kkj.phpnuÕIw¶“PK!šc ÷żżYcarbon/src/Carbon/Lang/dyo.phpnuÕIw¶“PK!Ēl3·AA ¤carbon/src/Carbon/Lang/ug_CN.phpnuÕIw¶“PK!źśķ 5carbon/src/Carbon/Lang/en_CY.phpnuÕIw¶“PK!łŪŻ;;carbon/src/Carbon/Lang/khq.phpnuÕIw¶“PK!WWŪ   ›carbon/src/Carbon/Lang/ca_ES.phpnuÕIw¶“PK!­5±Ļąą õ carbon/src/Carbon/Lang/li_NL.phpnuÕIw¶“PK!°įĒĀ Ā %(carbon/src/Carbon/Lang/bm.phpnuÕIw¶“PK!¬TAz   42carbon/src/Carbon/Lang/pt_GW.phpnuÕIw¶“PK!žœ+oŠŠŽ3carbon/src/Carbon/Lang/nmg.phpnuÕIw¶“PK!øüdĢ!¬8carbon/src/Carbon/Lang/tcy_IN.phpnuÕIw¶“PK!m÷|®®@carbon/src/Carbon/Lang/tet.phpnuÕIw¶“PK!Šfōc   Icarbon/src/Carbon/Lang/fr_RW.phpnuÕIw¶“PK!K‚ČzFF mJcarbon/src/Carbon/Lang/pt_MZ.phpnuÕIw¶“PK!œ#zł“ “ Lcarbon/src/Carbon/Lang/ga.phpnuÕIw¶“PK!5ó.!Wcarbon/src/Carbon/Lang/shs_CA.phpnuÕIw¶“PK!’L(‹OO]]carbon/src/Carbon/Lang/wal.phpnuÕIw¶“PK!Ū}£Ś % %ś^carbon/src/Carbon/Lang/uk.phpnuÕIw¶“PK!Šfōc   T„carbon/src/Carbon/Lang/fr_ML.phpnuÕIw¶“PK!Tʟ%@@ ®…carbon/src/Carbon/Lang/ar_LY.phpnuÕIw¶“PK!¬TAz   >–carbon/src/Carbon/Lang/pt_CV.phpnuÕIw¶“PK!ŽłndNN˜—carbon/src/Carbon/Lang/dz.phpnuÕIw¶“PK!” ÕFF 3™carbon/src/Carbon/Lang/es_BR.phpnuÕIw¶“PK!č²t€¬¬ɚcarbon/src/Carbon/Lang/sn.phpnuÕIw¶“PK!“|˜   Ā”carbon/src/Carbon/Lang/ru_KZ.phpnuÕIw¶“PK!+Ükk £carbon/src/Carbon/Lang/ig_NG.phpnuÕIw¶“PK!š³(±NNשcarbon/src/Carbon/Lang/mg.phpnuÕIw¶“PK!Y™eer«carbon/src/Carbon/Lang/nyn.phpnuÕIw¶“PK!fÅž/xx%°carbon/src/Carbon/Lang/zgh.phpnuÕIw¶“PK!×-^7MM ėæcarbon/src/Carbon/Lang/yo_BJ.phpnuÕIw¶“PK!¢ 7   ˆÅcarbon/src/Carbon/Lang/km_KH.phpnuÕIw¶“PK!ĮŁĮ>ŅŅāĘcarbon/src/Carbon/Lang/lv.phpnuÕIw¶“PK!,döyYYācarbon/src/Carbon/Lang/bg.phpnuÕIw¶“PK!Éåµ0   §ņcarbon/src/Carbon/Lang/lt_LT.phpnuÕIw¶“PK!WQfu   ōcarbon/src/Carbon/Lang/ro_RO.phpnuÕIw¶“PK!Eˆkīī [õcarbon/src/Carbon/Lang/nl_BE.phpnuÕIw¶“PK!‡ädŖ¦¦ ™÷carbon/src/Carbon/Lang/es_PA.phpnuÕIw¶“PK!7ș¶NNłcarbon/src/Carbon/Lang/ik.phpnuÕIw¶“PK!“C   *ūcarbon/src/Carbon/Lang/bg_BG.phpnuÕIw¶“PK!Śl`POO„ücarbon/src/Carbon/Lang/ayc.phpnuÕIw¶“PK!Ś‘“QQ !žcarbon/src/Carbon/Lang/so_ET.phpnuÕIw¶“PK!3I1ŚOOĀ’carbon/src/Carbon/Lang/agr.phpnuÕIw¶“PK!jĶ\ ĢĢ _carbon/src/Carbon/Lang/ks_IN.phpnuÕIw¶“PK!…8½„ŒŒ{ carbon/src/Carbon/Lang/my.phpnuÕIw¶“PK!å7h»## Tcarbon/src/Carbon/Lang/tn_ZA.phpnuÕIw¶“PK!?J[Ī   Ē"carbon/src/Carbon/Lang/gd_GB.phpnuÕIw¶“PK!¬ŗ]ÉĖĖ!!$carbon/src/Carbon/Lang/wal_ET.phpnuÕIw¶“PK!o«ęv22 =)carbon/src/Carbon/Lang/ce_RU.phpnuÕIw¶“PK!ažźčĮĮ æ0carbon/src/Carbon/Lang/es_CR.phpnuÕIw¶“PK!zOkؚšŠ2carbon/src/Carbon/Lang/fr.phpnuÕIw¶“PK!īKWę   ·Bcarbon/src/Carbon/Lang/sk_SK.phpnuÕIw¶“PK!§Ō‘OODcarbon/src/Carbon/Lang/nhn.phpnuÕIw¶“PK!›ĄBÕćć®Ecarbon/src/Carbon/Lang/sr.phpnuÕIw¶“PK!ģÉųäšš ŽTcarbon/src/Carbon/Lang/ar_LB.phpnuÕIw¶“PK!“ār   Zcarbon/src/Carbon/Lang/lv_LV.phpnuÕIw¶“PK!x^“FF x[carbon/src/Carbon/Lang/en_KY.phpnuÕIw¶“PK!•D"" ]carbon/src/Carbon/Lang/ms_BN.phpnuÕIw¶“PK!LųĄnpp€_carbon/src/Carbon/Lang/dua.phpnuÕIw¶“PK!¾._ŗŗ!>hcarbon/src/Carbon/Lang/sgs_LT.phpnuÕIw¶“PK!Zōž)__ Iocarbon/src/Carbon/Lang/de_DE.phpnuÕIw¶“PK!č&¾uuųpcarbon/src/Carbon/Lang/ses.phpnuÕIw¶“PK!¦ŅlżNN»xcarbon/src/Carbon/Lang/ti.phpnuÕIw¶“PK!Ńē±   Vzcarbon/src/Carbon/Lang/nl_CW.phpnuÕIw¶“PK!Ćū%Ū.. °{carbon/src/Carbon/Lang/zh_SG.phpnuÕIw¶“PK![ä˼   .€carbon/src/Carbon/Lang/my_MM.phpnuÕIw¶“PK!śóĪ˜˜ ˆcarbon/src/Carbon/Lang/wa_BE.phpnuÕIw¶“PK!nć•Ć”” pˆcarbon/src/Carbon/Lang/sd_IN.phpnuÕIw¶“PK!Ąd2½   acarbon/src/Carbon/Lang/fr_TD.phpnuÕIw¶“PK!x^“FF ŗcarbon/src/Carbon/Lang/en_VG.phpnuÕIw¶“PK!x^“FF P‘carbon/src/Carbon/Lang/en_PN.phpnuÕIw¶“PK!Zø1¼   ę’carbon/src/Carbon/Lang/fa_AF.phpnuÕIw¶“PK! ³ ĆLL A•carbon/src/Carbon/Lang/fr_CM.phpnuÕIw¶“PK!P!Ų((Ż–carbon/src/Carbon/Lang/qu.phpnuÕIw¶“PK!ābĆ(( R™carbon/src/Carbon/Lang/ar_PS.phpnuÕIw¶“PK!x^“FF ʚcarbon/src/Carbon/Lang/en_GH.phpnuÕIw¶“PK!Šfōc   `œcarbon/src/Carbon/Lang/fr_CI.phpnuÕIw¶“PK!x^“FF ŗcarbon/src/Carbon/Lang/en_AI.phpnuÕIw¶“PK!ābĆ(( PŸcarbon/src/Carbon/Lang/ar_DJ.phpnuÕIw¶“PK!"żBOOČ carbon/src/Carbon/Lang/anp.phpnuÕIw¶“PK!tßÄżńń e¢carbon/src/Carbon/Lang/tk_TM.phpnuÕIw¶“PK!ŗ!ŪNN¦«carbon/src/Carbon/Lang/os.phpnuÕIw¶“PK!“v˜ūū A­carbon/src/Carbon/Lang/sw_TZ.phpnuÕIw¶“PK!x^“FF Œ±carbon/src/Carbon/Lang/en_CC.phpnuÕIw¶“PK!x^“FF "³carbon/src/Carbon/Lang/en_MW.phpnuÕIw¶“PK!‰[Ƀƒ ø“carbon/src/Carbon/Lang/es_SV.phpnuÕIw¶“PK!Šfōc   ‹·carbon/src/Carbon/Lang/fr_NC.phpnuÕIw¶“PK!°āÕOOåøcarbon/src/Carbon/Lang/nan.phpnuÕIw¶“PK!B7²ņ   ‚ŗcarbon/src/Carbon/Lang/bs_BA.phpnuÕIw¶“PK!B½6«   Ü»carbon/src/Carbon/Lang/hr_HR.phpnuÕIw¶“PK!x^“FF 6½carbon/src/Carbon/Lang/en_LR.phpnuÕIw¶“PK!öpµNN̾carbon/src/Carbon/Lang/kl.phpnuÕIw¶“PK!ㄯ¹   gĄcarbon/src/Carbon/Lang/kn_IN.phpnuÕIw¶“PK! “¢ą@@ ĮĮcarbon/src/Carbon/Lang/fr_DZ.phpnuÕIw¶“PK!M|UNNQÄcarbon/src/Carbon/Lang/tn.phpnuÕIw¶“PK!J> OOģÅcarbon/src/Carbon/Lang/lzh.phpnuÕIw¶“PK!ŹG“ŲŲ‰Ēcarbon/src/Carbon/Lang/is.phpnuÕIw¶“PK!:€šŠŠ ®Ļcarbon/src/Carbon/Lang/sq_XK.phpnuÕIw¶“PK!pa I   ĪŃcarbon/src/Carbon/Lang/ss_ZA.phpnuÕIw¶“PK!ŲTrŁ  !(Ócarbon/src/Carbon/Lang/nds_NL.phpnuÕIw¶“PK!‰­BÓÓ!™×carbon/src/Carbon/Lang/anp_IN.phpnuÕIw¶“PK!Ŗ3Zżż½Żcarbon/src/Carbon/Lang/bez.phpnuÕIw¶“PK!x^“FF ćcarbon/src/Carbon/Lang/en_TO.phpnuÕIw¶“PK!&oqŪ|| žäcarbon/src/Carbon/Lang/en_IL.phpnuÕIw¶“PK!·«Æbbjēcarbon/src/Carbon/Lang/sbp.phpnuÕIw¶“PK!>įF   ģcarbon/src/Carbon/Lang/oc_FR.phpnuÕIw¶“PK!x^“FF tķcarbon/src/Carbon/Lang/en_DE.phpnuÕIw¶“PK!**––" ļcarbon/src/Carbon/Lang/uz_Arab.phpnuÕIw¶“PK!’›W”rrņócarbon/src/Carbon/Lang/ii.phpnuÕIw¶“PK! f,   ±ūcarbon/src/Carbon/Lang/sq_AL.phpnuÕIw¶“PK!µ]„p    żcarbon/src/Carbon/Lang/ps_AF.phpnuÕIw¶“PK!hŁ4·EE ežcarbon/src/Carbon/Lang/af_NA.phpnuÕIw¶“PK!Ór9Å ścarbon/src/Carbon/Lang/tt_RU.phpnuÕIw¶“PK!x^“FF d carbon/src/Carbon/Lang/en_NA.phpnuÕIw¶“PK!Ę¢:ž ž ś carbon/src/Carbon/Lang/br.phpnuÕIw¶“PK!x^“FF Ecarbon/src/Carbon/Lang/en_NL.phpnuÕIw¶“PK!‘żÕąššŪcarbon/src/Carbon/Lang/eu.phpnuÕIw¶“PK!Šfōc   !carbon/src/Carbon/Lang/fr_YT.phpnuÕIw¶“PK!ņkžOOr"carbon/src/Carbon/Lang/unm.phpnuÕIw¶“PK!Ä·7q(( $carbon/src/Carbon/Lang/ca_IT.phpnuÕIw¶“PK!X=£¶¶‡%carbon/src/Carbon/Lang/ru.phpnuÕIw¶“PK!Šfōc   ŠBcarbon/src/Carbon/Lang/fr_PF.phpnuÕIw¶“PK!˜NJŽŽ äCcarbon/src/Carbon/Lang/sc_IT.phpnuÕIw¶“PK!JBém Kcarbon/src/Carbon/Lang/aa_DJ.phpnuÕIw¶“PK!­‘™  Qcarbon/src/Carbon/Lang/in.phpnuÕIw¶“PK! ś  ŲRcarbon/src/Carbon/Lang/i18n.phpnuÕIw¶“PK!ŅŽ mH H 3Vcarbon/src/Carbon/Lang/ur.phpnuÕIw¶“PK!¬TAz   Č_carbon/src/Carbon/Lang/pt_TL.phpnuÕIw¶“PK!“śX««!"acarbon/src/Carbon/Lang/mag_IN.phpnuÕIw¶“PK!Ō>ž1ŲŲ!gcarbon/src/Carbon/Lang/zh_YUE.phpnuÕIw¶“PK!«ŸÆÆ Gicarbon/src/Carbon/Lang/de_CH.phpnuÕIw¶“PK!„ÕģģFkcarbon/src/Carbon/Lang/iw.phpnuÕIw¶“PK!ÜYŻó   scarbon/src/Carbon/Lang/se_SE.phpnuÕIw¶“PK!õ}Š„ĻĻ Łtcarbon/src/Carbon/Lang/sv_AX.phpnuÕIw¶“PK!éęLOOųvcarbon/src/Carbon/Lang/brx.phpnuÕIw¶“PK!֘e¼¼•xcarbon/src/Carbon/Lang/nus.phpnuÕIw¶“PK!PĄ‘   Ÿ~carbon/src/Carbon/Lang/fa_IR.phpnuÕIw¶“PK!K‚}ŗOOłcarbon/src/Carbon/Lang/nds.phpnuÕIw¶“PK!z±ēļ –carbon/src/Carbon/Lang/zh_HK.phpnuÕIw¶“PK!ķ¦Ęų¬¬ł‚carbon/src/Carbon/Lang/pl.phpnuÕIw¶“PK!q~mq   ņ“carbon/src/Carbon/Lang/en_ZW.phpnuÕIw¶“PK!x^“FF L•carbon/src/Carbon/Lang/en_BE.phpnuÕIw¶“PK!š’2¦ŹŹā–carbon/src/Carbon/Lang/mas.phpnuÕIw¶“PK!īa£…  &śžcarbon/src/Carbon/Lang/sr_RS@latin.phpnuÕIw¶“PK!Šfōc   Z carbon/src/Carbon/Lang/fr_MU.phpnuÕIw¶“PK!±˜r§“”carbon/src/Carbon/Lang/cu.phpnuÕIw¶“PK!aŲ ÕOOØcarbon/src/Carbon/Lang/tig.phpnuÕIw¶“PK!õ–Z™™!¼©carbon/src/Carbon/Lang/nan_TW.phpnuÕIw¶“PK!е„®ļ聆carbon/src/Carbon/Lang/dje.phpnuÕIw¶“PK!Ņ »NNć¶carbon/src/Carbon/Lang/tk.phpnuÕIw¶“PK!x^“FF ~øcarbon/src/Carbon/Lang/en_GD.phpnuÕIw¶“PK!D€łˆ ˆ ŗcarbon/src/Carbon/Lang/ms.phpnuÕIw¶“PK! zC’OOéĘcarbon/src/Carbon/Lang/sah.phpnuÕIw¶“PK!x^“FF †Čcarbon/src/Carbon/Lang/en_SB.phpnuÕIw¶“PK!‡ädŖ¦¦ Źcarbon/src/Carbon/Lang/es_CL.phpnuÕIw¶“PK!OöĆĆĢcarbon/src/Carbon/Lang/hr.phpnuÕIw¶“PK!n!KA  !"Ücarbon/src/Carbon/Lang/kok_IN.phpnuÕIw¶“PK!‡ädŖ¦¦ ēcarbon/src/Carbon/Lang/es_GT.phpnuÕIw¶“PK!x^“FF łčcarbon/src/Carbon/Lang/en_LS.phpnuÕIw¶“PK!UėZj j źcarbon/src/Carbon/Lang/eo.phpnuÕIw¶“PK!q~mq   Fõcarbon/src/Carbon/Lang/en_PK.phpnuÕIw¶“PK!Ē–ŽŸŃŃ  öcarbon/src/Carbon/Lang/an_ES.phpnuÕIw¶“PK!Ö~`Ņ Ņ Įżcarbon/src/Carbon/Lang/sa_IN.phpnuÕIw¶“PK!śŗJ~))!ćcarbon/src/Carbon/Lang/lrc_IQ.phpnuÕIw¶“PK!Ä!8£M M ] carbon/src/Carbon/Lang/si.phpnuÕIw¶“PK!äjä’’!÷carbon/src/Carbon/Lang/ber_DZ.phpnuÕIw¶“PK!“FcKöö&Gcarbon/src/Carbon/Lang/be_BY@latin.phpnuÕIw¶“PK!¬TAz   “carbon/src/Carbon/Lang/pt_CH.phpnuÕIw¶“PK!óĆ6Äkk!ķ carbon/src/Carbon/Lang/pap_AW.phpnuÕIw¶“PK!ūŚ—OO©"carbon/src/Carbon/Lang/dsb.phpnuÕIw¶“PK!¹‚ ōōF$carbon/src/Carbon/Lang/yav.phpnuÕIw¶“PK!ŲädēOOˆ)carbon/src/Carbon/Lang/yuw.phpnuÕIw¶“PK!x^“FF!%+carbon/src/Carbon/Lang/en_150.phpnuÕIw¶“PK!€=Ä8®® ¼,carbon/src/Carbon/Lang/ar_DZ.phpnuÕIw¶“PK!K:†õõ!ŗ>carbon/src/Carbon/Lang/sah_RU.phpnuÕIw¶“PK!q~mq   Dcarbon/src/Carbon/Lang/en_PR.phpnuÕIw¶“PK!x^“FF ZEcarbon/src/Carbon/Lang/en_BM.phpnuÕIw¶“PK!q~mq   šFcarbon/src/Carbon/Lang/en_MT.phpnuÕIw¶“PK!Œ|į ŻŻJHcarbon/src/Carbon/Lang/lkt.phpnuÕIw¶“PK!½ōē88!uMcarbon/src/Carbon/Lang/dsb_DE.phpnuÕIw¶“PK!Ä!¹   žTcarbon/src/Carbon/Lang/th_TH.phpnuÕIw¶“PK!vR`OOXVcarbon/src/Carbon/Lang/mhr.phpnuÕIw¶“PK!œnčč!õWcarbon/src/Carbon/Lang/lij_IT.phpnuÕIw¶“PK!x‡ØŖ Ŗ ._carbon/src/Carbon/Lang/ccp.phpnuÕIw¶“PK!·PĆīµµ!&icarbon/src/Carbon/Lang/nds_DE.phpnuÕIw¶“PK!Ü/ŁNN,pcarbon/src/Carbon/Lang/nr.phpnuÕIw¶“PK!ēī”{Ü Ü Ēqcarbon/src/Carbon/Lang/yo.phpnuÕIw¶“PK!SóO  !š{carbon/src/Carbon/Lang/gsw_CH.phpnuÕIw¶“PK!?`ęW L}carbon/src/Carbon/Lang/ak_GH.phpnuÕIw¶“PK!Ęźŗ"" )ƒcarbon/src/Carbon/Lang/fr_TN.phpnuÕIw¶“PK!:€šŠŠ ›…carbon/src/Carbon/Lang/sq_MK.phpnuÕIw¶“PK![“ó”   »‡carbon/src/Carbon/Lang/hu_HU.phpnuÕIw¶“PK!ē¹ÕÕ!‰carbon/src/Carbon/Lang/ayc_PE.phpnuÕIw¶“PK!BkŠOO;carbon/src/Carbon/Lang/lij.phpnuÕIw¶“PK!q~mq   ŲŽcarbon/src/Carbon/Lang/en_GU.phpnuÕIw¶“PK!²5OO2carbon/src/Carbon/Lang/sgs.phpnuÕIw¶“PK!kųˆ0 0 Ļ‘carbon/src/Carbon/Lang/ug.phpnuÕIw¶“PK!¬TAz   LŸcarbon/src/Carbon/Lang/pt_GQ.phpnuÕIw¶“PK!›œD!¦ carbon/src/Carbon/Lang/niu_NU.phpnuÕIw¶“PK!Šfōc   †§carbon/src/Carbon/Lang/fr_NE.phpnuÕIw¶“PK!Ü åī   ąØcarbon/src/Carbon/Lang/vi_VN.phpnuÕIw¶“PK!Sņņ%OO:Ŗcarbon/src/Carbon/Lang/niu.phpnuÕIw¶“PK!žx6æ   ׫carbon/src/Carbon/Lang/da_DK.phpnuÕIw¶“PK!^5&åżż1­carbon/src/Carbon/Lang/fa.phpnuÕIw¶“PK!‹7Óænn{½carbon/src/Carbon/Lang/ku.phpnuÕIw¶“PK!w¦}©!6Åcarbon/src/Carbon/Lang/yue_HK.phpnuÕIw¶“PK!XŃNÖee!‡Écarbon/src/Carbon/Lang/crh_UA.phpnuÕIw¶“PK!—ł÷OO=Šcarbon/src/Carbon/Lang/fur.phpnuÕIw¶“PK!Š‹Y   ŚŃcarbon/src/Carbon/Lang/ha_NE.phpnuÕIw¶“PK!x^“FF 4Ócarbon/src/Carbon/Lang/en_CM.phpnuÕIw¶“PK!„ļk’iiŹŌcarbon/src/Carbon/Lang/ee.phpnuÕIw¶“PK!’Sœ   €Ücarbon/src/Carbon/Lang/et_EE.phpnuÕIw¶“PK!õx0NNŚŻcarbon/src/Carbon/Lang/ts.phpnuÕIw¶“PK!ąź2ÜÜ!ußcarbon/src/Carbon/Lang/sid_ET.phpnuÕIw¶“PK!WtģU ¢ćcarbon/src/Carbon/Lang/ff_MR.phpnuÕIw¶“PK!Ņ8枻 » śåcarbon/src/Carbon/Lang/ne.phpnuÕIw¶“PK!а<½ócarbon/src/Carbon/Lang/ln.phpnuÕIw¶“PK!•IĆ^~~ Oūcarbon/src/Carbon/Lang/ar_EG.phpnuÕIw¶“PK!ŠńĪ'   carbon/src/Carbon/Lang/mt_MT.phpnuÕIw¶“PK!Hv|ńŽŽ!wcarbon/src/Carbon/Lang/bho_IN.phpnuÕIw¶“PK!ē߬ ¦ carbon/src/Carbon/Lang/ts_ZA.phpnuÕIw¶“PK!ƒpX] öcarbon/src/Carbon/Lang/ln_CG.phpnuÕIw¶“PK!“Q_L## Ócarbon/src/Carbon/Lang/uz_UZ.phpnuÕIw¶“PK!śRkk!Fcarbon/src/Carbon/Lang/gsw_LI.phpnuÕIw¶“PK!æ±^÷OOcarbon/src/Carbon/Lang/sid.phpnuÕIw¶“PK!ābĆ(( Ÿcarbon/src/Carbon/Lang/ar_EH.phpnuÕIw¶“PK!KV--NNcarbon/src/Carbon/Lang/kw.phpnuÕIw¶“PK! Ä©éNN² carbon/src/Carbon/Lang/gv.phpnuÕIw¶“PK!q~mq   M"carbon/src/Carbon/Lang/en_MH.phpnuÕIw¶“PK!ŽibµEE!§#carbon/src/Carbon/Lang/hne_IN.phpnuÕIw¶“PK!h3™Õ   =)carbon/src/Carbon/Lang/tg_TJ.phpnuÕIw¶“PK!Ų'½%—*carbon/src/Carbon/Lang/zh_Hant_HK.phpnuÕIw¶“PK!(Y}¾'' ū+carbon/src/Carbon/Lang/ms_SG.phpnuÕIw¶“PK!žˆ~˜   r.carbon/src/Carbon/Lang/ku_TR.phpnuÕIw¶“PK!q~mq   Ģ/carbon/src/Carbon/Lang/en_WS.phpnuÕIw¶“PK!± ßv¢ ¢ &1carbon/src/Carbon/Lang/fi.phpnuÕIw¶“PK!Ī’ļ×× <carbon/src/Carbon/Lang/ee_TG.phpnuÕIw¶“PK!īB` OO<>carbon/src/Carbon/Lang/hsb.phpnuÕIw¶“PK!øä|›› › Ł?carbon/src/Carbon/Lang/mr.phpnuÕIw¶“PK! ösFF ĮLcarbon/src/Carbon/Lang/es_GQ.phpnuÕIw¶“PK!Šfōc   WNcarbon/src/Carbon/Lang/fr_SC.phpnuÕIw¶“PK!臬O?? ±Ocarbon/src/Carbon/Lang/ht_HT.phpnuÕIw¶“PK!“|˜   @Vcarbon/src/Carbon/Lang/ru_RU.phpnuÕIw¶“PK!ųžśE!šWcarbon/src/Carbon/Lang/mfe_MU.phpnuÕIw¶“PK!Šfōc   ž]carbon/src/Carbon/Lang/fr_BL.phpnuÕIw¶“PK!—żFF X_carbon/src/Carbon/Lang/ko_KP.phpnuÕIw¶“PK!.z‰/——!ī`carbon/src/Carbon/Lang/quz_PE.phpnuÕIw¶“PK!{ÉõOOÖgcarbon/src/Carbon/Lang/miq.phpnuÕIw¶“PK!' Āį   sicarbon/src/Carbon/Lang/tr_TR.phpnuÕIw¶“PK!–ešNNĶjcarbon/src/Carbon/Lang/ve.phpnuÕIw¶“PK!*öē—––!hlcarbon/src/Carbon/Lang/nso_ZA.phpnuÕIw¶“PK!®Ä²j¬¬)Oscarbon/src/Carbon/Lang/uz_UZ@cyrillic.phpnuÕIw¶“PK!ÉuUITxcarbon/src/Carbon/Lang/sd.phpnuÕIw¶“PK!Šfōc   “€carbon/src/Carbon/Lang/fr_CD.phpnuÕIw¶“PK!p…HŻ   ‚carbon/src/Carbon/Lang/he_IL.phpnuÕIw¶“PK!§å??hƒcarbon/src/Carbon/Lang/ksb.phpnuÕIw¶“PK!O·`   õ‡carbon/src/Carbon/Lang/ka_GE.phpnuÕIw¶“PK!Źü¤_šš O‰carbon/src/Carbon/Lang/en_ZM.phpnuÕIw¶“PK!’“‹carbon/src/Carbon/Lang/ksf.phpnuÕIw¶“PK!m'×1üü!įcarbon/src/Carbon/Lang/mni_IN.phpnuÕIw¶“PK!q~mq   .˜carbon/src/Carbon/Lang/en_VI.phpnuÕIw¶“PK!÷B’ģ   ˆ™carbon/src/Carbon/Lang/sl_SI.phpnuÕIw¶“PK!ä ķ7||!āšcarbon/src/Carbon/Lang/mhr_RU.phpnuÕIw¶“PK! óĢj   Æ¢carbon/src/Carbon/Lang/om_ET.phpnuÕIw¶“PK!އ®Ź   ¤carbon/src/Carbon/Lang/ml.phpnuÕIw¶“PK!yÆV²DDu±carbon/src/Carbon/Lang/de.phpnuÕIw¶“PK!‡ädŖ¦¦ Įcarbon/src/Carbon/Lang/es_VE.phpnuÕIw¶“PK!q~mq   üĀcarbon/src/Carbon/Lang/en_UM.phpnuÕIw¶“PK!{$Ž VÄcarbon/src/Carbon/Lang/zh_TW.phpnuÕIw¶“PK!Ļ}Ö4OO¹Åcarbon/src/Carbon/Lang/quz.phpnuÕIw¶“PK!“|˜   VĒcarbon/src/Carbon/Lang/ru_MD.phpnuÕIw¶“PK!Šfōc   °Čcarbon/src/Carbon/Lang/fr_MQ.phpnuÕIw¶“PK!x^“FF  Źcarbon/src/Carbon/Lang/en_CX.phpnuÕIw¶“PK!” ÕFF  Ėcarbon/src/Carbon/Lang/es_BZ.phpnuÕIw¶“PK!%‚lżßß!6Ķcarbon/src/Carbon/Lang/raj_IN.phpnuÕIw¶“PK!W¹nNNfÖcarbon/src/Carbon/Lang/rw.phpnuÕIw¶“PK!ĢÉ5¶¶"Ųcarbon/src/Carbon/Lang/az_Cyrl.phpnuÕIw¶“PK!ž˜¼čII Żcarbon/src/Carbon/Lang/bo.phpnuÕIw¶“PK!Ń/­­ Ÿķcarbon/src/Carbon/Lang/ne_IN.phpnuÕIw¶“PK!U³Ó]==!œņcarbon/src/Carbon/Lang/byn_ER.phpnuÕIw¶“PK!Sŗ;uu*ųcarbon/src/Carbon/Lang/el.phpnuÕIw¶“PK!Pæ­ž†† ģcarbon/src/Carbon/Lang/pa_PK.phpnuÕIw¶“PK!Uæqææ"Ā carbon/src/Carbon/Lang/pa_Arab.phpnuÕIw¶“PK! S¼P   Ócarbon/src/Carbon/Lang/eu_ES.phpnuÕIw¶“PK!q~mq   -carbon/src/Carbon/Lang/en_KE.phpnuÕIw¶“PK!?ēŠ   ‡carbon/src/Carbon/Lang/hi_IN.phpnuÕIw¶“PK!›HĻGG!įcarbon/src/Carbon/Lang/teo_KE.phpnuÕIw¶“PK!#Éå   ycarbon/src/Carbon/Lang/cs_CZ.phpnuÕIw¶“PK!•IĆ^~~ Ócarbon/src/Carbon/Lang/ar_OM.phpnuÕIw¶“PK!4čwŲ××”carbon/src/Carbon/Lang/ka.phpnuÕIw¶“PK!x^“FF Å;carbon/src/Carbon/Lang/en_AT.phpnuÕIw¶“PK! ų”į   [=carbon/src/Carbon/Lang/mr_IN.phpnuÕIw¶“PK!Ńā·%µ>carbon/src/Carbon/Lang/zh_Hans_HK.phpnuÕIw¶“PK!ŠĮPP@carbon/src/Carbon/Lang/it.phpnuÕIw¶“PK!<Ū-OO¶Ncarbon/src/Carbon/Lang/bho.phpnuÕIw¶“PK!k¶zNN SPcarbon/src/Carbon/Lang/ms_MY.phpnuÕIw¶“PK!x^“FF ńQcarbon/src/Carbon/Lang/en_SC.phpnuÕIw¶“PK!w°HŒ··‡Scarbon/src/Carbon/Lang/lag.phpnuÕIw¶“PK!ĀÉ}tĢĢ#ŒXcarbon/src/Carbon/Lang/ar_Shakl.phpnuÕIw¶“PK!p‹R„„«lcarbon/src/Carbon/Lang/zh.phpnuÕIw¶“PK!ߟW |ocarbon/src/Carbon/Lang/pa.phpnuÕIw¶“PK!Ū@¬OOÉ{carbon/src/Carbon/Lang/hif.phpnuÕIw¶“PK!Š{J~   f}carbon/src/Carbon/Lang/gu_IN.phpnuÕIw¶“PK!Ńē±   Ą~carbon/src/Carbon/Lang/nl_SX.phpnuÕIw¶“PK!Ä~õOO€carbon/src/Carbon/Lang/kab.phpnuÕIw¶“PK!Ńā·#·carbon/src/Carbon/Lang/yue_Hans.phpnuÕIw¶“PK!,}ės` ` ƒcarbon/src/Carbon/Lang/he.phpnuÕIw¶“PK!’˜[ÕZZ ʏcarbon/src/Carbon/Lang/ta_LK.phpnuÕIw¶“PK!x^“FF p•carbon/src/Carbon/Lang/en_GY.phpnuÕIw¶“PK!q~mq   —carbon/src/Carbon/Lang/en_US.phpnuÕIw¶“PK!ė©·ą%`˜carbon/src/Carbon/Lang/sr_Cyrl_BA.phpnuÕIw¶“PK!±L¤–%·›carbon/src/Carbon/Lang/sr_Latn_XK.phpnuÕIw¶“PK!ū„øNNœcarbon/src/Carbon/Lang/xh.phpnuÕIw¶“PK!q~mq   7Ÿcarbon/src/Carbon/Lang/en_BS.phpnuÕIw¶“PK!¬ą8ó   ‘ carbon/src/Carbon/Lang/nn_NO.phpnuÕIw¶“PK!L-xVOOė”carbon/src/Carbon/Lang/shn.phpnuÕIw¶“PK!x^“FF ˆ£carbon/src/Carbon/Lang/en_TC.phpnuÕIw¶“PK!Ś‘“QQ „carbon/src/Carbon/Lang/so_SO.phpnuÕIw¶“PK!x^“FF æ¦carbon/src/Carbon/Lang/en_PW.phpnuÕIw¶“PK!':ž ž UØcarbon/src/Carbon/Lang/uz.phpnuÕIw¶“PK!.•ŹĪĪ  “carbon/src/Carbon/Lang/gv_GB.phpnuÕIw¶“PK!‡ädŖ¦¦ ¾»carbon/src/Carbon/Lang/es_PE.phpnuÕIw¶“PK!ŅŃ`Ŗ[[“½carbon/src/Carbon/Lang/xog.phpnuÕIw¶“PK!ź!~P… … ]Ācarbon/src/Carbon/Lang/nb.phpnuÕIw¶“PK!«ĄNN/Īcarbon/src/Carbon/Lang/or.phpnuÕIw¶“PK!× žŖŅ Ņ ŹĻcarbon/src/Carbon/Lang/lo.phpnuÕIw¶“PK! ŅU‚   éŚcarbon/src/Carbon/Lang/mk_MK.phpnuÕIw¶“PK!“Lr¤   CÜcarbon/src/Carbon/Lang/si_LK.phpnuÕIw¶“PK!~@ÉOOŻcarbon/src/Carbon/Lang/hne.phpnuÕIw¶“PK!.J«‡'' :ßcarbon/src/Carbon/Lang/fr_DJ.phpnuÕIw¶“PK!O2aNN±įcarbon/src/Carbon/Lang/am.phpnuÕIw¶“PK!%šŽÖuu Lćcarbon/src/Carbon/Lang/ia_FR.phpnuÕIw¶“PK!‡ädŖ¦¦ źcarbon/src/Carbon/Lang/es_PY.phpnuÕIw¶“PK!„4E›› ģcarbon/src/Carbon/Lang/en_IN.phpnuÕIw¶“PK!x^“FF ņīcarbon/src/Carbon/Lang/en_JE.phpnuÕIw¶“PK!éńS˜GG ˆšcarbon/src/Carbon/Lang/bn_BD.phpnuÕIw¶“PK!x^“FF ÷carbon/src/Carbon/Lang/en_SS.phpnuÕIw¶“PK!ÆHlŃŃ!µųcarbon/src/Carbon/Lang/mjw_IN.phpnuÕIw¶“PK!ķĮNN×ücarbon/src/Carbon/Lang/bi.phpnuÕIw¶“PK!x^“FF ržcarbon/src/Carbon/Lang/en_SH.phpnuÕIw¶“PK!ŗU’ÜÜ!carbon/src/Carbon/Lang/gez_ET.phpnuÕIw¶“PK!4ć•ģNN5carbon/src/Carbon/Lang/ia.phpnuÕIw¶“PK!˜"pĮ Šcarbon/src/Carbon/Lang/ro_MD.phpnuÕIw¶“PK!w'į0y y !( carbon/src/Carbon/Lang/mai_IN.phpnuÕIw¶“PK!xƒ¦ŪŪņcarbon/src/Carbon/Lang/dav.phpnuÕIw¶“PK!Ą×Y((carbon/src/Carbon/Lang/jgo.phpnuÕIw¶“PK![Ū;ń88 ‘carbon/src/Carbon/Lang/es_PH.phpnuÕIw¶“PK!ʰ:&##carbon/src/Carbon/Lang/luy.phpnuÕIw¶“PK!x^“FF Š$carbon/src/Carbon/Lang/en_DG.phpnuÕIw¶“PK!i©Ą“ÖÖ &carbon/src/Carbon/Lang/mgo.phpnuÕIw¶“PK!WQfu  D+carbon/src/Carbon/Lang/mo.phpnuÕIw¶“PK!­K%B   ›,carbon/src/Carbon/Lang/fi_FI.phpnuÕIw¶“PK!4ŠĶ   õ-carbon/src/Carbon/Lang/es_UY.phpnuÕIw¶“PK!&ļŁ$ČČ å0carbon/src/Carbon/Lang/en_AU.phpnuÕIw¶“PK!KN õnnż3carbon/src/Carbon/Lang/no.phpnuÕIw¶“PK!VŪÜ (ø6carbon/src/Carbon/Lang/tt_RU@iqtelif.phpnuÕIw¶“PK!„“ų‘ ‘ &;carbon/src/Carbon/Lang/et.phpnuÕIw¶“PK!Ģ>ŗĄz z Gcarbon/src/Carbon/Lang/dv.phpnuÕIw¶“PK!~[ēŠxx%ĖQcarbon/src/Carbon/Lang/sr_Latn_ME.phpnuÕIw¶“PK!ł”cŗŗ%˜Zcarbon/src/Carbon/Lang/sr_Cyrl_XK.phpnuÕIw¶“PK!Č4d’   §\carbon/src/Carbon/Lang/af_ZA.phpnuÕIw¶“PK!x^“FF ^carbon/src/Carbon/Lang/en_GG.phpnuÕIw¶“PK!‘°l!—_carbon/src/Carbon/Lang/en_ISO.phpnuÕIw¶“PK!^TĘ[[ļacarbon/src/Carbon/Lang/ksh.phpnuÕIw¶“PK!v³„¦¦ ˜icarbon/src/Carbon/Lang/so_DJ.phpnuÕIw¶“PK!\BÉ@UUŽkcarbon/src/Carbon/Lang/lu.phpnuÕIw¶“PK!ą²Ķq~~ 0pcarbon/src/Carbon/Lang/pt_BR.phpnuÕIw¶“PK!-'ĢOOžscarbon/src/Carbon/Lang/doi.phpnuÕIw¶“PK!å&*Bcc ›ucarbon/src/Carbon/Lang/sr_RS.phpnuÕIw¶“PK!x^“FF Nwcarbon/src/Carbon/Lang/en_MU.phpnuÕIw¶“PK!ģŃÉŽhhäxcarbon/src/Carbon/Lang/bn.phpnuÕIw¶“PK!Ŗ°“vĖĖ ™‹carbon/src/Carbon/Lang/fr_CH.phpnuÕIw¶“PK!Ńē±   “carbon/src/Carbon/Lang/nl_SR.phpnuÕIw¶“PK!`YĀą ą "carbon/src/Carbon/Lang/zh_Hans.phpnuÕIw¶“PK!RŲ^üII!@œcarbon/src/Carbon/Lang/cmn_TW.phpnuÕIw¶“PK!ÉB²E—— Ś¢carbon/src/Carbon/Lang/tr_CY.phpnuÕIw¶“PK!x^“FF Į„carbon/src/Carbon/Lang/en_VU.phpnuÕIw¶“PK!u·Ź\ \ W§carbon/src/Carbon/Lang/dz_BT.phpnuÕIw¶“PK!ābĆ(( ±carbon/src/Carbon/Lang/ar_ER.phpnuÕIw¶“PK!r®åqvv {²carbon/src/Carbon/Lang/se_FI.phpnuÕIw¶“PK!Š‹Y   A·carbon/src/Carbon/Lang/ha_NG.phpnuÕIw¶“PK!ĆćVĘķķ+›øcarbon/src/Carbon/Lang/ks_IN@devanagari.phpnuÕIw¶“PK!x^“FF ć¾carbon/src/Carbon/Lang/en_LC.phpnuÕIw¶“PK!;–ęOOyĄcarbon/src/Carbon/Lang/bhb.phpnuÕIw¶“PK!Šfōc   Ācarbon/src/Carbon/Lang/fr_KM.phpnuÕIw¶“PK!šM¹‹ÕÕ pĆcarbon/src/Carbon/Lang/ve_ZA.phpnuÕIw¶“PK!ż!-QWW•Źcarbon/src/Carbon/Lang/twq.phpnuÕIw¶“PK!ü¼ĻFĒĒ :Ģcarbon/src/Carbon/Lang/os_RU.phpnuÕIw¶“PK!-¶|KĮĮ QŌcarbon/src/Carbon/Lang/es_NI.phpnuÕIw¶“PK!"„™™ bÖcarbon/src/Carbon/Lang/de_LU.phpnuÕIw¶“PK!ń?-k——KŲcarbon/src/Carbon/Lang/mua.phpnuÕIw¶“PK!EV?DD 0Żcarbon/src/Carbon/Lang/es_ES.phpnuÕIw¶“PK!é ņ  ÄŽcarbon/src/Carbon/Lang/or_IN.phpnuÕIw¶“PK!óœĆ‚~~ #ģcarbon/src/Carbon/Lang/ar_SS.phpnuÕIw¶“PK!ÅĪóĻ……ńšcarbon/src/Carbon/Lang/ca.phpnuÕIw¶“PK!É? t   Ćcarbon/src/Carbon/Lang/cy_GB.phpnuÕIw¶“PK!¬TAz   carbon/src/Carbon/Lang/pt_LU.phpnuÕIw¶“PK!Ym6]VV!wcarbon/src/Carbon/Lang/doi_IN.phpnuÕIw¶“PK!x^“FF  carbon/src/Carbon/Lang/en_ER.phpnuÕIw¶“PK!oé   “ carbon/src/Carbon/Lang/sv_SE.phpnuÕIw¶“PK!Æbü3ZZ carbon/src/Carbon/Lang/de_IT.phpnuÕIw¶“PK!źČĒ„ÜÜ øcarbon/src/Carbon/Lang/fy_NL.phpnuÕIw¶“PK!äjä’’!äcarbon/src/Carbon/Lang/ber_MA.phpnuÕIw¶“PK!Šfōc   4carbon/src/Carbon/Lang/fr_RE.phpnuÕIw¶“PK!śRkk!Žcarbon/src/Carbon/Lang/gsw_FR.phpnuÕIw¶“PK!„HžĻBBJcarbon/src/Carbon/Lang/rwk.phpnuÕIw¶“PK!C‡–莎 Ś!carbon/src/Carbon/Lang/ar_TN.phpnuÕIw¶“PK!_£hž””ø3carbon/src/Carbon/Lang/guz.phpnuÕIw¶“PK!q~mq  &§:carbon/src/Carbon/Lang/en_US_Posix.phpnuÕIw¶“PK!óQJž??!<carbon/src/Carbon/Lang/tpi_PG.phpnuÕIw¶“PK!xł°¾¾—Bcarbon/src/Carbon/Lang/lrc.phpnuÕIw¶“PK!œ•=NN£Dcarbon/src/Carbon/Lang/lg.phpnuÕIw¶“PK!8ޱīŗŗ!>Fcarbon/src/Carbon/Lang/csb_PL.phpnuÕIw¶“PK!Šfōc   ILcarbon/src/Carbon/Lang/fr_GN.phpnuÕIw¶“PK!x^“FF £Mcarbon/src/Carbon/Lang/en_SL.phpnuÕIw¶“PK!ÄƏz• • 9Ocarbon/src/Carbon/Lang/da.phpnuÕIw¶“PK!įīÅ)) Zcarbon/src/Carbon/Lang/be_BY.phpnuÕIw¶“PK!ābĆ(( ”^carbon/src/Carbon/Lang/ar_IL.phpnuÕIw¶“PK!ļKˆC··  `carbon/src/Carbon/Lang/nb_SJ.phpnuÕIw¶“PK!Ø?щŻŻ bcarbon/src/Carbon/Lang/sw_KE.phpnuÕIw¶“PK!é ö½{{@fcarbon/src/Carbon/Lang/es.phpnuÕIw¶“PK!ČPwō ō vcarbon/src/Carbon/Lang/nl.phpnuÕIw¶“PK!W]FŒNNI„carbon/src/Carbon/Lang/an.phpnuÕIw¶“PK!x^“FF ä…carbon/src/Carbon/Lang/en_UG.phpnuÕIw¶“PK!ś'JNNz‡carbon/src/Carbon/Lang/iu.phpnuÕIw¶“PK!x^“FF ‰carbon/src/Carbon/Lang/en_FI.phpnuÕIw¶“PK!pŠ:__ «Šcarbon/src/Carbon/Lang/fr_MA.phpnuÕIw¶“PK!Ė>”ŚŚ!ZŒcarbon/src/Carbon/Lang/yuw_PG.phpnuÕIw¶“PK!5ėżuOO…carbon/src/Carbon/Lang/raj.phpnuÕIw¶“PK!g~б ± "’carbon/src/Carbon/Lang/cv.phpnuÕIw¶“PK!Šfōc    carbon/src/Carbon/Lang/fr_SN.phpnuÕIw¶“PK!u®čNNzžcarbon/src/Carbon/Lang/as.phpnuÕIw¶“PK!ŠQ¾    carbon/src/Carbon/Lang/gl_ES.phpnuÕIw¶“PK!WÄy  o”carbon/src/Carbon/Lang/sv.phpnuÕIw¶“PK!Ńā·%Ų¬carbon/src/Carbon/Lang/zh_Hans_MO.phpnuÕIw¶“PK!ęÜÜ <®carbon/src/Carbon/Lang/ti_ER.phpnuÕIw¶“PK!YÓb1«« h¶carbon/src/Carbon/Lang/es_DO.phpnuÕIw¶“PK!Ų'½#c¹carbon/src/Carbon/Lang/yue_Hant.phpnuÕIw¶“PK!‡ädŖ¦¦ Åŗcarbon/src/Carbon/Lang/es_HN.phpnuÕIw¶“PK!O DĘMM!»¼carbon/src/Carbon/Lang/agr_PE.phpnuÕIw¶“PK!‰ųęn££YĆcarbon/src/Carbon/Lang/ky.phpnuÕIw¶“PK! šŲ°Q Q IŅcarbon/src/Carbon/Lang/nn.phpnuÕIw¶“PK!F1ką ą ēÜcarbon/src/Carbon/Lang/ko.phpnuÕIw¶“PK!‚ŹćČČ čcarbon/src/Carbon/Lang/en_IE.phpnuÕIw¶“PK!2o>Ø   ,ėcarbon/src/Carbon/Lang/ik_CA.phpnuÕIw¶“PK!oé   ‡ņcarbon/src/Carbon/Lang/sv_FI.phpnuÕIw¶“PK!­>Ś° ° įócarbon/src/Carbon/Lang/hi.phpnuÕIw¶“PK!•IĆ^~~ Žcarbon/src/Carbon/Lang/ar_QA.phpnuÕIw¶“PK!-¶|KĮĮ ¬carbon/src/Carbon/Lang/es_PR.phpnuÕIw¶“PK!óhīœœ ½carbon/src/Carbon/Lang/ar_MA.phpnuÕIw¶“PK!k°˜l  #©carbon/src/Carbon/Lang/vai_Vaii.phpnuÕIw¶“PK!n±R¬OOcarbon/src/Carbon/Lang/crh.phpnuÕIw¶“PK!Ā5NoČČ ¤carbon/src/Carbon/Lang/en_NZ.phpnuÕIw¶“PK!ąyųå¹¹¼carbon/src/Carbon/Lang/tl.phpnuÕIw¶“PK!<ŠZšĒ Ē Ā(carbon/src/Carbon/Lang/cy.phpnuÕIw¶“PK!cā{HHÖ3carbon/src/Carbon/Lang/rn.phpnuÕIw¶“PK!ėć±}} k;carbon/src/Carbon/Lang/sw_CD.phpnuÕIw¶“PK!x^“FF 8=carbon/src/Carbon/Lang/en_IM.phpnuÕIw¶“PK!Üģü1NNĪ>carbon/src/Carbon/Lang/zu.phpnuÕIw¶“PK!ffńŪffi@carbon/src/Carbon/Lang/ta.phpnuÕIw¶“PK!2~Õ   Rcarbon/src/Carbon/Lang/pl_PL.phpnuÕIw¶“PK!ÄūŁbļļvScarbon/src/Carbon/Lang/ha.phpnuÕIw¶“PK!8Ö¼OO²Zcarbon/src/Carbon/Lang/gez.phpnuÕIw¶“PK!0RXwµµ!O\carbon/src/Carbon/Lang/chr_US.phpnuÕIw¶“PK!Ķķ‰M M Uecarbon/src/Carbon/Lang/gl.phpnuÕIw¶“PK!{9ätšš!ļrcarbon/src/Carbon/Lang/hif_FJ.phpnuÕIw¶“PK!‡ädŖ¦¦!Śycarbon/src/Carbon/Lang/es_419.phpnuÕIw¶“PK!x^“FF Ń{carbon/src/Carbon/Lang/en_CK.phpnuÕIw¶“PK!Z,vcóó g}carbon/src/Carbon/Lang/nr_ZA.phpnuÕIw¶“PK!,͹¼  Ŗcarbon/src/Carbon/Lang/ro.phpnuÕIw¶“PK!¬TAz   carbon/src/Carbon/Lang/pt_AO.phpnuÕIw¶“PK!³b’MNNaŽcarbon/src/Carbon/Lang/ce.phpnuÕIw¶“PK!QtF±z z ücarbon/src/Carbon/Lang/sk.phpnuÕIw¶“PK!r¶OOÚcarbon/src/Carbon/Lang/byn.phpnuÕIw¶“PK! ösFF `œcarbon/src/Carbon/Lang/es_EA.phpnuÕIw¶“PK!Ąd2½   öcarbon/src/Carbon/Lang/fr_MR.phpnuÕIw¶“PK!Ÿ·N)jjO carbon/src/Carbon/Lang/mer.phpnuÕIw¶“PK!Y#N››!§carbon/src/Carbon/Lang/unm_US.phpnuÕIw¶“PK!x^“FF ó®carbon/src/Carbon/Lang/en_MS.phpnuÕIw¶“PK!Šfōc   ‰°carbon/src/Carbon/Lang/fr_MC.phpnuÕIw¶“PK!ųR3׆†ć±carbon/src/Carbon/Lang/ki.phpnuÕIw¶“PK!q~mq   ¶ŗcarbon/src/Carbon/Lang/en_JM.phpnuÕIw¶“PK!x^“FF ¼carbon/src/Carbon/Lang/en_NU.phpnuÕIw¶“PK!Ó;i¢¢ ¦½carbon/src/Carbon/Lang/yi_US.phpnuÕIw¶“PK!x^“FF ˜Åcarbon/src/Carbon/Lang/en_TV.phpnuÕIw¶“PK!O%ėOO.Ēcarbon/src/Carbon/Lang/cmn.phpnuÕIw¶“PK!ߟ¦$$ ĖČcarbon/src/Carbon/Lang/aa_ER.phpnuÕIw¶“PK!Šfōc   ?Ķcarbon/src/Carbon/Lang/fr_HT.phpnuÕIw¶“PK!į²Y¹^^ ™Īcarbon/src/Carbon/Lang/ff_SN.phpnuÕIw¶“PK!ĢŠ\å55GŠcarbon/src/Carbon/Lang/kde.phpnuÕIw¶“PK!†Qs÷¬¬ŹÕcarbon/src/Carbon/Lang/rof.phpnuÕIw¶“PK!ÓĘŁ××ÄŚcarbon/src/Carbon/Lang/naq.phpnuÕIw¶“PK!ābĆ(( éācarbon/src/Carbon/Lang/ar_TD.phpnuÕIw¶“PK!x^“FF aäcarbon/src/Carbon/Lang/en_PG.phpnuÕIw¶“PK!ŌŌžĶßß'÷åcarbon/src/Carbon/Lang/nan_TW@latin.phpnuÕIw¶“PK!Ü Ķžž-źcarbon/src/Carbon/Lang/rm.phpnuÕIw¶“PK!÷²› ńcarbon/src/Carbon/Lang/sr_ME.phpnuÕIw¶“PK!»(RHkk zņcarbon/src/Carbon/Lang/es_US.phpnuÕIw¶“PK!Šų8šš 5öcarbon/src/Carbon/Lang/ar_SY.phpnuÕIw¶“PK!x^“FF uūcarbon/src/Carbon/Lang/en_NF.phpnuÕIw¶“PK!ƒ4Ÿ††  żcarbon/src/Carbon/Lang/it_CH.phpnuÕIw¶“PK!,Å H¦¦ įžcarbon/src/Carbon/Lang/iu_CA.phpnuÕIw¶“PK!‡ädŖ¦¦ ×carbon/src/Carbon/Lang/es_CO.phpnuÕIw¶“PK!Ä'鉂 ‚ Ķcarbon/src/Carbon/Lang/dv_MV.phpnuÕIw¶“PK!ė™NNŸcarbon/src/Carbon/Lang/ks.phpnuÕIw¶“PK!†ŽĄ)tt :carbon/src/Carbon/Lang/ta_IN.phpnuÕIw¶“PK!J–¦ūĆĆ%žcarbon/src/Carbon/Lang/sr_Latn_BA.phpnuÕIw¶“PK!}„u   carbon/src/Carbon/Lang/ko_KR.phpnuÕIw¶“PK!aå=Ą Ą pcarbon/src/Carbon/Lang/ps.phpnuÕIw¶“PK!<Õ3¦¦})carbon/src/Carbon/Lang/kea.phpnuÕIw¶“PK!C›×ĒĒ!q1carbon/src/Carbon/Lang/bhb_IN.phpnuÕIw¶“PK!Šfōc   ‰5carbon/src/Carbon/Lang/fr_CG.phpnuÕIw¶“PK!Ä·7q(()ć6carbon/src/Carbon/Lang/ca_ES_Valencia.phpnuÕIw¶“PK!^÷4ŅĒ Ē !d8carbon/src/Carbon/Lang/sat_IN.phpnuÕIw¶“PK! ŪmNN|Bcarbon/src/Carbon/Lang/st.phpnuÕIw¶“PK!-jÜINNDcarbon/src/Carbon/Lang/to.phpnuÕIw¶“PK!łwjOO²Ecarbon/src/Carbon/Lang/az.phpnuÕIw¶“PK!x^“FF NVcarbon/src/Carbon/Lang/en_MY.phpnuÕIw¶“PK!1ƒH³((&äWcarbon/src/Carbon/Lang/aa_ER@saaho.phpnuÕIw¶“PK!µzņOOb\carbon/src/Carbon/Lang/mjw.phpnuÕIw¶“PK!“|˜   ’]carbon/src/Carbon/Lang/ru_KG.phpnuÕIw¶“PK!Ś„”ŸuuY_carbon/src/Carbon/Lang/nd.phpnuÕIw¶“PK!ų›(}: : gcarbon/src/Carbon/Lang/sh.phpnuÕIw¶“PK!„‚Ŗå‰‰ ¢pcarbon/src/Carbon/Lang/en_CA.phpnuÕIw¶“PK!®ė¼& % %{scarbon/src/Carbon/Lang/be.phpnuÕIw¶“PK!*'¢.ķ ķ јcarbon/src/Carbon/Lang/tg.phpnuÕIw¶“PK!Ąd2½    §carbon/src/Carbon/Lang/fr_VU.phpnuÕIw¶“PK!śüR®   d©carbon/src/Carbon/Lang/ne_NP.phpnuÕIw¶“PK!x^“FF ¾Ŗcarbon/src/Carbon/Lang/en_KI.phpnuÕIw¶“PK!Æ ·`ĻĻ T¬carbon/src/Carbon/Lang/es_MX.phpnuÕIw¶“PK! Ėŗŗ!s®carbon/src/Carbon/Lang/bem_ZM.phpnuÕIw¶“PK!DšOO~µcarbon/src/Carbon/Lang/bem.phpnuÕIw¶“PK!Ńā·%·carbon/src/Carbon/Lang/zh_Hans_SG.phpnuÕIw¶“PK!"„™™ øcarbon/src/Carbon/Lang/de_BE.phpnuÕIw¶“PK! “£‹NNhŗcarbon/src/Carbon/Lang/ig.phpnuÕIw¶“PK!Ų'½%¼carbon/src/Carbon/Lang/zh_Hant_MO.phpnuÕIw¶“PK!pÕpĄ   g½carbon/src/Carbon/Lang/mi_NZ.phpnuÕIw¶“PK!i?#ÖÖ Į¾carbon/src/Carbon/Lang/en_AG.phpnuÕIw¶“PK!ÆQ9ž ž ēĄcarbon/src/Carbon/Lang/lb.phpnuÕIw¶“PK!Y›   ŅĢcarbon/src/Carbon/Lang/ff_CM.phpnuÕIw¶“PK!cj1ßŲŲ ,Īcarbon/src/Carbon/Lang/da_GL.phpnuÕIw¶“PK!ā„Ećć!TŠcarbon/src/Carbon/Lang/the_NP.phpnuÕIw¶“PK!:‹Š*öö ˆÖcarbon/src/Carbon/Lang/sm_WS.phpnuÕIw¶“PK!-µ»^ŠŠ ĪŻcarbon/src/Carbon/Lang/nl_NL.phpnuÕIw¶“PK!x^“FF Øįcarbon/src/Carbon/Lang/en_MP.phpnuÕIw¶“PK!x^“FF!>ćcarbon/src/Carbon/Lang/en_001.phpnuÕIw¶“PK!;¹n‡ ‡ Õäcarbon/src/Carbon/Lang/af.phpnuÕIw¶“PK! £ōw   ©ļcarbon/src/Carbon/Lang/ja_JP.phpnuÕIw¶“PK!*2ˆõõ#ńcarbon/src/Carbon/Lang/shi_Latn.phpnuÕIw¶“PK!2ĘĀ€Köcarbon/src/Carbon/Lang/haw.phpnuÕIw¶“PK!UĮ}l­­!żcarbon/src/Carbon/Lang/szl_PL.phpnuÕIw¶“PK!)įÓˊ Š  carbon/src/Carbon/Lang/gd.phpnuÕIw¶“PK!e-)­   ī carbon/src/Carbon/Lang/cv_RU.phpnuÕIw¶“PK!•IĆ^~~ H carbon/src/Carbon/Lang/ar_SD.phpnuÕIw¶“PK!’ķ KK! carbon/src/Carbon/Lang/hsb_DE.phpnuÕIw¶“PK!vōäLL² carbon/src/Carbon/Lang/oc.phpnuÕIw¶“PK!“|˜   K+ carbon/src/Carbon/Lang/ru_BY.phpnuÕIw¶“PK!^­Ó§v v „, carbon/src/Carbon/Lang/mt.phpnuÕIw¶“PK!AÓ§F„„h7 carbon/src/Carbon/Lang/nnh.phpnuÕIw¶“PK!óĆ6Äkk![< carbon/src/Carbon/Lang/pap_CW.phpnuÕIw¶“PK!Dɳ½½ > carbon/src/Carbon/Lang/zh_CN.phpnuÕIw¶“PK!Ńē±   $A carbon/src/Carbon/Lang/nl_BQ.phpnuÕIw¶“PK!ĻÉHH%~B carbon/src/Carbon/Lang/sr_Cyrl_ME.phpnuÕIw¶“PK!ÕÕØ€ U carbon/src/Carbon/Lang/fy_DE.phpnuÕIw¶“PK!/{POO‡Y carbon/src/Carbon/Lang/hak.phpnuÕIw¶“PK!ņõ^×ŪŪ!$[ carbon/src/Carbon/Lang/miq_NI.phpnuÕIw¶“PK!¢_eŚŚP` carbon/src/Carbon/Lang/sg.phpnuÕIw¶“PK!‡“"žU U #wh carbon/src/Carbon/Lang/gom_Latn.phpnuÕIw¶“PK!ähƼ ¼ r carbon/src/Carbon/Lang/se.phpnuÕIw¶“PK!ąĶb‡šš (} carbon/src/Carbon/Lang/ti_ET.phpnuÕIw¶“PK!¾c…ŚŚ h‚ carbon/src/Carbon/Lang/nl_AW.phpnuÕIw¶“PK!“Ÿü Õ Õ ’† carbon/src/Carbon/Lang/sw.phpnuÕIw¶“PK!ېˆ   “ carbon/src/Carbon/Lang/ml_IN.phpnuÕIw¶“PK!eŻaŠ   ’ carbon/src/Carbon/Lang/lb_LU.phpnuÕIw¶“PK!Šfōc   h“ carbon/src/Carbon/Lang/fr_GQ.phpnuÕIw¶“PK!ѝŃĻ   Ā” carbon/src/Carbon/Lang/ky_KG.phpnuÕIw¶“PK!Ģ„A.øø – carbon/src/Carbon/Lang/el_CY.phpnuÕIw¶“PK! ösFF $˜ carbon/src/Carbon/Lang/es_IC.phpnuÕIw¶“PK!x^“FF ŗ™ carbon/src/Carbon/Lang/en_MG.phpnuÕIw¶“PK!q~mq   P› carbon/src/Carbon/Lang/en_DM.phpnuÕIw¶“PK!źŗ8OOŖœ carbon/src/Carbon/Lang/chr.phpnuÕIw¶“PK!:öƒ’"Gž carbon/src/Carbon/Lang/sr_Cyrl.phpnuÕIw¶“PK!BżŖ +± carbon/src/Carbon/Lang/bn_IN.phpnuÕIw¶“PK!ōlIQOO“· carbon/src/Carbon/Lang/yue.phpnuÕIw¶“PK!”³1¤00!0¹ carbon/src/Carbon/Lang/fil_PH.phpnuÕIw¶“PK!ƒf8£`` ±Ą carbon/src/Carbon/Lang/ar_YE.phpnuÕIw¶“PK!„‘_ÆÆaÅ carbon/src/Carbon/Lang/mzn.phpnuÕIw¶“PK!č“."NN^É carbon/src/Carbon/Lang/wa.phpnuÕIw¶“PK!x^“FF łŹ carbon/src/Carbon/Lang/en_IO.phpnuÕIw¶“PK!ČßofÜÜĢ carbon/src/Carbon/Lang/hu.phpnuÕIw¶“PK!x^“FF øÜ carbon/src/Carbon/Lang/en_BB.phpnuÕIw¶“PK!Ī‘”NŽ carbon/src/Carbon/Lang/ja.phpnuÕIw¶“PK!õŹOOŸī carbon/src/Carbon/Lang/csb.phpnuÕIw¶“PK!~łłŃŃ <š carbon/src/Carbon/Lang/fr_BE.phpnuÕIw¶“PK!Š‹Y   ]ņ carbon/src/Carbon/Lang/ha_GH.phpnuÕIw¶“PK!]jw¬OO·ó carbon/src/Carbon/Lang/shs.phpnuÕIw¶“PK!&¦Ł   Tõ carbon/src/Carbon/Lang/bo_CN.phpnuÕIw¶“PK!7‚æ$ ®ö carbon/src/Carbon/Lang/en_ZA.phpnuÕIw¶“PK!ÜYŻó   ł carbon/src/Carbon/Lang/se_NO.phpnuÕIw¶“PK!ƒpX] ēś carbon/src/Carbon/Lang/ln_AO.phpnuÕIw¶“PK!ŠĻ3÷   Äż carbon/src/Carbon/Lang/yo_NG.phpnuÕIw¶“PK!·µŚ8¬ ¬ ’ carbon/src/Carbon/Lang/tzm.phpnuÕIw¶“PK!ĖÜżż  !carbon/src/Carbon/Lang/aa_ET.phpnuÕIw¶“PK!Šfōc   e!carbon/src/Carbon/Lang/fr_WF.phpnuÕIw¶“PK!ĖĢņ ¦¦ æ!carbon/src/Carbon/Lang/es_BO.phpnuÕIw¶“PK!ˆŲß  µ!carbon/src/Carbon/Lang/shi.phpnuÕIw¶“PK!Šų8šš !carbon/src/Carbon/Lang/ar_IQ.phpnuÕIw¶“PK!ÅļćPP S !carbon/src/Carbon/Lang/to_TO.phpnuÕIw¶“PK!Ē<¦NNó'!carbon/src/Carbon/Lang/ht.phpnuÕIw¶“PK!Ž`)Ć Ć Ž)!carbon/src/Carbon/Lang/km.phpnuÕIw¶“PK!>™KNNž6!carbon/src/Carbon/Lang/sc.phpnuÕIw¶“PK![įNĮGG!98!carbon/src/Carbon/Lang/mas_TZ.phpnuÕIw¶“PK!ėć±}} Ń9!carbon/src/Carbon/Lang/sw_UG.phpnuÕIw¶“PK!}ŻėTOOž;!carbon/src/Carbon/Lang/sat.phpnuÕIw¶“PK!ڳąSž ž ;=!carbon/src/Carbon/Lang/bo_IN.phpnuÕIw¶“PK!4¼—   ‰G!carbon/src/Carbon/Lang/te_IN.phpnuÕIw¶“PK!Šfōc   ćH!carbon/src/Carbon/Lang/fr_GP.phpnuÕIw¶“PK!x^“FF =J!carbon/src/Carbon/Lang/en_SI.phpnuÕIw¶“PK!ęŌ“¾¾ÓK!carbon/src/Carbon/Lang/ast.phpnuÕIw¶“PK!x^“FF ßS!carbon/src/Carbon/Lang/en_CH.phpnuÕIw¶“PK!Ų'½%uU!carbon/src/Carbon/Lang/zh_Hant_TW.phpnuÕIw¶“PK!q~mq   ŁV!carbon/src/Carbon/Lang/en_TT.phpnuÕIw¶“PK!Šfōc   3X!carbon/src/Carbon/Lang/fr_MF.phpnuÕIw¶“PK!Šfōc   Y!carbon/src/Carbon/Lang/fr_CF.phpnuÕIw¶“PK!­ä Pcc ēZ!carbon/src/Carbon/Lang/pa_IN.phpnuÕIw¶“PK!īēĶS®® š\!carbon/src/Carbon/Lang/ta_SG.phpnuÕIw¶“PK!ł/kØOO˜b!carbon/src/Carbon/Lang/wae.phpnuÕIw¶“PK!x^“FF 5d!carbon/src/Carbon/Lang/en_VC.phpnuÕIw¶“PK!$’E°öö"Ėe!carbon/src/Carbon/Lang/uz_Cyrl.phpnuÕIw¶“PK!VBOOh!carbon/src/Carbon/Lang/szl.phpnuÕIw¶“PK!­‘™   °i!carbon/src/Carbon/Lang/id_ID.phpnuÕIw¶“PK!©ö‡ k!carbon/src/Carbon/Lang/vai.phpnuÕIw¶“PK!ČB‹UŅŅ wq!carbon/src/Carbon/Lang/fo_DK.phpnuÕIw¶“PK!ąƒVŒŒ!™s!carbon/src/Carbon/Lang/lzh_TW.phpnuÕIw¶“PK!Ną[[v|!carbon/src/Carbon/Lang/vo.phpnuÕIw¶“PK!8¶Qspp‚!carbon/src/Carbon/Lang/om.phpnuÕIw¶“PK!—•M44 Ū‰!carbon/src/Carbon/Lang/az_IR.phpnuÕIw¶“PK!x^“FF _’!carbon/src/Carbon/Lang/en_KN.phpnuÕIw¶“PK!d2M•   õ“!carbon/src/Carbon/Lang/uk_UA.phpnuÕIw¶“PK!,Z¦O•!carbon/src/Carbon/Lang/smn.phpnuÕIw¶“PK!‘Ŗ†¦I I ¢!carbon/src/Carbon/Lang/as_IN.phpnuÕIw¶“PK!gžÖĀY Y ;§!carbon/src/Carbon/Lang/id.phpnuÕIw¶“PK!Šfōc   į²!carbon/src/Carbon/Lang/fr_BI.phpnuÕIw¶“PK!x^“FF ;“!carbon/src/Carbon/Lang/en_SZ.phpnuÕIw¶“PK!«įņ”” ѵ!carbon/src/Carbon/Lang/en_NG.phpnuÕIw¶“PK!āł×}OOĀ·!carbon/src/Carbon/Lang/mfe.phpnuÕIw¶“PK!q~mq   _¹!carbon/src/Carbon/Lang/en_BZ.phpnuÕIw¶“PK!/żņ·ŽŽ¹ŗ!carbon/src/Carbon/Lang/sl.phpnuÕIw¶“PK!Y›   äĶ!carbon/src/Carbon/Lang/ff_GN.phpnuÕIw¶“PK!ābĆ(( >Ļ!carbon/src/Carbon/Lang/ar_KM.phpnuÕIw¶“PK!Šfōc   ¶Š!carbon/src/Carbon/Lang/fr_TG.phpnuÕIw¶“PK!x^“FF Ņ!carbon/src/Carbon/Lang/en_BI.phpnuÕIw¶“PK!UG ¦Ó!carbon/src/Carbon/Lang/tzl.phpnuÕIw¶“PK! vÅ__ Ż!carbon/src/Carbon/Lang/bi_VU.phpnuÕIw¶“PK!/ß&  Ćä!carbon/src/Carbon/Lang/ar_AE.phpnuÕIw¶“PK!ha‹Kżż ’é!carbon/src/Carbon/Lang/az_AZ.phpnuÕIw¶“PK!ŻÕ-OOßģ!carbon/src/Carbon/Lang/mag.phpnuÕIw¶“PK!Łå5ŒR R |ī!carbon/src/Carbon/Lang/kn.phpnuÕIw¶“PK! QóV!ū!carbon/src/Carbon/Lang/nhn_MX.phpnuÕIw¶“PK!¬ū”ŹÓ Ó ~"carbon/src/Carbon/Lang/hy.phpnuÕIw¶“PK!Ÿ©ēp   ž"carbon/src/Carbon/Lang/is_IS.phpnuÕIw¶“PK!x^“FF ų"carbon/src/Carbon/Lang/en_FM.phpnuÕIw¶“PK!ķ„Q®ii Ž"carbon/src/Carbon/Lang/en_SG.phpnuÕIw¶“PK!Šfōc   G"carbon/src/Carbon/Lang/fr_BJ.phpnuÕIw¶“PK!¬TAz   ”"carbon/src/Carbon/Lang/pt_ST.phpnuÕIw¶“PK!x^“FF ū"carbon/src/Carbon/Lang/en_NR.phpnuÕIw¶“PK!h¢ā*‘"carbon/src/Carbon/PHPStan/MacroScanner.phpnuÕIw¶“PK!7‘\\, "carbon/src/Carbon/PHPStan/MacroExtension.phpnuÕIw¶“PK!ĮÄLŽŽ#Į'"carbon/src/Carbon/PHPStan/Macro.phpnuÕIw¶“PK!D,ńA©r ©r 3ņ9"carbon/2c5419659a5256e79e72fcf8c217d5e2b1624cf5.zipnuÕIw¶“PK!­SŽ{ { 3ž¬-carbon/e96a2fdac6fbbc439cfcea4dfa67bc27228ad5f7.zipnuÕIw¶“PK‹‹ŠUÜ­8